Skip to content

Instantly share code, notes, and snippets.

@murtra
Last active December 19, 2015 06:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save murtra/d5e3ff44489ac35ffee9 to your computer and use it in GitHub Desktop.
Save murtra/d5e3ff44489ac35ffee9 to your computer and use it in GitHub Desktop.
Mapa de pedagogías altenativas
poblacion latitud longitud
Almería 36.84016 -2.467922
Cádiz 36.52969 -6.292657
Córdoba 37.88473 -4.779152
Granada 37.17649 -3.597929
Huelva 37.2571 -6.949555
Jaén 37.76574 -3.789518
Málaga 36.71965 -4.420019
Sevilla 37.38264 -5.996295
Huesca 42.1401 -0.408898
Teruel 40.34411 -1.10691
Zaragoza 41.65629 -0.8765379
Oviedo 43.36026 -5.844759
Las Palmas de Gran Canaria 28.12482 -15.43001
Santa Cruz de Tenerife 28.46981 -16.25486
Santander 43.46096 -3.807934
Albacete 38.99765 -1.86007
Ciudad Real 38.9861 -3.927263
Cuenca 40.07183 -2.134005
Guadalajara 40.62981 -3.166493
Toledo 39.85678 -4.024476
Ávila 40.65642 -4.700323
Burgos 42.34087 -3.699731
León 42.59988 -5.571752
Palencia 42.01246 -4.531175
Salamanca 40.96497 -5.663047
Segovia 40.94943 -4.119209
Soria 41.7636 -2.464921
Valladolid 41.65295 -4.728388
Zamora 41.50368 -5.743778
Barcelona 41.38792 2.169919
Girona 41.9818 2.8237
Lleida 41.61415 0.6257825
Tarragona 41.11866 1.24533
Badajoz 38.8786 -6.970284
Cáceres 39.47618 -6.37076
A Coruña 43.37087 -8.395835
Lugo 43.01208 -7.555851
Ourense 42.34001 -7.864641
Pontevedra 42.43362 -8.648053
Palma 39.56951 2.649966
Logroño 42.46577 -2.449995
Madrid 40.41669 -3.700346
Murcia 37.98344 -1.12989
Pamplona 42.81721 -1.646767
Vitoria 42.84641 -2.667893
Donostia-San Sebastián 43.32074 -1.984421
Bilbao 43.25696 -2.923441
Alicante/Alacant 38.3452 -0.481006
Castellón/Castelló 39.98598 -0.0376709
Valencia 39.47024 -0.3768049
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mapa de pedagogías alternativas</title>
<script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Lekton' rel='stylesheet' type='text/css'>
<style type="text/css">
body {
margin: 0;
background-color: white;
font-family: 'Lato', Helvetica, Arial, sans-serif;
color: #333;
}
#container {
width: 800px;
margin-left: auto;
margin-right: auto;
padding: 10px 50px;
background-color: white;
-webkit-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.5);
box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.5);
}
footer {
font-size: 11px;
line-height: 60px;
text-align: center;
}
h1 {
font-size: 36px;
line-height: 54px;
text-transform: uppercase;
}
p {
font-size: 16px;
line-height: 25px;
}
.note {
font-size: 14px;
text-transform: uppercase;
text-align: right;
font-weight: bold;
}
a:link {
text-decoration: none;
color: #333;
}
a:hover {
text-decoration: underline;
}
a:active {
color: steelBlue;
}
svg {
background-color: white;
}
.province {
stroke: #ddd;
}
.province:hover {
}
.place, .place-label {
fill: #111;
opacity: .9;
}
.place-label{
font-size: .7em;
font-family: 'Lekton', Helvetica, Arial, sans-serif;
}
.project {
stroke: #fff;
opacity: .7;
}
.otras {
fill: #e00606;
}
.montessori {
fill: #7C42C1;
}
.waldorf {
fill: #FF8E2D;
}
.libre {
fill: #45C743;
}
.label {
opacity: .7;
cursor: pointer;
font-size: .8em;
}
.label:hover {
opacity: 1;
}
.label-title {
}
</style>
</head>
<body>
<div id="container">
<h1>Mapa de pedagogías alternativas</h1>
<div id="map"></div>
<footer>Fuente: <a href="http://ludus.org.es" target="_blank">Ludus</a> - Noviembre, 2015</footer>
</div>
<script type="text/javascript">
function capitalizeFirstLetter(string) {
return string[0].toUpperCase() + string.slice(1);
}
//Width and height
var width = 800;
var height = 600;
//Define map projection
var projection1 = d3.geo.mercator()
.center([ 0, 40 ])
.translate([ width/1.5, height/2 ])
.scale([ width*4 ]);
//Define path generator
var path = d3.geo.path()
.projection(projection1);
//Create SVG
var svg = d3.select("#map")
.append("svg")
.attr("width", width)
.attr("height", height);
//Load in GeoJSON data
d3.json("provinces.json", function(error, json) {
if (error) return console.error(error);
//Bind data and create one path per GeoJSON feature
svg.selectAll("path")
.data(json.features)
.enter()
.append("path")
.attr("d", path)
.attr("class", "province")
.style("fill", "white");
//Load cities
d3.csv("cities.csv", function(error, capitales) {
if (error) return console.error(error);
svg.selectAll(".place-label")
.data(capitales)
.enter().append("text")
.attr("class", "place-label")
.attr("transform", function(d) { return "translate(" + projection1([d.longitud, d.latitud]) + ")"; })
.attr("dy", ".45em")
.attr("dx", ".55em")
.text(function(d) { return d.poblacion });
svg.selectAll(".place")
.data(capitales)
.enter()
.append("rect")
.attr("x", function(d) {
//[0] returns the first coordinate (x) of the projected value
return projection1([d.longitud, d.latitud])[0];
})
.attr("y", function(d) {
//[1] returns the second coordinate (y) of the projected value
return projection1([d.longitud, d.latitud])[1];
})
.attr("width", 3)
.attr("height", 3)
.attr("class", "place");
});
//Load projects
d3.csv("projects.csv", function(error, data) {
if (error) return console.error(error);
//Create a circle for each project
svg.selectAll("circle")
.data(data)
.enter()
.append("circle")
.attr("cx", function(d) {
//[0] returns the first coordinate (x) of the projected value
return projection1([d.longitud, d.latitud])[0];
})
.attr("cy", function(d) {
//[1] returns the second coordinate (y) of the projected value
return projection1([d.longitud, d.latitud])[1];
})
.attr("r", 5)
.attr("class", function(d) {
return("project " +d.pedagogia)
})
//otras_count = data.filter(function(x) {console.log(x); return x.pedagogia == "otras"}).length;
//console.log(otras_count);
});
//Legend
d3.csv("pedagogies_count.csv", function(error, counters) {
if (error) return console.error(error);
var colors = ['#45C743', '#FF8E2D', '#7C42C1', '#e00606'];
counters.forEach(function (s, i) {
console.log()
svg.append('circle')
.attr('fill', colors[i])
.attr('class', 'project')
.attr('r', 5)
.attr('cx', width - 179)
.attr('cy', (i * 24) + 500)
.attr("class", function(d) {
return("label label-" +s.pedagogia)
})
.on('mouseover', function(d, i) {
svg.selectAll(".project").attr("r", 0);
svg.selectAll("."+s.pedagogia).attr("r", 5);
})
.on('mouseout', function(d, i) {
svg.selectAll(".project").attr("r", 5);
})
;
svg.append('text')
.attr('fill', 'black')
.attr('x', width - 170)
.attr('y', (i * 24) + 500 + 5)
.attr("class", function(d) {
return("label label-" +s.pedagogia)
})
.text(capitalizeFirstLetter(s.pedagogia))
.on('mouseover', function(d, i) {
svg.selectAll(".project").attr("r", 0);
svg.selectAll("."+s.pedagogia).attr("r", 5);
})
.on('mouseout', function(d, i) {
svg.selectAll(".project").attr("r", 5);
})
;
svg.append('text')
.attr('fill', 'black')
.attr('x', width - 30)
.attr('y', (i * 24) + 500 + 5)
.attr("text-anchor", "end")
.attr("class", function(d) {
return("label label-" +s.pedagogia)
})
.text(s.contador)
.on('mouseover', function(d, i) {
svg.selectAll(".project").attr("r", 0);
svg.selectAll("."+s.pedagogia).attr("r", 5);
})
.on('mouseout', function(d, i) {
svg.selectAll(".project").attr("r", 5);
})
;
svg.append('text')
.attr('class', 'label')
.attr('x', width - 180)
.attr('y', 480)
.text("Número de proyectos: 607")
;
});
});
}); //End d3.json()
</script>
</body>
</html>
pedagogia contador
libre 255
waldorf 78
montessori 65
otras 209
pedagogia longitud latitud
otras 2.825465 42.024545
otras -3.6040527 40.0305018
otras 2.1680801 41.393712
otras -3.6699295 40.4063013
otras 1.9708154 41.2753054
otras 2.3622582 41.5132248
otras -3.8948727 40.5409583
otras 2.1352039 41.4715315
otras 2.1341943 41.4179553
otras 2.0349243 41.4971174
otras 2.1233216 41.3635523
otras 1.8359437 41.7271003
otras 2.7601781 41.9905171
otras 2.7432858 41.8109004
otras -4.7562159 41.6400908
otras 2.1533134 41.5063322
otras -5.6116652 43.5139458
otras 2.1841674 41.4254638
otras -3.865798 43.4639354
otras 2.1734035 41.3850639
otras -0.5340538 39.5666699
otras -1.248195 38.0539007
otras 2.1734035 41.3850639
otras -4.1329594 40.5814404
otras 1.8879966 41.5434156
otras -1.8585424 38.994349
otras -3.6752218 40.4457294
otras 2.0756405 41.4480577
otras -3.9878427 43.1828396
otras -3.443773 43.395452
otras 1.8775233 41.9040022
otras -3.4754967 40.4567552
otras -0.9533984 41.6670654
otras -0.9480051 38.0855528
otras -5.9859016 37.3942113
otras -5.9674683 37.4016442
otras -0.6666267 38.5920579
otras 2.1830838 41.4030079
otras 2.1457605 41.410475
otras -5.89305 37.4201674
otras 2.8090579 41.9924679
otras -3.7037902 40.4167754
otras 2.164576 41.4065813
otras -3.7070348 40.5022434
otras 2.8538143 42.0299851
otras 2.834664 41.939733
otras 2.2054866 41.4514047
otras -5.9476565 37.3693606
otras -3.64225 37.1084265
otras -3.9042593 40.5516978
otras 2.1988084 41.402062
otras 3.126964 42.125024
otras -3.7739155 37.1975807
otras -15.4408832 28.1131545
otras 2.1886869 41.9104921
otras -3.7079745 40.600727
otras -0.8831922 41.6694654
otras -6.0427732 37.4352111
otras -5.9823299 37.3880961
otras -4.0223356 40.8737072
otras -4.52963 42.006366
otras -4.1722255 40.4864017
otras -1.3029493 41.1925166
otras 0.6173516 41.6218064
otras -0.0288339 39.9844533
otras 3.1383037 39.8408713
otras -2.8398015 43.3530728
otras -3.7395235 40.3340038
otras -4.7976431 37.9153428
otras -3.2156354 43.3688221
otras -3.6715508 40.4167165
otras -2.9319541 43.2600098
otras -3.7257386 40.4299652
otras 2.2007761 41.404633
otras -3.7037902 40.4167754
otras -0.4360296 38.4020456
otras -5.89305 37.4201674
otras -3.6611423 40.4092399
otras -3.6608192 40.3792009
otras -0.1005932 39.9397706
otras 2.5973788 39.5510534
otras -1.9764169 43.3021713
otras 2.1511035 41.3886031
otras -3.5433199 40.3745987
otras -0.7580342 38.2455922
otras -3.6717308 40.4085686
otras -15.6260162 28.1434596
otras 2.1804165 41.4237789
otras -3.6687224 40.4016055
otras -3.9575335 40.5764384
otras -4.156347 36.870377
otras -0.0450666 38.6029075
otras 2.1660917 41.4940283
otras -3.7957545 40.2836144
otras -3.7232005 40.8381772
otras -3.9878427 43.1828396
otras -5.1640605 36.4763312
otras -4.8358762 41.5295845
otras -3.5480272 40.357895
otras -3.5863313 40.4419938
otras 2.6734637 42.2863372
otras -3.4471123 40.4508946
otras -0.8149265 41.6995606
otras -3.6000344 40.4268487
otras -1.1074122 40.3411627
otras -3.7653921 40.3632877
otras -3.8668244 40.7260433
otras -6.1260744 36.6850064
otras -3.7411753 40.393472
otras -2.9318286 43.2497905
otras 2.1886869 41.9104921
otras -3.5948802 40.4561778
otras -3.9062989 40.6230555
otras 2.0832941 41.297445
otras -3.794561 43.4848891
otras -0.7177592 38.2684049
otras -1.6846077 42.8041023
otras -3.6669415 40.4555776
otras -3.588027 40.5896767
otras 2.3669532 41.6381868
otras -3.6617303 40.3752647
otras -5.96829 37.35779
otras -0.6843551 38.2988385
otras -1.0822446 41.425742
otras -3.7037902 40.4167754
otras 1.5697589 41.6442798
otras 2.1734035 41.3850639
otras 2.2015347 41.3977365
otras 2.1256775 41.3794549
otras -3.7358924 40.378739
otras 2.2450325 41.4469883
otras -4.4426499 40.3015944
otras -2.0204327 43.2213746
otras 1.7781725 41.2609517
otras -3.7648326 40.378179
otras -3.6513961 40.4385821
otras -2.3064955 36.8521383
otras -5.972419 37.4220883
otras 1.8700347 41.5375027
otras 2.195738 41.4389239
otras -3.2212883 40.3693459
otras -4.0639634 40.7390811
otras 2.1703896 41.4057522
otras -3.686803 40.3871712
otras -3.030301 43.3018898
otras -7.5558687 43.0113098
otras -3.7037902 40.4167754
otras -3.942854 40.698896
otras -3.5863313 40.3809156
otras -3.7037902 40.4167754
otras -0.0462082 39.9865582
otras -3.641028 40.3839301
otras -3.7536663 40.421432
otras -2.991233 43.3184368
otras -3.7015359 40.3842228
otras -5.3918578 36.8399211
otras -3.9924973 40.5959895
otras -2.7033575 42.8563356
otras 2.1797432 41.4203428
otras -4.9019199 37.92951
otras -5.6611195 43.5322015
otras -0.4731258 38.7073482
otras -3.730255 40.445828
otras -3.0876783 43.0847311
otras -1.0724525 37.9775507
otras -1.0898501 37.9577165
otras 2.7157866 39.7670693
otras -1.0476264 37.7174947
otras -3.8299702 40.3383162
otras 2.7775383 42.1134512
otras -16.3674953 28.4515098
otras -6.08708 40.03975
otras 1.8611122 41.4409282
otras -3.570348 40.211579
otras -3.7485874 40.2942493
otras -3.364402 40.484779
otras -0.5308607 39.5649531
otras -3.71893 40.44894
otras -8.321254 43.3946464
otras -4.2977068 36.7320369
otras -6.3725279 39.4709821
otras -3.7525127 40.2989561
otras -3.9701871 40.6720015
otras -3.7105128 40.4228399
otras -3.7194816 40.4656852
otras 1.7893422 41.4295205
otras 2.0857052 41.3841159
otras -3.559178 37.1293616
otras 2.3627458 41.4906732
otras -6.047505 37.3533339
otras -6.2885962 36.5270612
otras -6.1461102 36.4165052
otras -5.8828751 43.3952171
otras 1.6226538 41.5847817
otras -8.74674 42.2160112
otras -0.464519 39.4396123
otras 2.6795139 39.6247157
otras -3.7147111 40.3826919
otras 2.3274856 41.6685548
otras -3.9453377 40.7355099
otras -3.7625556 40.3333039
otras -4.7479048 41.6262066
otras -5.6057941 40.9797242
otras 1.9326228 41.4177165
otras 2.0832941 41.297445
otras -3.8956452 40.5653984
otras -3.7562059 40.3628043
otras 2.1804146 41.5839461
otras 2.4495767 41.5406172
montessori 2.1734035 41.3850639
montessori -3.6896174 40.4505689
montessori 2.18082 41.40492
montessori 1.3610909 41.1305517
montessori -3.1528692 40.6476021
montessori -3.9273778 38.9848295
montessori -1.1462807 37.9846236
montessori -0.3762881 39.4699075
montessori -0.8870499 41.6455612
montessori -3.79173 43.47398
montessori -0.98224 37.6056385
montessori -15.4173006 28.0996364
montessori -3.6718414 40.4782897
montessori -4.7913935 37.9005249
montessori -6.0642606 37.3732875
montessori -3.8686894 40.3383204
montessori -0.3762881 39.4699075
montessori 2.6650879 41.8624336
montessori -6.0450059 37.375855
montessori -3.4094629 36.8516273
montessori -8.648912 42.8571791
montessori -6.2840715 36.5263783
montessori -16.2500078 28.4696373
montessori -1.8092535 42.9143217
montessori -8.544636 42.8605668
montessori -3.6261976 40.5589672
montessori -5.9242391 37.2865803
montessori -0.8973142 41.6463285
montessori 2.1239469 41.3716558
montessori -3.57896 42.32686
montessori -0.3762881 39.4699075
montessori -2.4637136 36.834047
montessori -3.5016452 40.5964617
montessori -5.9869262 37.3954508
montessori -3.6725701 40.5001145
montessori -6.0684709 37.3191342
montessori 2.9981318 42.266483
montessori -2.646099 36.800672
montessori -13.59144 28.95352
montessori 2.1561082 41.3799558
montessori -4.419495 36.7203407
montessori -0.4074776 38.4139366
montessori -3.6840875 40.4485537
montessori -5.9730175 37.3781662
montessori -6.4152237 38.420285
montessori 2.8161662 41.9507984
montessori -3.6952896 40.4563733
montessori -1.1235096 37.9895012
montessori -15.3783403 27.9816975
montessori -15.4502424 28.0725699
montessori -0.3371889 39.6926035
montessori -3.8535283 40.4766673
montessori -3.7246498 40.4676698
montessori -3.4801349 36.7527767
montessori -15.4502424 28.0725699
montessori -3.8887699 40.4122794
montessori 2.7431421 42.1690197
montessori -3.660911 40.5196536
montessori -2.7033575 42.8563356
montessori -3.5930814 37.1819831
montessori -3.1820139 40.3259059
montessori -3.7037902 40.4167754
montessori -3.5762077 37.0882021
montessori -1.6493532 42.8251409
montessori -3.7077387 40.4081286
waldorf 2.40689 42.18958
waldorf 0.6200146 41.6175899
waldorf 2.3466264 41.5069344
waldorf 2.4480536 41.5427647
waldorf 2.2849594 41.6812673
waldorf -4.0759338 40.9511774
waldorf -2.949852 42.686258
waldorf -16.5827156 28.3732586
waldorf 1.7771361 41.2916049
waldorf -1.6317428 42.8278726
waldorf -4.7486139 41.6258711
waldorf 2.2568559 41.9343492
waldorf -3.9522135 40.5824357
waldorf -0.9633189 41.6592305
waldorf -3.8594626 43.3705852
waldorf -2.6729202 39.5998876
waldorf 2.5102008 41.6477384
waldorf -1.8728105 39.0009019
waldorf -0.4809098 38.3919582
waldorf -4.4930712 36.7423232
waldorf -3.849337 40.3458961
waldorf -6.0436551 37.3519219
waldorf -3.16017 40.632489
waldorf -3.6370119 40.5589052
waldorf -0.4872935 38.3878635
waldorf -2.8414362 43.3271038
waldorf -4.3809812 36.7329284
waldorf -3.4094629 36.8516273
waldorf -3.7829729 40.4604792
waldorf 0.057441 38.822194
waldorf -4.7839701 37.906118
waldorf -3.8197381 40.4243614
waldorf -16.3658349 28.4863293
waldorf -3.9637365 40.5838751
waldorf 0.443874 40.597972
waldorf -0.3084067 39.2044343
waldorf -3.8502617 40.46404
waldorf -2.1374162 40.0703925
waldorf -1.1304575 37.992331
waldorf -3.615145 40.4546839
waldorf -7.715703 43.0222113
waldorf -16.3008284 28.4438305
waldorf -2.5566339 42.8258962
waldorf -3.8197381 40.4243614
waldorf -16.4163064 28.3405621
waldorf 2.1586762 41.4246621
waldorf -5.6136677 36.0203231
waldorf -1.8534617 38.9940185
waldorf -17.8617366 28.6575481
waldorf -3.7037902 40.4167754
waldorf -16.7279937 28.117841
waldorf -0.1146293 38.5481459
waldorf -16.3640398 28.4776551
waldorf 2.396174 42.1866367
waldorf 2.8468333 39.6844028
waldorf -15.5210607 28.1201412
waldorf 2.8790408 42.025748
waldorf -3.4232213 36.9017931
waldorf -3.5985571 37.1773363
waldorf -2.0498779 42.7165465
waldorf -0.101496 38.5838933
waldorf -3.6895497 40.3924751
waldorf 2.8700394 39.7492559
waldorf -2.5716667 36.8144444
waldorf -3.7511268 40.3324002
waldorf -4.0608815 39.8606029
waldorf -3.7337796 40.3217333
waldorf 0.7087462 40.81183
waldorf 2.8349502 41.9896157
waldorf -3.986183 40.5944087
waldorf -3.8607233 40.484459
waldorf 2.23478 41.6382
waldorf -8.3721967 43.3351972
waldorf -3.9273778 38.9848295
waldorf -0.5629075 39.5445634
waldorf 2.0916521 41.4966475
waldorf -4.0043461 40.6187636
waldorf -3.9516321 40.5741642
libre 0.6870681 40.6453419
libre 0.9460066 41.0180274
libre 2.8394158 41.9388516
libre 2.9169749 42.0388569
libre 2.9934954 42.1056905
libre -4.0629253 40.6582507
libre 2.1396748 41.4900419
libre 1.8966105 41.54292
libre 2.0212568 41.4142303
libre 2.0617176 41.4602416
libre 2.7178464 41.6972043
libre 2.2233839 41.7971491
libre 2.0420152 41.4582155
libre 2.1595226 41.4009014
libre -4.1270438 40.583347
libre 1.3607894 41.1667116
libre 2.2371678 42.0149228
libre 2.1734035 41.3850639
libre 1.9734612 41.2658095
libre 2.1952579 41.4067121
libre 2.1327491 41.4090402
libre 2.1002543 41.5561957
libre -4.0166526 40.285599
libre 2.0320074 41.5773608
libre -4.747776 41.6262767
libre -4.031169 40.6621635
libre -3.986183 40.5944087
libre 2.7002508 39.6959651
libre 2.7836529 41.875728
libre -2.8203207 42.9581281
libre -4.0314942 39.8582004
libre 2.1332171 41.375823
libre -0.4184093 39.4766346
libre -4.7832238 37.89404
libre -6.716667 40.2
libre -5.750869 43.3670622
libre -0.8710884 38.1801605
libre 2.0873256 41.6172338
libre 1.3114903 41.1697671
libre -2.3876874 41.900955
libre 2.1610513 41.3743886
libre -5.5670959 42.5987263
libre 2.1537179 41.4019264
libre -13.6292961 29.0187798
libre -15.4443506 28.128659
libre 1.0972396 41.180513
libre -0.8752914 41.6498029
libre -0.4078018 42.1319859
libre -5.89305 37.4201674
libre 1.6118485 41.4768499
libre -16.3165002 28.4867213
libre 2.9419453 42.0461613
libre 2.8791339 42.0223935
libre -1.0993366 37.9971704
libre -0.8739234 41.6527545
libre 2.1525412 41.4016978
libre -3.9303518 40.577297
libre 2.0832941 41.297445
libre -4.86044 37.87127
libre 2.9225893 41.9965562
libre -0.6535914 39.6035184
libre -3.7037902 40.4167754
libre 1.1055321 41.1498259
libre -5.4509174 36.431902
libre -6.1965948 36.4718646
libre -17.3323294 28.0831407
libre 2.8430343 41.9542243
libre -3.7379591 40.4105344
libre 2.2404658 41.5492566
libre -8.60553 43.25053
libre -1.5233022 37.5314068
libre -6.1328179 37.3800349
libre -4.5598636 36.6598945
libre -1.165297 38.0745814
libre -0.3590071 39.484095
libre -5.8881542 43.5149529
libre -6.3119743 39.4498102
libre -3.1880083 40.5806832
libre 2.0910377 41.3772561
libre -4.0166526 40.285599
libre -1.6406004 41.3559847
libre -3.8769847 40.1585774
libre -3.7278252 40.4657932
libre -2.776965 37.48954
libre -2.4196361 42.4261346
libre -3.7006934 40.4107668
libre -4.0167486 40.5609399
libre -4.5682458 36.6911973
libre -4.0071332 40.5726758
libre -0.5210691 39.6546928
libre 2.6299286 39.6006431
libre -3.7059028 40.3998674
libre -3.7037902 40.4167754
libre -0.5222379 39.118077
libre -1.8998001 43.3223603
libre -3.6327018 40.4066857
libre -4.8365094 37.8740762
libre -2.3782427 36.8382899
libre 2.1090766 41.5429928
libre -0.3913172 39.4935471
libre -16.4052541 28.3079186
libre -15.4551365 28.0321547
libre -0.8236111 38.6136111
libre -0.5114322 39.5657536
libre 2.515462 41.816251
libre -3.7043353 40.4332215
libre -0.9247501 37.7839149
libre -3.7816093 40.7528628
libre -2.9142377 43.2719611
libre -0.5853683 39.5950051
libre 1.3114903 41.1697671
libre -15.4975124 28.0358502
libre 2.1734035 41.3850639
libre -3.6021536 37.1790969
libre 0.9533984 42.3406907
libre -3.9082735 40.6226405
libre -3.5621048 36.9788472
libre -3.9113634 40.512814
libre -3.9202801 40.264347
libre 2.1734035 41.3850639
libre -3.3574265 40.4826785
libre -3.6895146 40.4675351
libre -0.8890853 41.6488226
libre -3.5073355 40.3300805
libre -3.7054147 40.4068618
libre -3.7555746 40.3327289
libre 2.6313379 39.569349
libre 3.837754 40.0005268
libre -8.6492123 42.8605339
libre -3.7108314 40.4171908
libre -8.3422786 43.2926146
libre -0.5968562 39.6274082
libre 2.6650879 41.8624336
libre -14.351552 28.0511096
libre -0.4978972 39.5538144
libre 1.5350964 38.9852753
libre -1.8370971 42.8640017
libre 4.255849 39.847259
libre -3.7257386 40.3943402
libre -3.5205975 40.3283709
libre 2.791944 41.9726971
libre 2.7022387 39.6386246
libre -0.2285807 38.5079606
libre 2.1560987 41.4083726
libre -1.15829 37.646
libre -0.4184093 39.4766346
libre -6.0924647 36.7089942
libre -3.7059349 40.5790045
libre -5.600819 36.018776
libre -0.3762881 39.4699075
libre -3.7266855 40.4143658
libre -8.7673929 42.593848
libre -5.8301092 43.3883059
libre -3.7003632 40.4765501
libre -3.4962395 40.8354713
libre -3.6555229 40.4679447
libre 2.1425692 41.3888317
libre -4.1088069 40.9429032
libre -4.0051367 40.56892
libre 0.3275544 41.5137061
libre -0.41134 39.5335655
libre 2.2015347 41.3977365
libre -3.9113634 40.512814
libre -0.8973142 41.6612847
libre 2.188015 41.4117601
libre 2.511129 41.8165773
libre -3.9383557 40.3057442
libre -0.7125608 38.2699329
libre -8.6446202 42.4298846
libre -0.4643906 39.5424148
libre 0.1660813 38.7890109
libre 2.3619306 41.4916943
libre -8.3675087 43.3275296
libre 2.653018 41.7652725
libre -3.680072 40.4161588
libre -0.5517843 39.5962965
libre -3.637703 40.9911597
libre -3.9488482 40.735132
libre -4.6698742 37.9337474
libre -0.4906855 38.3459963
libre -5.9841891 37.3973621
libre -0.3960275 39.5452518
libre -1.1517188 37.9794498
libre -0.7719244 38.4807948
libre -0.3120668 39.6158923
libre 2.1360264 41.3702722
libre -1.6760691 42.6953909
libre -15.4390254 27.8555384
libre -5.5609101 42.5815356
libre -5.8426014 43.3665646
libre -0.3540808 39.4844048
libre -0.5920027 38.2412679
libre -4.4212655 36.721261
libre -0.2784385 39.6798633
libre -0.4456433 39.4836013
libre -3.5378487 40.382314
libre -3.2018198 40.6678056
libre -4.51734 40.70647
libre 2.4851463 41.579406
libre 1.7543413 41.2546741
libre 2.1131154 41.3943819
libre -0.5045206 38.3760664
libre -6.1039945 37.3104654
libre -1.0681918 37.941845
libre -4.024875 40.6945539
libre -3.6505221 40.4266173
libre 2.1585314 41.4123152
libre -3.6516324 40.4062136
libre -3.5110787 40.3302068
libre 4.1755952 39.9284406
libre 2.9079214 42.017653
libre -0.418971 39.4731179
libre 3.8389047 39.9991163
libre -3.7739869 40.4614648
libre 2.0025921 41.5612679
libre -5.6635397 40.9701039
libre -3.6547195 40.4729146
libre -0.4958217 38.391907
libre 2.1980307 41.402986
libre -0.414139 39.521932
libre -3.7008671 40.4763511
libre -0.6176177 38.3304698
libre -3.6191869 40.8630712
libre -3.7790684 40.3442317
libre -0.8925446 41.6363925
libre -3.793428 37.2559536
libre 2.0566806 41.3673523
libre -6.0901216 36.2788789
libre -6.342229 38.914265
libre -0.794315 41.761604
libre -3.6947003 42.3488027
libre -5.9246653 43.5579523
libre -3.710519 40.598512
libre -5.9529365 37.4038681
libre -3.7399866 36.735342
libre -6.0785104 36.3146126
libre -6.9438707 38.9206017
libre -3.671396 40.4880296
libre 2.3974737 41.5503623
libre -8.5226706 42.7653348
libre -8.6446202 42.4298846
libre -3.8056526 40.4440049
libre -7.2002651 37.2061566
libre 2.6594655 39.5776775
libre -6.7533166 37.5718879
libre -3.7037902 40.4167754
libre -0.062368 38.778935
libre -3.7858583 40.4483281
libre 2.9812456 42.268818
libre -4.0797673 40.5932955
libre -5.9930945 37.3849027
libre 2.1544884 41.4040489
libre -4.1327024 40.5793612
libre -1.6482653 42.8116631
libre -0.3115898 39.6161586
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment