mirror of
https://github.com/medialab-prado/poblados-colonizacion-colonias-penitenciarias.git
synced 2024-12-26 04:21:23 +01:00
timeline
This commit is contained in:
parent
acb86c18d2
commit
86af12f449
21 changed files with 127 additions and 9733 deletions
127
docs/colonizacion-leaflet/index.html
Normal file
127
docs/colonizacion-leaflet/index.html
Normal file
|
@ -0,0 +1,127 @@
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<title>Colonización Interior - Mapa</title>
|
||||||
|
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.3/dist/leaflet.css" integrity="sha512-07I2e+7D8p6he1SIM+1twR5TIrhUQn9+I6yjqD53JQjFiMf8EtC93ty0/5vJTZGF8aAocvHYNEDJajGdNx1IsQ==" crossorigin=""/>
|
||||||
|
|
||||||
|
<script src="https://unpkg.com/leaflet@1.0.3/dist/leaflet.js" integrity="sha512-A7vV8IFfih/D732iSSKi20u/ooOfj/AGehOKq0f4vLT1Zr2Y+RX7C+w8A1gaSasGtRUZpF/NZgzSAu4/Gc41Lg==" crossorigin=""></script>
|
||||||
|
<script src="js/leaflet.ajax.min.js"></script>
|
||||||
|
<script src="js/jquery-3.2.1.min.js"></script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
#map {
|
||||||
|
width: 100%;
|
||||||
|
height: 90vh;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.info { padding: 6px 8px; font: 14px/16px Arial, Helvetica, sans-serif; background: white; background: rgba(255,255,255,0.8); box-shadow: 0 0 15px rgba(0,0,0,0.2); border-radius: 5px; } .info h4 { margin: 0 0 5px; color: #777; }
|
||||||
|
.legend { text-align: left; line-height: 18px; color: #555; } .legend i { width: 18px; height: 18px; float: left; margin-right: 8px; opacity: 0.7; }</style>
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id='map'></div>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
var mymap = L.map('map').setView([40.4168, -3.7038], 6);
|
||||||
|
|
||||||
|
L.tileLayer('https://api.mapbox.com/styles/v1/mapbox/satellite-v9/tiles/256/{z}/{x}/{y}?access_token=pk.eyJ1IjoidXJiYW5vdmlpaSIsImEiOiJjaWxmODU2ODIwMDJ5dmxsejRva3FyaWU0In0.xUle2zZJMfYkhXdZUsrlqQ', {
|
||||||
|
maxZoom: 11,
|
||||||
|
attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' +
|
||||||
|
'<a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' +
|
||||||
|
'Imagery © <a href="http://mapbox.com">Mapbox</a>',
|
||||||
|
id: 'mapbox.streets'
|
||||||
|
}).addTo(mymap);
|
||||||
|
|
||||||
|
var emb_style = {
|
||||||
|
radius: 4,
|
||||||
|
fillColor: "#2b8cbe",
|
||||||
|
color: "#000",
|
||||||
|
weight: 0,
|
||||||
|
opacity: 1,
|
||||||
|
fillOpacity: 1
|
||||||
|
};
|
||||||
|
|
||||||
|
var col_style = {
|
||||||
|
radius: 4,
|
||||||
|
fillColor: "#fdbb84",
|
||||||
|
color: "#000",
|
||||||
|
weight: 0,
|
||||||
|
opacity: 1,
|
||||||
|
fillOpacity: 1
|
||||||
|
};
|
||||||
|
|
||||||
|
var pob_style = {
|
||||||
|
radius: 4,
|
||||||
|
fillColor: "#e34a33",
|
||||||
|
color: "#000",
|
||||||
|
weight: 0,
|
||||||
|
opacity: 1,
|
||||||
|
fillOpacity: 1
|
||||||
|
};
|
||||||
|
|
||||||
|
$.getJSON("data/embalses.geojson", function(emb_data){
|
||||||
|
L.geoJson(emb_data, {
|
||||||
|
pointToLayer: function (feature, latlng) {
|
||||||
|
return L.circleMarker(latlng, emb_style);
|
||||||
|
}
|
||||||
|
}).addTo(mymap);
|
||||||
|
});
|
||||||
|
|
||||||
|
$.getJSON("data/coloniaspenit.geojson", function(col_data){
|
||||||
|
L.geoJson(col_data, {
|
||||||
|
pointToLayer: function (feature, latlng) {
|
||||||
|
return L.circleMarker(latlng, col_style);
|
||||||
|
}
|
||||||
|
}).addTo(mymap);
|
||||||
|
});
|
||||||
|
|
||||||
|
$.getJSON("data/pobladoscol.geojson", function(pob_data){
|
||||||
|
L.geoJson(pob_data, {
|
||||||
|
pointToLayer: function (feature, latlng) {
|
||||||
|
return L.circleMarker(latlng, pob_style);
|
||||||
|
}
|
||||||
|
}).addTo(mymap);
|
||||||
|
});
|
||||||
|
|
||||||
|
$.getJSON("data/zonas.geojson", function(zon_data){
|
||||||
|
L.geoJson(zon_data,{
|
||||||
|
style: function(feature){
|
||||||
|
var fillColor,
|
||||||
|
type = feature.properties.Tipo;
|
||||||
|
if (type == "A") fillColor = "#e5f5e0";
|
||||||
|
else if (type == "B") fillColor = "#a1d99b";
|
||||||
|
else if (type == "C") fillColor = "#31a354";
|
||||||
|
else fillColor = "#f7f7f7"; //no data
|
||||||
|
return { color: "#999", weight: 0, fillColor: fillColor, fillOpacity: .6};
|
||||||
|
},
|
||||||
|
onEachFeature: function (feature, layer){
|
||||||
|
layer.bindPopup( "<strong> Nombre: " + feature.properties.Nombre + "</strong><br/>" + "<strong> Tipo: </strong>" + feature.properties.D_Tipo + "<br/>" + "<strong> Estado: </strong>" +feature.properties.D_Estado)
|
||||||
|
}
|
||||||
|
}).addTo(mymap);
|
||||||
|
|
||||||
|
var legend = L.control({position: 'bottomright'});
|
||||||
|
|
||||||
|
legend.onAdd = function (mymap) {
|
||||||
|
var div = L.DomUtil.create('div', 'info legend');
|
||||||
|
div.innerHTML = "<i style='background: #e5f5e0'> </i>Poblados de Colonización <br> Colonias Penitenciarias <br> Embalses";
|
||||||
|
return div;
|
||||||
|
};
|
||||||
|
|
||||||
|
legend.addTo(mymap);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
File diff suppressed because one or more lines are too long
|
@ -1,15 +0,0 @@
|
||||||
{
|
|
||||||
"type": "FeatureCollection",
|
|
||||||
|
|
||||||
"features": [
|
|
||||||
{ "type": "Feature", "properties": { "ID": "SCPM1", "AGRUPACION": "1", "ENTIDAD": "La Corchuela", "MUNICIPIO": "Dos Hermanas", "ANYO INICI": "1939", "ANYO FINAL": 1944, "X ETRS89 U": 235974, "Y": 4127991, "field_9": "Canal del Bajo Guadalquivir y +", "Info": "El Canal de los Presos" }, "geometry": { "type": "Point", "coordinates": [ -5.97723294304128, 37.261081730628874 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": "SCPM2", "AGRUPACION": "1", "ENTIDAD": "Los Merinales", "MUNICIPIO": "Dos Hermanas", "ANYO INICI": "1944", "ANYO FINAL": 1960, "X ETRS89 U": 237303, "Y": 4132469, "field_9": null, "Info": "El Canal de los Presos" }, "geometry": { "type": "Point", "coordinates": [ -5.963846798782418, 37.301768088468165 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": "SCPM3", "AGRUPACION": "2", "ENTIDAD": "La Colonia", "MUNICIPIO": "Montijo", "ANYO INICI": "1941", "ANYO FINAL": 1957, "X ETRS89 U": 188429, "Y": 4313814, "field_9": "Canal de Montijo y +", "Info": "http:\/\/www.extremaduramisteriosa.com\/colonia-penitenciaria-militarizada-no2-de-montijo" }, "geometry": { "type": "Point", "coordinates": [ -6.593511883804979, 38.917950480148512 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": "SCPM4", "AGRUPACION": "3", "ENTIDAD": "Campamento de la Sal", "MUNICIPIO": "Talavera de la Reina", "ANYO INICI": "1940", "ANYO FINAL": 1953, "X ETRS89 U": 352377, "Y": 4430639, "field_9": "Canal del Bajo Alberche", "Info": "Jose PEREZ CONDE - http:\/\/e-spacio.uned.es\/fez\/view\/tesisuned:GeoHis-Jperez" }, "geometry": { "type": "Point", "coordinates": [ -4.72970601528737, 40.013053662439603 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": "SCPM5", "AGRUPACION": "3bis", "ENTIDAD": null, "MUNICIPIO": "Madrigal de la Vera", "ANYO INICI": "1953", "ANYO FINAL": 1959, "X ETRS89 U": 300052, "Y": 4443243, "field_9": "Canal del Rio Tietar", "Info": "Jose PEREZ CONDE - mas info http:\/\/www.encastillalamancha.es\/sociedad\/salvando-la-memoria-de-unos-presos-que-catapultaron-la-prosperidad-talaverana-fotos\/" }, "geometry": { "type": "Point", "coordinates": [ -5.34627083876536, 40.115748720241179 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": "SCPM6", "AGRUPACION": "4", "ENTIDAD": null, "MUNICIPIO": "A�over del Tajo", "ANYO INICI": "1940", "ANYO FINAL": 1944, "X ETRS89 U": 438074, "Y": 4430598, "field_9": "Real Acequia del Jarama", "Info": "Jose PEREZ CONDE" }, "geometry": { "type": "Point", "coordinates": [ -3.725714718131677, 40.023322393349083 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": "SCPM7", "AGRUPACION": "4", "ENTIDAD": null, "MUNICIPIO": "Navalmoral de la Mata", "ANYO INICI": "1950", "ANYO FINAL": 1953, "X ETRS89 U": 282823, "Y": 4419263, "field_9": "Pantano de Rosarito, rio Tietar", "Info": "Jose PEREZ CONDE" }, "geometry": { "type": "Point", "coordinates": [ -5.540244392621212, 39.895636676160478 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": "SCPM8", "AGRUPACION": "6", "ENTIDAD": "Los Merinales", "MUNICIPIO": "Dos Hermanas", "ANYO INICI": "1942", "ANYO FINAL": 1944, "X ETRS89 U": 237303, "Y": 4132469, "field_9": "Canal del Bajo Guadalquivir y +", "Info": "El Canal de los Presos - http:\/\/www.elmundo.es\/elmundo\/2009\/05\/16\/andalucia_sevilla\/1242495819.html" }, "geometry": { "type": "Point", "coordinates": [ -5.963846798782418, 37.301768088468165 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": "SCPM9", "AGRUPACION": "7", "ENTIDAD": null, "MUNICIPIO": "Vilanova de la Barca", "ANYO INICI": "?", "ANYO FINAL": 1956, "X ETRS89 U": 810191, "Y": 4622084, "field_9": "Canal de Arag�n y Catalu�a; Canal de la Violada", "Info": "El Canal de los Presos" }, "geometry": { "type": "Point", "coordinates": [ 0.727132941438467, 41.690094446661028 ] } }
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,153 +0,0 @@
|
||||||
{
|
|
||||||
"type": "FeatureCollection",
|
|
||||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::32630" } },
|
|
||||||
"features": [
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2340004, "Nombre": "AGUILAR DE CAMPOO", "Nombre SEP": "AGUILAR DE CAMPOO", "Otro nombr": "---", "Fecha": "02\/09\/1964", "Anyo": 1964, "Rio": "PISUERGA", "Municipio": "AGUILAR DE CAMPOO", "Cuenca": "DUERO", "Provincia": "PALENCIA", "x": 394705, "y": 4739000, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 394705.00000079867, 4739000.0001174202 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8160006, "Nombre": "ALARCON", "Nombre SEP": "ALARCON", "Otro nombr": "---", "Fecha": "30\/09\/1955", "Anyo": 1955, "Rio": "JUCAR", "Municipio": "ALARCON", "Cuenca": "JUCAR", "Provincia": "CUENCA", "x": 576346, "y": 4379982, "Tipos": "Regulaci?n, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 576345.99999949, 4379982.0001132609 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120006, "Nombre": "ALCORA", "Nombre SEP": "ALCORA", "Otro nombr": "---", "Fecha": "29\/09\/1958", "Anyo": 1958, "Rio": "LUCENA", "Municipio": "ALCORA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 737177, "y": 4442329, "Tipos": "Riego, Regulaci?n, ---" }, "geometry": { "type": "Point", "coordinates": [ 737167.61900656368, 4442323.6275669578 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110041, "Nombre": "ALMODOVAR (DIQUE DEL COLLADO) (RECRECIDA)", "Nombre SEP": "ALMODOVAR", "Otro nombr": "---", "Fecha": "01\/01\/1972", "Anyo": 1972, "Rio": "ALMODOVAR", "Municipio": "TARIFA", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 261945, "y": 4004510, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 261636.17802516895, 4004284.9828798696 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190001, "Nombre": "ALMOGUERA", "Nombre SEP": "ALMOGUERA", "Otro nombr": "---", "Fecha": "01\/01\/1947", "Anyo": 1947, "Rio": "TAJO", "Municipio": "ALMOGUERA", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 503585, "y": 4460330, "Tipos": "Hidroel?ctrico, Regulaci?n, Riego" }, "geometry": { "type": "Point", "coordinates": [ 503565.60905815038, 4458199.7418034226 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030027, "Nombre": "AMADORIO", "Nombre SEP": "AMADORIO", "Otro nombr": "---", "Fecha": "24\/02\/1960", "Anyo": 1960, "Rio": "AMADORIO", "Municipio": "VILLAJOYOSA", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 738600, "y": 4268800, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 738437.0954115598, 4268661.7138019092 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100070, "Nombre": "ARAYA DE ARRIBA (DIQUE DEL COLLADO)", "Nombre SEP": "ARAYA DE ARRIBA", "Otro nombr": "---", "Fecha": "01\/01\/1958", "Anyo": 1958, "Rio": "ANCIANES", "Municipio": "BROZAS", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 184298, "y": 4380608, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 184558.40204846259, 4380266.237662144 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110031, "Nombre": "ARCOS", "Nombre SEP": "ARCOS", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "GUADALETE", "Municipio": "ARCOS DE LA FRONTERA", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 250520, "y": 4071143, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 250681.31907172143, 4071016.8217665544 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 7300010, "Nombre": "ARGOS", "Nombre SEP": "ARGOS", "Otro nombr": "---", "Fecha": "01\/12\/1972", "Anyo": 1972, "Rio": "ARGOS", "Municipio": "CEHEGIN", "Cuenca": "SEGURA", "Provincia": "MURCIA", "x": 611000, "y": 4225906, "Tipos": "Defensa frente a avenidas, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 610836.42212914326, 4225685.5736164432 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8440007, "Nombre": "ARQUILLO DE SAN BLAS", "Nombre SEP": "ARQUILLO DE SAN BLAS", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "GUADALAVIAR", "Municipio": "TERUEL", "Cuenca": "JUCAR", "Provincia": "TERUEL", "x": 653793, "y": 4469304, "Tipos": "Abastecimiento, Defensa frente a avenidas, Riego" }, "geometry": { "type": "Point", "coordinates": [ 652382.50345345237, 4469655.3782416154 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280039, "Nombre": "ARROYOS, LOS (DIQUE DE COLA)", "Nombre SEP": "ARROYOS, LOS", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "LADRON", "Municipio": "ESCORIAL, EL", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 411261, "y": 4493850, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 411184.91045507544, 4493761.0450720405 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280048, "Nombre": "ATAZAR, EL", "Nombre SEP": "ATAZAR, EL", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "LOZOYA", "Municipio": "PATONES Y ATAZAR", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 460256, "y": 4529303, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 460256.00000028004, 4529303.0001151189 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450030, "Nombre": "AZUTAN", "Nombre SEP": "AZUTAN", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "TAJO", "Municipio": "AZUTAN Y ALCOLEA DE TAJO", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 321222, "y": 4405375, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 321066.92298715154, 4405080.9209864438 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9250051, "Nombre": "BALAGUER PARTIDOR (CONTRAEMBALSE)", "Nombre SEP": "BALAGUER", "Otro nombr": "---", "Fecha": "31\/12\/1958", "Anyo": 1958, "Rio": "SEGRE", "Municipio": "OS DE BALAGUER", "Cuenca": "EBRO", "Provincia": "LLEIDA", "x": 818394, "y": 4638887, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 818526.40346842422, 4640626.9061219608 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8440011, "Nombre": "BALAGUERAS", "Nombre SEP": "BALAGUERAS", "Otro nombr": "---", "Fecha": "31\/12\/1957", "Anyo": 1957, "Rio": "PALOMERAS", "Municipio": "RUBIELOS DE MORA", "Cuenca": "JUCAR", "Provincia": "TERUEL", "x": 697715, "y": 4454450, "Tipos": "Riego, Regulaci?n, ---" }, "geometry": { "type": "Point", "coordinates": [ 697577.48593425588, 4453843.5759735284 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1240011, "Nombre": "BARCENA", "Nombre SEP": "BARCENA", "Otro nombr": "---", "Fecha": "31\/12\/1960", "Anyo": 1960, "Rio": "SIL", "Municipio": "PONFERRADA", "Cuenca": "MI?O-SIL", "Provincia": "LEON", "x": 207593, "y": 4720277, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 207860.1095021104, 4720083.7210623967 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240029, "Nombre": "BARRIOS DE LUNA", "Nombre SEP": "BARRIOS DE LUNA", "Otro nombr": "---", "Fecha": "31\/12\/1956", "Anyo": 1956, "Rio": "ORBIGO - LUNA (LUNA)", "Municipio": "BARRIOS DE LUNA, LOS", "Cuenca": "DUERO", "Provincia": "LEON", "x": 266290, "y": 4748255, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 266205.24495764181, 4748084.4356891187 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140040, "Nombre": "BEMBEZAR", "Nombre SEP": "BEMBEZAR", "Otro nombr": "---", "Fecha": "01\/01\/1963", "Anyo": 1963, "Rio": "BEMBEZAR", "Municipio": "HORNACHUELOS", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 305740, "y": 4197410, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 305740.00000120461, 4197410.0001107231 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8460027, "Nombre": "BENAGEBER", "Nombre SEP": "BENAGEBER", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "TURIA", "Municipio": "BENAGEBER", "Cuenca": "JUCAR", "Provincia": "VALENCIA", "x": 663079, "y": 4399195, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 662970.70098176145, 4399158.9837106392 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240030, "Nombre": "BENAMARIAS", "Nombre SEP": "BENAMARIAS", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "SALGUIRAL", "Municipio": "MAGAZ DE CEPEDA", "Cuenca": "DUERO", "Provincia": "LEON", "x": 244026, "y": 4716999, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 244249.85678478872, 4717135.5636123661 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030035, "Nombre": "BENIARRES", "Nombre SEP": "BENIARRES", "Otro nombr": "---", "Fecha": "01\/04\/1958", "Anyo": 1958, "Rio": "SERPIS", "Municipio": "BENIARRES", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 729605, "y": 4299796, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 729456.7645840561, 4299517.3658398185 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5180023, "Nombre": "BERMEJALES, LOS", "Nombre SEP": "BERMEJALES, LOS", "Otro nombr": "---", "Fecha": "01\/01\/1958", "Anyo": 1958, "Rio": "CACIN", "Municipio": "ARENAS DEL REY", "Cuenca": "GUADALQUIVIR", "Provincia": "GRANADA", "x": 420700, "y": 4095050, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 420684.81561364455, 4094809.7185910572 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170002, "Nombre": "BOADELLA", "Nombre SEP": "BOADELLA (ELS FANGOTS)", "Otro nombr": "---", "Fecha": "16\/12\/1969", "Anyo": 1969, "Rio": "MUGA", "Municipio": "DARNIUS", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 981015, "y": 4704322, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 980552.37202132598, 4704158.4598623412 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230002, "Nombre": "BOLERA, LA", "Nombre SEP": "BOLERA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "GUADALETIN", "Municipio": "POZO ALCON", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 508658, "y": 4179650, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 508658.0, 4179650.0001105154 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100091, "Nombre": "BORBOLLON", "Nombre SEP": "BORBOLLON", "Otro nombr": "---", "Fecha": "10\/05\/1954", "Anyo": 1954, "Rio": "ARRAGO", "Municipio": "SANTIBA?EZ EL ALTO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 194910, "y": 4447965, "Tipos": "Hidroel?ctrico, Riego, Adecuaci?n ambiental" }, "geometry": { "type": "Point", "coordinates": [ 195190.99819749262, 4447824.9668272557 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100088, "Nombre": "BORBOLLON (DERIVACION) - ARRAGO (CONTRAEMBALSE)", "Nombre SEP": "BORBOLLON (DERIVACION) - ARRAGO", "Otro nombr": "---", "Fecha": "01\/01\/1954", "Anyo": 1954, "Rio": "ARRAGO", "Municipio": "SANTIBA?EZ EL ALTO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 193368, "y": 4446703, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 193631.9414122852, 4446525.3927811487 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110061, "Nombre": "BORNOS", "Nombre SEP": "BORNOS", "Otro nombr": "---", "Fecha": "01\/01\/1961", "Anyo": 1961, "Rio": "GUADALETE", "Municipio": "BORNOS", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 253744, "y": 4075482, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 253780.05668119769, 4075286.3235553531 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100094, "Nombre": "BOYERIL 2, EL", "Nombre SEP": "BOYERIL 2, EL", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "ARROYO MANCO", "Municipio": "CASATEJADA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 274235, "y": 4419290, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 274235.00000152638, 4419290.000113708 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060047, "Nombre": "BROVALES", "Nombre SEP": "BROVALES", "Otro nombr": "---", "Fecha": "01\/01\/1960", "Anyo": 1960, "Rio": "BROVALES", "Municipio": "JEREZ DE LOS CABALLEROS", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 176798, "y": 4251307, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 176992.98533376446, 4250732.7318027616 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220016, "Nombre": "BUBAL", "Nombre SEP": "BUBAL", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "GALLEGO", "Municipio": "HOZ DE JACA, BIESCAS", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 720079, "y": 4729203, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 720078.99999833736, 4729203.0001172731 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190007, "Nombre": "BUENDIA", "Nombre SEP": "BUENDIA", "Otro nombr": "---", "Fecha": "31\/12\/1958", "Anyo": 1958, "Rio": "GUADIELA", "Municipio": "BUENDIA", "Cuenca": "TAJO", "Provincia": "CUENCA", "x": 518481, "y": 4472261, "Tipos": "Hidroel?ctrico, Abastecimiento, Riego" }, "geometry": { "type": "Point", "coordinates": [ 518412.07051055285, 4472063.1819426892 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2420008, "Nombre": "CAMPILLO DE BUITRAGO", "Nombre SEP": "CAMPILLO DE BUITRAGO", "Otro nombr": "---", "Fecha": "30\/09\/1969", "Anyo": 1969, "Rio": "DUERO", "Municipio": "SORIA Y GARRAY", "Cuenca": "DUERO", "Provincia": "SORIA", "x": 539483, "y": 4631600, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 539343.09939355741, 4631392.82749373 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410016, "Nombre": "CANTILLANA", "Nombre SEP": "CANTILLANA", "Otro nombr": "---", "Fecha": "31\/12\/1956", "Anyo": 1956, "Rio": "GUADALQUIVIR", "Municipio": "CANTILLANA", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 252655, "y": 4164393, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 251785.19596559749, 4164327.7773508201 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450033, "Nombre": "CASTREJON", "Nombre SEP": "CASTREJON", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "TAJO", "Municipio": "PUEBLA DE MONTALBAN, LA Y POL?N", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 389280, "y": 4410440, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 389280.0000007464, 4410440.0001136456 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450014, "Nombre": "CASTREJON \/ CA?ARES", "Nombre SEP": "CASTREJON \/ CAARES", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "ARROYO CA?ARES", "Municipio": "PUEBLA DE MONTALBAN, LA", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 382105, "y": 4411925, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 382106.99343965441, 4411775.1499353675 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450043, "Nombre": "CASTREJON \/ CARPIO, EL", "Nombre SEP": "CASTREJON \/ CARPIO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "ARROYO EL CARPIO", "Municipio": "CARPIO DE TAJO", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 376065, "y": 4413100, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 375915.00528282166, 4412880.6701109689 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450047, "Nombre": "CAZALEGAS", "Nombre SEP": "CAZALEGAS", "Otro nombr": "---", "Fecha": "31\/12\/1949", "Anyo": 1949, "Rio": "ALBERCHE", "Municipio": "CAZALEGAS", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 354505, "y": 4430825, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 354505.00000098825, 4430825.0001138924 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110019, "Nombre": "CELEMIN (ALIVIADERO) (DIQUE DEL COLLADO)", "Nombre SEP": "CELEMIN", "Otro nombr": "---", "Fecha": "01\/01\/1974", "Anyo": 1974, "Rio": "CELEMIN", "Municipio": "MEDINA-SIDONIA", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 251076, "y": 4021595, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 250863.16976525041, 4020815.2617814709 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 7020010, "Nombre": "CENAJO, EL", "Nombre SEP": "CENAJO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1960", "Anyo": 1960, "Rio": "SEGURA", "Municipio": "MORATALLA Y HELLIN", "Cuenca": "SEGURA", "Provincia": "MURCIA", "x": 607142, "y": 4247250, "Tipos": "Defensa frente a avenidas, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 606848.28714350122, 4247028.4726568563 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2490003, "Nombre": "CERNADILLA", "Nombre SEP": "CERNADILLA", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "TERA", "Municipio": "CERNADILLA- MANZANAL DE ARRIBA", "Cuenca": "DUERO", "Provincia": "ZAMORA", "x": 213312, "y": 4657994, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 213557.10403010057, 4657744.3996864315 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450040, "Nombre": "CERQUILLA, LA", "Nombre SEP": "CERQUILLA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "JULIAN (ARROYO DE SAN JULIAN)", "Municipio": "CALZADA DE OROPESA, LA", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 307907, "y": 4429641, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 307907.00000130397, 4429641.0001138579 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4100015, "Nombre": "CIJARA", "Nombre SEP": "CIJARA", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "GUADIANA", "Municipio": "ALIA Y HERRERA DEL DUQUE", "Cuenca": "GUADIANA", "Provincia": "CACERES", "x": 326475, "y": 4360367, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 326475.00000114751, 4360367.000112975 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9430006, "Nombre": "CIURANA", "Nombre SEP": "CIURANA", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "CIURANA", "Municipio": "CORNUDELLA DE MONTSANT", "Cuenca": "EBRO", "Provincia": "TARRAGONA", "x": 828373, "y": 4574080, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 828372.99999765214, 4574080.0001155054 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170006, "Nombre": "COLOMERS (AZUD)", "Nombre SEP": "COLOMERS", "Otro nombr": "---", "Fecha": "01\/12\/1967", "Anyo": 1967, "Rio": "TER", "Municipio": "COLOMERS", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 996004, "y": 4675791, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 996003.99999633152, 4675791.0001164544 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140036, "Nombre": "CORDOBILLA", "Nombre SEP": "CORDOBILLA", "Otro nombr": "---", "Fecha": "01\/01\/1953", "Anyo": 1953, "Rio": "GENIL", "Municipio": "PUENTE GENIL", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 347701, "y": 4135123, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 347701.00000092073, 4135123.0001098318 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100064, "Nombre": "CORONO, EL", "Nombre SEP": "CORONO, EL", "Otro nombr": "---", "Fecha": "01\/01\/1971", "Anyo": 1971, "Rio": "ARROYO GODINO", "Municipio": "PASARON DE LA VERA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 260734, "y": 4435578, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 260639.26184376067, 4435536.0243036253 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5180012, "Nombre": "CUBILLAS", "Nombre SEP": "CUBILLAS", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "CUBILLAS", "Municipio": "ALBOLOTE, CHAPARRAL", "Cuenca": "GUADALQUIVIR", "Provincia": "GRANADA", "x": 439470, "y": 4126405, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 439525.57180033729, 4125610.3503942308 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2420001, "Nombre": "CUERDA DEL POZO", "Nombre SEP": "CUERDA DEL POZO", "Otro nombr": "---", "Fecha": "31\/12\/1941", "Anyo": 1941, "Rio": "DUERO", "Municipio": "VINUESA", "Cuenca": "DUERO", "Provincia": "SORIA", "x": 524663, "y": 4636207, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 524552.53323193337, 4636007.3724323958 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9390001, "Nombre": "EBRO", "Nombre SEP": "EBRO", "Otro nombr": "---", "Fecha": "31\/12\/1945", "Anyo": 1945, "Rio": "EBRO", "Municipio": "ROZAS DE VALDEARROLLO, LAS", "Cuenca": "EBRO", "Provincia": "CANTABRIA", "x": 414326, "y": 4758227, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 414326.00000065414, 4758227.0001176223 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280052, "Nombre": "ENCINILLA, LA", "Nombre SEP": "ENCINILLA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "ENCINILLA (ARROYO ENCINILLA)", "Municipio": "GUADARRAMA", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 406098, "y": 4503397, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 406098.00000065536, 4503397.0001148004 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190016, "Nombre": "ENTREPE?AS", "Nombre SEP": "ENTREPEAS", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "TAJO", "Municipio": "SACEDON, AU?ON", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 521162, "y": 4482457, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 521189.21548734041, 4482467.196376143 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410014, "Nombre": "ESPARRAGAL, EL", "Nombre SEP": "ESPARRAGAL, EL", "Otro nombr": "---", "Fecha": "31\/12\/1970", "Anyo": 1970, "Rio": "ENCARNACION", "Municipio": "GERENA", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 224955, "y": 4160665, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 224955.00000167952, 4160665.0001101429 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190026, "Nombre": "ESTREMERA", "Nombre SEP": "ESTREMERA", "Otro nombr": "---", "Fecha": "01\/01\/1950", "Anyo": 1950, "Rio": "TAJO", "Municipio": "DRIEBES, LEGANIEL", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 499510, "y": 4450630, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 499510.00000000338, 4450630.0001141671 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9430007, "Nombre": "FLIX", "Nombre SEP": "FLIX", "Otro nombr": "---", "Fecha": "31\/12\/1948", "Anyo": 1948, "Rio": "EBRO", "Municipio": "FLIX", "Cuenca": "EBRO", "Provincia": "TARRAGONA", "x": 797742, "y": 4570937, "Tipos": "Hidroel?ctrico, Regulaci?n, Riego" }, "geometry": { "type": "Point", "coordinates": [ 797257.51095335162, 4570605.5002363874 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8460004, "Nombre": "FORATA", "Nombre SEP": "FORATA", "Otro nombr": "---", "Fecha": "01\/01\/1969", "Anyo": 1969, "Rio": "MAGRO", "Municipio": "YATOVA", "Cuenca": "JUCAR", "Provincia": "VALENCIA", "x": 684213, "y": 4356914, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 683885.0467498292, 4356685.7649827823 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1240021, "Nombre": "FUENTE DEL AZUFRE (CONTRAEMBALSE)", "Nombre SEP": "FUENTE DEL AZUFRE", "Otro nombr": "---", "Fecha": "31\/12\/1949", "Anyo": 1949, "Rio": "SIL", "Municipio": "PONFERRADA", "Cuenca": "MI?O-SIL", "Provincia": "LEON", "x": 205737, "y": 4718533, "Tipos": "Hidroel?ctrico, Riego, Riego" }, "geometry": { "type": "Point", "coordinates": [ 205944.96551284811, 4718535.551752043 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100073, "Nombre": "GABRIEL Y GALAN", "Nombre SEP": "GABRIEL Y GALAN", "Otro nombr": "---", "Fecha": "01\/01\/1961", "Anyo": 1961, "Rio": "ALAGON", "Municipio": "GUIJO DE GRANADILLA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 233284, "y": 4457169, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 233284.00000182836, 4457169.0001141559 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060063, "Nombre": "GARCIA DE SOLA", "Nombre SEP": "GARCIA DE SOLA", "Otro nombr": "PUERTO PE?A", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "GUADIANA", "Municipio": "TALARRUBIAS", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 311314, "y": 4335259, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 311314.00000123557, 4335259.0001126351 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9260028, "Nombre": "GONZALEZ LACASA", "Nombre SEP": "GONZALEZ LACASA", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "ALBERCOS", "Municipio": "ORTIGOSA DE CAMEROS", "Cuenca": "EBRO", "Provincia": "LOGRO?O", "x": 527302, "y": 4669311, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 527027.14211959427, 4669157.9830363318 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220078, "Nombre": "GRADO I, EL", "Nombre SEP": "GRADO I, EL", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "CINCA", "Municipio": "GRADO, EL", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 767725, "y": 4671815, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 767493.10659884918, 4671664.3297387166 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230049, "Nombre": "GUADALEN", "Nombre SEP": "GUADALEN", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "GUADALEN", "Municipio": "ARQUILLOS, VILCHES", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 458265, "y": 4224145, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 458130.48443427938, 4223893.2653845353 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030092, "Nombre": "GUADALEST", "Nombre SEP": "GUADALEST", "Otro nombr": "---", "Fecha": "27\/11\/1969", "Anyo": 1969, "Rio": "GUADALEST", "Municipio": "GUADALEST", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 744422, "y": 4285116, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 744248.12491287524, 4285012.1236476637 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6290030, "Nombre": "GUADALHORCE", "Nombre SEP": "GUADALHORCE", "Otro nombr": "---", "Fecha": "31\/12\/1973", "Anyo": 1973, "Rio": "GUADALHORCE", "Municipio": "CAMPILLOS", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "MALAGA", "x": 339635, "y": 4090040, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 339578.28316918254, 4089980.0547640678 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230047, "Nombre": "GUADALMENA", "Nombre SEP": "GUADALMENA", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "GUADALMENA", "Municipio": "CHICLANA DE SEGURA", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 507600, "y": 4246350, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 507600.0, 4246350.0001114653 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6290030, "Nombre": "GUADALHORCE", "Nombre SEP": "GUADALTEBA", "Otro nombr": "---", "Fecha": "31\/12\/1973", "Anyo": 1973, "Rio": "GUADALHORCE", "Municipio": "CAMPILLOS", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "MALAGA", "x": 339635, "y": 4090040, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 339640.41895329254, 4090293.7495888071 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140033, "Nombre": "GUADANU?O", "Nombre SEP": "GUADANUO", "Otro nombr": "CERRO MURIANO", "Fecha": "01\/01\/1967", "Anyo": 1967, "Rio": "GUADANU?O", "Municipio": "CORDOBA Y VILLAVICIOSA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 342050, "y": 4209965, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 342055.46577670384, 4209638.5821752092 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6110005, "Nombre": "GUADARRANQUE", "Nombre SEP": "GUADARRANQUE", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "GUADARRANQUE", "Municipio": "LOS BARRIOS Y CASTELLAR", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "CADIZ", "x": 279075, "y": 4021000, "Tipos": "Abastecimiento, Riego, Industrial" }, "geometry": { "type": "Point", "coordinates": [ 278899.21589252847, 4020932.3798168479 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100138, "Nombre": "HELECHAL", "Nombre SEP": "HELECHAL", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "ARROYO HELECHAL", "Municipio": "ALCANTARA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 166075, "y": 4418651, "Tipos": "Acuicultura, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 166259.50658411568, 4418406.1401167503 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3050008, "Nombre": "HINCHONA, LA", "Nombre SEP": "HINCHONA, LA", "Otro nombr": "---", "Fecha": "01\/01\/1946", "Anyo": 1946, "Rio": "YEDRA", "Municipio": "TIEMBLO, EL", "Cuenca": "TAJO", "Provincia": "AVILA", "x": 372108, "y": 4471728, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 371926.00640769064, 4471324.947795012 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110015, "Nombre": "HURONES, LOS", "Nombre SEP": "HURONES, LOS", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "MAJACEITE", "Municipio": "ALGAR", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 271131, "y": 4060369, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 271033.64634078305, 4060396.8524853573 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030028, "Nombre": "ISBERT", "Nombre SEP": "ISBERT", "Otro nombr": "---", "Fecha": "01\/01\/1945", "Anyo": 1945, "Rio": "GIRONA", "Municipio": "ORBA", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 751659, "y": 4297224, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 751658.99999837694, 4297224.0001120884 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140028, "Nombre": "IZNAJAR", "Nombre SEP": "IZNAJAR", "Otro nombr": "---", "Fecha": "01\/01\/1969", "Anyo": 1969, "Rio": "GENIL", "Municipio": "RUTE, CUEVAS SAN MARCOS", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 377250, "y": 4126550, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 377250.00000073959, 4126550.0001097168 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100102, "Nombre": "JARILLA, LA (TAJO)", "Nombre SEP": "JARILLA, LA (TAJO)", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "CAVERA", "Municipio": "JARILLA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 242520, "y": 4451720, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 242463.90101495423, 4451498.8172813412 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140001, "Nombre": "MALPASILLO JAUJA (AZUD)", "Nombre SEP": "JAUJA", "Otro nombr": "MALPASILLO JAUJA", "Fecha": "31\/12\/1951", "Anyo": 1951, "Rio": "GENIL", "Municipio": "LUCENA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 352650, "y": 4129600, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 352650.00000088883, 4129600.0001097522 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240007, "Nombre": "JUAN BENET (PORMA)", "Nombre SEP": "JUAN BENET (PORMA)", "Otro nombr": "---", "Fecha": "30\/04\/1968", "Anyo": 1968, "Rio": "PORMA", "Municipio": "BO?AR", "Cuenca": "DUERO", "Provincia": "LEON", "x": 313090, "y": 4755710, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 312894.4351475102, 4755511.1936149886 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2400015, "Nombre": "LINARES DEL ARROYO", "Nombre SEP": "LINARES DEL ARROYO", "Otro nombr": "---", "Fecha": "30\/04\/1953", "Anyo": 1953, "Rio": "RIAZA", "Municipio": "MADERUELO", "Cuenca": "DUERO", "Provincia": "SEGOVIA", "x": 453728, "y": 4597664, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 453728.00000033417, 4597664.0001159096 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8460013, "Nombre": "LORIGUILLA", "Nombre SEP": "LORIGUILLA", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "TURIA", "Municipio": "LORIGUILLA Y CHULILLA", "Cuenca": "JUCAR", "Provincia": "VALENCIA", "x": 679189, "y": 4392798, "Tipos": "Regulaci?n, Riego, Hidroel?ctrico" }, "geometry": { "type": "Point", "coordinates": [ 678972.29097994824, 4392723.5740577141 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9260022, "Nombre": "MANSILLA", "Nombre SEP": "MANSILLA", "Otro nombr": "---", "Fecha": "31\/12\/1960", "Anyo": 1960, "Rio": "NAJERILLA", "Municipio": "MANSILLA DE LA SIERRA, VILLAVELAYO", "Cuenca": "EBRO", "Provincia": "LOGRO?O", "x": 507343, "y": 4667566, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 507281.00221223279, 4667302.6375161717 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230044, "Nombre": "MARMOLEJO (AZUD)", "Nombre SEP": "MARMOLEJO", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "GUADALQUIVIR", "Municipio": "MARMOLEJO", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 396000, "y": 4213200, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 395940.24552375951, 4212948.0236912426 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220054, "Nombre": "MEDIANO", "Nombre SEP": "MEDIANO", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "CINCA", "Municipio": "FUEVA, LA", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 765112, "y": 4689838, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 764520.13618176524, 4689495.3451251751 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500030, "Nombre": "MEQUINENZA", "Nombre SEP": "MEQUINENZA", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "EBRO", "Municipio": "MEQUINENZA", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 774241, "y": 4584997, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 773686.23269066075, 4584901.1279483894 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230023, "Nombre": "MOLINO DE GUADALEN (CONTRAEMBALSE)", "Nombre SEP": "MOLINO DE GUADALEN", "Otro nombr": "SALTO DEL MOLINO", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "GUADALEN", "Municipio": "VILCHES", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 457163, "y": 4222764, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 456932.14577535546, 4222402.7469838392 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6110011, "Nombre": "MONTE DE LA TORRE (DD-1)", "Nombre SEP": "MONTE DE LA TORRE (DD-1)", "Otro nombr": "DEPOSITO DD-1", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "PRIOR", "Municipio": "BARRIOS, LOS", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "CADIZ", "x": 275972, "y": 4004387, "Tipos": "Regulaci?n, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 275788.59585781599, 4004118.0154836481 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060102, "Nombre": "MONTIJO (AZUD)", "Nombre SEP": "MONTIJO", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "GUADIANA", "Municipio": "MERIDA", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 202510, "y": 4314117, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 202839.06667843321, 4313969.4671972822 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060074, "Nombre": "MOSQUIL, EL", "Nombre SEP": "MOSQUIL, EL", "Otro nombr": "---", "Fecha": "01\/01\/1971", "Anyo": 1971, "Rio": "LABRADOS", "Municipio": "USAGRE", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 228717, "y": 4255260, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 229111.4039668247, 4255224.6162545485 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280058, "Nombre": "NAVALAGAMELLA", "Nombre SEP": "NAVALAGAMELLA", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "CURA", "Municipio": "NAVALAGAMELLA", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 405106, "y": 4472030, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 405106.00000065466, 4472030.0001144195 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500043, "Nombre": "NI?O JESUS", "Nombre SEP": "NIO JESUS", "Otro nombr": "ANI?ON", "Fecha": "09\/05\/1955", "Anyo": 1955, "Rio": "ARROYO DEL FRESNO O JESUS", "Municipio": "ANI?ON", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 608478, "y": 4595385, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 608477.99999922, 4595385.0001158724 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9250050, "Nombre": "OLIANA", "Nombre SEP": "OLIANA", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "SEGRE", "Municipio": "OLIANA Y PERAMOLA", "Cuenca": "EBRO", "Provincia": "LLEIDA", "x": 855649, "y": 4669176, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 855143.4408810538, 4669058.1677928604 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120003, "Nombre": "ONDA", "Nombre SEP": "ONDA", "Otro nombr": "BENITANDUS", "Fecha": "01\/01\/1954", "Anyo": 1954, "Rio": "SECO \/ VEO", "Municipio": "ALCUDIA DE VEO", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 728310, "y": 4424455, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 727935.80062836374, 4424006.6966660591 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060095, "Nombre": "ORELLANA", "Nombre SEP": "ORELLANA", "Otro nombr": "---", "Fecha": "01\/01\/1963", "Anyo": 1963, "Rio": "GUADIANA", "Municipio": "ORELLANA LA VIEJA, CAMPANARIO", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 280423, "y": 4318386, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 280423.0000014283, 4318386.0001123948 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190028, "Nombre": "PALMACES", "Nombre SEP": "PALMACES", "Otro nombr": "---", "Fecha": "01\/01\/1954", "Anyo": 1954, "Rio": "CA?AMARES", "Municipio": "PALMACES DE JADRAQUE", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 505170, "y": 4544655, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 505170.0, 4544655.0001153052 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170013, "Nombre": "PASTERAL I (AZUD)", "Nombre SEP": "PASTERAL, EL", "Otro nombr": "---", "Fecha": "01\/01\/1962", "Anyo": 1962, "Rio": "TER", "Municipio": "OSOR", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 965397, "y": 4663877, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 964924.89868687443, 4663579.5485260645 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060004, "Nombre": "PASTIZALES, LOS", "Nombre SEP": "PASTIZALES, LOS", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "VALDELARQUILLO (VALDESEQUILLOS)", "Municipio": "HELECHOSA DE LOS MONTES", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 352216, "y": 4363403, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 352216.00000097847, 4363403.0001130253 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230018, "Nombre": "PEDRO MARIN", "Nombre SEP": "PEDRO MARIN", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "GUADALQUIVIR", "Municipio": "JODAR", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 463739, "y": 4196379, "Tipos": "Hidroel?ctrico, Riego, Industrial" }, "geometry": { "type": "Point", "coordinates": [ 463747.9632903352, 4195770.7371934094 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4130018, "Nombre": "PE?ARROYA", "Nombre SEP": "PEARROYA", "Otro nombr": "---", "Fecha": "01\/01\/1959", "Anyo": 1959, "Rio": "GUADIANA", "Municipio": "ARGAMASILLA DE ALBA", "Cuenca": "GUADIANA", "Provincia": "CIUDAD REAL", "x": 499519, "y": 4323754, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 499445.36644176848, 4323443.055640406 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280055, "Nombre": "PE?ASCALES, LOS", "Nombre SEP": "PEASCALES, LOS", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "ARROYO TROFAS", "Municipio": "TORRELODONES", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 424055, "y": 4492013, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 423888.83590512292, 4491789.0042292764 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280063, "Nombre": "PICADAS", "Nombre SEP": "PICADAS", "Otro nombr": "---", "Fecha": "31\/12\/1952", "Anyo": 1952, "Rio": "ALBERCHE", "Municipio": "SAN MARTIN DE VALDEIGLESIAS", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 393940, "y": 4465690, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 393940.00000072992, 4465690.0001143385 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060031, "Nombre": "PIEDRA AGUDA", "Nombre SEP": "PIEDRA AGUDA", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "OLIVENZA", "Municipio": "OLIVENZA", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 149904, "y": 4289973, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 150122.57615758118, 4289687.4514117688 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4210092, "Nombre": "PIEDRAS", "Nombre SEP": "PIEDRAS", "Otro nombr": "---", "Fecha": "31\/12\/1968", "Anyo": 1968, "Rio": "PIEDRAS", "Municipio": "CARTAYA, LEPE", "Cuenca": "TINTO, ODIEL Y PIEDRAS", "Provincia": "HUELVA", "x": 122023, "y": 4144432, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 122023.00000229111, 4144432.0001098211 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410106, "Nombre": "PINTADO, EL", "Nombre SEP": "PINTADO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1948", "Anyo": 1948, "Rio": "VIAR", "Municipio": "CAZALLA SIERRA,GUADALCANAL,REAL DE JARA,REINA FTE ARCO", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 240667, "y": 4208399, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 240667.00000161465, 4208399.0001108432 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140004, "Nombre": "PUENTE NUEVO", "Nombre SEP": "PUENTE NUEVO", "Otro nombr": "---", "Fecha": "01\/01\/1972", "Anyo": 1972, "Rio": "GUADIATO", "Municipio": "VILLAVICIOSA DE CORDOBA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 331056, "y": 4217469, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 331143.69377231726, 4217144.4555844786 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120004, "Nombre": "REGAJO, EL", "Nombre SEP": "REGAJO, EL", "Otro nombr": "---", "Fecha": "31\/10\/1959", "Anyo": 1959, "Rio": "PALANCIA", "Municipio": "JERICA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 711756, "y": 4418669, "Tipos": "Riego, Regulaci?n, ---" }, "geometry": { "type": "Point", "coordinates": [ 711668.69646251481, 4418507.1710887272 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2340005, "Nombre": "REQUEJADA", "Nombre SEP": "REQUEJADA", "Otro nombr": "---", "Fecha": "01\/08\/1935", "Anyo": 1935, "Rio": "PISUERGA", "Municipio": "ARBEJAL", "Cuenca": "DUERO", "Provincia": "PALENCIA", "x": 375507, "y": 4751818, "Tipos": "Abastecimiento, Riego, Defensa frente a avenidas" }, "geometry": { "type": "Point", "coordinates": [ 375177.30451694719, 4751566.1175596491 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140048, "Nombre": "RETORTILLO", "Nombre SEP": "RETORTILLO", "Otro nombr": "---", "Fecha": "01\/01\/1970", "Anyo": 1970, "Rio": "RETORTILLO", "Municipio": "HORNACHUELOS, PUEBLA DE INFANTES", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 293165, "y": 4191105, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 293165.00000127923, 4191105.0001106281 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280015, "Nombre": "REY, DEL", "Nombre SEP": "REY, DEL", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "JARAMA", "Municipio": "RIVAS-VACIAMADRID", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 453964, "y": 4461241, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 453964.00000031636, 4461241.0001142966 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9430003, "Nombre": "RIBARROJA", "Nombre SEP": "RIBARROJA", "Otro nombr": "RIBA ROJA", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "EBRO", "Municipio": "RIBA-ROJA D??EBRE", "Cuenca": "EBRO", "Provincia": "TARRAGONA", "x": 788146, "y": 4571794, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 787624.73601893429, 4571556.3451475818 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1270013, "Nombre": "RIBASALTAS (AZUD)", "Nombre SEP": "RIBASALTAS (AZUD)", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "CABE", "Municipio": "MONFORTE DE LEMOS", "Cuenca": "MI?O-SIL", "Provincia": "LUGO", "x": 132034, "y": 4721564, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 132034.00000276923, 4721564.0001170803 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450011, "Nombre": "ROSARITO", "Nombre SEP": "ROSARITO", "Otro nombr": "---", "Fecha": "31\/12\/1958", "Anyo": 1958, "Rio": "TIETAR", "Municipio": "OROPESA, CANDELEDA", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 302082, "y": 4442874, "Tipos": "Riego, Hidroel?ctrico, ---" }, "geometry": { "type": "Point", "coordinates": [ 301991.03200197459, 4442529.6404402032 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230022, "Nombre": "RUMBLAR", "Nombre SEP": "RUMBLAR", "Otro nombr": "---", "Fecha": "31\/12\/1941", "Anyo": 1941, "Rio": "RUMBLAR", "Municipio": "BA?OS DE LA ENCINA", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 429670, "y": 4224281, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 429466.98631105415, 4223978.121261307 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100074, "Nombre": "SALOR", "Nombre SEP": "SALOR", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "SALOR", "Municipio": "CACERES", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 214873, "y": 4362570, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 215318.85325469874, 4362361.2675712993 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2470004, "Nombre": "SAN JOSE", "Nombre SEP": "SAN JOSE", "Otro nombr": "---", "Fecha": "17\/11\/1945", "Anyo": 1945, "Rio": "DUERO", "Municipio": "CASTRONU?O", "Cuenca": "DUERO", "Provincia": "VALLADOLID", "x": 310093, "y": 4586292, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 310006.92881748558, 4586027.2088383222 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280027, "Nombre": "SAN JUAN (DIQUE DEL COLLADO)", "Nombre SEP": "SAN JUAN", "Otro nombr": "---", "Fecha": "31\/12\/1955", "Anyo": 1955, "Rio": "ALBERCHE", "Municipio": "SAN MARTIN DE VALDEIGLESIAS", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 388451, "y": 4469946, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 388451.00000076892, 4469946.0001143906 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10250001, "Nombre": "SANT PONC (SAN PONS)", "Nombre SEP": "SAN PONS", "Otro nombr": "---", "Fecha": "19\/12\/1957", "Anyo": 1957, "Rio": "EL CARDENER", "Municipio": "CLARIANA DE CARDENER", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "LLEIDA", "x": 882025, "y": 4656011, "Tipos": "Riego, Abastecimiento, Hidroel?ctrico" }, "geometry": { "type": "Point", "coordinates": [ 881632.5541560105, 4655961.9785424955 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220076, "Nombre": "SANTA ANA", "Nombre SEP": "SANTA ANA", "Otro nombr": "---", "Fecha": "31\/12\/1961", "Anyo": 1961, "Rio": "NOGUERA RIBAGORZANA", "Municipio": "CASTILLONROY", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 797530, "y": 4643159, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 797529.99999781919, 4643159.0001163064 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2370010, "Nombre": "SANTA TERESA", "Nombre SEP": "SANTA TERESA", "Otro nombr": "---", "Fecha": "28\/02\/1961", "Anyo": 1961, "Rio": "TORMES", "Municipio": "MONTEJO DE SALVATIERRA Y PELAYOS", "Cuenca": "DUERO", "Provincia": "SALAMANCA", "x": 280203, "y": 4505246, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 280101.14524313901, 4504994.2206645971 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 7300019, "Nombre": "SANTOMERA (DIQUE DEL COLLADO)", "Nombre SEP": "SANTOMERA", "Otro nombr": "---", "Fecha": "31\/12\/1965", "Anyo": 1965, "Rio": "SALADA", "Municipio": "SANTOMERA", "Cuenca": "SEGURA", "Provincia": "MURCIA", "x": 667635, "y": 4218190, "Tipos": "Defensa frente a avenidas, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 667553.26173220028, 4218014.9260413414 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10080007, "Nombre": "SAU", "Nombre SEP": "SAU", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "TER", "Municipio": "VILANOVA DE SAU", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "BARCELONA", "x": 948914, "y": 4660480, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 948574.98076378054, 4660418.9119669031 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240018, "Nombre": "SELGA DE ORDAS", "Nombre SEP": "SELGA DE ORDAS", "Otro nombr": "---", "Fecha": "31\/12\/1961", "Anyo": 1961, "Rio": "LUNA", "Municipio": "RIOSECO DE TAPIA, STA. MARIA ORDAS", "Cuenca": "DUERO", "Provincia": "LEON", "x": 271923, "y": 4737491, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 271914.26020848152, 4737334.3768835021 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120002, "Nombre": "SICHAR", "Nombre SEP": "SICHAR", "Otro nombr": "---", "Fecha": "30\/04\/1960", "Anyo": 1960, "Rio": "MIJARES", "Municipio": "ONDA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 736439, "y": 4432744, "Tipos": "Regulaci?n, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 736438.99999839358, 4432744.00011387 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100056, "Nombre": "SOLANA, LA", "Nombre SEP": "SOLANA, LA", "Otro nombr": "---", "Fecha": "01\/01\/1955", "Anyo": 1955, "Rio": "ARROYO CABRIOSO", "Municipio": "HERRERA DE ALCANTARA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 121529, "y": 4390838, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 121836.40440071683, 4390689.0378045123 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220034, "Nombre": "SOTONERA, LA (DIQUE DEL COLLADO 1) (ASTON Y VACAS)", "Nombre SEP": "SOTONERA, LA (DIQUE DEL COLLADO 1)", "Otro nombr": "---", "Fecha": "01\/01\/1963", "Anyo": 1963, "Rio": "ASTON-VACAS", "Municipio": "ALCALA DE GURREA", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 692200, "y": 4664000, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 692199.99999857985, 4664000.0001165997 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170012, "Nombre": "SUSQUEDA", "Nombre SEP": "SUSQUEDA", "Otro nombr": "---", "Fecha": "01\/01\/1967", "Anyo": 1967, "Rio": "TER", "Municipio": "OSOR", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 958440, "y": 4663004, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 957851.11378305964, 4662143.8760432666 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500034, "Nombre": "TORCAS, LAS", "Nombre SEP": "TORCAS, LAS", "Otro nombr": "---", "Fecha": "31\/12\/1946", "Anyo": 1946, "Rio": "HUERVA", "Municipio": "TOSOS", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 660235, "y": 4573209, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 660234.99999885331, 4573209.0001156013 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410139, "Nombre": "TORRE DEL AGUILA", "Nombre SEP": "TORRE DEL AGUILA", "Otro nombr": "---", "Fecha": "31\/12\/1947", "Anyo": 1947, "Rio": "SALADO DE MORON", "Municipio": "UTRERA", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 254750, "y": 4103343, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 254716.73244858842, 4103122.6752734035 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2400007, "Nombre": "TORRELARA", "Nombre SEP": "TORRELARA", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "MAGDALENA", "Municipio": "MU?OPEDRO", "Cuenca": "DUERO", "Provincia": "SEGOVIA", "x": 371042, "y": 4526981, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 371474.63857139618, 4526738.7075403994 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100128, "Nombre": "TOZO", "Nombre SEP": "TOZO", "Otro nombr": "---", "Fecha": "01\/01\/1962", "Anyo": 1962, "Rio": "TOZO", "Municipio": "TORRECILLAS DE LA TIESA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 258781, "y": 4384708, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 258781.00000160944, 4384708.0001132572 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230005, "Nombre": "TRANCO DE BEAS", "Nombre SEP": "TRANCO DE BEAS", "Otro nombr": "---", "Fecha": "31\/12\/1944", "Anyo": 1944, "Rio": "GUADALQUIVIR", "Municipio": "VILLANUEVA DEL ARZOBISPO", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 518004, "y": 4225445, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 517861.0563689702, 4225025.3304180205 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500008, "Nombre": "TRANQUERA, LA", "Nombre SEP": "TRANQUERA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "PIEDRA", "Municipio": "CARENAS", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 600522, "y": 4568949, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 600521.99999928, 4568949.0001155725 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120011, "Nombre": "ULLDECONA", "Nombre SEP": "ULLDECONA", "Otro nombr": "---", "Fecha": "01\/01\/1967", "Anyo": 1967, "Rio": "CENIA", "Municipio": "PUEBLA DE BENIFASAR, LA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 773861, "y": 4507456, "Tipos": "Riego, Abastecimiento, ---" }, "geometry": { "type": "Point", "coordinates": [ 773327.9162701891, 4507288.4204253387 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9010013, "Nombre": "ULLIVARRI (ULLIBARRI GAMBOA)", "Nombre SEP": "ULLIVARRI", "Otro nombr": "---", "Fecha": "31\/12\/1956", "Anyo": 1956, "Rio": "ZADORRA", "Municipio": "ARRAZUA-UBARRUNDIA", "Cuenca": "EBRO", "Provincia": "ALAVA", "x": 531411, "y": 4753261, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 531278.99783930019, 4753084.7523021977 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220071, "Nombre": "VADIELLO", "Nombre SEP": "VADIELLO", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "GUATIZALEMA", "Municipio": "LOPORZANO", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 724600, "y": 4680350, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 724560.93252269889, 4680172.3391518891 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8440008, "Nombre": "VALBONA", "Nombre SEP": "VALBONA", "Otro nombr": "---", "Fecha": "23\/04\/1959", "Anyo": 1959, "Rio": "RAMBLA DE FUENTE DE MORA", "Municipio": "VALBONA", "Cuenca": "JUCAR", "Provincia": "TERUEL", "x": 685729, "y": 4458355, "Tipos": "Riego, Regulaci?n, ---" }, "geometry": { "type": "Point", "coordinates": [ 685728.99999873, 4458355.0001142183 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450003, "Nombre": "VALDECABRAS (ARROYO)", "Nombre SEP": "VALDECABRAS (ARROYO)", "Otro nombr": "---", "Fecha": "31\/12\/1965", "Anyo": 1965, "Rio": "VALDECABRAS", "Municipio": "ORGAZ", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 420490, "y": 4393145, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 420520.71686166816, 4392631.2704687919 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100007, "Nombre": "VALDECA?AS", "Nombre SEP": "VALDECAAS", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "TAJO", "Municipio": "BELVIS DE MONROY Y VALDECA?AS DE TAJO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 276345, "y": 4406515, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 276347.26634769759, 4406386.6952600898 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100021, "Nombre": "VALDEOBISPO", "Nombre SEP": "VALDEOBISPO", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "ALAGON", "Municipio": "VALDEOBISPO, MONTEHERMOSO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 222665, "y": 4444086, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 222919.86433664197, 4443918.750305797 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240032, "Nombre": "VALDESPINA", "Nombre SEP": "VALDESPINA", "Otro nombr": "EMBALSE DE BARRIO", "Fecha": "01\/01\/1940", "Anyo": 1940, "Rio": "ARROYO VALDESPINA", "Municipio": "SANTA COLOMBA DE CURUE?O", "Cuenca": "DUERO", "Provincia": "LEON", "x": 302950, "y": 4731030, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 302950.00000148988, 4731030.0001173029 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060067, "Nombre": "VALUENGO", "Nombre SEP": "VALUENGO", "Otro nombr": "---", "Fecha": "01\/01\/1959", "Anyo": 1959, "Rio": "ARDILA", "Municipio": "JEREZ DE LOS CABALLEROS", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 178405, "y": 4245838, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 178543.34801585122, 4245732.181511187 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2400023, "Nombre": "VENCIAS, LAS", "Nombre SEP": "VENCIAS, LAS", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "DURAT??N", "Municipio": "FUENTIDUE?A", "Cuenca": "DUERO", "Provincia": "SEGOVIA", "x": 419459, "y": 4586898, "Tipos": "Hidroel?ctrico, Regulaci?n, Riego" }, "geometry": { "type": "Point", "coordinates": [ 419459.00000057934, 4586898.000115783 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4130068, "Nombre": "VICARIO, EL", "Nombre SEP": "VICARIO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1973", "Anyo": 1973, "Rio": "GUADIANA", "Municipio": "CIUDAD REAL", "Cuenca": "GUADIANA", "Provincia": "CIUDAD REAL", "x": 413850, "y": 4324000, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 413850.00000056188, 4324000.0001125196 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100052, "Nombre": "VID III, LA", "Nombre SEP": "VID III, LA", "Otro nombr": "---", "Fecha": "01\/01\/1959", "Anyo": 1959, "Rio": "VID", "Municipio": "TORREJON EL RUBIO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 247090, "y": 4406926, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 247165.8777877831, 4406975.3306448543 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1270004, "Nombre": "VILASOUTO", "Nombre SEP": "VILASOUTO", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "MAO", "Municipio": "INCIO, O", "Cuenca": "MI?O-SIL", "Provincia": "LUGO", "x": 137205, "y": 4732933, "Tipos": "Riego, Abastecimiento, ---" }, "geometry": { "type": "Point", "coordinates": [ 137671.65869766171, 4732735.3370183716 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140050, "Nombre": "VILLAFRANCA", "Nombre SEP": "VILLAFRANCA", "Otro nombr": "---", "Fecha": "01\/01\/1948", "Anyo": 1948, "Rio": "GUADALQUIVIR", "Municipio": "VILLAFRANCA DE CORDOBA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 359660, "y": 4202300, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 357188.5432571487, 4202169.7855444774 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2370033, "Nombre": "VILLAGONZALO (AZUD)", "Nombre SEP": "VILLAGONZALO", "Otro nombr": "---", "Fecha": "14\/02\/1960", "Anyo": 1960, "Rio": "TORMES", "Municipio": "VILLAGONZALO DE TORMES Y GARIHERNANDEZ", "Cuenca": "DUERO", "Provincia": "SALAMANCA", "x": 289812, "y": 4527892, "Tipos": "Riego, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 289678.63287577347, 4527640.0190840354 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240006, "Nombre": "VILLAMECA", "Nombre SEP": "VILLAMECA", "Otro nombr": "---", "Fecha": "31\/12\/1947", "Anyo": 1947, "Rio": "TUERTO-VALLE (TUERTO)", "Municipio": "QUINTANA DEL CASTILLO", "Cuenca": "DUERO", "Provincia": "LEON", "x": 247863, "y": 4726637, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 248499.58589500023, 4726265.0601202846 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9310007, "Nombre": "YESA", "Nombre SEP": "YESA", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "ARAGON", "Municipio": "YESA", "Cuenca": "EBRO", "Provincia": "NAVARRA", "x": 648990, "y": 4719190, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 649067.47948859434, 4719668.5123394737 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230007, "Nombre": "ZOCUECA (AZUD)", "Nombre SEP": "ZOCUECA", "Otro nombr": "---", "Fecha": "31\/12\/1940", "Anyo": 1940, "Rio": "RUMBLAR", "Municipio": "GUARROM?N", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 427175, "y": 4217080, "Tipos": "Riego, Abastecimiento, ---" }, "geometry": { "type": "Point", "coordinates": [ 427142.74856572493, 4216768.4433339546 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060070, "Nombre": "ZUJAR (DIQUE DEL COLLADO)", "Nombre SEP": "ZUJAR", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "ZUJAR", "Municipio": "CASTUERA, ESPARRAGOSA DE LARES", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 285155, "y": 4310665, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 285155.00000139326, 4310665.0001122924 ] } }
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,153 +0,0 @@
|
||||||
{
|
|
||||||
"type": "FeatureCollection",
|
|
||||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::32630" } },
|
|
||||||
"features": [
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2340004, "Nombre": "AGUILAR DE CAMPOO", "Nombre SEP": "AGUILAR DE CAMPOO", "Otro nombr": "---", "Fecha": "02\/09\/1964", "Anyo": 1964, "Rio": "PISUERGA", "Municipio": "AGUILAR DE CAMPOO", "Cuenca": "DUERO", "Provincia": "PALENCIA", "x": 394705, "y": 4739000, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 394705.00000079867, 4739000.0001174202 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8160006, "Nombre": "ALARCON", "Nombre SEP": "ALARCON", "Otro nombr": "---", "Fecha": "30\/09\/1955", "Anyo": 1955, "Rio": "JUCAR", "Municipio": "ALARCON", "Cuenca": "JUCAR", "Provincia": "CUENCA", "x": 576346, "y": 4379982, "Tipos": "Regulaci?n, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 576345.99999949, 4379982.0001132609 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120006, "Nombre": "ALCORA", "Nombre SEP": "ALCORA", "Otro nombr": "---", "Fecha": "29\/09\/1958", "Anyo": 1958, "Rio": "LUCENA", "Municipio": "ALCORA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 737177, "y": 4442329, "Tipos": "Riego, Regulaci?n, ---" }, "geometry": { "type": "Point", "coordinates": [ 737167.61900656368, 4442323.6275669578 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110041, "Nombre": "ALMODOVAR (DIQUE DEL COLLADO) (RECRECIDA)", "Nombre SEP": "ALMODOVAR", "Otro nombr": "---", "Fecha": "01\/01\/1972", "Anyo": 1972, "Rio": "ALMODOVAR", "Municipio": "TARIFA", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 261945, "y": 4004510, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 261636.17802516895, 4004284.9828798696 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190001, "Nombre": "ALMOGUERA", "Nombre SEP": "ALMOGUERA", "Otro nombr": "---", "Fecha": "01\/01\/1947", "Anyo": 1947, "Rio": "TAJO", "Municipio": "ALMOGUERA", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 503585, "y": 4460330, "Tipos": "Hidroel?ctrico, Regulaci?n, Riego" }, "geometry": { "type": "Point", "coordinates": [ 503565.60905815038, 4458199.7418034226 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030027, "Nombre": "AMADORIO", "Nombre SEP": "AMADORIO", "Otro nombr": "---", "Fecha": "24\/02\/1960", "Anyo": 1960, "Rio": "AMADORIO", "Municipio": "VILLAJOYOSA", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 738600, "y": 4268800, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 738437.0954115598, 4268661.7138019092 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100070, "Nombre": "ARAYA DE ARRIBA (DIQUE DEL COLLADO)", "Nombre SEP": "ARAYA DE ARRIBA", "Otro nombr": "---", "Fecha": "01\/01\/1958", "Anyo": 1958, "Rio": "ANCIANES", "Municipio": "BROZAS", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 184298, "y": 4380608, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 184558.40204846259, 4380266.237662144 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110031, "Nombre": "ARCOS", "Nombre SEP": "ARCOS", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "GUADALETE", "Municipio": "ARCOS DE LA FRONTERA", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 250520, "y": 4071143, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 250681.31907172143, 4071016.8217665544 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 7300010, "Nombre": "ARGOS", "Nombre SEP": "ARGOS", "Otro nombr": "---", "Fecha": "01\/12\/1972", "Anyo": 1972, "Rio": "ARGOS", "Municipio": "CEHEGIN", "Cuenca": "SEGURA", "Provincia": "MURCIA", "x": 611000, "y": 4225906, "Tipos": "Defensa frente a avenidas, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 610836.42212914326, 4225685.5736164432 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8440007, "Nombre": "ARQUILLO DE SAN BLAS", "Nombre SEP": "ARQUILLO DE SAN BLAS", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "GUADALAVIAR", "Municipio": "TERUEL", "Cuenca": "JUCAR", "Provincia": "TERUEL", "x": 653793, "y": 4469304, "Tipos": "Abastecimiento, Defensa frente a avenidas, Riego" }, "geometry": { "type": "Point", "coordinates": [ 652382.50345345237, 4469655.3782416154 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280039, "Nombre": "ARROYOS, LOS (DIQUE DE COLA)", "Nombre SEP": "ARROYOS, LOS", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "LADRON", "Municipio": "ESCORIAL, EL", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 411261, "y": 4493850, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 411184.91045507544, 4493761.0450720405 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280048, "Nombre": "ATAZAR, EL", "Nombre SEP": "ATAZAR, EL", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "LOZOYA", "Municipio": "PATONES Y ATAZAR", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 460256, "y": 4529303, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 460256.00000028004, 4529303.0001151189 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450030, "Nombre": "AZUTAN", "Nombre SEP": "AZUTAN", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "TAJO", "Municipio": "AZUTAN Y ALCOLEA DE TAJO", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 321222, "y": 4405375, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 321066.92298715154, 4405080.9209864438 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9250051, "Nombre": "BALAGUER PARTIDOR (CONTRAEMBALSE)", "Nombre SEP": "BALAGUER", "Otro nombr": "---", "Fecha": "31\/12\/1958", "Anyo": 1958, "Rio": "SEGRE", "Municipio": "OS DE BALAGUER", "Cuenca": "EBRO", "Provincia": "LLEIDA", "x": 818394, "y": 4638887, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 818526.40346842422, 4640626.9061219608 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8440011, "Nombre": "BALAGUERAS", "Nombre SEP": "BALAGUERAS", "Otro nombr": "---", "Fecha": "31\/12\/1957", "Anyo": 1957, "Rio": "PALOMERAS", "Municipio": "RUBIELOS DE MORA", "Cuenca": "JUCAR", "Provincia": "TERUEL", "x": 697715, "y": 4454450, "Tipos": "Riego, Regulaci?n, ---" }, "geometry": { "type": "Point", "coordinates": [ 697577.48593425588, 4453843.5759735284 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1240011, "Nombre": "BARCENA", "Nombre SEP": "BARCENA", "Otro nombr": "---", "Fecha": "31\/12\/1960", "Anyo": 1960, "Rio": "SIL", "Municipio": "PONFERRADA", "Cuenca": "MI?O-SIL", "Provincia": "LEON", "x": 207593, "y": 4720277, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 207860.1095021104, 4720083.7210623967 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240029, "Nombre": "BARRIOS DE LUNA", "Nombre SEP": "BARRIOS DE LUNA", "Otro nombr": "---", "Fecha": "31\/12\/1956", "Anyo": 1956, "Rio": "ORBIGO - LUNA (LUNA)", "Municipio": "BARRIOS DE LUNA, LOS", "Cuenca": "DUERO", "Provincia": "LEON", "x": 266290, "y": 4748255, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 266205.24495764181, 4748084.4356891187 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140040, "Nombre": "BEMBEZAR", "Nombre SEP": "BEMBEZAR", "Otro nombr": "---", "Fecha": "01\/01\/1963", "Anyo": 1963, "Rio": "BEMBEZAR", "Municipio": "HORNACHUELOS", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 305740, "y": 4197410, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 305740.00000120461, 4197410.0001107231 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8460027, "Nombre": "BENAGEBER", "Nombre SEP": "BENAGEBER", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "TURIA", "Municipio": "BENAGEBER", "Cuenca": "JUCAR", "Provincia": "VALENCIA", "x": 663079, "y": 4399195, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 662970.70098176145, 4399158.9837106392 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240030, "Nombre": "BENAMARIAS", "Nombre SEP": "BENAMARIAS", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "SALGUIRAL", "Municipio": "MAGAZ DE CEPEDA", "Cuenca": "DUERO", "Provincia": "LEON", "x": 244026, "y": 4716999, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 244249.85678478872, 4717135.5636123661 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030035, "Nombre": "BENIARRES", "Nombre SEP": "BENIARRES", "Otro nombr": "---", "Fecha": "01\/04\/1958", "Anyo": 1958, "Rio": "SERPIS", "Municipio": "BENIARRES", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 729605, "y": 4299796, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 729456.7645840561, 4299517.3658398185 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5180023, "Nombre": "BERMEJALES, LOS", "Nombre SEP": "BERMEJALES, LOS", "Otro nombr": "---", "Fecha": "01\/01\/1958", "Anyo": 1958, "Rio": "CACIN", "Municipio": "ARENAS DEL REY", "Cuenca": "GUADALQUIVIR", "Provincia": "GRANADA", "x": 420700, "y": 4095050, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 420684.81561364455, 4094809.7185910572 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170002, "Nombre": "BOADELLA", "Nombre SEP": "BOADELLA (ELS FANGOTS)", "Otro nombr": "---", "Fecha": "16\/12\/1969", "Anyo": 1969, "Rio": "MUGA", "Municipio": "DARNIUS", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 981015, "y": 4704322, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 980552.37202132598, 4704158.4598623412 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230002, "Nombre": "BOLERA, LA", "Nombre SEP": "BOLERA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "GUADALETIN", "Municipio": "POZO ALCON", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 508658, "y": 4179650, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 508658.0, 4179650.0001105154 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100091, "Nombre": "BORBOLLON", "Nombre SEP": "BORBOLLON", "Otro nombr": "---", "Fecha": "10\/05\/1954", "Anyo": 1954, "Rio": "ARRAGO", "Municipio": "SANTIBA?EZ EL ALTO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 194910, "y": 4447965, "Tipos": "Hidroel?ctrico, Riego, Adecuaci?n ambiental" }, "geometry": { "type": "Point", "coordinates": [ 195190.99819749262, 4447824.9668272557 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100088, "Nombre": "BORBOLLON (DERIVACION) - ARRAGO (CONTRAEMBALSE)", "Nombre SEP": "BORBOLLON (DERIVACION) - ARRAGO", "Otro nombr": "---", "Fecha": "01\/01\/1954", "Anyo": 1954, "Rio": "ARRAGO", "Municipio": "SANTIBA?EZ EL ALTO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 193368, "y": 4446703, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 193631.9414122852, 4446525.3927811487 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110061, "Nombre": "BORNOS", "Nombre SEP": "BORNOS", "Otro nombr": "---", "Fecha": "01\/01\/1961", "Anyo": 1961, "Rio": "GUADALETE", "Municipio": "BORNOS", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 253744, "y": 4075482, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 253780.05668119769, 4075286.3235553531 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100094, "Nombre": "BOYERIL 2, EL", "Nombre SEP": "BOYERIL 2, EL", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "ARROYO MANCO", "Municipio": "CASATEJADA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 274235, "y": 4419290, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 274235.00000152638, 4419290.000113708 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060047, "Nombre": "BROVALES", "Nombre SEP": "BROVALES", "Otro nombr": "---", "Fecha": "01\/01\/1960", "Anyo": 1960, "Rio": "BROVALES", "Municipio": "JEREZ DE LOS CABALLEROS", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 176798, "y": 4251307, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 176992.98533376446, 4250732.7318027616 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220016, "Nombre": "BUBAL", "Nombre SEP": "BUBAL", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "GALLEGO", "Municipio": "HOZ DE JACA, BIESCAS", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 720079, "y": 4729203, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 720078.99999833736, 4729203.0001172731 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190007, "Nombre": "BUENDIA", "Nombre SEP": "BUENDIA", "Otro nombr": "---", "Fecha": "31\/12\/1958", "Anyo": 1958, "Rio": "GUADIELA", "Municipio": "BUENDIA", "Cuenca": "TAJO", "Provincia": "CUENCA", "x": 518481, "y": 4472261, "Tipos": "Hidroel?ctrico, Abastecimiento, Riego" }, "geometry": { "type": "Point", "coordinates": [ 518412.07051055285, 4472063.1819426892 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2420008, "Nombre": "CAMPILLO DE BUITRAGO", "Nombre SEP": "CAMPILLO DE BUITRAGO", "Otro nombr": "---", "Fecha": "30\/09\/1969", "Anyo": 1969, "Rio": "DUERO", "Municipio": "SORIA Y GARRAY", "Cuenca": "DUERO", "Provincia": "SORIA", "x": 539483, "y": 4631600, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 539343.09939355741, 4631392.82749373 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410016, "Nombre": "CANTILLANA", "Nombre SEP": "CANTILLANA", "Otro nombr": "---", "Fecha": "31\/12\/1956", "Anyo": 1956, "Rio": "GUADALQUIVIR", "Municipio": "CANTILLANA", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 252655, "y": 4164393, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 251785.19596559749, 4164327.7773508201 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450033, "Nombre": "CASTREJON", "Nombre SEP": "CASTREJON", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "TAJO", "Municipio": "PUEBLA DE MONTALBAN, LA Y POL?N", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 389280, "y": 4410440, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 389280.0000007464, 4410440.0001136456 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450014, "Nombre": "CASTREJON \/ CA?ARES", "Nombre SEP": "CASTREJON \/ CAARES", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "ARROYO CA?ARES", "Municipio": "PUEBLA DE MONTALBAN, LA", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 382105, "y": 4411925, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 382106.99343965441, 4411775.1499353675 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450043, "Nombre": "CASTREJON \/ CARPIO, EL", "Nombre SEP": "CASTREJON \/ CARPIO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "ARROYO EL CARPIO", "Municipio": "CARPIO DE TAJO", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 376065, "y": 4413100, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 375915.00528282166, 4412880.6701109689 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450047, "Nombre": "CAZALEGAS", "Nombre SEP": "CAZALEGAS", "Otro nombr": "---", "Fecha": "31\/12\/1949", "Anyo": 1949, "Rio": "ALBERCHE", "Municipio": "CAZALEGAS", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 354505, "y": 4430825, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 354505.00000098825, 4430825.0001138924 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110019, "Nombre": "CELEMIN (ALIVIADERO) (DIQUE DEL COLLADO)", "Nombre SEP": "CELEMIN", "Otro nombr": "---", "Fecha": "01\/01\/1974", "Anyo": 1974, "Rio": "CELEMIN", "Municipio": "MEDINA-SIDONIA", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 251076, "y": 4021595, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 250863.16976525041, 4020815.2617814709 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 7020010, "Nombre": "CENAJO, EL", "Nombre SEP": "CENAJO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1960", "Anyo": 1960, "Rio": "SEGURA", "Municipio": "MORATALLA Y HELLIN", "Cuenca": "SEGURA", "Provincia": "MURCIA", "x": 607142, "y": 4247250, "Tipos": "Defensa frente a avenidas, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 606848.28714350122, 4247028.4726568563 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2490003, "Nombre": "CERNADILLA", "Nombre SEP": "CERNADILLA", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "TERA", "Municipio": "CERNADILLA- MANZANAL DE ARRIBA", "Cuenca": "DUERO", "Provincia": "ZAMORA", "x": 213312, "y": 4657994, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 213557.10403010057, 4657744.3996864315 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450040, "Nombre": "CERQUILLA, LA", "Nombre SEP": "CERQUILLA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "JULIAN (ARROYO DE SAN JULIAN)", "Municipio": "CALZADA DE OROPESA, LA", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 307907, "y": 4429641, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 307907.00000130397, 4429641.0001138579 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4100015, "Nombre": "CIJARA", "Nombre SEP": "CIJARA", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "GUADIANA", "Municipio": "ALIA Y HERRERA DEL DUQUE", "Cuenca": "GUADIANA", "Provincia": "CACERES", "x": 326475, "y": 4360367, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 326475.00000114751, 4360367.000112975 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9430006, "Nombre": "CIURANA", "Nombre SEP": "CIURANA", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "CIURANA", "Municipio": "CORNUDELLA DE MONTSANT", "Cuenca": "EBRO", "Provincia": "TARRAGONA", "x": 828373, "y": 4574080, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 828372.99999765214, 4574080.0001155054 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170006, "Nombre": "COLOMERS (AZUD)", "Nombre SEP": "COLOMERS", "Otro nombr": "---", "Fecha": "01\/12\/1967", "Anyo": 1967, "Rio": "TER", "Municipio": "COLOMERS", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 996004, "y": 4675791, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 996003.99999633152, 4675791.0001164544 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140036, "Nombre": "CORDOBILLA", "Nombre SEP": "CORDOBILLA", "Otro nombr": "---", "Fecha": "01\/01\/1953", "Anyo": 1953, "Rio": "GENIL", "Municipio": "PUENTE GENIL", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 347701, "y": 4135123, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 347701.00000092073, 4135123.0001098318 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100064, "Nombre": "CORONO, EL", "Nombre SEP": "CORONO, EL", "Otro nombr": "---", "Fecha": "01\/01\/1971", "Anyo": 1971, "Rio": "ARROYO GODINO", "Municipio": "PASARON DE LA VERA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 260734, "y": 4435578, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 260639.26184376067, 4435536.0243036253 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5180012, "Nombre": "CUBILLAS", "Nombre SEP": "CUBILLAS", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "CUBILLAS", "Municipio": "ALBOLOTE, CHAPARRAL", "Cuenca": "GUADALQUIVIR", "Provincia": "GRANADA", "x": 439470, "y": 4126405, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 439525.57180033729, 4125610.3503942308 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2420001, "Nombre": "CUERDA DEL POZO", "Nombre SEP": "CUERDA DEL POZO", "Otro nombr": "---", "Fecha": "31\/12\/1941", "Anyo": 1941, "Rio": "DUERO", "Municipio": "VINUESA", "Cuenca": "DUERO", "Provincia": "SORIA", "x": 524663, "y": 4636207, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 524552.53323193337, 4636007.3724323958 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9390001, "Nombre": "EBRO", "Nombre SEP": "EBRO", "Otro nombr": "---", "Fecha": "31\/12\/1945", "Anyo": 1945, "Rio": "EBRO", "Municipio": "ROZAS DE VALDEARROLLO, LAS", "Cuenca": "EBRO", "Provincia": "CANTABRIA", "x": 414326, "y": 4758227, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 414326.00000065414, 4758227.0001176223 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280052, "Nombre": "ENCINILLA, LA", "Nombre SEP": "ENCINILLA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "ENCINILLA (ARROYO ENCINILLA)", "Municipio": "GUADARRAMA", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 406098, "y": 4503397, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 406098.00000065536, 4503397.0001148004 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190016, "Nombre": "ENTREPE?AS", "Nombre SEP": "ENTREPEAS", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "TAJO", "Municipio": "SACEDON, AU?ON", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 521162, "y": 4482457, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 521189.21548734041, 4482467.196376143 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410014, "Nombre": "ESPARRAGAL, EL", "Nombre SEP": "ESPARRAGAL, EL", "Otro nombr": "---", "Fecha": "31\/12\/1970", "Anyo": 1970, "Rio": "ENCARNACION", "Municipio": "GERENA", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 224955, "y": 4160665, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 224955.00000167952, 4160665.0001101429 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190026, "Nombre": "ESTREMERA", "Nombre SEP": "ESTREMERA", "Otro nombr": "---", "Fecha": "01\/01\/1950", "Anyo": 1950, "Rio": "TAJO", "Municipio": "DRIEBES, LEGANIEL", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 499510, "y": 4450630, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 499510.00000000338, 4450630.0001141671 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9430007, "Nombre": "FLIX", "Nombre SEP": "FLIX", "Otro nombr": "---", "Fecha": "31\/12\/1948", "Anyo": 1948, "Rio": "EBRO", "Municipio": "FLIX", "Cuenca": "EBRO", "Provincia": "TARRAGONA", "x": 797742, "y": 4570937, "Tipos": "Hidroel?ctrico, Regulaci?n, Riego" }, "geometry": { "type": "Point", "coordinates": [ 797257.51095335162, 4570605.5002363874 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8460004, "Nombre": "FORATA", "Nombre SEP": "FORATA", "Otro nombr": "---", "Fecha": "01\/01\/1969", "Anyo": 1969, "Rio": "MAGRO", "Municipio": "YATOVA", "Cuenca": "JUCAR", "Provincia": "VALENCIA", "x": 684213, "y": 4356914, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 683885.0467498292, 4356685.7649827823 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1240021, "Nombre": "FUENTE DEL AZUFRE (CONTRAEMBALSE)", "Nombre SEP": "FUENTE DEL AZUFRE", "Otro nombr": "---", "Fecha": "31\/12\/1949", "Anyo": 1949, "Rio": "SIL", "Municipio": "PONFERRADA", "Cuenca": "MI?O-SIL", "Provincia": "LEON", "x": 205737, "y": 4718533, "Tipos": "Hidroel?ctrico, Riego, Riego" }, "geometry": { "type": "Point", "coordinates": [ 205944.96551284811, 4718535.551752043 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100073, "Nombre": "GABRIEL Y GALAN", "Nombre SEP": "GABRIEL Y GALAN", "Otro nombr": "---", "Fecha": "01\/01\/1961", "Anyo": 1961, "Rio": "ALAGON", "Municipio": "GUIJO DE GRANADILLA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 233284, "y": 4457169, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 233284.00000182836, 4457169.0001141559 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060063, "Nombre": "GARCIA DE SOLA", "Nombre SEP": "GARCIA DE SOLA", "Otro nombr": "PUERTO PE?A", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "GUADIANA", "Municipio": "TALARRUBIAS", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 311314, "y": 4335259, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 311314.00000123557, 4335259.0001126351 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9260028, "Nombre": "GONZALEZ LACASA", "Nombre SEP": "GONZALEZ LACASA", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "ALBERCOS", "Municipio": "ORTIGOSA DE CAMEROS", "Cuenca": "EBRO", "Provincia": "LOGRO?O", "x": 527302, "y": 4669311, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 527027.14211959427, 4669157.9830363318 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220078, "Nombre": "GRADO I, EL", "Nombre SEP": "GRADO I, EL", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "CINCA", "Municipio": "GRADO, EL", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 767725, "y": 4671815, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 767493.10659884918, 4671664.3297387166 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230049, "Nombre": "GUADALEN", "Nombre SEP": "GUADALEN", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "GUADALEN", "Municipio": "ARQUILLOS, VILCHES", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 458265, "y": 4224145, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 458130.48443427938, 4223893.2653845353 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030092, "Nombre": "GUADALEST", "Nombre SEP": "GUADALEST", "Otro nombr": "---", "Fecha": "27\/11\/1969", "Anyo": 1969, "Rio": "GUADALEST", "Municipio": "GUADALEST", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 744422, "y": 4285116, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 744248.12491287524, 4285012.1236476637 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6290030, "Nombre": "GUADALHORCE", "Nombre SEP": "GUADALHORCE", "Otro nombr": "---", "Fecha": "31\/12\/1973", "Anyo": 1973, "Rio": "GUADALHORCE", "Municipio": "CAMPILLOS", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "MALAGA", "x": 339635, "y": 4090040, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 339578.28316918254, 4089980.0547640678 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230047, "Nombre": "GUADALMENA", "Nombre SEP": "GUADALMENA", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "GUADALMENA", "Municipio": "CHICLANA DE SEGURA", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 507600, "y": 4246350, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 507600.0, 4246350.0001114653 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6290030, "Nombre": "GUADALHORCE", "Nombre SEP": "GUADALTEBA", "Otro nombr": "---", "Fecha": "31\/12\/1973", "Anyo": 1973, "Rio": "GUADALHORCE", "Municipio": "CAMPILLOS", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "MALAGA", "x": 339635, "y": 4090040, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 339640.41895329254, 4090293.7495888071 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140033, "Nombre": "GUADANU?O", "Nombre SEP": "GUADANUO", "Otro nombr": "CERRO MURIANO", "Fecha": "01\/01\/1967", "Anyo": 1967, "Rio": "GUADANU?O", "Municipio": "CORDOBA Y VILLAVICIOSA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 342050, "y": 4209965, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 342055.46577670384, 4209638.5821752092 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6110005, "Nombre": "GUADARRANQUE", "Nombre SEP": "GUADARRANQUE", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "GUADARRANQUE", "Municipio": "LOS BARRIOS Y CASTELLAR", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "CADIZ", "x": 279075, "y": 4021000, "Tipos": "Abastecimiento, Riego, Industrial" }, "geometry": { "type": "Point", "coordinates": [ 278899.21589252847, 4020932.3798168479 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100138, "Nombre": "HELECHAL", "Nombre SEP": "HELECHAL", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "ARROYO HELECHAL", "Municipio": "ALCANTARA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 166075, "y": 4418651, "Tipos": "Acuicultura, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 166259.50658411568, 4418406.1401167503 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3050008, "Nombre": "HINCHONA, LA", "Nombre SEP": "HINCHONA, LA", "Otro nombr": "---", "Fecha": "01\/01\/1946", "Anyo": 1946, "Rio": "YEDRA", "Municipio": "TIEMBLO, EL", "Cuenca": "TAJO", "Provincia": "AVILA", "x": 372108, "y": 4471728, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 371926.00640769064, 4471324.947795012 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110015, "Nombre": "HURONES, LOS", "Nombre SEP": "HURONES, LOS", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "MAJACEITE", "Municipio": "ALGAR", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 271131, "y": 4060369, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 271033.64634078305, 4060396.8524853573 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030028, "Nombre": "ISBERT", "Nombre SEP": "ISBERT", "Otro nombr": "---", "Fecha": "01\/01\/1945", "Anyo": 1945, "Rio": "GIRONA", "Municipio": "ORBA", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 751659, "y": 4297224, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 751658.99999837694, 4297224.0001120884 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140028, "Nombre": "IZNAJAR", "Nombre SEP": "IZNAJAR", "Otro nombr": "---", "Fecha": "01\/01\/1969", "Anyo": 1969, "Rio": "GENIL", "Municipio": "RUTE, CUEVAS SAN MARCOS", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 377250, "y": 4126550, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 377250.00000073959, 4126550.0001097168 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100102, "Nombre": "JARILLA, LA (TAJO)", "Nombre SEP": "JARILLA, LA (TAJO)", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "CAVERA", "Municipio": "JARILLA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 242520, "y": 4451720, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 242463.90101495423, 4451498.8172813412 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140001, "Nombre": "MALPASILLO JAUJA (AZUD)", "Nombre SEP": "JAUJA", "Otro nombr": "MALPASILLO JAUJA", "Fecha": "31\/12\/1951", "Anyo": 1951, "Rio": "GENIL", "Municipio": "LUCENA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 352650, "y": 4129600, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 352650.00000088883, 4129600.0001097522 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240007, "Nombre": "JUAN BENET (PORMA)", "Nombre SEP": "JUAN BENET (PORMA)", "Otro nombr": "---", "Fecha": "30\/04\/1968", "Anyo": 1968, "Rio": "PORMA", "Municipio": "BO?AR", "Cuenca": "DUERO", "Provincia": "LEON", "x": 313090, "y": 4755710, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 312894.4351475102, 4755511.1936149886 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2400015, "Nombre": "LINARES DEL ARROYO", "Nombre SEP": "LINARES DEL ARROYO", "Otro nombr": "---", "Fecha": "30\/04\/1953", "Anyo": 1953, "Rio": "RIAZA", "Municipio": "MADERUELO", "Cuenca": "DUERO", "Provincia": "SEGOVIA", "x": 453728, "y": 4597664, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 453728.00000033417, 4597664.0001159096 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8460013, "Nombre": "LORIGUILLA", "Nombre SEP": "LORIGUILLA", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "TURIA", "Municipio": "LORIGUILLA Y CHULILLA", "Cuenca": "JUCAR", "Provincia": "VALENCIA", "x": 679189, "y": 4392798, "Tipos": "Regulaci?n, Riego, Hidroel?ctrico" }, "geometry": { "type": "Point", "coordinates": [ 678972.29097994824, 4392723.5740577141 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9260022, "Nombre": "MANSILLA", "Nombre SEP": "MANSILLA", "Otro nombr": "---", "Fecha": "31\/12\/1960", "Anyo": 1960, "Rio": "NAJERILLA", "Municipio": "MANSILLA DE LA SIERRA, VILLAVELAYO", "Cuenca": "EBRO", "Provincia": "LOGRO?O", "x": 507343, "y": 4667566, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 507281.00221223279, 4667302.6375161717 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230044, "Nombre": "MARMOLEJO (AZUD)", "Nombre SEP": "MARMOLEJO", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "GUADALQUIVIR", "Municipio": "MARMOLEJO", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 396000, "y": 4213200, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 395940.24552375951, 4212948.0236912426 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220054, "Nombre": "MEDIANO", "Nombre SEP": "MEDIANO", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "CINCA", "Municipio": "FUEVA, LA", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 765112, "y": 4689838, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 764520.13618176524, 4689495.3451251751 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500030, "Nombre": "MEQUINENZA", "Nombre SEP": "MEQUINENZA", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "EBRO", "Municipio": "MEQUINENZA", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 774241, "y": 4584997, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 773686.23269066075, 4584901.1279483894 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230023, "Nombre": "MOLINO DE GUADALEN (CONTRAEMBALSE)", "Nombre SEP": "MOLINO DE GUADALEN", "Otro nombr": "SALTO DEL MOLINO", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "GUADALEN", "Municipio": "VILCHES", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 457163, "y": 4222764, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 456932.14577535546, 4222402.7469838392 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6110011, "Nombre": "MONTE DE LA TORRE (DD-1)", "Nombre SEP": "MONTE DE LA TORRE (DD-1)", "Otro nombr": "DEPOSITO DD-1", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "PRIOR", "Municipio": "BARRIOS, LOS", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "CADIZ", "x": 275972, "y": 4004387, "Tipos": "Regulaci?n, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 275788.59585781599, 4004118.0154836481 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060102, "Nombre": "MONTIJO (AZUD)", "Nombre SEP": "MONTIJO", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "GUADIANA", "Municipio": "MERIDA", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 202510, "y": 4314117, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 202839.06667843321, 4313969.4671972822 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060074, "Nombre": "MOSQUIL, EL", "Nombre SEP": "MOSQUIL, EL", "Otro nombr": "---", "Fecha": "01\/01\/1971", "Anyo": 1971, "Rio": "LABRADOS", "Municipio": "USAGRE", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 228717, "y": 4255260, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 229111.4039668247, 4255224.6162545485 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280058, "Nombre": "NAVALAGAMELLA", "Nombre SEP": "NAVALAGAMELLA", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "CURA", "Municipio": "NAVALAGAMELLA", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 405106, "y": 4472030, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 405106.00000065466, 4472030.0001144195 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500043, "Nombre": "NI?O JESUS", "Nombre SEP": "NIO JESUS", "Otro nombr": "ANI?ON", "Fecha": "09\/05\/1955", "Anyo": 1955, "Rio": "ARROYO DEL FRESNO O JESUS", "Municipio": "ANI?ON", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 608478, "y": 4595385, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 608477.99999922, 4595385.0001158724 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9250050, "Nombre": "OLIANA", "Nombre SEP": "OLIANA", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "SEGRE", "Municipio": "OLIANA Y PERAMOLA", "Cuenca": "EBRO", "Provincia": "LLEIDA", "x": 855649, "y": 4669176, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 855143.4408810538, 4669058.1677928604 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120003, "Nombre": "ONDA", "Nombre SEP": "ONDA", "Otro nombr": "BENITANDUS", "Fecha": "01\/01\/1954", "Anyo": 1954, "Rio": "SECO \/ VEO", "Municipio": "ALCUDIA DE VEO", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 728310, "y": 4424455, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 727935.80062836374, 4424006.6966660591 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060095, "Nombre": "ORELLANA", "Nombre SEP": "ORELLANA", "Otro nombr": "---", "Fecha": "01\/01\/1963", "Anyo": 1963, "Rio": "GUADIANA", "Municipio": "ORELLANA LA VIEJA, CAMPANARIO", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 280423, "y": 4318386, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 280423.0000014283, 4318386.0001123948 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190028, "Nombre": "PALMACES", "Nombre SEP": "PALMACES", "Otro nombr": "---", "Fecha": "01\/01\/1954", "Anyo": 1954, "Rio": "CA?AMARES", "Municipio": "PALMACES DE JADRAQUE", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 505170, "y": 4544655, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 505170.0, 4544655.0001153052 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170013, "Nombre": "PASTERAL I (AZUD)", "Nombre SEP": "PASTERAL, EL", "Otro nombr": "---", "Fecha": "01\/01\/1962", "Anyo": 1962, "Rio": "TER", "Municipio": "OSOR", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 965397, "y": 4663877, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 964924.89868687443, 4663579.5485260645 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060004, "Nombre": "PASTIZALES, LOS", "Nombre SEP": "PASTIZALES, LOS", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "VALDELARQUILLO (VALDESEQUILLOS)", "Municipio": "HELECHOSA DE LOS MONTES", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 352216, "y": 4363403, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 352216.00000097847, 4363403.0001130253 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230018, "Nombre": "PEDRO MARIN", "Nombre SEP": "PEDRO MARIN", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "GUADALQUIVIR", "Municipio": "JODAR", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 463739, "y": 4196379, "Tipos": "Hidroel?ctrico, Riego, Industrial" }, "geometry": { "type": "Point", "coordinates": [ 463747.9632903352, 4195770.7371934094 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4130018, "Nombre": "PE?ARROYA", "Nombre SEP": "PEARROYA", "Otro nombr": "---", "Fecha": "01\/01\/1959", "Anyo": 1959, "Rio": "GUADIANA", "Municipio": "ARGAMASILLA DE ALBA", "Cuenca": "GUADIANA", "Provincia": "CIUDAD REAL", "x": 499519, "y": 4323754, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 499445.36644176848, 4323443.055640406 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280055, "Nombre": "PE?ASCALES, LOS", "Nombre SEP": "PEASCALES, LOS", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "ARROYO TROFAS", "Municipio": "TORRELODONES", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 424055, "y": 4492013, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 423888.83590512292, 4491789.0042292764 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280063, "Nombre": "PICADAS", "Nombre SEP": "PICADAS", "Otro nombr": "---", "Fecha": "31\/12\/1952", "Anyo": 1952, "Rio": "ALBERCHE", "Municipio": "SAN MARTIN DE VALDEIGLESIAS", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 393940, "y": 4465690, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 393940.00000072992, 4465690.0001143385 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060031, "Nombre": "PIEDRA AGUDA", "Nombre SEP": "PIEDRA AGUDA", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "OLIVENZA", "Municipio": "OLIVENZA", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 149904, "y": 4289973, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 150122.57615758118, 4289687.4514117688 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4210092, "Nombre": "PIEDRAS", "Nombre SEP": "PIEDRAS", "Otro nombr": "---", "Fecha": "31\/12\/1968", "Anyo": 1968, "Rio": "PIEDRAS", "Municipio": "CARTAYA, LEPE", "Cuenca": "TINTO, ODIEL Y PIEDRAS", "Provincia": "HUELVA", "x": 122023, "y": 4144432, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 122023.00000229111, 4144432.0001098211 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410106, "Nombre": "PINTADO, EL", "Nombre SEP": "PINTADO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1948", "Anyo": 1948, "Rio": "VIAR", "Municipio": "CAZALLA SIERRA,GUADALCANAL,REAL DE JARA,REINA FTE ARCO", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 240667, "y": 4208399, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 240667.00000161465, 4208399.0001108432 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140004, "Nombre": "PUENTE NUEVO", "Nombre SEP": "PUENTE NUEVO", "Otro nombr": "---", "Fecha": "01\/01\/1972", "Anyo": 1972, "Rio": "GUADIATO", "Municipio": "VILLAVICIOSA DE CORDOBA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 331056, "y": 4217469, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 331143.69377231726, 4217144.4555844786 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120004, "Nombre": "REGAJO, EL", "Nombre SEP": "REGAJO, EL", "Otro nombr": "---", "Fecha": "31\/10\/1959", "Anyo": 1959, "Rio": "PALANCIA", "Municipio": "JERICA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 711756, "y": 4418669, "Tipos": "Riego, Regulaci?n, ---" }, "geometry": { "type": "Point", "coordinates": [ 711668.69646251481, 4418507.1710887272 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2340005, "Nombre": "REQUEJADA", "Nombre SEP": "REQUEJADA", "Otro nombr": "---", "Fecha": "01\/08\/1935", "Anyo": 1935, "Rio": "PISUERGA", "Municipio": "ARBEJAL", "Cuenca": "DUERO", "Provincia": "PALENCIA", "x": 375507, "y": 4751818, "Tipos": "Abastecimiento, Riego, Defensa frente a avenidas" }, "geometry": { "type": "Point", "coordinates": [ 375177.30451694719, 4751566.1175596491 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140048, "Nombre": "RETORTILLO", "Nombre SEP": "RETORTILLO", "Otro nombr": "---", "Fecha": "01\/01\/1970", "Anyo": 1970, "Rio": "RETORTILLO", "Municipio": "HORNACHUELOS, PUEBLA DE INFANTES", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 293165, "y": 4191105, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 293165.00000127923, 4191105.0001106281 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280015, "Nombre": "REY, DEL", "Nombre SEP": "REY, DEL", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "JARAMA", "Municipio": "RIVAS-VACIAMADRID", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 453964, "y": 4461241, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 453964.00000031636, 4461241.0001142966 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9430003, "Nombre": "RIBARROJA", "Nombre SEP": "RIBARROJA", "Otro nombr": "RIBA ROJA", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "EBRO", "Municipio": "RIBA-ROJA D??EBRE", "Cuenca": "EBRO", "Provincia": "TARRAGONA", "x": 788146, "y": 4571794, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 787624.73601893429, 4571556.3451475818 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1270013, "Nombre": "RIBASALTAS (AZUD)", "Nombre SEP": "RIBASALTAS (AZUD)", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "CABE", "Municipio": "MONFORTE DE LEMOS", "Cuenca": "MI?O-SIL", "Provincia": "LUGO", "x": 132034, "y": 4721564, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 132034.00000276923, 4721564.0001170803 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450011, "Nombre": "ROSARITO", "Nombre SEP": "ROSARITO", "Otro nombr": "---", "Fecha": "31\/12\/1958", "Anyo": 1958, "Rio": "TIETAR", "Municipio": "OROPESA, CANDELEDA", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 302082, "y": 4442874, "Tipos": "Riego, Hidroel?ctrico, ---" }, "geometry": { "type": "Point", "coordinates": [ 301991.03200197459, 4442529.6404402032 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230022, "Nombre": "RUMBLAR", "Nombre SEP": "RUMBLAR", "Otro nombr": "---", "Fecha": "31\/12\/1941", "Anyo": 1941, "Rio": "RUMBLAR", "Municipio": "BA?OS DE LA ENCINA", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 429670, "y": 4224281, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 429466.98631105415, 4223978.121261307 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100074, "Nombre": "SALOR", "Nombre SEP": "SALOR", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "SALOR", "Municipio": "CACERES", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 214873, "y": 4362570, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 215318.85325469874, 4362361.2675712993 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2470004, "Nombre": "SAN JOSE", "Nombre SEP": "SAN JOSE", "Otro nombr": "---", "Fecha": "17\/11\/1945", "Anyo": 1945, "Rio": "DUERO", "Municipio": "CASTRONU?O", "Cuenca": "DUERO", "Provincia": "VALLADOLID", "x": 310093, "y": 4586292, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 310006.92881748558, 4586027.2088383222 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280027, "Nombre": "SAN JUAN (DIQUE DEL COLLADO)", "Nombre SEP": "SAN JUAN", "Otro nombr": "---", "Fecha": "31\/12\/1955", "Anyo": 1955, "Rio": "ALBERCHE", "Municipio": "SAN MARTIN DE VALDEIGLESIAS", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 388451, "y": 4469946, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 388451.00000076892, 4469946.0001143906 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10250001, "Nombre": "SANT PONC (SAN PONS)", "Nombre SEP": "SAN PONS", "Otro nombr": "---", "Fecha": "19\/12\/1957", "Anyo": 1957, "Rio": "EL CARDENER", "Municipio": "CLARIANA DE CARDENER", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "LLEIDA", "x": 882025, "y": 4656011, "Tipos": "Riego, Abastecimiento, Hidroel?ctrico" }, "geometry": { "type": "Point", "coordinates": [ 881632.5541560105, 4655961.9785424955 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220076, "Nombre": "SANTA ANA", "Nombre SEP": "SANTA ANA", "Otro nombr": "---", "Fecha": "31\/12\/1961", "Anyo": 1961, "Rio": "NOGUERA RIBAGORZANA", "Municipio": "CASTILLONROY", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 797530, "y": 4643159, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 797529.99999781919, 4643159.0001163064 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2370010, "Nombre": "SANTA TERESA", "Nombre SEP": "SANTA TERESA", "Otro nombr": "---", "Fecha": "28\/02\/1961", "Anyo": 1961, "Rio": "TORMES", "Municipio": "MONTEJO DE SALVATIERRA Y PELAYOS", "Cuenca": "DUERO", "Provincia": "SALAMANCA", "x": 280203, "y": 4505246, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 280101.14524313901, 4504994.2206645971 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 7300019, "Nombre": "SANTOMERA (DIQUE DEL COLLADO)", "Nombre SEP": "SANTOMERA", "Otro nombr": "---", "Fecha": "31\/12\/1965", "Anyo": 1965, "Rio": "SALADA", "Municipio": "SANTOMERA", "Cuenca": "SEGURA", "Provincia": "MURCIA", "x": 667635, "y": 4218190, "Tipos": "Defensa frente a avenidas, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 667553.26173220028, 4218014.9260413414 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10080007, "Nombre": "SAU", "Nombre SEP": "SAU", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "TER", "Municipio": "VILANOVA DE SAU", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "BARCELONA", "x": 948914, "y": 4660480, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 948574.98076378054, 4660418.9119669031 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240018, "Nombre": "SELGA DE ORDAS", "Nombre SEP": "SELGA DE ORDAS", "Otro nombr": "---", "Fecha": "31\/12\/1961", "Anyo": 1961, "Rio": "LUNA", "Municipio": "RIOSECO DE TAPIA, STA. MARIA ORDAS", "Cuenca": "DUERO", "Provincia": "LEON", "x": 271923, "y": 4737491, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 271914.26020848152, 4737334.3768835021 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120002, "Nombre": "SICHAR", "Nombre SEP": "SICHAR", "Otro nombr": "---", "Fecha": "30\/04\/1960", "Anyo": 1960, "Rio": "MIJARES", "Municipio": "ONDA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 736439, "y": 4432744, "Tipos": "Regulaci?n, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 736438.99999839358, 4432744.00011387 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100056, "Nombre": "SOLANA, LA", "Nombre SEP": "SOLANA, LA", "Otro nombr": "---", "Fecha": "01\/01\/1955", "Anyo": 1955, "Rio": "ARROYO CABRIOSO", "Municipio": "HERRERA DE ALCANTARA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 121529, "y": 4390838, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 121836.40440071683, 4390689.0378045123 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220034, "Nombre": "SOTONERA, LA (DIQUE DEL COLLADO 1) (ASTON Y VACAS)", "Nombre SEP": "SOTONERA, LA (DIQUE DEL COLLADO 1)", "Otro nombr": "---", "Fecha": "01\/01\/1963", "Anyo": 1963, "Rio": "ASTON-VACAS", "Municipio": "ALCALA DE GURREA", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 692200, "y": 4664000, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 692199.99999857985, 4664000.0001165997 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170012, "Nombre": "SUSQUEDA", "Nombre SEP": "SUSQUEDA", "Otro nombr": "---", "Fecha": "01\/01\/1967", "Anyo": 1967, "Rio": "TER", "Municipio": "OSOR", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 958440, "y": 4663004, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 957851.11378305964, 4662143.8760432666 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500034, "Nombre": "TORCAS, LAS", "Nombre SEP": "TORCAS, LAS", "Otro nombr": "---", "Fecha": "31\/12\/1946", "Anyo": 1946, "Rio": "HUERVA", "Municipio": "TOSOS", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 660235, "y": 4573209, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 660234.99999885331, 4573209.0001156013 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410139, "Nombre": "TORRE DEL AGUILA", "Nombre SEP": "TORRE DEL AGUILA", "Otro nombr": "---", "Fecha": "31\/12\/1947", "Anyo": 1947, "Rio": "SALADO DE MORON", "Municipio": "UTRERA", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 254750, "y": 4103343, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 254716.73244858842, 4103122.6752734035 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2400007, "Nombre": "TORRELARA", "Nombre SEP": "TORRELARA", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "MAGDALENA", "Municipio": "MU?OPEDRO", "Cuenca": "DUERO", "Provincia": "SEGOVIA", "x": 371042, "y": 4526981, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 371474.63857139618, 4526738.7075403994 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100128, "Nombre": "TOZO", "Nombre SEP": "TOZO", "Otro nombr": "---", "Fecha": "01\/01\/1962", "Anyo": 1962, "Rio": "TOZO", "Municipio": "TORRECILLAS DE LA TIESA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 258781, "y": 4384708, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 258781.00000160944, 4384708.0001132572 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230005, "Nombre": "TRANCO DE BEAS", "Nombre SEP": "TRANCO DE BEAS", "Otro nombr": "---", "Fecha": "31\/12\/1944", "Anyo": 1944, "Rio": "GUADALQUIVIR", "Municipio": "VILLANUEVA DEL ARZOBISPO", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 518004, "y": 4225445, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 517861.0563689702, 4225025.3304180205 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500008, "Nombre": "TRANQUERA, LA", "Nombre SEP": "TRANQUERA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "PIEDRA", "Municipio": "CARENAS", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 600522, "y": 4568949, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 600521.99999928, 4568949.0001155725 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120011, "Nombre": "ULLDECONA", "Nombre SEP": "ULLDECONA", "Otro nombr": "---", "Fecha": "01\/01\/1967", "Anyo": 1967, "Rio": "CENIA", "Municipio": "PUEBLA DE BENIFASAR, LA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 773861, "y": 4507456, "Tipos": "Riego, Abastecimiento, ---" }, "geometry": { "type": "Point", "coordinates": [ 773327.9162701891, 4507288.4204253387 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9010013, "Nombre": "ULLIVARRI (ULLIBARRI GAMBOA)", "Nombre SEP": "ULLIVARRI", "Otro nombr": "---", "Fecha": "31\/12\/1956", "Anyo": 1956, "Rio": "ZADORRA", "Municipio": "ARRAZUA-UBARRUNDIA", "Cuenca": "EBRO", "Provincia": "ALAVA", "x": 531411, "y": 4753261, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 531278.99783930019, 4753084.7523021977 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220071, "Nombre": "VADIELLO", "Nombre SEP": "VADIELLO", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "GUATIZALEMA", "Municipio": "LOPORZANO", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 724600, "y": 4680350, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 724560.93252269889, 4680172.3391518891 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8440008, "Nombre": "VALBONA", "Nombre SEP": "VALBONA", "Otro nombr": "---", "Fecha": "23\/04\/1959", "Anyo": 1959, "Rio": "RAMBLA DE FUENTE DE MORA", "Municipio": "VALBONA", "Cuenca": "JUCAR", "Provincia": "TERUEL", "x": 685729, "y": 4458355, "Tipos": "Riego, Regulaci?n, ---" }, "geometry": { "type": "Point", "coordinates": [ 685728.99999873003, 4458355.0001142183 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450003, "Nombre": "VALDECABRAS (ARROYO)", "Nombre SEP": "VALDECABRAS (ARROYO)", "Otro nombr": "---", "Fecha": "31\/12\/1965", "Anyo": 1965, "Rio": "VALDECABRAS", "Municipio": "ORGAZ", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 420490, "y": 4393145, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 420520.71686166816, 4392631.2704687919 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100007, "Nombre": "VALDECA?AS", "Nombre SEP": "VALDECAAS", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "TAJO", "Municipio": "BELVIS DE MONROY Y VALDECA?AS DE TAJO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 276345, "y": 4406515, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 276347.26634769759, 4406386.6952600898 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100021, "Nombre": "VALDEOBISPO", "Nombre SEP": "VALDEOBISPO", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "ALAGON", "Municipio": "VALDEOBISPO, MONTEHERMOSO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 222665, "y": 4444086, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 222919.86433664197, 4443918.750305797 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240032, "Nombre": "VALDESPINA", "Nombre SEP": "VALDESPINA", "Otro nombr": "EMBALSE DE BARRIO", "Fecha": "01\/01\/1940", "Anyo": 1940, "Rio": "ARROYO VALDESPINA", "Municipio": "SANTA COLOMBA DE CURUE?O", "Cuenca": "DUERO", "Provincia": "LEON", "x": 302950, "y": 4731030, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 302950.00000148988, 4731030.0001173029 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060067, "Nombre": "VALUENGO", "Nombre SEP": "VALUENGO", "Otro nombr": "---", "Fecha": "01\/01\/1959", "Anyo": 1959, "Rio": "ARDILA", "Municipio": "JEREZ DE LOS CABALLEROS", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 178405, "y": 4245838, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 178543.34801585122, 4245732.181511187 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2400023, "Nombre": "VENCIAS, LAS", "Nombre SEP": "VENCIAS, LAS", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "DURAT??N", "Municipio": "FUENTIDUE?A", "Cuenca": "DUERO", "Provincia": "SEGOVIA", "x": 419459, "y": 4586898, "Tipos": "Hidroel?ctrico, Regulaci?n, Riego" }, "geometry": { "type": "Point", "coordinates": [ 419459.00000057934, 4586898.000115783 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4130068, "Nombre": "VICARIO, EL", "Nombre SEP": "VICARIO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1973", "Anyo": 1973, "Rio": "GUADIANA", "Municipio": "CIUDAD REAL", "Cuenca": "GUADIANA", "Provincia": "CIUDAD REAL", "x": 413850, "y": 4324000, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 413850.00000056188, 4324000.0001125196 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100052, "Nombre": "VID III, LA", "Nombre SEP": "VID III, LA", "Otro nombr": "---", "Fecha": "01\/01\/1959", "Anyo": 1959, "Rio": "VID", "Municipio": "TORREJON EL RUBIO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 247090, "y": 4406926, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 247165.8777877831, 4406975.3306448543 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1270004, "Nombre": "VILASOUTO", "Nombre SEP": "VILASOUTO", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "MAO", "Municipio": "INCIO, O", "Cuenca": "MI?O-SIL", "Provincia": "LUGO", "x": 137205, "y": 4732933, "Tipos": "Riego, Abastecimiento, ---" }, "geometry": { "type": "Point", "coordinates": [ 137671.65869766171, 4732735.3370183716 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140050, "Nombre": "VILLAFRANCA", "Nombre SEP": "VILLAFRANCA", "Otro nombr": "---", "Fecha": "01\/01\/1948", "Anyo": 1948, "Rio": "GUADALQUIVIR", "Municipio": "VILLAFRANCA DE CORDOBA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 359660, "y": 4202300, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 357188.5432571487, 4202169.7855444774 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2370033, "Nombre": "VILLAGONZALO (AZUD)", "Nombre SEP": "VILLAGONZALO", "Otro nombr": "---", "Fecha": "14\/02\/1960", "Anyo": 1960, "Rio": "TORMES", "Municipio": "VILLAGONZALO DE TORMES Y GARIHERNANDEZ", "Cuenca": "DUERO", "Provincia": "SALAMANCA", "x": 289812, "y": 4527892, "Tipos": "Riego, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 289678.63287577347, 4527640.0190840354 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240006, "Nombre": "VILLAMECA", "Nombre SEP": "VILLAMECA", "Otro nombr": "---", "Fecha": "31\/12\/1947", "Anyo": 1947, "Rio": "TUERTO-VALLE (TUERTO)", "Municipio": "QUINTANA DEL CASTILLO", "Cuenca": "DUERO", "Provincia": "LEON", "x": 247863, "y": 4726637, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 248499.58589500023, 4726265.0601202846 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9310007, "Nombre": "YESA", "Nombre SEP": "YESA", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "ARAGON", "Municipio": "YESA", "Cuenca": "EBRO", "Provincia": "NAVARRA", "x": 648990, "y": 4719190, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 649067.47948859434, 4719668.5123394737 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230007, "Nombre": "ZOCUECA (AZUD)", "Nombre SEP": "ZOCUECA", "Otro nombr": "---", "Fecha": "31\/12\/1940", "Anyo": 1940, "Rio": "RUMBLAR", "Municipio": "GUARROM?N", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 427175, "y": 4217080, "Tipos": "Riego, Abastecimiento, ---" }, "geometry": { "type": "Point", "coordinates": [ 427142.74856572493, 4216768.4433339546 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060070, "Nombre": "ZUJAR (DIQUE DEL COLLADO)", "Nombre SEP": "ZUJAR", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "ZUJAR", "Municipio": "CASTUERA, ESPARRAGOSA DE LARES", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 285155, "y": 4310665, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 285155.00000139326, 4310665.0001122924 ] } }
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,153 +0,0 @@
|
||||||
{
|
|
||||||
"type": "FeatureCollection",
|
|
||||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
|
|
||||||
"features": [
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2340004, "Nombre": "AGUILAR DE CAMPOO", "Nombre SEP": "AGUILAR DE CAMPOO", "Otro nombr": "---", "Fecha": "02\/09\/1964", "Anyo": 1964, "Rio": "PISUERGA", "Municipio": "AGUILAR DE CAMPOO", "Cuenca": "DUERO", "Provincia": "PALENCIA", "x": 394705, "y": 4739000, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ -477290.92571131635, 5281019.847279408 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8160006, "Nombre": "ALARCON", "Nombre SEP": "ALARCON", "Otro nombr": "---", "Fecha": "30\/09\/1955", "Anyo": 1955, "Rio": "JUCAR", "Municipio": "ALARCON", "Cuenca": "JUCAR", "Provincia": "CUENCA", "x": 576346, "y": 4379982, "Tipos": "Regulaci?n, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ -235018.03732984368, 4803093.769704272 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120006, "Nombre": "ALCORA", "Nombre SEP": "ALCORA", "Otro nombr": "---", "Fecha": "29\/09\/1958", "Anyo": 1958, "Rio": "LUCENA", "Municipio": "ALCORA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 737177, "y": 4442329, "Tipos": "Riego, Regulaci?n, ---" }, "geometry": { "type": "Point", "coordinates": [ -24241.475632931793, 4880165.7765549198 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110041, "Nombre": "ALMODOVAR (DIQUE DEL COLLADO) (RECRECIDA)", "Nombre SEP": "ALMODOVAR", "Otro nombr": "---", "Fecha": "01\/01\/1972", "Anyo": 1972, "Rio": "ALMODOVAR", "Municipio": "TARIFA", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 261945, "y": 4004510, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -628911.64932252397, 4321835.4591957172 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190001, "Nombre": "ALMOGUERA", "Nombre SEP": "ALMOGUERA", "Otro nombr": "---", "Fecha": "01\/01\/1947", "Anyo": 1947, "Rio": "TAJO", "Municipio": "ALMOGUERA", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 503585, "y": 4460330, "Tipos": "Hidroel?ctrico, Regulaci?n, Riego" }, "geometry": { "type": "Point", "coordinates": [ -329289.74959992216, 4905878.4267251138 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030027, "Nombre": "AMADORIO", "Nombre SEP": "AMADORIO", "Otro nombr": "---", "Fecha": "24\/02\/1960", "Anyo": 1960, "Rio": "AMADORIO", "Municipio": "VILLAJOYOSA", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 738600, "y": 4268800, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -29443.442844486388, 4655200.8750819759 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100070, "Nombre": "ARAYA DE ARRIBA (DIQUE DEL COLLADO)", "Nombre SEP": "ARAYA DE ARRIBA", "Otro nombr": "---", "Fecha": "01\/01\/1958", "Anyo": 1958, "Rio": "ANCIANES", "Municipio": "BROZAS", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 184298, "y": 4380608, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -742398.9341345639, 4795589.2302759644 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110031, "Nombre": "ARCOS", "Nombre SEP": "ARCOS", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "GUADALETE", "Municipio": "ARCOS DE LA FRONTERA", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 250520, "y": 4071143, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -644843.89503130445, 4404617.4071527813 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 7300010, "Nombre": "ARGOS", "Nombre SEP": "ARGOS", "Otro nombr": "---", "Fecha": "01\/12\/1972", "Anyo": 1972, "Rio": "ARGOS", "Municipio": "CEHEGIN", "Cuenca": "SEGURA", "Provincia": "MURCIA", "x": 611000, "y": 4225906, "Tipos": "Defensa frente a avenidas, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -193099.96138342097, 4603790.5685733911 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8440007, "Nombre": "ARQUILLO DE SAN BLAS", "Nombre SEP": "ARQUILLO DE SAN BLAS", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "GUADALAVIAR", "Municipio": "TERUEL", "Cuenca": "JUCAR", "Provincia": "TERUEL", "x": 653793, "y": 4469304, "Tipos": "Abastecimiento, Defensa frente a avenidas, Riego" }, "geometry": { "type": "Point", "coordinates": [ -134174.80636190862, 4918914.5343539556 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280039, "Nombre": "ARROYOS, LOS (DIQUE DE COLA)", "Nombre SEP": "ARROYOS, LOS", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "LADRON", "Municipio": "ESCORIAL, EL", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 411261, "y": 4493850, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -450794.76477223414, 4952036.3164162273 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280048, "Nombre": "ATAZAR, EL", "Nombre SEP": "ATAZAR, EL", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "LOZOYA", "Municipio": "PATONES Y ATAZAR", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 460256, "y": 4529303, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -386496.49001725402, 4999645.6750517506 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450030, "Nombre": "AZUTAN", "Nombre SEP": "AZUTAN", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "TAJO", "Municipio": "AZUTAN Y ALCOLEA DE TAJO", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 321222, "y": 4405375, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -566544.35889864189, 4833571.2248626323 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9250051, "Nombre": "BALAGUER PARTIDOR (CONTRAEMBALSE)", "Nombre SEP": "BALAGUER", "Otro nombr": "---", "Fecha": "31\/12\/1958", "Anyo": 1958, "Rio": "SEGRE", "Municipio": "OS DE BALAGUER", "Cuenca": "EBRO", "Provincia": "LLEIDA", "x": 818394, "y": 4638887, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 93175.293838749465, 5139051.7923285477 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8440011, "Nombre": "BALAGUERAS", "Nombre SEP": "BALAGUERAS", "Otro nombr": "---", "Fecha": "31\/12\/1957", "Anyo": 1957, "Rio": "PALOMERAS", "Municipio": "RUBIELOS DE MORA", "Cuenca": "JUCAR", "Provincia": "TERUEL", "x": 697715, "y": 4454450, "Tipos": "Riego, Regulaci?n, ---" }, "geometry": { "type": "Point", "coordinates": [ -75505.086741609237, 4896759.1511155246 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1240011, "Nombre": "BARCENA", "Nombre SEP": "BARCENA", "Otro nombr": "---", "Fecha": "31\/12\/1960", "Anyo": 1960, "Rio": "SIL", "Municipio": "PONFERRADA", "Cuenca": "MI?O-SIL", "Provincia": "LEON", "x": 207593, "y": 4720277, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ -730222.67455067264, 5247938.1111439858 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240029, "Nombre": "BARRIOS DE LUNA", "Nombre SEP": "BARRIOS DE LUNA", "Otro nombr": "---", "Fecha": "31\/12\/1956", "Anyo": 1956, "Rio": "ORBIGO - LUNA (LUNA)", "Municipio": "BARRIOS DE LUNA, LOS", "Cuenca": "DUERO", "Provincia": "LEON", "x": 266290, "y": 4748255, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -652476.13981830457, 5289106.3604810396 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140040, "Nombre": "BEMBEZAR", "Nombre SEP": "BEMBEZAR", "Otro nombr": "---", "Fecha": "01\/01\/1963", "Anyo": 1963, "Rio": "BEMBEZAR", "Municipio": "HORNACHUELOS", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 305740, "y": 4197410, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -579926.42911252403, 4565802.5368237756 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8460027, "Nombre": "BENAGEBER", "Nombre SEP": "BENAGEBER", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "TURIA", "Municipio": "BENAGEBER", "Cuenca": "JUCAR", "Provincia": "VALENCIA", "x": 663079, "y": 4399195, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -122273.31585349157, 4826313.81621652 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240030, "Nombre": "BENAMARIAS", "Nombre SEP": "BENAMARIAS", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "SALGUIRAL", "Municipio": "MAGAZ DE CEPEDA", "Cuenca": "DUERO", "Provincia": "LEON", "x": 244026, "y": 4716999, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -680791.95215833315, 5245882.7183639724 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030035, "Nombre": "BENIARRES", "Nombre SEP": "BENIARRES", "Otro nombr": "---", "Fecha": "01\/04\/1958", "Anyo": 1958, "Rio": "SERPIS", "Municipio": "BENIARRES", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 729605, "y": 4299796, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -39765.446013946865, 4695144.4380764104 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5180023, "Nombre": "BERMEJALES, LOS", "Nombre SEP": "BERMEJALES, LOS", "Otro nombr": "---", "Fecha": "01\/01\/1958", "Anyo": 1958, "Rio": "CACIN", "Municipio": "ARENAS DEL REY", "Cuenca": "GUADALQUIVIR", "Provincia": "GRANADA", "x": 420700, "y": 4095050, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -433184.86890992883, 4438561.5656813271 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170002, "Nombre": "BOADELLA", "Nombre SEP": "BOADELLA (ELS FANGOTS)", "Otro nombr": "---", "Fecha": "16\/12\/1969", "Anyo": 1969, "Rio": "MUGA", "Municipio": "DARNIUS", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 981015, "y": 4704322, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 315352.61439755844, 5212217.4055759311 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230002, "Nombre": "BOLERA, LA", "Nombre SEP": "BOLERA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "GUADALETIN", "Municipio": "POZO ALCON", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 508658, "y": 4179650, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -323015.8264885674, 4546158.8880909989 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100091, "Nombre": "BORBOLLON", "Nombre SEP": "BORBOLLON", "Otro nombr": "---", "Fecha": "10\/05\/1954", "Anyo": 1954, "Rio": "ARRAGO", "Municipio": "SANTIBA?EZ EL ALTO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 194910, "y": 4447965, "Tipos": "Hidroel?ctrico, Riego, Adecuaci?n ambiental" }, "geometry": { "type": "Point", "coordinates": [ -732152.55714522279, 4884199.0585467434 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100088, "Nombre": "BORBOLLON (DERIVACION) - ARRAGO (CONTRAEMBALSE)", "Nombre SEP": "BORBOLLON (DERIVACION) - ARRAGO", "Otro nombr": "---", "Fecha": "01\/01\/1954", "Anyo": 1954, "Rio": "ARRAGO", "Municipio": "SANTIBA?EZ EL ALTO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 193368, "y": 4446703, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -734116.88857077446, 4882415.5382065782 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110061, "Nombre": "BORNOS", "Nombre SEP": "BORNOS", "Otro nombr": "---", "Fecha": "01\/01\/1961", "Anyo": 1961, "Rio": "GUADALETE", "Municipio": "BORNOS", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 253744, "y": 4075482, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -641137.49318580865, 4410072.4710638514 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100094, "Nombre": "BOYERIL 2, EL", "Nombre SEP": "BOYERIL 2, EL", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "ARROYO MANCO", "Municipio": "CASATEJADA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 274235, "y": 4419290, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -627909.3839643664, 4850497.8697843924 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060047, "Nombre": "BROVALES", "Nombre SEP": "BROVALES", "Otro nombr": "---", "Fecha": "01\/01\/1960", "Anyo": 1960, "Rio": "BROVALES", "Municipio": "JEREZ DE LOS CABALLEROS", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 176798, "y": 4251307, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -745381.26948933478, 4628495.1158975344 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220016, "Nombre": "BUBAL", "Nombre SEP": "BUBAL", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "GALLEGO", "Municipio": "HOZ DE JACA, BIESCAS", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 720079, "y": 4729203, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -34924.838229201756, 5263968.52028271 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190007, "Nombre": "BUENDIA", "Nombre SEP": "BUENDIA", "Otro nombr": "---", "Fecha": "31\/12\/1958", "Anyo": 1958, "Rio": "GUADIELA", "Municipio": "BUENDIA", "Cuenca": "TAJO", "Provincia": "CUENCA", "x": 518481, "y": 4472261, "Tipos": "Hidroel?ctrico, Abastecimiento, Riego" }, "geometry": { "type": "Point", "coordinates": [ -309805.73503945739, 4924090.120097734 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2420008, "Nombre": "CAMPILLO DE BUITRAGO", "Nombre SEP": "CAMPILLO DE BUITRAGO", "Otro nombr": "---", "Fecha": "30\/09\/1969", "Anyo": 1969, "Rio": "DUERO", "Municipio": "SORIA Y GARRAY", "Cuenca": "DUERO", "Provincia": "SORIA", "x": 539483, "y": 4631600, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -281212.74458262831, 5136063.1966977548 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410016, "Nombre": "CANTILLANA", "Nombre SEP": "CANTILLANA", "Otro nombr": "---", "Fecha": "31\/12\/1956", "Anyo": 1956, "Rio": "GUADALQUIVIR", "Municipio": "CANTILLANA", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 252655, "y": 4164393, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -646917.46905669302, 4522028.1297203898 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450033, "Nombre": "CASTREJON", "Nombre SEP": "CASTREJON", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "TAJO", "Municipio": "PUEBLA DE MONTALBAN, LA Y POL?N", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 389280, "y": 4410440, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -478006.23627566459, 4842248.3894681772 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450014, "Nombre": "CASTREJON \/ CA?ARES", "Nombre SEP": "CASTREJON \/ CAARES", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "ARROYO CA?ARES", "Municipio": "PUEBLA DE MONTALBAN, LA", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 382105, "y": 4411925, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -487362.68527128082, 4843852.0539752869 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450043, "Nombre": "CASTREJON \/ CARPIO, EL", "Nombre SEP": "CASTREJON \/ CARPIO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "ARROYO EL CARPIO", "Municipio": "CARPIO DE TAJO", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 376065, "y": 4413100, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -495440.76167261344, 4845168.0130154938 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450047, "Nombre": "CAZALEGAS", "Nombre SEP": "CAZALEGAS", "Otro nombr": "---", "Fecha": "31\/12\/1949", "Anyo": 1949, "Rio": "ALBERCHE", "Municipio": "CAZALEGAS", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 354505, "y": 4430825, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -523738.6472318513, 4868136.5450137332 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110019, "Nombre": "CELEMIN (ALIVIADERO) (DIQUE DEL COLLADO)", "Nombre SEP": "CELEMIN", "Otro nombr": "---", "Fecha": "01\/01\/1974", "Anyo": 1974, "Rio": "CELEMIN", "Municipio": "MEDINA-SIDONIA", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 251076, "y": 4021595, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -642813.70105621265, 4342003.3116217609 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 7020010, "Nombre": "CENAJO, EL", "Nombre SEP": "CENAJO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1960", "Anyo": 1960, "Rio": "SEGURA", "Municipio": "MORATALLA Y HELLIN", "Cuenca": "SEGURA", "Provincia": "MURCIA", "x": 607142, "y": 4247250, "Tipos": "Defensa frente a avenidas, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -197808.6898914137, 4631125.8731792942 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2490003, "Nombre": "CERNADILLA", "Nombre SEP": "CERNADILLA", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "TERA", "Municipio": "CERNADILLA- MANZANAL DE ARRIBA", "Cuenca": "DUERO", "Provincia": "ZAMORA", "x": 213312, "y": 4657994, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -719074.85544899432, 5163915.2938993154 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450040, "Nombre": "CERQUILLA, LA", "Nombre SEP": "CERQUILLA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "JULIAN (ARROYO DE SAN JULIAN)", "Municipio": "CALZADA DE OROPESA, LA", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 307907, "y": 4429641, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -584442.09870345145, 4865233.6904008295 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4100015, "Nombre": "CIJARA", "Nombre SEP": "CIJARA", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "GUADIANA", "Municipio": "ALIA Y HERRERA DEL DUQUE", "Cuenca": "GUADIANA", "Provincia": "CACERES", "x": 326475, "y": 4360367, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -558217.09141591121, 4775581.1788703138 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9430006, "Nombre": "CIURANA", "Nombre SEP": "CIURANA", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "CIURANA", "Municipio": "CORNUDELLA DE MONTSANT", "Cuenca": "EBRO", "Provincia": "TARRAGONA", "x": 828373, "y": 4574080, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 102303.9156583204, 5049498.7666226942 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170006, "Nombre": "COLOMERS (AZUD)", "Nombre SEP": "COLOMERS", "Otro nombr": "---", "Fecha": "01\/12\/1967", "Anyo": 1967, "Rio": "TER", "Municipio": "COLOMERS", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 996004, "y": 4675791, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ 333431.02242974355, 5172577.0544423079 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140036, "Nombre": "CORDOBILLA", "Nombre SEP": "CORDOBILLA", "Otro nombr": "---", "Fecha": "01\/01\/1953", "Anyo": 1953, "Rio": "GENIL", "Municipio": "PUENTE GENIL", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 347701, "y": 4135123, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -525376.51766784186, 4488050.7801426556 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100064, "Nombre": "CORONO, EL", "Nombre SEP": "CORONO, EL", "Otro nombr": "---", "Fecha": "01\/01\/1971", "Anyo": 1971, "Rio": "ARROYO GODINO", "Municipio": "PASARON DE LA VERA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 260734, "y": 4435578, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -646256.95735504618, 4871190.6973002842 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5180012, "Nombre": "CUBILLAS", "Nombre SEP": "CUBILLAS", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "CUBILLAS", "Municipio": "ALBOLOTE, CHAPARRAL", "Cuenca": "GUADALQUIVIR", "Provincia": "GRANADA", "x": 439470, "y": 4126405, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -409893.0452040729, 4477523.7598916143 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2420001, "Nombre": "CUERDA DEL POZO", "Nombre SEP": "CUERDA DEL POZO", "Otro nombr": "---", "Fecha": "31\/12\/1941", "Anyo": 1941, "Rio": "DUERO", "Municipio": "VINUESA", "Cuenca": "DUERO", "Provincia": "SORIA", "x": 524663, "y": 4636207, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -301020.21881632705, 5142364.0030476386 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9390001, "Nombre": "EBRO", "Nombre SEP": "EBRO", "Otro nombr": "---", "Fecha": "31\/12\/1945", "Anyo": 1945, "Rio": "EBRO", "Municipio": "ROZAS DE VALDEARROLLO, LAS", "Cuenca": "EBRO", "Provincia": "CANTABRIA", "x": 414326, "y": 4758227, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -450913.36425218522, 5307691.878881474 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280052, "Nombre": "ENCINILLA, LA", "Nombre SEP": "ENCINILLA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "ENCINILLA (ARROYO ENCINILLA)", "Municipio": "GUADARRAMA", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 406098, "y": 4503397, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -457645.50698084763, 4964685.1125429897 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190016, "Nombre": "ENTREPE?AS", "Nombre SEP": "ENTREPEAS", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "TAJO", "Municipio": "SACEDON, AU?ON", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 521162, "y": 4482457, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ -306124.10173054575, 4937790.9777075518 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410014, "Nombre": "ESPARRAGAL, EL", "Nombre SEP": "ESPARRAGAL, EL", "Otro nombr": "---", "Fecha": "31\/12\/1970", "Anyo": 1970, "Rio": "ENCARNACION", "Municipio": "GERENA", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 224955, "y": 4160665, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -680549.51889496855, 4516327.0188128809 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190026, "Nombre": "ESTREMERA", "Nombre SEP": "ESTREMERA", "Otro nombr": "---", "Fecha": "01\/01\/1950", "Anyo": 1950, "Rio": "TAJO", "Municipio": "DRIEBES, LEGANIEL", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 499510, "y": 4450630, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -334599.4232452375, 4895933.9445717055 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9430007, "Nombre": "FLIX", "Nombre SEP": "FLIX", "Otro nombr": "---", "Fecha": "31\/12\/1948", "Anyo": 1948, "Rio": "EBRO", "Municipio": "FLIX", "Cuenca": "EBRO", "Provincia": "TARRAGONA", "x": 797742, "y": 4570937, "Tipos": "Hidroel?ctrico, Regulaci?n, Riego" }, "geometry": { "type": "Point", "coordinates": [ 60856.78101521705, 5046656.0881373873 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8460004, "Nombre": "FORATA", "Nombre SEP": "FORATA", "Otro nombr": "---", "Fecha": "01\/01\/1969", "Anyo": 1969, "Rio": "MAGRO", "Municipio": "YATOVA", "Cuenca": "JUCAR", "Provincia": "VALENCIA", "x": 684213, "y": 4356914, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -96431.620766189662, 4770500.1560625369 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1240021, "Nombre": "FUENTE DEL AZUFRE (CONTRAEMBALSE)", "Nombre SEP": "FUENTE DEL AZUFRE", "Otro nombr": "---", "Fecha": "31\/12\/1949", "Anyo": 1949, "Rio": "SIL", "Municipio": "PONFERRADA", "Cuenca": "MI?O-SIL", "Provincia": "LEON", "x": 205737, "y": 4718533, "Tipos": "Hidroel?ctrico, Riego, Riego" }, "geometry": { "type": "Point", "coordinates": [ -732726.72168594215, 5245724.8484157799 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100073, "Nombre": "GABRIEL Y GALAN", "Nombre SEP": "GABRIEL Y GALAN", "Otro nombr": "---", "Fecha": "01\/01\/1961", "Anyo": 1961, "Rio": "ALAGON", "Municipio": "GUIJO DE GRANADILLA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 233284, "y": 4457169, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -682894.91127161181, 4898331.0216711974 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060063, "Nombre": "GARCIA DE SOLA", "Nombre SEP": "GARCIA DE SOLA", "Otro nombr": "PUERTO PE?A", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "GUADIANA", "Municipio": "TALARRUBIAS", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 311314, "y": 4335259, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -577015.51561839797, 4742619.6062430153 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9260028, "Nombre": "GONZALEZ LACASA", "Nombre SEP": "GONZALEZ LACASA", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "ALBERCOS", "Municipio": "ORTIGOSA DE CAMEROS", "Cuenca": "EBRO", "Provincia": "LOGRO?O", "x": 527302, "y": 4669311, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -297530.4353318857, 5187093.9145148005 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220078, "Nombre": "GRADO I, EL", "Nombre SEP": "GRADO I, EL", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "CINCA", "Municipio": "GRADO, EL", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 767725, "y": 4671815, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ 26429.416062667242, 5183690.4875823855 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230049, "Nombre": "GUADALEN", "Nombre SEP": "GUADALEN", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "GUADALEN", "Municipio": "ARQUILLOS, VILCHES", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 458265, "y": 4224145, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -387162.51006146957, 4602331.0387602216 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030092, "Nombre": "GUADALEST", "Nombre SEP": "GUADALEST", "Otro nombr": "---", "Fecha": "27\/11\/1969", "Anyo": 1969, "Rio": "GUADALEST", "Municipio": "GUADALEST", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 744422, "y": 4285116, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -21391.829428516612, 4675941.6725708218 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6290030, "Nombre": "GUADALHORCE", "Nombre SEP": "GUADALHORCE", "Otro nombr": "---", "Fecha": "31\/12\/1973", "Anyo": 1973, "Rio": "GUADALHORCE", "Municipio": "CAMPILLOS", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "MALAGA", "x": 339635, "y": 4090040, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -534503.9666112978, 4431057.713057573 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230047, "Nombre": "GUADALMENA", "Nombre SEP": "GUADALMENA", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "GUADALMENA", "Municipio": "CHICLANA DE SEGURA", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 507600, "y": 4246350, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ -324274.08875885158, 4631158.916186464 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6290030, "Nombre": "GUADALHORCE", "Nombre SEP": "GUADALTEBA", "Otro nombr": "---", "Fecha": "31\/12\/1973", "Anyo": 1973, "Rio": "GUADALHORCE", "Municipio": "CAMPILLOS", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "MALAGA", "x": 339635, "y": 4090040, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -534433.7321222371, 4431452.8598586554 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140033, "Nombre": "GUADANU?O", "Nombre SEP": "GUADANUO", "Otro nombr": "CERRO MURIANO", "Fecha": "01\/01\/1967", "Anyo": 1967, "Rio": "GUADANU?O", "Municipio": "CORDOBA Y VILLAVICIOSA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 342050, "y": 4209965, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -534266.88012414635, 4582349.0671939701 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6110005, "Nombre": "GUADARRANQUE", "Nombre SEP": "GUADARRANQUE", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "GUADARRANQUE", "Municipio": "LOS BARRIOS Y CASTELLAR", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "CADIZ", "x": 279075, "y": 4021000, "Tipos": "Abastecimiento, Riego, Industrial" }, "geometry": { "type": "Point", "coordinates": [ -608091.87396073679, 4343093.4291578457 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100138, "Nombre": "HELECHAL", "Nombre SEP": "HELECHAL", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "ARROYO HELECHAL", "Municipio": "ALCANTARA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 166075, "y": 4418651, "Tipos": "Acuicultura, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -768188.20539960766, 4844183.3908600109 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3050008, "Nombre": "HINCHONA, LA", "Nombre SEP": "HINCHONA, LA", "Otro nombr": "---", "Fecha": "01\/01\/1946", "Anyo": 1946, "Rio": "YEDRA", "Municipio": "TIEMBLO, EL", "Cuenca": "TAJO", "Provincia": "AVILA", "x": 372108, "y": 4471728, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -501920.85628835135, 4921708.9598028511 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110015, "Nombre": "HURONES, LOS", "Nombre SEP": "HURONES, LOS", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "MAJACEITE", "Municipio": "ALGAR", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 271131, "y": 4060369, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -619135.98529637756, 4392049.7134861946 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030028, "Nombre": "ISBERT", "Nombre SEP": "ISBERT", "Otro nombr": "---", "Fecha": "01\/01\/1945", "Anyo": 1945, "Rio": "GIRONA", "Municipio": "ORBA", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 751659, "y": 4297224, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -11424.839589330115, 4691330.3101194873 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140028, "Nombre": "IZNAJAR", "Nombre SEP": "IZNAJAR", "Otro nombr": "---", "Fecha": "01\/01\/1969", "Anyo": 1969, "Rio": "GENIL", "Municipio": "RUTE, CUEVAS SAN MARCOS", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 377250, "y": 4126550, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -488090.92943531112, 4477850.6934254467 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100102, "Nombre": "JARILLA, LA (TAJO)", "Nombre SEP": "JARILLA, LA (TAJO)", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "CAVERA", "Municipio": "JARILLA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 242520, "y": 4451720, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -670648.59517512086, 4891314.4710969906 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140001, "Nombre": "MALPASILLO JAUJA (AZUD)", "Nombre SEP": "JAUJA", "Otro nombr": "MALPASILLO JAUJA", "Fecha": "31\/12\/1951", "Anyo": 1951, "Rio": "GENIL", "Municipio": "LUCENA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 352650, "y": 4129600, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ -519036.64325316355, 4481196.3469124362 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240007, "Nombre": "JUAN BENET (PORMA)", "Nombre SEP": "JUAN BENET (PORMA)", "Otro nombr": "---", "Fecha": "30\/04\/1968", "Anyo": 1968, "Rio": "PORMA", "Municipio": "BO?AR", "Cuenca": "DUERO", "Provincia": "LEON", "x": 313090, "y": 4755710, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -589199.05069585878, 5301212.4851218145 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2400015, "Nombre": "LINARES DEL ARROYO", "Nombre SEP": "LINARES DEL ARROYO", "Otro nombr": "---", "Fecha": "30\/04\/1953", "Anyo": 1953, "Rio": "RIAZA", "Municipio": "MADERUELO", "Cuenca": "DUERO", "Provincia": "SEGOVIA", "x": 453728, "y": 4597664, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -395702.02402239747, 5090727.456081165 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8460013, "Nombre": "LORIGUILLA", "Nombre SEP": "LORIGUILLA", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "TURIA", "Municipio": "LORIGUILLA Y CHULILLA", "Cuenca": "JUCAR", "Provincia": "VALENCIA", "x": 679189, "y": 4392798, "Tipos": "Regulaci?n, Riego, Hidroel?ctrico" }, "geometry": { "type": "Point", "coordinates": [ -101695.38021387269, 4817466.3405179353 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9260022, "Nombre": "MANSILLA", "Nombre SEP": "MANSILLA", "Otro nombr": "---", "Fecha": "31\/12\/1960", "Anyo": 1960, "Rio": "NAJERILLA", "Municipio": "MANSILLA DE LA SIERRA, VILLAVELAYO", "Cuenca": "EBRO", "Provincia": "LOGRO?O", "x": 507343, "y": 4667566, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -324147.41761224059, 5184649.2910514465 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230044, "Nombre": "MARMOLEJO (AZUD)", "Nombre SEP": "MARMOLEJO", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "GUADALQUIVIR", "Municipio": "MARMOLEJO", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 396000, "y": 4213200, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -465999.64906136674, 4587665.4350066064 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220054, "Nombre": "MEDIANO", "Nombre SEP": "MEDIANO", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "CINCA", "Municipio": "FUEVA, LA", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 765112, "y": 4689838, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 23334.209830525837, 5207948.4709611284 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500030, "Nombre": "MEQUINENZA", "Nombre SEP": "MEQUINENZA", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "EBRO", "Municipio": "MEQUINENZA", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 774241, "y": 4584997, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ 30315.93954624348, 5066938.2939892011 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230023, "Nombre": "MOLINO DE GUADALEN (CONTRAEMBALSE)", "Nombre SEP": "MOLINO DE GUADALEN", "Otro nombr": "SALTO DEL MOLINO", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "GUADALEN", "Municipio": "VILCHES", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 457163, "y": 4222764, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -388675.16265637917, 4600421.3753140252 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6110011, "Nombre": "MONTE DE LA TORRE (DD-1)", "Nombre SEP": "MONTE DE LA TORRE (DD-1)", "Otro nombr": "DEPOSITO DD-1", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "PRIOR", "Municipio": "BARRIOS, LOS", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "CADIZ", "x": 275972, "y": 4004387, "Tipos": "Regulaci?n, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -611409.43354670005, 4322093.6781518906 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060102, "Nombre": "MONTIJO (AZUD)", "Nombre SEP": "MONTIJO", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "GUADIANA", "Municipio": "MERIDA", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 202510, "y": 4314117, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -715524.2933612956, 4710840.3398842392 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060074, "Nombre": "MOSQUIL, EL", "Nombre SEP": "MOSQUIL, EL", "Otro nombr": "---", "Fecha": "01\/01\/1971", "Anyo": 1971, "Rio": "LABRADOS", "Municipio": "USAGRE", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 228717, "y": 4255260, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -679287.49916135427, 4636688.2617960647 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280058, "Nombre": "NAVALAGAMELLA", "Nombre SEP": "NAVALAGAMELLA", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "CURA", "Municipio": "NAVALAGAMELLA", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 405106, "y": 4472030, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -458427.93908123375, 4923285.9619737342 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500043, "Nombre": "NI?O JESUS", "Nombre SEP": "NIO JESUS", "Otro nombr": "ANI?ON", "Fecha": "09\/05\/1955", "Anyo": 1955, "Rio": "ARROYO DEL FRESNO O JESUS", "Municipio": "ANI?ON", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 608478, "y": 4595385, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -189270.02716632231, 5086782.4766429616 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9250050, "Nombre": "OLIANA", "Nombre SEP": "OLIANA", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "SEGRE", "Municipio": "OLIANA Y PERAMOLA", "Cuenca": "EBRO", "Provincia": "LLEIDA", "x": 855649, "y": 4669176, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 144060.98611979769, 5174955.9863532484 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120003, "Nombre": "ONDA", "Nombre SEP": "ONDA", "Otro nombr": "BENITANDUS", "Fecha": "01\/01\/1954", "Anyo": 1954, "Rio": "SECO \/ VEO", "Municipio": "ALCUDIA DE VEO", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 728310, "y": 4424455, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -37000.593668484609, 4856574.7525021126 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060095, "Nombre": "ORELLANA", "Nombre SEP": "ORELLANA", "Otro nombr": "---", "Fecha": "01\/01\/1963", "Anyo": 1963, "Rio": "GUADIANA", "Municipio": "ORELLANA LA VIEJA, CAMPANARIO", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 280423, "y": 4318386, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -616168.17444885348, 4719802.777117162 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190028, "Nombre": "PALMACES", "Nombre SEP": "PALMACES", "Otro nombr": "---", "Fecha": "01\/01\/1954", "Anyo": 1954, "Rio": "CA?AMARES", "Municipio": "PALMACES DE JADRAQUE", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 505170, "y": 4544655, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -327109.79358722223, 5020179.0332207689 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170013, "Nombre": "PASTERAL I (AZUD)", "Nombre SEP": "PASTERAL, EL", "Otro nombr": "---", "Fecha": "01\/01\/1962", "Anyo": 1962, "Rio": "TER", "Municipio": "OSOR", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 965397, "y": 4663877, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 290737.73833059083, 5159018.6059517702 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060004, "Nombre": "PASTIZALES, LOS", "Nombre SEP": "PASTIZALES, LOS", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "VALDELARQUILLO (VALDESEQUILLOS)", "Municipio": "HELECHOSA DE LOS MONTES", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 352216, "y": 4363403, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -525039.96420558298, 4780209.8001049105 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230018, "Nombre": "PEDRO MARIN", "Nombre SEP": "PEDRO MARIN", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "GUADALQUIVIR", "Municipio": "JODAR", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 463739, "y": 4196379, "Tipos": "Hidroel?ctrico, Riego, Industrial" }, "geometry": { "type": "Point", "coordinates": [ -379866.02470895607, 4566543.0736621758 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4130018, "Nombre": "PE?ARROYA", "Nombre SEP": "PEARROYA", "Otro nombr": "---", "Fecha": "01\/01\/1959", "Anyo": 1959, "Rio": "GUADIANA", "Municipio": "ARGAMASILLA DE ALBA", "Cuenca": "GUADIANA", "Provincia": "CIUDAD REAL", "x": 499519, "y": 4323754, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -334672.09474944236, 4730280.2395459311 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280055, "Nombre": "PE?ASCALES, LOS", "Nombre SEP": "PEASCALES, LOS", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "ARROYO TROFAS", "Municipio": "TORRELODONES", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 424055, "y": 4492013, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -434058.37932382338, 4949618.2611223059 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280063, "Nombre": "PICADAS", "Nombre SEP": "PICADAS", "Otro nombr": "---", "Fecha": "31\/12\/1952", "Anyo": 1952, "Rio": "ALBERCHE", "Municipio": "SAN MARTIN DE VALDEIGLESIAS", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 393940, "y": 4465690, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -472953.5423554685, 4914746.1711214399 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060031, "Nombre": "PIEDRA AGUDA", "Nombre SEP": "PIEDRA AGUDA", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "OLIVENZA", "Municipio": "OLIVENZA", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 149904, "y": 4289973, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -781699.68173600954, 4676885.1703130435 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4210092, "Nombre": "PIEDRAS", "Nombre SEP": "PIEDRAS", "Otro nombr": "---", "Fecha": "31\/12\/1968", "Anyo": 1968, "Rio": "PIEDRAS", "Municipio": "CARTAYA, LEPE", "Cuenca": "TINTO, ODIEL Y PIEDRAS", "Provincia": "HUELVA", "x": 122023, "y": 4144432, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -809045.65777934925, 4490755.5397824543 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410106, "Nombre": "PINTADO, EL", "Nombre SEP": "PINTADO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1948", "Anyo": 1948, "Rio": "VIAR", "Municipio": "CAZALLA SIERRA,GUADALCANAL,REAL DE JARA,REINA FTE ARCO", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 240667, "y": 4208399, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -662673.29795022449, 4577476.5614699246 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140004, "Nombre": "PUENTE NUEVO", "Nombre SEP": "PUENTE NUEVO", "Otro nombr": "---", "Fecha": "01\/01\/1972", "Anyo": 1972, "Rio": "GUADIATO", "Municipio": "VILLAVICIOSA DE CORDOBA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 331056, "y": 4217469, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -548295.59345960198, 4591629.013343011 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120004, "Nombre": "REGAJO, EL", "Nombre SEP": "REGAJO, EL", "Otro nombr": "---", "Fecha": "31\/10\/1959", "Anyo": 1959, "Rio": "PALANCIA", "Municipio": "JERICA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 711756, "y": 4418669, "Tipos": "Riego, Regulaci?n, ---" }, "geometry": { "type": "Point", "coordinates": [ -58372.806097832487, 4850003.0260286294 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2340005, "Nombre": "REQUEJADA", "Nombre SEP": "REQUEJADA", "Otro nombr": "---", "Fecha": "01\/08\/1935", "Anyo": 1935, "Rio": "PISUERGA", "Municipio": "ARBEJAL", "Cuenca": "DUERO", "Provincia": "PALENCIA", "x": 375507, "y": 4751818, "Tipos": "Abastecimiento, Riego, Defensa frente a avenidas" }, "geometry": { "type": "Point", "coordinates": [ -504174.86179096409, 5297751.2289351206 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140048, "Nombre": "RETORTILLO", "Nombre SEP": "RETORTILLO", "Otro nombr": "---", "Fecha": "01\/01\/1970", "Anyo": 1970, "Rio": "RETORTILLO", "Municipio": "HORNACHUELOS, PUEBLA DE INFANTES", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 293165, "y": 4191105, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -595635.63814753981, 4557404.4493827596 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280015, "Nombre": "REY, DEL", "Nombre SEP": "REY, DEL", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "JARAMA", "Municipio": "RIVAS-VACIAMADRID", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 453964, "y": 4461241, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -394259.98080362269, 4909693.0080879331 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9430003, "Nombre": "RIBARROJA", "Nombre SEP": "RIBARROJA", "Otro nombr": "RIBA ROJA", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "EBRO", "Municipio": "RIBA-ROJA D??EBRE", "Cuenca": "EBRO", "Provincia": "TARRAGONA", "x": 788146, "y": 4571794, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 48134.798927180738, 5048437.0594084952 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1270013, "Nombre": "RIBASALTAS (AZUD)", "Nombre SEP": "RIBASALTAS (AZUD)", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "CABE", "Municipio": "MONFORTE DE LEMOS", "Cuenca": "MI?O-SIL", "Provincia": "LUGO", "x": 132034, "y": 4721564, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -832906.15994665027, 5245051.953450202 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450011, "Nombre": "ROSARITO", "Nombre SEP": "ROSARITO", "Otro nombr": "---", "Fecha": "31\/12\/1958", "Anyo": 1958, "Rio": "TIETAR", "Municipio": "OROPESA, CANDELEDA", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 302082, "y": 4442874, "Tipos": "Riego, Hidroel?ctrico, ---" }, "geometry": { "type": "Point", "coordinates": [ -592588.88983732462, 4881908.8593409434 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230022, "Nombre": "RUMBLAR", "Nombre SEP": "RUMBLAR", "Otro nombr": "---", "Fecha": "31\/12\/1941", "Anyo": 1941, "Rio": "RUMBLAR", "Municipio": "BA?OS DE LA ENCINA", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 429670, "y": 4224281, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -423583.81301349844, 4602186.279494036 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100074, "Nombre": "SALOR", "Nombre SEP": "SALOR", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "SALOR", "Municipio": "CACERES", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 214873, "y": 4362570, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -701786.22799932375, 4773920.9372722404 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2470004, "Nombre": "SAN JOSE", "Nombre SEP": "SAN JOSE", "Otro nombr": "---", "Fecha": "17\/11\/1945", "Anyo": 1945, "Rio": "DUERO", "Municipio": "CASTRONU?O", "Cuenca": "DUERO", "Provincia": "VALLADOLID", "x": 310093, "y": 4586292, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -586979.77371246391, 5072018.7969646007 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280027, "Nombre": "SAN JUAN (DIQUE DEL COLLADO)", "Nombre SEP": "SAN JUAN", "Otro nombr": "---", "Fecha": "31\/12\/1955", "Anyo": 1955, "Rio": "ALBERCHE", "Municipio": "SAN MARTIN DE VALDEIGLESIAS", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 388451, "y": 4469946, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -480228.12459294806, 4920241.2606669851 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10250001, "Nombre": "SANT PONC (SAN PONS)", "Nombre SEP": "SAN PONS", "Otro nombr": "---", "Fecha": "19\/12\/1957", "Anyo": 1957, "Rio": "EL CARDENER", "Municipio": "CLARIANA DE CARDENER", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "LLEIDA", "x": 882025, "y": 4656011, "Tipos": "Riego, Abastecimiento, Hidroel?ctrico" }, "geometry": { "type": "Point", "coordinates": [ 178659.84585822895, 5155475.7562987823 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220076, "Nombre": "SANTA ANA", "Nombre SEP": "SANTA ANA", "Otro nombr": "---", "Fecha": "31\/12\/1961", "Anyo": 1961, "Rio": "NOGUERA RIBAGORZANA", "Municipio": "CASTILLONROY", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 797530, "y": 4643159, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 65216.600354974311, 5143675.2454683743 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2370010, "Nombre": "SANTA TERESA", "Nombre SEP": "SANTA TERESA", "Otro nombr": "---", "Fecha": "28\/02\/1961", "Anyo": 1961, "Rio": "TORMES", "Municipio": "MONTEJO DE SALVATIERRA Y PELAYOS", "Cuenca": "DUERO", "Provincia": "SALAMANCA", "x": 280203, "y": 4505246, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ -623553.76973375434, 4963278.6786912419 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 7300019, "Nombre": "SANTOMERA (DIQUE DEL COLLADO)", "Nombre SEP": "SANTOMERA", "Otro nombr": "---", "Fecha": "31\/12\/1965", "Anyo": 1965, "Rio": "SALADA", "Municipio": "SANTOMERA", "Cuenca": "SEGURA", "Provincia": "MURCIA", "x": 667635, "y": 4218190, "Tipos": "Defensa frente a avenidas, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -121251.78571056058, 4592772.3413155144 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10080007, "Nombre": "SAU", "Nombre SEP": "SAU", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "TER", "Municipio": "VILANOVA DE SAU", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "BARCELONA", "x": 948914, "y": 4660480, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 268597.65232350584, 5156192.4054449247 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240018, "Nombre": "SELGA DE ORDAS", "Nombre SEP": "SELGA DE ORDAS", "Otro nombr": "---", "Fecha": "31\/12\/1961", "Anyo": 1961, "Rio": "LUNA", "Municipio": "RIOSECO DE TAPIA, STA. MARIA ORDAS", "Cuenca": "DUERO", "Provincia": "LEON", "x": 271923, "y": 4737491, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -644223.47972674761, 5274697.3392834989 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120002, "Nombre": "SICHAR", "Nombre SEP": "SICHAR", "Otro nombr": "---", "Fecha": "30\/04\/1960", "Anyo": 1960, "Rio": "MIJARES", "Municipio": "ONDA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 736439, "y": 4432744, "Tipos": "Regulaci?n, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -25581.033891472169, 4867657.9213901889 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100056, "Nombre": "SOLANA, LA", "Nombre SEP": "SOLANA, LA", "Otro nombr": "---", "Fecha": "01\/01\/1955", "Anyo": 1955, "Rio": "ARROYO CABRIOSO", "Municipio": "HERRERA DE ALCANTARA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 121529, "y": 4390838, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -824066.30814241793, 4805457.2145409361 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220034, "Nombre": "SOTONERA, LA (DIQUE DEL COLLADO 1) (ASTON Y VACAS)", "Nombre SEP": "SOTONERA, LA (DIQUE DEL COLLADO 1)", "Otro nombr": "---", "Fecha": "01\/01\/1963", "Anyo": 1963, "Rio": "ASTON-VACAS", "Municipio": "ALCALA DE GURREA", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 692200, "y": 4664000, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -75195.659376856405, 5176654.4313384779 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170012, "Nombre": "SUSQUEDA", "Nombre SEP": "SUSQUEDA", "Otro nombr": "---", "Fecha": "01\/01\/1967", "Anyo": 1967, "Rio": "TER", "Municipio": "OSOR", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 958440, "y": 4663004, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ 281151.81822818355, 5157710.6570046572 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500034, "Nombre": "TORCAS, LAS", "Nombre SEP": "TORCAS, LAS", "Otro nombr": "---", "Fecha": "31\/12\/1946", "Anyo": 1946, "Rio": "HUERVA", "Municipio": "TOSOS", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 660235, "y": 4573209, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -120920.59490490166, 5055867.8209765125 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410139, "Nombre": "TORRE DEL AGUILA", "Nombre SEP": "TORRE DEL AGUILA", "Otro nombr": "---", "Fecha": "31\/12\/1947", "Anyo": 1947, "Rio": "SALADO DE MORON", "Municipio": "UTRERA", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 254750, "y": 4103343, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -640973.95962666022, 4445004.4825424766 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2400007, "Nombre": "TORRELARA", "Nombre SEP": "TORRELARA", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "MAGDALENA", "Municipio": "MU?OPEDRO", "Cuenca": "DUERO", "Provincia": "SEGOVIA", "x": 371042, "y": 4526981, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -503772.45371718169, 4994900.0744040925 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100128, "Nombre": "TOZO", "Nombre SEP": "TOZO", "Otro nombr": "---", "Fecha": "01\/01\/1962", "Anyo": 1962, "Rio": "TOZO", "Municipio": "TORRECILLAS DE LA TIESA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 258781, "y": 4384708, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -646598.32037862379, 4804830.7488525547 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230005, "Nombre": "TRANCO DE BEAS", "Nombre SEP": "TRANCO DE BEAS", "Otro nombr": "---", "Fecha": "31\/12\/1944", "Anyo": 1944, "Rio": "GUADALQUIVIR", "Municipio": "VILLANUEVA DEL ARZOBISPO", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 518004, "y": 4225445, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -311258.77661929867, 4603888.2991199251 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500008, "Nombre": "TRANQUERA, LA", "Nombre SEP": "TRANQUERA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "PIEDRA", "Municipio": "CARENAS", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 600522, "y": 4568949, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -200367.665027913, 5051613.9084687559 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120011, "Nombre": "ULLDECONA", "Nombre SEP": "ULLDECONA", "Otro nombr": "---", "Fecha": "01\/01\/1967", "Anyo": 1967, "Rio": "CENIA", "Municipio": "PUEBLA DE BENIFASAR, LA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 773861, "y": 4507456, "Tipos": "Riego, Abastecimiento, ---" }, "geometry": { "type": "Point", "coordinates": [ 26015.011102587789, 4963964.7821730794 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9010013, "Nombre": "ULLIVARRI (ULLIBARRI GAMBOA)", "Nombre SEP": "ULLIVARRI", "Otro nombr": "---", "Fecha": "31\/12\/1956", "Anyo": 1956, "Rio": "ZADORRA", "Municipio": "ARRAZUA-UBARRUNDIA", "Cuenca": "EBRO", "Provincia": "ALAVA", "x": 531411, "y": 4753261, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -291287.9931178554, 5301284.8944145124 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220071, "Nombre": "VADIELLO", "Nombre SEP": "VADIELLO", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "GUATIZALEMA", "Municipio": "LOPORZANO", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 724600, "y": 4680350, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -30977.407682089677, 5197217.2175022336 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8440008, "Nombre": "VALBONA", "Nombre SEP": "VALBONA", "Otro nombr": "---", "Fecha": "23\/04\/1959", "Anyo": 1959, "Rio": "RAMBLA DE FUENTE DE MORA", "Municipio": "VALBONA", "Cuenca": "JUCAR", "Provincia": "TERUEL", "x": 685729, "y": 4458355, "Tipos": "Riego, Regulaci?n, ---" }, "geometry": { "type": "Point", "coordinates": [ -90847.978090989738, 4903076.5550548127 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450003, "Nombre": "VALDECABRAS (ARROYO)", "Nombre SEP": "VALDECABRAS (ARROYO)", "Otro nombr": "---", "Fecha": "31\/12\/1965", "Anyo": 1965, "Rio": "VALDECABRAS", "Municipio": "ORGAZ", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 420490, "y": 4393145, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -437128.08691837383, 4819522.4019334214 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100007, "Nombre": "VALDECA?AS", "Nombre SEP": "VALDECAAS", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "TAJO", "Municipio": "BELVIS DE MONROY Y VALDECA?AS DE TAJO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 276345, "y": 4406515, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -624671.47727317782, 4833742.5110198874 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100021, "Nombre": "VALDEOBISPO", "Nombre SEP": "VALDEOBISPO", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "ALAGON", "Municipio": "VALDEOBISPO, MONTEHERMOSO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 222665, "y": 4444086, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -695799.74598382297, 4880480.6024753116 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240032, "Nombre": "VALDESPINA", "Nombre SEP": "VALDESPINA", "Otro nombr": "EMBALSE DE BARRIO", "Fecha": "01\/01\/1940", "Anyo": 1940, "Rio": "ARROYO VALDESPINA", "Municipio": "SANTA COLOMBA DE CURUE?O", "Cuenca": "DUERO", "Provincia": "LEON", "x": 302950, "y": 4731030, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -601800.43792463816, 5267404.3085240843 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060067, "Nombre": "VALUENGO", "Nombre SEP": "VALUENGO", "Otro nombr": "---", "Fecha": "01\/01\/1959", "Anyo": 1959, "Rio": "ARDILA", "Municipio": "JEREZ DE LOS CABALLEROS", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 178405, "y": 4245838, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -743157.03256633121, 4622192.5814449983 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2400023, "Nombre": "VENCIAS, LAS", "Nombre SEP": "VENCIAS, LAS", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "DURAT??N", "Municipio": "FUENTIDUE?A", "Cuenca": "DUERO", "Provincia": "SEGOVIA", "x": 419459, "y": 4586898, "Tipos": "Hidroel?ctrico, Regulaci?n, Riego" }, "geometry": { "type": "Point", "coordinates": [ -441264.26452537498, 5075917.1054349942 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4130068, "Nombre": "VICARIO, EL", "Nombre SEP": "VICARIO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1973", "Anyo": 1973, "Rio": "GUADIANA", "Municipio": "CIUDAD REAL", "Cuenca": "GUADIANA", "Provincia": "CIUDAD REAL", "x": 413850, "y": 4324000, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -444803.89044950384, 4730390.3235831689 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100052, "Nombre": "VID III, LA", "Nombre SEP": "VID III, LA", "Otro nombr": "---", "Fecha": "01\/01\/1959", "Anyo": 1959, "Rio": "VID", "Municipio": "TORREJON EL RUBIO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 247090, "y": 4406926, "Tipos": "Riego, ---, ---" }, "geometry": { "type": "Point", "coordinates": [ -662583.20931044116, 4833327.2702054884 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1270004, "Nombre": "VILASOUTO", "Nombre SEP": "VILASOUTO", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "MAO", "Municipio": "INCIO, O", "Cuenca": "MI?O-SIL", "Provincia": "LUGO", "x": 137205, "y": 4732933, "Tipos": "Riego, Abastecimiento, ---" }, "geometry": { "type": "Point", "coordinates": [ -826074.5526081617, 5260626.5338076167 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140050, "Nombre": "VILLAFRANCA", "Nombre SEP": "VILLAFRANCA", "Otro nombr": "---", "Fecha": "01\/01\/1948", "Anyo": 1948, "Rio": "GUADALQUIVIR", "Municipio": "VILLAFRANCA DE CORDOBA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 359660, "y": 4202300, "Tipos": "Hidroel?ctrico, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -514916.91309264558, 4573199.7485070731 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2370033, "Nombre": "VILLAGONZALO (AZUD)", "Nombre SEP": "VILLAGONZALO", "Otro nombr": "---", "Fecha": "14\/02\/1960", "Anyo": 1960, "Rio": "TORMES", "Municipio": "VILLAGONZALO DE TORMES Y GARIHERNANDEZ", "Cuenca": "DUERO", "Provincia": "SALAMANCA", "x": 289812, "y": 4527892, "Tipos": "Riego, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -611800.49438588368, 4993603.6957664667 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240006, "Nombre": "VILLAMECA", "Nombre SEP": "VILLAMECA", "Otro nombr": "---", "Fecha": "31\/12\/1947", "Anyo": 1947, "Rio": "TUERTO-VALLE (TUERTO)", "Municipio": "QUINTANA DEL CASTILLO", "Cuenca": "DUERO", "Provincia": "LEON", "x": 247863, "y": 4726637, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento" }, "geometry": { "type": "Point", "coordinates": [ -675485.41232250223, 5258510.852191506 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9310007, "Nombre": "YESA", "Nombre SEP": "YESA", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "ARAGON", "Municipio": "YESA", "Cuenca": "EBRO", "Provincia": "NAVARRA", "x": 648990, "y": 4719190, "Tipos": "Abastecimiento, Riego, ---" }, "geometry": { "type": "Point", "coordinates": [ -131631.9438134947, 5253559.8000125 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230007, "Nombre": "ZOCUECA (AZUD)", "Nombre SEP": "ZOCUECA", "Otro nombr": "---", "Fecha": "31\/12\/1940", "Anyo": 1940, "Rio": "RUMBLAR", "Municipio": "GUARROM?N", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 427175, "y": 4217080, "Tipos": "Riego, Abastecimiento, ---" }, "geometry": { "type": "Point", "coordinates": [ -426454.8808934071, 4592965.6606910145 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060070, "Nombre": "ZUJAR (DIQUE DEL COLLADO)", "Nombre SEP": "ZUJAR", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "ZUJAR", "Municipio": "CASTUERA, ESPARRAGOSA DE LARES", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 285155, "y": 4310665, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego" }, "geometry": { "type": "Point", "coordinates": [ -609822.0064248963, 4710020.4604194378 ] } }
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,153 +0,0 @@
|
||||||
{
|
|
||||||
"type": "FeatureCollection",
|
|
||||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
|
|
||||||
"features": [
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2340004, "Nombre": "AGUILAR DE CAMPOO", "Nombre SEP": "AGUILAR DE CAMPOO", "Otro nombr": "---", "Fecha": "02\/09\/1964", "Anyo": 1964, "Rio": "PISUERGA", "Municipio": "AGUILAR DE CAMPOO", "Cuenca": "DUERO", "Provincia": "PALENCIA", "x": 394705, "y": 4739000, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento", "time": 1964 }, "geometry": { "type": "Point", "coordinates": [ -4.287577335380306, 42.796313181874652 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8160006, "Nombre": "ALARCON", "Nombre SEP": "ALARCON", "Otro nombr": "---", "Fecha": "30\/09\/1955", "Anyo": 1955, "Rio": "JUCAR", "Municipio": "ALARCON", "Cuenca": "JUCAR", "Provincia": "CUENCA", "x": 576346, "y": 4379982, "Tipos": "Regulaci?n, Riego, Abastecimiento", "time": 1955 }, "geometry": { "type": "Point", "coordinates": [ -2.111202949771708, 39.566139909051188 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120006, "Nombre": "ALCORA", "Nombre SEP": "ALCORA", "Otro nombr": "---", "Fecha": "29\/09\/1958", "Anyo": 1958, "Rio": "LUCENA", "Municipio": "ALCORA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 737177, "y": 4442329, "Tipos": "Riego, Regulaci?n, ---", "time": 1958 }, "geometry": { "type": "Point", "coordinates": [ -0.217764880706736, 40.097808748237014 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110041, "Nombre": "ALMODOVAR (DIQUE DEL COLLADO) (RECRECIDA)", "Nombre SEP": "ALMODOVAR", "Otro nombr": "---", "Fecha": "01\/01\/1972", "Anyo": 1972, "Rio": "ALMODOVAR", "Municipio": "TARIFA", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 261945, "y": 4004510, "Tipos": "Abastecimiento, Riego, ---", "time": 1972 }, "geometry": { "type": "Point", "coordinates": [ -5.6496094694724, 36.154023079668001 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190001, "Nombre": "ALMOGUERA", "Nombre SEP": "ALMOGUERA", "Otro nombr": "---", "Fecha": "01\/01\/1947", "Anyo": 1947, "Rio": "TAJO", "Municipio": "ALMOGUERA", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 503585, "y": 4460330, "Tipos": "Hidroel?ctrico, Regulaci?n, Riego", "time": 1947 }, "geometry": { "type": "Point", "coordinates": [ -2.958060149695001, 40.274267020018591 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030027, "Nombre": "AMADORIO", "Nombre SEP": "AMADORIO", "Otro nombr": "---", "Fecha": "24\/02\/1960", "Anyo": 1960, "Rio": "AMADORIO", "Municipio": "VILLAJOYOSA", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 738600, "y": 4268800, "Tipos": "Abastecimiento, Riego, ---", "time": 1960 }, "geometry": { "type": "Point", "coordinates": [ -0.264494947243017, 38.534433418899191 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100070, "Nombre": "ARAYA DE ARRIBA (DIQUE DEL COLLADO)", "Nombre SEP": "ARAYA DE ARRIBA", "Otro nombr": "---", "Fecha": "01\/01\/1958", "Anyo": 1958, "Rio": "ANCIANES", "Municipio": "BROZAS", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 184298, "y": 4380608, "Tipos": "Riego, ---, ---", "time": 1958 }, "geometry": { "type": "Point", "coordinates": [ -6.669083094471207, 39.514151344135968 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110031, "Nombre": "ARCOS", "Nombre SEP": "ARCOS", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "GUADALETE", "Municipio": "ARCOS DE LA FRONTERA", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 250520, "y": 4071143, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1965 }, "geometry": { "type": "Point", "coordinates": [ -5.792731267777851, 36.752161775175644 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 7300010, "Nombre": "ARGOS", "Nombre SEP": "ARGOS", "Otro nombr": "---", "Fecha": "01\/12\/1972", "Anyo": 1972, "Rio": "ARGOS", "Municipio": "CEHEGIN", "Cuenca": "SEGURA", "Provincia": "MURCIA", "x": 611000, "y": 4225906, "Tipos": "Defensa frente a avenidas, Riego, ---", "time": 1972 }, "geometry": { "type": "Point", "coordinates": [ -1.734646466736164, 38.172270828043082 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8440007, "Nombre": "ARQUILLO DE SAN BLAS", "Nombre SEP": "ARQUILLO DE SAN BLAS", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "GUADALAVIAR", "Municipio": "TERUEL", "Cuenca": "JUCAR", "Provincia": "TERUEL", "x": 653793, "y": 4469304, "Tipos": "Abastecimiento, Defensa frente a avenidas, Riego", "time": 1962 }, "geometry": { "type": "Point", "coordinates": [ -1.205312792986797, 40.363554533489371 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280039, "Nombre": "ARROYOS, LOS (DIQUE DE COLA)", "Nombre SEP": "ARROYOS, LOS", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "LADRON", "Municipio": "ESCORIAL, EL", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 411261, "y": 4493850, "Tipos": "Riego, ---, ---", "time": 1967 }, "geometry": { "type": "Point", "coordinates": [ -4.049558271959623, 40.589882366078719 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280048, "Nombre": "ATAZAR, EL", "Nombre SEP": "ATAZAR, EL", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "LOZOYA", "Municipio": "PATONES Y ATAZAR", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 460256, "y": 4529303, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1972 }, "geometry": { "type": "Point", "coordinates": [ -3.471957042410473, 40.913869171260394 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450030, "Nombre": "AZUTAN", "Nombre SEP": "AZUTAN", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "TAJO", "Municipio": "AZUTAN Y ALCOLEA DE TAJO", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 321222, "y": 4405375, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1969 }, "geometry": { "type": "Point", "coordinates": [ -5.089354567303456, 39.776875577030268 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9250051, "Nombre": "BALAGUER PARTIDOR (CONTRAEMBALSE)", "Nombre SEP": "BALAGUER", "Otro nombr": "---", "Fecha": "31\/12\/1958", "Anyo": 1958, "Rio": "SEGRE", "Municipio": "OS DE BALAGUER", "Cuenca": "EBRO", "Provincia": "LLEIDA", "x": 818394, "y": 4638887, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1958 }, "geometry": { "type": "Point", "coordinates": [ 0.837007905576761, 41.853447400439265 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8440011, "Nombre": "BALAGUERAS", "Nombre SEP": "BALAGUERAS", "Otro nombr": "---", "Fecha": "31\/12\/1957", "Anyo": 1957, "Rio": "PALOMERAS", "Municipio": "RUBIELOS DE MORA", "Cuenca": "JUCAR", "Provincia": "TERUEL", "x": 697715, "y": 4454450, "Tipos": "Riego, Regulaci?n, ---", "time": 1957 }, "geometry": { "type": "Point", "coordinates": [ -0.678273734487578, 40.211736676229641 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1240011, "Nombre": "BARCENA", "Nombre SEP": "BARCENA", "Otro nombr": "---", "Fecha": "31\/12\/1960", "Anyo": 1960, "Rio": "SIL", "Municipio": "PONFERRADA", "Cuenca": "MI?O-SIL", "Provincia": "LEON", "x": 207593, "y": 4720277, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento", "time": 1960 }, "geometry": { "type": "Point", "coordinates": [ -6.559701893595043, 42.577867471746558 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240029, "Nombre": "BARRIOS DE LUNA", "Nombre SEP": "BARRIOS DE LUNA", "Otro nombr": "---", "Fecha": "31\/12\/1956", "Anyo": 1956, "Rio": "ORBIGO - LUNA (LUNA)", "Municipio": "BARRIOS DE LUNA, LOS", "Cuenca": "DUERO", "Provincia": "LEON", "x": 266290, "y": 4748255, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1956 }, "geometry": { "type": "Point", "coordinates": [ -5.861292889220889, 42.84959328640403 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140040, "Nombre": "BEMBEZAR", "Nombre SEP": "BEMBEZAR", "Otro nombr": "---", "Fecha": "01\/01\/1963", "Anyo": 1963, "Rio": "BEMBEZAR", "Municipio": "HORNACHUELOS", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 305740, "y": 4197410, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1963 }, "geometry": { "type": "Point", "coordinates": [ -5.209567749366365, 37.903499876965576 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8460027, "Nombre": "BENAGEBER", "Nombre SEP": "BENAGEBER", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "TURIA", "Municipio": "BENAGEBER", "Cuenca": "JUCAR", "Provincia": "VALENCIA", "x": 663079, "y": 4399195, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1954 }, "geometry": { "type": "Point", "coordinates": [ -1.098399884711653, 39.726752710347917 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240030, "Nombre": "BENAMARIAS", "Nombre SEP": "BENAMARIAS", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "SALGUIRAL", "Municipio": "MAGAZ DE CEPEDA", "Cuenca": "DUERO", "Provincia": "LEON", "x": 244026, "y": 4716999, "Tipos": "Riego, ---, ---", "time": 1972 }, "geometry": { "type": "Point", "coordinates": [ -6.115658159293967, 42.564269934337403 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030035, "Nombre": "BENIARRES", "Nombre SEP": "BENIARRES", "Otro nombr": "---", "Fecha": "01\/04\/1958", "Anyo": 1958, "Rio": "SERPIS", "Municipio": "BENIARRES", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 729605, "y": 4299796, "Tipos": "Riego, ---, ---", "time": 1958 }, "geometry": { "type": "Point", "coordinates": [ -0.357219079341582, 38.814565965248882 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5180023, "Nombre": "BERMEJALES, LOS", "Nombre SEP": "BERMEJALES, LOS", "Otro nombr": "---", "Fecha": "01\/01\/1958", "Anyo": 1958, "Rio": "CACIN", "Municipio": "ARENAS DEL REY", "Cuenca": "GUADALQUIVIR", "Provincia": "GRANADA", "x": 420700, "y": 4095050, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1958 }, "geometry": { "type": "Point", "coordinates": [ -3.891365885911003, 36.996088335445911 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170002, "Nombre": "BOADELLA", "Nombre SEP": "BOADELLA (ELS FANGOTS)", "Otro nombr": "---", "Fecha": "16\/12\/1969", "Anyo": 1969, "Rio": "MUGA", "Municipio": "DARNIUS", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 981015, "y": 4704322, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1969 }, "geometry": { "type": "Point", "coordinates": [ 2.832860734003766, 42.341133834254407 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230002, "Nombre": "BOLERA, LA", "Nombre SEP": "BOLERA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "GUADALETIN", "Municipio": "POZO ALCON", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 508658, "y": 4179650, "Tipos": "Abastecimiento, Riego, ---", "time": 1967 }, "geometry": { "type": "Point", "coordinates": [ -2.901700539471795, 37.764131555574146 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100091, "Nombre": "BORBOLLON", "Nombre SEP": "BORBOLLON", "Otro nombr": "---", "Fecha": "10\/05\/1954", "Anyo": 1954, "Rio": "ARRAGO", "Municipio": "SANTIBA?EZ EL ALTO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 194910, "y": 4447965, "Tipos": "Hidroel?ctrico, Riego, Adecuaci?n ambiental", "time": 1954 }, "geometry": { "type": "Point", "coordinates": [ -6.577038323907449, 40.125518313736613 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100088, "Nombre": "BORBOLLON (DERIVACION) - ARRAGO (CONTRAEMBALSE)", "Nombre SEP": "BORBOLLON (DERIVACION) - ARRAGO", "Otro nombr": "---", "Fecha": "01\/01\/1954", "Anyo": 1954, "Rio": "ARRAGO", "Municipio": "SANTIBA?EZ EL ALTO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 193368, "y": 4446703, "Tipos": "Riego, ---, ---", "time": 1954 }, "geometry": { "type": "Point", "coordinates": [ -6.594684213333943, 40.113266515278852 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110061, "Nombre": "BORNOS", "Nombre SEP": "BORNOS", "Otro nombr": "---", "Fecha": "01\/01\/1961", "Anyo": 1961, "Rio": "GUADALETE", "Municipio": "BORNOS", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 253744, "y": 4075482, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1961 }, "geometry": { "type": "Point", "coordinates": [ -5.759436093508874, 36.791415000613384 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100094, "Nombre": "BOYERIL 2, EL", "Nombre SEP": "BOYERIL 2, EL", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "ARROYO MANCO", "Municipio": "CASATEJADA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 274235, "y": 4419290, "Tipos": "Riego, ---, ---", "time": 1965 }, "geometry": { "type": "Point", "coordinates": [ -5.640605966572634, 39.893636688349581 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060047, "Nombre": "BROVALES", "Nombre SEP": "BROVALES", "Otro nombr": "---", "Fecha": "01\/01\/1960", "Anyo": 1960, "Rio": "BROVALES", "Municipio": "JEREZ DE LOS CABALLEROS", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 176798, "y": 4251307, "Tipos": "Riego, ---, ---", "time": 1960 }, "geometry": { "type": "Point", "coordinates": [ -6.695873868786813, 38.346529377568544 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220016, "Nombre": "BUBAL", "Nombre SEP": "BUBAL", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "GALLEGO", "Municipio": "HOZ DE JACA, BIESCAS", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 720079, "y": 4729203, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1971 }, "geometry": { "type": "Point", "coordinates": [ -0.313735159766937, 42.683815589392154 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190007, "Nombre": "BUENDIA", "Nombre SEP": "BUENDIA", "Otro nombr": "---", "Fecha": "31\/12\/1958", "Anyo": 1958, "Rio": "GUADIELA", "Municipio": "BUENDIA", "Cuenca": "TAJO", "Provincia": "CUENCA", "x": 518481, "y": 4472261, "Tipos": "Hidroel?ctrico, Abastecimiento, Riego", "time": 1958 }, "geometry": { "type": "Point", "coordinates": [ -2.783032268938273, 40.398970644389919 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2420008, "Nombre": "CAMPILLO DE BUITRAGO", "Nombre SEP": "CAMPILLO DE BUITRAGO", "Otro nombr": "---", "Fecha": "30\/09\/1969", "Anyo": 1969, "Rio": "DUERO", "Municipio": "SORIA Y GARRAY", "Cuenca": "DUERO", "Provincia": "SORIA", "x": 539483, "y": 4631600, "Tipos": "Abastecimiento, Riego, ---", "time": 1969 }, "geometry": { "type": "Point", "coordinates": [ -2.526177065477742, 41.83344717314035 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410016, "Nombre": "CANTILLANA", "Nombre SEP": "CANTILLANA", "Otro nombr": "---", "Fecha": "31\/12\/1956", "Anyo": 1956, "Rio": "GUADALQUIVIR", "Municipio": "CANTILLANA", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 252655, "y": 4164393, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1956 }, "geometry": { "type": "Point", "coordinates": [ -5.811358500175449, 37.592567862550794 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450033, "Nombre": "CASTREJON", "Nombre SEP": "CASTREJON", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "TAJO", "Municipio": "PUEBLA DE MONTALBAN, LA Y POL?N", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 389280, "y": 4410440, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1967 }, "geometry": { "type": "Point", "coordinates": [ -4.294003079508768, 39.83675602603963 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450014, "Nombre": "CASTREJON \/ CA?ARES", "Nombre SEP": "CASTREJON \/ CAARES", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "ARROYO CA?ARES", "Municipio": "PUEBLA DE MONTALBAN, LA", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 382105, "y": 4411925, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1967 }, "geometry": { "type": "Point", "coordinates": [ -4.378053490887235, 39.847817081530053 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450043, "Nombre": "CASTREJON \/ CARPIO, EL", "Nombre SEP": "CASTREJON \/ CARPIO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1967", "Anyo": 1967, "Rio": "ARROYO EL CARPIO", "Municipio": "CARPIO DE TAJO", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 376065, "y": 4413100, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1967 }, "geometry": { "type": "Point", "coordinates": [ -4.450620085863259, 39.856892397103778 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450047, "Nombre": "CAZALEGAS", "Nombre SEP": "CAZALEGAS", "Otro nombr": "---", "Fecha": "31\/12\/1949", "Anyo": 1949, "Rio": "ALBERCHE", "Municipio": "CAZALEGAS", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 354505, "y": 4430825, "Tipos": "Abastecimiento, Riego, ---", "time": 1949 }, "geometry": { "type": "Point", "coordinates": [ -4.704824316924543, 40.015098156015803 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110019, "Nombre": "CELEMIN (ALIVIADERO) (DIQUE DEL COLLADO)", "Nombre SEP": "CELEMIN", "Otro nombr": "---", "Fecha": "01\/01\/1974", "Anyo": 1974, "Rio": "CELEMIN", "Municipio": "MEDINA-SIDONIA", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 251076, "y": 4021595, "Tipos": "Riego, ---, ---", "time": 1974 }, "geometry": { "type": "Point", "coordinates": [ -5.774493725002328, 36.300170104635853 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 7020010, "Nombre": "CENAJO, EL", "Nombre SEP": "CENAJO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1960", "Anyo": 1960, "Rio": "SEGURA", "Municipio": "MORATALLA Y HELLIN", "Cuenca": "SEGURA", "Provincia": "MURCIA", "x": 607142, "y": 4247250, "Tipos": "Defensa frente a avenidas, Riego, ---", "time": 1960 }, "geometry": { "type": "Point", "coordinates": [ -1.776945694611156, 38.365061328691581 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2490003, "Nombre": "CERNADILLA", "Nombre SEP": "CERNADILLA", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "TERA", "Municipio": "CERNADILLA- MANZANAL DE ARRIBA", "Cuenca": "DUERO", "Provincia": "ZAMORA", "x": 213312, "y": 4657994, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1969 }, "geometry": { "type": "Point", "coordinates": [ -6.459559330758671, 42.019596079797424 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450040, "Nombre": "CERQUILLA, LA", "Nombre SEP": "CERQUILLA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "JULIAN (ARROYO DE SAN JULIAN)", "Municipio": "CALZADA DE OROPESA, LA", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 307907, "y": 4429641, "Tipos": "Riego, ---, ---", "time": 1962 }, "geometry": { "type": "Point", "coordinates": [ -5.250132699482004, 39.995123674015133 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4100015, "Nombre": "CIJARA", "Nombre SEP": "CIJARA", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "GUADIANA", "Municipio": "ALIA Y HERRERA DEL DUQUE", "Cuenca": "GUADIANA", "Provincia": "CACERES", "x": 326475, "y": 4360367, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1956 }, "geometry": { "type": "Point", "coordinates": [ -5.014549450756571, 39.375353008490492 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9430006, "Nombre": "CIURANA", "Nombre SEP": "CIURANA", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "CIURANA", "Municipio": "CORNUDELLA DE MONTSANT", "Cuenca": "EBRO", "Provincia": "TARRAGONA", "x": 828373, "y": 4574080, "Tipos": "Abastecimiento, Riego, ---", "time": 1972 }, "geometry": { "type": "Point", "coordinates": [ 0.919011710611436, 41.251431350136897 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170006, "Nombre": "COLOMERS (AZUD)", "Nombre SEP": "COLOMERS", "Otro nombr": "---", "Fecha": "01\/12\/1967", "Anyo": 1967, "Rio": "TER", "Municipio": "COLOMERS", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 996004, "y": 4675791, "Tipos": "Riego, ---, ---", "time": 1967 }, "geometry": { "type": "Point", "coordinates": [ 2.995261836482376, 42.077376031664308 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140036, "Nombre": "CORDOBILLA", "Nombre SEP": "CORDOBILLA", "Otro nombr": "---", "Fecha": "01\/01\/1953", "Anyo": 1953, "Rio": "GENIL", "Municipio": "PUENTE GENIL", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 347701, "y": 4135123, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1953 }, "geometry": { "type": "Point", "coordinates": [ -4.719537557385121, 37.350325426145467 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100064, "Nombre": "CORONO, EL", "Nombre SEP": "CORONO, EL", "Otro nombr": "---", "Fecha": "01\/01\/1971", "Anyo": 1971, "Rio": "ARROYO GODINO", "Municipio": "PASARON DE LA VERA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 260734, "y": 4435578, "Tipos": "Riego, ---, ---", "time": 1971 }, "geometry": { "type": "Point", "coordinates": [ -5.805425022606157, 40.036107404774889 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5180012, "Nombre": "CUBILLAS", "Nombre SEP": "CUBILLAS", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "CUBILLAS", "Municipio": "ALBOLOTE, CHAPARRAL", "Cuenca": "GUADALQUIVIR", "Provincia": "GRANADA", "x": 439470, "y": 4126405, "Tipos": "Riego, ---, ---", "time": 1956 }, "geometry": { "type": "Point", "coordinates": [ -3.682131873611126, 37.275113549931035 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2420001, "Nombre": "CUERDA DEL POZO", "Nombre SEP": "CUERDA DEL POZO", "Otro nombr": "---", "Fecha": "31\/12\/1941", "Anyo": 1941, "Rio": "DUERO", "Municipio": "VINUESA", "Cuenca": "DUERO", "Provincia": "SORIA", "x": 524663, "y": 4636207, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1941 }, "geometry": { "type": "Point", "coordinates": [ -2.704110633917093, 41.87560601488341 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9390001, "Nombre": "EBRO", "Nombre SEP": "EBRO", "Otro nombr": "---", "Fecha": "31\/12\/1945", "Anyo": 1945, "Rio": "EBRO", "Municipio": "ROZAS DE VALDEARROLLO, LAS", "Cuenca": "EBRO", "Provincia": "CANTABRIA", "x": 414326, "y": 4758227, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1945 }, "geometry": { "type": "Point", "coordinates": [ -4.05062366921491, 42.971874766016001 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280052, "Nombre": "ENCINILLA, LA", "Nombre SEP": "ENCINILLA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "ENCINILLA (ARROYO ENCINILLA)", "Municipio": "GUADARRAMA", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 406098, "y": 4503397, "Tipos": "Riego, ---, ---", "time": 1964 }, "geometry": { "type": "Point", "coordinates": [ -4.111099536295225, 40.676112759435348 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190016, "Nombre": "ENTREPE?AS", "Nombre SEP": "ENTREPEAS", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "TAJO", "Municipio": "SACEDON, AU?ON", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 521162, "y": 4482457, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento", "time": 1956 }, "geometry": { "type": "Point", "coordinates": [ -2.749959594219085, 40.492634593906466 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410014, "Nombre": "ESPARRAGAL, EL", "Nombre SEP": "ESPARRAGAL, EL", "Otro nombr": "---", "Fecha": "31\/12\/1970", "Anyo": 1970, "Rio": "ENCARNACION", "Municipio": "GERENA", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 224955, "y": 4160665, "Tipos": "Riego, ---, ---", "time": 1970 }, "geometry": { "type": "Point", "coordinates": [ -6.113480344235373, 37.551976464269863 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190026, "Nombre": "ESTREMERA", "Nombre SEP": "ESTREMERA", "Otro nombr": "---", "Fecha": "01\/01\/1950", "Anyo": 1950, "Rio": "TAJO", "Municipio": "DRIEBES, LEGANIEL", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 499510, "y": 4450630, "Tipos": "Riego, ---, ---", "time": 1950 }, "geometry": { "type": "Point", "coordinates": [ -3.005757759587735, 40.206075433303262 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9430007, "Nombre": "FLIX", "Nombre SEP": "FLIX", "Otro nombr": "---", "Fecha": "31\/12\/1948", "Anyo": 1948, "Rio": "EBRO", "Municipio": "FLIX", "Cuenca": "EBRO", "Provincia": "TARRAGONA", "x": 797742, "y": 4570937, "Tipos": "Hidroel?ctrico, Regulaci?n, Riego", "time": 1948 }, "geometry": { "type": "Point", "coordinates": [ 0.546685765282842, 41.232229806653066 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8460004, "Nombre": "FORATA", "Nombre SEP": "FORATA", "Otro nombr": "---", "Fecha": "01\/01\/1969", "Anyo": 1969, "Rio": "MAGRO", "Municipio": "YATOVA", "Cuenca": "JUCAR", "Provincia": "VALENCIA", "x": 684213, "y": 4356914, "Tipos": "Riego, ---, ---", "time": 1969 }, "geometry": { "type": "Point", "coordinates": [ -0.866259988066856, 39.340061288602712 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1240021, "Nombre": "FUENTE DEL AZUFRE (CONTRAEMBALSE)", "Nombre SEP": "FUENTE DEL AZUFRE", "Otro nombr": "---", "Fecha": "31\/12\/1949", "Anyo": 1949, "Rio": "SIL", "Municipio": "PONFERRADA", "Cuenca": "MI?O-SIL", "Provincia": "LEON", "x": 205737, "y": 4718533, "Tipos": "Hidroel?ctrico, Riego, Riego", "time": 1949 }, "geometry": { "type": "Point", "coordinates": [ -6.582196131732726, 42.563225416467269 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100073, "Nombre": "GABRIEL Y GALAN", "Nombre SEP": "GABRIEL Y GALAN", "Otro nombr": "---", "Fecha": "01\/01\/1961", "Anyo": 1961, "Rio": "ALAGON", "Municipio": "GUIJO DE GRANADILLA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 233284, "y": 4457169, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1961 }, "geometry": { "type": "Point", "coordinates": [ -6.134549362427333, 40.222519021053614 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060063, "Nombre": "GARCIA DE SOLA", "Nombre SEP": "GARCIA DE SOLA", "Otro nombr": "PUERTO PE?A", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "GUADIANA", "Municipio": "TALARRUBIAS", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 311314, "y": 4335259, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1965 }, "geometry": { "type": "Point", "coordinates": [ -5.183418568541133, 39.146091661909495 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9260028, "Nombre": "GONZALEZ LACASA", "Nombre SEP": "GONZALEZ LACASA", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "ALBERCOS", "Municipio": "ORTIGOSA DE CAMEROS", "Cuenca": "EBRO", "Provincia": "LOGRO?O", "x": 527302, "y": 4669311, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1962 }, "geometry": { "type": "Point", "coordinates": [ -2.672761375493678, 42.174095692630871 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220078, "Nombre": "GRADO I, EL", "Nombre SEP": "GRADO I, EL", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "CINCA", "Municipio": "GRADO, EL", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 767725, "y": 4671815, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento", "time": 1969 }, "geometry": { "type": "Point", "coordinates": [ 0.23741948399448, 42.151433358758538 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230049, "Nombre": "GUADALEN", "Nombre SEP": "GUADALEN", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "GUADALEN", "Municipio": "ARQUILLOS, VILCHES", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 458265, "y": 4224145, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1954 }, "geometry": { "type": "Point", "coordinates": [ -3.477940002262961, 38.161962665683475 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030092, "Nombre": "GUADALEST", "Nombre SEP": "GUADALEST", "Otro nombr": "---", "Fecha": "27\/11\/1969", "Anyo": 1969, "Rio": "GUADALEST", "Municipio": "GUADALEST", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 744422, "y": 4285116, "Tipos": "Abastecimiento, Riego, ---", "time": 1969 }, "geometry": { "type": "Point", "coordinates": [ -0.192166073309142, 38.680029796397733 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6290030, "Nombre": "GUADALHORCE", "Nombre SEP": "GUADALHORCE", "Otro nombr": "---", "Fecha": "31\/12\/1973", "Anyo": 1973, "Rio": "GUADALHORCE", "Municipio": "CAMPILLOS", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "MALAGA", "x": 339635, "y": 4090040, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1973 }, "geometry": { "type": "Point", "coordinates": [ -4.801530826294392, 36.942231885689672 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230047, "Nombre": "GUADALMENA", "Nombre SEP": "GUADALMENA", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "GUADALMENA", "Municipio": "CHICLANA DE SEGURA", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 507600, "y": 4246350, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento", "time": 1969 }, "geometry": { "type": "Point", "coordinates": [ -2.913003701760066, 38.365294064735068 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6290030, "Nombre": "GUADALHORCE", "Nombre SEP": "GUADALTEBA", "Otro nombr": "---", "Fecha": "31\/12\/1973", "Anyo": 1973, "Rio": "GUADALHORCE", "Municipio": "CAMPILLOS", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "MALAGA", "x": 339635, "y": 4090040, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1973 }, "geometry": { "type": "Point", "coordinates": [ -4.800899899144437, 36.945068873087934 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140033, "Nombre": "GUADANU?O", "Nombre SEP": "GUADANUO", "Otro nombr": "CERRO MURIANO", "Fecha": "01\/01\/1967", "Anyo": 1967, "Rio": "GUADANU?O", "Municipio": "CORDOBA Y VILLAVICIOSA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 342050, "y": 4209965, "Tipos": "Abastecimiento, Riego, ---", "time": 1967 }, "geometry": { "type": "Point", "coordinates": [ -4.799401042143728, 38.020690274512909 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6110005, "Nombre": "GUADARRANQUE", "Nombre SEP": "GUADARRANQUE", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "GUADARRANQUE", "Municipio": "LOS BARRIOS Y CASTELLAR", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "CADIZ", "x": 279075, "y": 4021000, "Tipos": "Abastecimiento, Riego, Industrial", "time": 1965 }, "geometry": { "type": "Point", "coordinates": [ -5.462582245278115, 36.308061895928077 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100138, "Nombre": "HELECHAL", "Nombre SEP": "HELECHAL", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "ARROYO HELECHAL", "Municipio": "ALCANTARA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 166075, "y": 4418651, "Tipos": "Acuicultura, Riego, ---", "time": 1965 }, "geometry": { "type": "Point", "coordinates": [ -6.900752059908138, 39.850102210041328 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3050008, "Nombre": "HINCHONA, LA", "Nombre SEP": "HINCHONA, LA", "Otro nombr": "---", "Fecha": "01\/01\/1946", "Anyo": 1946, "Rio": "YEDRA", "Municipio": "TIEMBLO, EL", "Cuenca": "TAJO", "Provincia": "AVILA", "x": 372108, "y": 4471728, "Tipos": "Riego, ---, ---", "time": 1946 }, "geometry": { "type": "Point", "coordinates": [ -4.508831766221838, 40.382678871336999 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5110015, "Nombre": "HURONES, LOS", "Nombre SEP": "HURONES, LOS", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "MAJACEITE", "Municipio": "ALGAR", "Cuenca": "GUADALETE Y BARBATE", "Provincia": "CADIZ", "x": 271131, "y": 4060369, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1964 }, "geometry": { "type": "Point", "coordinates": [ -5.561793185401353, 36.661651452526876 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8030028, "Nombre": "ISBERT", "Nombre SEP": "ISBERT", "Otro nombr": "---", "Fecha": "01\/01\/1945", "Anyo": 1945, "Rio": "GIRONA", "Municipio": "ORBA", "Cuenca": "JUCAR", "Provincia": "ALICANTE", "x": 751659, "y": 4297224, "Tipos": "Riego, ---, ---", "time": 1945 }, "geometry": { "type": "Point", "coordinates": [ -0.10263108021709, 38.787864046694146 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140028, "Nombre": "IZNAJAR", "Nombre SEP": "IZNAJAR", "Otro nombr": "---", "Fecha": "01\/01\/1969", "Anyo": 1969, "Rio": "GENIL", "Municipio": "RUTE, CUEVAS SAN MARCOS", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 377250, "y": 4126550, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1969 }, "geometry": { "type": "Point", "coordinates": [ -4.384595419518428, 37.277450507675191 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100102, "Nombre": "JARILLA, LA (TAJO)", "Nombre SEP": "JARILLA, LA (TAJO)", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "CAVERA", "Municipio": "JARILLA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 242520, "y": 4451720, "Tipos": "Riego, ---, ---", "time": 1964 }, "geometry": { "type": "Point", "coordinates": [ -6.024538833190966, 40.174375288241109 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140001, "Nombre": "MALPASILLO JAUJA (AZUD)", "Nombre SEP": "JAUJA", "Otro nombr": "MALPASILLO JAUJA", "Fecha": "31\/12\/1951", "Anyo": 1951, "Rio": "GENIL", "Municipio": "LUCENA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 352650, "y": 4129600, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento", "time": 1951 }, "geometry": { "type": "Point", "coordinates": [ -4.662585496524082, 37.301361445385517 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240007, "Nombre": "JUAN BENET (PORMA)", "Nombre SEP": "JUAN BENET (PORMA)", "Otro nombr": "---", "Fecha": "30\/04\/1968", "Anyo": 1968, "Rio": "PORMA", "Municipio": "BO?AR", "Cuenca": "DUERO", "Provincia": "LEON", "x": 313090, "y": 4755710, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1968 }, "geometry": { "type": "Point", "coordinates": [ -5.292865126288026, 42.929271817078423 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2400015, "Nombre": "LINARES DEL ARROYO", "Nombre SEP": "LINARES DEL ARROYO", "Otro nombr": "---", "Fecha": "30\/04\/1953", "Anyo": 1953, "Rio": "RIAZA", "Municipio": "MADERUELO", "Cuenca": "DUERO", "Provincia": "SEGOVIA", "x": 453728, "y": 4597664, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1953 }, "geometry": { "type": "Point", "coordinates": [ -3.554651761363497, 41.529285716247792 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8460013, "Nombre": "LORIGUILLA", "Nombre SEP": "LORIGUILLA", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "TURIA", "Municipio": "LORIGUILLA Y CHULILLA", "Cuenca": "JUCAR", "Provincia": "VALENCIA", "x": 679189, "y": 4392798, "Tipos": "Regulaci?n, Riego, Hidroel?ctrico", "time": 1965 }, "geometry": { "type": "Point", "coordinates": [ -0.913545143704678, 39.665598816768487 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9260022, "Nombre": "MANSILLA", "Nombre SEP": "MANSILLA", "Otro nombr": "---", "Fecha": "31\/12\/1960", "Anyo": 1960, "Rio": "NAJERILLA", "Municipio": "MANSILLA DE LA SIERRA, VILLAVELAYO", "Cuenca": "EBRO", "Provincia": "LOGRO?O", "x": 507343, "y": 4667566, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1960 }, "geometry": { "type": "Point", "coordinates": [ -2.911865795489491, 42.157818546354328 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230044, "Nombre": "MARMOLEJO (AZUD)", "Nombre SEP": "MARMOLEJO", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "GUADALQUIVIR", "Municipio": "MARMOLEJO", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 396000, "y": 4213200, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1962 }, "geometry": { "type": "Point", "coordinates": [ -4.18614607146159, 38.058303611664883 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220054, "Nombre": "MEDIANO", "Nombre SEP": "MEDIANO", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "CINCA", "Municipio": "FUEVA, LA", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 765112, "y": 4689838, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1959 }, "geometry": { "type": "Point", "coordinates": [ 0.209614773336133, 42.312782244260198 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500030, "Nombre": "MEQUINENZA", "Nombre SEP": "MEQUINENZA", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "EBRO", "Municipio": "MEQUINENZA", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 774241, "y": 4584997, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1964 }, "geometry": { "type": "Point", "coordinates": [ 0.27233271846834, 41.369107259881595 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230023, "Nombre": "MOLINO DE GUADALEN (CONTRAEMBALSE)", "Nombre SEP": "MOLINO DE GUADALEN", "Otro nombr": "SALTO DEL MOLINO", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "GUADALEN", "Municipio": "VILCHES", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 457163, "y": 4222764, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1962 }, "geometry": { "type": "Point", "coordinates": [ -3.491528391718664, 38.148473161448059 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 6110011, "Nombre": "MONTE DE LA TORRE (DD-1)", "Nombre SEP": "MONTE DE LA TORRE (DD-1)", "Otro nombr": "DEPOSITO DD-1", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "PRIOR", "Municipio": "BARRIOS, LOS", "Cuenca": "CUENCA MEDITERRANEA ANDALUZA", "Provincia": "CADIZ", "x": 275972, "y": 4004387, "Tipos": "Regulaci?n, Riego, ---", "time": 1972 }, "geometry": { "type": "Point", "coordinates": [ -5.492384390098595, 36.155895997598833 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060102, "Nombre": "MONTIJO (AZUD)", "Nombre SEP": "MONTIJO", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "GUADIANA", "Municipio": "MERIDA", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 202510, "y": 4314117, "Tipos": "Abastecimiento, Riego, ---", "time": 1954 }, "geometry": { "type": "Point", "coordinates": [ -6.427664088852721, 38.924344373951847 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060074, "Nombre": "MOSQUIL, EL", "Nombre SEP": "MOSQUIL, EL", "Otro nombr": "---", "Fecha": "01\/01\/1971", "Anyo": 1971, "Rio": "LABRADOS", "Municipio": "USAGRE", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 228717, "y": 4255260, "Tipos": "Riego, ---, ---", "time": 1971 }, "geometry": { "type": "Point", "coordinates": [ -6.102143428079711, 38.404229071161829 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280058, "Nombre": "NAVALAGAMELLA", "Nombre SEP": "NAVALAGAMELLA", "Otro nombr": "---", "Fecha": "31\/12\/1972", "Anyo": 1972, "Rio": "CURA", "Municipio": "NAVALAGAMELLA", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 405106, "y": 4472030, "Tipos": "Riego, ---, ---", "time": 1972 }, "geometry": { "type": "Point", "coordinates": [ -4.118128243440852, 40.393469077714649 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500043, "Nombre": "NI?O JESUS", "Nombre SEP": "NIO JESUS", "Otro nombr": "ANI?ON", "Fecha": "09\/05\/1955", "Anyo": 1955, "Rio": "ARROYO DEL FRESNO O JESUS", "Municipio": "ANI?ON", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 608478, "y": 4595385, "Tipos": "Riego, ---, ---", "time": 1955 }, "geometry": { "type": "Point", "coordinates": [ -1.700241582292244, 41.502750525376456 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9250050, "Nombre": "OLIANA", "Nombre SEP": "OLIANA", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "SEGRE", "Municipio": "OLIANA Y PERAMOLA", "Cuenca": "EBRO", "Provincia": "LLEIDA", "x": 855649, "y": 4669176, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1959 }, "geometry": { "type": "Point", "coordinates": [ 1.294121856767445, 42.09323595831043 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120003, "Nombre": "ONDA", "Nombre SEP": "ONDA", "Otro nombr": "BENITANDUS", "Fecha": "01\/01\/1954", "Anyo": 1954, "Rio": "SECO \/ VEO", "Municipio": "ALCUDIA DE VEO", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 728310, "y": 4424455, "Tipos": "Riego, ---, ---", "time": 1954 }, "geometry": { "type": "Point", "coordinates": [ -0.332381988138957, 39.935506992024152 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060095, "Nombre": "ORELLANA", "Nombre SEP": "ORELLANA", "Otro nombr": "---", "Fecha": "01\/01\/1963", "Anyo": 1963, "Rio": "GUADIANA", "Municipio": "ORELLANA LA VIEJA, CAMPANARIO", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 280423, "y": 4318386, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1963 }, "geometry": { "type": "Point", "coordinates": [ -5.535132886954286, 38.986952323172254 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3190028, "Nombre": "PALMACES", "Nombre SEP": "PALMACES", "Otro nombr": "---", "Fecha": "01\/01\/1954", "Anyo": 1954, "Rio": "CA?AMARES", "Municipio": "PALMACES DE JADRAQUE", "Cuenca": "TAJO", "Provincia": "GUADALAJARA", "x": 505170, "y": 4544655, "Tipos": "Riego, ---, ---", "time": 1954 }, "geometry": { "type": "Point", "coordinates": [ -2.938477271645835, 41.053113370518076 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170013, "Nombre": "PASTERAL I (AZUD)", "Nombre SEP": "PASTERAL, EL", "Otro nombr": "---", "Fecha": "01\/01\/1962", "Anyo": 1962, "Rio": "TER", "Municipio": "OSOR", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 965397, "y": 4663877, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1962 }, "geometry": { "type": "Point", "coordinates": [ 2.611741540127118, 41.986908522905971 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060004, "Nombre": "PASTIZALES, LOS", "Nombre SEP": "PASTIZALES, LOS", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "VALDELARQUILLO (VALDESEQUILLOS)", "Municipio": "HELECHOSA DE LOS MONTES", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 352216, "y": 4363403, "Tipos": "Abastecimiento, Riego, ---", "time": 1964 }, "geometry": { "type": "Point", "coordinates": [ -4.716514246194416, 39.407486921477805 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230018, "Nombre": "PEDRO MARIN", "Nombre SEP": "PEDRO MARIN", "Otro nombr": "---", "Fecha": "31\/12\/1954", "Anyo": 1954, "Rio": "GUADALQUIVIR", "Municipio": "JODAR", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 463739, "y": 4196379, "Tipos": "Hidroel?ctrico, Riego, Industrial", "time": 1954 }, "geometry": { "type": "Point", "coordinates": [ -3.41239455913779, 37.908748708069062 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4130018, "Nombre": "PE?ARROYA", "Nombre SEP": "PEARROYA", "Otro nombr": "---", "Fecha": "01\/01\/1959", "Anyo": 1959, "Rio": "GUADIANA", "Municipio": "ARGAMASILLA DE ALBA", "Cuenca": "GUADIANA", "Provincia": "CIUDAD REAL", "x": 499519, "y": 4323754, "Tipos": "Abastecimiento, Riego, ---", "time": 1959 }, "geometry": { "type": "Point", "coordinates": [ -3.006410578817207, 39.0600734782616 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280055, "Nombre": "PE?ASCALES, LOS", "Nombre SEP": "PEASCALES, LOS", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "ARROYO TROFAS", "Municipio": "TORRELODONES", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 424055, "y": 4492013, "Tipos": "Abastecimiento, Riego, ---", "time": 1962 }, "geometry": { "type": "Point", "coordinates": [ -3.899212763467394, 40.573385126433401 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280063, "Nombre": "PICADAS", "Nombre SEP": "PICADAS", "Otro nombr": "---", "Fecha": "31\/12\/1952", "Anyo": 1952, "Rio": "ALBERCHE", "Municipio": "SAN MARTIN DE VALDEIGLESIAS", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 393940, "y": 4465690, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1952 }, "geometry": { "type": "Point", "coordinates": [ -4.248613957763868, 40.335017228866114 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060031, "Nombre": "PIEDRA AGUDA", "Nombre SEP": "PIEDRA AGUDA", "Otro nombr": "---", "Fecha": "01\/01\/1956", "Anyo": 1956, "Rio": "OLIVENZA", "Municipio": "OLIVENZA", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 149904, "y": 4289973, "Tipos": "Abastecimiento, Riego, ---", "time": 1956 }, "geometry": { "type": "Point", "coordinates": [ -7.022127716948229, 38.686645940997359 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4210092, "Nombre": "PIEDRAS", "Nombre SEP": "PIEDRAS", "Otro nombr": "---", "Fecha": "31\/12\/1968", "Anyo": 1968, "Rio": "PIEDRAS", "Municipio": "CARTAYA, LEPE", "Cuenca": "TINTO, ODIEL Y PIEDRAS", "Provincia": "HUELVA", "x": 122023, "y": 4144432, "Tipos": "Abastecimiento, Riego, ---", "time": 1968 }, "geometry": { "type": "Point", "coordinates": [ -7.267780799337213, 37.369637834626118 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410106, "Nombre": "PINTADO, EL", "Nombre SEP": "PINTADO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1948", "Anyo": 1948, "Rio": "VIAR", "Municipio": "CAZALLA SIERRA,GUADALCANAL,REAL DE JARA,REINA FTE ARCO", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 240667, "y": 4208399, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1948 }, "geometry": { "type": "Point", "coordinates": [ -5.952895519265762, 37.986200300108067 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140004, "Nombre": "PUENTE NUEVO", "Nombre SEP": "PUENTE NUEVO", "Otro nombr": "---", "Fecha": "01\/01\/1972", "Anyo": 1972, "Rio": "GUADIATO", "Municipio": "VILLAVICIOSA DE CORDOBA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 331056, "y": 4217469, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1972 }, "geometry": { "type": "Point", "coordinates": [ -4.925423118201439, 38.086333381963037 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120004, "Nombre": "REGAJO, EL", "Nombre SEP": "REGAJO, EL", "Otro nombr": "---", "Fecha": "31\/10\/1959", "Anyo": 1959, "Rio": "PALANCIA", "Municipio": "JERICA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 711756, "y": 4418669, "Tipos": "Riego, Regulaci?n, ---", "time": 1959 }, "geometry": { "type": "Point", "coordinates": [ -0.524371838946281, 39.890226040506406 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2340005, "Nombre": "REQUEJADA", "Nombre SEP": "REQUEJADA", "Otro nombr": "---", "Fecha": "01\/08\/1935", "Anyo": 1935, "Rio": "PISUERGA", "Municipio": "ARBEJAL", "Cuenca": "DUERO", "Provincia": "PALENCIA", "x": 375507, "y": 4751818, "Tipos": "Abastecimiento, Riego, Defensa frente a avenidas", "time": 1935 }, "geometry": { "type": "Point", "coordinates": [ -4.529079842156704, 42.906501474629039 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140048, "Nombre": "RETORTILLO", "Nombre SEP": "RETORTILLO", "Otro nombr": "---", "Fecha": "01\/01\/1970", "Anyo": 1970, "Rio": "RETORTILLO", "Municipio": "HORNACHUELOS, PUEBLA DE INFANTES", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 293165, "y": 4191105, "Tipos": "Abastecimiento, Riego, ---", "time": 1970 }, "geometry": { "type": "Point", "coordinates": [ -5.350685975142197, 37.843949105180215 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280015, "Nombre": "REY, DEL", "Nombre SEP": "REY, DEL", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "JARAMA", "Municipio": "RIVAS-VACIAMADRID", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 453964, "y": 4461241, "Tipos": "Riego, ---, ---", "time": 1971 }, "geometry": { "type": "Point", "coordinates": [ -3.541697666725634, 40.30040624814928 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9430003, "Nombre": "RIBARROJA", "Nombre SEP": "RIBARROJA", "Otro nombr": "RIBA ROJA", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "EBRO", "Municipio": "RIBA-ROJA D??EBRE", "Cuenca": "EBRO", "Provincia": "TARRAGONA", "x": 788146, "y": 4571794, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1969 }, "geometry": { "type": "Point", "coordinates": [ 0.432402255743064, 41.244260457974114 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1270013, "Nombre": "RIBASALTAS (AZUD)", "Nombre SEP": "RIBASALTAS (AZUD)", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "CABE", "Municipio": "MONFORTE DE LEMOS", "Cuenca": "MI?O-SIL", "Provincia": "LUGO", "x": 132034, "y": 4721564, "Tipos": "Riego, ---, ---", "time": 1969 }, "geometry": { "type": "Point", "coordinates": [ -7.482123337173747, 42.558773132887893 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450011, "Nombre": "ROSARITO", "Nombre SEP": "ROSARITO", "Otro nombr": "---", "Fecha": "31\/12\/1958", "Anyo": 1958, "Rio": "TIETAR", "Municipio": "OROPESA, CANDELEDA", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 302082, "y": 4442874, "Tipos": "Riego, Hidroel?ctrico, ---", "time": 1958 }, "geometry": { "type": "Point", "coordinates": [ -5.323316569402881, 40.109785509002386 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230022, "Nombre": "RUMBLAR", "Nombre SEP": "RUMBLAR", "Otro nombr": "---", "Fecha": "31\/12\/1941", "Anyo": 1941, "Rio": "RUMBLAR", "Municipio": "BA?OS DE LA ENCINA", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 429670, "y": 4224281, "Tipos": "Abastecimiento, Riego, ---", "time": 1941 }, "geometry": { "type": "Point", "coordinates": [ -3.805118133356511, 38.160940200795679 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100074, "Nombre": "SALOR", "Nombre SEP": "SALOR", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "SALOR", "Municipio": "CACERES", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 214873, "y": 4362570, "Tipos": "Riego, ---, ---", "time": 1964 }, "geometry": { "type": "Point", "coordinates": [ -6.304252947963797, 39.363823279289257 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2470004, "Nombre": "SAN JOSE", "Nombre SEP": "SAN JOSE", "Otro nombr": "---", "Fecha": "17\/11\/1945", "Anyo": 1945, "Rio": "DUERO", "Municipio": "CASTRONU?O", "Cuenca": "DUERO", "Provincia": "VALLADOLID", "x": 310093, "y": 4586292, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1945 }, "geometry": { "type": "Point", "coordinates": [ -5.272929021949244, 41.40334878237924 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3280027, "Nombre": "SAN JUAN (DIQUE DEL COLLADO)", "Nombre SEP": "SAN JUAN", "Otro nombr": "---", "Fecha": "31\/12\/1955", "Anyo": 1955, "Rio": "ALBERCHE", "Municipio": "SAN MARTIN DE VALDEIGLESIAS", "Cuenca": "TAJO", "Provincia": "MADRID", "x": 388451, "y": 4469946, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1955 }, "geometry": { "type": "Point", "coordinates": [ -4.31396264185899, 40.372634988032473 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10250001, "Nombre": "SANT PONC (SAN PONS)", "Nombre SEP": "SAN PONS", "Otro nombr": "---", "Fecha": "19\/12\/1957", "Anyo": 1957, "Rio": "EL CARDENER", "Municipio": "CLARIANA DE CARDENER", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "LLEIDA", "x": 882025, "y": 4656011, "Tipos": "Riego, Abastecimiento, Hidroel?ctrico", "time": 1957 }, "geometry": { "type": "Point", "coordinates": [ 1.604928701928848, 41.963247965218237 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220076, "Nombre": "SANTA ANA", "Nombre SEP": "SANTA ANA", "Otro nombr": "---", "Fecha": "31\/12\/1961", "Anyo": 1961, "Rio": "NOGUERA RIBAGORZANA", "Municipio": "CASTILLONROY", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 797530, "y": 4643159, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1961 }, "geometry": { "type": "Point", "coordinates": [ 0.58585068877188, 41.884376074961594 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2370010, "Nombre": "SANTA TERESA", "Nombre SEP": "SANTA TERESA", "Otro nombr": "---", "Fecha": "28\/02\/1961", "Anyo": 1961, "Rio": "TORMES", "Municipio": "MONTEJO DE SALVATIERRA Y PELAYOS", "Cuenca": "DUERO", "Provincia": "SALAMANCA", "x": 280203, "y": 4505246, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento", "time": 1961 }, "geometry": { "type": "Point", "coordinates": [ -5.601478818221761, 40.666530208282772 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 7300019, "Nombre": "SANTOMERA (DIQUE DEL COLLADO)", "Nombre SEP": "SANTOMERA", "Otro nombr": "---", "Fecha": "31\/12\/1965", "Anyo": 1965, "Rio": "SALADA", "Municipio": "SANTOMERA", "Cuenca": "SEGURA", "Provincia": "MURCIA", "x": 667635, "y": 4218190, "Tipos": "Defensa frente a avenidas, Riego, ---", "time": 1965 }, "geometry": { "type": "Point", "coordinates": [ -1.089223323305816, 38.094416812028811 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10080007, "Nombre": "SAU", "Nombre SEP": "SAU", "Otro nombr": "---", "Fecha": "31\/12\/1964", "Anyo": 1964, "Rio": "TER", "Municipio": "VILANOVA DE SAU", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "BARCELONA", "x": 948914, "y": 4660480, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1964 }, "geometry": { "type": "Point", "coordinates": [ 2.412853763608266, 41.968034742145285 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240018, "Nombre": "SELGA DE ORDAS", "Nombre SEP": "SELGA DE ORDAS", "Otro nombr": "---", "Fecha": "31\/12\/1961", "Anyo": 1961, "Rio": "LUNA", "Municipio": "RIOSECO DE TAPIA, STA. MARIA ORDAS", "Cuenca": "DUERO", "Provincia": "LEON", "x": 271923, "y": 4737491, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1961 }, "geometry": { "type": "Point", "coordinates": [ -5.787157982272, 42.754623703580187 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120002, "Nombre": "SICHAR", "Nombre SEP": "SICHAR", "Otro nombr": "---", "Fecha": "30\/04\/1960", "Anyo": 1960, "Rio": "MIJARES", "Municipio": "ONDA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 736439, "y": 4432744, "Tipos": "Regulaci?n, Riego, ---", "time": 1960 }, "geometry": { "type": "Point", "coordinates": [ -0.229798337282889, 40.011805159211811 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100056, "Nombre": "SOLANA, LA", "Nombre SEP": "SOLANA, LA", "Otro nombr": "---", "Fecha": "01\/01\/1955", "Anyo": 1955, "Rio": "ARROYO CABRIOSO", "Municipio": "HERRERA DE ALCANTARA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 121529, "y": 4390838, "Tipos": "Riego, ---, ---", "time": 1955 }, "geometry": { "type": "Point", "coordinates": [ -7.402713597322813, 39.582504882455126 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220034, "Nombre": "SOTONERA, LA (DIQUE DEL COLLADO 1) (ASTON Y VACAS)", "Nombre SEP": "SOTONERA, LA (DIQUE DEL COLLADO 1)", "Otro nombr": "---", "Fecha": "01\/01\/1963", "Anyo": 1963, "Rio": "ASTON-VACAS", "Municipio": "ALCALA DE GURREA", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 692200, "y": 4664000, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1963 }, "geometry": { "type": "Point", "coordinates": [ -0.675494101176755, 42.104556770731016 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 10170012, "Nombre": "SUSQUEDA", "Nombre SEP": "SUSQUEDA", "Otro nombr": "---", "Fecha": "01\/01\/1967", "Anyo": 1967, "Rio": "TER", "Municipio": "OSOR", "Cuenca": "CUENCAS INTERNAS DE CATALU?A", "Provincia": "GERONA", "x": 958440, "y": 4663004, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1967 }, "geometry": { "type": "Point", "coordinates": [ 2.525629754723707, 41.978174543669596 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500034, "Nombre": "TORCAS, LAS", "Nombre SEP": "TORCAS, LAS", "Otro nombr": "---", "Fecha": "31\/12\/1946", "Anyo": 1946, "Rio": "HUERVA", "Municipio": "TOSOS", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 660235, "y": 4573209, "Tipos": "Abastecimiento, Riego, ---", "time": 1946 }, "geometry": { "type": "Point", "coordinates": [ -1.086248185678983, 41.294432150333634 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5410139, "Nombre": "TORRE DEL AGUILA", "Nombre SEP": "TORRE DEL AGUILA", "Otro nombr": "---", "Fecha": "31\/12\/1947", "Anyo": 1947, "Rio": "SALADO DE MORON", "Municipio": "UTRERA", "Cuenca": "GUADALQUIVIR", "Provincia": "SEVILLA", "x": 254750, "y": 4103343, "Tipos": "Riego, ---, ---", "time": 1947 }, "geometry": { "type": "Point", "coordinates": [ -5.75796704655238, 37.042299853535575 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2400007, "Nombre": "TORRELARA", "Nombre SEP": "TORRELARA", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "MAGDALENA", "Municipio": "MU?OPEDRO", "Cuenca": "DUERO", "Provincia": "SEGOVIA", "x": 371042, "y": 4526981, "Tipos": "Riego, ---, ---", "time": 1971 }, "geometry": { "type": "Point", "coordinates": [ -4.525464948925385, 40.881645701856648 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100128, "Nombre": "TOZO", "Nombre SEP": "TOZO", "Otro nombr": "---", "Fecha": "01\/01\/1962", "Anyo": 1962, "Rio": "TOZO", "Municipio": "TORRECILLAS DE LA TIESA", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 258781, "y": 4384708, "Tipos": "Riego, ---, ---", "time": 1962 }, "geometry": { "type": "Point", "coordinates": [ -5.808491538821287, 39.578167482738969 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230005, "Nombre": "TRANCO DE BEAS", "Nombre SEP": "TRANCO DE BEAS", "Otro nombr": "---", "Fecha": "31\/12\/1944", "Anyo": 1944, "Rio": "GUADALQUIVIR", "Municipio": "VILLANUEVA DEL ARZOBISPO", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 518004, "y": 4225445, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1944 }, "geometry": { "type": "Point", "coordinates": [ -2.796085163534599, 38.172961013561668 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9500008, "Nombre": "TRANQUERA, LA", "Nombre SEP": "TRANQUERA, LA", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "PIEDRA", "Municipio": "CARENAS", "Cuenca": "EBRO", "Provincia": "ZARAGOZA", "x": 600522, "y": 4568949, "Tipos": "Abastecimiento, Riego, ---", "time": 1959 }, "geometry": { "type": "Point", "coordinates": [ -1.799933359379148, 41.26571491471411 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8120011, "Nombre": "ULLDECONA", "Nombre SEP": "ULLDECONA", "Otro nombr": "---", "Fecha": "01\/01\/1967", "Anyo": 1967, "Rio": "CENIA", "Municipio": "PUEBLA DE BENIFASAR, LA", "Cuenca": "JUCAR", "Provincia": "CASTELLON", "x": 773861, "y": 4507456, "Tipos": "Riego, Abastecimiento, ---", "time": 1967 }, "geometry": { "type": "Point", "coordinates": [ 0.233696820899937, 40.671205055706174 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9010013, "Nombre": "ULLIVARRI (ULLIBARRI GAMBOA)", "Nombre SEP": "ULLIVARRI", "Otro nombr": "---", "Fecha": "31\/12\/1956", "Anyo": 1956, "Rio": "ZADORRA", "Municipio": "ARRAZUA-UBARRUNDIA", "Cuenca": "EBRO", "Provincia": "ALAVA", "x": 531411, "y": 4753261, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1956 }, "geometry": { "type": "Point", "coordinates": [ -2.616684562982715, 42.929748081557243 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9220071, "Nombre": "VADIELLO", "Nombre SEP": "VADIELLO", "Otro nombr": "---", "Fecha": "31\/12\/1971", "Anyo": 1971, "Rio": "GUATIZALEMA", "Municipio": "LOPORZANO", "Cuenca": "EBRO", "Provincia": "HUESCA", "x": 724600, "y": 4680350, "Tipos": "Abastecimiento, Riego, ---", "time": 1971 }, "geometry": { "type": "Point", "coordinates": [ -0.278274787832226, 42.241455552833116 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 8440008, "Nombre": "VALBONA", "Nombre SEP": "VALBONA", "Otro nombr": "---", "Fecha": "23\/04\/1959", "Anyo": 1959, "Rio": "RAMBLA DE FUENTE DE MORA", "Municipio": "VALBONA", "Cuenca": "JUCAR", "Provincia": "TERUEL", "x": 685729, "y": 4458355, "Tipos": "Riego, Regulaci?n, ---", "time": 1959 }, "geometry": { "type": "Point", "coordinates": [ -0.816101272504915, 40.255060895440586 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3450003, "Nombre": "VALDECABRAS (ARROYO)", "Nombre SEP": "VALDECABRAS (ARROYO)", "Otro nombr": "---", "Fecha": "31\/12\/1965", "Anyo": 1965, "Rio": "VALDECABRAS", "Municipio": "ORGAZ", "Cuenca": "TAJO", "Provincia": "TOLEDO", "x": 420490, "y": 4393145, "Tipos": "Riego, ---, ---", "time": 1965 }, "geometry": { "type": "Point", "coordinates": [ -3.926788415967018, 39.679815178644702 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100007, "Nombre": "VALDECA?AS", "Nombre SEP": "VALDECAAS", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "TAJO", "Municipio": "BELVIS DE MONROY Y VALDECA?AS DE TAJO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 276345, "y": 4406515, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1964 }, "geometry": { "type": "Point", "coordinates": [ -5.611519355880159, 39.778058114257554 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100021, "Nombre": "VALDEOBISPO", "Nombre SEP": "VALDEOBISPO", "Otro nombr": "---", "Fecha": "01\/01\/1965", "Anyo": 1965, "Rio": "ALAGON", "Municipio": "VALDEOBISPO, MONTEHERMOSO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 222665, "y": 4444086, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1965 }, "geometry": { "type": "Point", "coordinates": [ -6.250475465037487, 40.099972080187513 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240032, "Nombre": "VALDESPINA", "Nombre SEP": "VALDESPINA", "Otro nombr": "EMBALSE DE BARRIO", "Fecha": "01\/01\/1940", "Anyo": 1940, "Rio": "ARROYO VALDESPINA", "Municipio": "SANTA COLOMBA DE CURUE?O", "Cuenca": "DUERO", "Provincia": "LEON", "x": 302950, "y": 4731030, "Tipos": "Riego, ---, ---", "time": 1940 }, "geometry": { "type": "Point", "coordinates": [ -5.406065313775238, 42.706499916903788 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060067, "Nombre": "VALUENGO", "Nombre SEP": "VALUENGO", "Otro nombr": "---", "Fecha": "01\/01\/1959", "Anyo": 1959, "Rio": "ARDILA", "Municipio": "JEREZ DE LOS CABALLEROS", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 178405, "y": 4245838, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1959 }, "geometry": { "type": "Point", "coordinates": [ -6.675893208552442, 38.302112885507341 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2400023, "Nombre": "VENCIAS, LAS", "Nombre SEP": "VENCIAS, LAS", "Otro nombr": "---", "Fecha": "31\/12\/1962", "Anyo": 1962, "Rio": "DURAT??N", "Municipio": "FUENTIDUE?A", "Cuenca": "DUERO", "Provincia": "SEGOVIA", "x": 419459, "y": 4586898, "Tipos": "Hidroel?ctrico, Regulaci?n, Riego", "time": 1962 }, "geometry": { "type": "Point", "coordinates": [ -3.963944331589039, 41.429610334951988 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4130068, "Nombre": "VICARIO, EL", "Nombre SEP": "VICARIO, EL", "Otro nombr": "---", "Fecha": "31\/12\/1973", "Anyo": 1973, "Rio": "GUADIANA", "Municipio": "CIUDAD REAL", "Cuenca": "GUADIANA", "Provincia": "CIUDAD REAL", "x": 413850, "y": 4324000, "Tipos": "Riego, ---, ---", "time": 1973 }, "geometry": { "type": "Point", "coordinates": [ -3.995741332266146, 39.060841342144016 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 3100052, "Nombre": "VID III, LA", "Nombre SEP": "VID III, LA", "Otro nombr": "---", "Fecha": "01\/01\/1959", "Anyo": 1959, "Rio": "VID", "Municipio": "TORREJON EL RUBIO", "Cuenca": "TAJO", "Provincia": "CACERES", "x": 247090, "y": 4406926, "Tipos": "Riego, ---, ---", "time": 1959 }, "geometry": { "type": "Point", "coordinates": [ -5.952086239245332, 39.775191310906806 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 1270004, "Nombre": "VILASOUTO", "Nombre SEP": "VILASOUTO", "Otro nombr": "---", "Fecha": "31\/12\/1969", "Anyo": 1969, "Rio": "MAO", "Municipio": "INCIO, O", "Cuenca": "MI?O-SIL", "Provincia": "LUGO", "x": 137205, "y": 4732933, "Tipos": "Riego, Abastecimiento, ---", "time": 1969 }, "geometry": { "type": "Point", "coordinates": [ -7.420753964301073, 42.661742625751344 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5140050, "Nombre": "VILLAFRANCA", "Nombre SEP": "VILLAFRANCA", "Otro nombr": "---", "Fecha": "01\/01\/1948", "Anyo": 1948, "Rio": "GUADALQUIVIR", "Municipio": "VILLAFRANCA DE CORDOBA", "Cuenca": "GUADALQUIVIR", "Provincia": "CORDOBA", "x": 359660, "y": 4202300, "Tipos": "Hidroel?ctrico, Riego, ---", "time": 1948 }, "geometry": { "type": "Point", "coordinates": [ -4.625577330827668, 37.955913562678845 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2370033, "Nombre": "VILLAGONZALO (AZUD)", "Nombre SEP": "VILLAGONZALO", "Otro nombr": "---", "Fecha": "14\/02\/1960", "Anyo": 1960, "Rio": "TORMES", "Municipio": "VILLAGONZALO DE TORMES Y GARIHERNANDEZ", "Cuenca": "DUERO", "Provincia": "SALAMANCA", "x": 289812, "y": 4527892, "Tipos": "Riego, Hidroel?ctrico, Riego", "time": 1960 }, "geometry": { "type": "Point", "coordinates": [ -5.495897349387188, 40.872840331559352 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 2240006, "Nombre": "VILLAMECA", "Nombre SEP": "VILLAMECA", "Otro nombr": "---", "Fecha": "31\/12\/1947", "Anyo": 1947, "Rio": "TUERTO-VALLE (TUERTO)", "Municipio": "QUINTANA DEL CASTILLO", "Cuenca": "DUERO", "Provincia": "LEON", "x": 247863, "y": 4726637, "Tipos": "Hidroel?ctrico, Riego, Abastecimiento", "time": 1947 }, "geometry": { "type": "Point", "coordinates": [ -6.067988700890806, 42.647765039059038 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 9310007, "Nombre": "YESA", "Nombre SEP": "YESA", "Otro nombr": "---", "Fecha": "31\/12\/1959", "Anyo": 1959, "Rio": "ARAGON", "Municipio": "YESA", "Cuenca": "EBRO", "Provincia": "NAVARRA", "x": 648990, "y": 4719190, "Tipos": "Abastecimiento, Riego, ---", "time": 1959 }, "geometry": { "type": "Point", "coordinates": [ -1.182469870060244, 42.615042848597611 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 5230007, "Nombre": "ZOCUECA (AZUD)", "Nombre SEP": "ZOCUECA", "Otro nombr": "---", "Fecha": "31\/12\/1940", "Anyo": 1940, "Rio": "RUMBLAR", "Municipio": "GUARROM?N", "Cuenca": "GUADALQUIVIR", "Provincia": "JAEN", "x": 427175, "y": 4217080, "Tipos": "Riego, Abastecimiento, ---", "time": 1940 }, "geometry": { "type": "Point", "coordinates": [ -3.830909374939176, 38.095783508789729 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "codpresa": 4060070, "Nombre": "ZUJAR (DIQUE DEL COLLADO)", "Nombre SEP": "ZUJAR", "Otro nombr": "---", "Fecha": "01\/01\/1964", "Anyo": 1964, "Rio": "ZUJAR", "Municipio": "CASTUERA, ESPARRAGOSA DE LARES", "Cuenca": "GUADIANA", "Provincia": "BADAJOZ", "x": 285155, "y": 4310665, "Tipos": "Abastecimiento, Hidroel?ctrico, Riego", "time": 1964 }, "geometry": { "type": "Point", "coordinates": [ -5.478124289639173, 38.918614267614409 ] } }
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,34 +0,0 @@
|
||||||
{
|
|
||||||
"type": "FeatureCollection",
|
|
||||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4258" } },
|
|
||||||
"features": [
|
|
||||||
{ "type": "Feature", "properties": { "ID": 250, "ID_CODIGO": "0101S", "ID_HOJA": "25", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "25011", "ETIQUETA": "Alcarras", "PENALES_GE": "PEN_09", "NOMBRE": "Vallmanya", "PROVINCIA": "Lleida", "TIPO_ENTID": "Entidad singular", "LON": "0.39542025", "LAT": "41.61363242", "PENALES_10": "1944-", "PENALES_11": "80 (1944)", "PENALES_42": "Particular: M. Llagostera", "PENALES_43": "Granjas y colonizacion", "FECHA_FIN": 1944, "FECHA_INI": null }, "geometry": { "type": "Point", "coordinates": [ 0.465756945467889, 41.609345383756143 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 1222, "ID_CODIGO": "0101S", "ID_HOJA": "19", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "19045", "ETIQUETA": "Aunyon", "PENALES_GE": "PEN_03", "NOMBRE": "Entrepenyas", "PROVINCIA": "Guadalajara", "TIPO_ENTID": "Entidad singular", "LON": "-2.75129514", "LAT": "40.49659664", "PENALES_10": "1946-", "PENALES_11": null, "PENALES_42": null, "PENALES_43": "Sin datos", "FECHA_FIN": 1946, "FECHA_INI": null }, "geometry": { "type": "Point", "coordinates": [ -2.779169203389314, 40.513219720016224 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 1355, "ID_CODIGO": "0101S", "ID_HOJA": "24", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "24012", "ETIQUETA": "Barrios de Luna, Los", "PENALES_GE": "PEN_08", "NOMBRE": "Los Barrios de Luna", "PROVINCIA": "Leon", "TIPO_ENTID": "Municipio", "LON": "-5.86189069", "LAT": "42.84540971", "PENALES_10": "1952-1955", "PENALES_11": "40 (1952); 40 (1953); 40 (1954); 34 (1955)", "PENALES_42": "Particular: Herederos de Ginés Navarro", "PENALES_43": "Construccion de casa de ma¡quinas y tunel para pantano y central electrica", "FECHA_FIN": 1952, "FECHA_INI": 1955 }, "geometry": { "type": "Point", "coordinates": [ -5.856009490679139, 42.84873094132697 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 1774, "ID_CODIGO": "0101S", "ID_HOJA": "28", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "28027", "ETIQUETA": "Buitrago del Lozoya", "PENALES_GE": "PEN_11", "NOMBRE": "Buitrago del Lozoya", "PROVINCIA": "Madrid", "TIPO_ENTID": "Municipio", "LON": "-3.63645135", "LAT": "40.993572", "PENALES_10": "1946-1952", "PENALES_11": "40 (1946); 204 (1948); 175 (1949); 179 (1950); 306 (1951)", "PENALES_42": "Oficial", "PENALES_43": "Embalse de Riosequillo", "FECHA_FIN": 1946, "FECHA_INI": 1952 }, "geometry": { "type": "Point", "coordinates": [ -3.627181352142545, 40.988420762833037 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 1794, "ID_CODIGO": "0101S", "ID_HOJA": "09", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "09059", "ETIQUETA": "Burgos", "PENALES_GE": "PEN_01", "NOMBRE": "Burgos", "PROVINCIA": "Burgos", "TIPO_ENTID": "Municipio", "LON": "-3.70419805", "LAT": "42.34113004", "PENALES_10": "?", "PENALES_11": null, "PENALES_42": null, "PENALES_43": "Canales de riego Rio Riaza", "FECHA_FIN": null, "FECHA_INI": null }, "geometry": { "type": "Point", "coordinates": [ -3.682016677424099, 42.351483325089447 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 2423, "ID_CODIGO": "0101S", "ID_HOJA": "46", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "46106", "ETIQUETA": "Chelva", "PENALES_GE": "PEN_24", "NOMBRE": "Chelva", "PROVINCIA": "Valencia", "TIPO_ENTID": "Municipio", "LON": "-0.99729278", "LAT": "39.74732697", "PENALES_10": "1941-", "PENALES_11": "300 (1941)", "PENALES_42": "Particular: Portolés y CÃa", "PENALES_43": "Construccion del Pantano del Generalisimo", "FECHA_FIN": 1941, "FECHA_INI": null }, "geometry": { "type": "Point", "coordinates": [ -1.017024498902831, 39.742711029086216 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 3133, "ID_CODIGO": "0101S", "ID_HOJA": "49", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "49076", "ETIQUETA": "Fresno de la Ribera", "PENALES_GE": "PEN_26", "NOMBRE": "Fresno de la Ribera", "PROVINCIA": "Zamora", "TIPO_ENTID": "Municipio", "LON": "-5.56578083", "LAT": "41.52927639", "PENALES_10": "1945-1946", "PENALES_11": "95 (1945); 55 (1946)", "PENALES_42": "Particular: don Ramón Echave", "PENALES_43": "Canal de riego del Toro", "FECHA_FIN": 1945, "FECHA_INI": 1946 }, "geometry": { "type": "Point", "coordinates": [ -5.566205452246787, 41.540988234248076 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 3218, "ID_CODIGO": "0101S", "ID_HOJA": "22", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "22113", "ETIQUETA": "Fueva, La", "PENALES_GE": "PEN_07", "NOMBRE": "Mediano", "PROVINCIA": "Huesca", "TIPO_ENTID": "Entidad singular", "LON": "0.19207773", "LAT": "42.31243647", "PENALES_10": "1943-1955", "PENALES_11": "50 (1943); 35 (1952); 55 (1953); 68 (1954); 35 (1955)", "PENALES_42": "Particular: VÃas y Riego; Dragados y Construcciones", "PENALES_43": "Construccion de pantano sobre rio Cinca", "FECHA_FIN": 1943, "FECHA_INI": 1955 }, "geometry": { "type": "Point", "coordinates": [ 0.271085849455653, 42.365176493970083 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 3456, "ID_CODIGO": "0101S", "ID_HOJA": "41", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "41049", "ETIQUETA": "Guillena", "PENALES_GE": "PEN_20", "NOMBRE": "Guillena", "PROVINCIA": "Sevilla", "TIPO_ENTID": "Municipio", "LON": "-6.05232296", "LAT": "37.53939693", "PENALES_10": "1953-1955", "PENALES_11": "29 (1953); 65 (1954); 19 (1955)", "PENALES_42": "Oficial: INC", "PENALES_43": "Construccion poblado Torre de la Reina", "FECHA_FIN": 1953, "FECHA_INI": 1955 }, "geometry": { "type": "Point", "coordinates": [ -6.087256633196942, 37.615224698043349 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 3718, "ID_CODIGO": "0101S", "ID_HOJA": "22", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "22130", "ETIQUETA": "Jaca", "PENALES_GE": "PEN_06", "NOMBRE": "Guasa", "PROVINCIA": "Huesca", "TIPO_ENTID": "Entidad singular", "LON": "-0.51257049", "LAT": "42.56794878", "PENALES_10": "1962-", "PENALES_11": "20 (1962)", "PENALES_42": "Particular: Cimentac y Obras SL", "PENALES_43": "Construccion de embalse de riego del Alto Aragon", "FECHA_FIN": 1962, "FECHA_INI": null }, "geometry": { "type": "Point", "coordinates": [ -0.55148321577478, 42.550798986917258 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 3998, "ID_CODIGO": "0101S", "ID_HOJA": "26", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "26089", "ETIQUETA": "Logronyo", "PENALES_GE": "PEN_15", "NOMBRE": "Logronyo", "PROVINCIA": "La Rioja", "TIPO_ENTID": "Municipio", "LON": "-2.44565538", "LAT": "42.46644945", "PENALES_10": "1949-1958", "PENALES_11": "65 (1949); 66 (1950); 30 (1953); 35 (1954); 50 (1955)", "PENALES_42": "Particular: IngenierÃa y Construcciones Marcor SA", "PENALES_43": "Construccion del Pantano de Mansilla", "FECHA_FIN": 1949, "FECHA_INI": 1958 }, "geometry": { "type": "Point", "coordinates": [ -2.453947532865029, 42.463673963568326 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 4169, "ID_CODIGO": "0101S", "ID_HOJA": "13", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "13053", "ETIQUETA": "Manzanares", "PENALES_GE": "PEN_02", "NOMBRE": "Herrera de la Mancha", "PROVINCIA": "Ciudad Real", "TIPO_ENTID": "Entidad singular", "LON": "-3.24773295", "LAT": "39.08246702", "PENALES_10": "1961-1962", "PENALES_11": "96 (1962)", "PENALES_42": null, "PENALES_43": "Actividades agicolas y ganaderas", "FECHA_FIN": 1961, "FECHA_INI": 1962 }, "geometry": { "type": "Point", "coordinates": [ -3.376261145388998, 39.02728158551411 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 4590, "ID_CODIGO": "0101S", "ID_HOJA": "30", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "30028", "ETIQUETA": "Moratalla", "PENALES_GE": "PEN_13", "NOMBRE": "Salmeron", "PROVINCIA": "Murcia", "TIPO_ENTID": "Entidad singular", "LON": "-1.693612724", "LAT": "38.33453325", "PENALES_10": "1952-1957", "PENALES_11": "30 (1952); 70 (1954); 70 (1955)", "PENALES_42": "Particular: Construcciones civiles SA", "PENALES_43": "Pantano sobre el rio Segura", "FECHA_FIN": 1952, "FECHA_INI": 1957 }, "geometry": { "type": "Point", "coordinates": [ -1.99094658141272, 38.198899817863577 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 5010, "ID_CODIGO": "0101S", "ID_HOJA": "26", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "26112", "ETIQUETA": "Ortigosa de Cameros", "PENALES_GE": "PEN_16", "NOMBRE": "Ortigosa de Cameros", "PROVINCIA": "La Rioja", "TIPO_ENTID": "Municipio", "LON": "-2.70465368", "LAT": "42.1761987", "PENALES_10": "1953-1962", "PENALES_11": "37 (1953); 60 (1956); 555 (1958); 29 (1959); 83 (1960); 88 (1961); 66 (1962)", "PENALES_42": "Particular: Ereño y CÃa SA", "PENALES_43": "Pantano Gonzalez Lacasa y canales de alimentacion", "FECHA_FIN": 1953, "FECHA_INI": 1962 }, "geometry": { "type": "Point", "coordinates": [ -2.714342424345813, 42.161139420790271 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 5038, "ID_CODIGO": "0101S", "ID_HOJA": "32", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "32054", "ETIQUETA": "Ourense", "PENALES_GE": "PEN_14", "NOMBRE": "Ourense", "PROVINCIA": "Ourense", "TIPO_ENTID": "Municipio", "LON": "-7.86368375", "LAT": "42.33654919", "PENALES_10": "1952-1953", "PENALES_11": "400 (1952); 100 (1953)", "PENALES_42": "Particular: Dragados y Construcciones", "PENALES_43": "Construccion Pantano y salto de agua San Esteban del Sil", "FECHA_FIN": 1952, "FECHA_INI": 1953 }, "geometry": { "type": "Point", "coordinates": [ -7.889790170575986, 42.350745577477689 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 5101, "ID_CODIGO": "0101S", "ID_HOJA": "19", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "19208", "ETIQUETA": "Palmaces de Jadraque", "PENALES_GE": "PEN_04", "NOMBRE": "Palmaces de Jadraque", "PROVINCIA": "Guadalajara", "TIPO_ENTID": "Municipio", "LON": "-2.91087565", "LAT": "41.05557016", "PENALES_10": "1942-1946", "PENALES_11": "50 (1942); 50 (1945)", "PENALES_42": "Particular: ECIA", "PENALES_43": "Construccion de pantano", "FECHA_FIN": 1942, "FECHA_INI": 1946 }, "geometry": { "type": "Point", "coordinates": [ -2.915225938895236, 41.059027859310156 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 5176, "ID_CODIGO": "0101S", "ID_HOJA": "28", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "28107", "ETIQUETA": "Patones", "PENALES_GE": "PEN_12", "NOMBRE": "Patones", "PROVINCIA": "Madrid", "TIPO_ENTID": "Municipio", "LON": "-3.49303196", "LAT": "40.86549042", "PENALES_10": "1957-1960", "PENALES_11": "62 (1958); 94 (1961)", "PENALES_42": "Particular: Construcción AMSA", "PENALES_43": "Abastecimiento de Madrid (Canal del Jarama)", "FECHA_FIN": 1957, "FECHA_INI": 1960 }, "geometry": { "type": "Point", "coordinates": [ -3.484801404498634, 40.882766244148172 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 5596, "ID_CODIGO": "0101S", "ID_HOJA": "22", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "22187", "ETIQUETA": "Puebla de Castro, La", "PENALES_GE": "PEN_05", "NOMBRE": "Lago de Barasona", "PROVINCIA": "Huesca", "TIPO_ENTID": "Entidad singular", "LON": "0.30855771", "LAT": "42.14693172", "PENALES_10": "1946-1949", "PENALES_11": "180 (1948)", "PENALES_42": null, "PENALES_43": "Construccion embalse y central electrica", "FECHA_FIN": 1946, "FECHA_INI": 1949 }, "geometry": { "type": "Point", "coordinates": [ 0.296706312526359, 42.136568451058537 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 5621, "ID_CODIGO": "0101S", "ID_HOJA": "41", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "41079", "ETIQUETA": "Puebla del Rio, La", "PENALES_GE": "PEN_21", "NOMBRE": "La Puebla del Rio", "PROVINCIA": "Sevilla", "TIPO_ENTID": "Municipio", "LON": "-6.06098644", "LAT": "37.26894589", "PENALES_10": "1952-1955", "PENALES_11": "50 (1952); 105 (1953); 50 (1954); 28 (1955)", "PENALES_42": "Oficial: INV; Particular: Gil Grávalos", "PENALES_43": "Transformacion agricola de la Isla Mayor.Construccion poblado El Puntal en zona arrocera", "FECHA_FIN": 1952, "FECHA_INI": 1955 }, "geometry": { "type": "Point", "coordinates": [ -6.144357045505601, 37.105964221872803 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 5869, "ID_CODIGO": "0101S", "ID_HOJA": "27", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "27054", "ETIQUETA": "Riotorto", "PENALES_GE": "PEN_10", "NOMBRE": "O Courel", "PROVINCIA": "Lugo", "TIPO_ENTID": "Entidad singular", "LON": "-7.24265041", "LAT": "43.25922401", "PENALES_10": "1955-1961", "PENALES_11": "50 (1955); 45 (1960); 39 (1961)", "PENALES_42": "Oficial: ingeniero jefe distrito de Lugo", "PENALES_43": "Repoblacion forestal", "FECHA_FIN": 1955, "FECHA_INI": 1961 }, "geometry": { "type": "Point", "coordinates": [ -7.264802610682334, 43.324906391471366 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 5988, "ID_CODIGO": "0101S", "ID_HOJA": "39", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "39065", "ETIQUETA": "Rozas de Valdearroyo, Las", "PENALES_GE": "PEN_17", "NOMBRE": "Arroyo", "PROVINCIA": "Cantabria", "TIPO_ENTID": "Entidad singular", "LON": "-4.05447654", "LAT": "42.97244015", "PENALES_10": "1943-1949", "PENALES_11": "258 (1943); 90 (1945); 86 (1946)", "PENALES_42": "Particular: VÃas y Riegos", "PENALES_43": "Construccion de pantano en el Ebro", "FECHA_FIN": 1943, "FECHA_INI": 1949 }, "geometry": { "type": "Point", "coordinates": [ -4.02129402597924, 42.967644033157228 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 6605, "ID_CODIGO": "0101S", "ID_HOJA": "40", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "40194", "ETIQUETA": "Segovia", "PENALES_GE": "PEN_19", "NOMBRE": "Segovia", "PROVINCIA": "Segovia", "TIPO_ENTID": "Municipio", "LON": "-4.12524116", "LAT": "40.9498703", "PENALES_10": "?", "PENALES_11": null, "PENALES_42": null, "PENALES_43": "Pantanos y canales de riego", "FECHA_FIN": null, "FECHA_INI": null }, "geometry": { "type": "Point", "coordinates": [ -4.168816743529606, 40.902435466038774 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 6669, "ID_CODIGO": "0101S", "ID_HOJA": "45", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "45162", "ETIQUETA": "Sevilleja de la Jara", "PENALES_GE": "PEN_22", "NOMBRE": "Puerto Rey", "PROVINCIA": "Toledo", "TIPO_ENTID": "Entidad singular", "LON": "-5.02124105", "LAT": "39.44839036", "PENALES_10": "1944-", "PENALES_11": "50 (1944)", "PENALES_42": "Particular: Hnos. Nicolás González", "PENALES_43": "Obras de canales", "FECHA_FIN": 1944, "FECHA_INI": null }, "geometry": { "type": "Point", "coordinates": [ -4.955504446464523, 39.529660326065823 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 6820, "ID_CODIGO": "0101S", "ID_HOJA": "45", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "45165", "ETIQUETA": "Talavera de la Reina", "PENALES_GE": "PEN_23", "NOMBRE": "Talavera de la Reina", "PROVINCIA": "Toledo", "TIPO_ENTID": "Municipio", "LON": "-4.83370199", "LAT": "39.96016737", "PENALES_10": "1942-", "PENALES_11": "342 (1942)", "PENALES_42": "Particular: Hnos. Nicolás González", "PENALES_43": "Presa del Alberche", "FECHA_FIN": 1942, "FECHA_INI": null }, "geometry": { "type": "Point", "coordinates": [ -4.849164112687478, 39.953727453826033 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 6860, "ID_CODIGO": "0101S", "ID_HOJA": "50", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "50252", "ETIQUETA": "Tauste", "PENALES_GE": "PEN_28", "NOMBRE": "Tauste", "PROVINCIA": "Zaragoza", "TIPO_ENTID": "Municipio", "LON": "-1.25694062", "LAT": "41.92139418", "PENALES_10": "1956-1959", "PENALES_11": "11 (1959)", "PENALES_42": "Particular: Bernal Pareja SA", "PENALES_43": "Transformacion en regadio y red de acequias al canal de las Bardenas", "FECHA_FIN": 1956, "FECHA_INI": 1959 }, "geometry": { "type": "Point", "coordinates": [ -1.201983595871645, 41.948501198951945 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 6948, "ID_CODIGO": "0101S", "ID_HOJA": "49", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "49219", "ETIQUETA": "Toro", "PENALES_GE": "PEN_27", "NOMBRE": "Toro", "PROVINCIA": "Zamora", "TIPO_ENTID": "Municipio", "LON": "-5.39464249", "LAT": "41.51990968", "PENALES_10": "1949-1951", "PENALES_11": "17 (1949); 60 (1950)", "PENALES_42": "Particular: Gutiérrez Oliva y Bourne SA", "PENALES_43": "Primer tramo Canal de Toro", "FECHA_FIN": 1949, "FECHA_INI": 1951 }, "geometry": { "type": "Point", "coordinates": [ -5.436185775300411, 41.473664323099761 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 7386, "ID_CODIGO": "0101S", "ID_HOJA": "47", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "47186", "ETIQUETA": "Valladolid", "PENALES_GE": "PEN_25", "NOMBRE": "Valladolid", "PROVINCIA": "Valladolid", "TIPO_ENTID": "Municipio", "LON": "-4.72334924", "LAT": "41.65232777", "PENALES_10": "?", "PENALES_11": null, "PENALES_42": null, "PENALES_43": "Pantano y canales rio Riaza", "FECHA_FIN": null, "FECHA_INI": null }, "geometry": { "type": "Point", "coordinates": [ -4.777245726307775, 41.661674380123905 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "ID": 8188, "ID_CODIGO": "0101S", "ID_HOJA": "50", "TIPO_0101": "MUNICIPIO", "CODIGO_INE": "50298", "ETIQUETA": "Zuera", "PENALES_GE": "PEN_29", "NOMBRE": "Zuera", "PROVINCIA": "Zaragoza", "TIPO_ENTID": "Municipio", "LON": "-0.78671918", "LAT": "41.86907598", "PENALES_10": "1944-", "PENALES_11": "55 (1944)", "PENALES_42": "Particular: J. Dobarco", "PENALES_43": "Construccion de acequias", "FECHA_FIN": 1944, "FECHA_INI": null }, "geometry": { "type": "Point", "coordinates": [ -0.817802348432546, 41.908023578924961 ] } }
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,280 +0,0 @@
|
||||||
{
|
|
||||||
"type": "FeatureCollection",
|
|
||||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
|
|
||||||
"features": [
|
|
||||||
{ "type": "Feature", "properties": { "id": 1.0, "POBLADO": "Adriano", "IGN": "Marisma y Puntales Adriano", "PROVINCIA": "Sevilla", "ANO": 1965.0, "coord_X": -6.00252, "coord_Y": 37.189545 }, "geometry": { "type": "Point", "coordinates": [ -6.00251966, 37.189545249091204 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 2.0, "POBLADO": "Águeda del Castillo", "IGN": "Águeda del Caudillo", "PROVINCIA": "Salamanca", "ANO": 1949.0, "coord_X": -6.499125, "coord_Y": 40.56103 }, "geometry": { "type": "Point", "coordinates": [ -6.49912514, 40.561029879067817 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 3.0, "POBLADO": "Alagón del Caudillo", "IGN": "Alagón del Río", "PROVINCIA": "Cáceres", "ANO": 1957.0, "coord_X": -6.316975, "coord_Y": 39.973591 }, "geometry": { "type": "Point", "coordinates": [ -6.31697452, 39.973591379070982 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 4.0, "POBLADO": "Alberche del Caudillo", "IGN": "Alberche del Caudillo", "PROVINCIA": "Toledo", "ANO": 1952.0, "coord_X": -4.931707, "coord_Y": 39.910801 }, "geometry": { "type": "Point", "coordinates": [ -4.93170682, 39.910801269071335 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 5.0, "POBLADO": "Aldea de Santa Cruz", "IGN": "Santa Cruz", "PROVINCIA": "Córdoba", "ANO": 1956.0, "coord_X": -4.631241, "coord_Y": 37.734353 }, "geometry": { "type": "Point", "coordinates": [ -4.63124133, 37.734353089086554 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 6.0, "POBLADO": "Aldea del Conde", "IGN": "Talavera la Real", "PROVINCIA": "Badajoz", "ANO": 1968.0, "coord_X": -6.769931, "coord_Y": 38.878444 }, "geometry": { "type": "Point", "coordinates": [ -6.76993127, 38.878443559077894 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 7.0, "POBLADO": "Alera", "IGN": "Alera", "PROVINCIA": "Zaragoza", "ANO": 1960.0, "coord_X": -1.351146, "coord_Y": 42.309353 }, "geometry": { "type": "Point", "coordinates": [ -1.35114641, 42.30935259906078 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 8.0, "POBLADO": "Algallarín", "IGN": "Algallarín", "PROVINCIA": "Córdoba", "ANO": 1953.0, "coord_X": -4.456295, "coord_Y": 37.999805 }, "geometry": { "type": "Point", "coordinates": [ -4.45629543, 37.999804649084417 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 9.0, "POBLADO": "Aljaima", "IGN": "Nueva Aljaima-Tres Leguas", "PROVINCIA": "Málaga", "ANO": 1971.0, "coord_X": -4.630935, "coord_Y": 36.729223 }, "geometry": { "type": "Point", "coordinates": [ -4.63093476, 36.729222819095369 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 10.0, "POBLADO": "Alonso Ojeda", "IGN": "Alonso de Ojeda", "PROVINCIA": "Cáceres", "ANO": 1964.0, "coord_X": -5.955951, "coord_Y": 39.103691 }, "geometry": { "type": "Point", "coordinates": [ -5.95595098, 39.103691069076376 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 11.0, "POBLADO": "Alvarado", "IGN": "Alvarado", "PROVINCIA": "Badajoz", "ANO": 1961.0, "coord_X": -6.791336, "coord_Y": 38.808446 }, "geometry": { "type": "Point", "coordinates": [ -6.79133648, 38.808446439078388 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 12.0, "POBLADO": "Amatos", "IGN": "Amatos", "PROVINCIA": "Salamanca", "ANO": 1962.0, "coord_X": -5.505729, "coord_Y": 40.964079 }, "geometry": { "type": "Point", "coordinates": [ -5.50572878, 40.964079119065886 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 13.0, "POBLADO": "Arneiro", "IGN": "Arneiro", "PROVINCIA": "Lugo", "ANO": 1958.0, "coord_X": -7.487895, "coord_Y": 43.266432 }, "geometry": { "type": "Point", "coordinates": [ -7.48789463, 43.26643241905839 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 14.0, "POBLADO": "Arrabal de San Sebastián", "IGN": "Arrabal de San Sebastián", "PROVINCIA": "Salamanca", "ANO": 1953.0, "coord_X": -6.520918, "coord_Y": 40.581757 }, "geometry": { "type": "Point", "coordinates": [ -6.52091819, 40.581757489067726 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 15.0, "POBLADO": "Arroturas", "IGN": "Arroturas", "PROVINCIA": "Jaén", "ANO": 1956.0, "coord_X": -3.049599, "coord_Y": 38.056393 }, "geometry": { "type": "Point", "coordinates": [ -3.0495986, 38.056393119083978 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 16.0, "POBLADO": "Artasona del Llano", "IGN": "Artasona del Llano", "PROVINCIA": "Huesca", "ANO": 1952.0, "coord_X": -0.57725, "coord_Y": 42.003372 }, "geometry": { "type": "Point", "coordinates": [ -0.57724968, 42.003372339061762 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 17.0, "POBLADO": "Atochares", "IGN": "Atochares", "PROVINCIA": "Almería", "ANO": 1960.0, "coord_X": -2.159647, "coord_Y": 36.880925 }, "geometry": { "type": "Point", "coordinates": [ -2.15964731, 36.880924719093976 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 18.0, "POBLADO": "Balboa", "IGN": "Balboa", "PROVINCIA": "Badajoz", "ANO": 1955.0, "coord_X": -6.817176, "coord_Y": 38.904889 }, "geometry": { "type": "Point", "coordinates": [ -6.81717629, 38.904889209077709 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 19.0, "POBLADO": "Barbaño", "IGN": "Barbaño", "PROVINCIA": "Badajoz", "ANO": 1953.0, "coord_X": -6.586675, "coord_Y": 38.874221 }, "geometry": { "type": "Point", "coordinates": [ -6.58667501, 38.874221389077917 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 20.0, "POBLADO": "Barca de la Florida", "IGN": "La Barca de la Florida", "PROVINCIA": "Cádiz", "ANO": 1956.0, "coord_X": -5.935398, "coord_Y": 36.64761 }, "geometry": { "type": "Point", "coordinates": [ -5.93539845, 36.647610489096138 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 21.0, "POBLADO": "Bárcena del Caudillo", "IGN": "Bárcena del Bierzo", "PROVINCIA": "León", "ANO": 1956.0, "coord_X": -6.594385, "coord_Y": 42.604354 }, "geometry": { "type": "Point", "coordinates": [ -6.59438491, 42.604353939059926 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 22.0, "POBLADO": "Bárdena del Caudillo", "IGN": "Bardenas", "PROVINCIA": "Zaragoza", "ANO": 1953.0, "coord_X": -1.200876, "coord_Y": 42.175156 }, "geometry": { "type": "Point", "coordinates": [ -1.20087584, 42.175155909061196 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 23.0, "POBLADO": "Barquilla de Pinares", "IGN": "Barquilla de Pinares", "PROVINCIA": "Cáceres", "ANO": 1957.0, "coord_X": -5.439768, "coord_Y": 40.052115 }, "geometry": { "type": "Point", "coordinates": [ -5.43976784, 40.052115199070535 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 24.0, "POBLADO": "Bazán", "IGN": "Bazán", "PROVINCIA": "Ciudad Real", "ANO": 1955.0, "coord_X": -3.544542, "coord_Y": 38.600296 }, "geometry": { "type": "Point", "coordinates": [ -3.54454237, 38.600295659079862 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 25.0, "POBLADO": "Belvís del Jarama", "IGN": "Belvis del Jarama", "PROVINCIA": "Madrid", "ANO": 1949.0, "coord_X": -3.550581, "coord_Y": 40.562991 }, "geometry": { "type": "Point", "coordinates": [ -3.55058119, 40.56299111906781 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 26.0, "POBLADO": "Bembezar del Caudillo", "IGN": "Bembézar del Caudillo", "PROVINCIA": "Córdoba", "ANO": 1958.0, "coord_X": -5.237822, "coord_Y": 37.795016 }, "geometry": { "type": "Point", "coordinates": [ -5.23782222, 37.795015859086057 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 27.0, "POBLADO": "Bernuy", "IGN": "Bernúy", "PROVINCIA": "Toledo", "ANO": 1946.0, "coord_X": -4.59708, "coord_Y": 39.921748 }, "geometry": { "type": "Point", "coordinates": [ -4.5970802, 39.92174823907127 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 28.0, "POBLADO": "Brovales", "IGN": "Brovales", "PROVINCIA": "Badajoz", "ANO": 1958.0, "coord_X": -6.683713, "coord_Y": 38.349994 }, "geometry": { "type": "Point", "coordinates": [ -6.68371324, 38.349994089081711 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 29.0, "POBLADO": "Buenavista", "IGN": "Buenavista", "PROVINCIA": "Granada", "ANO": 1957.0, "coord_X": -3.988162, "coord_Y": 37.105603 }, "geometry": { "type": "Point", "coordinates": [ -3.98816243, 37.10560344909193 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 30.0, "POBLADO": "Burguillos", "IGN": "Burguillos", "PROVINCIA": "Sevilla", "ANO": 1954.0, "coord_X": -5.966778, "coord_Y": 37.58683 }, "geometry": { "type": "Point", "coordinates": [ -5.96677775, 37.586829969087781 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 31.0, "POBLADO": "Calahonda", "IGN": "Calahonda", "PROVINCIA": "Granada", "ANO": 1959.0, "coord_X": -3.415475, "coord_Y": 36.701089 }, "geometry": { "type": "Point", "coordinates": [ -3.41547528, 36.701089079095638 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 32.0, "POBLADO": "Calera y Chozas", "IGN": "Calera y Chozas", "PROVINCIA": "Toledo", "ANO": 1952.0, "coord_X": -4.978464, "coord_Y": 39.88104 }, "geometry": { "type": "Point", "coordinates": [ -4.97846399, 39.881040049071508 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 33.0, "POBLADO": "Calonge", "IGN": "El Calonge", "PROVINCIA": "Córdoba", "ANO": 1954.0, "coord_X": -5.376141, "coord_Y": 37.671231 }, "geometry": { "type": "Point", "coordinates": [ -5.37614093, 37.67123117908708 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 34.0, "POBLADO": "Campillo del Río", "IGN": "Campillo del Río", "PROVINCIA": "Jaén", "ANO": 1953.0, "coord_X": -3.666631, "coord_Y": 37.958712 }, "geometry": { "type": "Point", "coordinates": [ -3.66663066, 37.95871240908474 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 35.0, "POBLADO": "Campo Hermoso", "IGN": "Campohermoso", "PROVINCIA": "Almería", "ANO": 1958.0, "coord_X": -2.131522, "coord_Y": 36.936882 }, "geometry": { "type": "Point", "coordinates": [ -2.1315216, 36.936881579093466 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 36.0, "POBLADO": "Camponuevo del Caudillo", "IGN": "La Mojonera", "PROVINCIA": "Almería", "ANO": 1958.0, "coord_X": -2.450375, "coord_Y": 37.289717 }, "geometry": { "type": "Point", "coordinates": [ -2.45037487, 37.289716589090318 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 37.0, "POBLADO": "Camporreal", "IGN": "Campo Real", "PROVINCIA": "Zaragoza", "ANO": 1959.0, "coord_X": -1.262493, "coord_Y": 42.544485 }, "geometry": { "type": "Point", "coordinates": [ -1.26249328, 42.544484659060096 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 38.0, "POBLADO": "Cantalobos", "IGN": "Cantalobos", "PROVINCIA": "Huesca", "ANO": 1956.0, "coord_X": -0.360428, "coord_Y": 41.830179 }, "geometry": { "type": "Point", "coordinates": [ -0.3604283, 41.830179349062355 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 39.0, "POBLADO": "Canturias", "IGN": "Las herencias", "PROVINCIA": "Toledo", "ANO": 1958.0, "coord_X": -4.921368, "coord_Y": 39.867766 }, "geometry": { "type": "Point", "coordinates": [ -4.92136776, 39.867765879071577 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 40.0, "POBLADO": "Cañada del Agra", "IGN": "Cañada de Agra", "PROVINCIA": "Albacete", "ANO": 1962.0, "coord_X": -1.696784, "coord_Y": 38.468409 }, "geometry": { "type": "Point", "coordinates": [ -1.69678356, 38.468409429080829 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 41.0, "POBLADO": "Cañatalba Alta", "IGN": "Domingo Pérez de Granada", "PROVINCIA": "Granada", "ANO": 1965.0, "coord_X": -3.509212, "coord_Y": 37.49645 }, "geometry": { "type": "Point", "coordinates": [ -3.50921227, 37.496449639088539 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 42.0, "POBLADO": "Carrascalejo de Huebra", "IGN": "Carrascalejo de Huebra", "PROVINCIA": "Salamanca", "ANO": 1960.0, "coord_X": -6.055131, "coord_Y": 40.720791 }, "geometry": { "type": "Point", "coordinates": [ -6.05513098, 40.720791399067039 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 43.0, "POBLADO": "Cártama", "IGN": "Cártama", "PROVINCIA": "Málaga", "ANO": 1965.0, "coord_X": -4.631717, "coord_Y": 36.710058 }, "geometry": { "type": "Point", "coordinates": [ -4.63171653, 36.710057819095546 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 44.0, "POBLADO": "Cartuja de Monegros", "IGN": "La Cartuja de Monegros", "PROVINCIA": "Huesca", "ANO": 1956.0, "coord_X": -0.288321, "coord_Y": 41.75555 }, "geometry": { "type": "Point", "coordinates": [ -0.28832056, 41.755550449062639 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 45.0, "POBLADO": "Casar de Miajadas", "IGN": "Casar de Miajadas", "PROVINCIA": "Cáceres", "ANO": 1962.0, "coord_X": -5.836438, "coord_Y": 39.121977 }, "geometry": { "type": "Point", "coordinates": [ -5.83643806, 39.12197692907624 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 46.0, "POBLADO": "Castellar de la Frontera", "IGN": "Castellar de la Frontera", "PROVINCIA": "Cádiz", "ANO": 1968.0, "coord_X": -5.453034, "coord_Y": 36.318745 }, "geometry": { "type": "Point", "coordinates": [ -5.45303398, 36.318744969099285 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 47.0, "POBLADO": "Castillejo", "IGN": "Castillejo", "PROVINCIA": "Salamanca", "ANO": 1959.0, "coord_X": -5.656803, "coord_Y": 40.685382 }, "geometry": { "type": "Point", "coordinates": [ -5.65680259, 40.685382149067216 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 48.0, "POBLADO": "Castillo de Doña Blanca", "IGN": "San Isidro del Guadalete", "PROVINCIA": "Cádiz", "ANO": 1964.0, "coord_X": -5.988922, "coord_Y": 36.643576 }, "geometry": { "type": "Point", "coordinates": [ -5.98892232, 36.643575589096166 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 49.0, "POBLADO": "Cerralba", "IGN": "Cerralba", "PROVINCIA": "Málaga", "ANO": 1962.0, "coord_X": -4.722332, "coord_Y": 36.745242 }, "geometry": { "type": "Point", "coordinates": [ -4.72233235, 36.745242229095233 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 50.0, "POBLADO": "Céspedes", "IGN": "Céspedes", "PROVINCIA": "Córdoba", "ANO": 1958.0, "coord_X": -5.25579, "coord_Y": 37.755861 }, "geometry": { "type": "Point", "coordinates": [ -5.25578966, 37.755860909086373 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 51.0, "POBLADO": "Chapatales", "IGN": "Los Chapatales", "PROVINCIA": "Sevilla", "ANO": 1963.0, "coord_X": -5.984005, "coord_Y": 37.151027 }, "geometry": { "type": "Point", "coordinates": [ -5.98400522, 37.151027019091543 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 52.0, "POBLADO": "Cilloruelo", "IGN": "Cilloruelo", "PROVINCIA": "Salamanca", "ANO": 1961.0, "coord_X": -5.473724, "coord_Y": 40.912079 }, "geometry": { "type": "Point", "coordinates": [ -5.47372439, 40.912078569066139 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 53.0, "POBLADO": "Cinco Casas", "IGN": "Cinco Casas", "PROVINCIA": "Ciudad Real", "ANO": 1957.0, "coord_X": -3.235725, "coord_Y": 39.17445 }, "geometry": { "type": "Point", "coordinates": [ -3.23572473, 39.174449929075891 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 54.0, "POBLADO": "Conejera", "IGN": "Ciudad Rodrigo", "PROVINCIA": "Salamanca", "ANO": 1956.0, "coord_X": -6.534158, "coord_Y": 40.597309 }, "geometry": { "type": "Point", "coordinates": [ -6.5341577, 40.597308559067642 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 55.0, "POBLADO": "Conquista", "IGN": "Conquista del Guadiana", "PROVINCIA": "Badajoz", "ANO": 1964.0, "coord_X": -6.038124, "coord_Y": 39.075094 }, "geometry": { "type": "Point", "coordinates": [ -6.03812408, 39.075094019076552 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 56.0, "POBLADO": "Corbaz", "IGN": "Curbe", "PROVINCIA": "Huesca", "ANO": 1956.0, "coord_X": -0.312093, "coord_Y": 41.906056 }, "geometry": { "type": "Point", "coordinates": [ -0.3120932, 41.906056489062095 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 57.0, "POBLADO": "Corchuna", "IGN": "Carchuna", "PROVINCIA": "Granada", "ANO": 1964.0, "coord_X": -3.442711, "coord_Y": 36.702749 }, "geometry": { "type": "Point", "coordinates": [ -3.44271113, 36.70274889909561 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 58.0, "POBLADO": "Cordobilla", "IGN": "Cordobilla", "PROVINCIA": "Córdoba", "ANO": 1964.0, "coord_X": -4.728934, "coord_Y": 37.35917 }, "geometry": { "type": "Point", "coordinates": [ -4.72893409, 37.359169499089724 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 59.0, "POBLADO": "Corralejos", "IGN": "Cazalegas", "PROVINCIA": "Toledo", "ANO": 1958.0, "coord_X": -4.677371, "coord_Y": 40.010787 }, "geometry": { "type": "Point", "coordinates": [ -4.67737088, 40.010787059070765 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 60.0, "POBLADO": "Cortichelles", "IGN": "Cortichelles", "PROVINCIA": "València\/Valencia", "ANO": 1962.0, "coord_X": -0.617055, "coord_Y": 39.399239 }, "geometry": { "type": "Point", "coordinates": [ -0.61705517, 39.399239089074435 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 61.0, "POBLADO": "Cortijo de San Isidro", "IGN": "Cortijo de San Isidro", "PROVINCIA": "Madrid", "ANO": 1947.0, "coord_X": -3.565587, "coord_Y": 40.055068 }, "geometry": { "type": "Point", "coordinates": [ -3.56558652, 40.055068179070517 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 62.0, "POBLADO": "Cortijo Nuevo", "IGN": "Cortijo Nuevo", "PROVINCIA": "Jaén", "ANO": 1959.0, "coord_X": -3.021922, "coord_Y": 37.614002 }, "geometry": { "type": "Point", "coordinates": [ -3.02192216, 37.614002179087549 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 63.0, "POBLADO": "Cotilfar Baja", "IGN": "Cotilfar", "PROVINCIA": "Granada", "ANO": 1959.0, "coord_X": -3.474599, "coord_Y": 37.515026 }, "geometry": { "type": "Point", "coordinates": [ -3.47459865, 37.515026219088391 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 64.0, "POBLADO": "Coto de Bornos", "IGN": "Coto de Bornos", "PROVINCIA": "Cádiz", "ANO": 1952.0, "coord_X": -5.693123, "coord_Y": 36.8516 }, "geometry": { "type": "Point", "coordinates": [ -5.69312301, 36.851599999094248 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 65.0, "POBLADO": "Docenario", "IGN": "San Cristóbal de Zalamea", "PROVINCIA": "Badajoz", "ANO": 1959.0, "coord_X": -5.694019, "coord_Y": 38.678495 }, "geometry": { "type": "Point", "coordinates": [ -5.69401855, 38.678494599079308 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 66.0, "POBLADO": "Donadío", "IGN": "Donadío", "PROVINCIA": "Jaén", "ANO": 1954.0, "coord_X": -3.365955, "coord_Y": 37.927587 }, "geometry": { "type": "Point", "coordinates": [ -3.36595536, 37.927587329084993 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 67.0, "POBLADO": "Doña Ana", "IGN": "Doña Ana", "PROVINCIA": "Málaga", "ANO": 1965.0, "coord_X": -4.592072, "coord_Y": 36.717703 }, "geometry": { "type": "Point", "coordinates": [ -4.592072222, 36.717702799095477 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 68.0, "POBLADO": "El Arquillo", "IGN": "Arquillos", "PROVINCIA": "Jaén", "ANO": 1960.0, "coord_X": -3.43144, "coord_Y": 38.182 }, "geometry": { "type": "Point", "coordinates": [ -3.43144008, 38.181999609082993 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 69.0, "POBLADO": "El Batán", "IGN": "El Batán", "PROVINCIA": "Cáceres", "ANO": 1957.0, "coord_X": -6.375107, "coord_Y": 39.973628 }, "geometry": { "type": "Point", "coordinates": [ -6.37510672, 39.973627929070979 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 70.0, "POBLADO": "El Bayo", "IGN": "El Bayo", "PROVINCIA": "Zaragoza", "ANO": 1954.0, "coord_X": -1.26408, "coord_Y": 42.188288 }, "geometry": { "type": "Point", "coordinates": [ -1.26408018, 42.188288179061153 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 71.0, "POBLADO": "El Bercial", "IGN": "El Bercial", "PROVINCIA": "Toledo", "ANO": 1953.0, "coord_X": -5.107936, "coord_Y": 39.790165 }, "geometry": { "type": "Point", "coordinates": [ -5.10793594, 39.79016547907203 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 72.0, "POBLADO": "El Boyeral", "IGN": "Sangüesa\/Zangoza", "PROVINCIA": "Navarra", "ANO": 1959.0, "coord_X": -1.282583, "coord_Y": 42.575289 }, "geometry": { "type": "Point", "coordinates": [ -1.28258288, 42.575288819059999 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 73.0, "POBLADO": "El Chaparral", "IGN": "El Chaparral", "PROVINCIA": "Granada", "ANO": 1957.0, "coord_X": -3.656452, "coord_Y": 37.256633 }, "geometry": { "type": "Point", "coordinates": [ -3.65645197, 37.256633339090598 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 74.0, "POBLADO": "El Cuervo", "IGN": "El Cuervo", "PROVINCIA": "Sevilla", "ANO": 1946.0, "coord_X": -6.040993, "coord_Y": 36.854772 }, "geometry": { "type": "Point", "coordinates": [ -6.04099329, 36.854772379094207 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 75.0, "POBLADO": "El Priorato", "IGN": "El Priorato", "PROVINCIA": "Sevilla", "ANO": 1964.0, "coord_X": -5.43967, "coord_Y": 37.690209 }, "geometry": { "type": "Point", "coordinates": [ -5.43967049, 37.690209379086909 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 76.0, "POBLADO": "El Puntalón", "IGN": "Puntalón", "PROVINCIA": "Granada", "ANO": 1960.0, "coord_X": -3.48058, "coord_Y": 36.72888 }, "geometry": { "type": "Point", "coordinates": [ -3.48057961, 36.728879809095375 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 77.0, "POBLADO": "El Realengo", "IGN": "El Realengo", "PROVINCIA": "Alacant\/Alicante", "ANO": 1959.0, "coord_X": -0.811499, "coord_Y": 38.201282 }, "geometry": { "type": "Point", "coordinates": [ -0.8114988, 38.201282339082852 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 78.0, "POBLADO": "El Temple", "IGN": "El Temple", "PROVINCIA": "Huesca", "ANO": 1946.0, "coord_X": -0.751517, "coord_Y": 41.97495 }, "geometry": { "type": "Point", "coordinates": [ -0.7515171, 41.97495009906185 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 79.0, "POBLADO": "El Torno", "IGN": "El Torno", "PROVINCIA": "Cádiz", "ANO": 1943.0, "coord_X": -5.970114, "coord_Y": 36.619715 }, "geometry": { "type": "Point", "coordinates": [ -5.97011419, 36.619714969096407 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 80.0, "POBLADO": "El Torrejón", "IGN": "Torrejón de Alba", "PROVINCIA": "Salamanca", "ANO": 1960.0, "coord_X": -5.541495, "coord_Y": 40.796663 }, "geometry": { "type": "Point", "coordinates": [ -5.54149454, 40.796662689066679 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 81.0, "POBLADO": "El Torviscal", "IGN": "El Torviscal", "PROVINCIA": "Badajoz", "ANO": 1957.0, "coord_X": -5.75585, "coord_Y": 39.072109 }, "geometry": { "type": "Point", "coordinates": [ -5.75585034, 39.072108709076574 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 82.0, "POBLADO": "El Trobal", "IGN": "El Trobal", "PROVINCIA": "Sevilla", "ANO": 1962.0, "coord_X": -5.949661, "coord_Y": 37.107283 }, "geometry": { "type": "Point", "coordinates": [ -5.94966067, 37.10728317909193 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 83.0, "POBLADO": "Encinarejo", "IGN": "Encinarejo de Córdoba", "PROVINCIA": "Córdoba", "ANO": 1948.0, "coord_X": -4.927943, "coord_Y": 37.831708 }, "geometry": { "type": "Point", "coordinates": [ -4.9279429, 37.831708389085755 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 84.0, "POBLADO": "Entrerríos", "IGN": "Entrerríos", "PROVINCIA": "Badajoz", "ANO": 1955.0, "coord_X": -5.721124, "coord_Y": 38.995446 }, "geometry": { "type": "Point", "coordinates": [ -5.72112444, 38.995445959077088 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 85.0, "POBLADO": "Espeluy", "IGN": "Espelúy", "PROVINCIA": "Jaén", "ANO": 1961.0, "coord_X": -3.862144, "coord_Y": 38.032247 }, "geometry": { "type": "Point", "coordinates": [ -3.86214441, 38.032246669084152 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 86.0, "POBLADO": "Esquivel", "IGN": "Esquivel", "PROVINCIA": "Sevilla", "ANO": 1951.0, "coord_X": -5.944791, "coord_Y": 37.545771 }, "geometry": { "type": "Point", "coordinates": [ -5.94479073, 37.545771039088123 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 87.0, "POBLADO": "Estacada", "IGN": "La Estacada", "PROVINCIA": "Murcia", "ANO": 1969.0, "coord_X": -1.335847, "coord_Y": 38.462935 }, "geometry": { "type": "Point", "coordinates": [ -1.33584653, 38.462935079080872 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 88.0, "POBLADO": "Estella del Marqués", "IGN": "Estella del Marqués", "PROVINCIA": "Cádiz", "ANO": 1954.0, "coord_X": -6.075115, "coord_Y": 36.684977 }, "geometry": { "type": "Point", "coordinates": [ -6.07511451, 36.684976839095782 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 89.0, "POBLADO": "Figarol", "IGN": "Figarol", "PROVINCIA": "Navarra", "ANO": 1962.0, "coord_X": -1.367952, "coord_Y": 42.351056 }, "geometry": { "type": "Point", "coordinates": [ -1.36795222, 42.35105610906065 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 90.0, "POBLADO": "Foncastín de Oliegos", "IGN": "Foncastín", "PROVINCIA": "Valladolid", "ANO": 1946.0, "coord_X": -5.018462, "coord_Y": 41.435035 }, "geometry": { "type": "Point", "coordinates": [ -5.01846236, 41.435035069063865 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 91.0, "POBLADO": "Francos", "IGN": "Nuevo Francos", "PROVINCIA": "Salamanca", "ANO": 1963.0, "coord_X": -5.495722, "coord_Y": 40.91926 }, "geometry": { "type": "Point", "coordinates": [ -5.49572239, 40.919260419066084 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 92.0, "POBLADO": "Fresno Alhóndiga", "IGN": "Fresno Alhándiga", "PROVINCIA": "Salamanca", "ANO": 1958.0, "coord_X": -5.616224, "coord_Y": 40.71244 }, "geometry": { "type": "Point", "coordinates": [ -5.6162236, 40.712439849067074 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 93.0, "POBLADO": "Frómista", "IGN": "Frómista", "PROVINCIA": "Palencia", "ANO": 1971.0, "coord_X": -4.402568, "coord_Y": 42.267743 }, "geometry": { "type": "Point", "coordinates": [ -4.40256752, 42.26774320906091 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 94.0, "POBLADO": "Frula", "IGN": "Frula", "PROVINCIA": "Huesca", "ANO": 1954.0, "coord_X": -0.448138, "coord_Y": 41.910695 }, "geometry": { "type": "Point", "coordinates": [ -0.44813757, 41.910694639062086 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 95.0, "POBLADO": "Fuensanta", "IGN": "Fuensanta", "PROVINCIA": "Granada", "ANO": 1956.0, "coord_X": -3.902586, "coord_Y": 37.18147 }, "geometry": { "type": "Point", "coordinates": [ -3.90258592, 37.181470319091261 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 96.0, "POBLADO": "Fuentes Nuevas", "IGN": "FuentesNuevas", "PROVINCIA": "León", "ANO": 1956.0, "coord_X": -6.640733, "coord_Y": 42.57461 }, "geometry": { "type": "Point", "coordinates": [ -6.64073254, 42.574610469060019 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 97.0, "POBLADO": "Gabarderal", "IGN": "Gabarderal", "PROVINCIA": "Navarra", "ANO": 1959.0, "coord_X": -1.298888, "coord_Y": 42.54205 }, "geometry": { "type": "Point", "coordinates": [ -1.2988885, 42.542050329060103 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 98.0, "POBLADO": "Gargáligas", "IGN": "Gargáligas", "PROVINCIA": "Badajoz", "ANO": 1956.0, "coord_X": -5.652253, "coord_Y": 39.052439 }, "geometry": { "type": "Point", "coordinates": [ -5.65225272, 39.052439449076708 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 99.0, "POBLADO": "Gascón de la Nava", "IGN": "Cascón de la Nava", "PROVINCIA": "Palencia", "ANO": 1959.0, "coord_X": -4.64491, "coord_Y": 42.056817 }, "geometry": { "type": "Point", "coordinates": [ -4.64491028, 42.056817119061577 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 100.0, "POBLADO": "Génova del Caudillo", "IGN": "Gévora", "PROVINCIA": "Badajoz", "ANO": 1954.0, "coord_X": -6.941761, "coord_Y": 38.920768 }, "geometry": { "type": "Point", "coordinates": [ -6.94176112, 38.920768209077586 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 101.0, "POBLADO": "Gimenells", "IGN": "Gimenells", "PROVINCIA": "Lleida", "ANO": 1945.0, "coord_X": 0.389125, "coord_Y": 41.652144 }, "geometry": { "type": "Point", "coordinates": [ 0.38912494, 41.652143559063013 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 102.0, "POBLADO": "Grijotas", "IGN": "Grijota", "PROVINCIA": "Palencia", "ANO": 1970.0, "coord_X": -4.581755, "coord_Y": 42.053985 }, "geometry": { "type": "Point", "coordinates": [ -4.58175519, 42.053985239061589 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 103.0, "POBLADO": "Guadajira", "IGN": "Guadajira", "PROVINCIA": "Badajoz", "ANO": 1955.0, "coord_X": -6.681241, "coord_Y": 38.852344 }, "geometry": { "type": "Point", "coordinates": [ -6.68124091, 38.852343499078074 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 104.0, "POBLADO": "Guadalcacín del Caudillo", "IGN": "Guadalcacín", "PROVINCIA": "Cádiz", "ANO": 1954.0, "coord_X": -6.088296, "coord_Y": 36.713687 }, "geometry": { "type": "Point", "coordinates": [ -6.08829577, 36.713687179095515 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 105.0, "POBLADO": "Guadalema", "IGN": "Guadalema de los Quintero", "PROVINCIA": "Sevilla", "ANO": 1947.0, "coord_X": -5.832417, "coord_Y": 37.055625 }, "geometry": { "type": "Point", "coordinates": [ -5.83241704, 37.055624829092388 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 106.0, "POBLADO": "Guadalén del Caudillo", "IGN": "Guadalén", "PROVINCIA": "Jaén", "ANO": 1953.0, "coord_X": -3.506819, "coord_Y": 38.142016 }, "geometry": { "type": "Point", "coordinates": [ -3.50681861, 38.142015799083303 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 107.0, "POBLADO": "Guadalimar", "IGN": "Guadalimar", "PROVINCIA": "Jaén", "ANO": 1954.0, "coord_X": -3.612506, "coord_Y": 38.020743 }, "geometry": { "type": "Point", "coordinates": [ -3.61250609, 38.02074266908425 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 108.0, "POBLADO": "Guadiana del Caudillo", "IGN": "Guadiana del Caudillo", "PROVINCIA": "Badajoz", "ANO": 1948.0, "coord_X": -6.690115, "coord_Y": 38.929472 }, "geometry": { "type": "Point", "coordinates": [ -6.69011476, 38.929472379077538 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 109.0, "POBLADO": "Guma", "IGN": "Guma", "PROVINCIA": "Burgos", "ANO": 1951.0, "coord_X": -3.516428, "coord_Y": 41.640774 }, "geometry": { "type": "Point", "coordinates": [ -3.51642812, 41.640773799063048 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 110.0, "POBLADO": "Hernán Cortés", "IGN": "Hernán Cortés", "PROVINCIA": "Badajoz", "ANO": 1962.0, "coord_X": -5.933109, "coord_Y": 39.026793 }, "geometry": { "type": "Point", "coordinates": [ -5.93310939, 39.026792819076881 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 111.0, "POBLADO": "Ivanrey", "IGN": "Ivanrey", "PROVINCIA": "Salamanca", "ANO": 1954.0, "coord_X": -6.560031, "coord_Y": 40.60755 }, "geometry": { "type": "Point", "coordinates": [ -6.56003071, 40.607550149067592 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 112.0, "POBLADO": "José Antonio", "IGN": "José Antonio", "PROVINCIA": "Cádiz", "ANO": 1956.0, "coord_X": -5.906649, "coord_Y": 36.671205 }, "geometry": { "type": "Point", "coordinates": [ -5.90664936, 36.671205289095916 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 113.0, "POBLADO": "La Alcazaba", "IGN": "Alcazaba", "PROVINCIA": "Badajoz", "ANO": 1956.0, "coord_X": -6.737117, "coord_Y": 38.954585 }, "geometry": { "type": "Point", "coordinates": [ -6.7371165, 38.954585039077372 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 114.0, "POBLADO": "La Bazana", "IGN": "La Bazana", "PROVINCIA": "Badajoz", "ANO": 1954.0, "coord_X": -6.744723, "coord_Y": 38.275495 }, "geometry": { "type": "Point", "coordinates": [ -6.74472301, 38.275495479082274 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 115.0, "POBLADO": "La Espiñeira", "IGN": "A Espiñeira", "PROVINCIA": "Lugo", "ANO": 1958.0, "coord_X": -7.266328, "coord_Y": 43.538807 }, "geometry": { "type": "Point", "coordinates": [ -7.2663284, 43.53880693905792 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 116.0, "POBLADO": "La Greduela", "IGN": "Jerez de la Frontera", "PROVINCIA": "Cádiz", "ANO": 1960.0, "coord_X": -6.128753, "coord_Y": 36.702127 }, "geometry": { "type": "Point", "coordinates": [ -6.1287534, 36.702127459095628 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 117.0, "POBLADO": "La Ina", "IGN": "La Ina", "PROVINCIA": "Cádiz", "ANO": 1952.0, "coord_X": -6.03042, "coord_Y": 36.635432 }, "geometry": { "type": "Point", "coordinates": [ -6.03042033, 36.635431549096253 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 118.0, "POBLADO": "La Joyosa y Marlofa", "IGN": "Marlofa", "PROVINCIA": "Zaragoza", "ANO": 1954.0, "coord_X": -1.069361, "coord_Y": 41.740724 }, "geometry": { "type": "Point", "coordinates": [ -1.06936136, 41.74072415906268 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 119.0, "POBLADO": "La Joyosa y Marlofa", "IGN": "La Joyosa", "PROVINCIA": "Zaragoza", "ANO": 1954.0, "coord_X": -1.072858, "coord_Y": 41.744827 }, "geometry": { "type": "Point", "coordinates": [ -1.07285821, 41.744826819062673 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 120.0, "POBLADO": "La Moheda", "IGN": "La Moheda de Gata", "PROVINCIA": "Cáceres", "ANO": 1954.0, "coord_X": -6.619833, "coord_Y": 40.0974 }, "geometry": { "type": "Point", "coordinates": [ -6.61983272, 40.097400349070284 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 121.0, "POBLADO": "La Montiela", "IGN": "La Montiela", "PROVINCIA": "Córdoba", "ANO": 1964.0, "coord_X": -4.918575, "coord_Y": 37.523651 }, "geometry": { "type": "Point", "coordinates": [ -4.91857547, 37.523651439088312 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 122.0, "POBLADO": "La Pedrosa", "IGN": "La Pedrosa", "PROVINCIA": "Cádiz", "ANO": 1960.0, "coord_X": -5.837329, "coord_Y": 36.702706 }, "geometry": { "type": "Point", "coordinates": [ -5.83732864, 36.702706439095628 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 123.0, "POBLADO": "La Quintería", "IGN": "La Quintería", "PROVINCIA": "Jaén", "ANO": 1953.0, "coord_X": -3.951385, "coord_Y": 38.016238 }, "geometry": { "type": "Point", "coordinates": [ -3.95138538, 38.016237639084288 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 124.0, "POBLADO": "La Rinconada", "IGN": "Rinconada", "PROVINCIA": "Toledo", "ANO": 1949.0, "coord_X": -4.413146, "coord_Y": 39.839446 }, "geometry": { "type": "Point", "coordinates": [ -4.41314583, 39.839446339071756 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 125.0, "POBLADO": "La Ropera", "IGN": "La Ropera", "PROVINCIA": "Jaén", "ANO": 1953.0, "coord_X": -4.102897, "coord_Y": 38.054118 }, "geometry": { "type": "Point", "coordinates": [ -4.10289741, 38.054118169083999 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 126.0, "POBLADO": "La Vereda", "IGN": "La Vereda", "PROVINCIA": "Sevilla", "ANO": 1964.0, "coord_X": -5.313224, "coord_Y": 37.731904 }, "geometry": { "type": "Point", "coordinates": [ -5.31322386, 37.731903719086567 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 127.0, "POBLADO": "La Vid", "IGN": "Linares de la Vid", "PROVINCIA": "Burgos", "ANO": 1946.0, "coord_X": -3.488989, "coord_Y": 41.630985 }, "geometry": { "type": "Point", "coordinates": [ -3.48898931, 41.630985429063102 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 128.0, "POBLADO": "Lácara", "IGN": "Lácara", "PROVINCIA": "Badajoz", "ANO": 1961.0, "coord_X": -6.548499, "coord_Y": 38.933926 }, "geometry": { "type": "Point", "coordinates": [ -6.54849939, 38.933925609077512 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 129.0, "POBLADO": "Láchar", "IGN": "Láchar", "PROVINCIA": "Granada", "ANO": 1943.0, "coord_X": -3.835553, "coord_Y": 37.196582 }, "geometry": { "type": "Point", "coordinates": [ -3.83555349, 37.196582249091129 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 130.0, "POBLADO": "Las Marinas", "IGN": "Las Marinas", "PROVINCIA": "Almería", "ANO": 1959.0, "coord_X": -2.631663, "coord_Y": 36.731881 }, "geometry": { "type": "Point", "coordinates": [ -2.63166269, 36.731881429095345 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 131.0, "POBLADO": "Las Norias", "IGN": "Las Norias", "PROVINCIA": "Almería", "ANO": 1958.0, "coord_X": -1.857518, "coord_Y": 37.460687 }, "geometry": { "type": "Point", "coordinates": [ -1.85751841, 37.460686909088849 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 132.0, "POBLADO": "Las Vegas", "IGN": "Las Vegas", "PROVINCIA": "Toledo", "ANO": 1952.0, "coord_X": -4.701389, "coord_Y": 39.959365 }, "geometry": { "type": "Point", "coordinates": [ -4.7013894, 39.959364609071052 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 133.0, "POBLADO": "Llanos de Antequera", "IGN": "Llanos de Antequera", "PROVINCIA": "Málaga", "ANO": 1967.0, "coord_X": -4.578854, "coord_Y": 37.071993 }, "geometry": { "type": "Point", "coordinates": [ -4.57885449, 37.071993149092243 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 134.0, "POBLADO": "Llanos del Caudillo", "IGN": "Llanos del Caudillo", "PROVINCIA": "Ciudad Real", "ANO": 1953.0, "coord_X": -3.351203, "coord_Y": 39.118111 }, "geometry": { "type": "Point", "coordinates": [ -3.35120326, 39.11811102907626 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 135.0, "POBLADO": "Llanos del Caudillo", "IGN": "Llanos del Sotillo", "PROVINCIA": "Jaén", "ANO": 1956.0, "coord_X": -4.088346, "coord_Y": 38.033526 }, "geometry": { "type": "Point", "coordinates": [ -4.08834561, 38.033525539084145 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 136.0, "POBLADO": "Loreto", "IGN": "Loreto", "PROVINCIA": "Granada", "ANO": 1956.0, "coord_X": -3.956366, "coord_Y": 37.185862 }, "geometry": { "type": "Point", "coordinates": [ -3.9563663, 37.185861979091221 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 137.0, "POBLADO": "Loriguilla", "IGN": "Loriguilla", "PROVINCIA": "València\/Valencia", "ANO": 1961.0, "coord_X": -0.570947, "coord_Y": 39.489727 }, "geometry": { "type": "Point", "coordinates": [ -0.57094704, 39.489727139073871 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 138.0, "POBLADO": "Los Guadalperales", "IGN": "Los Guadalperales", "PROVINCIA": "Badajoz", "ANO": 1957.0, "coord_X": -5.625763, "coord_Y": 39.085923 }, "geometry": { "type": "Point", "coordinates": [ -5.62576318, 39.085922989076479 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 139.0, "POBLADO": "Los Mirones", "IGN": "Los Mirones", "PROVINCIA": "Ciudad Real", "ANO": 1958.0, "coord_X": -3.698924, "coord_Y": 38.60783 }, "geometry": { "type": "Point", "coordinates": [ -3.69892376, 38.607829959079801 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 140.0, "POBLADO": "Los Villares", "IGN": "Los Villares", "PROVINCIA": "Jaén", "ANO": 1948.0, "coord_X": -3.985115, "coord_Y": 38.025423 }, "geometry": { "type": "Point", "coordinates": [ -3.98511499, 38.02542304908421 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 141.0, "POBLADO": "Maribáñez", "IGN": "Maribáñez", "PROVINCIA": "Sevilla", "ANO": 1964.0, "coord_X": -5.891592, "coord_Y": 37.133494 }, "geometry": { "type": "Point", "coordinates": [ -5.89159178, 37.133494359091685 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 142.0, "POBLADO": "Marines", "IGN": "Marines", "PROVINCIA": "València\/Valencia", "ANO": 1961.0, "coord_X": -0.561432, "coord_Y": 39.675112 }, "geometry": { "type": "Point", "coordinates": [ -0.56143173, 39.67511212907273 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 143.0, "POBLADO": "Marismillas", "IGN": "Marismillas", "PROVINCIA": "Sevilla", "ANO": 1965.0, "coord_X": -6.000458, "coord_Y": 36.997427 }, "geometry": { "type": "Point", "coordinates": [ -6.00045818, 36.997426879092913 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 144.0, "POBLADO": "Masía del Carril", "IGN": "Domeño", "PROVINCIA": "València\/Valencia", "ANO": 1961.0, "coord_X": -0.673523, "coord_Y": 39.660215 }, "geometry": { "type": "Point", "coordinates": [ -0.67352299, 39.660215059072819 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 145.0, "POBLADO": "Matodoso", "IGN": "O Matodoso", "PROVINCIA": "Lugo", "ANO": 1958.0, "coord_X": -7.501504, "coord_Y": 43.169137 }, "geometry": { "type": "Point", "coordinates": [ -7.50150401, 43.169136799058599 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 146.0, "POBLADO": "Mesas de Guadalora", "IGN": "Mesas del Guadalora", "PROVINCIA": "Córdoba", "ANO": 1958.0, "coord_X": -5.239759, "coord_Y": 37.773027 }, "geometry": { "type": "Point", "coordinates": [ -5.23975895, 37.773027129086238 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 147.0, "POBLADO": "Mingogil", "IGN": "Mingogil", "PROVINCIA": "Albacete", "ANO": 1959.0, "coord_X": -1.737609, "coord_Y": 38.460746 }, "geometry": { "type": "Point", "coordinates": [ -1.73760932, 38.460746169080885 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 148.0, "POBLADO": "Miralrío", "IGN": "Miraelrío", "PROVINCIA": "Jaén", "ANO": 1964.0, "coord_X": -3.530802, "coord_Y": 38.095684 }, "geometry": { "type": "Point", "coordinates": [ -3.53080169, 38.095684099083662 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 149.0, "POBLADO": "Mogón", "IGN": "Mogón", "PROVINCIA": "Jaén", "ANO": 1954.0, "coord_X": -3.032623, "coord_Y": 38.074154 }, "geometry": { "type": "Point", "coordinates": [ -3.03262278, 38.074153819083833 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 150.0, "POBLADO": "Montesusín", "IGN": "Montesusín", "PROVINCIA": "Huesca", "ANO": 1954.0, "coord_X": -0.393104, "coord_Y": 41.885412 }, "geometry": { "type": "Point", "coordinates": [ -0.39310393, 41.885411699062168 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 151.0, "POBLADO": "Naharros", "IGN": "Nuevo Naharros", "PROVINCIA": "Salamanca", "ANO": 1963.0, "coord_X": -5.57436, "coord_Y": 40.956711 }, "geometry": { "type": "Point", "coordinates": [ -5.57435998, 40.95671126906592 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 152.0, "POBLADO": "Nava de Campana", "IGN": "Nava Campaña", "PROVINCIA": "Albacete", "ANO": 1959.0, "coord_X": -1.652457, "coord_Y": 38.489977 }, "geometry": { "type": "Point", "coordinates": [ -1.65245746, 38.489977049080672 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 153.0, "POBLADO": "Novelda del Guadiana", "IGN": "Novelda del Guadiana", "PROVINCIA": "Badajoz", "ANO": 1954.0, "coord_X": -6.833457, "coord_Y": 38.938259 }, "geometry": { "type": "Point", "coordinates": [ -6.83345739, 38.938259319077481 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 154.0, "POBLADO": "Nueva Jarilla", "IGN": "NuevaJarilla", "PROVINCIA": "Cádiz", "ANO": 1953.0, "coord_X": -6.032842, "coord_Y": 36.758499 }, "geometry": { "type": "Point", "coordinates": [ -6.0328419, 36.758498869095092 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 155.0, "POBLADO": "Obando", "IGN": "Obando", "PROVINCIA": "Badajoz", "ANO": 1960.0, "coord_X": -5.49599, "coord_Y": 39.116704 }, "geometry": { "type": "Point", "coordinates": [ -5.49598963, 39.116703849076266 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 156.0, "POBLADO": "Ons", "IGN": "Ons", "PROVINCIA": "Pontevedra", "ANO": 1965.0, "coord_X": -8.931926, "coord_Y": 42.378561 }, "geometry": { "type": "Point", "coordinates": [ -8.93192602, 42.378560959060572 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 157.0, "POBLADO": "Ontinar del Salz", "IGN": "Ontinar de Salz", "PROVINCIA": "Zaragoza", "ANO": 1944.0, "coord_X": -0.757716, "coord_Y": 41.935896 }, "geometry": { "type": "Point", "coordinates": [ -0.75771559, 41.935895719061982 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 158.0, "POBLADO": "Pajares de la Rivera", "IGN": "Pajares de la Rivera", "PROVINCIA": "Cáceres", "ANO": 1965.0, "coord_X": -6.348973, "coord_Y": 39.916993 }, "geometry": { "type": "Point", "coordinates": [ -6.34897302, 39.916993339071304 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 159.0, "POBLADO": "Palazuelos", "IGN": "Palazuelo", "PROVINCIA": "Badajoz", "ANO": 1961.0, "coord_X": -5.740883, "coord_Y": 39.109399 }, "geometry": { "type": "Point", "coordinates": [ -5.74088272, 39.109398819076318 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 160.0, "POBLADO": "Parador de la Asunción", "IGN": "El Parador de las Hortichuelas", "PROVINCIA": "Almería", "ANO": 1954.0, "coord_X": -2.599109, "coord_Y": 36.810655 }, "geometry": { "type": "Point", "coordinates": [ -2.59910925, 36.810654819094601 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 161.0, "POBLADO": "Paredes de Melo", "IGN": "Paredes", "PROVINCIA": "Cuenca", "ANO": 1952.0, "coord_X": -2.854086, "coord_Y": 40.066433 }, "geometry": { "type": "Point", "coordinates": [ -2.85408563, 40.06643324907045 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 162.0, "POBLADO": "Peñuelas", "IGN": "Peñuelas", "PROVINCIA": "Granada", "ANO": 1956.0, "coord_X": -3.856258, "coord_Y": 37.175135 }, "geometry": { "type": "Point", "coordinates": [ -3.85625821, 37.175134739091312 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 163.0, "POBLADO": "Pinsoro", "IGN": "Pinsoro", "PROVINCIA": "Zaragoza", "ANO": 1954.0, "coord_X": -1.337139, "coord_Y": 42.196126 }, "geometry": { "type": "Point", "coordinates": [ -1.33713946, 42.196125599061119 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 164.0, "POBLADO": "Pinzón", "IGN": "Pinzón", "PROVINCIA": "Sevilla", "ANO": 1963.0, "coord_X": -6.018674, "coord_Y": 37.111262 }, "geometry": { "type": "Point", "coordinates": [ -6.01867446, 37.11126219909189 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 165.0, "POBLADO": "Pizarro", "IGN": "Pizarro", "PROVINCIA": "Cáceres", "ANO": 1961.0, "coord_X": -5.791919, "coord_Y": 39.15143 }, "geometry": { "type": "Point", "coordinates": [ -5.79191857, 39.151430439076037 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 166.0, "POBLADO": "Pla de la Font", "IGN": "El Pla de la font", "PROVINCIA": "Lleida", "ANO": 1956.0, "coord_X": 0.353665, "coord_Y": 41.686708 }, "geometry": { "type": "Point", "coordinates": [ 0.35366543, 41.686708109062884 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 167.0, "POBLADO": "Posada del Bierzo", "IGN": "Posada del Bierzo", "PROVINCIA": "León", "ANO": 1956.0, "coord_X": -6.714536, "coord_Y": 42.538825 }, "geometry": { "type": "Point", "coordinates": [ -6.7145359, 42.538824859060107 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 168.0, "POBLADO": "Pradochano", "IGN": "Pradochano", "PROVINCIA": "Cáceres", "ANO": 1965.0, "coord_X": -6.21672, "coord_Y": 40.006448 }, "geometry": { "type": "Point", "coordinates": [ -6.21672013, 40.006448299070797 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 169.0, "POBLADO": "Puebla de Parrilla", "IGN": "Puebla de la Parrilla", "PROVINCIA": "Córdoba", "ANO": 1969.0, "coord_X": -5.187091, "coord_Y": 37.746351 }, "geometry": { "type": "Point", "coordinates": [ -5.18709123, 37.746350739086459 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 170.0, "POBLADO": "Puebla de Alcollarín", "IGN": "Puebla de Alcollarín", "PROVINCIA": "Badajoz", "ANO": 1959.0, "coord_X": -5.78855, "coord_Y": 39.11007 }, "geometry": { "type": "Point", "coordinates": [ -5.78855043, 39.110069769076318 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 171.0, "POBLADO": "Puebla de Argeme", "IGN": "Puebla de Argeme", "PROVINCIA": "Cáceres", "ANO": 1957.0, "coord_X": -6.454442, "coord_Y": 39.986569 }, "geometry": { "type": "Point", "coordinates": [ -6.45444217, 39.98656889907091 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 172.0, "POBLADO": "Puebla de Vicar", "IGN": "Puebla de Vícar", "PROVINCIA": "Almería", "ANO": 1966.0, "coord_X": -2.647028, "coord_Y": 36.80044 }, "geometry": { "type": "Point", "coordinates": [ -2.64702784, 36.800440309094718 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 173.0, "POBLADO": "Pueblo Blanco", "IGN": "Pueblo Blanco", "PROVINCIA": "Almería", "ANO": 1959.0, "coord_X": -2.132714, "coord_Y": 36.910929 }, "geometry": { "type": "Point", "coordinates": [ -2.13271375, 36.910929209093695 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 174.0, "POBLADO": "Pueblo Nuevo de Bullanque", "IGN": "Pueblonuevo del Bullaque", "PROVINCIA": "Ciudad Real", "ANO": 1954.0, "coord_X": -4.257365, "coord_Y": 39.30424 }, "geometry": { "type": "Point", "coordinates": [ -4.25736522, 39.304240429075051 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 175.0, "POBLADO": "Pueblo Nuevo de Miramontes", "IGN": "Pueblonuevo de Miramontes", "PROVINCIA": "Cáceres", "ANO": 1957.0, "coord_X": -5.379076, "coord_Y": 40.059683 }, "geometry": { "type": "Point", "coordinates": [ -5.37907589, 40.059683199070491 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 176.0, "POBLADO": "Pueblo Nuevo del Guadiana", "IGN": "Pueblonuevo del Guadiana", "PROVINCIA": "Badajoz", "ANO": 1952.0, "coord_X": -6.756188, "coord_Y": 38.922833 }, "geometry": { "type": "Point", "coordinates": [ -6.75618834, 38.92283323907759 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 177.0, "POBLADO": "Puente del Obispo", "IGN": "Puente del Obispo", "PROVINCIA": "Jaén", "ANO": 1956.0, "coord_X": -3.541015, "coord_Y": 37.950796 }, "geometry": { "type": "Point", "coordinates": [ -3.54101472, 37.950795599084806 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 178.0, "POBLADO": "Puerto Magallón", "IGN": null, "PROVINCIA": "València\/Valencia", "ANO": 1957.0, "coord_X": 0.0, "coord_Y": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -1.7976931348623157e+308, -1.7976931348623157e+308 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 179.0, "POBLADO": "Puigmoreno", "IGN": "Puigmoreno", "PROVINCIA": "Teruel", "ANO": 1953.0, "coord_X": -0.252047, "coord_Y": 41.10804 }, "geometry": { "type": "Point", "coordinates": [ -0.25204718, 41.108039919065241 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 180.0, "POBLADO": "Puilato", "IGN": "Puilatos", "PROVINCIA": "Zaragoza", "ANO": 1954.0, "coord_X": 0.0, "coord_Y": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -1.7976931348623157e+308, -1.7976931348623157e+308 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 181.0, "POBLADO": "Rada", "IGN": "Rada", "PROVINCIA": "Navarra", "ANO": 1954.0, "coord_X": -1.573421, "coord_Y": 42.320342 }, "geometry": { "type": "Point", "coordinates": [ -1.57342074, 42.320341559060736 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 182.0, "POBLADO": "Rincón de Ballesteros", "IGN": "Rincón de Ballesteros", "PROVINCIA": "Cáceres", "ANO": 1954.0, "coord_X": -6.394259, "coord_Y": 39.196219 }, "geometry": { "type": "Point", "coordinates": [ -6.39425901, 39.196218789075758 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 183.0, "POBLADO": "Rincón del Obispo", "IGN": "Rincón del Obispo", "PROVINCIA": "Cáceres", "ANO": 1956.0, "coord_X": -6.491052, "coord_Y": 39.966334 }, "geometry": { "type": "Point", "coordinates": [ -6.49105248, 39.966333629071002 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 184.0, "POBLADO": "Rivero de Posadas", "IGN": "Rivero de Posadas", "PROVINCIA": "Córdoba", "ANO": 1962.0, "coord_X": -5.143221, "coord_Y": 37.791313 }, "geometry": { "type": "Point", "coordinates": [ -5.14322066, 37.791313259086095 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 185.0, "POBLADO": "Romilla la Nueva", "IGN": "Romilla la Nueva", "PROVINCIA": "Granada", "ANO": 1956.0, "coord_X": -3.80456, "coord_Y": 37.164058 }, "geometry": { "type": "Point", "coordinates": [ -3.80456007, 37.16405817909142 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 186.0, "POBLADO": "Roquetas de Mar", "IGN": "Roquetas de Mar", "PROVINCIA": "Almería", "ANO": 1954.0, "coord_X": -2.615058, "coord_Y": 36.764679 }, "geometry": { "type": "Point", "coordinates": [ -2.6150576, 36.764678539095037 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 187.0, "POBLADO": "Rosalejo", "IGN": "Rosalejo", "PROVINCIA": "Cáceres", "ANO": 1956.0, "coord_X": -5.429747, "coord_Y": 39.97752 }, "geometry": { "type": "Point", "coordinates": [ -5.42974668, 39.977519849070958 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 188.0, "POBLADO": "Ruecas", "IGN": "Ruecas", "PROVINCIA": "Badajoz", "ANO": 1956.0, "coord_X": -5.875529, "coord_Y": 39.03947 }, "geometry": { "type": "Point", "coordinates": [ -5.87552916, 39.039470399076784 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 189.0, "POBLADO": "Sabinar", "IGN": "El Sabinar", "PROVINCIA": "Zaragoza", "ANO": 1953.0, "coord_X": -1.233045, "coord_Y": 42.085146 }, "geometry": { "type": "Point", "coordinates": [ -1.23304505, 42.085146099061497 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 190.0, "POBLADO": "Sacramento", "IGN": "Sacramento", "PROVINCIA": "Sevilla", "ANO": 1965.0, "coord_X": -5.90265, "coord_Y": 37.03075 }, "geometry": { "type": "Point", "coordinates": [ -5.90264997, 37.030750119092616 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 191.0, "POBLADO": "Sagrajas", "IGN": "Sagrajas", "PROVINCIA": "Badajoz", "ANO": 1954.0, "coord_X": -6.902009, "coord_Y": 38.921763 }, "geometry": { "type": "Point", "coordinates": [ -6.90200944, 38.921762819077593 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 192.0, "POBLADO": "San Agustín de Dalias", "IGN": "San Agustín", "PROVINCIA": "Almería", "ANO": 1968.0, "coord_X": -2.694456, "coord_Y": 36.713129 }, "geometry": { "type": "Point", "coordinates": [ -2.69445551, 36.713128779095513 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 193.0, "POBLADO": "San Antonio", "IGN": "San Antonio", "PROVINCIA": "Toledo", "ANO": 1949.0, "coord_X": -4.698794, "coord_Y": 39.959493 }, "geometry": { "type": "Point", "coordinates": [ -4.69879356, 39.959492759071068 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 194.0, "POBLADO": "San Antonio de Benagever", "IGN": "San Antonio de Benagéber", "PROVINCIA": "València\/Valencia", "ANO": 1949.0, "coord_X": -0.500055, "coord_Y": 39.561438 }, "geometry": { "type": "Point", "coordinates": [ -0.50005481, 39.561437699073423 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 195.0, "POBLADO": "San Antonio del Carpio", "IGN": "San Antonio", "PROVINCIA": "Córdoba", "ANO": 1954.0, "coord_X": -4.519347, "coord_Y": 37.958525 }, "geometry": { "type": "Point", "coordinates": [ -4.51934654, 37.958524689084733 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 196.0, "POBLADO": "San Bernardo", "IGN": "San Bernardo", "PROVINCIA": "Valladolid", "ANO": 1954.0, "coord_X": -4.264265, "coord_Y": 41.630221 }, "geometry": { "type": "Point", "coordinates": [ -4.26426462, 41.630220579063099 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 197.0, "POBLADO": "San Francisco", "IGN": "San Francisco", "PROVINCIA": "Almería", "ANO": 1964.0, "coord_X": -1.879088, "coord_Y": 37.420802 }, "geometry": { "type": "Point", "coordinates": [ -1.87908849, 37.420802469089182 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 198.0, "POBLADO": "San Francisco de Olivenza", "IGN": "San Francisco de Olivenza", "PROVINCIA": "Badajoz", "ANO": 1954.0, "coord_X": -7.10618, "coord_Y": 38.747301 }, "geometry": { "type": "Point", "coordinates": [ -7.10617993, 38.747300559078816 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 199.0, "POBLADO": "San Gil", "IGN": "San Gil", "PROVINCIA": "Cáceres", "ANO": 1965.0, "coord_X": -6.240757, "coord_Y": 39.974748 }, "geometry": { "type": "Point", "coordinates": [ -6.24075668, 39.974748299070974 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 200.0, "POBLADO": "San Ignacio del Viar", "IGN": "San Ignacio del Viar", "PROVINCIA": "Sevilla", "ANO": 1954.0, "coord_X": -5.995943, "coord_Y": 37.545835 }, "geometry": { "type": "Point", "coordinates": [ -5.99594325, 37.545835269088109 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 201.0, "POBLADO": "San Isidro", "IGN": "San Isidro de Níjar", "PROVINCIA": "Almería", "ANO": 1964.0, "coord_X": -2.173928, "coord_Y": 36.90942 }, "geometry": { "type": "Point", "coordinates": [ -2.17392811, 36.909419969093705 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 202.0, "POBLADO": "San Isidro de Albatera", "IGN": "San Isidro", "PROVINCIA": "Alacant\/Alicante", "ANO": 1953.0, "coord_X": -0.838366, "coord_Y": 38.171233 }, "geometry": { "type": "Point", "coordinates": [ -0.83836588, 38.171232849083097 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 203.0, "POBLADO": "San Isidro de Benagever", "IGN": "San Isidro de Benagéber", "PROVINCIA": "València\/Valencia", "ANO": 1950.0, "coord_X": -0.398058, "coord_Y": 39.567512 }, "geometry": { "type": "Point", "coordinates": [ -0.39805835, 39.567512469073378 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 204.0, "POBLADO": "San Isidro de Guadalete", "IGN": "San Isidro del Guadalete", "PROVINCIA": "Cádiz", "ANO": 1957.0, "coord_X": -5.988922, "coord_Y": 36.643576 }, "geometry": { "type": "Point", "coordinates": [ -5.98892232, 36.643575589096166 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 205.0, "POBLADO": "San Isidro de Níjar", "IGN": "San Isidro de Níjar", "PROVINCIA": "Almería", "ANO": 1964.0, "coord_X": -2.173928, "coord_Y": 36.90942 }, "geometry": { "type": "Point", "coordinates": [ -2.17392811, 36.909419969093705 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 206.0, "POBLADO": "San Isidro del Pinar", "IGN": "San Isidro del Pinar", "PROVINCIA": "Navarra", "ANO": 1959.0, "coord_X": -1.370593, "coord_Y": 42.435793 }, "geometry": { "type": "Point", "coordinates": [ -1.37059252, 42.435792539060401 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 207.0, "POBLADO": "San Jorge", "IGN": "San Jorge", "PROVINCIA": "Huesca", "ANO": 1954.0, "coord_X": -0.646905, "coord_Y": 41.997168 }, "geometry": { "type": "Point", "coordinates": [ -0.6469053, 41.997167509061768 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 208.0, "POBLADO": "San Juan de Flumen", "IGN": "Sariñena", "PROVINCIA": "Huesca", "ANO": 1956.0, "coord_X": -0.157667, "coord_Y": 41.790709 }, "geometry": { "type": "Point", "coordinates": [ -0.15766688, 41.790708829062503 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 209.0, "POBLADO": "San Julián", "IGN": "San Julián", "PROVINCIA": "Jaén", "ANO": 1951.0, "coord_X": -4.207022, "coord_Y": 38.009386 }, "geometry": { "type": "Point", "coordinates": [ -4.20702235, 38.009385949084347 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 210.0, "POBLADO": "San Leandro", "IGN": "San Leandro", "PROVINCIA": "Sevilla", "ANO": 1965.0, "coord_X": -5.995611, "coord_Y": 37.03134 }, "geometry": { "type": "Point", "coordinates": [ -5.99561075, 37.031340399092606 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 211.0, "POBLADO": "San Lorenzo de Flumen", "IGN": "Lalueza", "PROVINCIA": "Huesca", "ANO": 1956.0, "coord_X": -0.255592, "coord_Y": 41.842111 }, "geometry": { "type": "Point", "coordinates": [ -0.25559198, 41.842110949062324 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 212.0, "POBLADO": "San Miguel", "IGN": "San Miguel", "PROVINCIA": "Jaén", "ANO": 1954.0, "coord_X": -3.240525, "coord_Y": 37.947882 }, "geometry": { "type": "Point", "coordinates": [ -3.24052546, 37.947881709084832 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 213.0, "POBLADO": "San Rafael de la Santa Espina", "IGN": "La Santa Espina", "PROVINCIA": "Valladolid", "ANO": 1954.0, "coord_X": -5.105476, "coord_Y": 41.73047 }, "geometry": { "type": "Point", "coordinates": [ -5.10547625, 41.730469899062726 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 214.0, "POBLADO": "San Rafael de Olivenza", "IGN": "San Rafael de Olivenza", "PROVINCIA": "Badajoz", "ANO": 1954.0, "coord_X": -7.05355, "coord_Y": 38.719404 }, "geometry": { "type": "Point", "coordinates": [ -7.05354984, 38.719403899079012 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 215.0, "POBLADO": "Sancho Abarca", "IGN": "Sancho Abarca", "PROVINCIA": "Zaragoza", "ANO": 1954.0, "coord_X": -1.270818, "coord_Y": 41.985304 }, "geometry": { "type": "Point", "coordinates": [ -1.27081765, 41.985304359061821 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 216.0, "POBLADO": "Sanjuanejo", "IGN": "Sanjuanejo", "PROVINCIA": "Salamanca", "ANO": 1955.0, "coord_X": -6.491456, "coord_Y": 40.570321 }, "geometry": { "type": "Point", "coordinates": [ -6.49145565, 40.570321369067777 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 217.0, "POBLADO": "Santa Anastasia", "IGN": "Santa Anastasia", "PROVINCIA": "Zaragoza", "ANO": 1953.0, "coord_X": -1.230395, "coord_Y": 42.13951 }, "geometry": { "type": "Point", "coordinates": [ -1.23039538, 42.139510379061306 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 218.0, "POBLADO": "Santa Inés", "IGN": "Santa Inés", "PROVINCIA": "Salamanca", "ANO": 1956.0, "coord_X": -5.52516, "coord_Y": 40.70965 }, "geometry": { "type": "Point", "coordinates": [ -5.52515999, 40.709650039067093 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 219.0, "POBLADO": "Santa María de las Lomas", "IGN": "Santa María de las Lomas", "PROVINCIA": "Cáceres", "ANO": 1957.0, "coord_X": -5.571618, "coord_Y": 40.010978 }, "geometry": { "type": "Point", "coordinates": [ -5.57161813, 40.010977549070766 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 220.0, "POBLADO": "Santa Quiteria", "IGN": "Santa Quiteria", "PROVINCIA": "Ciudad Real", "ANO": 1954.0, "coord_X": -4.367051, "coord_Y": 39.257502 }, "geometry": { "type": "Point", "coordinates": [ -4.3670505, 39.257502359075332 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 221.0, "POBLADO": "Santa Rosalía", "IGN": "Málaga", "PROVINCIA": "Málaga", "ANO": 1965.0, "coord_X": -4.419975, "coord_Y": 36.720343 }, "geometry": { "type": "Point", "coordinates": [ -4.41997511, 36.720342669095452 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 222.0, "POBLADO": "Santo Tomé", "IGN": "Santo Tomé", "PROVINCIA": "Jaén", "ANO": 1954.0, "coord_X": -3.101891, "coord_Y": 38.028592 }, "geometry": { "type": "Point", "coordinates": [ -3.10189147, 38.028592029084173 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 223.0, "POBLADO": "Setefilla", "IGN": "Setefilla", "PROVINCIA": "Sevilla", "ANO": 1965.0, "coord_X": -5.496797, "coord_Y": 37.702981 }, "geometry": { "type": "Point", "coordinates": [ -5.49679674, 37.702980569086812 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 224.0, "POBLADO": "Sobradiel", "IGN": "Sobradiel", "PROVINCIA": "Zaragoza", "ANO": 1946.0, "coord_X": -1.035028, "coord_Y": 41.739592 }, "geometry": { "type": "Point", "coordinates": [ -1.03502791, 41.739592299062686 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 225.0, "POBLADO": "Sodeto", "IGN": "Sodeto", "PROVINCIA": "Huesca", "ANO": 1956.0, "coord_X": -0.253096, "coord_Y": 41.89025 }, "geometry": { "type": "Point", "coordinates": [ -0.25309629, 41.890249819062149 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 226.0, "POBLADO": "Solana de Torralba", "IGN": "Solana de Torralba", "PROVINCIA": "Jaén", "ANO": 1954.0, "coord_X": -3.17202, "coord_Y": 37.987828 }, "geometry": { "type": "Point", "coordinates": [ -3.17202003, 37.98782809908451 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 227.0, "POBLADO": "Solanillo", "IGN": "El Solanillo", "PROVINCIA": "Almería", "ANO": 1968.0, "coord_X": -2.657633, "coord_Y": 36.734844 }, "geometry": { "type": "Point", "coordinates": [ -2.65763286, 36.734843999095325 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 228.0, "POBLADO": "Sotogordo", "IGN": "Sotogordo", "PROVINCIA": "Jaén", "ANO": 1956.0, "coord_X": -3.598275, "coord_Y": 37.95187 }, "geometry": { "type": "Point", "coordinates": [ -3.5982754, 37.951869849084801 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 229.0, "POBLADO": "Suchs", "IGN": "Sucs", "PROVINCIA": "Lleida", "ANO": 1945.0, "coord_X": 0.411815, "coord_Y": 41.701722 }, "geometry": { "type": "Point", "coordinates": [ 0.41181488, 41.701721759062835 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 230.0, "POBLADO": "Tahivilla", "IGN": "Tahivilla", "PROVINCIA": "Cádiz", "ANO": 1947.0, "coord_X": -5.756815, "coord_Y": 36.184504 }, "geometry": { "type": "Point", "coordinates": [ -5.75681512, 36.184503569100627 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 231.0, "POBLADO": "Talavera la Nueva", "IGN": "Talavera la Nueva", "PROVINCIA": "Toledo", "ANO": 1952.0, "coord_X": -4.892009, "coord_Y": 39.934879 }, "geometry": { "type": "Point", "coordinates": [ -4.89200918, 39.93487919907119 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 232.0, "POBLADO": "Tietar del Caudillo", "IGN": "Tiétar", "PROVINCIA": "Cáceres", "ANO": 1957.0, "coord_X": -5.478809, "coord_Y": 40.029333 }, "geometry": { "type": "Point", "coordinates": [ -5.47880913, 40.029332939070663 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 233.0, "POBLADO": "Torre de la Reina", "IGN": "Torre de la Reina", "PROVINCIA": "Sevilla", "ANO": 1952.0, "coord_X": -6.02641, "coord_Y": 37.512094 }, "geometry": { "type": "Point", "coordinates": [ -6.02640987, 37.512093879088411 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 234.0, "POBLADO": "Torrecera", "IGN": "Torrecera", "PROVINCIA": "Cádiz", "ANO": 1945.0, "coord_X": -5.942476, "coord_Y": 36.609046 }, "geometry": { "type": "Point", "coordinates": [ -5.94247607, 36.609046339096501 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 235.0, "POBLADO": "Torrefresneda", "IGN": "Torrefresneda", "PROVINCIA": "Badajoz", "ANO": 1964.0, "coord_X": -6.110625, "coord_Y": 38.984664 }, "geometry": { "type": "Point", "coordinates": [ -6.11062501, 38.984663929077165 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 236.0, "POBLADO": "Trajano", "IGN": "Trajano", "PROVINCIA": "Sevilla", "ANO": 1964.0, "coord_X": -5.908278, "coord_Y": 37.069558 }, "geometry": { "type": "Point", "coordinates": [ -5.90827835, 37.069558269092262 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 237.0, "POBLADO": "Troya", "IGN": "El Palmar de Troya", "PROVINCIA": "Sevilla", "ANO": 1947.0, "coord_X": -5.80556, "coord_Y": 37.06212 }, "geometry": { "type": "Point", "coordinates": [ -5.80555992, 37.062120489092322 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 238.0, "POBLADO": "Umbría de Fresnedas", "IGN": "Umbría de Fresnedas", "PROVINCIA": "Ciudad Real", "ANO": 1961.0, "coord_X": -3.661897, "coord_Y": 38.585426 }, "geometry": { "type": "Point", "coordinates": [ -3.66189721, 38.585425629079978 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 239.0, "POBLADO": "Vadehornillo", "IGN": "Valdehornillos", "PROVINCIA": "Badajoz", "ANO": 1962.0, "coord_X": -5.976022, "coord_Y": 39.058587 }, "geometry": { "type": "Point", "coordinates": [ -5.97602186, 39.058587019076661 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 240.0, "POBLADO": "Vados de Torralba", "IGN": "Vados de Torralba", "PROVINCIA": "Jaén", "ANO": 1956.0, "coord_X": -3.640154, "coord_Y": 37.943051 }, "geometry": { "type": "Point", "coordinates": [ -3.64015389, 37.943051309084865 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 241.0, "POBLADO": "Valareña", "IGN": "Valareña", "PROVINCIA": "Zaragoza", "ANO": 1954.0, "coord_X": -1.309728, "coord_Y": 42.134033 }, "geometry": { "type": "Point", "coordinates": [ -1.30972756, 42.134033439061326 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 242.0, "POBLADO": "Valdebotoa", "IGN": "Valdebótoa", "PROVINCIA": "Badajoz", "ANO": 1957.0, "coord_X": -6.923778, "coord_Y": 38.966302 }, "geometry": { "type": "Point", "coordinates": [ -6.92377768, 38.966301719077286 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 243.0, "POBLADO": "Valdecazorla", "IGN": "Valdecazorla", "PROVINCIA": "Jaén", "ANO": 1954.0, "coord_X": -3.157134, "coord_Y": 37.970859 }, "geometry": { "type": "Point", "coordinates": [ -3.1571337, 37.970858929084642 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 244.0, "POBLADO": "Valdecín", "IGN": "Valdencín", "PROVINCIA": "Cáceres", "ANO": 1964.0, "coord_X": -6.409303, "coord_Y": 39.915448 }, "geometry": { "type": "Point", "coordinates": [ -6.40930271, 39.915448329071303 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 245.0, "POBLADO": "Valdeínigos", "IGN": "Valdeíñigos", "PROVINCIA": "Cáceres", "ANO": 1950.0, "coord_X": -5.857266, "coord_Y": 39.961496 }, "geometry": { "type": "Point", "coordinates": [ -5.85726577, 39.961495899071046 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 246.0, "POBLADO": "Valdelacalzada", "IGN": "Valdelacalzada", "PROVINCIA": "Badajoz", "ANO": 1947.0, "coord_X": -6.700343, "coord_Y": 38.889581 }, "geometry": { "type": "Point", "coordinates": [ -6.70034284, 38.889580689077803 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 247.0, "POBLADO": "Valderrosas", "IGN": "Valderrosas", "PROVINCIA": "Cáceres", "ANO": 1968.0, "coord_X": -6.212866, "coord_Y": 40.057087 }, "geometry": { "type": "Point", "coordinates": [ -6.21286592, 40.057087359070508 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 248.0, "POBLADO": "Valdesalor", "IGN": "Valdesalor", "PROVINCIA": "Cáceres", "ANO": 1954.0, "coord_X": -6.348637, "coord_Y": 39.377621 }, "geometry": { "type": "Point", "coordinates": [ -6.34863659, 39.377620799074577 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 249.0, "POBLADO": "Valdivia", "IGN": "Valdivia", "PROVINCIA": "Badajoz", "ANO": 1956.0, "coord_X": -5.710467, "coord_Y": 39.033803 }, "geometry": { "type": "Point", "coordinates": [ -5.71046689, 39.033802879076831 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 250.0, "POBLADO": "Valfonda de Santa Ana", "IGN": "Valfonda de Santa Ana", "PROVINCIA": "Huesca", "ANO": 1957.0, "coord_X": -0.469207, "coord_Y": 41.951057 }, "geometry": { "type": "Point", "coordinates": [ -0.46920739, 41.951057109061935 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 251.0, "POBLADO": "Valmuel del Caudillo", "IGN": "Valmuel", "PROVINCIA": "Teruel", "ANO": 1952.0, "coord_X": -0.215541, "coord_Y": 41.126526 }, "geometry": { "type": "Point", "coordinates": [ -0.21554115, 41.126526489065171 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 252.0, "POBLADO": "Valrío", "IGN": "Valrío", "PROVINCIA": "Cáceres", "ANO": 1965.0, "coord_X": -6.370583, "coord_Y": 40.010062 }, "geometry": { "type": "Point", "coordinates": [ -6.37058281, 40.010061939070773 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 253.0, "POBLADO": "Valsalada", "IGN": "Valsalada", "PROVINCIA": "Huesca", "ANO": 1954.0, "coord_X": -0.648891, "coord_Y": 42.048091 }, "geometry": { "type": "Point", "coordinates": [ -0.64889105, 42.04809077906161 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 254.0, "POBLADO": "Vega de Pumar", "IGN": "A Veiga do Pumar", "PROVINCIA": "Lugo", "ANO": 1958.0, "coord_X": -7.471286, "coord_Y": 43.21168 }, "geometry": { "type": "Point", "coordinates": [ -7.4712861, 43.211680269058498 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 255.0, "POBLADO": "Vegas Altas", "IGN": "Vegas Altas", "PROVINCIA": "Badajoz", "ANO": 1957.0, "coord_X": -5.563752, "coord_Y": 39.129197 }, "geometry": { "type": "Point", "coordinates": [ -5.56375152, 39.129197029076188 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 256.0, "POBLADO": "Vegas de Almenara", "IGN": "Vegas de Almenara", "PROVINCIA": "Sevilla", "ANO": 1963.0, "coord_X": -5.367135, "coord_Y": 37.70926 }, "geometry": { "type": "Point", "coordinates": [ -5.3671351, 37.709260229086766 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 257.0, "POBLADO": "Vegas de Triana", "IGN": "Vegas de Triana", "PROVINCIA": "Jaén", "ANO": 1957.0, "coord_X": -4.056206, "coord_Y": 38.017146 }, "geometry": { "type": "Point", "coordinates": [ -4.05620566, 38.017145779084274 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 258.0, "POBLADO": "Vegaviana", "IGN": "Vegaviana", "PROVINCIA": "Cáceres", "ANO": 1954.0, "coord_X": -6.717864, "coord_Y": 40.040855 }, "geometry": { "type": "Point", "coordinates": [ -6.7178638, 40.040855019070598 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 259.0, "POBLADO": "Vencillón", "IGN": "Vencillón", "PROVINCIA": "Huesca", "ANO": 1961.0, "coord_X": 0.306134, "coord_Y": 41.705741 }, "geometry": { "type": "Point", "coordinates": [ 0.30613405, 41.705740649062811 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 260.0, "POBLADO": "Veracruz", "IGN": "Veracruz", "PROVINCIA": "Jaén", "ANO": 1954.0, "coord_X": -3.148252, "coord_Y": 38.026931 }, "geometry": { "type": "Point", "coordinates": [ -3.14825218, 38.026930709084212 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 261.0, "POBLADO": "Vetaherrado", "IGN": "Vetaherrado", "PROVINCIA": "Sevilla", "ANO": 1964.0, "coord_X": -5.950149, "coord_Y": 37.047348 }, "geometry": { "type": "Point", "coordinates": [ -5.95014915, 37.047348059092457 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 262.0, "POBLADO": "Viar del Caudillo", "IGN": "El Viar", "PROVINCIA": "Sevilla", "ANO": 1952.0, "coord_X": -5.915901, "coord_Y": 37.57397 }, "geometry": { "type": "Point", "coordinates": [ -5.91590125, 37.573969979087892 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 263.0, "POBLADO": "Villafranca de Guadiana", "IGN": "Villafranco del Guadiana", "PROVINCIA": "Badajoz", "ANO": 1955.0, "coord_X": -6.859287, "coord_Y": 38.884946 }, "geometry": { "type": "Point", "coordinates": [ -6.8592875, 38.884946419077842 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 264.0, "POBLADO": "Villafranca del Delta", "IGN": "El Poblenou del Delta", "PROVINCIA": "Tarragona", "ANO": 1951.0, "coord_X": 0.686753, "coord_Y": 40.645219 }, "geometry": { "type": "Point", "coordinates": [ 0.68675292, 40.64521856906741 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 265.0, "POBLADO": "Villafranco de Guadalhorce", "IGN": "Villafranco del Guadalhorce", "PROVINCIA": "Málaga", "ANO": 1962.0, "coord_X": -4.698407, "coord_Y": 36.701419 }, "geometry": { "type": "Point", "coordinates": [ -4.69840692, 36.701418719095628 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 266.0, "POBLADO": "Villalba de Calatrava", "IGN": "Villalba de Calatrava", "PROVINCIA": "Ciudad Real", "ANO": 1955.0, "coord_X": -3.625171, "coord_Y": 38.634768 }, "geometry": { "type": "Point", "coordinates": [ -3.62517083, 38.634768479079604 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 267.0, "POBLADO": "Villanueva de Franco", "IGN": "Consolación", "PROVINCIA": "Ciudad Real", "ANO": 1960.0, "coord_X": -3.387793, "coord_Y": 38.887065 }, "geometry": { "type": "Point", "coordinates": [ -3.38779264, 38.887064609077839 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 268.0, "POBLADO": "Villoldo", "IGN": "Villoldo", "PROVINCIA": "Palencia", "ANO": 1968.0, "coord_X": -4.598242, "coord_Y": 42.244029 }, "geometry": { "type": "Point", "coordinates": [ -4.59824238, 42.244028999060966 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 269.0, "POBLADO": "Vivares", "IGN": "Vivares", "PROVINCIA": "Badajoz", "ANO": 1962.0, "coord_X": -5.896304, "coord_Y": 39.087081 }, "geometry": { "type": "Point", "coordinates": [ -5.89630446, 39.087081369076479 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 270.0, "POBLADO": "Viviendas aisladas, zona Orellana", "IGN": "Orellana la Vieja", "PROVINCIA": "Badajoz", "ANO": 1962.0, "coord_X": -5.533418, "coord_Y": 39.004639 }, "geometry": { "type": "Point", "coordinates": [ -5.53341769, 39.004639339077016 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 271.0, "POBLADO": "Viviendas diseminadas, Canal del Lobón", "IGN": "Lobón", "PROVINCIA": "Badajoz", "ANO": 1960.0, "coord_X": -6.623489, "coord_Y": 38.850686 }, "geometry": { "type": "Point", "coordinates": [ -6.62348869, 38.850686449078083 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 272.0, "POBLADO": "Yelbes", "IGN": "Yelbes", "PROVINCIA": "Badajoz", "ANO": 1964.0, "coord_X": -6.022149, "coord_Y": 38.969294 }, "geometry": { "type": "Point", "coordinates": [ -6.0221493, 38.969293649077258 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 273.0, "POBLADO": "Zalea", "IGN": "Zalea", "PROVINCIA": "Málaga", "ANO": 1962.0, "coord_X": -4.744989, "coord_Y": 36.767446 }, "geometry": { "type": "Point", "coordinates": [ -4.74498918, 36.767446449095011 ] } },
|
|
||||||
{ "type": "Feature", "properties": { "id": 274.0, "POBLADO": "Zurbarán", "IGN": "Zurbarán", "PROVINCIA": "Badajoz", "ANO": 1957.0, "coord_X": -5.723001, "coord_Y": 39.065412 }, "geometry": { "type": "Point", "coordinates": [ -5.72300112, 39.065412119076612 ] } }
|
|
||||||
]
|
|
||||||
}
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
1
docs/js/leaflet.ajax.min.js
vendored
1
docs/js/leaflet.ajax.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,625 +0,0 @@
|
||||||
/*jshint indent: 4, browser:true*/
|
|
||||||
/*global L*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* L.Control.TimeDimension: Leaflet control to manage a timeDimension
|
|
||||||
*/
|
|
||||||
|
|
||||||
L.UI = L.ui = L.UI || {};
|
|
||||||
L.UI.Knob = L.Draggable.extend({
|
|
||||||
options: {
|
|
||||||
className: 'knob',
|
|
||||||
step: 1,
|
|
||||||
rangeMin: 0,
|
|
||||||
rangeMax: 10
|
|
||||||
//minValue : null,
|
|
||||||
//maxValue : null
|
|
||||||
},
|
|
||||||
initialize: function(slider, options) {
|
|
||||||
L.setOptions(this, options);
|
|
||||||
this._element = L.DomUtil.create('div', this.options.className || 'knob', slider);
|
|
||||||
L.Draggable.prototype.initialize.call(this, this._element, this._element);
|
|
||||||
this._container = slider;
|
|
||||||
this.on('predrag', function() {
|
|
||||||
this._newPos.y = 0;
|
|
||||||
this._newPos.x = this._adjustX(this._newPos.x);
|
|
||||||
}, this);
|
|
||||||
this.on('dragstart', function() {
|
|
||||||
L.DomUtil.addClass(slider, 'dragging');
|
|
||||||
});
|
|
||||||
this.on('dragend', function() {
|
|
||||||
L.DomUtil.removeClass(slider, 'dragging');
|
|
||||||
});
|
|
||||||
L.DomEvent.on(this._element, 'dblclick', function(e) {
|
|
||||||
this.fire('dblclick', e);
|
|
||||||
}, this);
|
|
||||||
L.DomEvent.disableClickPropagation(this._element);
|
|
||||||
this.enable();
|
|
||||||
},
|
|
||||||
|
|
||||||
_getProjectionCoef: function() {
|
|
||||||
return (this.options.rangeMax - this.options.rangeMin) / (this._container.offsetWidth || this._container.style.width);
|
|
||||||
},
|
|
||||||
_update: function() {
|
|
||||||
this.setPosition(L.DomUtil.getPosition(this._element).x);
|
|
||||||
},
|
|
||||||
_adjustX: function(x) {
|
|
||||||
var value = this._toValue(x) || this.getMinValue();
|
|
||||||
return this._toX(this._adjustValue(value));
|
|
||||||
},
|
|
||||||
|
|
||||||
_adjustValue: function(value) {
|
|
||||||
value = Math.max(this.getMinValue(), Math.min(this.getMaxValue(), value)); //clamp value
|
|
||||||
value = value - this.options.rangeMin; //offsets to zero
|
|
||||||
|
|
||||||
//snap the value to the closet step
|
|
||||||
value = Math.round(value / this.options.step) * this.options.step;
|
|
||||||
value = value + this.options.rangeMin; //restore offset
|
|
||||||
value = Math.round(value * 100) / 100; // *100/100 to avoid floating point precision problems
|
|
||||||
|
|
||||||
return value;
|
|
||||||
},
|
|
||||||
|
|
||||||
_toX: function(value) {
|
|
||||||
var x = (value - this.options.rangeMin) / this._getProjectionCoef();
|
|
||||||
//console.log('toX', value, x);
|
|
||||||
return x;
|
|
||||||
},
|
|
||||||
|
|
||||||
_toValue: function(x) {
|
|
||||||
var v = x * this._getProjectionCoef() + this.options.rangeMin;
|
|
||||||
//console.log('toValue', x, v);
|
|
||||||
return v;
|
|
||||||
},
|
|
||||||
|
|
||||||
getMinValue: function() {
|
|
||||||
return this.options.minValue || this.options.rangeMin;
|
|
||||||
},
|
|
||||||
getMaxValue: function() {
|
|
||||||
return this.options.maxValue || this.options.rangeMax;
|
|
||||||
},
|
|
||||||
|
|
||||||
setStep: function(step) {
|
|
||||||
this.options.step = step;
|
|
||||||
this._update();
|
|
||||||
},
|
|
||||||
|
|
||||||
setPosition: function(x) {
|
|
||||||
L.DomUtil.setPosition(this._element,
|
|
||||||
L.point(this._adjustX(x), 0));
|
|
||||||
this.fire('positionchanged');
|
|
||||||
},
|
|
||||||
getPosition: function() {
|
|
||||||
return L.DomUtil.getPosition(this._element).x;
|
|
||||||
},
|
|
||||||
|
|
||||||
setValue: function(v) {
|
|
||||||
//console.log('slider value', v);
|
|
||||||
this.setPosition(this._toX(v));
|
|
||||||
},
|
|
||||||
|
|
||||||
getValue: function() {
|
|
||||||
return this._adjustValue(this._toValue(this.getPosition()));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* L.Control.TimeDimension: Leaflet control to manage a timeDimension
|
|
||||||
*/
|
|
||||||
|
|
||||||
L.Control.TimeDimension = L.Control.extend({
|
|
||||||
options: {
|
|
||||||
styleNS: 'leaflet-control-timecontrol',
|
|
||||||
position: 'bottomleft',
|
|
||||||
title: 'Time Control',
|
|
||||||
backwardButton: true,
|
|
||||||
forwardButton: true,
|
|
||||||
playButton: true,
|
|
||||||
playReverseButton: false,
|
|
||||||
loopButton: false,
|
|
||||||
displayDate: true,
|
|
||||||
timeSlider: true,
|
|
||||||
timeSliderDragUpdate: false,
|
|
||||||
limitSliders: false,
|
|
||||||
limitMinimumRange: 5,
|
|
||||||
speedSlider: true,
|
|
||||||
minSpeed: 0.1,
|
|
||||||
maxSpeed: 10,
|
|
||||||
speedStep: 0.1,
|
|
||||||
timeSteps: 1,
|
|
||||||
autoPlay: false,
|
|
||||||
playerOptions: {
|
|
||||||
transitionTime: 1000
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
initialize: function(options) {
|
|
||||||
L.Control.prototype.initialize.call(this, options);
|
|
||||||
this._dateUTC = true;
|
|
||||||
this._timeDimension = this.options.timeDimension || null;
|
|
||||||
},
|
|
||||||
|
|
||||||
onAdd: function(map) {
|
|
||||||
var container;
|
|
||||||
this._map = map;
|
|
||||||
if (!this._timeDimension && map.timeDimension) {
|
|
||||||
this._timeDimension = map.timeDimension;
|
|
||||||
}
|
|
||||||
this._initPlayer();
|
|
||||||
|
|
||||||
container = L.DomUtil.create('div', 'leaflet-bar leaflet-bar-horizontal leaflet-bar-timecontrol');
|
|
||||||
if (this.options.backwardButton) {
|
|
||||||
this._buttonBackward = this._createButton('Backward', container);
|
|
||||||
}
|
|
||||||
if (this.options.playReverseButton) {
|
|
||||||
this._buttonPlayReversePause = this._createButton('Play Reverse', container);
|
|
||||||
}
|
|
||||||
if (this.options.playButton) {
|
|
||||||
this._buttonPlayPause = this._createButton('Play', container);
|
|
||||||
}
|
|
||||||
if (this.options.forwardButton) {
|
|
||||||
this._buttonForward = this._createButton('Forward', container);
|
|
||||||
}
|
|
||||||
if (this.options.loopButton) {
|
|
||||||
this._buttonLoop = this._createButton('Loop', container);
|
|
||||||
}
|
|
||||||
if (this.options.displayDate) {
|
|
||||||
this._displayDate = this._createDisplayDate(this.options.styleNS + ' timecontrol-date', container);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.options.timeSlider) {
|
|
||||||
this._sliderTime = this._createSliderTime(this.options.styleNS + ' timecontrol-slider timecontrol-dateslider', container);
|
|
||||||
}
|
|
||||||
if (this.options.speedSlider) {
|
|
||||||
this._sliderSpeed = this._createSliderSpeed(this.options.styleNS + ' timecontrol-slider timecontrol-speed', container);
|
|
||||||
}
|
|
||||||
|
|
||||||
this._steps = this.options.timeSteps || 1;
|
|
||||||
|
|
||||||
this._timeDimension.on('timeload', this._update, this);
|
|
||||||
this._timeDimension.on('timeload', this._onPlayerStateChange, this);
|
|
||||||
this._timeDimension.on('timeloading', this._onTimeLoading, this);
|
|
||||||
|
|
||||||
this._timeDimension.on('limitschanged availabletimeschanged', this._onTimeLimitsChanged, this);
|
|
||||||
|
|
||||||
L.DomEvent.disableClickPropagation(container);
|
|
||||||
|
|
||||||
return container;
|
|
||||||
},
|
|
||||||
addTo: function() {
|
|
||||||
//To be notified AFTER the component was added to the DOM
|
|
||||||
L.Control.prototype.addTo.apply(this, arguments);
|
|
||||||
this._onPlayerStateChange();
|
|
||||||
this._onTimeLimitsChanged();
|
|
||||||
this._update();
|
|
||||||
return this;
|
|
||||||
},
|
|
||||||
onRemove: function() {
|
|
||||||
this._player.off('play stop running loopchange speedchange', this._onPlayerStateChange, this);
|
|
||||||
this._player.off('waiting', this._onPlayerWaiting, this);
|
|
||||||
//this._player = null; keep it for later re-add
|
|
||||||
|
|
||||||
this._timeDimension.off('timeload', this._update, this);
|
|
||||||
this._timeDimension.off('timeload', this._onPlayerStateChange, this);
|
|
||||||
this._timeDimension.off('timeloading', this._onTimeLoading, this);
|
|
||||||
this._timeDimension.off('limitschanged availabletimeschanged', this._onTimeLimitsChanged, this);
|
|
||||||
},
|
|
||||||
|
|
||||||
_initPlayer: function() {
|
|
||||||
if (!this._player){ // in case of remove/add
|
|
||||||
if (this.options.player) {
|
|
||||||
this._player = this.options.player;
|
|
||||||
} else {
|
|
||||||
this._player = new L.TimeDimension.Player(this.options.playerOptions, this._timeDimension);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (this.options.autoPlay) {
|
|
||||||
this._player.start(this._steps);
|
|
||||||
}
|
|
||||||
this._player.on('play stop running loopchange speedchange', this._onPlayerStateChange, this);
|
|
||||||
this._player.on('waiting', this._onPlayerWaiting, this);
|
|
||||||
this._onPlayerStateChange();
|
|
||||||
},
|
|
||||||
|
|
||||||
_onTimeLoading : function(data) {
|
|
||||||
if (data.time == this._timeDimension.getCurrentTime()) {
|
|
||||||
if (this._displayDate) {
|
|
||||||
L.DomUtil.addClass(this._displayDate, 'loading');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_onTimeLimitsChanged: function() {
|
|
||||||
var lowerIndex = this._timeDimension.getLowerLimitIndex(),
|
|
||||||
upperIndex = this._timeDimension.getUpperLimitIndex(),
|
|
||||||
max = this._timeDimension.getAvailableTimes().length - 1;
|
|
||||||
|
|
||||||
if (this._limitKnobs) {
|
|
||||||
this._limitKnobs[0].options.rangeMax = max;
|
|
||||||
this._limitKnobs[1].options.rangeMax = max;
|
|
||||||
this._limitKnobs[0].setValue(lowerIndex || 0);
|
|
||||||
this._limitKnobs[1].setValue(upperIndex || max);
|
|
||||||
}
|
|
||||||
if (this._sliderTime) {
|
|
||||||
this._sliderTime.options.rangeMax = max;
|
|
||||||
this._sliderTime._update();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_onPlayerWaiting: function(evt) {
|
|
||||||
if (this._buttonPlayPause && this._player.getSteps() > 0) {
|
|
||||||
L.DomUtil.addClass(this._buttonPlayPause, 'loading');
|
|
||||||
this._buttonPlayPause.innerHTML = this._getDisplayLoadingText(evt.available, evt.buffer);
|
|
||||||
}
|
|
||||||
if (this._buttonPlayReversePause && this._player.getSteps() < 0) {
|
|
||||||
L.DomUtil.addClass(this._buttonPlayReversePause, 'loading');
|
|
||||||
this._buttonPlayReversePause.innerHTML = this._getDisplayLoadingText(evt.available, evt.buffer);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
_onPlayerStateChange: function() {
|
|
||||||
if (this._buttonPlayPause) {
|
|
||||||
if (this._player.isPlaying() && this._player.getSteps() > 0) {
|
|
||||||
L.DomUtil.addClass(this._buttonPlayPause, 'pause');
|
|
||||||
L.DomUtil.removeClass(this._buttonPlayPause, 'play');
|
|
||||||
} else {
|
|
||||||
L.DomUtil.removeClass(this._buttonPlayPause, 'pause');
|
|
||||||
L.DomUtil.addClass(this._buttonPlayPause, 'play');
|
|
||||||
}
|
|
||||||
if (this._player.isWaiting() && this._player.getSteps() > 0) {
|
|
||||||
L.DomUtil.addClass(this._buttonPlayPause, 'loading');
|
|
||||||
} else {
|
|
||||||
this._buttonPlayPause.innerHTML = '';
|
|
||||||
L.DomUtil.removeClass(this._buttonPlayPause, 'loading');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (this._buttonPlayReversePause) {
|
|
||||||
if (this._player.isPlaying() && this._player.getSteps() < 0) {
|
|
||||||
L.DomUtil.addClass(this._buttonPlayReversePause, 'pause');
|
|
||||||
} else {
|
|
||||||
L.DomUtil.removeClass(this._buttonPlayReversePause, 'pause');
|
|
||||||
}
|
|
||||||
if (this._player.isWaiting() && this._player.getSteps() < 0) {
|
|
||||||
L.DomUtil.addClass(this._buttonPlayReversePause, 'loading');
|
|
||||||
} else {
|
|
||||||
this._buttonPlayReversePause.innerHTML = '';
|
|
||||||
L.DomUtil.removeClass(this._buttonPlayReversePause, 'loading');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (this._buttonLoop) {
|
|
||||||
if (this._player.isLooped()) {
|
|
||||||
L.DomUtil.addClass(this._buttonLoop, 'looped');
|
|
||||||
} else {
|
|
||||||
L.DomUtil.removeClass(this._buttonLoop, 'looped');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (this._sliderSpeed && !this._draggingSpeed) {
|
|
||||||
var speed = this._player.getTransitionTime() || 1000;//transitionTime
|
|
||||||
speed = Math.round(10000 / speed) /10; // 1s / transition
|
|
||||||
this._sliderSpeed.setValue(speed);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_update: function() {
|
|
||||||
if (!this._timeDimension) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (this._timeDimension.getCurrentTimeIndex() >= 0) {
|
|
||||||
var date = new Date(this._timeDimension.getCurrentTime());
|
|
||||||
if (this._displayDate) {
|
|
||||||
L.DomUtil.removeClass(this._displayDate, 'loading');
|
|
||||||
this._displayDate.innerHTML = this._getDisplayDateFormat(date);
|
|
||||||
}
|
|
||||||
if (this._sliderTime && !this._slidingTimeSlider) {
|
|
||||||
this._sliderTime.setValue(this._timeDimension.getCurrentTimeIndex());
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (this._displayDate) {
|
|
||||||
this._displayDate.innerHTML = this._getDisplayNoTimeError();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_createButton: function(title, container) {
|
|
||||||
var link = L.DomUtil.create('a', this.options.styleNS + ' timecontrol-' + title.toLowerCase(), container);
|
|
||||||
link.href = '#';
|
|
||||||
link.title = title;
|
|
||||||
|
|
||||||
L.DomEvent
|
|
||||||
.addListener(link, 'click', L.DomEvent.stopPropagation)
|
|
||||||
.addListener(link, 'click', L.DomEvent.preventDefault)
|
|
||||||
.addListener(link, 'click', this['_button' + title.replace(/ /i, '') + 'Clicked'], this);
|
|
||||||
|
|
||||||
return link;
|
|
||||||
},
|
|
||||||
|
|
||||||
_createDisplayDate: function(className, container) {
|
|
||||||
var link = L.DomUtil.create('a', className + ' utc', container);
|
|
||||||
link.href = '#';
|
|
||||||
link.title = 'UTC Time';
|
|
||||||
L.DomEvent
|
|
||||||
.addListener(link, 'click', L.DomEvent.stopPropagation)
|
|
||||||
.addListener(link, 'click', L.DomEvent.preventDefault)
|
|
||||||
.addListener(link, 'click', this._toggleDateUTC, this);
|
|
||||||
|
|
||||||
return link;
|
|
||||||
},
|
|
||||||
|
|
||||||
_createSliderTime: function(className, container) {
|
|
||||||
var sliderContainer,
|
|
||||||
sliderbar,
|
|
||||||
max,
|
|
||||||
knob, limits;
|
|
||||||
sliderContainer = L.DomUtil.create('div', className, container);
|
|
||||||
/*L.DomEvent
|
|
||||||
.addListener(sliderContainer, 'click', L.DomEvent.stopPropagation)
|
|
||||||
.addListener(sliderContainer, 'click', L.DomEvent.preventDefault);*/
|
|
||||||
|
|
||||||
sliderbar = L.DomUtil.create('div', 'slider', sliderContainer);
|
|
||||||
max = this._timeDimension.getAvailableTimes().length - 1;
|
|
||||||
|
|
||||||
if (this.options.limitSliders) {
|
|
||||||
limits = this._limitKnobs = this._createLimitKnobs(sliderbar);
|
|
||||||
}
|
|
||||||
knob = new L.UI.Knob(sliderbar, {
|
|
||||||
className: 'knob main',
|
|
||||||
rangeMin: 0,
|
|
||||||
rangeMax: max
|
|
||||||
});
|
|
||||||
knob.on('dragend', function(e) {
|
|
||||||
var value = e.target.getValue();
|
|
||||||
this._sliderTimeValueChanged(value);
|
|
||||||
this._slidingTimeSlider = false;
|
|
||||||
}, this);
|
|
||||||
knob.on('drag', function(e) {
|
|
||||||
this._slidingTimeSlider = true;
|
|
||||||
var time = this._timeDimension.getAvailableTimes()[e.target.getValue()];
|
|
||||||
if (time) {
|
|
||||||
var date = new Date(time);
|
|
||||||
if (this._displayDate) {
|
|
||||||
this._displayDate.innerHTML = this._getDisplayDateFormat(date);
|
|
||||||
}
|
|
||||||
if (this.options.timeSliderDragUpdate){
|
|
||||||
this._sliderTimeValueChanged(e.target.getValue());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
knob.on('predrag', function() {
|
|
||||||
var minPosition, maxPosition;
|
|
||||||
if (limits) {
|
|
||||||
//limits the position between lower and upper knobs
|
|
||||||
minPosition = limits[0].getPosition();
|
|
||||||
maxPosition = limits[1].getPosition();
|
|
||||||
if (this._newPos.x < minPosition) {
|
|
||||||
this._newPos.x = minPosition;
|
|
||||||
}
|
|
||||||
if (this._newPos.x > maxPosition) {
|
|
||||||
this._newPos.x = maxPosition;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, knob);
|
|
||||||
L.DomEvent.on(sliderbar, 'click', function(e) {
|
|
||||||
if (L.DomUtil.hasClass(e.target, 'knob')) {
|
|
||||||
return; //prevent value changes on drag release
|
|
||||||
}
|
|
||||||
var first = (e.touches && e.touches.length === 1 ? e.touches[0] : e),
|
|
||||||
x = L.DomEvent.getMousePosition(first, sliderbar).x;
|
|
||||||
if (limits) { // limits exits
|
|
||||||
if (limits[0].getPosition() <= x && x <= limits[1].getPosition()) {
|
|
||||||
knob.setPosition(x);
|
|
||||||
this._sliderTimeValueChanged(knob.getValue());
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
knob.setPosition(x);
|
|
||||||
this._sliderTimeValueChanged(knob.getValue());
|
|
||||||
}
|
|
||||||
|
|
||||||
}, this);
|
|
||||||
knob.setPosition(0);
|
|
||||||
|
|
||||||
return knob;
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
_createLimitKnobs: function(sliderbar) {
|
|
||||||
L.DomUtil.addClass(sliderbar, 'has-limits');
|
|
||||||
var max = this._timeDimension.getAvailableTimes().length - 1;
|
|
||||||
var rangeBar = L.DomUtil.create('div', 'range', sliderbar);
|
|
||||||
var lknob = new L.UI.Knob(sliderbar, {
|
|
||||||
className: 'knob lower',
|
|
||||||
rangeMin: 0,
|
|
||||||
rangeMax: max
|
|
||||||
});
|
|
||||||
var uknob = new L.UI.Knob(sliderbar, {
|
|
||||||
className: 'knob upper',
|
|
||||||
rangeMin: 0,
|
|
||||||
rangeMax: max
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
L.DomUtil.setPosition(rangeBar, 0);
|
|
||||||
lknob.setPosition(0);
|
|
||||||
uknob.setPosition(max);
|
|
||||||
|
|
||||||
//Add listeners for value changes
|
|
||||||
lknob.on('dragend', function(e) {
|
|
||||||
var value = e.target.getValue();
|
|
||||||
this._sliderLimitsValueChanged(value, uknob.getValue());
|
|
||||||
}, this);
|
|
||||||
uknob.on('dragend', function(e) {
|
|
||||||
var value = e.target.getValue();
|
|
||||||
this._sliderLimitsValueChanged(lknob.getValue(), value);
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
//Add listeners to position the range bar
|
|
||||||
lknob.on('drag positionchanged', function() {
|
|
||||||
L.DomUtil.setPosition(rangeBar, L.point(lknob.getPosition(), 0));
|
|
||||||
rangeBar.style.width = uknob.getPosition() - lknob.getPosition() + 'px';
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
uknob.on('drag positionchanged', function() {
|
|
||||||
rangeBar.style.width = uknob.getPosition() - lknob.getPosition() + 'px';
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
//Add listeners to prevent overlaps
|
|
||||||
uknob.on('predrag', function() {
|
|
||||||
//bond upper to lower
|
|
||||||
var lowerPosition = lknob._toX(lknob.getValue() + this.options.limitMinimumRange);
|
|
||||||
if (uknob._newPos.x <= lowerPosition) {
|
|
||||||
uknob._newPos.x = lowerPosition;
|
|
||||||
}
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
lknob.on('predrag', function() {
|
|
||||||
//bond lower to upper
|
|
||||||
var upperPosition = uknob._toX(uknob.getValue() - this.options.limitMinimumRange);
|
|
||||||
if (lknob._newPos.x >= upperPosition) {
|
|
||||||
lknob._newPos.x = upperPosition;
|
|
||||||
}
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
lknob.on('dblclick', function() {
|
|
||||||
this._timeDimension.setLowerLimitIndex(0);
|
|
||||||
}, this);
|
|
||||||
uknob.on('dblclick', function() {
|
|
||||||
this._timeDimension.setUpperLimitIndex(this._timeDimension.getAvailableTimes().length - 1);
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
return [lknob, uknob];
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
_createSliderSpeed: function(className, container) {
|
|
||||||
var sliderContainer = L.DomUtil.create('div', className, container);
|
|
||||||
/* L.DomEvent
|
|
||||||
.addListener(sliderContainer, 'click', L.DomEvent.stopPropagation)
|
|
||||||
.addListener(sliderContainer, 'click', L.DomEvent.preventDefault);
|
|
||||||
*/
|
|
||||||
var speedLabel = L.DomUtil.create('span', 'speed', sliderContainer);
|
|
||||||
var sliderbar = L.DomUtil.create('div', 'slider', sliderContainer);
|
|
||||||
var initialSpeed = Math.round(10000 / (this._player.getTransitionTime() || 1000)) / 10;
|
|
||||||
speedLabel.innerHTML = this._getDisplaySpeed(initialSpeed);
|
|
||||||
|
|
||||||
var knob = new L.UI.Knob(sliderbar, {
|
|
||||||
step: this.options.speedStep,
|
|
||||||
rangeMin: this.options.minSpeed,
|
|
||||||
rangeMax: this.options.maxSpeed
|
|
||||||
});
|
|
||||||
|
|
||||||
knob.on('dragend', function(e) {
|
|
||||||
var value = e.target.getValue();
|
|
||||||
this._draggingSpeed = false;
|
|
||||||
speedLabel.innerHTML = this._getDisplaySpeed(value);
|
|
||||||
this._sliderSpeedValueChanged(value);
|
|
||||||
}, this);
|
|
||||||
knob.on('drag', function(e) {
|
|
||||||
this._draggingSpeed = true;
|
|
||||||
speedLabel.innerHTML = this._getDisplaySpeed(e.target.getValue());
|
|
||||||
}, this);
|
|
||||||
knob.on('positionchanged', function (e) {
|
|
||||||
speedLabel.innerHTML = this._getDisplaySpeed(e.target.getValue());
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
L.DomEvent.on(sliderbar, 'click', function(e) {
|
|
||||||
if (e.target === knob._element) {
|
|
||||||
return; //prevent value changes on drag release
|
|
||||||
}
|
|
||||||
var first = (e.touches && e.touches.length === 1 ? e.touches[0] : e),
|
|
||||||
x = L.DomEvent.getMousePosition(first, sliderbar).x;
|
|
||||||
knob.setPosition(x);
|
|
||||||
speedLabel.innerHTML = this._getDisplaySpeed(knob.getValue());
|
|
||||||
this._sliderSpeedValueChanged(knob.getValue());
|
|
||||||
}, this);
|
|
||||||
return knob;
|
|
||||||
},
|
|
||||||
|
|
||||||
_buttonBackwardClicked: function() {
|
|
||||||
this._timeDimension.previousTime(this._steps);
|
|
||||||
},
|
|
||||||
|
|
||||||
_buttonForwardClicked: function() {
|
|
||||||
this._timeDimension.nextTime(this._steps);
|
|
||||||
},
|
|
||||||
_buttonLoopClicked: function() {
|
|
||||||
this._player.setLooped(!this._player.isLooped());
|
|
||||||
},
|
|
||||||
|
|
||||||
_buttonPlayClicked: function() {
|
|
||||||
if (this._player.isPlaying()) {
|
|
||||||
if (this._player.isWaiting()) {
|
|
||||||
// force restart
|
|
||||||
this._player.stop();
|
|
||||||
this._player.start(this._steps);
|
|
||||||
|
|
||||||
} else {
|
|
||||||
this._player.stop();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this._player.start(this._steps);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_buttonPlayReverseClicked: function() {
|
|
||||||
if (this._player.isPlaying()) {
|
|
||||||
if (this._player.isWaiting()) {
|
|
||||||
// force restart
|
|
||||||
this._player.stop();
|
|
||||||
this._player.start(this._steps * (-1));
|
|
||||||
} else {
|
|
||||||
this._player.stop();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this._player.start(this._steps * (-1));
|
|
||||||
}
|
|
||||||
},
|
|
||||||
_sliderTimeValueChanged: function(newValue) {
|
|
||||||
this._timeDimension.setCurrentTimeIndex(newValue);
|
|
||||||
},
|
|
||||||
|
|
||||||
_sliderLimitsValueChanged: function(lowerLimit, upperLimit) {
|
|
||||||
this._timeDimension.setLowerLimitIndex(lowerLimit);
|
|
||||||
this._timeDimension.setUpperLimitIndex(upperLimit);
|
|
||||||
},
|
|
||||||
|
|
||||||
_sliderSpeedValueChanged: function(newValue) {
|
|
||||||
this._player.setTransitionTime(1000 / newValue);
|
|
||||||
},
|
|
||||||
|
|
||||||
_toggleDateUTC: function() {
|
|
||||||
if (this._dateUTC) {
|
|
||||||
L.DomUtil.removeClass(this._displayDate, 'utc');
|
|
||||||
this._displayDate.title = 'Local Time';
|
|
||||||
} else {
|
|
||||||
L.DomUtil.addClass(this._displayDate, 'utc');
|
|
||||||
this._displayDate.title = 'UTC Time';
|
|
||||||
}
|
|
||||||
this._dateUTC = !this._dateUTC;
|
|
||||||
this._update();
|
|
||||||
},
|
|
||||||
|
|
||||||
_getDisplayDateFormat: function(date) {
|
|
||||||
return this._dateUTC ? date.toISOString() : date.toLocaleString();
|
|
||||||
},
|
|
||||||
_getDisplaySpeed: function(fps) {
|
|
||||||
return fps + 'fps';
|
|
||||||
},
|
|
||||||
_getDisplayLoadingText: function(available, buffer) {
|
|
||||||
return '<span>' + Math.floor(available / buffer * 100) + '%</span>';
|
|
||||||
},
|
|
||||||
_getDisplayNoTimeError: function() {
|
|
||||||
return 'Time not available';
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
L.Map.addInitHook(function() {
|
|
||||||
if (this.options.timeDimensionControl) {
|
|
||||||
this.timeDimensionControl = L.control.timeDimension(this.options.timeDimensionControlOptions || {});
|
|
||||||
this.addControl(this.timeDimensionControl);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
L.control.timeDimension = function(options) {
|
|
||||||
return new L.Control.TimeDimension(options);
|
|
||||||
};
|
|
|
@ -1,377 +0,0 @@
|
||||||
/*jshint indent: 4, browser:true*/
|
|
||||||
/*global L*/
|
|
||||||
/*
|
|
||||||
* L.TimeDimension: TimeDimension object manages the time component of a layer.
|
|
||||||
* It can be shared among different layers and it can be added to a map, and become
|
|
||||||
* the default timedimension component for any layer added to the map.
|
|
||||||
*/
|
|
||||||
|
|
||||||
L.TimeDimension = (L.Layer || L.Class).extend({
|
|
||||||
|
|
||||||
includes: L.Mixin.Events,
|
|
||||||
|
|
||||||
initialize: function (options) {
|
|
||||||
L.setOptions(this, options);
|
|
||||||
// _availableTimes is an array with all the available times in ms.
|
|
||||||
this._availableTimes = this._generateAvailableTimes();
|
|
||||||
this._currentTimeIndex = -1;
|
|
||||||
this._loadingTimeIndex = -1;
|
|
||||||
this._loadingTimeout = this.options.loadingTimeout || 3000;
|
|
||||||
this._syncedLayers = [];
|
|
||||||
if (this._availableTimes.length > 0) {
|
|
||||||
this.setCurrentTime(this.options.currentTime || this._getDefaultCurrentTime());
|
|
||||||
}
|
|
||||||
if (this.options.lowerLimitTime) {
|
|
||||||
this.setLowerLimit(this.options.lowerLimitTime);
|
|
||||||
}
|
|
||||||
if (this.options.upperLimitTime) {
|
|
||||||
this.setUpperLimit(this.options.upperLimitTime);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
getAvailableTimes: function () {
|
|
||||||
return this._availableTimes;
|
|
||||||
},
|
|
||||||
|
|
||||||
getCurrentTimeIndex: function () {
|
|
||||||
if (this._currentTimeIndex === -1) {
|
|
||||||
return this._availableTimes.length - 1;
|
|
||||||
}
|
|
||||||
return this._currentTimeIndex;
|
|
||||||
},
|
|
||||||
|
|
||||||
getCurrentTime: function () {
|
|
||||||
var index = -1;
|
|
||||||
if (this._loadingTimeIndex !== -1) {
|
|
||||||
index = this._loadingTimeIndex;
|
|
||||||
} else {
|
|
||||||
index = this.getCurrentTimeIndex();
|
|
||||||
}
|
|
||||||
if (index >= 0) {
|
|
||||||
return this._availableTimes[index];
|
|
||||||
} else {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
isLoading: function () {
|
|
||||||
return (this._loadingTimeIndex !== -1);
|
|
||||||
},
|
|
||||||
|
|
||||||
setCurrentTimeIndex: function (newIndex) {
|
|
||||||
var upperLimit = this._upperLimit || this._availableTimes.length - 1;
|
|
||||||
var lowerLimit = this._lowerLimit || 0;
|
|
||||||
//clamp the value
|
|
||||||
newIndex = Math.min(Math.max(lowerLimit, newIndex), upperLimit);
|
|
||||||
if (newIndex < 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this._loadingTimeIndex = newIndex;
|
|
||||||
var newTime = this._availableTimes[newIndex];
|
|
||||||
console.log('INIT -- Current time: ' + new Date(newTime).toISOString());
|
|
||||||
if (this._checkSyncedLayersReady(this._availableTimes[this._loadingTimeIndex])) {
|
|
||||||
this._newTimeIndexLoaded();
|
|
||||||
} else {
|
|
||||||
this.fire('timeloading', {
|
|
||||||
time: newTime
|
|
||||||
});
|
|
||||||
// add timeout of 3 seconds if layers doesn't response
|
|
||||||
setTimeout((function (index) {
|
|
||||||
if (index == this._loadingTimeIndex) {
|
|
||||||
console.log('Change time for timeout');
|
|
||||||
this._newTimeIndexLoaded();
|
|
||||||
}
|
|
||||||
}).bind(this, newIndex), this._loadingTimeout);
|
|
||||||
}
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
_newTimeIndexLoaded: function () {
|
|
||||||
if (this._loadingTimeIndex === -1) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
var time = this._availableTimes[this._loadingTimeIndex];
|
|
||||||
console.log('END -- Current time: ' + new Date(time).toISOString());
|
|
||||||
this._currentTimeIndex = this._loadingTimeIndex;
|
|
||||||
this.fire('timeload', {
|
|
||||||
time: time
|
|
||||||
});
|
|
||||||
this._loadingTimeIndex = -1;
|
|
||||||
},
|
|
||||||
|
|
||||||
_checkSyncedLayersReady: function (time) {
|
|
||||||
for (var i = 0, len = this._syncedLayers.length; i < len; i++) {
|
|
||||||
if (this._syncedLayers[i].isReady) {
|
|
||||||
if (!this._syncedLayers[i].isReady(time)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
},
|
|
||||||
|
|
||||||
setCurrentTime: function (time) {
|
|
||||||
var newIndex = this._seekNearestTimeIndex(time);
|
|
||||||
this.setCurrentTimeIndex(newIndex);
|
|
||||||
},
|
|
||||||
|
|
||||||
seekNearestTime: function (time) {
|
|
||||||
var index = this._seekNearestTimeIndex(time);
|
|
||||||
return this._availableTimes[index];
|
|
||||||
},
|
|
||||||
|
|
||||||
nextTime: function (numSteps, loop) {
|
|
||||||
if (!numSteps) {
|
|
||||||
numSteps = 1;
|
|
||||||
}
|
|
||||||
var newIndex = this._currentTimeIndex;
|
|
||||||
var upperLimit = this._upperLimit || this._availableTimes.length - 1;
|
|
||||||
var lowerLimit = this._lowerLimit || 0;
|
|
||||||
if (this._loadingTimeIndex > -1) {
|
|
||||||
newIndex = this._loadingTimeIndex;
|
|
||||||
}
|
|
||||||
newIndex = newIndex + numSteps;
|
|
||||||
if (newIndex > upperLimit) {
|
|
||||||
if (!!loop) {
|
|
||||||
newIndex = lowerLimit;
|
|
||||||
} else {
|
|
||||||
newIndex = upperLimit;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// loop backwards
|
|
||||||
if (newIndex < lowerLimit) {
|
|
||||||
if (!!loop) {
|
|
||||||
newIndex = upperLimit;
|
|
||||||
} else {
|
|
||||||
newIndex = lowerLimit;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this.setCurrentTimeIndex(newIndex);
|
|
||||||
},
|
|
||||||
|
|
||||||
prepareNextTimes: function (numSteps, howmany, loop) {
|
|
||||||
if (!numSteps) {
|
|
||||||
numSteps = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
var newIndex = this._currentTimeIndex;
|
|
||||||
var currentIndex = newIndex;
|
|
||||||
if (this._loadingTimeIndex > -1) {
|
|
||||||
newIndex = this._loadingTimeIndex;
|
|
||||||
}
|
|
||||||
// assure synced layers have a buffer/cache of at least howmany elements
|
|
||||||
for (var i = 0, len = this._syncedLayers.length; i < len; i++) {
|
|
||||||
if (this._syncedLayers[i].setMinimumForwardCache) {
|
|
||||||
this._syncedLayers[i].setMinimumForwardCache(howmany);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var count = howmany;
|
|
||||||
var upperLimit = this._upperLimit || this._availableTimes.length - 1;
|
|
||||||
var lowerLimit = this._lowerLimit || 0;
|
|
||||||
while (count > 0) {
|
|
||||||
newIndex = newIndex + numSteps;
|
|
||||||
if (newIndex > upperLimit) {
|
|
||||||
if (!!loop) {
|
|
||||||
newIndex = lowerLimit;
|
|
||||||
} else {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (newIndex < lowerLimit) {
|
|
||||||
if (!!loop) {
|
|
||||||
newIndex = upperLimit;
|
|
||||||
} else {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (currentIndex === newIndex) {
|
|
||||||
//we looped around the timeline
|
|
||||||
//no need to load further, the next times are already loading
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
this.fire('timeloading', {
|
|
||||||
time: this._availableTimes[newIndex]
|
|
||||||
});
|
|
||||||
count--;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
getNumberNextTimesReady: function (numSteps, howmany, loop) {
|
|
||||||
if (!numSteps) {
|
|
||||||
numSteps = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
var newIndex = this._currentTimeIndex;
|
|
||||||
if (this._loadingTimeIndex > -1) {
|
|
||||||
newIndex = this._loadingTimeIndex;
|
|
||||||
}
|
|
||||||
var count = howmany;
|
|
||||||
var ready = 0;
|
|
||||||
var upperLimit = this._upperLimit || this._availableTimes.length - 1;
|
|
||||||
var lowerLimit = this._lowerLimit || 0;
|
|
||||||
while (count > 0) {
|
|
||||||
newIndex = newIndex + numSteps;
|
|
||||||
if (newIndex > upperLimit) {
|
|
||||||
if (!!loop) {
|
|
||||||
newIndex = lowerLimit;
|
|
||||||
} else {
|
|
||||||
count = 0;
|
|
||||||
ready = howmany;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (newIndex < lowerLimit) {
|
|
||||||
if (!!loop) {
|
|
||||||
newIndex = upperLimit;
|
|
||||||
} else {
|
|
||||||
count = 0;
|
|
||||||
ready = howmany;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var time = this._availableTimes[newIndex];
|
|
||||||
if (this._checkSyncedLayersReady(time)) {
|
|
||||||
ready++;
|
|
||||||
}
|
|
||||||
count--;
|
|
||||||
}
|
|
||||||
return ready;
|
|
||||||
},
|
|
||||||
|
|
||||||
previousTime: function (numSteps, loop) {
|
|
||||||
this.nextTime(numSteps*(-1), loop);
|
|
||||||
},
|
|
||||||
|
|
||||||
registerSyncedLayer: function (layer) {
|
|
||||||
this._syncedLayers.push(layer);
|
|
||||||
layer.on('timeload', this._onSyncedLayerLoaded, this);
|
|
||||||
},
|
|
||||||
|
|
||||||
unregisterSyncedLayer: function (layer) {
|
|
||||||
var index = this._syncedLayers.indexOf(layer);
|
|
||||||
if (index != -1) {
|
|
||||||
this._syncedLayers.splice(index, 1);
|
|
||||||
}
|
|
||||||
layer.off('timeload', this._onSyncedLayerLoaded, this);
|
|
||||||
},
|
|
||||||
|
|
||||||
_onSyncedLayerLoaded: function (e) {
|
|
||||||
if (e.time == this._availableTimes[this._loadingTimeIndex] && this._checkSyncedLayersReady(e.time)) {
|
|
||||||
this._newTimeIndexLoaded();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_generateAvailableTimes: function () {
|
|
||||||
if (this.options.times) {
|
|
||||||
return L.TimeDimension.Util.parseTimesExpression(this.options.times);
|
|
||||||
} else if (this.options.timeInterval) {
|
|
||||||
var tiArray = L.TimeDimension.Util.parseTimeInterval(this.options.timeInterval);
|
|
||||||
var period = this.options.period || 'P1D';
|
|
||||||
var validTimeRange = this.options.validTimeRange || undefined;
|
|
||||||
return L.TimeDimension.Util.explodeTimeRange(tiArray[0], tiArray[1], period, validTimeRange);
|
|
||||||
} else {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_getDefaultCurrentTime: function () {
|
|
||||||
var index = this._seekNearestTimeIndex(new Date().getTime());
|
|
||||||
return this._availableTimes[index];
|
|
||||||
},
|
|
||||||
|
|
||||||
_seekNearestTimeIndex: function (time) {
|
|
||||||
var newIndex = 0;
|
|
||||||
var len = this._availableTimes.length;
|
|
||||||
for (; newIndex < len; newIndex++) {
|
|
||||||
if (time < this._availableTimes[newIndex]) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// We've found the first index greater than the time. Return the previous
|
|
||||||
if (newIndex > 0) {
|
|
||||||
newIndex--;
|
|
||||||
}
|
|
||||||
return newIndex;
|
|
||||||
},
|
|
||||||
|
|
||||||
setAvailableTimes: function (times, mode) {
|
|
||||||
var currentTime = this.getCurrentTime(),
|
|
||||||
lowerLimitTime = this.getLowerLimit(),
|
|
||||||
upperLimitTime = this.getUpperLimit();
|
|
||||||
|
|
||||||
if (mode == 'extremes') {
|
|
||||||
var period = this.options.period || 'P1D';
|
|
||||||
this._availableTimes = L.TimeDimension.Util.explodeTimeRange(new Date(times[0]), new Date(times[times.length - 1]), period);
|
|
||||||
} else {
|
|
||||||
var parsedTimes = L.TimeDimension.Util.parseTimesExpression(times);
|
|
||||||
if (this._availableTimes.length === 0) {
|
|
||||||
this._availableTimes = parsedTimes;
|
|
||||||
} else if (mode == 'intersect') {
|
|
||||||
this._availableTimes = L.TimeDimension.Util.intersect_arrays(parsedTimes, this._availableTimes);
|
|
||||||
} else if (mode == 'union') {
|
|
||||||
this._availableTimes = L.TimeDimension.Util.union_arrays(parsedTimes, this._availableTimes);
|
|
||||||
} else if (mode == 'replace') {
|
|
||||||
this._availableTimes = parsedTimes;
|
|
||||||
} else {
|
|
||||||
throw 'Merge available times mode not implemented: ' + mode;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (lowerLimitTime) {
|
|
||||||
this.setLowerLimit(lowerLimitTime); //restore lower limit
|
|
||||||
}
|
|
||||||
if (upperLimitTime) {
|
|
||||||
this.setUpperLimit(upperLimitTime); //restore upper limit
|
|
||||||
}
|
|
||||||
this.setCurrentTime(currentTime);
|
|
||||||
this.fire('availabletimeschanged', {
|
|
||||||
availableTimes: this._availableTimes,
|
|
||||||
currentTime: currentTime
|
|
||||||
});
|
|
||||||
console.log('available times changed');
|
|
||||||
},
|
|
||||||
getLowerLimit: function () {
|
|
||||||
return this._availableTimes[this.getLowerLimitIndex()];
|
|
||||||
},
|
|
||||||
getUpperLimit: function () {
|
|
||||||
return this._availableTimes[this.getUpperLimitIndex()];
|
|
||||||
},
|
|
||||||
setLowerLimit: function (time) {
|
|
||||||
var index = this._seekNearestTimeIndex(time);
|
|
||||||
this.setLowerLimitIndex(index);
|
|
||||||
},
|
|
||||||
setUpperLimit: function (time) {
|
|
||||||
var index = this._seekNearestTimeIndex(time);
|
|
||||||
this.setUpperLimitIndex(index);
|
|
||||||
},
|
|
||||||
setLowerLimitIndex: function (index) {
|
|
||||||
this._lowerLimit = Math.min(Math.max(index || 0, 0), this._upperLimit || this._availableTimes.length - 1);
|
|
||||||
this.fire('limitschanged', {
|
|
||||||
lowerLimit: this._lowerLimit,
|
|
||||||
upperLimit: this._upperLimit
|
|
||||||
});
|
|
||||||
},
|
|
||||||
setUpperLimitIndex: function (index) {
|
|
||||||
this._upperLimit = Math.max(Math.min(index, this._availableTimes.length - 1), this._lowerLimit || 0);
|
|
||||||
this.fire('limitschanged', {
|
|
||||||
lowerLimit: this._lowerLimit,
|
|
||||||
upperLimit: this._upperLimit
|
|
||||||
});
|
|
||||||
},
|
|
||||||
getLowerLimitIndex: function () {
|
|
||||||
return this._lowerLimit;
|
|
||||||
},
|
|
||||||
getUpperLimitIndex: function () {
|
|
||||||
return this._upperLimit;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
L.Map.addInitHook(function () {
|
|
||||||
if (this.options.timeDimension) {
|
|
||||||
this.timeDimension = L.timeDimension(this.options.timeDimensionOptions || {});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
L.timeDimension = function (options) {
|
|
||||||
return new L.TimeDimension(options);
|
|
||||||
};
|
|
|
@ -1,211 +0,0 @@
|
||||||
/*
|
|
||||||
* L.TimeDimension.Layer.GeoJson:
|
|
||||||
*/
|
|
||||||
|
|
||||||
L.TimeDimension.Layer.GeoJson = L.TimeDimension.Layer.extend({
|
|
||||||
|
|
||||||
initialize: function(layer, options) {
|
|
||||||
L.TimeDimension.Layer.prototype.initialize.call(this, layer, options);
|
|
||||||
this._updateTimeDimension = this.options.updateTimeDimension || false;
|
|
||||||
this._updateTimeDimensionMode = this.options.updateTimeDimensionMode || 'extremes'; // 'union', 'replace' or extremes
|
|
||||||
this._duration = this.options.duration || null;
|
|
||||||
this._addlastPoint = this.options.addlastPoint || false;
|
|
||||||
this._waitForReady = this.options.waitForReady || false;
|
|
||||||
this._defaultTime = 0;
|
|
||||||
this._availableTimes = [];
|
|
||||||
this._loaded = false;
|
|
||||||
if (this._baseLayer.getLayers().length == 0) {
|
|
||||||
if (this._waitForReady){
|
|
||||||
this._baseLayer.on("ready", this._onReadyBaseLayer, this);
|
|
||||||
}else{
|
|
||||||
this._loaded = true;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this._loaded = true;
|
|
||||||
this._setAvailableTimes();
|
|
||||||
}
|
|
||||||
// reload available times if data is added to the base layer
|
|
||||||
this._baseLayer.on('layeradd', (function () {
|
|
||||||
if (this._loaded) {
|
|
||||||
this._setAvailableTimes();
|
|
||||||
}
|
|
||||||
}).bind(this));
|
|
||||||
},
|
|
||||||
|
|
||||||
onAdd: function(map) {
|
|
||||||
L.TimeDimension.Layer.prototype.onAdd.call(this, map);
|
|
||||||
if (this._loaded) {
|
|
||||||
this._setAvailableTimes();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
eachLayer: function(method, context) {
|
|
||||||
if (this._currentLayer) {
|
|
||||||
method.call(context, this._currentLayer);
|
|
||||||
}
|
|
||||||
return L.TimeDimension.Layer.prototype.eachLayer.call(this, method, context);
|
|
||||||
},
|
|
||||||
|
|
||||||
isReady: function(time) {
|
|
||||||
return this._loaded;
|
|
||||||
},
|
|
||||||
|
|
||||||
_update: function() {
|
|
||||||
if (!this._map)
|
|
||||||
return;
|
|
||||||
if (!this._loaded) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var time = this._timeDimension.getCurrentTime();
|
|
||||||
|
|
||||||
var maxTime = this._timeDimension.getCurrentTime(),
|
|
||||||
minTime = 0;
|
|
||||||
if (this._duration) {
|
|
||||||
var date = new Date(maxTime);
|
|
||||||
L.TimeDimension.Util.subtractTimeDuration(date, this._duration, true);
|
|
||||||
minTime = date.getTime();
|
|
||||||
}
|
|
||||||
|
|
||||||
// new coordinates:
|
|
||||||
var layer = L.geoJson(null, this._baseLayer.options);
|
|
||||||
var layers = this._baseLayer.getLayers();
|
|
||||||
for (var i = 0, l = layers.length; i < l; i++) {
|
|
||||||
var feature = this._getFeatureBetweenDates(layers[i].feature, minTime, maxTime);
|
|
||||||
if (feature) {
|
|
||||||
layer.addData(feature);
|
|
||||||
if (this._addlastPoint && feature.geometry.type == "LineString") {
|
|
||||||
if (feature.geometry.coordinates.length > 0) {
|
|
||||||
var properties = feature.properties;
|
|
||||||
properties.last = true;
|
|
||||||
layer.addData({
|
|
||||||
type: 'Feature',
|
|
||||||
properties: properties,
|
|
||||||
geometry: {
|
|
||||||
type: 'Point',
|
|
||||||
coordinates: feature.geometry.coordinates[feature.geometry.coordinates.length - 1]
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this._currentLayer) {
|
|
||||||
this._map.removeLayer(this._currentLayer);
|
|
||||||
}
|
|
||||||
if (layer.getLayers().length) {
|
|
||||||
layer.addTo(this._map);
|
|
||||||
this._currentLayer = layer;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_setAvailableTimes: function() {
|
|
||||||
var times = [];
|
|
||||||
this._availableTimes = [];
|
|
||||||
var layers = this._baseLayer.getLayers();
|
|
||||||
for (var i = 0, l = layers.length; i < l; i++) {
|
|
||||||
if (layers[i].feature) {
|
|
||||||
times = L.TimeDimension.Util.union_arrays(
|
|
||||||
times,
|
|
||||||
this._getFeatureTimes(layers[i].feature)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// String dates to ms
|
|
||||||
for (var i = 0, l = times.length; i < l; i++) {
|
|
||||||
var time = times[i]
|
|
||||||
if (typeof time == 'string' || time instanceof String) {
|
|
||||||
time = Date.parse(time.trim());
|
|
||||||
}
|
|
||||||
this._availableTimes.push(time);
|
|
||||||
}
|
|
||||||
if (this._timeDimension && (this._updateTimeDimension || this._timeDimension.getAvailableTimes().length == 0)) {
|
|
||||||
this._timeDimension.setAvailableTimes(this._availableTimes, this._updateTimeDimensionMode);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_getFeatureTimes: function(feature) {
|
|
||||||
if (!feature.properties) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
if (feature.properties.hasOwnProperty('coordTimes')) {
|
|
||||||
return feature.properties.coordTimes;
|
|
||||||
}
|
|
||||||
if (feature.properties.hasOwnProperty('times')) {
|
|
||||||
return feature.properties.times;
|
|
||||||
}
|
|
||||||
if (feature.properties.hasOwnProperty('linestringTimestamps')) {
|
|
||||||
return feature.properties.linestringTimestamps;
|
|
||||||
}
|
|
||||||
if (feature.properties.hasOwnProperty('time')) {
|
|
||||||
return [feature.properties.time];
|
|
||||||
}
|
|
||||||
return [];
|
|
||||||
},
|
|
||||||
|
|
||||||
_getFeatureBetweenDates: function(feature, minTime, maxTime) {
|
|
||||||
var featureStringTimes = this._getFeatureTimes(feature);
|
|
||||||
if (featureStringTimes.length == 0) {
|
|
||||||
return feature;
|
|
||||||
}
|
|
||||||
var featureTimes = [];
|
|
||||||
for (var i = 0, l = featureStringTimes.length; i < l; i++) {
|
|
||||||
var time = featureStringTimes[i]
|
|
||||||
if (typeof time == 'string' || time instanceof String) {
|
|
||||||
time = Date.parse(time.trim());
|
|
||||||
}
|
|
||||||
featureTimes.push(time);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (featureTimes[0] > maxTime || featureTimes[l - 1] < minTime) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
var index_min = null,
|
|
||||||
index_max = null,
|
|
||||||
l = featureTimes.length;
|
|
||||||
if (featureTimes[l - 1] > minTime) {
|
|
||||||
for (var i = 0; i < l; i++) {
|
|
||||||
if (index_min === null && featureTimes[i] > minTime) {
|
|
||||||
// set index_min the first time that current time is greater the minTime
|
|
||||||
index_min = i;
|
|
||||||
}
|
|
||||||
if (featureTimes[i] > maxTime) {
|
|
||||||
index_max = i;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (index_min === null) {
|
|
||||||
index_min = 0;
|
|
||||||
}
|
|
||||||
if (index_max === null) {
|
|
||||||
index_max = l;
|
|
||||||
}
|
|
||||||
var new_coordinates = [];
|
|
||||||
if (feature.geometry.coordinates[0].length) {
|
|
||||||
new_coordinates = feature.geometry.coordinates.slice(index_min, index_max);
|
|
||||||
} else {
|
|
||||||
new_coordinates = feature.geometry.coordinates;
|
|
||||||
}
|
|
||||||
return {
|
|
||||||
type: 'Feature',
|
|
||||||
properties: feature.properties,
|
|
||||||
geometry: {
|
|
||||||
type: feature.geometry.type,
|
|
||||||
coordinates: new_coordinates
|
|
||||||
}
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
_onReadyBaseLayer: function() {
|
|
||||||
this._loaded = true;
|
|
||||||
this._setAvailableTimes();
|
|
||||||
this._update();
|
|
||||||
},
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
L.timeDimension.layer.geoJson = function(layer, options) {
|
|
||||||
return new L.TimeDimension.Layer.GeoJson(layer, options);
|
|
||||||
};
|
|
|
@ -1,125 +0,0 @@
|
||||||
/*
|
|
||||||
* L.TimeDimension.Layer: an abstract Layer that can be managed/synchronized with a TimeDimension.
|
|
||||||
* The constructor recieves a layer (of any kind) and options.
|
|
||||||
* Any children class should implement `_onNewTimeLoading`, `isReady` and `_update` functions
|
|
||||||
* to react to time changes.
|
|
||||||
*/
|
|
||||||
|
|
||||||
L.TimeDimension.Layer = (L.Layer || L.Class).extend({
|
|
||||||
|
|
||||||
includes: L.Mixin.Events,
|
|
||||||
options: {
|
|
||||||
opacity: 1,
|
|
||||||
zIndex: 1
|
|
||||||
},
|
|
||||||
|
|
||||||
initialize: function(layer, options) {
|
|
||||||
L.setOptions(this, options || {});
|
|
||||||
this._map = null;
|
|
||||||
this._baseLayer = layer;
|
|
||||||
this._currentLayer = null;
|
|
||||||
this._timeDimension = this.options.timeDimension || null;
|
|
||||||
},
|
|
||||||
|
|
||||||
addTo: function(map) {
|
|
||||||
map.addLayer(this);
|
|
||||||
return this;
|
|
||||||
},
|
|
||||||
|
|
||||||
onAdd: function(map) {
|
|
||||||
this._map = map;
|
|
||||||
if (!this._timeDimension && map.timeDimension) {
|
|
||||||
this._timeDimension = map.timeDimension;
|
|
||||||
}
|
|
||||||
this._timeDimension.on("timeloading", this._onNewTimeLoading, this);
|
|
||||||
this._timeDimension.on("timeload", this._update, this);
|
|
||||||
this._timeDimension.registerSyncedLayer(this);
|
|
||||||
this._update();
|
|
||||||
},
|
|
||||||
|
|
||||||
onRemove: function(map) {
|
|
||||||
this._timeDimension.unregisterSyncedLayer(this);
|
|
||||||
this._timeDimension.off("timeloading", this._onNewTimeLoading, this);
|
|
||||||
this._timeDimension.off("timeload", this._update, this);
|
|
||||||
this.eachLayer(map.removeLayer, map);
|
|
||||||
this._map = null;
|
|
||||||
},
|
|
||||||
|
|
||||||
eachLayer: function(method, context) {
|
|
||||||
method.call(context, this._baseLayer);
|
|
||||||
return this;
|
|
||||||
},
|
|
||||||
|
|
||||||
setZIndex: function(zIndex) {
|
|
||||||
this.options.zIndex = zIndex;
|
|
||||||
if (this._baseLayer.setZIndex) {
|
|
||||||
this._baseLayer.setZIndex(zIndex);
|
|
||||||
}
|
|
||||||
if (this._currentLayer && this._currentLayer.setZIndex) {
|
|
||||||
this._currentLayer.setZIndex(zIndex);
|
|
||||||
}
|
|
||||||
return this;
|
|
||||||
},
|
|
||||||
|
|
||||||
setOpacity: function(opacity) {
|
|
||||||
this.options.opacity = opacity;
|
|
||||||
if (this._baseLayer.setOpacity) {
|
|
||||||
this._baseLayer.setOpacity(opacity);
|
|
||||||
}
|
|
||||||
if (this._currentLayer && this._currentLayer.setOpacity) {
|
|
||||||
this._currentLayer.setOpacity(opacity);
|
|
||||||
}
|
|
||||||
return this;
|
|
||||||
},
|
|
||||||
|
|
||||||
bringToBack: function() {
|
|
||||||
if (!this._currentLayer) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this._currentLayer.bringToBack();
|
|
||||||
return this;
|
|
||||||
},
|
|
||||||
|
|
||||||
bringToFront: function() {
|
|
||||||
if (!this._currentLayer) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this._currentLayer.bringToFront();
|
|
||||||
return this;
|
|
||||||
},
|
|
||||||
|
|
||||||
_onNewTimeLoading: function(ev) {
|
|
||||||
// to be implemented for each type of layer
|
|
||||||
this.fire('timeload', {
|
|
||||||
time: ev.time
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
},
|
|
||||||
|
|
||||||
isReady: function(time) {
|
|
||||||
// to be implemented for each type of layer
|
|
||||||
return true;
|
|
||||||
},
|
|
||||||
|
|
||||||
_update: function() {
|
|
||||||
// to be implemented for each type of layer
|
|
||||||
return true;
|
|
||||||
},
|
|
||||||
|
|
||||||
getBaseLayer: function() {
|
|
||||||
return this._baseLayer;
|
|
||||||
},
|
|
||||||
|
|
||||||
getBounds: function() {
|
|
||||||
var bounds = new L.LatLngBounds();
|
|
||||||
if (this._currentLayer) {
|
|
||||||
bounds.extend(this._currentLayer.getBounds ? this._currentLayer.getBounds() : this._currentLayer.getLatLng());
|
|
||||||
}
|
|
||||||
return bounds;
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
L.timeDimension.layer = function(layer, options) {
|
|
||||||
return new L.TimeDimension.Layer(layer, options);
|
|
||||||
};
|
|
|
@ -1,479 +0,0 @@
|
||||||
/*
|
|
||||||
* L.TimeDimension.Layer.WMS: wms Layer associated to a TimeDimension
|
|
||||||
*/
|
|
||||||
|
|
||||||
L.TimeDimension.Layer.WMS = L.TimeDimension.Layer.extend({
|
|
||||||
|
|
||||||
initialize: function(layer, options) {
|
|
||||||
L.TimeDimension.Layer.prototype.initialize.call(this, layer, options);
|
|
||||||
this._timeCacheBackward = this.options.cacheBackward || this.options.cache || 0;
|
|
||||||
this._timeCacheForward = this.options.cacheForward || this.options.cache || 0;
|
|
||||||
this._wmsVersion = this.options.wmsVersion || this.options.version || layer.options.version || "1.1.1";
|
|
||||||
this._getCapabilitiesParams = this.options.getCapabilitiesParams || {};
|
|
||||||
this._getCapabilitiesAlternateUrl = this.options.getCapabilitiesUrl || null;
|
|
||||||
this._getCapabilitiesAlternateLayerName = this.options.getCapabilitiesLayerName || null;
|
|
||||||
this._proxy = this.options.proxy || null;
|
|
||||||
this._updateTimeDimension = this.options.updateTimeDimension || false;
|
|
||||||
this._setDefaultTime = this.options.setDefaultTime || false;
|
|
||||||
this._updateTimeDimensionMode = this.options.updateTimeDimensionMode || 'intersect'; // 'union' or 'replace'
|
|
||||||
this._layers = {};
|
|
||||||
this._defaultTime = 0;
|
|
||||||
this._availableTimes = [];
|
|
||||||
this._capabilitiesRequested = false;
|
|
||||||
if (this._updateTimeDimension || this.options.requestTimeFromCapabilities) {
|
|
||||||
this._requestTimeDimensionFromCapabilities();
|
|
||||||
}
|
|
||||||
|
|
||||||
this._baseLayer.on('load', (function() {
|
|
||||||
this._baseLayer.setLoaded(true);
|
|
||||||
this.fire('timeload', {
|
|
||||||
time: this._defaultTime
|
|
||||||
});
|
|
||||||
}).bind(this));
|
|
||||||
},
|
|
||||||
|
|
||||||
getEvents: function() {
|
|
||||||
var clearCache = L.bind(this._unvalidateCache, this);
|
|
||||||
return {
|
|
||||||
moveend: clearCache,
|
|
||||||
zoomend: clearCache
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
eachLayer: function(method, context) {
|
|
||||||
for (var prop in this._layers) {
|
|
||||||
if (this._layers.hasOwnProperty(prop)) {
|
|
||||||
method.call(context, this._layers[prop]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return L.TimeDimension.Layer.prototype.eachLayer.call(this, method, context);
|
|
||||||
},
|
|
||||||
|
|
||||||
_onNewTimeLoading: function(ev) {
|
|
||||||
// console.log('Layer._onNewTimeLoading: ' + this._baseLayer.wmsParams.layers + ' with time: ' + new Date(ev.time).toISOString());
|
|
||||||
var layer = this._getLayerForTime(ev.time);
|
|
||||||
if (!this._map.hasLayer(layer)) {
|
|
||||||
this._map.addLayer(layer);
|
|
||||||
// console.log('Layer._onNewTimeLoading: layer added to map');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
isReady: function(time) {
|
|
||||||
var layer = this._getLayerForTime(time);
|
|
||||||
return layer.isLoaded();
|
|
||||||
},
|
|
||||||
|
|
||||||
onAdd: function(map) {
|
|
||||||
L.TimeDimension.Layer.prototype.onAdd.call(this, map);
|
|
||||||
if (this._availableTimes.length == 0) {
|
|
||||||
this._requestTimeDimensionFromCapabilities();
|
|
||||||
} else {
|
|
||||||
this._updateTimeDimensionAvailableTimes();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_update: function() {
|
|
||||||
if (!this._map)
|
|
||||||
return;
|
|
||||||
var time = this._timeDimension.getCurrentTime();
|
|
||||||
// It will get the layer for this time (create or get)
|
|
||||||
// Then, the layer will be loaded if necessary, adding it to the map (and show it after loading).
|
|
||||||
// If it already on the map (but probably hidden), it will be shown
|
|
||||||
var layer = this._getLayerForTime(time);
|
|
||||||
if (this._currentLayer == null) {
|
|
||||||
this._currentLayer = layer;
|
|
||||||
}
|
|
||||||
if (!this._map.hasLayer(layer)) {
|
|
||||||
this._map.addLayer(layer);
|
|
||||||
} else {
|
|
||||||
this._showLayer(layer, time);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
setOpacity: function(opacity) {
|
|
||||||
L.TimeDimension.Layer.prototype.setOpacity.apply(this, arguments);
|
|
||||||
// apply to all preloaded caches
|
|
||||||
for (var prop in this._layers) {
|
|
||||||
if (this._layers.hasOwnProperty(prop) && this._layers[prop].setOpacity) {
|
|
||||||
this._layers[prop].setOpacity(opacity);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
setZIndex: function(zIndex){
|
|
||||||
L.TimeDimension.Layer.prototype.setZIndex.apply(this, arguments);
|
|
||||||
// apply to all preloaded caches
|
|
||||||
for (var prop in this._layers) {
|
|
||||||
if (this._layers.hasOwnProperty(prop) && this._layers[prop].setZIndex) {
|
|
||||||
this._layers[prop].setZIndex(zIndex);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
setParams: function(params, noRedraw) {
|
|
||||||
L.extend(this._baseLayer.options, params);
|
|
||||||
if (this._baseLayer.setParams) {
|
|
||||||
this._baseLayer.setParams(params, noRedraw);
|
|
||||||
}
|
|
||||||
for (var prop in this._layers) {
|
|
||||||
if (this._layers.hasOwnProperty(prop) && this._layers[prop].setParams) {
|
|
||||||
this._layers[prop].setLoaded(false); // mark it as unloaded
|
|
||||||
this._layers[prop].setParams(params, noRedraw);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return this;
|
|
||||||
},
|
|
||||||
|
|
||||||
_unvalidateCache: function() {
|
|
||||||
var time = this._timeDimension.getCurrentTime();
|
|
||||||
for (var prop in this._layers) {
|
|
||||||
if (time != prop && this._layers.hasOwnProperty(prop)) {
|
|
||||||
this._layers[prop].setLoaded(false); // mark it as unloaded
|
|
||||||
this._layers[prop].redraw();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_evictCachedTimes: function(keepforward, keepbackward) {
|
|
||||||
// Cache management
|
|
||||||
var times = this._getLoadedTimes();
|
|
||||||
var strTime = String(this._currentTime);
|
|
||||||
var index = times.indexOf(strTime);
|
|
||||||
var remove = [];
|
|
||||||
// remove times before current time
|
|
||||||
if (keepbackward > -1) {
|
|
||||||
var objectsToRemove = index - keepbackward;
|
|
||||||
if (objectsToRemove > 0) {
|
|
||||||
remove = times.splice(0, objectsToRemove);
|
|
||||||
this._removeLayers(remove);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (keepforward > -1) {
|
|
||||||
index = times.indexOf(strTime);
|
|
||||||
var objectsToRemove = times.length - index - keepforward - 1;
|
|
||||||
if (objectsToRemove > 0) {
|
|
||||||
remove = times.splice(index + keepforward + 1, objectsToRemove);
|
|
||||||
this._removeLayers(remove);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
_showLayer: function(layer, time) {
|
|
||||||
if (this._currentLayer && this._currentLayer !== layer) {
|
|
||||||
this._currentLayer.hide();
|
|
||||||
}
|
|
||||||
layer.show();
|
|
||||||
if (this._currentLayer && this._currentLayer === layer) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this._currentLayer = layer;
|
|
||||||
this._currentTime = time;
|
|
||||||
console.log('Show layer ' + layer.wmsParams.layers + ' with time: ' + new Date(time).toISOString());
|
|
||||||
|
|
||||||
this._evictCachedTimes(this._timeCacheForward, this._timeCacheBackward);
|
|
||||||
},
|
|
||||||
|
|
||||||
_getLayerForTime: function(time) {
|
|
||||||
if (time == 0 || time == this._defaultTime || time == null) {
|
|
||||||
return this._baseLayer;
|
|
||||||
}
|
|
||||||
if (this._layers.hasOwnProperty(time)) {
|
|
||||||
return this._layers[time];
|
|
||||||
}
|
|
||||||
var nearestTime = this._getNearestTime(time);
|
|
||||||
if (this._layers.hasOwnProperty(nearestTime)) {
|
|
||||||
return this._layers[nearestTime];
|
|
||||||
}
|
|
||||||
|
|
||||||
var newLayer = this._createLayerForTime(nearestTime);
|
|
||||||
|
|
||||||
this._layers[time] = newLayer;
|
|
||||||
|
|
||||||
newLayer.on('load', (function(layer, time) {
|
|
||||||
layer.setLoaded(true);
|
|
||||||
// this time entry should exists inside _layers
|
|
||||||
// but it might be deleted by cache management
|
|
||||||
if (!this._layers[time]) {
|
|
||||||
this._layers[time] = layer;
|
|
||||||
}
|
|
||||||
if (this._timeDimension && time == this._timeDimension.getCurrentTime() && !this._timeDimension.isLoading()) {
|
|
||||||
this._showLayer(layer, time);
|
|
||||||
}
|
|
||||||
// console.log('Loaded layer ' + layer.wmsParams.layers + ' with time: ' + new Date(time).toISOString());
|
|
||||||
this.fire('timeload', {
|
|
||||||
time: time
|
|
||||||
});
|
|
||||||
}).bind(this, newLayer, time));
|
|
||||||
|
|
||||||
// Hack to hide the layer when added to the map.
|
|
||||||
// It will be shown when timeload event is fired from the map (after all layers are loaded)
|
|
||||||
newLayer.onAdd = (function(map) {
|
|
||||||
Object.getPrototypeOf(this).onAdd.call(this, map);
|
|
||||||
this.hide();
|
|
||||||
}).bind(newLayer);
|
|
||||||
return newLayer;
|
|
||||||
},
|
|
||||||
|
|
||||||
_createLayerForTime:function(time){
|
|
||||||
var wmsParams = this._baseLayer.options;
|
|
||||||
wmsParams.time = new Date(time).toISOString();
|
|
||||||
return new this._baseLayer.constructor(this._baseLayer.getURL(), wmsParams);
|
|
||||||
},
|
|
||||||
|
|
||||||
_getLoadedTimes: function() {
|
|
||||||
var result = [];
|
|
||||||
for (var prop in this._layers) {
|
|
||||||
if (this._layers.hasOwnProperty(prop)) {
|
|
||||||
result.push(prop);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return result.sort(function(a, b) {
|
|
||||||
return a - b;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
_removeLayers: function(times) {
|
|
||||||
for (var i = 0, l = times.length; i < l; i++) {
|
|
||||||
if (this._map)
|
|
||||||
this._map.removeLayer(this._layers[times[i]]);
|
|
||||||
delete this._layers[times[i]];
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
setMinimumForwardCache: function(value) {
|
|
||||||
if (value > this._timeCacheForward) {
|
|
||||||
this._timeCacheForward = value;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_requestTimeDimensionFromCapabilities: function() {
|
|
||||||
if (this._capabilitiesRequested) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this._capabilitiesRequested = true;
|
|
||||||
var url = this._getCapabilitiesUrl();
|
|
||||||
if (this._proxy) {
|
|
||||||
url = this._proxy + '?url=' + encodeURIComponent(url);
|
|
||||||
}
|
|
||||||
$.get(url, (function(data) {
|
|
||||||
this._defaultTime = Date.parse(this._getDefaultTimeFromCapabilities(data));
|
|
||||||
this._setDefaultTime = this._setDefaultTime || (this._timeDimension && this._timeDimension.getAvailableTimes().length == 0);
|
|
||||||
this.setAvailableTimes(this._parseTimeDimensionFromCapabilities(data));
|
|
||||||
if (this._setDefaultTime && this._timeDimension) {
|
|
||||||
this._timeDimension.setCurrentTime(this._defaultTime);
|
|
||||||
}
|
|
||||||
}).bind(this));
|
|
||||||
},
|
|
||||||
|
|
||||||
_getCapabilitiesUrl: function() {
|
|
||||||
var url = this._baseLayer.getURL();
|
|
||||||
if (this._getCapabilitiesAlternateUrl)
|
|
||||||
url = this._getCapabilitiesAlternateUrl;
|
|
||||||
var params = L.extend({}, this._getCapabilitiesParams, {
|
|
||||||
'request': 'GetCapabilities',
|
|
||||||
'service': 'WMS',
|
|
||||||
'version': this._wmsVersion
|
|
||||||
});
|
|
||||||
url = url + L.Util.getParamString(params, url, params.uppercase);
|
|
||||||
return url;
|
|
||||||
},
|
|
||||||
|
|
||||||
_parseTimeDimensionFromCapabilities: function(xml) {
|
|
||||||
var layers = $(xml).find('Layer[queryable="1"]');
|
|
||||||
var layerName = this._baseLayer.wmsParams.layers;
|
|
||||||
if (this._getCapabilitiesAlternateLayerName)
|
|
||||||
layerName = this._getCapabilitiesAlternateLayerName;
|
|
||||||
var layerNameElement = layers.find("Name").filter(function(index) {
|
|
||||||
return $(this).text() === layerName;
|
|
||||||
});
|
|
||||||
var times = null;
|
|
||||||
if (layerNameElement) {
|
|
||||||
var layer = layerNameElement.parent();
|
|
||||||
times = this._getTimesFromLayerCapabilities(layer);
|
|
||||||
if (!times) {
|
|
||||||
times = this._getTimesFromLayerCapabilities(layer.parent());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return times;
|
|
||||||
},
|
|
||||||
|
|
||||||
_getTimesFromLayerCapabilities: function(layer) {
|
|
||||||
var times = null;
|
|
||||||
var dimension = layer.find("Dimension[name='time']");
|
|
||||||
if (dimension && dimension.length && dimension[0].textContent.length) {
|
|
||||||
times = dimension[0].textContent.trim();
|
|
||||||
} else {
|
|
||||||
var extent = layer.find("Extent[name='time']");
|
|
||||||
if (extent && extent.length && extent[0].textContent.length) {
|
|
||||||
times = extent[0].textContent.trim();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return times;
|
|
||||||
},
|
|
||||||
|
|
||||||
_getDefaultTimeFromCapabilities: function(xml) {
|
|
||||||
var layers = $(xml).find('Layer[queryable="1"]');
|
|
||||||
var layerName = this._baseLayer.wmsParams.layers;
|
|
||||||
if (this._getCapabilitiesAlternateLayerName)
|
|
||||||
layerName = this._getCapabilitiesAlternateLayerName;
|
|
||||||
var layerNameElement = layers.find("Name").filter(function(index) {
|
|
||||||
return $(this).text() === layerName;
|
|
||||||
});
|
|
||||||
var defaultTime = 0;
|
|
||||||
if (layerNameElement) {
|
|
||||||
var layer = layerNameElement.parent();
|
|
||||||
defaultTime = this._getDefaultTimeFromLayerCapabilities(layer);
|
|
||||||
if (defaultTime == 0) {
|
|
||||||
defaultTime = this._getDefaultTimeFromLayerCapabilities(layer.parent());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return defaultTime;
|
|
||||||
},
|
|
||||||
|
|
||||||
_getDefaultTimeFromLayerCapabilities: function(layer) {
|
|
||||||
var defaultTime = 0;
|
|
||||||
var dimension = layer.find("Dimension[name='time']");
|
|
||||||
if (dimension && dimension.attr("default")) {
|
|
||||||
defaultTime = dimension.attr("default");
|
|
||||||
} else {
|
|
||||||
var extent = layer.find("Extent[name='time']");
|
|
||||||
if (extent && extent.attr("default")) {
|
|
||||||
defaultTime = extent.attr("default");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return defaultTime;
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
setAvailableTimes: function(times) {
|
|
||||||
this._availableTimes = L.TimeDimension.Util.parseTimesExpression(times);
|
|
||||||
this._updateTimeDimensionAvailableTimes();
|
|
||||||
},
|
|
||||||
|
|
||||||
_updateTimeDimensionAvailableTimes: function() {
|
|
||||||
if ((this._timeDimension && this._updateTimeDimension) ||
|
|
||||||
(this._timeDimension && this._timeDimension.getAvailableTimes().length == 0)) {
|
|
||||||
this._timeDimension.setAvailableTimes(this._availableTimes, this._updateTimeDimensionMode);
|
|
||||||
if (this._setDefaultTime && this._defaultTime > 0) {
|
|
||||||
this._timeDimension.setCurrentTime(this._defaultTime);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_getNearestTime: function(time) {
|
|
||||||
if (this._layers.hasOwnProperty(time)) {
|
|
||||||
return time;
|
|
||||||
}
|
|
||||||
if (this._availableTimes.length == 0) {
|
|
||||||
return time;
|
|
||||||
}
|
|
||||||
var index = 0;
|
|
||||||
var len = this._availableTimes.length;
|
|
||||||
for (; index < len; index++) {
|
|
||||||
if (time < this._availableTimes[index]) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// We've found the first index greater than the time. Get the previous
|
|
||||||
if (index > 0) {
|
|
||||||
index--;
|
|
||||||
}
|
|
||||||
if (time != this._availableTimes[index]) {
|
|
||||||
console.log('Search layer time: ' + new Date(time).toISOString());
|
|
||||||
console.log('Return layer time: ' + new Date(this._availableTimes[index]).toISOString());
|
|
||||||
}
|
|
||||||
return this._availableTimes[index];
|
|
||||||
},
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!L.NonTiledLayer) {
|
|
||||||
L.NonTiledLayer = (L.Layer || L.Class).extend({});
|
|
||||||
}
|
|
||||||
|
|
||||||
L.NonTiledLayer.include({
|
|
||||||
_visible: true,
|
|
||||||
_loaded: false,
|
|
||||||
|
|
||||||
_originalUpdate: L.NonTiledLayer.prototype._update,
|
|
||||||
_originalOnRemove: L.NonTiledLayer.prototype.onRemove,
|
|
||||||
|
|
||||||
_update: function() {
|
|
||||||
if (!this._visible && this._loaded) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this._originalUpdate();
|
|
||||||
},
|
|
||||||
|
|
||||||
onRemove: function(map) {
|
|
||||||
this._loaded = false;
|
|
||||||
this._originalOnRemove(map);
|
|
||||||
},
|
|
||||||
|
|
||||||
setLoaded: function(loaded) {
|
|
||||||
this._loaded = loaded;
|
|
||||||
},
|
|
||||||
|
|
||||||
isLoaded: function() {
|
|
||||||
return this._loaded;
|
|
||||||
},
|
|
||||||
|
|
||||||
hide: function() {
|
|
||||||
this._visible = false;
|
|
||||||
this._div.style.display = 'none';
|
|
||||||
},
|
|
||||||
|
|
||||||
show: function() {
|
|
||||||
this._visible = true;
|
|
||||||
this._div.style.display = 'block';
|
|
||||||
},
|
|
||||||
|
|
||||||
getURL: function() {
|
|
||||||
return this._wmsUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
L.TileLayer.include({
|
|
||||||
_visible: true,
|
|
||||||
_loaded: false,
|
|
||||||
|
|
||||||
_originalUpdate: L.TileLayer.prototype._update,
|
|
||||||
|
|
||||||
_update: function() {
|
|
||||||
if (!this._visible && this._loaded) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this._originalUpdate();
|
|
||||||
},
|
|
||||||
|
|
||||||
setLoaded: function(loaded) {
|
|
||||||
this._loaded = loaded;
|
|
||||||
},
|
|
||||||
|
|
||||||
isLoaded: function() {
|
|
||||||
return this._loaded;
|
|
||||||
},
|
|
||||||
|
|
||||||
hide: function() {
|
|
||||||
this._visible = false;
|
|
||||||
if (this._container) {
|
|
||||||
this._container.style.display = 'none';
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
show: function() {
|
|
||||||
this._visible = true;
|
|
||||||
if (this._container) {
|
|
||||||
this._container.style.display = 'block';
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
getURL: function() {
|
|
||||||
return this._url;
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
L.timeDimension.layer.wms = function(layer, options) {
|
|
||||||
return new L.TimeDimension.Layer.WMS(layer, options);
|
|
||||||
};
|
|
18
docs/js/leaflet.timedimension.min.js
vendored
18
docs/js/leaflet.timedimension.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,168 +0,0 @@
|
||||||
/*jshint indent: 4, browser:true*/
|
|
||||||
/*global L*/
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* L.TimeDimension.Player
|
|
||||||
*/
|
|
||||||
//'use strict';
|
|
||||||
L.TimeDimension.Player = (L.Layer || L.Class).extend({
|
|
||||||
|
|
||||||
includes: L.Mixin.Events,
|
|
||||||
initialize: function(options, timeDimension) {
|
|
||||||
L.setOptions(this, options);
|
|
||||||
this._timeDimension = timeDimension;
|
|
||||||
this._paused = false;
|
|
||||||
this._buffer = this.options.buffer || 5;
|
|
||||||
this._minBufferReady = this.options.minBufferReady || 1;
|
|
||||||
this._waitingForBuffer = false;
|
|
||||||
this._loop = this.options.loop || false;
|
|
||||||
this._steps = 1;
|
|
||||||
this._timeDimension.on('timeload', (function(data) {
|
|
||||||
this.release(); // free clock
|
|
||||||
this._waitingForBuffer = false; // reset buffer
|
|
||||||
}).bind(this));
|
|
||||||
this.setTransitionTime(this.options.transitionTime || 1000);
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
_tick: function() {
|
|
||||||
var maxIndex = this._getMaxIndex();
|
|
||||||
var maxForward = (this._timeDimension.getCurrentTimeIndex() >= maxIndex) && (this._steps > 0);
|
|
||||||
var maxBackward = (this._timeDimension.getCurrentTimeIndex() == 0) && (this._steps < 0);
|
|
||||||
if (maxForward || maxBackward) {
|
|
||||||
// we reached the last step
|
|
||||||
if (!this._loop) {
|
|
||||||
this.pause();
|
|
||||||
this.stop();
|
|
||||||
this.fire('animationfinished');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this._paused) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
var numberNextTimesReady = 0,
|
|
||||||
buffer = this._bufferSize;
|
|
||||||
|
|
||||||
if (this._minBufferReady > 0) {
|
|
||||||
numberNextTimesReady = this._timeDimension.getNumberNextTimesReady(this._steps, buffer, this._loop);
|
|
||||||
// If the player was waiting, check if all times are loaded
|
|
||||||
if (this._waitingForBuffer) {
|
|
||||||
if (numberNextTimesReady < buffer) {
|
|
||||||
console.log('Waiting until buffer is loaded. ' + numberNextTimesReady + ' of ' + buffer + ' loaded');
|
|
||||||
this.fire('waiting', {
|
|
||||||
buffer: buffer,
|
|
||||||
available: numberNextTimesReady
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
// all times loaded
|
|
||||||
console.log('Buffer is fully loaded!');
|
|
||||||
this.fire('running');
|
|
||||||
this._waitingForBuffer = false;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// check if player has to stop to wait and force to full all the buffer
|
|
||||||
if (numberNextTimesReady < this._minBufferReady) {
|
|
||||||
console.log('Force wait for load buffer. ' + numberNextTimesReady + ' of ' + buffer + ' loaded');
|
|
||||||
this._waitingForBuffer = true;
|
|
||||||
this._timeDimension.prepareNextTimes(this._steps, buffer, this._loop);
|
|
||||||
this.fire('waiting', {
|
|
||||||
buffer: buffer,
|
|
||||||
available: numberNextTimesReady
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this.pause();
|
|
||||||
this._timeDimension.nextTime(this._steps, this._loop);
|
|
||||||
if (buffer > 0) {
|
|
||||||
this._timeDimension.prepareNextTimes(this._steps, buffer, this._loop);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_getMaxIndex: function(){
|
|
||||||
return Math.min(this._timeDimension.getAvailableTimes().length - 1,
|
|
||||||
this._timeDimension.getUpperLimitIndex() || Infinity);
|
|
||||||
},
|
|
||||||
|
|
||||||
start: function(numSteps) {
|
|
||||||
if (this._intervalID) return;
|
|
||||||
this._steps = numSteps || 1;
|
|
||||||
this._waitingForBuffer = false;
|
|
||||||
if (this.options.startOver){
|
|
||||||
if (this._timeDimension.getCurrentTimeIndex() === this._getMaxIndex()){
|
|
||||||
this._timeDimension.setCurrentTimeIndex(this._timeDimension.getLowerLimitIndex() || 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this.release();
|
|
||||||
this._intervalID = window.setInterval(
|
|
||||||
L.bind(this._tick, this),
|
|
||||||
this._transitionTime);
|
|
||||||
this._tick();
|
|
||||||
this.fire('play');
|
|
||||||
this.fire('running');
|
|
||||||
},
|
|
||||||
|
|
||||||
stop: function() {
|
|
||||||
if (!this._intervalID) return;
|
|
||||||
clearInterval(this._intervalID);
|
|
||||||
this._intervalID = null;
|
|
||||||
this.fire('stop');
|
|
||||||
},
|
|
||||||
|
|
||||||
pause: function() {
|
|
||||||
this._paused = true;
|
|
||||||
},
|
|
||||||
|
|
||||||
release: function () {
|
|
||||||
this._paused = false;
|
|
||||||
},
|
|
||||||
|
|
||||||
getTransitionTime: function() {
|
|
||||||
return this._transitionTime;
|
|
||||||
},
|
|
||||||
|
|
||||||
isPlaying: function() {
|
|
||||||
return this._intervalID ? true : false;
|
|
||||||
},
|
|
||||||
|
|
||||||
isWaiting: function() {
|
|
||||||
return this._waitingForBuffer;
|
|
||||||
},
|
|
||||||
isLooped: function() {
|
|
||||||
return this._loop;
|
|
||||||
},
|
|
||||||
|
|
||||||
setLooped: function(looped) {
|
|
||||||
this._loop = looped;
|
|
||||||
this.fire('loopchange', {
|
|
||||||
loop: looped
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
setTransitionTime: function(transitionTime) {
|
|
||||||
this._transitionTime = transitionTime;
|
|
||||||
if (typeof this._buffer === 'function') {
|
|
||||||
this._bufferSize = this._buffer.call(this, this._transitionTime, this._minBufferReady, this._loop);
|
|
||||||
console.log('Buffer size changed to ' + this._bufferSize);
|
|
||||||
} else {
|
|
||||||
this._bufferSize = this._buffer;
|
|
||||||
}
|
|
||||||
if (this._intervalID) {
|
|
||||||
this.stop();
|
|
||||||
this.start();
|
|
||||||
}
|
|
||||||
this.fire('speedchange', {
|
|
||||||
transitionTime: transitionTime,
|
|
||||||
buffer: this._bufferSize
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
getSteps: function() {
|
|
||||||
return this._steps;
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1,198 +0,0 @@
|
||||||
/*
|
|
||||||
* L.TimeDimension.Util
|
|
||||||
*/
|
|
||||||
|
|
||||||
L.TimeDimension.Util = {
|
|
||||||
getTimeDuration: function(ISODuration) {
|
|
||||||
if (nezasa === undefined) {
|
|
||||||
throw "iso8601-js-period library is required for Leatlet.TimeDimension: https://github.com/nezasa/iso8601-js-period";
|
|
||||||
}
|
|
||||||
return nezasa.iso8601.Period.parse(ISODuration, true);
|
|
||||||
},
|
|
||||||
|
|
||||||
addTimeDuration: function(date, duration, utc) {
|
|
||||||
if (utc === undefined) {
|
|
||||||
utc = true;
|
|
||||||
}
|
|
||||||
if (typeof duration == 'string' || duration instanceof String) {
|
|
||||||
duration = this.getTimeDuration(duration);
|
|
||||||
}
|
|
||||||
var l = duration.length;
|
|
||||||
var get = utc ? "getUTC" : "get";
|
|
||||||
var set = utc ? "setUTC" : "set";
|
|
||||||
|
|
||||||
if (l > 0 && duration[0] != 0) {
|
|
||||||
date[set + "FullYear"](date[get + "FullYear"]() + duration[0]);
|
|
||||||
}
|
|
||||||
if (l > 1 && duration[1] != 0) {
|
|
||||||
date[set + "Month"](date[get + "Month"]() + duration[1]);
|
|
||||||
}
|
|
||||||
if (l > 2 && duration[2] != 0) {
|
|
||||||
// weeks
|
|
||||||
date[set + "Date"](date[get + "Date"]() + (duration[2] * 7));
|
|
||||||
}
|
|
||||||
if (l > 3 && duration[3] != 0) {
|
|
||||||
date[set + "Date"](date[get + "Date"]() + duration[3]);
|
|
||||||
}
|
|
||||||
if (l > 4 && duration[4] != 0) {
|
|
||||||
date[set + "Hours"](date[get + "Hours"]() + duration[4]);
|
|
||||||
}
|
|
||||||
if (l > 5 && duration[5] != 0) {
|
|
||||||
date[set + "Minutes"](date[get + "Minutes"]() + duration[5]);
|
|
||||||
}
|
|
||||||
if (l > 6 && duration[6] != 0) {
|
|
||||||
date[set + "Seconds"](date[get + "Seconds"]() + duration[6]);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
subtractTimeDuration: function(date, duration, utc) {
|
|
||||||
if (typeof duration == 'string' || duration instanceof String) {
|
|
||||||
duration = this.getTimeDuration(duration);
|
|
||||||
}
|
|
||||||
var subDuration = [];
|
|
||||||
for (var i = 0, l = duration.length; i < l; i++) {
|
|
||||||
subDuration.push(-duration[i]);
|
|
||||||
}
|
|
||||||
this.addTimeDuration(date, subDuration, utc);
|
|
||||||
},
|
|
||||||
|
|
||||||
parseAndExplodeTimeRange: function(timeRange) {
|
|
||||||
var tr = timeRange.split('/');
|
|
||||||
var startTime = new Date(Date.parse(tr[0]));
|
|
||||||
var endTime = new Date(Date.parse(tr[1]));
|
|
||||||
var duration = tr.length > 2 ? tr[2] : "P1D";
|
|
||||||
|
|
||||||
return this.explodeTimeRange(startTime, endTime, duration);
|
|
||||||
},
|
|
||||||
|
|
||||||
explodeTimeRange: function(startTime, endTime, ISODuration, validTimeRange) {
|
|
||||||
var duration = this.getTimeDuration(ISODuration);
|
|
||||||
var result = [];
|
|
||||||
var currentTime = new Date(startTime.getTime());
|
|
||||||
var minHour = null,
|
|
||||||
minMinutes = null,
|
|
||||||
maxHour = null,
|
|
||||||
maxMinutes = null;
|
|
||||||
if (validTimeRange !== undefined) {
|
|
||||||
var validTimeRangeArray = validTimeRange.split('/');
|
|
||||||
minHour = validTimeRangeArray[0].split(':')[0];
|
|
||||||
minMinutes = validTimeRangeArray[0].split(':')[1];
|
|
||||||
maxHour = validTimeRangeArray[1].split(':')[0];
|
|
||||||
maxMinutes = validTimeRangeArray[1].split(':')[1];
|
|
||||||
}
|
|
||||||
while (currentTime < endTime) {
|
|
||||||
if (validTimeRange === undefined ||
|
|
||||||
(currentTime.getUTCHours() >= minHour && currentTime.getUTCHours() <= maxHour)
|
|
||||||
) {
|
|
||||||
if ((currentTime.getUTCHours() != minHour || currentTime.getUTCMinutes() >= minMinutes) &&
|
|
||||||
(currentTime.getUTCHours() != maxHour || currentTime.getUTCMinutes() <= maxMinutes)) {
|
|
||||||
result.push(currentTime.getTime());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this.addTimeDuration(currentTime, duration);
|
|
||||||
}
|
|
||||||
if (currentTime >= endTime){
|
|
||||||
result.push(endTime.getTime());
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
},
|
|
||||||
|
|
||||||
parseTimeInterval: function(timeInterval) {
|
|
||||||
var parts = timeInterval.split("/");
|
|
||||||
if (parts.length != 2) {
|
|
||||||
throw "Incorrect ISO9601 TimeInterval: " + timeInterval;
|
|
||||||
}
|
|
||||||
var startTime = Date.parse(parts[0]);
|
|
||||||
var endTime = null;
|
|
||||||
var duration = null;
|
|
||||||
if (isNaN(startTime)) {
|
|
||||||
// -> format duration/endTime
|
|
||||||
duration = this.getTimeDuration(parts[0]);
|
|
||||||
endTime = Date.parse(parts[1]);
|
|
||||||
startTime = new Date(endTime);
|
|
||||||
this.subtractTimeDuration(startTime, duration, true);
|
|
||||||
endTime = new Date(endTime);
|
|
||||||
} else {
|
|
||||||
endTime = Date.parse(parts[1]);
|
|
||||||
if (isNaN(endTime)) {
|
|
||||||
// -> format startTime/duration
|
|
||||||
duration = this.getTimeDuration(parts[1]);
|
|
||||||
endTime = new Date(startTime);
|
|
||||||
this.addTimeDuration(endTime, duration, true);
|
|
||||||
} else {
|
|
||||||
// -> format startTime/endTime
|
|
||||||
endTime = new Date(endTime);
|
|
||||||
}
|
|
||||||
startTime = new Date(startTime);
|
|
||||||
}
|
|
||||||
return [startTime, endTime];
|
|
||||||
},
|
|
||||||
|
|
||||||
parseTimesExpression: function(times) {
|
|
||||||
var result = [];
|
|
||||||
if (!times) {
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
if (typeof times == 'string' || times instanceof String) {
|
|
||||||
var timeRanges = times.split(",");
|
|
||||||
var timeRange;
|
|
||||||
var timeValue;
|
|
||||||
for (var i=0, l=timeRanges.length; i<l; i++){
|
|
||||||
timeRange = timeRanges[i];
|
|
||||||
if (timeRange.split("/").length == 3) {
|
|
||||||
result = result.concat(this.parseAndExplodeTimeRange(timeRange));
|
|
||||||
} else {
|
|
||||||
timeValue = Date.parse(timeRange);
|
|
||||||
if (!isNaN(timeValue)) {
|
|
||||||
result.push(timeValue);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
result = times;
|
|
||||||
}
|
|
||||||
return result.sort(function(a, b) {
|
|
||||||
return a - b;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
intersect_arrays: function(arrayA, arrayB) {
|
|
||||||
var a = arrayA.slice(0);
|
|
||||||
var b = arrayB.slice(0);
|
|
||||||
var result = [];
|
|
||||||
while (a.length > 0 && b.length > 0) {
|
|
||||||
if (a[0] < b[0]) {
|
|
||||||
a.shift();
|
|
||||||
} else if (a[0] > b[0]) {
|
|
||||||
b.shift();
|
|
||||||
} else /* they're equal */ {
|
|
||||||
result.push(a.shift());
|
|
||||||
b.shift();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
},
|
|
||||||
|
|
||||||
union_arrays: function(arrayA, arrayB) {
|
|
||||||
var a = arrayA.slice(0);
|
|
||||||
var b = arrayB.slice(0);
|
|
||||||
var result = [];
|
|
||||||
while (a.length > 0 && b.length > 0) {
|
|
||||||
if (a[0] < b[0]) {
|
|
||||||
result.push(a.shift());
|
|
||||||
} else if (a[0] > b[0]) {
|
|
||||||
result.push(b.shift());
|
|
||||||
} else /* they're equal */ {
|
|
||||||
result.push(a.shift());
|
|
||||||
b.shift();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (a.length > 0) {
|
|
||||||
result = result.concat(a);
|
|
||||||
} else if (b.length > 0) {
|
|
||||||
result = result.concat(b);
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
|
Loading…
Reference in a new issue