Introducción

Este punto de acceso proporciona datos obtenidos del Catastro de Hacienda, que son los mismos que se facilitan a través de la herramienta de Catastro PRO. Los datos se dividen en dos clases: alfanuméricos, procedentes de los archivos CAT y geográficos, procedentes de los archivos INSPIRE. Además se incluyen datos sobre las provincias, municipios y calles del Catastro.

En esta página se muestran ejemplos del uso de la API para la obtención de datos catastrales. Para la documentación completa puedes acceder a la referencia del API.

Conceptos previos

Antes de comenzar, vamos a repasar rápidamente una serie de conceptos previos que te ayudarán a entender mejor el funcionamiento de la API.

Una referencia catastral consta de veinte caracteres e identifica un inmueble en el Catastro. Los catorce primeros caracteres se refieren a la parcela catastral, que identifica la parcela que contiene dicho inmueble.

Una parcela catastral puede contener una o varias referencias catastrales. Por ejemplo, la parcela catastral número 4242103VK2844S contiene un edificio de oficinas con un total de 237 referencias catastrales (oficinas, garajes, elementos comunes etc.). La referencia catastral 4242103VK2844S0133FF es un inmueble de tipo oficina (nuestra oficina) contenido dentro de la parcela catastral 4242103VK2844S.

Una parcela catastral consta de una geografía (definición geométrica de la parcela) y un listado de referencias catastrales asociadas a dicha parcela catastral. Estos elementos geográficos, pueden ser de tipo parcela, edificios, construcciones y otros (piscinas, etc.).

Una referencia catastral consta de un conjunto de datos catastrales o datos alfanuméricos que, según la especificación de Catastro, se agrupan en: fincas, unidades constructivas, construcciones, inmuebles, elementos comunes y cultivos.

Provincias

/v1/cadastre/provinces

Proporcional el listado de provincias del Catastro. En cada provincia consta su nombre y el correspondiente código del Catastro.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/provinces

Respuesta

{
    "provinces": [
        {
            "name": "A CORUÑA",
            "provincecode": 15
        },
        {
            "name": "ALACANT",
            "provincecode": 3
        },
        {
            "name": "ALBACETE",
            "provincecode": 2
        },
        {
            "name": "ALMERIA",
            "provincecode": 4
        },
        {
            "name": "ASTURIAS",
            "provincecode": 33
        },
        {
            "name": "AVILA",
            "provincecode": 5
        },
        {
            "name": "BADAJOZ",
            "provincecode": 6
        },
        {
            "name": "BARCELONA",
            "provincecode": 8
        },
        {
            "name": "BURGOS",
            "provincecode": 9
        },
        {
            "name": "CACERES",
            "provincecode": 10
        },
        {
            "name": "CADIZ",
            "provincecode": 11
        },
        {
            "name": "CANTABRIA",
            "provincecode": 39
        },
        {
            "name": "CASTELLO",
            "provincecode": 12
        },
        {
            "name": "CEUTA",
            "provincecode": 51
        },
        {
            "name": "CIUDAD REAL",
            "provincecode": 13
        },
        {
            "name": "CORDOBA",
            "provincecode": 14
        },
        {
            "name": "CUENCA",
            "provincecode": 16
        },
        {
            "name": "GIRONA",
            "provincecode": 17
        },
        {
            "name": "GRANADA",
            "provincecode": 18
        },
        {
            "name": "GUADALAJARA",
            "provincecode": 19
        },
        {
            "name": "HUELVA",
            "provincecode": 21
        },
        {
            "name": "HUESCA",
            "provincecode": 22
        },
        {
            "name": "ILLES BALEARS",
            "provincecode": 7
        },
        {
            "name": "JAEN",
            "provincecode": 23
        },
        {
            "name": "LA RIOJA",
            "provincecode": 26
        },
        {
            "name": "LAS PALMAS",
            "provincecode": 35
        },
        {
            "name": "LEON",
            "provincecode": 24
        },
        {
            "name": "LLEIDA",
            "provincecode": 25
        },
        {
            "name": "LUGO",
            "provincecode": 27
        },
        {
            "name": "MADRID",
            "provincecode": 28
        },
        {
            "name": "MALAGA",
            "provincecode": 29
        },
        {
            "name": "MELILLA",
            "provincecode": 52
        },
        {
            "name": "MURCIA",
            "provincecode": 30
        },
        {
            "name": "OURENSE",
            "provincecode": 32
        },
        {
            "name": "PALENCIA",
            "provincecode": 34
        },
        {
            "name": "PONTEVEDRA",
            "provincecode": 36
        },
        {
            "name": "S.C. TENERIFE",
            "provincecode": 38
        },
        {
            "name": "SALAMANCA",
            "provincecode": 37
        },
        {
            "name": "SEGOVIA",
            "provincecode": 40
        },
        {
            "name": "SEVILLA",
            "provincecode": 41
        },
        {
            "name": "SORIA",
            "provincecode": 42
        },
        {
            "name": "TARRAGONA",
            "provincecode": 43
        },
        {
            "name": "TERUEL",
            "provincecode": 44
        },
        {
            "name": "TOLEDO",
            "provincecode": 45
        },
        {
            "name": "VALENCIA",
            "provincecode": 46
        },
        {
            "name": "VALLADOLID",
            "provincecode": 47
        },
        {
            "name": "ZAMORA",
            "provincecode": 49
        },
        {
            "name": "ZARAGOZA",
            "provincecode": 50
        }
    ]
}

Municipios

/v1/cadastre/municipalities/{provincecode}

Proporciona el listado de municipios para una determinada provincia identificada con {provincecode}. Cada municipio contiene su nombre y el correspondiente código del Catastro. En el siguiente ejemplo se solicitan los municipios de Madrid /28.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/municipalities/28

Respuesta

{
    "municipalities": [
        {
            "name": "AJALVIR",
            "municipalitycode": 28002
        },
        {
            "name": "ALAMEDA DEL VALLE",
            "municipalitycode": 28003
        },
        {
            "name": "ALCALA DE HENARES",
            "municipalitycode": 28005
        },
        {
            "name": "ALCOBENDAS",
            "municipalitycode": 28006
        },
        {
            "name": "ALCORCON",
            "municipalitycode": 28007
        },
        {
            "name": "ALDEA DEL FRESNO",
            "municipalitycode": 28008
        },
        {
            "name": "ALGETE",
            "municipalitycode": 28009
        },
        {
            "name": "ALPEDRETE",
            "municipalitycode": 28010
        },
        {
            "name": "AMBITE",
            "municipalitycode": 28011
        },
        {
            "name": "ANCHUELO",
            "municipalitycode": 28012
        },
        {
            "name": "ARANJUEZ",
            "municipalitycode": 28013
        },
        {
            "name": "ARGANDA DEL REY",
            "municipalitycode": 28014
        },
        {
            "name": "ARROYOMOLINOS",
            "municipalitycode": 28015
        },
        {
            "name": "BATRES",
            "municipalitycode": 28017
        },
        {
            "name": "BECERRIL DE LA SIERRA",
            "municipalitycode": 28018
        },
        {
            "name": "BELMONTE DE TAJO",
            "municipalitycode": 28019
        },
        {
            "name": "BERZOSA DEL LOZOYA",
            "municipalitycode": 28021
        },
        {
            "name": "BOADILLA DEL MONTE",
            "municipalitycode": 28022
        },
        {
            "name": "BRAOJOS",
            "municipalitycode": 28024
        },
        {
            "name": "BREA DE TAJO",
            "municipalitycode": 28025
        },
        {
            "name": "BRUNETE",
            "municipalitycode": 28026
        },
        {
            "name": "BUITRAGO DEL LOZOYA",
            "municipalitycode": 28027
        },
        {
            "name": "BUSTARVIEJO",
            "municipalitycode": 28028
        },
        {
            "name": "CABANILLAS DE LA SIERRA",
            "municipalitycode": 28029
        },
        {
            "name": "CADALSO DE LOS VIDRIOS",
            "municipalitycode": 28031
        },
        {
            "name": "CAMARMA DE ESTERUELAS",
            "municipalitycode": 28032
        },
        {
            "name": "CAMPO REAL",
            "municipalitycode": 28033
        },
        {
            "name": "CANENCIA",
            "municipalitycode": 28034
        },
        {
            "name": "CARABAÑA",
            "municipalitycode": 28035
        },
        {
            "name": "CASARRUBUELOS",
            "municipalitycode": 28036
        },
        {
            "name": "CENICIENTOS",
            "municipalitycode": 28037
        },
        {
            "name": "CERCEDILLA",
            "municipalitycode": 28038
        },
        {
            "name": "CERVERA DE BUITRAGO",
            "municipalitycode": 28039
        },
        {
            "name": "CHAPINERIA",
            "municipalitycode": 28051
        },
        {
            "name": "CHINCHON",
            "municipalitycode": 28052
        },
        {
            "name": "CIEMPOZUELOS",
            "municipalitycode": 28040
        },
        {
            "name": "COBEÑA",
            "municipalitycode": 28041
        },
        {
            "name": "COLLADO MEDIANO",
            "municipalitycode": 28046
        },
        {
            "name": "COLLADO VILLALBA",
            "municipalitycode": 28047
        },
        {
            "name": "COLMENAR DE OREJA",
            "municipalitycode": 28043
        },
        {
            "name": "COLMENAR DEL ARROYO",
            "municipalitycode": 28042
        },
        {
            "name": "COLMENAR VIEJO",
            "municipalitycode": 28045
        },
        {
            "name": "COLMENAREJO",
            "municipalitycode": 28044
        },
        {
            "name": "CORPA",
            "municipalitycode": 28048
        },
        {
            "name": "COSLADA",
            "municipalitycode": 28049
        },
        {
            "name": "CUBAS DE LA SAGRA",
            "municipalitycode": 28050
        },
        {
            "name": "DAGANZO DE ARRIBA",
            "municipalitycode": 28053
        },
        {
            "name": "EL ALAMO",
            "municipalitycode": 28004
        },
        {
            "name": "EL ATAZAR",
            "municipalitycode": 28016
        },
        {
            "name": "EL BERRUECO",
            "municipalitycode": 28020
        },
        {
            "name": "EL BOALO",
            "municipalitycode": 28023
        },
        {
            "name": "EL ESCORIAL",
            "municipalitycode": 28054
        },
        {
            "name": "EL MOLAR",
            "municipalitycode": 28086
        },
        {
            "name": "EL VELLON",
            "municipalitycode": 28168
        },
        {
            "name": "ESTREMERA",
            "municipalitycode": 28055
        },
        {
            "name": "FRESNEDILLAS DE LA OLIVA",
            "municipalitycode": 28056
        },
        {
            "name": "FRESNO DE TOROTE",
            "municipalitycode": 28057
        },
        {
            "name": "FUENLABRADA",
            "municipalitycode": 28058
        },
        {
            "name": "FUENTE EL SAZ DE JARAMA",
            "municipalitycode": 28059
        },
        {
            "name": "FUENTIDUEÑA DE TAJO",
            "municipalitycode": 28060
        },
        {
            "name": "GALAPAGAR",
            "municipalitycode": 28061
        },
        {
            "name": "GARGANTA DE LOS MONTES",
            "municipalitycode": 28062
        },
        {
            "name": "GARGANTILLA DEL LOZOYA Y PINIL",
            "municipalitycode": 28063
        },
        {
            "name": "GASCONES",
            "municipalitycode": 28064
        },
        {
            "name": "GETAFE",
            "municipalitycode": 28065
        },
        {
            "name": "GRIÑON",
            "municipalitycode": 28066
        },
        {
            "name": "GUADALIX DE LA SIERRA",
            "municipalitycode": 28067
        },
        {
            "name": "GUADARRAMA",
            "municipalitycode": 28068
        },
        {
            "name": "HORCAJO DE LA SIERRA-AOSLOS",
            "municipalitycode": 28070
        },
        {
            "name": "HORCAJUELO DE LA SIERRA",
            "municipalitycode": 28071
        },
        {
            "name": "HOYO DE MANZANARES",
            "municipalitycode": 28072
        },
        {
            "name": "HUMANES DE MADRID",
            "municipalitycode": 28073
        },
        {
            "name": "LA ACEBEDA",
            "municipalitycode": 28001
        },
        {
            "name": "LA CABRERA",
            "municipalitycode": 28030
        },
        {
            "name": "LA HIRUELA",
            "municipalitycode": 28069
        },
        {
            "name": "LA SERNA DEL MONTE",
            "municipalitycode": 28138
        },
        {
            "name": "LAS ROZAS DE MADRID",
            "municipalitycode": 28127
        },
        {
            "name": "LEGANES",
            "municipalitycode": 28074
        },
        {
            "name": "LOECHES",
            "municipalitycode": 28075
        },
        {
            "name": "LOS MOLINOS",
            "municipalitycode": 28087
        },
        {
            "name": "LOS SANTOS DE LA HUMOSA",
            "municipalitycode": 28137
        },
        {
            "name": "LOZOYA",
            "municipalitycode": 28076
        },
        {
            "name": "LOZOYUELA-NAVAS-SIETEIGLESIAS",
            "municipalitycode": 28077
        },
        {
            "name": "MADARCOS",
            "municipalitycode": 28078
        },
        {
            "name": "MADRID",
            "municipalitycode": 28900
        },
        {
            "name": "MAJADAHONDA",
            "municipalitycode": 28080
        },
        {
            "name": "MANZANARES EL REAL",
            "municipalitycode": 28082
        },
        {
            "name": "MECO",
            "municipalitycode": 28083
        },
        {
            "name": "MEJORADA DEL CAMPO",
            "municipalitycode": 28084
        },
        {
            "name": "MIRAFLORES DE LA SIERRA",
            "municipalitycode": 28085
        },
        {
            "name": "MONTEJO DE LA SIERRA",
            "municipalitycode": 28088
        },
        {
            "name": "MORALEJA DE ENMEDIO",
            "municipalitycode": 28089
        },
        {
            "name": "MORALZARZAL",
            "municipalitycode": 28090
        },
        {
            "name": "MORATA DE TAJUÑA",
            "municipalitycode": 28091
        },
        {
            "name": "MOSTOLES",
            "municipalitycode": 28092
        },
        {
            "name": "NAVACERRADA",
            "municipalitycode": 28093
        },
        {
            "name": "NAVALAFUENTE",
            "municipalitycode": 28094
        },
        {
            "name": "NAVALAGAMELLA",
            "municipalitycode": 28095
        },
        {
            "name": "NAVALCARNERO",
            "municipalitycode": 28096
        },
        {
            "name": "NAVARREDONDA Y SAN MAMES",
            "municipalitycode": 28097
        },
        {
            "name": "NAVAS DEL REY",
            "municipalitycode": 28099
        },
        {
            "name": "NUEVO BAZTAN",
            "municipalitycode": 28100
        },
        {
            "name": "OLMEDA DE LAS FUENTES",
            "municipalitycode": 28101
        },
        {
            "name": "ORUSCO DE TAJUÑA",
            "municipalitycode": 28102
        },
        {
            "name": "PARACUELLOS DE JARAMA",
            "municipalitycode": 28104
        },
        {
            "name": "PARLA",
            "municipalitycode": 28106
        },
        {
            "name": "PATONES",
            "municipalitycode": 28107
        },
        {
            "name": "PEDREZUELA",
            "municipalitycode": 28108
        },
        {
            "name": "PELAYOS DE LA PRESA",
            "municipalitycode": 28109
        },
        {
            "name": "PERALES DE TAJUÑA",
            "municipalitycode": 28110
        },
        {
            "name": "PEZUELA DE LAS TORRES",
            "municipalitycode": 28111
        },
        {
            "name": "PINILLA DEL VALLE",
            "municipalitycode": 28112
        },
        {
            "name": "PINTO",
            "municipalitycode": 28113
        },
        {
            "name": "PIÑUECAR-GANDULLAS",
            "municipalitycode": 28114
        },
        {
            "name": "POZUELO DE ALARCON",
            "municipalitycode": 28115
        },
        {
            "name": "POZUELO DEL REY",
            "municipalitycode": 28116
        },
        {
            "name": "PRADENA DEL RINCON",
            "municipalitycode": 28117
        },
        {
            "name": "PUEBLA DE LA SIERRA",
            "municipalitycode": 28118
        },
        {
            "name": "PUENTES VIEJAS",
            "municipalitycode": 28185
        },
        {
            "name": "QUIJORNA",
            "municipalitycode": 28119
        },
        {
            "name": "RASCAFRIA",
            "municipalitycode": 28120
        },
        {
            "name": "REDUEÑA",
            "municipalitycode": 28121
        },
        {
            "name": "RIBATEJADA",
            "municipalitycode": 28122
        },
        {
            "name": "RIVAS-VACIAMADRID",
            "municipalitycode": 28123
        },
        {
            "name": "ROBLEDILLO DE LA JARA",
            "municipalitycode": 28124
        },
        {
            "name": "ROBLEDO DE CHAVELA",
            "municipalitycode": 28125
        },
        {
            "name": "ROBREGORDO",
            "municipalitycode": 28126
        },
        {
            "name": "ROZAS DE PUERTO REAL",
            "municipalitycode": 28128
        },
        {
            "name": "SAN AGUSTIN DEL GUADALIX",
            "municipalitycode": 28129
        },
        {
            "name": "SAN FERNANDO DE HENARES",
            "municipalitycode": 28130
        },
        {
            "name": "SAN LORENZO DE EL ESCORIAL",
            "municipalitycode": 28131
        },
        {
            "name": "SAN MARTIN DE LA VEGA",
            "municipalitycode": 28132
        },
        {
            "name": "SAN MARTIN DE VALDEIGLESIAS",
            "municipalitycode": 28133
        },
        {
            "name": "SAN SEBASTIAN DE LOS REYES",
            "municipalitycode": 28134
        },
        {
            "name": "SANTA MARIA DE LA ALAMEDA",
            "municipalitycode": 28135
        },
        {
            "name": "SANTORCAZ",
            "municipalitycode": 28136
        },
        {
            "name": "SERRANILLOS DEL VALLE",
            "municipalitycode": 28140
        },
        {
            "name": "SEVILLA LA NUEVA",
            "municipalitycode": 28141
        },
        {
            "name": "SOMOSIERRA",
            "municipalitycode": 28143
        },
        {
            "name": "SOTO DEL REAL",
            "municipalitycode": 28144
        },
        {
            "name": "TALAMANCA DE JARAMA",
            "municipalitycode": 28145
        },
        {
            "name": "TIELMES",
            "municipalitycode": 28146
        },
        {
            "name": "TITULCIA",
            "municipalitycode": 28147
        },
        {
            "name": "TORREJON DE ARDOZ",
            "municipalitycode": 28148
        },
        {
            "name": "TORREJON DE LA CALZADA",
            "municipalitycode": 28149
        },
        {
            "name": "TORREJON DE VELASCO",
            "municipalitycode": 28150
        },
        {
            "name": "TORRELAGUNA",
            "municipalitycode": 28151
        },
        {
            "name": "TORRELODONES",
            "municipalitycode": 28152
        },
        {
            "name": "TORREMOCHA DE JARAMA",
            "municipalitycode": 28153
        },
        {
            "name": "TORRES DE LA ALAMEDA",
            "municipalitycode": 28154
        },
        {
            "name": "TRES CANTOS",
            "municipalitycode": 28184
        },
        {
            "name": "VALDARACETE",
            "municipalitycode": 28155
        },
        {
            "name": "VALDEAVERO",
            "municipalitycode": 28156
        },
        {
            "name": "VALDELAGUNA",
            "municipalitycode": 28157
        },
        {
            "name": "VALDEMANCO",
            "municipalitycode": 28158
        },
        {
            "name": "VALDEMAQUEDA",
            "municipalitycode": 28159
        },
        {
            "name": "VALDEMORILLO",
            "municipalitycode": 28160
        },
        {
            "name": "VALDEMORO",
            "municipalitycode": 28161
        },
        {
            "name": "VALDEOLMOS-ALALPARDO",
            "municipalitycode": 28162
        },
        {
            "name": "VALDEPIELAGOS",
            "municipalitycode": 28163
        },
        {
            "name": "VALDETORRES DE JARAMA",
            "municipalitycode": 28164
        },
        {
            "name": "VALDILECHA",
            "municipalitycode": 28165
        },
        {
            "name": "VALVERDE DE ALCALA",
            "municipalitycode": 28166
        },
        {
            "name": "VELILLA DE SAN ANTONIO",
            "municipalitycode": 28167
        },
        {
            "name": "VENTURADA",
            "municipalitycode": 28169
        },
        {
            "name": "VILLA DEL PRADO",
            "municipalitycode": 28171
        },
        {
            "name": "VILLACONEJOS",
            "municipalitycode": 28170
        },
        {
            "name": "VILLALBILLA",
            "municipalitycode": 28172
        },
        {
            "name": "VILLAMANRIQUE DE TAJO",
            "municipalitycode": 28173
        },
        {
            "name": "VILLAMANTA",
            "municipalitycode": 28174
        },
        {
            "name": "VILLAMANTILLA",
            "municipalitycode": 28175
        },
        {
            "name": "VILLANUEVA DE LA CAÑADA",
            "municipalitycode": 28176
        },
        {
            "name": "VILLANUEVA DE PERALES",
            "municipalitycode": 28178
        },
        {
            "name": "VILLANUEVA DEL PARDILLO",
            "municipalitycode": 28177
        },
        {
            "name": "VILLAR DEL OLMO",
            "municipalitycode": 28179
        },
        {
            "name": "VILLAREJO DE SALVANES",
            "municipalitycode": 28180
        },
        {
            "name": "VILLAVICIOSA DE ODON",
            "municipalitycode": 28181
        },
        {
            "name": "VILLAVIEJA DEL LOZOYA",
            "municipalitycode": 28182
        },
        {
            "name": "ZARZALEJO",
            "municipalitycode": 28183
        }
    ]
}

Calles

/v1/cadastre/streets/{municipalitycode}

Proporciona el listado de calles para un determinado municipio identificado con {municipalitycode}. Cada calle contiene su nombre y el correspondiente código del Catastro. En el siguiente ejemplo se solicitan las calles del municipio de Las Rozas de Madrid /28127.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/streets/28127

Respuesta

{
    "streets": [
        {
            "name": "A LA MARAZUELA",
            "streetcode": "127"
        },
        {
            "name": "ABANTO",
            "streetcode": "298"
        },
        {
            "name": "ABEDUL",
            "streetcode": "978"
        },
        {
            "name": "ABETOS",
            "streetcode": "2100"
        },
        {
            "name": "ACACIAS",
            "streetcode": "644"
        },
        {
            "name": "ACADEMIA",
            "streetcode": "1291"
        },
        {
            "name": "ACANTO",
            "streetcode": "40"
        },
        {
            "name": "ACAPULCO",
            "streetcode": "748"
        },
        {
            "name": "ACEBO",
            "streetcode": "6006"
        },
        {
            "name": "ADELFAS",
            "streetcode": "1708"
        },
        {
            "name": "ADOLFO PEREZ ESQUIVEL",
            "streetcode": "1571"
        },
        {
            "name": "AFRODITA",
            "streetcode": "36"
        },
        {
            "name": "AGAMENON",
            "streetcode": "1292"
        },
        {
            "name": "AGUAS",
            "streetcode": "1622"
        },
        {
            "name": "AGUILA REAL",
            "streetcode": "296"
        },
        {
            "name": "ALAMO",
            "streetcode": "331"
        },
        {
            "name": "ALBACETE",
            "streetcode": "333"
        },
        {
            "name": "ALCOTAN",
            "streetcode": "297"
        },
        {
            "name": "ALEJANDRO",
            "streetcode": "1293"
        },
        {
            "name": "ALEMANES",
            "streetcode": "3"
        },
        {
            "name": "ALHELI",
            "streetcode": "45"
        },
        {
            "name": "ALICANTE",
            "streetcode": "1286"
        },
        {
            "name": "ALIMOCHE",
            "streetcode": "6019"
        },
        {
            "name": "ALMENDRO",
            "streetcode": "1277"
        },
        {
            "name": "ALMERIA",
            "streetcode": "1287"
        },
        {
            "name": "ALMUDENA",
            "streetcode": "651"
        },
        {
            "name": "ALONDRA",
            "streetcode": "775"
        },
        {
            "name": "ALPEDRETE",
            "streetcode": "1300"
        },
        {
            "name": "ALTEA",
            "streetcode": "1279"
        },
        {
            "name": "ALTEA",
            "streetcode": "1278"
        },
        {
            "name": "ALTO DE LA CIGUEÑA",
            "streetcode": "1290"
        },
        {
            "name": "ALTO DE LA CONCEPCION",
            "streetcode": "155"
        },
        {
            "name": "ALTO DE LAS CABAÑAS",
            "streetcode": "4"
        },
        {
            "name": "AMADEO VIVES",
            "streetcode": "5"
        },
        {
            "name": "AMAPOLAS",
            "streetcode": "6007"
        },
        {
            "name": "AMBERES",
            "streetcode": "5022"
        },
        {
            "name": "AMPURIAS",
            "streetcode": "336"
        },
        {
            "name": "ANA TUTOR",
            "streetcode": "111"
        },
        {
            "name": "ANDORRA",
            "streetcode": "5033"
        },
        {
            "name": "ANDRAITX",
            "streetcode": "1070"
        },
        {
            "name": "ANDRES SEGOVIA",
            "streetcode": "1254"
        },
        {
            "name": "ANIBAL",
            "streetcode": "1294"
        },
        {
            "name": "ANSAR",
            "streetcode": "1281"
        },
        {
            "name": "ANTEQUERA",
            "streetcode": "17"
        },
        {
            "name": "ANTIGONA",
            "streetcode": "1295"
        },
        {
            "name": "ANTON GARCIA ABRIL",
            "streetcode": "90042"
        },
        {
            "name": "ANTONIO ARAGUAS",
            "streetcode": "5010"
        },
        {
            "name": "ANTONIO GALA",
            "streetcode": "1701"
        },
        {
            "name": "ANTONIO MACHADO",
            "streetcode": "37"
        },
        {
            "name": "APEADERO",
            "streetcode": "1285"
        },
        {
            "name": "APOLO",
            "streetcode": "1296"
        },
        {
            "name": "AQUILES",
            "streetcode": "1297"
        },
        {
            "name": "AQUISGRAN",
            "streetcode": "1584"
        },
        {
            "name": "ARAGONESES",
            "streetcode": "311"
        },
        {
            "name": "ARALIA",
            "streetcode": "1282"
        },
        {
            "name": "ARANJUEZ",
            "streetcode": "1289"
        },
        {
            "name": "ARCES",
            "streetcode": "762"
        },
        {
            "name": "ARENALON",
            "streetcode": "1214"
        },
        {
            "name": "ARENAS",
            "streetcode": "1288"
        },
        {
            "name": "ARGONAUTAS",
            "streetcode": "1298"
        },
        {
            "name": "ARGOS",
            "streetcode": "1124"
        },
        {
            "name": "ARISTOTELES",
            "streetcode": "1284"
        },
        {
            "name": "ARIZONICA",
            "streetcode": "469"
        },
        {
            "name": "ARRIAGA",
            "streetcode": "1023"
        },
        {
            "name": "ATALANTA",
            "streetcode": "752"
        },
        {
            "name": "ATENAS",
            "streetcode": "751"
        },
        {
            "name": "ATRIDAS",
            "streetcode": "9"
        },
        {
            "name": "AUTILLO",
            "streetcode": "1006"
        },
        {
            "name": "AVILA",
            "streetcode": "847"
        },
        {
            "name": "AZAGADOR",
            "streetcode": "1235"
        },
        {
            "name": "AZALEA",
            "streetcode": "1283"
        },
        {
            "name": "AZOR",
            "streetcode": "1007"
        },
        {
            "name": "AZORIN",
            "streetcode": "1276"
        },
        {
            "name": "AZULON",
            "streetcode": "1639"
        },
        {
            "name": "B LA MARAZUELA",
            "streetcode": "125"
        },
        {
            "name": "BAILEN",
            "streetcode": "1303"
        },
        {
            "name": "BARRANCOS",
            "streetcode": "987"
        },
        {
            "name": "BEGOÑA",
            "streetcode": "1302"
        },
        {
            "name": "BELGRADO",
            "streetcode": "1552"
        },
        {
            "name": "BELGRADO",
            "streetcode": "1806"
        },
        {
            "name": "BELLAVISTA",
            "streetcode": "1270"
        },
        {
            "name": "BENITO PEREZ GALDOS",
            "streetcode": "46"
        },
        {
            "name": "BERLIN",
            "streetcode": "5014"
        },
        {
            "name": "BERNA",
            "streetcode": "5012"
        },
        {
            "name": "BLANCA",
            "streetcode": "1304"
        },
        {
            "name": "BOJ",
            "streetcode": "60"
        },
        {
            "name": "BOLIVIA",
            "streetcode": "62"
        },
        {
            "name": "BORNI",
            "streetcode": "1008"
        },
        {
            "name": "BRASIL",
            "streetcode": "203"
        },
        {
            "name": "BRATISLAVA",
            "streetcode": "3001"
        },
        {
            "name": "BREDA",
            "streetcode": "1305"
        },
        {
            "name": "BREMEN",
            "streetcode": "90036"
        },
        {
            "name": "BREZO",
            "streetcode": "1706"
        },
        {
            "name": "BRISTOL",
            "streetcode": "5020"
        },
        {
            "name": "BRUJAS",
            "streetcode": "1306"
        },
        {
            "name": "BRUSELAS",
            "streetcode": "1802"
        },
        {
            "name": "BRUSELAS",
            "streetcode": "1554"
        },
        {
            "name": "BUGANVILLA",
            "streetcode": "1259"
        },
        {
            "name": "BURDEOS",
            "streetcode": "5028"
        },
        {
            "name": "C LA MARAZUELA",
            "streetcode": "126"
        },
        {
            "name": "CABEZON",
            "streetcode": "1024"
        },
        {
            "name": "CABO AZOHIA",
            "streetcode": "348"
        },
        {
            "name": "CABO BAGUR",
            "streetcode": "349"
        },
        {
            "name": "CABO CANDELARIA",
            "streetcode": "350"
        },
        {
            "name": "CABO CHIPIONA",
            "streetcode": "354"
        },
        {
            "name": "CABO COPE",
            "streetcode": "351"
        },
        {
            "name": "CABO CREUS",
            "streetcode": "352"
        },
        {
            "name": "CABO CUBERRIS",
            "streetcode": "353"
        },
        {
            "name": "CABO DE PALOS",
            "streetcode": "366"
        },
        {
            "name": "CABO ESTACA DE VARES",
            "streetcode": "355"
        },
        {
            "name": "CABO FIGUERAS",
            "streetcode": "356"
        },
        {
            "name": "CABO FINISTERRE",
            "streetcode": "357"
        },
        {
            "name": "CABO GATA",
            "streetcode": "358"
        },
        {
            "name": "CABO GROSS",
            "streetcode": "359"
        },
        {
            "name": "CABO HIGUER",
            "streetcode": "360"
        },
        {
            "name": "CABO LA NAO",
            "streetcode": "361"
        },
        {
            "name": "CABO LASTRES",
            "streetcode": "362"
        },
        {
            "name": "CABO MACHICHACO",
            "streetcode": "363"
        },
        {
            "name": "CABO MAYOR",
            "streetcode": "724"
        },
        {
            "name": "CABO NORFEO",
            "streetcode": "364"
        },
        {
            "name": "CABO ORTEGAL",
            "streetcode": "369"
        },
        {
            "name": "CABO OYAMBRE",
            "streetcode": "365"
        },
        {
            "name": "CABO PEÑAS",
            "streetcode": "367"
        },
        {
            "name": "CABO PRIETO",
            "streetcode": "370"
        },
        {
            "name": "CABO PRIOR",
            "streetcode": "368"
        },
        {
            "name": "CABO QUINTRES",
            "streetcode": "371"
        },
        {
            "name": "CABO RUFINO LAZARO",
            "streetcode": "59"
        },
        {
            "name": "CABO SACRATIF",
            "streetcode": "372"
        },
        {
            "name": "CABO SAN ROQUE",
            "streetcode": "373"
        },
        {
            "name": "CABO SEBES",
            "streetcode": "374"
        },
        {
            "name": "CABO SILLEIRO",
            "streetcode": "725"
        },
        {
            "name": "CABO TARIFA",
            "streetcode": "375"
        },
        {
            "name": "CABO TORRES",
            "streetcode": "376"
        },
        {
            "name": "CABO TORTOSA",
            "streetcode": "377"
        },
        {
            "name": "CABO TOURIÑANA",
            "streetcode": "378"
        },
        {
            "name": "CABO TRAFALGAR",
            "streetcode": "379"
        },
        {
            "name": "CABO UTRERA",
            "streetcode": "729"
        },
        {
            "name": "CABO VIDRIOS",
            "streetcode": "730"
        },
        {
            "name": "CACERES",
            "streetcode": "1311"
        },
        {
            "name": "CADIZ",
            "streetcode": "1324"
        },
        {
            "name": "CALDERON DE LA BARCA",
            "streetcode": "49"
        },
        {
            "name": "CALOBRA",
            "streetcode": "1202"
        },
        {
            "name": "CAMILO JOSE CELA",
            "streetcode": "1575"
        },
        {
            "name": "CANDIDO VICENTE",
            "streetcode": "885"
        },
        {
            "name": "CANENCIA",
            "streetcode": "1308"
        },
        {
            "name": "CANTABRIA",
            "streetcode": "306"
        },
        {
            "name": "CANTIZAL",
            "streetcode": "6022"
        },
        {
            "name": "CAÑADA",
            "streetcode": "1417"
        },
        {
            "name": "CAÑADILLA",
            "streetcode": "1044"
        },
        {
            "name": "CAÑO",
            "streetcode": "1041"
        },
        {
            "name": "CAÑO",
            "streetcode": "1045"
        },
        {
            "name": "CARACAS",
            "streetcode": "206"
        },
        {
            "name": "CARAVACA",
            "streetcode": "1325"
        },
        {
            "name": "CARIATIDES",
            "streetcode": "1333"
        },
        {
            "name": "CARMEN BURGOS",
            "streetcode": "236"
        },
        {
            "name": "CARMONA",
            "streetcode": "1326"
        },
        {
            "name": "CARNICERIA",
            "streetcode": "22"
        },
        {
            "name": "CARTAGENA",
            "streetcode": "1327"
        },
        {
            "name": "CASTAÑO",
            "streetcode": "390"
        },
        {
            "name": "CASTELLON",
            "streetcode": "1319"
        },
        {
            "name": "CASTILLA",
            "streetcode": "382"
        },
        {
            "name": "CASTILLO DE AREVALO",
            "streetcode": "86"
        },
        {
            "name": "CASTILLO DE ATIENZA",
            "streetcode": "1709"
        },
        {
            "name": "CASTILLO DE BELMONTE",
            "streetcode": "3002"
        },
        {
            "name": "CASTILLO DE FUENSALDAÑA",
            "streetcode": "91"
        },
        {
            "name": "CASTILLO DE JARANDILLA",
            "streetcode": "39"
        },
        {
            "name": "CASTILLO DE MAQUEDA",
            "streetcode": "93"
        },
        {
            "name": "CASTILLO DE ORGAZ",
            "streetcode": "850"
        },
        {
            "name": "CASTILLO DE OROPESA",
            "streetcode": "916"
        },
        {
            "name": "CASTILLO DE PEÑAFIEL",
            "streetcode": "332"
        },
        {
            "name": "CASTILLO DE SIMANCAS",
            "streetcode": "87"
        },
        {
            "name": "CASTILLO DE TUREGANO",
            "streetcode": "1080"
        },
        {
            "name": "CATALUÑA",
            "streetcode": "172"
        },
        {
            "name": "CEDRO",
            "streetcode": "386"
        },
        {
            "name": "CENTRO",
            "streetcode": "385"
        },
        {
            "name": "CERCEDILLA",
            "streetcode": "1334"
        },
        {
            "name": "CEREZALES",
            "streetcode": "1309"
        },
        {
            "name": "CERRO",
            "streetcode": "700"
        },
        {
            "name": "CERRO DE LA CURIA",
            "streetcode": "387"
        },
        {
            "name": "CERRO DE LA PALOMA",
            "streetcode": "1310"
        },
        {
            "name": "CERRO DEL",
            "streetcode": "427"
        },
        {
            "name": "CERVANTES",
            "streetcode": "1317"
        },
        {
            "name": "CETRERIA",
            "streetcode": "299"
        },
        {
            "name": "CHIAPAS",
            "streetcode": "6011"
        },
        {
            "name": "CHICA",
            "streetcode": "254"
        },
        {
            "name": "CHILE",
            "streetcode": "52"
        },
        {
            "name": "CHOPERA VEINTICINCO",
            "streetcode": "5036"
        },
        {
            "name": "CHOPOS",
            "streetcode": "761"
        },
        {
            "name": "CHUECA",
            "streetcode": "623"
        },
        {
            "name": "CICERON",
            "streetcode": "1331"
        },
        {
            "name": "CIERZO",
            "streetcode": "5035"
        },
        {
            "name": "CIGORGO",
            "streetcode": "1009"
        },
        {
            "name": "CIGUEÑA MARIA",
            "streetcode": "1467"
        },
        {
            "name": "CIRO",
            "streetcode": "1332"
        },
        {
            "name": "CISNEROS",
            "streetcode": "1321"
        },
        {
            "name": "CIUDAD DE LUGO",
            "streetcode": "1328"
        },
        {
            "name": "CIUDADELA",
            "streetcode": "181"
        },
        {
            "name": "CLARA CAMPOAMOR",
            "streetcode": "98"
        },
        {
            "name": "CLAVELES",
            "streetcode": "388"
        },
        {
            "name": "CLUNIA",
            "streetcode": "389"
        },
        {
            "name": "COLEGIOS",
            "streetcode": "723"
        },
        {
            "name": "COLIBRI",
            "streetcode": "1020"
        },
        {
            "name": "COLLADO MEDIANO",
            "streetcode": "25"
        },
        {
            "name": "COLLADO MEDIANO",
            "streetcode": "76"
        },
        {
            "name": "COLLADO VENTOSO",
            "streetcode": "26"
        },
        {
            "name": "COLOMBIA",
            "streetcode": "6016"
        },
        {
            "name": "COLONIA EL PARRAL",
            "streetcode": "1322"
        },
        {
            "name": "COLONIA ESTACION",
            "streetcode": "746"
        },
        {
            "name": "COLQUIDE",
            "streetcode": "24"
        },
        {
            "name": "COMUNIDAD CASTILLA-LEON",
            "streetcode": "839"
        },
        {
            "name": "COMUNIDAD CASTILLA-MANCHA",
            "streetcode": "840"
        },
        {
            "name": "COMUNIDAD DE ANDALUCIA",
            "streetcode": "835"
        },
        {
            "name": "COMUNIDAD DE ARAGON",
            "streetcode": "836"
        },
        {
            "name": "COMUNIDAD DE BALEARES",
            "streetcode": "837"
        },
        {
            "name": "COMUNIDAD DE CANARIAS",
            "streetcode": "838"
        },
        {
            "name": "COMUNIDAD DE LA RIOJA",
            "streetcode": "841"
        },
        {
            "name": "COMUNIDAD DE MADRID",
            "streetcode": "842"
        },
        {
            "name": "COMUNIDAD DE MURCIA",
            "streetcode": "843"
        },
        {
            "name": "COMUNIDAD DE VALENCIA",
            "streetcode": "1320"
        },
        {
            "name": "CONCHA ESPINA",
            "streetcode": "1252"
        },
        {
            "name": "CONCHA LAOS",
            "streetcode": "180"
        },
        {
            "name": "CONCORDIA DE LA",
            "streetcode": "123"
        },
        {
            "name": "CONDOR",
            "streetcode": "300"
        },
        {
            "name": "CONSOLACION",
            "streetcode": "1312"
        },
        {
            "name": "CONSTITUCION",
            "streetcode": "639"
        },
        {
            "name": "COPENHAGE",
            "streetcode": "1560"
        },
        {
            "name": "CORDOBA",
            "streetcode": "1329"
        },
        {
            "name": "CORINTO",
            "streetcode": "783"
        },
        {
            "name": "CORNISA",
            "streetcode": "795"
        },
        {
            "name": "CORTA",
            "streetcode": "1335"
        },
        {
            "name": "CORTES DE LAS",
            "streetcode": "424"
        },
        {
            "name": "CORUÑA",
            "streetcode": "1"
        },
        {
            "name": "CORUÑA",
            "streetcode": "755"
        },
        {
            "name": "CORUÑA 21",
            "streetcode": "1336"
        },
        {
            "name": "COVADONGA",
            "streetcode": "1318"
        },
        {
            "name": "CRUCES",
            "streetcode": "30"
        },
        {
            "name": "CRUZ VERDE",
            "streetcode": "827"
        },
        {
            "name": "D LA MAZARUELA",
            "streetcode": "128"
        },
        {
            "name": "DALI",
            "streetcode": "53"
        },
        {
            "name": "DARIO",
            "streetcode": "1356"
        },
        {
            "name": "DE LA PLAZUELA",
            "streetcode": "499"
        },
        {
            "name": "DEHESA",
            "streetcode": "767"
        },
        {
            "name": "DEMOSTENES",
            "streetcode": "1338"
        },
        {
            "name": "DENIA",
            "streetcode": "1346"
        },
        {
            "name": "DESAMPARADOS",
            "streetcode": "1340"
        },
        {
            "name": "DIANA",
            "streetcode": "1357"
        },
        {
            "name": "DIOGENES",
            "streetcode": "1339"
        },
        {
            "name": "DISEMINADOS",
            "streetcode": "996"
        },
        {
            "name": "DOCTOR FLEMING",
            "streetcode": "398"
        },
        {
            "name": "DOCTOR HORNO",
            "streetcode": "217"
        },
        {
            "name": "DOCTOR MARAÑON",
            "streetcode": "1337"
        },
        {
            "name": "DOCTOR RAMON MUNCHARAZ",
            "streetcode": "6069"
        },
        {
            "name": "DOCTOR TOLEDO",
            "streetcode": "739"
        },
        {
            "name": "DOCTOR TOLEDO HIJO",
            "streetcode": "1049"
        },
        {
            "name": "DOS CASTILLAS",
            "streetcode": "401"
        },
        {
            "name": "DRACH",
            "streetcode": "1205"
        },
        {
            "name": "DRAGONERA",
            "streetcode": "1262"
        },
        {
            "name": "DUBLIN",
            "streetcode": "1561"
        },
        {
            "name": "DUBLIN",
            "streetcode": "1805"
        },
        {
            "name": "DUQUE DE AHUMADA",
            "streetcode": "28"
        },
        {
            "name": "DURILLO",
            "streetcode": "848"
        },
        {
            "name": "E LA MAZARUELA",
            "streetcode": "129"
        },
        {
            "name": "EBRO",
            "streetcode": "136"
        },
        {
            "name": "ECIJA",
            "streetcode": "1366"
        },
        {
            "name": "EDIMBURGO",
            "streetcode": "1581"
        },
        {
            "name": "ELENA FORTUN",
            "streetcode": "90040"
        },
        {
            "name": "ELEUSIS",
            "streetcode": "782"
        },
        {
            "name": "ELIDE",
            "streetcode": "789"
        },
        {
            "name": "EMILIA PARDO BAZAN",
            "streetcode": "2012"
        },
        {
            "name": "ENCINA",
            "streetcode": "1368"
        },
        {
            "name": "ENCINAR",
            "streetcode": "1365"
        },
        {
            "name": "ENCINAS",
            "streetcode": "1274"
        },
        {
            "name": "ENEBRAL",
            "streetcode": "175"
        },
        {
            "name": "ENEIDA",
            "streetcode": "1380"
        },
        {
            "name": "ENELDO",
            "streetcode": "640"
        },
        {
            "name": "ENRIQUE GARCIA ASENSIO",
            "streetcode": "90044"
        },
        {
            "name": "ENRIQUE GRANADOS",
            "streetcode": "35"
        },
        {
            "name": "EPIDAURO",
            "streetcode": "1191"
        },
        {
            "name": "EROS",
            "streetcode": "12"
        },
        {
            "name": "ESCALERILLA",
            "streetcode": "167"
        },
        {
            "name": "ESCALONIA",
            "streetcode": "61"
        },
        {
            "name": "ESCORIAL",
            "streetcode": "407"
        },
        {
            "name": "ESCORIAL",
            "streetcode": "38"
        },
        {
            "name": "ESCUDO",
            "streetcode": "1361"
        },
        {
            "name": "ESCUELAS CATOLICAS",
            "streetcode": "822"
        },
        {
            "name": "ESOPO",
            "streetcode": "1381"
        },
        {
            "name": "ESPALMADOR",
            "streetcode": "55"
        },
        {
            "name": "ESPAÑA",
            "streetcode": "268"
        },
        {
            "name": "ESPAÑA",
            "streetcode": "829"
        },
        {
            "name": "ESPARTA",
            "streetcode": "1355"
        },
        {
            "name": "ESPERANZA",
            "streetcode": "215"
        },
        {
            "name": "ESPLIEGO",
            "streetcode": "27"
        },
        {
            "name": "ESQUILO",
            "streetcode": "1369"
        },
        {
            "name": "ESTACION",
            "streetcode": "100"
        },
        {
            "name": "ESTOCOLMO",
            "streetcode": "2102"
        },
        {
            "name": "ESTRASBURGO",
            "streetcode": "94"
        },
        {
            "name": "EUCALIPTO",
            "streetcode": "29"
        },
        {
            "name": "EURIPIDES",
            "streetcode": "1370"
        },
        {
            "name": "EXTREMADURA",
            "streetcode": "287"
        },
        {
            "name": "FAISAN",
            "streetcode": "1013"
        },
        {
            "name": "FARO",
            "streetcode": "33"
        },
        {
            "name": "FE",
            "streetcode": "773"
        },
        {
            "name": "FEDERICO MORENO TORROBA",
            "streetcode": "921"
        },
        {
            "name": "FERROCARRIL",
            "streetcode": "202"
        },
        {
            "name": "FICUS",
            "streetcode": "1383"
        },
        {
            "name": "FIDIAS",
            "streetcode": "21"
        },
        {
            "name": "FILIPO",
            "streetcode": "1387"
        },
        {
            "name": "FINISTERRE",
            "streetcode": "1385"
        },
        {
            "name": "FLAMENCO",
            "streetcode": "1720"
        },
        {
            "name": "FLANDES",
            "streetcode": "741"
        },
        {
            "name": "FLORES",
            "streetcode": "220"
        },
        {
            "name": "FORMENTERA",
            "streetcode": "1225"
        },
        {
            "name": "FORMENTOR",
            "streetcode": "1204"
        },
        {
            "name": "FORNELLS",
            "streetcode": "6004"
        },
        {
            "name": "FORTUNY",
            "streetcode": "1384"
        },
        {
            "name": "FRANCISCO ALONSO",
            "streetcode": "14"
        },
        {
            "name": "FRANCISCO DE QUEVEDO",
            "streetcode": "1382"
        },
        {
            "name": "FRAY LUIS DE LEON",
            "streetcode": "1386"
        },
        {
            "name": "FRESNO",
            "streetcode": "981"
        },
        {
            "name": "FUENTE",
            "streetcode": "42"
        },
        {
            "name": "FUENTE PICHANO",
            "streetcode": "1648"
        },
        {
            "name": "FUTBOL",
            "streetcode": "257"
        },
        {
            "name": "G LA MAZARUELA",
            "streetcode": "131"
        },
        {
            "name": "GABRIEL ENRIQUEZ DE LA OR",
            "streetcode": "226"
        },
        {
            "name": "GABRIEL GARCIA MARQUEZ",
            "streetcode": "1572"
        },
        {
            "name": "GADIR",
            "streetcode": "418"
        },
        {
            "name": "GALENO",
            "streetcode": "1394"
        },
        {
            "name": "GALICIA",
            "streetcode": "290"
        },
        {
            "name": "GARCIA LORCA",
            "streetcode": "1389"
        },
        {
            "name": "GARDENIA",
            "streetcode": "6021"
        },
        {
            "name": "GARZO",
            "streetcode": "980"
        },
        {
            "name": "GAVILAN",
            "streetcode": "301"
        },
        {
            "name": "GAVIOTA",
            "streetcode": "1390"
        },
        {
            "name": "GEMINIS",
            "streetcode": "1395"
        },
        {
            "name": "GENERAL IBAÑEZ",
            "streetcode": "47"
        },
        {
            "name": "GENOVA",
            "streetcode": "5023"
        },
        {
            "name": "GERARDO DIEGO",
            "streetcode": "334"
        },
        {
            "name": "GERIFALTE",
            "streetcode": "646"
        },
        {
            "name": "GERONA",
            "streetcode": "642"
        },
        {
            "name": "GIMNASIO",
            "streetcode": "13"
        },
        {
            "name": "GIRASOL",
            "streetcode": "394"
        },
        {
            "name": "GLORIA FUERTES",
            "streetcode": "90039"
        },
        {
            "name": "GOLONDRINA",
            "streetcode": "643"
        },
        {
            "name": "GORRIONES",
            "streetcode": "656"
        },
        {
            "name": "GOYA",
            "streetcode": "421"
        },
        {
            "name": "GRANADA",
            "streetcode": "1396"
        },
        {
            "name": "GREDOS",
            "streetcode": "659"
        },
        {
            "name": "GUADALAJARA",
            "streetcode": "423"
        },
        {
            "name": "GUADARRAMA",
            "streetcode": "51"
        },
        {
            "name": "GUIPUZCOA",
            "streetcode": "212"
        },
        {
            "name": "GURIDI",
            "streetcode": "1025"
        },
        {
            "name": "H LA MAZARUELA",
            "streetcode": "132"
        },
        {
            "name": "HALCON",
            "streetcode": "303"
        },
        {
            "name": "HAMBURGO",
            "streetcode": "90037"
        },
        {
            "name": "HELADE",
            "streetcode": "1255"
        },
        {
            "name": "HELSINKI",
            "streetcode": "5030"
        },
        {
            "name": "HERMES",
            "streetcode": "58"
        },
        {
            "name": "HESPERIDES",
            "streetcode": "1634"
        },
        {
            "name": "HIGUERA",
            "streetcode": "78"
        },
        {
            "name": "HONDURAS",
            "streetcode": "1642"
        },
        {
            "name": "HORTENSIA",
            "streetcode": "1397"
        },
        {
            "name": "HUELVA",
            "streetcode": "1398"
        },
        {
            "name": "HUESCA",
            "streetcode": "288"
        },
        {
            "name": "HURACAN",
            "streetcode": "747"
        },
        {
            "name": "I",
            "streetcode": "688"
        },
        {
            "name": "I LA MARAZUELA",
            "streetcode": "133"
        },
        {
            "name": "IBIZA",
            "streetcode": "233"
        },
        {
            "name": "ICARO",
            "streetcode": "1402"
        },
        {
            "name": "IGLESIA",
            "streetcode": "429"
        },
        {
            "name": "IGLESIA DE SAN MIGUEL",
            "streetcode": "54"
        },
        {
            "name": "II",
            "streetcode": "689"
        },
        {
            "name": "III",
            "streetcode": "676"
        },
        {
            "name": "ILIADA",
            "streetcode": "1403"
        },
        {
            "name": "INDUSTRIAL EUROPOLIS",
            "streetcode": "1570"
        },
        {
            "name": "IREGUA",
            "streetcode": "1405"
        },
        {
            "name": "IRIS",
            "streetcode": "6064"
        },
        {
            "name": "ISAAC ALBENIZ",
            "streetcode": "183"
        },
        {
            "name": "ISAAC PERAL",
            "streetcode": "191"
        },
        {
            "name": "ISLA DE LA TOJA",
            "streetcode": "1401"
        },
        {
            "name": "ISLAS PITIUSAS",
            "streetcode": "1206"
        },
        {
            "name": "ITACA",
            "streetcode": "1404"
        },
        {
            "name": "ITALICA",
            "streetcode": "430"
        },
        {
            "name": "IV",
            "streetcode": "673"
        },
        {
            "name": "IX",
            "streetcode": "573"
        },
        {
            "name": "J LA MAZARUELA",
            "streetcode": "134"
        },
        {
            "name": "JABONERIA",
            "streetcode": "56"
        },
        {
            "name": "JACA",
            "streetcode": "1410"
        },
        {
            "name": "JACINTO",
            "streetcode": "69"
        },
        {
            "name": "JACINTO BENAVENTE",
            "streetcode": "1582"
        },
        {
            "name": "JAEN",
            "streetcode": "1411"
        },
        {
            "name": "JALISCO",
            "streetcode": "1407"
        },
        {
            "name": "JARAIZ",
            "streetcode": "1409"
        },
        {
            "name": "JARAS",
            "streetcode": "713"
        },
        {
            "name": "JASON",
            "streetcode": "1415"
        },
        {
            "name": "JAVEA",
            "streetcode": "1412"
        },
        {
            "name": "JAVERIANAS",
            "streetcode": "1425"
        },
        {
            "name": "JAZMIN",
            "streetcode": "6009"
        },
        {
            "name": "JEREZ",
            "streetcode": "1413"
        },
        {
            "name": "JOSE CABALLERO",
            "streetcode": "68"
        },
        {
            "name": "JOSE ECHEGARAY",
            "streetcode": "1576"
        },
        {
            "name": "JUAN BARJOLA",
            "streetcode": "1406"
        },
        {
            "name": "JUAN CARLOS CALDERON",
            "streetcode": "90043"
        },
        {
            "name": "JUAN DE MENA",
            "streetcode": "435"
        },
        {
            "name": "JUAN RAMON JIMENEZ",
            "streetcode": "1580"
        },
        {
            "name": "JUMILLA",
            "streetcode": "1414"
        },
        {
            "name": "JUNIPEROS",
            "streetcode": "82"
        },
        {
            "name": "JUPITER",
            "streetcode": "1416"
        },
        {
            "name": "KABALA",
            "streetcode": "5005"
        },
        {
            "name": "KALAMOS",
            "streetcode": "780"
        },
        {
            "name": "KALMIA",
            "streetcode": "1092"
        },
        {
            "name": "LAGUNA",
            "streetcode": "289"
        },
        {
            "name": "LANZAROTE",
            "streetcode": "1423"
        },
        {
            "name": "LARISA",
            "streetcode": "787"
        },
        {
            "name": "LAUREL",
            "streetcode": "1419"
        },
        {
            "name": "LAVANDA",
            "streetcode": "1420"
        },
        {
            "name": "LAZAREJO",
            "streetcode": "1707"
        },
        {
            "name": "LEOPOLDO ALAS CLARIN",
            "streetcode": "1700"
        },
        {
            "name": "LERIDA",
            "streetcode": "65"
        },
        {
            "name": "LEVANTE",
            "streetcode": "63"
        },
        {
            "name": "LILOS",
            "streetcode": "1421"
        },
        {
            "name": "LIRIOS",
            "streetcode": "440"
        },
        {
            "name": "LISBOA",
            "streetcode": "1559"
        },
        {
            "name": "LOECHES",
            "streetcode": "1426"
        },
        {
            "name": "LONDRES",
            "streetcode": "1807"
        },
        {
            "name": "LONDRES",
            "streetcode": "5009"
        },
        {
            "name": "LONJA",
            "streetcode": "218"
        },
        {
            "name": "LOPE DE VEGA",
            "streetcode": "1160"
        },
        {
            "name": "LOPEZ SANTOS",
            "streetcode": "1226"
        },
        {
            "name": "LORCA",
            "streetcode": "1424"
        },
        {
            "name": "LUARCA",
            "streetcode": "1418"
        },
        {
            "name": "LUXEMBURGO",
            "streetcode": "1594"
        },
        {
            "name": "LUZ",
            "streetcode": "230"
        },
        {
            "name": "M-503",
            "streetcode": "1633"
        },
        {
            "name": "MACARENA",
            "streetcode": "237"
        },
        {
            "name": "MADRE MA DOLORES SEGARRA",
            "streetcode": "1224"
        },
        {
            "name": "MADRESELVA",
            "streetcode": "1801"
        },
        {
            "name": "MADRID",
            "streetcode": "443"
        },
        {
            "name": "MADRID",
            "streetcode": "138"
        },
        {
            "name": "MADROÑERA",
            "streetcode": "1436"
        },
        {
            "name": "MADROÑO",
            "streetcode": "445"
        },
        {
            "name": "MADROÑOS",
            "streetcode": "922"
        },
        {
            "name": "MAESTRO FALLA",
            "streetcode": "705"
        },
        {
            "name": "MAESTRO SERRANO",
            "streetcode": "66"
        },
        {
            "name": "MAESTRO TURINA",
            "streetcode": "630"
        },
        {
            "name": "MAGNOLIA",
            "streetcode": "1433"
        },
        {
            "name": "MAHON",
            "streetcode": "1556"
        },
        {
            "name": "MAJALACABRA",
            "streetcode": "1449"
        },
        {
            "name": "MALAGA",
            "streetcode": "1446"
        },
        {
            "name": "MALLORCA",
            "streetcode": "1087"
        },
        {
            "name": "MANACOR",
            "streetcode": "1261"
        },
        {
            "name": "MANUEL LOPEZ PARAISO",
            "streetcode": "1428"
        },
        {
            "name": "MAR CASPIO",
            "streetcode": "1429"
        },
        {
            "name": "MAR NEGRO",
            "streetcode": "1550"
        },
        {
            "name": "MAR OCEANA",
            "streetcode": "7"
        },
        {
            "name": "MARGARITAS",
            "streetcode": "6020"
        },
        {
            "name": "MARIA BLANCHARD",
            "streetcode": "207"
        },
        {
            "name": "MARIA CURIE",
            "streetcode": "153"
        },
        {
            "name": "MARIA GUERRERO",
            "streetcode": "99"
        },
        {
            "name": "MARIA MOLINER",
            "streetcode": "114"
        },
        {
            "name": "MARIA ZAMBRANO",
            "streetcode": "1431"
        },
        {
            "name": "MARIANO JOSE DE LARRA",
            "streetcode": "500"
        },
        {
            "name": "MARSIL",
            "streetcode": "453"
        },
        {
            "name": "MARTIN IRIARTE",
            "streetcode": "169"
        },
        {
            "name": "MARTIRES CONCEPCIONISTAS",
            "streetcode": "742"
        },
        {
            "name": "MATADERO",
            "streetcode": "198"
        },
        {
            "name": "MAYOR",
            "streetcode": "455"
        },
        {
            "name": "MAZARRON",
            "streetcode": "1447"
        },
        {
            "name": "MEDELLIN",
            "streetcode": "1434"
        },
        {
            "name": "MEDIODIA",
            "streetcode": "188"
        },
        {
            "name": "MEGARA",
            "streetcode": "794"
        },
        {
            "name": "MEJICO",
            "streetcode": "769"
        },
        {
            "name": "MELINA MERCURY",
            "streetcode": "1702"
        },
        {
            "name": "MENORCA",
            "streetcode": "1450"
        },
        {
            "name": "MERCADAL",
            "streetcode": "1451"
        },
        {
            "name": "MERCEDES FORMICA",
            "streetcode": "161"
        },
        {
            "name": "MERIDA",
            "streetcode": "456"
        },
        {
            "name": "MICENAS",
            "streetcode": "1452"
        },
        {
            "name": "MIESES",
            "streetcode": "141"
        },
        {
            "name": "MIJAS",
            "streetcode": "1448"
        },
        {
            "name": "MIKONOS",
            "streetcode": "1237"
        },
        {
            "name": "MILAN",
            "streetcode": "5024"
        },
        {
            "name": "MILANO",
            "streetcode": "302"
        },
        {
            "name": "MILOCA",
            "streetcode": "1010"
        },
        {
            "name": "MILOS",
            "streetcode": "799"
        },
        {
            "name": "MIMOSA",
            "streetcode": "877"
        },
        {
            "name": "MINERVA",
            "streetcode": "1453"
        },
        {
            "name": "MIRALCAMPO",
            "streetcode": "457"
        },
        {
            "name": "MIRALPARDO",
            "streetcode": "1221"
        },
        {
            "name": "MIRALRIO",
            "streetcode": "286"
        },
        {
            "name": "MIRAMAR",
            "streetcode": "806"
        },
        {
            "name": "MIRASIERRA",
            "streetcode": "459"
        },
        {
            "name": "MIRLO",
            "streetcode": "460"
        },
        {
            "name": "MIRO",
            "streetcode": "79"
        },
        {
            "name": "MIRTO",
            "streetcode": "75"
        },
        {
            "name": "MODENA",
            "streetcode": "1804"
        },
        {
            "name": "MOLINOS",
            "streetcode": "1427"
        },
        {
            "name": "MONACO",
            "streetcode": "1803"
        },
        {
            "name": "MONCAYO",
            "streetcode": "1437"
        },
        {
            "name": "MONTE",
            "streetcode": "461"
        },
        {
            "name": "MONTE ABANTOS",
            "streetcode": "18"
        },
        {
            "name": "MONTE CASINO",
            "streetcode": "1438"
        },
        {
            "name": "MONTE CERVINO",
            "streetcode": "1440"
        },
        {
            "name": "MONTE LEON",
            "streetcode": "1441"
        },
        {
            "name": "MONTE PICAYO",
            "streetcode": "1439"
        },
        {
            "name": "MONTE RANCHO",
            "streetcode": "1265"
        },
        {
            "name": "MONTE ULIA",
            "streetcode": "1442"
        },
        {
            "name": "MONTE URGULL",
            "streetcode": "1443"
        },
        {
            "name": "MONTE VERDE",
            "streetcode": "1444"
        },
        {
            "name": "MONTECILLO",
            "streetcode": "1649"
        },
        {
            "name": "MONTERREY",
            "streetcode": "765"
        },
        {
            "name": "MONTSERRAT",
            "streetcode": "1435"
        },
        {
            "name": "MORCUERA",
            "streetcode": "1432"
        },
        {
            "name": "MORERAS",
            "streetcode": "393"
        },
        {
            "name": "MUNICH",
            "streetcode": "5015"
        },
        {
            "name": "NAJERILLA",
            "streetcode": "1461"
        },
        {
            "name": "NARCISO YEPES",
            "streetcode": "90041"
        },
        {
            "name": "NAVACERRADA",
            "streetcode": "205"
        },
        {
            "name": "NAVAHERMOSA",
            "streetcode": "1456"
        },
        {
            "name": "NAVALCARBON",
            "streetcode": "1350"
        },
        {
            "name": "NAVALUENGA",
            "streetcode": "162"
        },
        {
            "name": "NAVARRA",
            "streetcode": "294"
        },
        {
            "name": "NAVAS DEL MARQUES",
            "streetcode": "1458"
        },
        {
            "name": "NAVAS DEL REY",
            "streetcode": "1459"
        },
        {
            "name": "NEBLI",
            "streetcode": "1011"
        },
        {
            "name": "NEILA",
            "streetcode": "1462"
        },
        {
            "name": "NEPTUNO",
            "streetcode": "1460"
        },
        {
            "name": "NIÑO JESUS",
            "streetcode": "1455"
        },
        {
            "name": "NODO",
            "streetcode": "466"
        },
        {
            "name": "NOGAL",
            "streetcode": "1454"
        },
        {
            "name": "NOROESTE",
            "streetcode": "90045"
        },
        {
            "name": "NORTE",
            "streetcode": "80"
        },
        {
            "name": "NTRA SRA DEL RETAMAR",
            "streetcode": "454"
        },
        {
            "name": "NUEVA",
            "streetcode": "262"
        },
        {
            "name": "NUEVA",
            "streetcode": "81"
        },
        {
            "name": "NUEVA UR PINAR",
            "streetcode": "470"
        },
        {
            "name": "NUMANCIA",
            "streetcode": "475"
        },
        {
            "name": "OCTAVIO PAZ",
            "streetcode": "1574"
        },
        {
            "name": "ODISEA",
            "streetcode": "1464"
        },
        {
            "name": "OJA",
            "streetcode": "1465"
        },
        {
            "name": "OLIVA",
            "streetcode": "738"
        },
        {
            "name": "OLMO",
            "streetcode": "478"
        },
        {
            "name": "OLMOS",
            "streetcode": "928"
        },
        {
            "name": "OPORTO",
            "streetcode": "5021"
        },
        {
            "name": "ORIHUELA",
            "streetcode": "1463"
        },
        {
            "name": "OROPENDOLA",
            "streetcode": "1012"
        },
        {
            "name": "OSLO",
            "streetcode": "5011"
        },
        {
            "name": "OXFORD",
            "streetcode": "1585"
        },
        {
            "name": "PABLO LUNA",
            "streetcode": "706"
        },
        {
            "name": "PABLO NERUDA",
            "streetcode": "1577"
        },
        {
            "name": "PABLO SOROZABAL",
            "streetcode": "704"
        },
        {
            "name": "PAJARES",
            "streetcode": "5037"
        },
        {
            "name": "PALENCIA",
            "streetcode": "1485"
        },
        {
            "name": "PALENQUE",
            "streetcode": "1800"
        },
        {
            "name": "PANAMA",
            "streetcode": "57"
        },
        {
            "name": "PANDORA",
            "streetcode": "1490"
        },
        {
            "name": "PARADISIA",
            "streetcode": "796"
        },
        {
            "name": "PARAGUAY",
            "streetcode": "225"
        },
        {
            "name": "PARDO",
            "streetcode": "88"
        },
        {
            "name": "PARDO DEL",
            "streetcode": "482"
        },
        {
            "name": "PARIS",
            "streetcode": "5013"
        },
        {
            "name": "PASAMAR",
            "streetcode": "1466"
        },
        {
            "name": "PATRAS",
            "streetcode": "797"
        },
        {
            "name": "PEDRIZA",
            "streetcode": "495"
        },
        {
            "name": "PEGUERINOS",
            "streetcode": "1469"
        },
        {
            "name": "PELICANA",
            "streetcode": "496"
        },
        {
            "name": "PELOPONESO",
            "streetcode": "1491"
        },
        {
            "name": "PENELOPE",
            "streetcode": "1492"
        },
        {
            "name": "PEÑALARA",
            "streetcode": "276"
        },
        {
            "name": "PEÑASCALES",
            "streetcode": "1353"
        },
        {
            "name": "PEÑASCALES",
            "streetcode": "708"
        },
        {
            "name": "PERALES",
            "streetcode": "1705"
        },
        {
            "name": "PERICLES",
            "streetcode": "1489"
        },
        {
            "name": "PERU",
            "streetcode": "72"
        },
        {
            "name": "PETRONIO",
            "streetcode": "1493"
        },
        {
            "name": "PETUNIAS",
            "streetcode": "2011"
        },
        {
            "name": "PICASSO",
            "streetcode": "1643"
        },
        {
            "name": "PIEDRALAVES",
            "streetcode": "1486"
        },
        {
            "name": "PILAR",
            "streetcode": "246"
        },
        {
            "name": "PINAR",
            "streetcode": "678"
        },
        {
            "name": "PINARES",
            "streetcode": "675"
        },
        {
            "name": "PINDARO",
            "streetcode": "1494"
        },
        {
            "name": "PINO REDONDO",
            "streetcode": "876"
        },
        {
            "name": "PINOS",
            "streetcode": "764"
        },
        {
            "name": "PIQUERAS",
            "streetcode": "1470"
        },
        {
            "name": "PITAGORAS",
            "streetcode": "1495"
        },
        {
            "name": "PLANTIO",
            "streetcode": "691"
        },
        {
            "name": "PLASENCIA",
            "streetcode": "1484"
        },
        {
            "name": "PLATON",
            "streetcode": "1496"
        },
        {
            "name": "PLAYA DE ARO",
            "streetcode": "1247"
        },
        {
            "name": "PLAYA DE BAKIO",
            "streetcode": "1192"
        },
        {
            "name": "PLAYA DE BENICASIM",
            "streetcode": "1475"
        },
        {
            "name": "PLAYA DE BENIDORM",
            "streetcode": "1193"
        },
        {
            "name": "PLAYA DE BOLONIA",
            "streetcode": "2010"
        },
        {
            "name": "PLAYA DE CALAFELL",
            "streetcode": "1476"
        },
        {
            "name": "PLAYA DE EL SALER",
            "streetcode": "1248"
        },
        {
            "name": "PLAYA DE FUENGIROLA",
            "streetcode": "1208"
        },
        {
            "name": "PLAYA DE FUENTERRABIA",
            "streetcode": "1249"
        },
        {
            "name": "PLAYA DE GANDIA",
            "streetcode": "1110"
        },
        {
            "name": "PLAYA DE GORLIZ",
            "streetcode": "1233"
        },
        {
            "name": "PLAYA DE LA CONCHA",
            "streetcode": "1194"
        },
        {
            "name": "PLAYA DE LA HERRADURA",
            "streetcode": "1198"
        },
        {
            "name": "PLAYA DE LA LANZADA",
            "streetcode": "1130"
        },
        {
            "name": "PLAYA DE LAGA",
            "streetcode": "1251"
        },
        {
            "name": "PLAYA DE LAIDA",
            "streetcode": "1478"
        },
        {
            "name": "PLAYA DE LAS AMERICAS",
            "streetcode": "1472"
        },
        {
            "name": "PLAYA DE LAS ANTILLAS",
            "streetcode": "1473"
        },
        {
            "name": "PLAYA DE LIENCRES",
            "streetcode": "1239"
        },
        {
            "name": "PLAYA DE LOIRA",
            "streetcode": "1636"
        },
        {
            "name": "PLAYA DE PERELLO",
            "streetcode": "1271"
        },
        {
            "name": "PLAYA DE RIBEIRA",
            "streetcode": "1480"
        },
        {
            "name": "PLAYA DE ROQUETAS",
            "streetcode": "1481"
        },
        {
            "name": "PLAYA DE SAMIL",
            "streetcode": "1268"
        },
        {
            "name": "PLAYA DE SAN JUAN",
            "streetcode": "1196"
        },
        {
            "name": "PLAYA DE SANGENJO",
            "streetcode": "1099"
        },
        {
            "name": "PLAYA DE SITGES",
            "streetcode": "1131"
        },
        {
            "name": "PLAYA DE SOPELANA",
            "streetcode": "1199"
        },
        {
            "name": "PLAYA DE VILLAGARCIA",
            "streetcode": "1483"
        },
        {
            "name": "PLAYA DE ZARAUZ",
            "streetcode": "1246"
        },
        {
            "name": "PLAYA DE ZUMAYA",
            "streetcode": "1242"
        },
        {
            "name": "PLAYA DEL PUIG",
            "streetcode": "1479"
        },
        {
            "name": "PLAYA DEL SARDINERO",
            "streetcode": "1241"
        },
        {
            "name": "PLAZUELA",
            "streetcode": "498"
        },
        {
            "name": "POCITO DE LAS NIEVES",
            "streetcode": "734"
        },
        {
            "name": "POCITO DE SAN ROQUE",
            "streetcode": "501"
        },
        {
            "name": "POLIDEPORTIVO",
            "streetcode": "1358"
        },
        {
            "name": "POLLENSA",
            "streetcode": "558"
        },
        {
            "name": "PONIENTE",
            "streetcode": "242"
        },
        {
            "name": "POSEIDON",
            "streetcode": "238"
        },
        {
            "name": "PRADERA DEL HOSPITAL",
            "streetcode": "817"
        },
        {
            "name": "PRAGA",
            "streetcode": "1586"
        },
        {
            "name": "PRIMAVERA",
            "streetcode": "221"
        },
        {
            "name": "PRINCIPADO DE ASTURIAS",
            "streetcode": "1053"
        },
        {
            "name": "PROLONGACION CALLE MADRID",
            "streetcode": "1497"
        },
        {
            "name": "PUENTE DE ROMA DEL",
            "streetcode": "426"
        },
        {
            "name": "PUENTE RETAMAR",
            "streetcode": "893"
        },
        {
            "name": "PUERTO DE COTOS",
            "streetcode": "502"
        },
        {
            "name": "PUERTO DE LOS LEONES",
            "streetcode": "919"
        },
        {
            "name": "PUERTO RICO",
            "streetcode": "1641"
        },
        {
            "name": "QUICOS",
            "streetcode": "143"
        },
        {
            "name": "QUINTA DEL SOL",
            "streetcode": "636"
        },
        {
            "name": "RAFAEL ALBERTI",
            "streetcode": "1498"
        },
        {
            "name": "RAMON Y CAJAL",
            "streetcode": "1573"
        },
        {
            "name": "RASCAFRIA",
            "streetcode": "263"
        },
        {
            "name": "REAL",
            "streetcode": "295"
        },
        {
            "name": "REAL",
            "streetcode": "756"
        },
        {
            "name": "REINA MERCEDES",
            "streetcode": "618"
        },
        {
            "name": "REINA VICTORIA",
            "streetcode": "234"
        },
        {
            "name": "RIGA",
            "streetcode": "5029"
        },
        {
            "name": "ROBLES",
            "streetcode": "674"
        },
        {
            "name": "RODRIGO",
            "streetcode": "1026"
        },
        {
            "name": "ROMERAL",
            "streetcode": "105"
        },
        {
            "name": "ROMERO DE TORRES",
            "streetcode": "92"
        },
        {
            "name": "ROSA DE LIMA",
            "streetcode": "1200"
        },
        {
            "name": "ROSALES",
            "streetcode": "511"
        },
        {
            "name": "ROSALIA DE CASTRO",
            "streetcode": "85"
        },
        {
            "name": "ROSARIO",
            "streetcode": "425"
        },
        {
            "name": "ROSAS",
            "streetcode": "512"
        },
        {
            "name": "ROTTERDAM",
            "streetcode": "1587"
        },
        {
            "name": "ROZABELLA",
            "streetcode": "1637"
        },
        {
            "name": "ROZAS-MAJADAHONDA",
            "streetcode": "1631"
        },
        {
            "name": "RUBIOS",
            "streetcode": "108"
        },
        {
            "name": "RUFINO SANCHEZ",
            "streetcode": "610"
        },
        {
            "name": "RUISEÑORES",
            "streetcode": "665"
        },
        {
            "name": "RUPERTO CHAPI",
            "streetcode": "625"
        },
        {
            "name": "RUSO",
            "streetcode": "513"
        },
        {
            "name": "SACRE",
            "streetcode": "264"
        },
        {
            "name": "SAGRADA FAMILIA",
            "streetcode": "1501"
        },
        {
            "name": "SAGUNTO",
            "streetcode": "516"
        },
        {
            "name": "SALAMANCA",
            "streetcode": "648"
        },
        {
            "name": "SALONICA",
            "streetcode": "779"
        },
        {
            "name": "SALVIA",
            "streetcode": "101"
        },
        {
            "name": "SALZBURGO",
            "streetcode": "5032"
        },
        {
            "name": "SAN AGUSTIN",
            "streetcode": "277"
        },
        {
            "name": "SAN ANDRES",
            "streetcode": "274"
        },
        {
            "name": "SAN CRISTOBAL",
            "streetcode": "110"
        },
        {
            "name": "SAN FRANCISCO",
            "streetcode": "1047"
        },
        {
            "name": "SAN IGNACIO DE LOYOLA",
            "streetcode": "1518"
        },
        {
            "name": "SAN ISIDRO",
            "streetcode": "519"
        },
        {
            "name": "SAN JAVIER",
            "streetcode": "1516"
        },
        {
            "name": "SAN JOAQUIN",
            "streetcode": "1212"
        },
        {
            "name": "SAN JOSE DEL PEDROSILLO",
            "streetcode": "112"
        },
        {
            "name": "SAN JOSE OBRERO",
            "streetcode": "520"
        },
        {
            "name": "SAN JUAN BAUTISTA",
            "streetcode": "1551"
        },
        {
            "name": "SAN LORENZO DE EL ESCORIA",
            "streetcode": "1519"
        },
        {
            "name": "SAN LUCAS",
            "streetcode": "1502"
        },
        {
            "name": "SAN LUCAS",
            "streetcode": "1626"
        },
        {
            "name": "SAN MARTIN",
            "streetcode": "522"
        },
        {
            "name": "SAN MIGUEL",
            "streetcode": "214"
        },
        {
            "name": "SAN PABLO",
            "streetcode": "1503"
        },
        {
            "name": "SAN SEBASTIAN",
            "streetcode": "1504"
        },
        {
            "name": "SAN ZACARIAS",
            "streetcode": "1505"
        },
        {
            "name": "SANDALO",
            "streetcode": "1115"
        },
        {
            "name": "SANTA ALICIA",
            "streetcode": "1506"
        },
        {
            "name": "SANTA ANA",
            "streetcode": "979"
        },
        {
            "name": "SANTA ANA",
            "streetcode": "1163"
        },
        {
            "name": "SANTA CECILIA",
            "streetcode": "115"
        },
        {
            "name": "SANTA CLARA",
            "streetcode": "523"
        },
        {
            "name": "SANTA INES",
            "streetcode": "1137"
        },
        {
            "name": "SANTA ISABEL",
            "streetcode": "1507"
        },
        {
            "name": "SANTA LUCIA",
            "streetcode": "1508"
        },
        {
            "name": "SANTA MARIA",
            "streetcode": "524"
        },
        {
            "name": "SANTA MARTA",
            "streetcode": "1514"
        },
        {
            "name": "SANTA TERESA",
            "streetcode": "525"
        },
        {
            "name": "SANTANDER",
            "streetcode": "1250"
        },
        {
            "name": "SANTIAGO AMON",
            "streetcode": "1515"
        },
        {
            "name": "SANTOLINA",
            "streetcode": "1299"
        },
        {
            "name": "SANTOS",
            "streetcode": "1190"
        },
        {
            "name": "SAUCE",
            "streetcode": "526"
        },
        {
            "name": "SECTOR IX:TERCIARIO",
            "streetcode": "1640"
        },
        {
            "name": "SECTOR S-V / P-V2",
            "streetcode": "6005"
        },
        {
            "name": "SEGOVIA",
            "streetcode": "846"
        },
        {
            "name": "SENECA",
            "streetcode": "1521"
        },
        {
            "name": "SEVERO OCHOA",
            "streetcode": "1578"
        },
        {
            "name": "SEVILLA",
            "streetcode": "1517"
        },
        {
            "name": "SIERRA DE CAZORLA",
            "streetcode": "1510"
        },
        {
            "name": "SIERRA DE LAS ALPUJARRAS",
            "streetcode": "1509"
        },
        {
            "name": "SIERRA MORENA",
            "streetcode": "1512"
        },
        {
            "name": "SIERRA NEVADA",
            "streetcode": "1513"
        },
        {
            "name": "SIETE PICOS",
            "streetcode": "267"
        },
        {
            "name": "SIRENA",
            "streetcode": "187"
        },
        {
            "name": "SOFIA",
            "streetcode": "1583"
        },
        {
            "name": "SOFOCLES",
            "streetcode": "1520"
        },
        {
            "name": "SOLANA BLANCA",
            "streetcode": "119"
        },
        {
            "name": "SOLER",
            "streetcode": "1027"
        },
        {
            "name": "SOLLER",
            "streetcode": "1088"
        },
        {
            "name": "SOMOSIERRA",
            "streetcode": "529"
        },
        {
            "name": "SORIA",
            "streetcode": "121"
        },
        {
            "name": "SOROLLA",
            "streetcode": "1646"
        },
        {
            "name": "SUIZA",
            "streetcode": "152"
        },
        {
            "name": "SUZS-1 CERRO DE LA CURIA",
            "streetcode": "6070"
        },
        {
            "name": "TABERNA",
            "streetcode": "122"
        },
        {
            "name": "TACITO",
            "streetcode": "1527"
        },
        {
            "name": "TAJO",
            "streetcode": "1524"
        },
        {
            "name": "TAMARIA",
            "streetcode": "1528"
        },
        {
            "name": "TAMARINDO",
            "streetcode": "6012"
        },
        {
            "name": "TARRAGONA",
            "streetcode": "1555"
        },
        {
            "name": "TARREGA",
            "streetcode": "1028"
        },
        {
            "name": "TARTESOS",
            "streetcode": "532"
        },
        {
            "name": "TEBAS",
            "streetcode": "635"
        },
        {
            "name": "TEGUCIGALPA",
            "streetcode": "1522"
        },
        {
            "name": "TELEMACO",
            "streetcode": "1526"
        },
        {
            "name": "TERUEL",
            "streetcode": "821"
        },
        {
            "name": "TESALIA",
            "streetcode": "1529"
        },
        {
            "name": "TIBERIO",
            "streetcode": "1530"
        },
        {
            "name": "TIETAR",
            "streetcode": "1525"
        },
        {
            "name": "TILO",
            "streetcode": "533"
        },
        {
            "name": "TINAJA",
            "streetcode": "1644"
        },
        {
            "name": "TIRSO DE MOLINA",
            "streetcode": "90"
        },
        {
            "name": "TOMILLARON",
            "streetcode": "664"
        },
        {
            "name": "TOREROS",
            "streetcode": "534"
        },
        {
            "name": "TORREON",
            "streetcode": "34"
        },
        {
            "name": "TORREON",
            "streetcode": "1364"
        },
        {
            "name": "TORTOLAS",
            "streetcode": "661"
        },
        {
            "name": "TRACIA",
            "streetcode": "1531"
        },
        {
            "name": "TRAMONTANA",
            "streetcode": "793"
        },
        {
            "name": "TREBOL",
            "streetcode": "918"
        },
        {
            "name": "TREN TALGO",
            "streetcode": "5034"
        },
        {
            "name": "TRUJILLO",
            "streetcode": "1523"
        },
        {
            "name": "TUCANES",
            "streetcode": "1563"
        },
        {
            "name": "TULIPAN",
            "streetcode": "89"
        },
        {
            "name": "TURIN",
            "streetcode": "1557"
        },
        {
            "name": "TURINA",
            "streetcode": "977"
        },
        {
            "name": "UE I-1:AV.POLIDEPORTIVO",
            "streetcode": "48"
        },
        {
            "name": "UE I-2",
            "streetcode": "6003"
        },
        {
            "name": "URBION",
            "streetcode": "1532"
        },
        {
            "name": "UROGALLO",
            "streetcode": "304"
        },
        {
            "name": "USANDIZAGA",
            "streetcode": "213"
        },
        {
            "name": "UTRECH",
            "streetcode": "74"
        },
        {
            "name": "V",
            "streetcode": "667"
        },
        {
            "name": "VALDEMOSA",
            "streetcode": "1201"
        },
        {
            "name": "VALERO",
            "streetcode": "1029"
        },
        {
            "name": "VALLE DE ALCUDIA",
            "streetcode": "5019"
        },
        {
            "name": "VALLE DE ANSO",
            "streetcode": "5018"
        },
        {
            "name": "VALLE DEL RONCAL",
            "streetcode": "44"
        },
        {
            "name": "VARSOVIA",
            "streetcode": "1553"
        },
        {
            "name": "VELAZQUEZ",
            "streetcode": "235"
        },
        {
            "name": "VELETA",
            "streetcode": "1536"
        },
        {
            "name": "VENECIA",
            "streetcode": "5025"
        },
        {
            "name": "VENEZUELA",
            "streetcode": "224"
        },
        {
            "name": "VENUS",
            "streetcode": "1535"
        },
        {
            "name": "VERGARA",
            "streetcode": "633"
        },
        {
            "name": "VERONICA",
            "streetcode": "83"
        },
        {
            "name": "VI",
            "streetcode": "568"
        },
        {
            "name": "VIA SERV LAS ROZAS",
            "streetcode": "545"
        },
        {
            "name": "VICENTE ALEIXANDRE",
            "streetcode": "1579"
        },
        {
            "name": "VIEJO DE MADRID",
            "streetcode": "546"
        },
        {
            "name": "VIENA",
            "streetcode": "1589"
        },
        {
            "name": "VII",
            "streetcode": "569"
        },
        {
            "name": "VIII",
            "streetcode": "570"
        },
        {
            "name": "VILLA DE FOZ",
            "streetcode": "1534"
        },
        {
            "name": "VIOLETAS",
            "streetcode": "1537"
        },
        {
            "name": "VIRGEN DE GUADALUPE",
            "streetcode": "1264"
        },
        {
            "name": "VIRGEN DE LA ALMUDENA",
            "streetcode": "813"
        },
        {
            "name": "VIRGEN DE LAS NIEVES",
            "streetcode": "216"
        },
        {
            "name": "VIRGEN DEL CARMEN",
            "streetcode": "1051"
        },
        {
            "name": "VIRGEN DEL MAR",
            "streetcode": "791"
        },
        {
            "name": "VIRGEN DEL PILAR",
            "streetcode": "774"
        },
        {
            "name": "VIRGEN DEL RETAMAR",
            "streetcode": "269"
        },
        {
            "name": "VIRGEN DEL ROSARIO",
            "streetcode": "628"
        },
        {
            "name": "VISITACION",
            "streetcode": "1533"
        },
        {
            "name": "VITORIA",
            "streetcode": "222"
        },
        {
            "name": "VIZCAYA",
            "streetcode": "227"
        },
        {
            "name": "WISTERIA",
            "streetcode": "914"
        },
        {
            "name": "XI",
            "streetcode": "576"
        },
        {
            "name": "XIX",
            "streetcode": "1157"
        },
        {
            "name": "XVI",
            "streetcode": "687"
        },
        {
            "name": "XVII",
            "streetcode": "694"
        },
        {
            "name": "XVIII",
            "streetcode": "695"
        },
        {
            "name": "XX",
            "streetcode": "693"
        },
        {
            "name": "XXI",
            "streetcode": "697"
        },
        {
            "name": "XXII",
            "streetcode": "685"
        },
        {
            "name": "XXIII",
            "streetcode": "686"
        },
        {
            "name": "XXIV",
            "streetcode": "710"
        },
        {
            "name": "XXV",
            "streetcode": "698"
        },
        {
            "name": "XXVI",
            "streetcode": "711"
        },
        {
            "name": "XXVII",
            "streetcode": "1158"
        },
        {
            "name": "YABIRU",
            "streetcode": "1538"
        },
        {
            "name": "YECLA",
            "streetcode": "1539"
        },
        {
            "name": "YORK",
            "streetcode": "5027"
        },
        {
            "name": "YUCATAN",
            "streetcode": "766"
        },
        {
            "name": "ZAGREB",
            "streetcode": "5031"
        },
        {
            "name": "ZALAMEA",
            "streetcode": "1540"
        },
        {
            "name": "ZAMORA",
            "streetcode": "280"
        },
        {
            "name": "ZARAGOZA",
            "streetcode": "293"
        },
        {
            "name": "ZARZAMORA",
            "streetcode": "486"
        },
        {
            "name": "ZENON",
            "streetcode": "1541"
        },
        {
            "name": "ZEUS",
            "streetcode": "1542"
        },
        {
            "name": "ZORZAL",
            "streetcode": "650"
        },
        {
            "name": "ZURICH",
            "streetcode": "1808"
        }
    ]
}

Números de calle

/v1/cadastre/streets/{municipalitycode}/{streetcode}

Proporciona el listado de números de calle para un determinado municipio identificado con {municipalitycode} y calle {streetcode}. En el siguiente ejemplo se solicitan los números de calle de del municipio de Las Rozas de Madrid /28127 y calle Castillo de Fuensaldaña /91.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/streetnumbers/28127/91

Respuesta

{"streetnumbers":[2,4]}

Búsqueda por referencia catastral

/v1/cadastre/cadastralreference/{cadastralreference}

Realiza una búsqueda por referencia catastral de veinte caracteres.

Importante: No confundir una parcela catastral de catorce caracteres, que identifica la parcela, con la referencia catastral de veinte caracteres, que identifica el inmueble.

En la búsqueda por referencia catastral necesariamente tiene indicarse al final de la URL uno de los siguientes tipos de datos a obtener:

En el siguiente ejemplo, obtenemos los datos alfanuméricos /data de la referencia catastral número /4242103VK2844S0133FF.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/cadastralreference/4242103VK2844S0133FF/data

Por defecto se devuelve un JSON en inglés. Si queremos obtener el JSON en español, añadimos el parámetro &language=es.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/cadastralreference/4242103VK2844S0133FF/data?language=es

Búsqueda por parcela catastral

/v1/cadastre/cadastralparcel/{cadastralparcel}

Realiza una búsqueda por parcela catastral de catorce caracteres.

Importante: No confundir una parcela catastral de catorce caracteres, que identifica la parcela, con la referencia catastral de veinte caracteres, que identifica el inmueble.

En la búsqueda por parcela catastral necesariamente tiene que indicarse al final de la URL uno de los siguientes tipos de datos a obtener:

En el siguiente ejemplo obtenemos el listado de referencias catastrales /cadastralreferences de la parcela catastral /4242103VK2844S/.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/cadastralparcel/4242103VK2844S/cadastralreferences

Búsqueda por latitud / longitud

/v1/cadastre/latlng/{lat}/{lng}

Realiza una búsqueda en el Catastro por latitud y longitud.

En la búsqueda por latitud/longitud necesariamente tiene que indicarse al final de la URL uno de los siguientes tipos de datos a obtener:

En el siguiente ejemplo obtenemos la geografía de la parcela /geocorrespondiente a la coordenada con latitud /40.5051763902488/ y longitud /-3.89128067459106/.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/latlng/40.5051763902488/-3.89128067459106/geo

Búsqueda por dirección exacta

/v1/cadastre/exactaddress/{municipalitycode}/{streetcode}/{number}

Busca datos catastrales por su dirección postal exacta en el Catastro.

Para hacer esta búsqueda, necesitamos el código del municipio del Catastro {municipalitycode} que puede obtenerse del recurso Municipios, el código de calle {streetcode} que puede obtenerse del recurso Calles y el número de la calle {number}.

En la búsqueda por dirección exacta necesariamente tiene que indicarse al final de la URL uno de los siguientes tipos de datos a obtener:

En el siguiente ejemplo obtenemos el listado de referencias catastrales /cadastralreferences del número /4/ de la calle Castillo de Fuensaldaña con código de calle /91/ del municipio de Las Rozas de Madrid con código de municipio /28127/.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/exactaddress/28127/91/4/cadastralreferences

Búsqueda por polígono y parcela

/v1/cadastre/polygonparcel/{municipalitycode}/{polygon}/{parcel}

Realiza una búsqueda por polígono y parcela catastral. Para ello necesitamos el código del municipio {municipalitycode}, que podemos obtener del recurso Municipios, el número de polígono catastral {polygon} y el número de parcela {parcel}.

En la búsqueda por polígono y parcela necesariamente tiene que indicarse al final de la URL uno de los siguientes tipos de datos a obtener:

En el siguiente ejemplo, obtenemos los datos alfanuméricos /data de la parcela número /152/ del polígono catastral /2/ del municipio de Las Rozas de Madrid con código de municipio /28127/.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/polygonparcel/28127/2/152/data

Listado de referencias catastrales

/cadastralreferences

Proporciona un listado de referencias catastrales de veinte caracteres como resultado de una búsqueda.

En el siguiente ejemplo obtenemos el listado de referencias catastrales de la parcela catastral /4242103VK2844S/.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/cadastralparcel/4242103VK2844S/cadastralreferences

Respuesta

{
  "cadastralreferences": [
    {
      "cadatralreference": "4242103VK2844S0002SS",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "02"
    },
    {
      "cadatralreference": "4242103VK2844S0003DD",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "03"
    },
    {
      "cadatralreference": "4242103VK2844S0004FF",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "04"
    },
    {
      "cadatralreference": "4242103VK2844S0005GG",
      "area": "28",
      "stair": "1",
      "floor": "-1",
      "door": "05"
    },
    {
      "cadatralreference": "4242103VK2844S0006HH",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "06"
    },
    {
      "cadatralreference": "4242103VK2844S0007JJ",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "07"
    },
    {
      "cadatralreference": "4242103VK2844S0008KK",
      "area": "28",
      "stair": "1",
      "floor": "-1",
      "door": "08"
    },
    {
      "cadatralreference": "4242103VK2844S0009LL",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "09"
    },
    {
      "cadatralreference": "4242103VK2844S0010JJ",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "10"
    },
    {
      "cadatralreference": "4242103VK2844S0011KK",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "11"
    },
    {
      "cadatralreference": "4242103VK2844S0012LL",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "12"
    },
    {
      "cadatralreference": "4242103VK2844S0013BB",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "13"
    },
    {
      "cadatralreference": "4242103VK2844S0014ZZ",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "14"
    },
    {
      "cadatralreference": "4242103VK2844S0015XX",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "15"
    },
    {
      "cadatralreference": "4242103VK2844S0016MM",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "16"
    },
    {
      "cadatralreference": "4242103VK2844S0017QQ",
      "area": "28",
      "stair": "1",
      "floor": "-1",
      "door": "17"
    },
    {
      "cadatralreference": "4242103VK2844S0018WW",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "18"
    },
    {
      "cadatralreference": "4242103VK2844S0019EE",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "19"
    },
    {
      "cadatralreference": "4242103VK2844S0020QQ",
      "area": "28",
      "stair": "1",
      "floor": "-1",
      "door": "20"
    },
    {
      "cadatralreference": "4242103VK2844S0021WW",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "21"
    },
    {
      "cadatralreference": "4242103VK2844S0022EE",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "22"
    },
    {
      "cadatralreference": "4242103VK2844S0023RR",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "23"
    },
    {
      "cadatralreference": "4242103VK2844S0024TT",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "24"
    },
    {
      "cadatralreference": "4242103VK2844S0025YY",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "25"
    },
    {
      "cadatralreference": "4242103VK2844S0026UU",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "26"
    },
    {
      "cadatralreference": "4242103VK2844S0027II",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "27"
    },
    {
      "cadatralreference": "4242103VK2844S0028OO",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "28"
    },
    {
      "cadatralreference": "4242103VK2844S0029PP",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "29"
    },
    {
      "cadatralreference": "4242103VK2844S0030II",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "30"
    },
    {
      "cadatralreference": "4242103VK2844S0031OO",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "31"
    },
    {
      "cadatralreference": "4242103VK2844S0032PP",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "32"
    },
    {
      "cadatralreference": "4242103VK2844S0033AA",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "33"
    },
    {
      "cadatralreference": "4242103VK2844S0034SS",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "34"
    },
    {
      "cadatralreference": "4242103VK2844S0035DD",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "35"
    },
    {
      "cadatralreference": "4242103VK2844S0036FF",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "36"
    },
    {
      "cadatralreference": "4242103VK2844S0037GG",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "37"
    },
    {
      "cadatralreference": "4242103VK2844S0038HH",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "38"
    },
    {
      "cadatralreference": "4242103VK2844S0039JJ",
      "area": "32",
      "stair": "1",
      "floor": "-1",
      "door": "39"
    },
    {
      "cadatralreference": "4242103VK2844S0040GG",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "40"
    },
    {
      "cadatralreference": "4242103VK2844S0041HH",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "41"
    },
    {
      "cadatralreference": "4242103VK2844S0042JJ",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "42"
    },
    {
      "cadatralreference": "4242103VK2844S0043KK",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "43"
    },
    {
      "cadatralreference": "4242103VK2844S0044LL",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "44"
    },
    {
      "cadatralreference": "4242103VK2844S0045BB",
      "area": "28",
      "stair": "1",
      "floor": "-1",
      "door": "45"
    },
    {
      "cadatralreference": "4242103VK2844S0046ZZ",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "46"
    },
    {
      "cadatralreference": "4242103VK2844S0047XX",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "47"
    },
    {
      "cadatralreference": "4242103VK2844S0048MM",
      "area": "31",
      "stair": "1",
      "floor": "-1",
      "door": "48"
    },
    {
      "cadatralreference": "4242103VK2844S0049QQ",
      "area": "28",
      "stair": "1",
      "floor": "-1",
      "door": "49"
    },
    {
      "cadatralreference": "4242103VK2844S0050XX",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "50"
    },
    {
      "cadatralreference": "4242103VK2844S0051MM",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "51"
    },
    {
      "cadatralreference": "4242103VK2844S0052QQ",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "52"
    },
    {
      "cadatralreference": "4242103VK2844S0053WW",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "53"
    },
    {
      "cadatralreference": "4242103VK2844S0054EE",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "54"
    },
    {
      "cadatralreference": "4242103VK2844S0055RR",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "55"
    },
    {
      "cadatralreference": "4242103VK2844S0056TT",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "56"
    },
    {
      "cadatralreference": "4242103VK2844S0057YY",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "57"
    },
    {
      "cadatralreference": "4242103VK2844S0058UU",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "58"
    },
    {
      "cadatralreference": "4242103VK2844S0059II",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "59"
    },
    {
      "cadatralreference": "4242103VK2844S0060YY",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "60"
    },
    {
      "cadatralreference": "4242103VK2844S0061UU",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "61"
    },
    {
      "cadatralreference": "4242103VK2844S0062II",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "62"
    },
    {
      "cadatralreference": "4242103VK2844S0063OO",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "63"
    },
    {
      "cadatralreference": "4242103VK2844S0064PP",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "64"
    },
    {
      "cadatralreference": "4242103VK2844S0065AA",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "65"
    },
    {
      "cadatralreference": "4242103VK2844S0066SS",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "66"
    },
    {
      "cadatralreference": "4242103VK2844S0067DD",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "67"
    },
    {
      "cadatralreference": "4242103VK2844S0068FF",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "68"
    },
    {
      "cadatralreference": "4242103VK2844S0069GG",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "69"
    },
    {
      "cadatralreference": "4242103VK2844S0070DD",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "70"
    },
    {
      "cadatralreference": "4242103VK2844S0071FF",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "71"
    },
    {
      "cadatralreference": "4242103VK2844S0072GG",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "72"
    },
    {
      "cadatralreference": "4242103VK2844S0073HH",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "73"
    },
    {
      "cadatralreference": "4242103VK2844S0074JJ",
      "area": "28",
      "stair": "1",
      "floor": "-1",
      "door": "74"
    },
    {
      "cadatralreference": "4242103VK2844S0075KK",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "75"
    },
    {
      "cadatralreference": "4242103VK2844S0076LL",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "76"
    },
    {
      "cadatralreference": "4242103VK2844S0077BB",
      "area": "33",
      "stair": "1",
      "floor": "-1",
      "door": "77"
    },
    {
      "cadatralreference": "4242103VK2844S0078ZZ",
      "area": "30",
      "stair": "1",
      "floor": "-1",
      "door": "78"
    },
    {
      "cadatralreference": "4242103VK2844S0079XX",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "79"
    },
    {
      "cadatralreference": "4242103VK2844S0080BB",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "80"
    },
    {
      "cadatralreference": "4242103VK2844S0081ZZ",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "81"
    },
    {
      "cadatralreference": "4242103VK2844S0082XX",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "82"
    },
    {
      "cadatralreference": "4242103VK2844S0083MM",
      "area": "32",
      "stair": "1",
      "floor": "-1",
      "door": "83"
    },
    {
      "cadatralreference": "4242103VK2844S0084QQ",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "84"
    },
    {
      "cadatralreference": "4242103VK2844S0085WW",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "85"
    },
    {
      "cadatralreference": "4242103VK2844S0086EE",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "86"
    },
    {
      "cadatralreference": "4242103VK2844S0087RR",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "87"
    },
    {
      "cadatralreference": "4242103VK2844S0088TT",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "88"
    },
    {
      "cadatralreference": "4242103VK2844S0089YY",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "89"
    },
    {
      "cadatralreference": "4242103VK2844S0090RR",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "90"
    },
    {
      "cadatralreference": "4242103VK2844S0091TT",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "91"
    },
    {
      "cadatralreference": "4242103VK2844S0092YY",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "92"
    },
    {
      "cadatralreference": "4242103VK2844S0093UU",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "93"
    },
    {
      "cadatralreference": "4242103VK2844S0094II",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "94"
    },
    {
      "cadatralreference": "4242103VK2844S0095OO",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "95"
    },
    {
      "cadatralreference": "4242103VK2844S0096PP",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "96"
    },
    {
      "cadatralreference": "4242103VK2844S0097AA",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "97"
    },
    {
      "cadatralreference": "4242103VK2844S0098SS",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "98"
    },
    {
      "cadatralreference": "4242103VK2844S0099DD",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "99"
    },
    {
      "cadatralreference": "4242103VK2844S0100DD",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "100"
    },
    {
      "cadatralreference": "4242103VK2844S0101FF",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "101"
    },
    {
      "cadatralreference": "4242103VK2844S0102GG",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "102"
    },
    {
      "cadatralreference": "4242103VK2844S0103HH",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "103"
    },
    {
      "cadatralreference": "4242103VK2844S0104JJ",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "104"
    },
    {
      "cadatralreference": "4242103VK2844S0105KK",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "105"
    },
    {
      "cadatralreference": "4242103VK2844S0106LL",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "106"
    },
    {
      "cadatralreference": "4242103VK2844S0107BB",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "107"
    },
    {
      "cadatralreference": "4242103VK2844S0108ZZ",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "108"
    },
    {
      "cadatralreference": "4242103VK2844S0109XX",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "109"
    },
    {
      "cadatralreference": "4242103VK2844S0110BB",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "110"
    },
    {
      "cadatralreference": "4242103VK2844S0111ZZ",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "111"
    },
    {
      "cadatralreference": "4242103VK2844S0112XX",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "112"
    },
    {
      "cadatralreference": "4242103VK2844S0113MM",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "113"
    },
    {
      "cadatralreference": "4242103VK2844S0114QQ",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "114"
    },
    {
      "cadatralreference": "4242103VK2844S0115WW",
      "area": "40",
      "stair": "1",
      "floor": "-1",
      "door": "115"
    },
    {
      "cadatralreference": "4242103VK2844S0116EE",
      "area": "33",
      "stair": "1",
      "floor": "-1",
      "door": "116"
    },
    {
      "cadatralreference": "4242103VK2844S0117RR",
      "area": "28",
      "stair": "1",
      "floor": "-1",
      "door": "117"
    },
    {
      "cadatralreference": "4242103VK2844S0118TT",
      "area": "28",
      "stair": "1",
      "floor": "-1",
      "door": "118"
    },
    {
      "cadatralreference": "4242103VK2844S0119YY",
      "area": "27",
      "stair": "1",
      "floor": "-1",
      "door": "119"
    },
    {
      "cadatralreference": "4242103VK2844S0120RR",
      "area": "28",
      "stair": "1",
      "floor": "-1",
      "door": "120"
    },
    {
      "cadatralreference": "4242103VK2844S0121TT",
      "area": "28",
      "stair": "1",
      "floor": "-1",
      "door": "121"
    },
    {
      "cadatralreference": "4242103VK2844S0122YY",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "122"
    },
    {
      "cadatralreference": "4242103VK2844S0123UU",
      "area": "28",
      "stair": "1",
      "floor": "-1",
      "door": "123"
    },
    {
      "cadatralreference": "4242103VK2844S0124II",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "01"
    },
    {
      "cadatralreference": "4242103VK2844S0125OO",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "02"
    },
    {
      "cadatralreference": "4242103VK2844S0126PP",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "03"
    },
    {
      "cadatralreference": "4242103VK2844S0127AA",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "04"
    },
    {
      "cadatralreference": "4242103VK2844S0128SS",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "05"
    },
    {
      "cadatralreference": "4242103VK2844S0129DD",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "06"
    },
    {
      "cadatralreference": "4242103VK2844S0130AA",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "07"
    },
    {
      "cadatralreference": "4242103VK2844S0131SS",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "08"
    },
    {
      "cadatralreference": "4242103VK2844S0132DD",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "09"
    },
    {
      "cadatralreference": "4242103VK2844S0133FF",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "10"
    },
    {
      "cadatralreference": "4242103VK2844S0134GG",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "11"
    },
    {
      "cadatralreference": "4242103VK2844S0135HH",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "12"
    },
    {
      "cadatralreference": "4242103VK2844S0136JJ",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "13"
    },
    {
      "cadatralreference": "4242103VK2844S0137KK",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "14"
    },
    {
      "cadatralreference": "4242103VK2844S0138LL",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "15"
    },
    {
      "cadatralreference": "4242103VK2844S0139BB",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "16"
    },
    {
      "cadatralreference": "4242103VK2844S0140KK",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "17"
    },
    {
      "cadatralreference": "4242103VK2844S0141LL",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "18"
    },
    {
      "cadatralreference": "4242103VK2844S0142BB",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "19"
    },
    {
      "cadatralreference": "4242103VK2844S0143ZZ",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "20"
    },
    {
      "cadatralreference": "4242103VK2844S0144XX",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "21"
    },
    {
      "cadatralreference": "4242103VK2844S0145MM",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "22"
    },
    {
      "cadatralreference": "4242103VK2844S0146QQ",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "23"
    },
    {
      "cadatralreference": "4242103VK2844S0147WW",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "24"
    },
    {
      "cadatralreference": "4242103VK2844S0148EE",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "25"
    },
    {
      "cadatralreference": "4242103VK2844S0149RR",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "26"
    },
    {
      "cadatralreference": "4242103VK2844S0150WW",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "27"
    },
    {
      "cadatralreference": "4242103VK2844S0151EE",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "28"
    },
    {
      "cadatralreference": "4242103VK2844S0152RR",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "29"
    },
    {
      "cadatralreference": "4242103VK2844S0153TT",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "30"
    },
    {
      "cadatralreference": "4242103VK2844S0154YY",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "31"
    },
    {
      "cadatralreference": "4242103VK2844S0155UU",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "32"
    },
    {
      "cadatralreference": "4242103VK2844S0156II",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "33"
    },
    {
      "cadatralreference": "4242103VK2844S0157OO",
      "area": "52",
      "stair": "1",
      "floor": "SM",
      "door": "34"
    },
    {
      "cadatralreference": "4242103VK2844S0158PP",
      "area": "130",
      "stair": "1",
      "floor": "SM",
      "door": "L1"
    },
    {
      "cadatralreference": "4242103VK2844S0159AA",
      "area": "88",
      "stair": "1",
      "floor": "00",
      "door": "101"
    },
    {
      "cadatralreference": "4242103VK2844S0160OO",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "102"
    },
    {
      "cadatralreference": "4242103VK2844S0161PP",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "103"
    },
    {
      "cadatralreference": "4242103VK2844S0162AA",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "104"
    },
    {
      "cadatralreference": "4242103VK2844S0163SS",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "105"
    },
    {
      "cadatralreference": "4242103VK2844S0164DD",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "106"
    },
    {
      "cadatralreference": "4242103VK2844S0165FF",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "107"
    },
    {
      "cadatralreference": "4242103VK2844S0166GG",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "108"
    },
    {
      "cadatralreference": "4242103VK2844S0167HH",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "109"
    },
    {
      "cadatralreference": "4242103VK2844S0168JJ",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "110"
    },
    {
      "cadatralreference": "4242103VK2844S0169KK",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "111"
    },
    {
      "cadatralreference": "4242103VK2844S0170HH",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "112"
    },
    {
      "cadatralreference": "4242103VK2844S0171JJ",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "113"
    },
    {
      "cadatralreference": "4242103VK2844S0172KK",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "114"
    },
    {
      "cadatralreference": "4242103VK2844S0173LL",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "115"
    },
    {
      "cadatralreference": "4242103VK2844S0174BB",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "116"
    },
    {
      "cadatralreference": "4242103VK2844S0175ZZ",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "117"
    },
    {
      "cadatralreference": "4242103VK2844S0176XX",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "118"
    },
    {
      "cadatralreference": "4242103VK2844S0177MM",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "119"
    },
    {
      "cadatralreference": "4242103VK2844S0178QQ",
      "area": "88",
      "stair": "1",
      "floor": "00",
      "door": "120"
    },
    {
      "cadatralreference": "4242103VK2844S0179WW",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "121"
    },
    {
      "cadatralreference": "4242103VK2844S0180MM",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "122"
    },
    {
      "cadatralreference": "4242103VK2844S0181QQ",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "123"
    },
    {
      "cadatralreference": "4242103VK2844S0182WW",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "124"
    },
    {
      "cadatralreference": "4242103VK2844S0183EE",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "125"
    },
    {
      "cadatralreference": "4242103VK2844S0184RR",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "126"
    },
    {
      "cadatralreference": "4242103VK2844S0185TT",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "127"
    },
    {
      "cadatralreference": "4242103VK2844S0186YY",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "128"
    },
    {
      "cadatralreference": "4242103VK2844S0187UU",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "129"
    },
    {
      "cadatralreference": "4242103VK2844S0188II",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "130"
    },
    {
      "cadatralreference": "4242103VK2844S0189OO",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "131"
    },
    {
      "cadatralreference": "4242103VK2844S0190UU",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "132"
    },
    {
      "cadatralreference": "4242103VK2844S0191II",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "133"
    },
    {
      "cadatralreference": "4242103VK2844S0192OO",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "134"
    },
    {
      "cadatralreference": "4242103VK2844S0193PP",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "135"
    },
    {
      "cadatralreference": "4242103VK2844S0194AA",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "136"
    },
    {
      "cadatralreference": "4242103VK2844S0195SS",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "137"
    },
    {
      "cadatralreference": "4242103VK2844S0196DD",
      "area": "85",
      "stair": "1",
      "floor": "00",
      "door": "138"
    },
    {
      "cadatralreference": "4242103VK2844S0197FF",
      "area": "90",
      "stair": "1",
      "floor": "01",
      "door": "201"
    },
    {
      "cadatralreference": "4242103VK2844S0198GG",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "202"
    },
    {
      "cadatralreference": "4242103VK2844S0199HH",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "203"
    },
    {
      "cadatralreference": "4242103VK2844S0200HH",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "204"
    },
    {
      "cadatralreference": "4242103VK2844S0201JJ",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "205"
    },
    {
      "cadatralreference": "4242103VK2844S0202KK",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "206"
    },
    {
      "cadatralreference": "4242103VK2844S0203LL",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "207"
    },
    {
      "cadatralreference": "4242103VK2844S0204BB",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "208"
    },
    {
      "cadatralreference": "4242103VK2844S0205ZZ",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "209"
    },
    {
      "cadatralreference": "4242103VK2844S0206XX",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "210"
    },
    {
      "cadatralreference": "4242103VK2844S0207MM",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "211"
    },
    {
      "cadatralreference": "4242103VK2844S0208QQ",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "212"
    },
    {
      "cadatralreference": "4242103VK2844S0209WW",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "213"
    },
    {
      "cadatralreference": "4242103VK2844S0210MM",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "214"
    },
    {
      "cadatralreference": "4242103VK2844S0211QQ",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "215"
    },
    {
      "cadatralreference": "4242103VK2844S0212WW",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "216"
    },
    {
      "cadatralreference": "4242103VK2844S0213EE",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "217"
    },
    {
      "cadatralreference": "4242103VK2844S0214RR",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "218"
    },
    {
      "cadatralreference": "4242103VK2844S0215TT",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "219"
    },
    {
      "cadatralreference": "4242103VK2844S0216YY",
      "area": "90",
      "stair": "1",
      "floor": "01",
      "door": "220"
    },
    {
      "cadatralreference": "4242103VK2844S0217UU",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "221"
    },
    {
      "cadatralreference": "4242103VK2844S0218II",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "222"
    },
    {
      "cadatralreference": "4242103VK2844S0219OO",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "223"
    },
    {
      "cadatralreference": "4242103VK2844S0220UU",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "224"
    },
    {
      "cadatralreference": "4242103VK2844S0221II",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "225"
    },
    {
      "cadatralreference": "4242103VK2844S0222OO",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "226"
    },
    {
      "cadatralreference": "4242103VK2844S0223PP",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "227"
    },
    {
      "cadatralreference": "4242103VK2844S0224AA",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "228"
    },
    {
      "cadatralreference": "4242103VK2844S0225SS",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "229"
    },
    {
      "cadatralreference": "4242103VK2844S0226DD",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "230"
    },
    {
      "cadatralreference": "4242103VK2844S0227FF",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "231"
    },
    {
      "cadatralreference": "4242103VK2844S0228GG",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "232"
    },
    {
      "cadatralreference": "4242103VK2844S0229HH",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "233"
    },
    {
      "cadatralreference": "4242103VK2844S0230FF",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "234"
    },
    {
      "cadatralreference": "4242103VK2844S0231GG",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "235"
    },
    {
      "cadatralreference": "4242103VK2844S0232HH",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "236"
    },
    {
      "cadatralreference": "4242103VK2844S0233JJ",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "237"
    },
    {
      "cadatralreference": "4242103VK2844S0234KK",
      "area": "87",
      "stair": "1",
      "floor": "01",
      "door": "238"
    },
    {
      "cadatralreference": "4242103VK2844S0235LL",
      "area": "12",
      "stair": "1",
      "floor": "SM",
      "door": "124"
    },
    {
      "cadatralreference": "4242103VK2844S0236BB",
      "area": "13",
      "stair": "1",
      "floor": "SM",
      "door": "125"
    },
    {
      "cadatralreference": "4242103VK2844S0237ZZ",
      "area": "12",
      "stair": "1",
      "floor": "SM",
      "door": "126"
    },
    {
      "cadatralreference": "4242103VK2844S0238XX",
      "area": "13",
      "stair": "1",
      "floor": "SM",
      "door": "127"
    },
    {
      "cadatralreference": "4242103VK2844S0239MM",
      "area": "29",
      "stair": "1",
      "floor": "-1",
      "door": "01"
    }
  ]
}

Imagen de fachada

/facade

Obtiene la imagen de fachada de la parcela catastral.

Importante: Requiere añadir la cabecera 'Accept: image/jpeg' en la solicitud.

En el siguiente ejemplo obtenemos la imagen de fachada /facade de la parcela catastral /cadastralparcel/ con número /4242103VK2844S/.

Solicitud

curl -H "x-api-key: your_api_key" -H 'Accept: image/jpeg' -G https://api.goolzoom.com/v1/cadastre/cadastralparcel/4242103VK2844S/facade

Respuesta

Por defecto se devuelve la imagen en tamaño grande, pero es posible obtener la imagen en pequeño añadiendo el parámetro &thumbnail=true.

Solicitud

curl -H "x-api-key: your_api_key" -H 'Accept: image/jpeg' -G https://api.goolzoom.com/v1/cadastre/cadastralparcel/4242103VK2844S/facade?thumbnail=true

Respuesta

Datos alfanuméricos

/data

Proporciona los datos alfanuméricos (datos catastrales) para una determinada búsqueda. Estos datos son los mismos que publica el Catastro en los archivos CAT, que se actualizan periódicamente de manera conjunta con el propio catastro.

Esta consulta devuelve un JSON con los datos de los siguientes tipos de registros: finca, construcciones, inmuebles y cultivos.

Añade el parámetro &rawoutput=true para devolver todo el conjunto de datos en su formato original.

En el siguiente ejemplo se solicitan los datos catastrales /data para la referencia catastral /cadastralreference/ con número /4242103VK2844S0133FF/ en español &language=es.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/cadastralreference/4242103VK2844S0133FF/data?language=es

Respuesta

{
    "registros": {
        "finca": {
            "Parcela catastral": "4242103VK2844S",
            "Centroide": "40.5038382775 -3.8957863976",
            "Dirección": "CL CASTILLO DE FUENSALDAÑA 4 SECTOR V-2",
            "Municipio": "LAS ROZAS DE MADRID",
            "Provincia": "MADRID",
            "Superficie de la finca": "5.476 m²",
            "Superficie construida": "12.573 m²",
            "Construida sobre rasante": "6.190 m²",
            "Construida bajo rasante": "6.383 m²",
            "Superficie cubierta": "2.110 m²"
        },
        "construcciones": [
            {
                "División horizontal": "Es 1 Pl SM Pu 10 ",
                "Uso": "Otras activ.",
                "Antigüedad": "2009",
                "Interior": "No",
                "Superficie": "39 m²",
                "Tipología constructiva": "3113 Oficinas múltiples",
                "Reparto": ""
            },
            {
                "División horizontal": "Es C Pl OM Pu UN ",
                "Uso": "Deporte",
                "Antigüedad": "2009",
                "Interior": "No",
                "Superficie": "200 m²",
                "Tipología constructiva": "5215 Deportes varios",
                "Reparto": "AL2"
            },
            {
                "División horizontal": "Es C Pl OM Pu UN ",
                "Uso": "Piscina",
                "Antigüedad": "2009",
                "Interior": "No",
                "Superficie": "63 m²",
                "Tipología constructiva": "5225 Piscinas",
                "Reparto": "AL2"
            },
            {
                "División horizontal": "Es C Pl OM Pu UN ",
                "Uso": "Otras activ.",
                "Antigüedad": "2009",
                "Interior": "No",
                "Superficie": "1.436 m²",
                "Tipología constructiva": "3113 Oficinas múltiples",
                "Reparto": "AL2"
            },
            {
                "División horizontal": "Es C Pl OM Pu UN ",
                "Uso": "Almacén",
                "Antigüedad": "2009",
                "Interior": "No",
                "Superficie": "191 m²",
                "Tipología constructiva": "1133 Garajes, trasteros, locales en estructura",
                "Reparto": "AL2"
            },
            {
                "División horizontal": "Es C Pl OM Pu UN ",
                "Uso": "Aparcamiento",
                "Antigüedad": "2009",
                "Interior": "No",
                "Superficie": "1.866 m²",
                "Tipología constructiva": "1134 Garajes, trasteros, locales en estructura",
                "Reparto": "AL1"
            }
        ],
        "inmuebles": [
            {
                "Referencia catastral": "4242103VK2844S0133FF",
                "División horizontal": "Escalera 1 Planta SM Puerta 10",
                "Clase": "Urbano",
                "Número fijo": "80964001",
                "Número en ayuntamiento": "",
                "Finca registral": "Registro 28120 Sección 00 Finca 059060",
                "Año de construcción": "2009",
                "Uso principal": "Oficinas",
                "Superficie construida": "52 m²",
                "En elemenos comunes": "13 m²",
                "Superficie asociada": "5.476 m²",
                "Coeficiente de propiedad": "0,604000 %"
            }
        ]
    }
}

Datos geográficos

/geo

Proporciona la geografía del Catastro en formato GeoJSON para una determinada búsqueda. Estos datos se obtienen a partir de los servicios INSPIRE y se actualizan cada vez que hay nuevos datos (cada tres o cuatro meses)

Por defecto se obtiene la geografía de la parcela, pero es posible obtener otras geografías si se añade el parámetro &featuretype=. Los valores que admite este parámetro son:

  • Parcel: parcela. Es el valor por defecto.
  • Building: edificio.
  • BuildingPart: construcciones.
  • OtherConstruction:otras construcciones (que en el la práctica son piscinas).

Importante: Para referencias catastrales de veinte caracteres, siempre se hace una búsqueda con los catorce primeros caracteres. Esto es debido a que en la actualidad, en los datos que proporciona el Catastro, no hay una correlación con los datos de inmuebles y geografía sino que, en su lugar, la correlación hace referencia a la parcela catastral.

En el siguiente ejemplo obtenemos la geografía /geo de las construcciones &featuretype=buildingpart de la parcela en la que está contenida el inmueble con referencia catastral /4242103VK2844S0133FF/.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/cadastralreference/4242103VK2844S0133FF/geo?&featuretype=buildingpart

Respuesta

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART1",
        "featuretype": "BuildingPart",
        "area": 200.18421936035156,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 1,
        "Height Below Ground": 0,
        "Number Of Floors Below Ground": 0
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89624553659005,
                    40.5043375909151
                  ],
                  [
                    -3.89620710766352,
                    40.504252395059
                  ],
                  [
                    -3.89618146910349,
                    40.5042591703501
                  ],
                  [
                    -3.89598388308587,
                    40.5043110619383
                  ],
                  [
                    -3.89602231176613,
                    40.5043962578703
                  ],
                  [
                    -3.89624553659005,
                    40.5043375909151
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART10",
        "featuretype": "BuildingPart",
        "area": 9.971911430358887,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89597927578526,
                    40.50403578748
                  ],
                  [
                    -3.89594924051442,
                    40.50396935493
                  ],
                  [
                    -3.89592912928386,
                    40.5039746458956
                  ],
                  [
                    -3.89593107376452,
                    40.5039788649753
                  ],
                  [
                    -3.89593777750876,
                    40.5039771013203
                  ],
                  [
                    -3.89596392260373,
                    40.5040350056362
                  ],
                  [
                    -3.89595721885447,
                    40.5040367692927
                  ],
                  [
                    -3.89595916453741,
                    40.5040410784509
                  ],
                  [
                    -3.89597927578526,
                    40.50403578748
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART100",
        "featuretype": "BuildingPart",
        "area": 1418.4654541015625,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 0,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.8961814691033854,
                    40.50425917035014
                  ],
                  [
                    -3.895843640516698,
                    40.503510272256875
                  ],
                  [
                    -3.895875983725472,
                    40.503501823470565
                  ],
                  [
                    -3.895830136748761,
                    40.50340010871376
                  ],
                  [
                    -3.8957505161051427,
                    40.503421085905906
                  ],
                  [
                    -3.8957525821610686,
                    40.503425574312
                  ],
                  [
                    -3.8957344700244616,
                    40.50343030921714
                  ],
                  [
                    -3.8957452915102775,
                    40.50345418885551
                  ],
                  [
                    -3.8957632844459953,
                    40.50344936478418
                  ],
                  [
                    -3.8957910100242614,
                    40.503510770342395
                  ],
                  [
                    -3.8957730158760575,
                    40.503515504338935
                  ],
                  [
                    -3.8957837181829973,
                    40.50353929480879
                  ],
                  [
                    -3.8958018303452198,
                    40.50353455989571
                  ],
                  [
                    -3.8958295547964235,
                    40.503595875364034
                  ],
                  [
                    -3.8958114426195984,
                    40.50360061028145
                  ],
                  [
                    -3.8958222641613736,
                    40.503624489911054
                  ],
                  [
                    -3.895840258334948,
                    40.503619755906655
                  ],
                  [
                    -3.8958679828573413,
                    40.50368107136423
                  ],
                  [
                    -3.895849870660804,
                    40.50368580628788
                  ],
                  [
                    -3.8958606922300185,
                    40.50370968591338
                  ],
                  [
                    -3.8958788032339164,
                    40.503704860908975
                  ],
                  [
                    -3.895906409818854,
                    40.50376617727046
                  ],
                  [
                    -3.8958884168096777,
                    40.50377100136445
                  ],
                  [
                    -3.8958991191996124,
                    40.50379479182157
                  ],
                  [
                    -3.8959172314217634,
                    40.503790056889976
                  ],
                  [
                    -3.8959449560870434,
                    40.50385137232556
                  ],
                  [
                    -3.8959268438505297,
                    40.50385610726144
                  ],
                  [
                    -3.89593766547518,
                    40.50387998687874
                  ],
                  [
                    -3.895955659708738,
                    40.50387525285586
                  ],
                  [
                    -3.8959833844452003,
                    40.50393656828079
                  ],
                  [
                    -3.8959652721884392,
                    40.50394130322283
                  ],
                  [
                    -3.895976093841311,
                    40.50396518283559
                  ],
                  [
                    -3.8959942049049383,
                    40.50396035781264
                  ],
                  [
                    -3.8960218117037706,
                    40.50402167414174
                  ],
                  [
                    -3.896003818634786,
                    40.50402649825388
                  ],
                  [
                    -3.8960145211078054,
                    40.50405028869846
                  ],
                  [
                    -3.8960326333898463,
                    40.50404555374846
                  ],
                  [
                    -3.896060358269241,
                    40.50410686915145
                  ],
                  [
                    -3.8960422459724096,
                    40.504111604106114
                  ],
                  [
                    -3.896053067680851,
                    40.50413548371031
                  ],
                  [
                    -3.896071061973632,
                    40.50413074966912
                  ],
                  [
                    -3.8960849238432957,
                    40.504161362326826
                  ],
                  [
                    -3.896066929543393,
                    40.50416609637014
                  ],
                  [
                    -3.8960411729916875,
                    40.50417287254502
                  ],
                  [
                    -3.8960277654698516,
                    40.504176399866836
                  ],
                  [
                    -3.8959798986521386,
                    40.50418902303758
                  ],
                  [
                    -3.895971873886496,
                    40.50417133784121
                  ],
                  [
                    -3.8959702918164343,
                    40.504167746571255
                  ],
                  [
                    -3.895953472805937,
                    40.50417211113069
                  ],
                  [
                    -3.895898784201555,
                    40.50418649883907
                  ],
                  [
                    -3.895966152449416,
                    40.50433561337136
                  ],
                  [
                    -3.895949922247049,
                    40.50433988327656
                  ],
                  [
                    -3.895888529723549,
                    40.50435603463742
                  ],
                  [
                    -3.895862655071157,
                    40.504362811688225
                  ],
                  [
                    -3.8958447787112376,
                    40.50436754478274
                  ],
                  [
                    -3.8958117020926406,
                    40.5042942890592
                  ],
                  [
                    -3.895829578435725,
                    40.50428955596995
                  ],
                  [
                    -3.8958187579789882,
                    40.504265766423885
                  ],
                  [
                    -3.89580088044291,
                    40.504270409432195
                  ],
                  [
                    -3.8957731557288153,
                    40.504209093966914
                  ],
                  [
                    -3.8957910332504153,
                    40.504204450962895
                  ],
                  [
                    -3.8957803296325837,
                    40.504180570418654
                  ],
                  [
                    -3.8957624533147244,
                    40.50418530349998
                  ],
                  [
                    -3.8957347286717496,
                    40.50412398802389
                  ],
                  [
                    -3.8957526049752156,
                    40.50411925494684
                  ],
                  [
                    -3.8957417833757497,
                    40.504095375312986
                  ],
                  [
                    -3.8957240250868934,
                    40.50410010747377
                  ],
                  [
                    -3.8956963005154823,
                    40.50403879198656
                  ],
                  [
                    -3.8957141767992796,
                    40.50403405891547
                  ],
                  [
                    -3.8957033564258112,
                    40.504010269356655
                  ],
                  [
                    -3.895685478948999,
                    40.5040149123468
                  ],
                  [
                    -3.895657754448886,
                    40.50395359684903
                  ],
                  [
                    -3.8956756319113293,
                    40.503948953863315
                  ],
                  [
                    -3.895664928376275,
                    40.503925073306284
                  ],
                  [
                    -3.8956470521175843,
                    40.503929806369364
                  ],
                  [
                    -3.895619327688966,
                    40.503868490860626
                  ],
                  [
                    -3.89563720393342,
                    40.50386375780183
                  ],
                  [
                    -3.8956263824173454,
                    40.5038398781555
                  ],
                  [
                    -3.8956085061781347,
                    40.50384461121262
                  ],
                  [
                    -3.8955808998293016,
                    40.50378329477821
                  ],
                  [
                    -3.8955986580454853,
                    40.503778562640086
                  ],
                  [
                    -3.8955879557641135,
                    40.50375477215401
                  ],
                  [
                    -3.8955700783465126,
                    40.503759415125764
                  ],
                  [
                    -3.895542354060647,
                    40.50369809959534
                  ],
                  [
                    -3.8955602314639184,
                    40.503693456627694
                  ],
                  [
                    -3.895549410003204,
                    40.503669576972705
                  ],
                  [
                    -3.895531651812297,
                    40.50367430910323
                  ],
                  [
                    -3.8955039275972676,
                    40.503612993561774
                  ],
                  [
                    -3.8955218037829322,
                    40.50360826052114
                  ],
                  [
                    -3.8955109835480948,
                    40.50358447094111
                  ],
                  [
                    -3.8954931061703,
                    40.50358911390072
                  ],
                  [
                    -3.8954793626995508,
                    40.50355850025072
                  ],
                  [
                    -3.89549712086416,
                    40.503553768128704
                  ],
                  [
                    -3.895522995245007,
                    40.503546991161556
                  ],
                  [
                    -3.895536402669946,
                    40.503543463899184
                  ],
                  [
                    -3.895584387125947,
                    40.5035308399998
                  ],
                  [
                    -3.89560002831482,
                    40.50352666479927
                  ],
                  [
                    -3.8955808150857085,
                    40.50348411179257
                  ],
                  [
                    -3.89552048172653,
                    40.50349998448404
                  ],
                  [
                    -3.8955102671260224,
                    40.503477361359536
                  ],
                  [
                    -3.895549312869167,
                    40.50346705895516
                  ],
                  [
                    -3.8955401914875503,
                    40.50344676966008
                  ],
                  [
                    -3.8954790356886058,
                    40.50346291896886
                  ],
                  [
                    -3.8954578769219075,
                    40.50341605677307
                  ],
                  [
                    -3.8953959992231053,
                    40.5034755441637
                  ],
                  [
                    -3.8958583463431147,
                    40.50450022991164
                  ],
                  [
                    -3.8959319971005324,
                    40.50447044324058
                  ],
                  [
                    -3.896036204911045,
                    40.504427000918014
                  ],
                  [
                    -3.896022311766048,
                    40.50439625787017
                  ],
                  [
                    -3.8959838830859645,
                    40.504311061938175
                  ],
                  [
                    -3.8961814691033854,
                    40.50425917035014
                  ]
                ],
                [
                  [
                    -3.89614681471396,
                    40.50422700727262
                  ],
                  [
                    -3.8960430839560467,
                    40.50425438773758
                  ],
                  [
                    -3.896055364961112,
                    40.504281499208275
                  ],
                  [
                    -3.895999499790443,
                    40.50429616635303
                  ],
                  [
                    -3.8959802860814845,
                    40.5042536134234
                  ],
                  [
                    -3.8960059246602974,
                    40.50424683817671
                  ],
                  [
                    -3.895999112341676,
                    40.50423157596798
                  ],
                  [
                    -3.896132952802294,
                    40.50419639462341
                  ],
                  [
                    -3.89614681471396,
                    40.50422700727262
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART101",
        "featuretype": "BuildingPart",
        "area": 393.4615173339844,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 5,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89602621429139,
                    40.5041396558231
                  ],
                  [
                    -3.89601770309748,
                    40.5041208933403
                  ],
                  [
                    -3.89599770983682,
                    40.5041261834031
                  ],
                  [
                    -3.89599576534758,
                    40.5041219643247
                  ],
                  [
                    -3.89600246910424,
                    40.5041202006659
                  ],
                  [
                    -3.89597632394185,
                    40.5040622963603
                  ],
                  [
                    -3.89596962019021,
                    40.5040640600175
                  ],
                  [
                    -3.89596767450591,
                    40.5040597508595
                  ],
                  [
                    -3.89598778695732,
                    40.5040545499662
                  ],
                  [
                    -3.89597927578526,
                    40.50403578748
                  ],
                  [
                    -3.89595916453741,
                    40.5040410784509
                  ],
                  [
                    -3.89595721885447,
                    40.5040367692927
                  ],
                  [
                    -3.89596392260373,
                    40.5040350056362
                  ],
                  [
                    -3.89593777750876,
                    40.5039771013203
                  ],
                  [
                    -3.89593107376452,
                    40.5039788649753
                  ],
                  [
                    -3.89592912928386,
                    40.5039746458956
                  ],
                  [
                    -3.89594924051442,
                    40.50396935493
                  ],
                  [
                    -3.8959408473733,
                    40.5039505915256
                  ],
                  [
                    -3.89592073614763,
                    40.5039558824896
                  ],
                  [
                    -3.8959187916683,
                    40.5039516634098
                  ],
                  [
                    -3.89592549541018,
                    40.5039498997556
                  ],
                  [
                    -3.89589935038249,
                    40.5038919954294
                  ],
                  [
                    -3.89589264664563,
                    40.5038937590821
                  ],
                  [
                    -3.89589070097135,
                    40.5038894499225
                  ],
                  [
                    -3.89591081217974,
                    40.5038841589638
                  ],
                  [
                    -3.89590230225001,
                    40.5038654865501
                  ],
                  [
                    -3.89588230785684,
                    40.5038706865133
                  ],
                  [
                    -3.89588036338247,
                    40.5038664674326
                  ],
                  [
                    -3.89588706711695,
                    40.5038647037807
                  ],
                  [
                    -3.89586092215658,
                    40.5038067994443
                  ],
                  [
                    -3.89585421842711,
                    40.5038085630947
                  ],
                  [
                    -3.89585227395636,
                    40.5038043440135
                  ],
                  [
                    -3.89587238514258,
                    40.5037990530616
                  ],
                  [
                    -3.89586387403613,
                    40.5037802905655
                  ],
                  [
                    -3.89584376285478,
                    40.5037855815158
                  ],
                  [
                    -3.89584181718688,
                    40.5037812723553
                  ],
                  [
                    -3.89584852091397,
                    40.5037795087057
                  ],
                  [
                    -3.89582237602101,
                    40.503721604359
                  ],
                  [
                    -3.89581567229894,
                    40.5037233680071
                  ],
                  [
                    -3.89581372783314,
                    40.5037191489251
                  ],
                  [
                    -3.89583383899719,
                    40.5037138579801
                  ],
                  [
                    -3.89582544592123,
                    40.5036950945658
                  ],
                  [
                    -3.89580533476208,
                    40.5037003855093
                  ],
                  [
                    -3.89580339029762,
                    40.5036961664272
                  ],
                  [
                    -3.89581009401733,
                    40.5036944027798
                  ],
                  [
                    -3.89578394919164,
                    40.5036364984229
                  ],
                  [
                    -3.89577724547696,
                    40.5036382620687
                  ],
                  [
                    -3.89577529981771,
                    40.5036339529068
                  ],
                  [
                    -3.89579541095958,
                    40.5036286619687
                  ],
                  [
                    -3.8957869010953,
                    40.503609989545
                  ],
                  [
                    -3.89576690796675,
                    40.5036152795668
                  ],
                  [
                    -3.89576496230885,
                    40.5036109704048
                  ],
                  [
                    -3.89577166602117,
                    40.5036092067597
                  ],
                  [
                    -3.89574540325445,
                    40.5035513033073
                  ],
                  [
                    -3.89573881755551,
                    40.5035530660361
                  ],
                  [
                    -3.89573687309962,
                    40.5035488469526
                  ],
                  [
                    -3.89575686621099,
                    40.5035435569361
                  ],
                  [
                    -3.89574847317848,
                    40.5035247935151
                  ],
                  [
                    -3.89572836206365,
                    40.5035300844449
                  ],
                  [
                    -3.89572641641078,
                    40.5035257752821
                  ],
                  [
                    -3.89573312131404,
                    40.5035241017185
                  ],
                  [
                    -3.89570697542475,
                    40.5034661072619
                  ],
                  [
                    -3.89570027172485,
                    40.5034678709031
                  ],
                  [
                    -3.89569832727392,
                    40.5034636518189
                  ],
                  [
                    -3.89571843837146,
                    40.5034583608945
                  ],
                  [
                    -3.8957099273525,
                    40.503439598385
                  ],
                  [
                    -3.89568993426801,
                    40.5034448883932
                  ],
                  [
                    -3.89568798981842,
                    40.5034406693087
                  ],
                  [
                    -3.89569469351596,
                    40.5034389056683
                  ],
                  [
                    -3.89568143999232,
                    40.5034096395703
                  ],
                  [
                    -3.89563345564127,
                    40.5034222635091
                  ],
                  [
                    -3.89564160302655,
                    40.5034403081353
                  ],
                  [
                    -3.89564795389908,
                    40.5034386373206
                  ],
                  [
                    -3.89565257360875,
                    40.5034487815065
                  ],
                  [
                    -3.89564622393361,
                    40.5034505424007
                  ],
                  [
                    -3.8956594774504,
                    40.5034798085025
                  ],
                  [
                    -3.89566582832617,
                    40.5034781376868
                  ],
                  [
                    -3.8956704492396,
                    40.503488371951
                  ],
                  [
                    -3.89566409836298,
                    40.503490042767
                  ],
                  [
                    -3.89568014756864,
                    40.5035254132101
                  ],
                  [
                    -3.89568649844817,
                    40.5035237423932
                  ],
                  [
                    -3.89569111936798,
                    40.5035339766565
                  ],
                  [
                    -3.89568476848761,
                    40.5035356474736
                  ],
                  [
                    -3.89569790403013,
                    40.503564914485
                  ],
                  [
                    -3.8957042549129,
                    40.5035632436671
                  ],
                  [
                    -3.89570887583822,
                    40.5035734779295
                  ],
                  [
                    -3.89570252495461,
                    40.5035751487477
                  ],
                  [
                    -3.89571857539979,
                    40.5036106092636
                  ],
                  [
                    -3.89572492628631,
                    40.5036089384445
                  ],
                  [
                    -3.89572954721802,
                    40.503619172706
                  ],
                  [
                    -3.89572319633065,
                    40.5036208435253
                  ],
                  [
                    -3.89573644991562,
                    40.5036501096167
                  ],
                  [
                    -3.89574280080539,
                    40.5036484387966
                  ],
                  [
                    -3.89574742174262,
                    40.5036586730573
                  ],
                  [
                    -3.89574107085201,
                    40.5036603438776
                  ],
                  [
                    -3.89575700332992,
                    40.503695805302
                  ],
                  [
                    -3.89576335422345,
                    40.5036941344807
                  ],
                  [
                    -3.89576797396866,
                    40.5037042786613
                  ],
                  [
                    -3.8957616230743,
                    40.5037059494828
                  ],
                  [
                    -3.89577487789172,
                    40.5037353056481
                  ],
                  [
                    -3.8957812287885,
                    40.5037336348259
                  ],
                  [
                    -3.89578584973763,
                    40.5037438690847
                  ],
                  [
                    -3.89577949884001,
                    40.5037455399072
                  ],
                  [
                    -3.89579554816936,
                    40.5037809103314
                  ],
                  [
                    -3.89580189906988,
                    40.503779239508
                  ],
                  [
                    -3.8958065200254,
                    40.5037894737658
                  ],
                  [
                    -3.89580016912403,
                    40.5037911445895
                  ],
                  [
                    -3.89581330476835,
                    40.5038204115854
                  ],
                  [
                    -3.89581965567213,
                    40.5038187407609
                  ],
                  [
                    -3.89582427663315,
                    40.5038289750179
                  ],
                  [
                    -3.89581792572853,
                    40.5038306458426
                  ],
                  [
                    -3.89583397629757,
                    40.5038661063396
                  ],
                  [
                    -3.8958403272051,
                    40.5038644355141
                  ],
                  [
                    -3.89584494817251,
                    40.5038746697701
                  ],
                  [
                    -3.89583859726414,
                    40.5038763405959
                  ],
                  [
                    -3.89585185095135,
                    40.5039056066718
                  ],
                  [
                    -3.89585820186213,
                    40.5039039358452
                  ],
                  [
                    -3.89586282283507,
                    40.5039141701004
                  ],
                  [
                    -3.89585647192345,
                    40.5039158409272
                  ],
                  [
                    -3.89587240452477,
                    40.5039513023328
                  ],
                  [
                    -3.89587875424076,
                    40.503949541426
                  ],
                  [
                    -3.89588337522006,
                    40.5039597756802
                  ],
                  [
                    -3.89587702430469,
                    40.5039614465082
                  ],
                  [
                    -3.89589027922453,
                    40.503990802658
                  ],
                  [
                    -3.89589663014231,
                    40.5039891318292
                  ],
                  [
                    -3.89590124992856,
                    40.5039992760035
                  ],
                  [
                    -3.89589490020852,
                    40.5040010369116
                  ],
                  [
                    -3.89591094966157,
                    40.5040364073169
                  ],
                  [
                    -3.8959173005831,
                    40.504034736487
                  ],
                  [
                    -3.89592192157431,
                    40.5040449707394
                  ],
                  [
                    -3.89591557065194,
                    40.5040466415696
                  ],
                  [
                    -3.89592870639807,
                    40.50407590855
                  ],
                  [
                    -3.89593517533211,
                    40.5040742368041
                  ],
                  [
                    -3.89593979632885,
                    40.5040844710557
                  ],
                  [
                    -3.89593332739395,
                    40.5040861428018
                  ],
                  [
                    -3.89594937808685,
                    40.5041216032799
                  ],
                  [
                    -3.89595572901539,
                    40.5041199324479
                  ],
                  [
                    -3.8959603500185,
                    40.5041301666984
                  ],
                  [
                    -3.89595399908912,
                    40.5041318375308
                  ],
                  [
                    -3.89596725287859,
                    40.504161103591
                  ],
                  [
                    -3.89597360381037,
                    40.504159432758
                  ],
                  [
                    -3.89597822481901,
                    40.5041696670077
                  ],
                  [
                    -3.89597187388639,
                    40.5041713378411
                  ],
                  [
                    -3.895979898652,
                    40.5041890230377
                  ],
                  [
                    -3.89602776546987,
                    40.5041763998667
                  ],
                  [
                    -3.89601475246483,
                    40.5041474923002
                  ],
                  [
                    -3.8960080487058,
                    40.5041492559597
                  ],
                  [
                    -3.89600610301649,
                    40.5041449468024
                  ],
                  [
                    -3.89602621429139,
                    40.5041396558231
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART11",
        "featuretype": "BuildingPart",
        "area": 11.688691139221191,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89606035826907,
                    40.5041068691515
                  ],
                  [
                    -3.8960326333898,
                    40.5040455537484
                  ],
                  [
                    -3.89601452110764,
                    40.5040502886985
                  ],
                  [
                    -3.89604224597253,
                    40.504111604106
                  ],
                  [
                    -3.89606035826907,
                    40.5041068691515
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART12",
        "featuretype": "BuildingPart",
        "area": 5.737875461578369,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89605306768096,
                    40.5041354837103
                  ],
                  [
                    -3.89604224597253,
                    40.504111604106
                  ],
                  [
                    -3.89603001495972,
                    40.50411485204
                  ],
                  [
                    -3.89603111060904,
                    40.5041173660198
                  ],
                  [
                    -3.89601770309748,
                    40.5041208933403
                  ],
                  [
                    -3.89602621429139,
                    40.5041396558231
                  ],
                  [
                    -3.8960396218062,
                    40.5041361285017
                  ],
                  [
                    -3.89604071865501,
                    40.5041387325605
                  ],
                  [
                    -3.89605306768096,
                    40.5041354837103
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART13",
        "featuretype": "BuildingPart",
        "area": 17.272464752197266,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89604224597253,
                    40.504111604106
                  ],
                  [
                    -3.89601452110764,
                    40.5040502886985
                  ],
                  [
                    -3.89600229010453,
                    40.5040535366295
                  ],
                  [
                    -3.89600107644815,
                    40.5040510235643
                  ],
                  [
                    -3.89598778695732,
                    40.5040545499662
                  ],
                  [
                    -3.89601770309748,
                    40.5041208933403
                  ],
                  [
                    -3.89603111060904,
                    40.5041173660198
                  ],
                  [
                    -3.89603001495972,
                    40.50411485204
                  ],
                  [
                    -3.89604224597253,
                    40.504111604106
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART14",
        "featuretype": "BuildingPart",
        "area": 4.991884708404541,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89604117299187,
                    40.504172872545
                  ],
                  [
                    -3.89602621429139,
                    40.5041396558231
                  ],
                  [
                    -3.89600610301649,
                    40.5041449468024
                  ],
                  [
                    -3.8960080487058,
                    40.5041492559597
                  ],
                  [
                    -3.89601475246483,
                    40.5041474923002
                  ],
                  [
                    -3.89602776546987,
                    40.5041763998667
                  ],
                  [
                    -3.89604117299187,
                    40.504172872545
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART15",
        "featuretype": "BuildingPart",
        "area": 11.674732208251953,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89602181170362,
                    40.5040216741416
                  ],
                  [
                    -3.89599420490484,
                    40.5039603578126
                  ],
                  [
                    -3.89597609384136,
                    40.5039651828357
                  ],
                  [
                    -3.89600381863496,
                    40.504026498254
                  ],
                  [
                    -3.89602181170362,
                    40.5040216741416
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART16",
        "featuretype": "BuildingPart",
        "area": 9.934287071228027,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89601770309748,
                    40.5041208933403
                  ],
                  [
                    -3.89598778695732,
                    40.5040545499662
                  ],
                  [
                    -3.89596767450591,
                    40.5040597508595
                  ],
                  [
                    -3.89596962019021,
                    40.5040640600175
                  ],
                  [
                    -3.89597632394185,
                    40.5040622963603
                  ],
                  [
                    -3.89600246910424,
                    40.5041202006659
                  ],
                  [
                    -3.89599576534758,
                    40.5041219643247
                  ],
                  [
                    -3.89599770983682,
                    40.5041261834031
                  ],
                  [
                    -3.89601770309748,
                    40.5041208933403
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART17",
        "featuretype": "BuildingPart",
        "area": 5.723766326904297,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89601452110764,
                    40.5040502886985
                  ],
                  [
                    -3.89600381863496,
                    40.504026498254
                  ],
                  [
                    -3.89599146842772,
                    40.5040296570197
                  ],
                  [
                    -3.89599268328205,
                    40.5040322601641
                  ],
                  [
                    -3.89597927578526,
                    40.50403578748
                  ],
                  [
                    -3.89598778695732,
                    40.5040545499662
                  ],
                  [
                    -3.89600107644815,
                    40.5040510235643
                  ],
                  [
                    -3.89600229010453,
                    40.5040535366295
                  ],
                  [
                    -3.89601452110764,
                    40.5040502886985
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART18",
        "featuretype": "BuildingPart",
        "area": 25.535703659057617,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89596615244944,
                    40.5043356133714
                  ],
                  [
                    -3.89589878420164,
                    40.5041864988392
                  ],
                  [
                    -3.89588255522914,
                    40.504190858814
                  ],
                  [
                    -3.89588413609641,
                    40.504194360006
                  ],
                  [
                    -3.89590018679037,
                    40.5042298204903
                  ],
                  [
                    -3.89590480779293,
                    40.504240054743
                  ],
                  [
                    -3.89591806158328,
                    40.5042693208083
                  ],
                  [
                    -3.89592256458175,
                    40.504279555975
                  ],
                  [
                    -3.89593861531698,
                    40.5043150164531
                  ],
                  [
                    -3.89594323633144,
                    40.5043252507039
                  ],
                  [
                    -3.89594992224704,
                    40.5043398832767
                  ],
                  [
                    -3.89596615244944,
                    40.5043356133714
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART19",
        "featuretype": "BuildingPart",
        "area": 36.29388427734375,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 1,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89595347280611,
                    40.5041721111307
                  ],
                  [
                    -3.89592501716602,
                    40.5041090896883
                  ],
                  [
                    -3.89587032860616,
                    40.504123477383
                  ],
                  [
                    -3.89589878420164,
                    40.5041864988392
                  ],
                  [
                    -3.89595347280611,
                    40.5041721111307
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART2",
        "featuretype": "BuildingPart",
        "area": 63.38410568237305,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 0,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89614681471384,
                    40.5042270072727
                  ],
                  [
                    -3.89613295280231,
                    40.5041963946234
                  ],
                  [
                    -3.89599911234165,
                    40.5042315759681
                  ],
                  [
                    -3.89600592466037,
                    40.5042468381766
                  ],
                  [
                    -3.89598028608139,
                    40.5042536134233
                  ],
                  [
                    -3.89599949979045,
                    40.5042961663529
                  ],
                  [
                    -3.89605536496097,
                    40.5042814992082
                  ],
                  [
                    -3.89604308395611,
                    40.5042543877376
                  ],
                  [
                    -3.89614681471384,
                    40.5042270072727
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART20",
        "featuretype": "BuildingPart",
        "area": 11.688691139221191,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89594495608695,
                    40.5038513723256
                  ],
                  [
                    -3.89591723142173,
                    40.5037900568899
                  ],
                  [
                    -3.89589911919953,
                    40.5037947918215
                  ],
                  [
                    -3.89592684385036,
                    40.5038561072616
                  ],
                  [
                    -3.89594495608695,
                    40.5038513723256
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART21",
        "featuretype": "BuildingPart",
        "area": 9.995027542114258,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.8959408473733,
                    40.5039505915256
                  ],
                  [
                    -3.89591081217974,
                    40.5038841589638
                  ],
                  [
                    -3.89589070097135,
                    40.5038894499225
                  ],
                  [
                    -3.89589264664563,
                    40.5038937590821
                  ],
                  [
                    -3.89589935038249,
                    40.5038919954294
                  ],
                  [
                    -3.89592549541018,
                    40.5039498997556
                  ],
                  [
                    -3.8959187916683,
                    40.5039516634098
                  ],
                  [
                    -3.89592073614763,
                    40.5039558824896
                  ],
                  [
                    -3.8959408473733,
                    40.5039505915256
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART22",
        "featuretype": "BuildingPart",
        "area": 5.7304205894470215,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89593766547534,
                    40.5038799868787
                  ],
                  [
                    -3.89592684385036,
                    40.5038561072616
                  ],
                  [
                    -3.89591461287795,
                    40.5038593551831
                  ],
                  [
                    -3.89591570971724,
                    40.5038619592434
                  ],
                  [
                    -3.89590230225001,
                    40.5038654865501
                  ],
                  [
                    -3.89591081217974,
                    40.5038841589638
                  ],
                  [
                    -3.8959242196502,
                    40.5038806316561
                  ],
                  [
                    -3.89592531649023,
                    40.5038832357162
                  ],
                  [
                    -3.89593766547534,
                    40.5038799868787
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART23",
        "featuretype": "BuildingPart",
        "area": 0.6844503879547119,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89594323633144,
                    40.5043252507039
                  ],
                  [
                    -3.89593861531698,
                    40.5043150164531
                  ],
                  [
                    -3.89593226436968,
                    40.5043166872843
                  ],
                  [
                    -3.8959368853833,
                    40.5043269215354
                  ],
                  [
                    -3.89594323633144,
                    40.5043252507039
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART24",
        "featuretype": "BuildingPart",
        "area": 9.971912384033203,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89586387403613,
                    40.5037802905655
                  ],
                  [
                    -3.89583383899719,
                    40.5037138579801
                  ],
                  [
                    -3.89581372783314,
                    40.5037191489251
                  ],
                  [
                    -3.89581567229894,
                    40.5037233680071
                  ],
                  [
                    -3.89582237602101,
                    40.503721604359
                  ],
                  [
                    -3.89584852091397,
                    40.5037795087057
                  ],
                  [
                    -3.89584181718688,
                    40.5037812723553
                  ],
                  [
                    -3.89584376285478,
                    40.5037855815158
                  ],
                  [
                    -3.89586387403613,
                    40.5037802905655
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART25",
        "featuretype": "BuildingPart",
        "area": 5.720114231109619,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89586069223016,
                    40.5037096859134
                  ],
                  [
                    -3.89584987066083,
                    40.5036858062879
                  ],
                  [
                    -3.89583763971535,
                    40.503689054201
                  ],
                  [
                    -3.89583873535029,
                    40.503691568183
                  ],
                  [
                    -3.89582544592123,
                    40.5036950945658
                  ],
                  [
                    -3.89583383899719,
                    40.5037138579801
                  ],
                  [
                    -3.89584724643811,
                    40.5037103306815
                  ],
                  [
                    -3.8958484600824,
                    40.5037128437486
                  ],
                  [
                    -3.89586069223016,
                    40.5037096859134
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART26",
        "featuretype": "BuildingPart",
        "area": 9.95324993133545,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89586583956605,
                    40.504256212413
                  ],
                  [
                    -3.89586401189215,
                    40.5042519023385
                  ],
                  [
                    -3.89585730811867,
                    40.5042536659893
                  ],
                  [
                    -3.89583104501712,
                    40.5041957625662
                  ],
                  [
                    -3.89583774878558,
                    40.504193998917
                  ],
                  [
                    -3.89583592231374,
                    40.504189778921
                  ],
                  [
                    -3.89581581100839,
                    40.5041950698675
                  ],
                  [
                    -3.89584584625298,
                    40.5042615024499
                  ],
                  [
                    -3.89586583956605,
                    40.504256212413
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART27",
        "featuretype": "BuildingPart",
        "area": 0.689253568649292,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89592256458175,
                    40.504279555975
                  ],
                  [
                    -3.89591806158328,
                    40.5042693208083
                  ],
                  [
                    -3.89591159263014,
                    40.5042709925534
                  ],
                  [
                    -3.89591621363737,
                    40.5042812268054
                  ],
                  [
                    -3.89592256458175,
                    40.504279555975
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART28",
        "featuretype": "BuildingPart",
        "area": 11.674732208251953,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89590640981901,
                    40.5037661772704
                  ],
                  [
                    -3.89587880323385,
                    40.5037048609089
                  ],
                  [
                    -3.89586069223016,
                    40.5037096859134
                  ],
                  [
                    -3.8958884168097,
                    40.5037710013644
                  ],
                  [
                    -3.89590640981901,
                    40.5037661772704
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART29",
        "featuretype": "BuildingPart",
        "area": 9.9227294921875,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89590230225001,
                    40.5038654865501
                  ],
                  [
                    -3.89587238514258,
                    40.5037990530616
                  ],
                  [
                    -3.89585227395636,
                    40.5038043440135
                  ],
                  [
                    -3.89585421842711,
                    40.5038085630947
                  ],
                  [
                    -3.89586092215658,
                    40.5038067994443
                  ],
                  [
                    -3.89588706711695,
                    40.5038647037807
                  ],
                  [
                    -3.89588036338247,
                    40.5038664674326
                  ],
                  [
                    -3.89588230785684,
                    40.5038706865133
                  ],
                  [
                    -3.89590230225001,
                    40.5038654865501
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART3",
        "featuretype": "BuildingPart",
        "area": 5.802517890930176,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89608492384321,
                    40.5041613623267
                  ],
                  [
                    -3.89607106197375,
                    40.5041307496692
                  ],
                  [
                    -3.89605306768096,
                    40.5041354837103
                  ],
                  [
                    -3.8960669295433,
                    40.5041660963701
                  ],
                  [
                    -3.89608492384321,
                    40.5041613623267
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART30",
        "featuretype": "BuildingPart",
        "area": 5.723766326904297,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89589911919953,
                    40.5037947918215
                  ],
                  [
                    -3.8958884168097,
                    40.5037710013644
                  ],
                  [
                    -3.89587606664347,
                    40.5037741601175
                  ],
                  [
                    -3.89587728148857,
                    40.5037767632633
                  ],
                  [
                    -3.89586387403613,
                    40.5037802905655
                  ],
                  [
                    -3.89587238514258,
                    40.5037990530616
                  ],
                  [
                    -3.8958856745895,
                    40.5037955266734
                  ],
                  [
                    -3.89588688823682,
                    40.5037980397399
                  ],
                  [
                    -3.89589911919953,
                    40.5037947918215
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART31",
        "featuretype": "BuildingPart",
        "area": 0.6844503879547119,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89590480779293,
                    40.504240054743
                  ],
                  [
                    -3.89590018679037,
                    40.5042298204903
                  ],
                  [
                    -3.89589383585008,
                    40.5042314913194
                  ],
                  [
                    -3.8958984568518,
                    40.5042417255723
                  ],
                  [
                    -3.89590480779293,
                    40.504240054743
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART32",
        "featuretype": "BuildingPart",
        "area": 9.962555885314941,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.8959043848762,
                    40.504341317393
                  ],
                  [
                    -3.89590244038632,
                    40.5043370983133
                  ],
                  [
                    -3.89589573660544,
                    40.5043388619664
                  ],
                  [
                    -3.89586959144605,
                    40.5042809576387
                  ],
                  [
                    -3.8958762952219,
                    40.5042791939872
                  ],
                  [
                    -3.89587435073564,
                    40.5042749749068
                  ],
                  [
                    -3.89585423820956,
                    40.504280175781
                  ],
                  [
                    -3.89588427353139,
                    40.5043466083517
                  ],
                  [
                    -3.8959043848762,
                    40.504341317393
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART33",
        "featuretype": "BuildingPart",
        "area": 41.72245407104492,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 0,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89589425228481,
                    40.5040410411901
                  ],
                  [
                    -3.89586154059357,
                    40.5039685934431
                  ],
                  [
                    -3.89580685213317,
                    40.503982981107
                  ],
                  [
                    -3.89583956377312,
                    40.5040554288699
                  ],
                  [
                    -3.89589425228481,
                    40.5040410411901
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART34",
        "featuretype": "BuildingPart",
        "area": 17.30868911743164,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.8958884168097,
                    40.5037710013644
                  ],
                  [
                    -3.89586069223016,
                    40.5037096859134
                  ],
                  [
                    -3.8958484600824,
                    40.5037128437486
                  ],
                  [
                    -3.89584724643811,
                    40.5037103306815
                  ],
                  [
                    -3.89583383899719,
                    40.5037138579801
                  ],
                  [
                    -3.89586387403613,
                    40.5037802905655
                  ],
                  [
                    -3.89587728148857,
                    40.5037767632633
                  ],
                  [
                    -3.89587606664347,
                    40.5037741601175
                  ],
                  [
                    -3.8958884168097,
                    40.5037710013644
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART35",
        "featuretype": "BuildingPart",
        "area": 2.900458574295044,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89588852972338,
                    40.5043560346373
                  ],
                  [
                    -3.89588427353139,
                    40.5043466083517
                  ],
                  [
                    -3.8958708659664,
                    40.5043501356555
                  ],
                  [
                    -3.89586977031909,
                    40.5043476216742
                  ],
                  [
                    -3.89585718522572,
                    40.5043508723349
                  ],
                  [
                    -3.89586265507119,
                    40.5043628116881
                  ],
                  [
                    -3.89588852972338,
                    40.5043560346373
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART36",
        "featuretype": "BuildingPart",
        "area": 17.432571411132812,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89588427353139,
                    40.5043466083517
                  ],
                  [
                    -3.89585423820956,
                    40.504280175781
                  ],
                  [
                    -3.8958408306561,
                    40.5042837030813
                  ],
                  [
                    -3.8958420455094,
                    40.5042863062272
                  ],
                  [
                    -3.89582957843568,
                    40.50428955597
                  ],
                  [
                    -3.89585718522572,
                    40.5043508723349
                  ],
                  [
                    -3.89586977031909,
                    40.5043476216742
                  ],
                  [
                    -3.8958708659664,
                    40.5043501356555
                  ],
                  [
                    -3.89588427353139,
                    40.5043466083517
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART37",
        "featuretype": "BuildingPart",
        "area": 11.651968002319336,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89586798285746,
                    40.5036810713643
                  ],
                  [
                    -3.89584025833497,
                    40.5036197559068
                  ],
                  [
                    -3.89582226416121,
                    40.5036244899112
                  ],
                  [
                    -3.89584987066083,
                    40.5036858062879
                  ],
                  [
                    -3.89586798285746,
                    40.5036810713643
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART38",
        "featuretype": "BuildingPart",
        "area": 17.295730590820312,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89592684385036,
                    40.5038561072616
                  ],
                  [
                    -3.89589911919953,
                    40.5037947918215
                  ],
                  [
                    -3.89588688823682,
                    40.5037980397399
                  ],
                  [
                    -3.8958856745895,
                    40.5037955266734
                  ],
                  [
                    -3.89587238514258,
                    40.5037990530616
                  ],
                  [
                    -3.89590230225001,
                    40.5038654865501
                  ],
                  [
                    -3.89591570971724,
                    40.5038619592434
                  ],
                  [
                    -3.89591461287795,
                    40.5038593551831
                  ],
                  [
                    -3.89592684385036,
                    40.5038561072616
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART39",
        "featuretype": "BuildingPart",
        "area": 41.21062088012695,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 1,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89586154059357,
                    40.5039685934431
                  ],
                  [
                    -3.89582919498568,
                    40.5038970437319
                  ],
                  [
                    -3.89577450657592,
                    40.5039114313802
                  ],
                  [
                    -3.89580685213317,
                    40.503982981107
                  ],
                  [
                    -3.89586154059357,
                    40.5039685934431
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART4",
        "featuretype": "BuildingPart",
        "area": 8.658747673034668,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.8960669295433,
                    40.5041660963701
                  ],
                  [
                    -3.89605306768096,
                    40.5041354837103
                  ],
                  [
                    -3.89604071865501,
                    40.5041387325605
                  ],
                  [
                    -3.8960396218062,
                    40.5041361285017
                  ],
                  [
                    -3.89602621429139,
                    40.5041396558231
                  ],
                  [
                    -3.89604117299187,
                    40.504172872545
                  ],
                  [
                    -3.8960669295433,
                    40.5041660963701
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART40",
        "featuretype": "BuildingPart",
        "area": 13.772262573242188,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89586265507119,
                    40.5043628116881
                  ],
                  [
                    -3.89585718522572,
                    40.5043508723349
                  ],
                  [
                    -3.89582957843568,
                    40.50428955597
                  ],
                  [
                    -3.89581170209263,
                    40.5042942890592
                  ],
                  [
                    -3.8958447787112,
                    40.5043675447826
                  ],
                  [
                    -3.89586265507119,
                    40.5043628116881
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART41",
        "featuretype": "BuildingPart",
        "area": 17.268814086914062,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89584987066083,
                    40.5036858062879
                  ],
                  [
                    -3.89582226416121,
                    40.5036244899112
                  ],
                  [
                    -3.89580991521694,
                    40.5036277387361
                  ],
                  [
                    -3.8958088183857,
                    40.5036251346747
                  ],
                  [
                    -3.89579541095958,
                    40.5036286619687
                  ],
                  [
                    -3.89582544592123,
                    40.5036950945658
                  ],
                  [
                    -3.89583873535029,
                    40.503691568183
                  ],
                  [
                    -3.89583763971535,
                    40.503689054201
                  ],
                  [
                    -3.89584987066083,
                    40.5036858062879
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART42",
        "featuretype": "BuildingPart",
        "area": 5.767445087432861,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89585423820956,
                    40.504280175781
                  ],
                  [
                    -3.89584584625298,
                    40.5042615024499
                  ],
                  [
                    -3.89583243870276,
                    40.5042650297492
                  ],
                  [
                    -3.89583122385023,
                    40.5042624266032
                  ],
                  [
                    -3.89581875797885,
                    40.5042657664239
                  ],
                  [
                    -3.89582957843568,
                    40.50428955597
                  ],
                  [
                    -3.8958420455094,
                    40.5042863062272
                  ],
                  [
                    -3.8958408306561,
                    40.5042837030813
                  ],
                  [
                    -3.89585423820956,
                    40.504280175781
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART43",
        "featuretype": "BuildingPart",
        "area": 17.470396041870117,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89584584625298,
                    40.5042615024499
                  ],
                  [
                    -3.89581581100839,
                    40.5041950698675
                  ],
                  [
                    -3.8958024034697,
                    40.5041985971632
                  ],
                  [
                    -3.89580349911197,
                    40.5042011111452
                  ],
                  [
                    -3.89579103325046,
                    40.5042044509629
                  ],
                  [
                    -3.89581875797885,
                    40.5042657664239
                  ],
                  [
                    -3.89583122385023,
                    40.5042624266032
                  ],
                  [
                    -3.89583243870276,
                    40.5042650297492
                  ],
                  [
                    -3.89584584625298,
                    40.5042615024499
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART44",
        "featuretype": "BuildingPart",
        "area": 11.688692092895508,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89582955479632,
                    40.5035958753639
                  ],
                  [
                    -3.89580183034516,
                    40.5035345598956
                  ],
                  [
                    -3.89578371818292,
                    40.5035392948087
                  ],
                  [
                    -3.89581144261969,
                    40.5036006102814
                  ],
                  [
                    -3.89582955479632,
                    40.5035958753639
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART45",
        "featuretype": "BuildingPart",
        "area": 9.995027542114258,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89582544592123,
                    40.5036950945658
                  ],
                  [
                    -3.89579541095958,
                    40.5036286619687
                  ],
                  [
                    -3.89577529981771,
                    40.5036339529068
                  ],
                  [
                    -3.89577724547696,
                    40.5036382620687
                  ],
                  [
                    -3.89578394919164,
                    40.5036364984229
                  ],
                  [
                    -3.89581009401733,
                    40.5036944027798
                  ],
                  [
                    -3.89580339029762,
                    40.5036961664272
                  ],
                  [
                    -3.89580533476208,
                    40.5037003855093
                  ],
                  [
                    -3.89582544592123,
                    40.5036950945658
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART46",
        "featuretype": "BuildingPart",
        "area": 5.73042106628418,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89582226416121,
                    40.5036244899112
                  ],
                  [
                    -3.89581144261969,
                    40.5036006102814
                  ],
                  [
                    -3.89579921168768,
                    40.5036038581904
                  ],
                  [
                    -3.89580030851818,
                    40.503606462252
                  ],
                  [
                    -3.8957869010953,
                    40.503609989545
                  ],
                  [
                    -3.89579541095958,
                    40.5036286619687
                  ],
                  [
                    -3.8958088183857,
                    40.5036251346747
                  ],
                  [
                    -3.89580991521694,
                    40.5036277387361
                  ],
                  [
                    -3.89582226416121,
                    40.5036244899112
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART47",
        "featuretype": "BuildingPart",
        "area": 9.971912384033203,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89582741116602,
                    40.5041710164238
                  ],
                  [
                    -3.89582546668605,
                    40.5041667973426
                  ],
                  [
                    -3.89581876291995,
                    40.5041685609911
                  ],
                  [
                    -3.89579261789525,
                    40.5041106566429
                  ],
                  [
                    -3.89579932165633,
                    40.5041088929959
                  ],
                  [
                    -3.89579737598153,
                    40.504104583835
                  ],
                  [
                    -3.89577726469835,
                    40.5041098747745
                  ],
                  [
                    -3.89580729986554,
                    40.5041763073688
                  ],
                  [
                    -3.89582741116602,
                    40.5041710164238
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART48",
        "featuretype": "BuildingPart",
        "area": 17.334657669067383,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89581144261969,
                    40.5036006102814
                  ],
                  [
                    -3.89578371818292,
                    40.5035392948087
                  ],
                  [
                    -3.8957714872606,
                    40.5035425427146
                  ],
                  [
                    -3.89577027362235,
                    40.5035400296466
                  ],
                  [
                    -3.89575686621099,
                    40.5035435569361
                  ],
                  [
                    -3.8957869010953,
                    40.503609989545
                  ],
                  [
                    -3.89580030851818,
                    40.503606462252
                  ],
                  [
                    -3.89579921168768,
                    40.5036038581904
                  ],
                  [
                    -3.89581144261969,
                    40.5036006102814
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART49",
        "featuretype": "BuildingPart",
        "area": 11.529187202453613,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89581875797885,
                    40.5042657664239
                  ],
                  [
                    -3.89579103325046,
                    40.5042044509629
                  ],
                  [
                    -3.89577315572866,
                    40.5042090939669
                  ],
                  [
                    -3.89580088044284,
                    40.5042704094323
                  ],
                  [
                    -3.89581875797885,
                    40.5042657664239
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART5",
        "featuretype": "BuildingPart",
        "area": 5.716811656951904,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89597609384136,
                    40.5039651828357
                  ],
                  [
                    -3.89596527218858,
                    40.5039413032229
                  ],
                  [
                    -3.89595304120269,
                    40.5039445511485
                  ],
                  [
                    -3.89595425485529,
                    40.5039470642143
                  ],
                  [
                    -3.8959408473733,
                    40.5039505915256
                  ],
                  [
                    -3.89594924051442,
                    40.50396935493
                  ],
                  [
                    -3.89596264799968,
                    40.5039658276177
                  ],
                  [
                    -3.89596386165303,
                    40.5039683406834
                  ],
                  [
                    -3.89597609384136,
                    40.5039651828357
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART50",
        "featuretype": "BuildingPart",
        "area": 5.7791032791137695,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89581581100839,
                    40.5041950698675
                  ],
                  [
                    -3.89580729986554,
                    40.5041763073688
                  ],
                  [
                    -3.8957938923301,
                    40.5041798346634
                  ],
                  [
                    -3.89579279668855,
                    40.5041773206813
                  ],
                  [
                    -3.89578032963244,
                    40.5041805704186
                  ],
                  [
                    -3.89579103325046,
                    40.5042044509629
                  ],
                  [
                    -3.89580349911197,
                    40.5042011111452
                  ],
                  [
                    -3.8958024034697,
                    40.5041985971632
                  ],
                  [
                    -3.89581581100839,
                    40.5041950698675
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART51",
        "featuretype": "BuildingPart",
        "area": 17.396799087524414,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89580729986554,
                    40.5041763073688
                  ],
                  [
                    -3.89577726469835,
                    40.5041098747745
                  ],
                  [
                    -3.89576397518377,
                    40.5041134011509
                  ],
                  [
                    -3.89576507202158,
                    40.5041160052125
                  ],
                  [
                    -3.89575260497538,
                    40.5041192549468
                  ],
                  [
                    -3.89578032963244,
                    40.5041805704186
                  ],
                  [
                    -3.89579279668855,
                    40.5041773206813
                  ],
                  [
                    -3.8957938923301,
                    40.5041798346634
                  ],
                  [
                    -3.89580729986554,
                    40.5041763073688
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART52",
        "featuretype": "BuildingPart",
        "area": 97.24849700927734,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 0,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89579842910323,
                    40.5038289051245
                  ],
                  [
                    -3.89572157427785,
                    40.503658603146
                  ],
                  [
                    -3.89566735687291,
                    40.5036728970043
                  ],
                  [
                    -3.89574421157879,
                    40.5038431990198
                  ],
                  [
                    -3.89579842910323,
                    40.5038289051245
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART53",
        "featuretype": "BuildingPart",
        "area": 11.639410018920898,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89579101002431,
                    40.5035107703425
                  ],
                  [
                    -3.89576328444618,
                    40.5034493647842
                  ],
                  [
                    -3.89574529151045,
                    40.5034541888554
                  ],
                  [
                    -3.89577301587593,
                    40.503515504339
                  ],
                  [
                    -3.89579101002431,
                    40.5035107703425
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART54",
        "featuretype": "BuildingPart",
        "area": 9.929183959960938,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.8957869010953,
                    40.503609989545
                  ],
                  [
                    -3.89575686621099,
                    40.5035435569361
                  ],
                  [
                    -3.89573687309962,
                    40.5035488469526
                  ],
                  [
                    -3.89573881755551,
                    40.5035530660361
                  ],
                  [
                    -3.89574540325445,
                    40.5035513033073
                  ],
                  [
                    -3.89577166602117,
                    40.5036092067597
                  ],
                  [
                    -3.89576496230885,
                    40.5036109704048
                  ],
                  [
                    -3.89576690796675,
                    40.5036152795668
                  ],
                  [
                    -3.8957869010953,
                    40.503609989545
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART55",
        "featuretype": "BuildingPart",
        "area": 5.727569103240967,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89578371818292,
                    40.5035392948087
                  ],
                  [
                    -3.89577301587593,
                    40.503515504339
                  ],
                  [
                    -3.89576066694908,
                    40.5035187531586
                  ],
                  [
                    -3.89576188058658,
                    40.5035212662267
                  ],
                  [
                    -3.89574847317848,
                    40.5035247935151
                  ],
                  [
                    -3.89575686621099,
                    40.5035435569361
                  ],
                  [
                    -3.89577027362235,
                    40.5035400296466
                  ],
                  [
                    -3.8957714872606,
                    40.5035425427146
                  ],
                  [
                    -3.89578371818292,
                    40.5035392948087
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART56",
        "featuretype": "BuildingPart",
        "area": 9.974113464355469,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89578898406342,
                    40.5040859104988
                  ],
                  [
                    -3.89578703838997,
                    40.5040816013376
                  ],
                  [
                    -3.89578033463126,
                    40.5040833649839
                  ],
                  [
                    -3.89575418967388,
                    40.5040254606255
                  ],
                  [
                    -3.89576089342756,
                    40.5040236969807
                  ],
                  [
                    -3.89575894895617,
                    40.5040194778981
                  ],
                  [
                    -3.89573883769514,
                    40.5040247688308
                  ],
                  [
                    -3.89576887158669,
                    40.5040911113577
                  ],
                  [
                    -3.89578898406342,
                    40.5040859104988
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART57",
        "featuretype": "BuildingPart",
        "area": 17.308040618896484,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89577301587593,
                    40.503515504339
                  ],
                  [
                    -3.89574529151045,
                    40.5034541888554
                  ],
                  [
                    -3.8957329425934,
                    40.5034574376719
                  ],
                  [
                    -3.89573184576803,
                    40.5034548336096
                  ],
                  [
                    -3.89571843837146,
                    40.5034583608945
                  ],
                  [
                    -3.89574847317848,
                    40.5035247935151
                  ],
                  [
                    -3.89576188058658,
                    40.5035212662267
                  ],
                  [
                    -3.89576066694908,
                    40.5035187531586
                  ],
                  [
                    -3.89577301587593,
                    40.503515504339
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART58",
        "featuretype": "BuildingPart",
        "area": 11.552001953125,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89578032963244,
                    40.5041805704186
                  ],
                  [
                    -3.89575260497538,
                    40.5041192549468
                  ],
                  [
                    -3.8957347286717,
                    40.5041239880239
                  ],
                  [
                    -3.89576245331458,
                    40.5041853035001
                  ],
                  [
                    -3.89578032963244,
                    40.5041805704186
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART59",
        "featuretype": "BuildingPart",
        "area": 5.78665828704834,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89577726469835,
                    40.5041098747745
                  ],
                  [
                    -3.89576887158669,
                    40.5040911113577
                  ],
                  [
                    -3.89575546406604,
                    40.5040946386478
                  ],
                  [
                    -3.89575436842736,
                    40.5040921246652
                  ],
                  [
                    -3.89574178337571,
                    40.5040953753131
                  ],
                  [
                    -3.89575260497538,
                    40.5041192549468
                  ],
                  [
                    -3.89576507202158,
                    40.5041160052125
                  ],
                  [
                    -3.89576397518377,
                    40.5041134011509
                  ],
                  [
                    -3.89577726469835,
                    40.5041098747745
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART6",
        "featuretype": "BuildingPart",
        "area": 382.9485168457031,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.8959782248189336,
                    40.50416966700772
                  ],
                  [
                    -3.8959736038103445,
                    40.504159432757966
                  ],
                  [
                    -3.8959672528786533,
                    40.50416110359091
                  ],
                  [
                    -3.8959539990891585,
                    40.50413183753081
                  ],
                  [
                    -3.895960350018637,
                    40.5041301666984
                  ],
                  [
                    -3.8959557290155136,
                    40.50411993244802
                  ],
                  [
                    -3.8959493780868724,
                    40.50412160328
                  ],
                  [
                    -3.895933327393928,
                    40.504086142801924
                  ],
                  [
                    -3.895939796328801,
                    40.50408447105578
                  ],
                  [
                    -3.89593517533203,
                    40.50407423680412
                  ],
                  [
                    -3.895928706398043,
                    40.50407590854986
                  ],
                  [
                    -3.8959155706518223,
                    40.50404664156967
                  ],
                  [
                    -3.895921921574157,
                    40.50404497073954
                  ],
                  [
                    -3.895917300583216,
                    40.50403473648697
                  ],
                  [
                    -3.895910949661732,
                    40.50403640731697
                  ],
                  [
                    -3.895894900208462,
                    40.50400103691161
                  ],
                  [
                    -3.8959012499284724,
                    40.50399927600354
                  ],
                  [
                    -3.8958966301421913,
                    40.50398913182919
                  ],
                  [
                    -3.895890279224395,
                    40.503990802657896
                  ],
                  [
                    -3.895877024304849,
                    40.50396144650822
                  ],
                  [
                    -3.8958833752200333,
                    40.50395977568008
                  ],
                  [
                    -3.8958787542405977,
                    40.50394954142593
                  ],
                  [
                    -3.895872404524799,
                    40.503951302332936
                  ],
                  [
                    -3.895856471923553,
                    40.50391584092723
                  ],
                  [
                    -3.895862822835042,
                    40.503914170100366
                  ],
                  [
                    -3.895858201861959,
                    40.503903935845194
                  ],
                  [
                    -3.8958518509513214,
                    40.50390560667193
                  ],
                  [
                    -3.8958385972640386,
                    40.50387634059585
                  ],
                  [
                    -3.895844948172498,
                    40.50387466977
                  ],
                  [
                    -3.8958403272050264,
                    40.5038644355142
                  ],
                  [
                    -3.8958339762976197,
                    40.50386610633951
                  ],
                  [
                    -3.8958179257286303,
                    40.50383064584256
                  ],
                  [
                    -3.8958242766330953,
                    40.50382897501791
                  ],
                  [
                    -3.8958196556719638,
                    40.50381874076081
                  ],
                  [
                    -3.8958133047682058,
                    40.5038204115855
                  ],
                  [
                    -3.89580016912393,
                    40.50379114458947
                  ],
                  [
                    -3.895806520025517,
                    40.50378947376572
                  ],
                  [
                    -3.895801899069746,
                    40.50377923950809
                  ],
                  [
                    -3.8957955481693918,
                    40.503780910331436
                  ],
                  [
                    -3.8957794988399717,
                    40.50374553990716
                  ],
                  [
                    -3.895785849737655,
                    40.503743869084666
                  ],
                  [
                    -3.8957812287884184,
                    40.50373363482581
                  ],
                  [
                    -3.8957748778916064,
                    40.50373530564822
                  ],
                  [
                    -3.8957616230742413,
                    40.503705949482864
                  ],
                  [
                    -3.895767973968769,
                    40.50370427866135
                  ],
                  [
                    -3.895763354223532,
                    40.503694134480796
                  ],
                  [
                    -3.8957570033298654,
                    40.50369580530193
                  ],
                  [
                    -3.8957410708521083,
                    40.503660343877534
                  ],
                  [
                    -3.8957474217427346,
                    40.50365867305729
                  ],
                  [
                    -3.895742800805488,
                    40.50364843879666
                  ],
                  [
                    -3.895736449915735,
                    40.50365010961683
                  ],
                  [
                    -3.8957231963306063,
                    40.50362084352537
                  ],
                  [
                    -3.895729547218068,
                    40.50361917270609
                  ],
                  [
                    -3.8957249262862352,
                    40.50360893844438
                  ],
                  [
                    -3.895718575399646,
                    40.50361060926358
                  ],
                  [
                    -3.895702524954708,
                    40.50357514874759
                  ],
                  [
                    -3.8957088758382734,
                    40.503573477929564
                  ],
                  [
                    -3.8957042549130056,
                    40.50356324366717
                  ],
                  [
                    -3.895697904030313,
                    40.50356491448511
                  ],
                  [
                    -3.895684768487491,
                    40.503535647473655
                  ],
                  [
                    -3.8956911193678936,
                    40.50353397665659
                  ],
                  [
                    -3.895686498448051,
                    40.50352374239311
                  ],
                  [
                    -3.8956801475685205,
                    40.503525413210085
                  ],
                  [
                    -3.895664098362804,
                    40.503490042767154
                  ],
                  [
                    -3.895670449239666,
                    40.50348837195106
                  ],
                  [
                    -3.8956658283259964,
                    40.50347813768666
                  ],
                  [
                    -3.895659477450369,
                    40.50347980850236
                  ],
                  [
                    -3.895646223933674,
                    40.50345054240059
                  ],
                  [
                    -3.895652573608766,
                    40.5034487815064
                  ],
                  [
                    -3.8956479538991524,
                    40.503438637320585
                  ],
                  [
                    -3.895641603026687,
                    40.50344030813531
                  ],
                  [
                    -3.895633455641217,
                    40.503422263509016
                  ],
                  [
                    -3.8956167559998924,
                    40.50342671718281
                  ],
                  [
                    -3.8956908086170148,
                    40.503590464504676
                  ],
                  [
                    -3.8956364732515505,
                    40.50360475926297
                  ],
                  [
                    -3.8956104502135975,
                    40.5035471241866
                  ],
                  [
                    -3.8955937493416077,
                    40.503551487778516
                  ],
                  [
                    -3.895592411710566,
                    40.50354852522739
                  ],
                  [
                    -3.8955860608263873,
                    40.503550196039086
                  ],
                  [
                    -3.895590681733065,
                    40.50356043030656
                  ],
                  [
                    -3.8955970326180984,
                    40.503558759494474
                  ],
                  [
                    -3.895610286135884,
                    40.50358802560128
                  ],
                  [
                    -3.895603935248182,
                    40.503589696414274
                  ],
                  [
                    -3.8956085561602714,
                    40.503599930680636
                  ],
                  [
                    -3.8956149070484694,
                    40.50359825986759
                  ],
                  [
                    -3.8956308394451997,
                    40.50363372131063
                  ],
                  [
                    -3.895624488553962,
                    40.503635392124565
                  ],
                  [
                    -3.8956291082739534,
                    40.50364553631117
                  ],
                  [
                    -3.895635459166053,
                    40.50364386549686
                  ],
                  [
                    -3.89564871391617,
                    40.50367322167755
                  ],
                  [
                    -3.895642363021408,
                    40.50367489249277
                  ],
                  [
                    -3.89564698394549,
                    40.503685126757375
                  ],
                  [
                    -3.8956533348407465,
                    40.50368345594209
                  ],
                  [
                    -3.895669384088762,
                    40.503718826385175
                  ],
                  [
                    -3.89566303319046,
                    40.50372049720136
                  ],
                  [
                    -3.8956675361122537,
                    40.50373073237983
                  ],
                  [
                    -3.8956740050198917,
                    40.50372906064878
                  ],
                  [
                    -3.8956871405972886,
                    40.50375832765982
                  ],
                  [
                    -3.895680789695445,
                    40.50375999847696
                  ],
                  [
                    -3.8956854106315224,
                    40.50377023273985
                  ],
                  [
                    -3.89569176153386,
                    40.50376856192262
                  ],
                  [
                    -3.8957078120213726,
                    40.503804022438295
                  ],
                  [
                    -3.8957014611160483,
                    40.50380569325651
                  ],
                  [
                    -3.895706082058361,
                    40.503815927518566
                  ],
                  [
                    -3.8957124329643253,
                    40.50381425670012
                  ],
                  [
                    -3.8957256865841186,
                    40.503843522791286
                  ],
                  [
                    -3.8957193356758593,
                    40.503845193610566
                  ],
                  [
                    -3.8957239566235433,
                    40.50385542787189
                  ],
                  [
                    -3.8957303075328027,
                    40.503853757052084
                  ],
                  [
                    -3.895746240052931,
                    40.50388921847637
                  ],
                  [
                    -3.895739889140594,
                    40.503890889296805
                  ],
                  [
                    -3.8957445088962963,
                    40.50390103347785
                  ],
                  [
                    -3.895750859809462,
                    40.50389936265728
                  ],
                  [
                    -3.895764114661781,
                    40.503928718822436
                  ],
                  [
                    -3.895757763746033,
                    40.50393038964413
                  ],
                  [
                    -3.8957623847056544,
                    40.503940623903326
                  ],
                  [
                    -3.895768735622255,
                    40.50393895308149
                  ],
                  [
                    -3.8957847849939333,
                    40.50397432350555
                  ],
                  [
                    -3.8957784340744825,
                    40.50397599432826
                  ],
                  [
                    -3.8957830550405212,
                    40.50398622858671
                  ],
                  [
                    -3.895789405960808,
                    40.50398455776358
                  ],
                  [
                    -3.8958025416398074,
                    40.50401382475942
                  ],
                  [
                    -3.8957961907173018,
                    40.50401549558309
                  ],
                  [
                    -3.895800811688742,
                    40.50402572984063
                  ],
                  [
                    -3.8958071626120994,
                    40.504024059016814
                  ],
                  [
                    -3.895823213223395,
                    40.504059519513596
                  ],
                  [
                    -3.895816862297163,
                    40.50406119033828
                  ],
                  [
                    -3.895821483275021,
                    40.504071424594834
                  ],
                  [
                    -3.8958278342020884,
                    40.50406975376974
                  ],
                  [
                    -3.8958410879244316,
                    40.50409901984562
                  ],
                  [
                    -3.8958347369947726,
                    40.50410069067127
                  ],
                  [
                    -3.895839357978098,
                    40.50411092492721
                  ],
                  [
                    -3.8958457089085914,
                    40.504109254101145
                  ],
                  [
                    -3.895861640353288,
                    40.50414462542735
                  ],
                  [
                    -3.8958552894199365,
                    40.504146296254284
                  ],
                  [
                    -3.8958599104099743,
                    40.50415653050891
                  ],
                  [
                    -3.895866261344178,
                    40.50415485968183
                  ],
                  [
                    -3.8958795162988102,
                    40.50418421583144
                  ],
                  [
                    -3.8958731653624037,
                    40.50418588665963
                  ],
                  [
                    -3.8958777863575307,
                    40.5041961209134
                  ],
                  [
                    -3.8958841360962704,
                    40.50419436000614
                  ],
                  [
                    -3.8958825552292082,
                    40.50419085881397
                  ],
                  [
                    -3.8958987842016835,
                    40.504186498839275
                  ],
                  [
                    -3.8958703286063106,
                    40.5041234773831
                  ],
                  [
                    -3.8959250171660247,
                    40.50410908968817
                  ],
                  [
                    -3.895953472806255,
                    40.504172111130835
                  ],
                  [
                    -3.895970291816545,
                    40.50416774657108
                  ],
                  [
                    -3.8959718738864066,
                    40.5041713378411
                  ],
                  [
                    -3.8959782248189336,
                    40.50416966700772
                  ]
                ],
                [
                  [
                    -3.8957984291032375,
                    40.50382890512464
                  ],
                  [
                    -3.89574421157886,
                    40.50384319901966
                  ],
                  [
                    -3.895667356872871,
                    40.50367289700437
                  ],
                  [
                    -3.8957215742778337,
                    40.50365860314607
                  ],
                  [
                    -3.8957984291032375,
                    40.50382890512464
                  ]
                ],
                [
                  [
                    -3.8958942522849225,
                    40.504041041189986
                  ],
                  [
                    -3.8958395637731833,
                    40.50405542886977
                  ],
                  [
                    -3.895806852133188,
                    40.50398298110712
                  ],
                  [
                    -3.895774506575764,
                    40.503911431380246
                  ],
                  [
                    -3.895829194985664,
                    40.50389704373193
                  ],
                  [
                    -3.895861540593477,
                    40.50396859344303
                  ],
                  [
                    -3.8958942522849225,
                    40.504041041189986
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART60",
        "featuretype": "BuildingPart",
        "area": 17.4093074798584,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89576887158669,
                    40.5040911113577
                  ],
                  [
                    -3.89573883769514,
                    40.5040247688308
                  ],
                  [
                    -3.895725430186,
                    40.5040282961174
                  ],
                  [
                    -3.89572664383172,
                    40.5040308091856
                  ],
                  [
                    -3.89571417679929,
                    40.5040340589156
                  ],
                  [
                    -3.89574178337571,
                    40.5040953753131
                  ],
                  [
                    -3.89575436842736,
                    40.5040921246652
                  ],
                  [
                    -3.89575546406604,
                    40.5040946386478
                  ],
                  [
                    -3.89576887158669,
                    40.5040911113577
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART61",
        "featuretype": "BuildingPart",
        "area": 18.118223190307617,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89575258216125,
                    40.503425574312
                  ],
                  [
                    -3.89575051610513,
                    40.503421085906
                  ],
                  [
                    -3.89573240396952,
                    40.5034258208108
                  ],
                  [
                    -3.89570674573054,
                    40.5033689937227
                  ],
                  [
                    -3.89569451483514,
                    40.5033722416203
                  ],
                  [
                    -3.89569341801269,
                    40.5033696375575
                  ],
                  [
                    -3.89568001063091,
                    40.5033731648378
                  ],
                  [
                    -3.8957099273525,
                    40.503439598385
                  ],
                  [
                    -3.89572333474582,
                    40.5034360711011
                  ],
                  [
                    -3.89572223911949,
                    40.5034335571178
                  ],
                  [
                    -3.89573447002458,
                    40.5034303092172
                  ],
                  [
                    -3.89575258216125,
                    40.503425574312
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART62",
        "featuretype": "BuildingPart",
        "area": 9.971912384033203,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89571200974923,
                    40.5039155193599
                  ],
                  [
                    -3.89571006528413,
                    40.5039113002763
                  ],
                  [
                    -3.8957033615402,
                    40.503913063918
                  ],
                  [
                    -3.89567721671751,
                    40.5038551595391
                  ],
                  [
                    -3.89568392045642,
                    40.5038533958989
                  ],
                  [
                    -3.89568197479665,
                    40.5038490867356
                  ],
                  [
                    -3.89566186357998,
                    40.5038543776546
                  ],
                  [
                    -3.89569189851527,
                    40.5039208102842
                  ],
                  [
                    -3.89571200974923,
                    40.5039155193599
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART63",
        "featuretype": "BuildingPart",
        "area": 11.529187202453613,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89570335642575,
                    40.5040102693568
                  ],
                  [
                    -3.89567563191143,
                    40.5039489538632
                  ],
                  [
                    -3.89565775444886,
                    40.5039535968489
                  ],
                  [
                    -3.89568547894897,
                    40.5040149123469
                  ],
                  [
                    -3.89570335642575,
                    40.5040102693568
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART64",
        "featuretype": "BuildingPart",
        "area": 5.7791032791137695,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89570040959251,
                    40.5039395727929
                  ],
                  [
                    -3.89569189851527,
                    40.5039208102842
                  ],
                  [
                    -3.89567849102417,
                    40.5039243375652
                  ],
                  [
                    -3.89567739539124,
                    40.5039218235817
                  ],
                  [
                    -3.89566492837641,
                    40.5039250733064
                  ],
                  [
                    -3.89567563191143,
                    40.5039489538632
                  ],
                  [
                    -3.89568809773182,
                    40.5039456140583
                  ],
                  [
                    -3.89568700209816,
                    40.5039431000749
                  ],
                  [
                    -3.89570040959251,
                    40.5039395727929
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART65",
        "featuretype": "BuildingPart",
        "area": 117.1500473022461,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 1,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89569080861716,
                    40.5035904645048
                  ],
                  [
                    -3.89561675599985,
                    40.5034267171829
                  ],
                  [
                    -3.8955401914876,
                    40.50344676966
                  ],
                  [
                    -3.895549312869,
                    40.5034670589552
                  ],
                  [
                    -3.89551026712604,
                    40.5034773613596
                  ],
                  [
                    -3.89552048172655,
                    40.5034999844841
                  ],
                  [
                    -3.89558081508553,
                    40.5034841117926
                  ],
                  [
                    -3.89560002831484,
                    40.5035266647992
                  ],
                  [
                    -3.8955843871258,
                    40.5035308399999
                  ],
                  [
                    -3.89559241171071,
                    40.5035485252273
                  ],
                  [
                    -3.89559374934164,
                    40.5035514877784
                  ],
                  [
                    -3.89561045021361,
                    40.5035471241867
                  ],
                  [
                    -3.89563647325159,
                    40.5036047592629
                  ],
                  [
                    -3.89569080861716,
                    40.5035904645048
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART66",
        "featuretype": "BuildingPart",
        "area": 1.6684980392456055,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 0,
        "Number Of Floors Below Ground": 0
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89568543908683,
                    40.5034086176009
                  ],
                  [
                    -3.89567048433246,
                    40.5033756710624
                  ],
                  [
                    -3.89565989955556,
                    40.5033784557554
                  ],
                  [
                    -3.89566184519977,
                    40.5033827649195
                  ],
                  [
                    -3.89566854889228,
                    40.5033810012806
                  ],
                  [
                    -3.89568143999232,
                    40.5034096395703
                  ],
                  [
                    -3.89568543908683,
                    40.5034086176009
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART67",
        "featuretype": "BuildingPart",
        "area": 17.396799087524414,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89569189851527,
                    40.5039208102842
                  ],
                  [
                    -3.89566186357998,
                    40.5038543776546
                  ],
                  [
                    -3.89564857410931,
                    40.5038579040174
                  ],
                  [
                    -3.89564967093833,
                    40.5038605080803
                  ],
                  [
                    -3.89563720393342,
                    40.5038637578019
                  ],
                  [
                    -3.89566492837641,
                    40.5039250733064
                  ],
                  [
                    -3.89567739539124,
                    40.5039218235817
                  ],
                  [
                    -3.89567849102417,
                    40.5039243375652
                  ],
                  [
                    -3.89569189851527,
                    40.5039208102842
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART68",
        "featuretype": "BuildingPart",
        "area": 13.116081237792969,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 0,
        "Number Of Floors Below Ground": 0
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89575051610513,
                    40.503421085906
                  ],
                  [
                    -3.89571950612403,
                    40.5033523185444
                  ],
                  [
                    -3.89570139400455,
                    40.5033570534442
                  ],
                  [
                    -3.89570674573054,
                    40.5033689937227
                  ],
                  [
                    -3.89573240396952,
                    40.5034258208108
                  ],
                  [
                    -3.89575051610513,
                    40.503421085906
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART69",
        "featuretype": "BuildingPart",
        "area": 9.979817390441895,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89574847317848,
                    40.5035247935151
                  ],
                  [
                    -3.89571843837146,
                    40.5034583608945
                  ],
                  [
                    -3.89569832727392,
                    40.5034636518189
                  ],
                  [
                    -3.89570027172485,
                    40.5034678709031
                  ],
                  [
                    -3.89570697542475,
                    40.5034661072619
                  ],
                  [
                    -3.89573312131404,
                    40.5035241017185
                  ],
                  [
                    -3.89572641641078,
                    40.5035257752821
                  ],
                  [
                    -3.89572836206365,
                    40.5035300844449
                  ],
                  [
                    -3.89574847317848,
                    40.5035247935151
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART7",
        "featuretype": "BuildingPart",
        "area": 17.27211570739746,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89596527218858,
                    40.5039413032229
                  ],
                  [
                    -3.89593766547534,
                    40.5038799868787
                  ],
                  [
                    -3.89592531649023,
                    40.5038832357162
                  ],
                  [
                    -3.8959242196502,
                    40.5038806316561
                  ],
                  [
                    -3.89591081217974,
                    40.5038841589638
                  ],
                  [
                    -3.8959408473733,
                    40.5039505915256
                  ],
                  [
                    -3.89595425485529,
                    40.5039470642143
                  ],
                  [
                    -3.89595304120269,
                    40.5039445511485
                  ],
                  [
                    -3.89596527218858,
                    40.5039413032229
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART70",
        "featuretype": "BuildingPart",
        "area": 5.737875938415527,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89574529151045,
                    40.5034541888554
                  ],
                  [
                    -3.89573447002458,
                    40.5034303092172
                  ],
                  [
                    -3.89572223911949,
                    40.5034335571178
                  ],
                  [
                    -3.89572333474582,
                    40.5034360711011
                  ],
                  [
                    -3.8957099273525,
                    40.503439598385
                  ],
                  [
                    -3.89571843837146,
                    40.5034583608945
                  ],
                  [
                    -3.89573184576803,
                    40.5034548336096
                  ],
                  [
                    -3.8957329425934,
                    40.5034574376719
                  ],
                  [
                    -3.89574529151045,
                    40.5034541888554
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART71",
        "featuretype": "BuildingPart",
        "area": 140.86911010742188,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 1,
        "Height Below Ground": 0,
        "Number Of Floors Below Ground": 0
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89571950612403,
                    40.5033523185444
                  ],
                  [
                    -3.89569640278095,
                    40.5033012373086
                  ],
                  [
                    -3.89549799671,
                    40.5033534046887
                  ],
                  [
                    -3.8955401914876,
                    40.50344676966
                  ],
                  [
                    -3.89561675599985,
                    40.5034267171829
                  ],
                  [
                    -3.89559766319407,
                    40.5033843434218
                  ],
                  [
                    -3.89561436402451,
                    40.5033799798299
                  ],
                  [
                    -3.89566634744161,
                    40.5033663339306
                  ],
                  [
                    -3.89567575573089,
                    40.503363828621
                  ],
                  [
                    -3.89570139400455,
                    40.5033570534442
                  ],
                  [
                    -3.89571950612403,
                    40.5033523185444
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART72",
        "featuretype": "BuildingPart",
        "area": 8.29741096496582,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.8957099273525,
                    40.503439598385
                  ],
                  [
                    -3.89568001063091,
                    40.5033731648378
                  ],
                  [
                    -3.89567048433246,
                    40.5033756710624
                  ],
                  [
                    -3.89568543908683,
                    40.5034086176009
                  ],
                  [
                    -3.89568143999232,
                    40.5034096395703
                  ],
                  [
                    -3.89569469351596,
                    40.5034389056683
                  ],
                  [
                    -3.89568798981842,
                    40.5034406693087
                  ],
                  [
                    -3.89568993426801,
                    40.5034448883932
                  ],
                  [
                    -3.8957099273525,
                    40.503439598385
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART73",
        "featuretype": "BuildingPart",
        "area": 2.8556292057037354,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89570674573054,
                    40.5033689937227
                  ],
                  [
                    -3.89570139400455,
                    40.5033570534442
                  ],
                  [
                    -3.89567575573089,
                    40.503363828621
                  ],
                  [
                    -3.89568001063091,
                    40.5033731648378
                  ],
                  [
                    -3.89569341801269,
                    40.5033696375575
                  ],
                  [
                    -3.89569451483514,
                    40.5033722416203
                  ],
                  [
                    -3.89570674573054,
                    40.5033689937227
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART74",
        "featuretype": "BuildingPart",
        "area": 9.985971450805664,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89575043785218,
                    40.5040007153942
                  ],
                  [
                    -3.89574849218375,
                    40.5039964062323
                  ],
                  [
                    -3.89574190644157,
                    40.5039981689616
                  ],
                  [
                    -3.89571564354247,
                    40.5039402655076
                  ],
                  [
                    -3.89572234728876,
                    40.5039385018652
                  ],
                  [
                    -3.89572052083135,
                    40.5039342818671
                  ],
                  [
                    -3.89570040959251,
                    40.5039395727929
                  ],
                  [
                    -3.89573032659604,
                    40.5040060063254
                  ],
                  [
                    -3.89575043785218,
                    40.5040007153942
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART75",
        "featuretype": "BuildingPart",
        "area": 11.515277862548828,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89574178337571,
                    40.5040953753131
                  ],
                  [
                    -3.89571417679929,
                    40.5040340589156
                  ],
                  [
                    -3.89569630051531,
                    40.5040387919866
                  ],
                  [
                    -3.89572402508686,
                    40.5041001074737
                  ],
                  [
                    -3.89574178337571,
                    40.5040953753131
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART76",
        "featuretype": "BuildingPart",
        "area": 5.766345024108887,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89573883769514,
                    40.5040247688308
                  ],
                  [
                    -3.89573032659604,
                    40.5040060063254
                  ],
                  [
                    -3.89571703709931,
                    40.5040095326963
                  ],
                  [
                    -3.89571582225601,
                    40.5040069295488
                  ],
                  [
                    -3.89570335642575,
                    40.5040102693568
                  ],
                  [
                    -3.89571417679929,
                    40.5040340589156
                  ],
                  [
                    -3.89572664383172,
                    40.5040308091856
                  ],
                  [
                    -3.895725430186,
                    40.5040282961174
                  ],
                  [
                    -3.89573883769514,
                    40.5040247688308
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART77",
        "featuretype": "BuildingPart",
        "area": 17.43147087097168,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89573032659604,
                    40.5040060063254
                  ],
                  [
                    -3.89570040959251,
                    40.5039395727929
                  ],
                  [
                    -3.89568700209816,
                    40.5039431000749
                  ],
                  [
                    -3.89568809773182,
                    40.5039456140583
                  ],
                  [
                    -3.89567563191143,
                    40.5039489538632
                  ],
                  [
                    -3.89570335642575,
                    40.5040102693568
                  ],
                  [
                    -3.89571582225601,
                    40.5040069295488
                  ],
                  [
                    -3.89571703709931,
                    40.5040095326963
                  ],
                  [
                    -3.89573032659604,
                    40.5040060063254
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART78",
        "featuretype": "BuildingPart",
        "area": 49.97669219970703,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 1,
        "Height Below Ground": 0,
        "Number Of Floors Below Ground": 0
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89568016619786,
                    40.5032961380295
                  ],
                  [
                    -3.8956416217923,
                    40.50321103295
                  ],
                  [
                    -3.89558587541972,
                    40.5032256989742
                  ],
                  [
                    -3.89562441976389,
                    40.5033108040727
                  ],
                  [
                    -3.89568016619786,
                    40.5032961380295
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART79",
        "featuretype": "BuildingPart",
        "area": 20.746353149414062,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 5,
        "Height Below Ground": 0,
        "Number Of Floors Below Ground": 0
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89568143999232,
                    40.5034096395703
                  ],
                  [
                    -3.89566854889228,
                    40.5033810012806
                  ],
                  [
                    -3.89566184519977,
                    40.5033827649195
                  ],
                  [
                    -3.89565989955556,
                    40.5033784557554
                  ],
                  [
                    -3.89567048433246,
                    40.5033756710624
                  ],
                  [
                    -3.89566634744161,
                    40.5033663339306
                  ],
                  [
                    -3.89561436402451,
                    40.5033799798299
                  ],
                  [
                    -3.89562104977136,
                    40.5033946124259
                  ],
                  [
                    -3.89562740064013,
                    40.5033929416123
                  ],
                  [
                    -3.89563202154166,
                    40.5034031758784
                  ],
                  [
                    -3.89562567067205,
                    40.5034048466922
                  ],
                  [
                    -3.89563345564127,
                    40.5034222635091
                  ],
                  [
                    -3.89568143999232,
                    40.5034096395703
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART8",
        "featuretype": "BuildingPart",
        "area": 17.30868911743164,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89600381863496,
                    40.504026498254
                  ],
                  [
                    -3.89597609384136,
                    40.5039651828357
                  ],
                  [
                    -3.89596386165303,
                    40.5039683406834
                  ],
                  [
                    -3.89596264799968,
                    40.5039658276177
                  ],
                  [
                    -3.89594924051442,
                    40.50396935493
                  ],
                  [
                    -3.89597927578526,
                    40.50403578748
                  ],
                  [
                    -3.89599268328205,
                    40.5040322601641
                  ],
                  [
                    -3.89599146842772,
                    40.5040296570197
                  ],
                  [
                    -3.89600381863496,
                    40.504026498254
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART80",
        "featuretype": "BuildingPart",
        "area": 0.9309626817703247,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 5,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89568001063091,
                    40.5033731648378
                  ],
                  [
                    -3.89567575573089,
                    40.503363828621
                  ],
                  [
                    -3.89566634744161,
                    40.5033663339306
                  ],
                  [
                    -3.89567048433246,
                    40.5033756710624
                  ],
                  [
                    -3.89568001063091,
                    40.5033731648378
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART81",
        "featuretype": "BuildingPart",
        "area": 17.4382266998291,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89565347173173,
                    40.5038357043071
                  ],
                  [
                    -3.89562343687369,
                    40.5037692716657
                  ],
                  [
                    -3.89561002940889,
                    40.5037727989386
                  ],
                  [
                    -3.89561124304555,
                    40.5037753120082
                  ],
                  [
                    -3.89559865804565,
                    40.5037785626401
                  ],
                  [
                    -3.89562638241721,
                    40.5038398781554
                  ],
                  [
                    -3.89563884941827,
                    40.5038366284351
                  ],
                  [
                    -3.89564006305718,
                    40.5038391415044
                  ],
                  [
                    -3.89565347173173,
                    40.5038357043071
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART82",
        "featuretype": "BuildingPart",
        "area": 8.149913787841797,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 0,
        "Number Of Floors Below Ground": 0
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89563345564127,
                    40.5034222635091
                  ],
                  [
                    -3.89562567067205,
                    40.5034048466922
                  ],
                  [
                    -3.89563202154166,
                    40.5034031758784
                  ],
                  [
                    -3.89562740064013,
                    40.5033929416123
                  ],
                  [
                    -3.89562104977136,
                    40.5033946124259
                  ],
                  [
                    -3.89561436402451,
                    40.5033799798299
                  ],
                  [
                    -3.89559766319407,
                    40.5033843434218
                  ],
                  [
                    -3.89561675599985,
                    40.5034267171829
                  ],
                  [
                    -3.89563345564127,
                    40.5034222635091
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART83",
        "featuretype": "BuildingPart",
        "area": 9.955151557922363,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89563503702982,
                    40.5037452182397
                  ],
                  [
                    -3.89563309137642,
                    40.5037409090755
                  ],
                  [
                    -3.89562638764727,
                    40.5037426727127
                  ],
                  [
                    -3.89560024295932,
                    40.5036847683132
                  ],
                  [
                    -3.89560694668344,
                    40.5036830046776
                  ],
                  [
                    -3.89560500223187,
                    40.5036787855919
                  ],
                  [
                    -3.89558500906812,
                    40.5036840755826
                  ],
                  [
                    -3.89561492584019,
                    40.5037505091504
                  ],
                  [
                    -3.89563503702982,
                    40.5037452182397
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART84",
        "featuretype": "BuildingPart",
        "area": 9.995027542114258,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89567358294354,
                    40.5038304133896
                  ],
                  [
                    -3.89567163728512,
                    40.5038261042261
                  ],
                  [
                    -3.89566493354858,
                    40.5038278678656
                  ],
                  [
                    -3.89563878879321,
                    40.5037699634764
                  ],
                  [
                    -3.89564549252472,
                    40.5037681998385
                  ],
                  [
                    -3.8956435480682,
                    40.5037639807536
                  ],
                  [
                    -3.89562343687369,
                    40.5037692716657
                  ],
                  [
                    -3.89565347173173,
                    40.5038357043071
                  ],
                  [
                    -3.89567358294354,
                    40.5038304133896
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART85",
        "featuretype": "BuildingPart",
        "area": 11.552002906799316,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89566492837641,
                    40.5039250733064
                  ],
                  [
                    -3.89563720393342,
                    40.5038637578019
                  ],
                  [
                    -3.89561932768881,
                    40.5038684908607
                  ],
                  [
                    -3.89564705211763,
                    40.5039298063695
                  ],
                  [
                    -3.89566492837641,
                    40.5039250733064
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART86",
        "featuretype": "BuildingPart",
        "area": 5.777852535247803,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89566186357998,
                    40.5038543776546
                  ],
                  [
                    -3.89565347173173,
                    40.5038357043071
                  ],
                  [
                    -3.89564006305718,
                    40.5038391415044
                  ],
                  [
                    -3.89563884941827,
                    40.5038366284351
                  ],
                  [
                    -3.89562638241721,
                    40.5038398781554
                  ],
                  [
                    -3.89563720393342,
                    40.5038637578019
                  ],
                  [
                    -3.89564967093833,
                    40.5038605080803
                  ],
                  [
                    -3.89564857410931,
                    40.5038579040174
                  ],
                  [
                    -3.89566186357998,
                    40.5038543776546
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART87",
        "featuretype": "BuildingPart",
        "area": 11.515278816223145,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89562638241721,
                    40.5038398781554
                  ],
                  [
                    -3.89559865804565,
                    40.5037785626401
                  ],
                  [
                    -3.89558089982949,
                    40.5037832947782
                  ],
                  [
                    -3.89560850617812,
                    40.5038446112125
                  ],
                  [
                    -3.89562638241721,
                    40.5038398781554
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART88",
        "featuretype": "BuildingPart",
        "area": 5.777852535247803,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89562343687369,
                    40.5037692716657
                  ],
                  [
                    -3.89561492584019,
                    40.5037505091504
                  ],
                  [
                    -3.89560163638736,
                    40.5037540355076
                  ],
                  [
                    -3.89560042155329,
                    40.5037514323587
                  ],
                  [
                    -3.89558795576416,
                    40.5037547721539
                  ],
                  [
                    -3.89559865804565,
                    40.5037785626401
                  ],
                  [
                    -3.89561124304555,
                    40.5037753120082
                  ],
                  [
                    -3.89561002940889,
                    40.5037727989386
                  ],
                  [
                    -3.89562343687369,
                    40.5037692716657
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART89",
        "featuretype": "BuildingPart",
        "area": 17.431472778320312,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89561492584019,
                    40.5037505091504
                  ],
                  [
                    -3.89558500906812,
                    40.5036840755826
                  ],
                  [
                    -3.89557160161812,
                    40.5036876028509
                  ],
                  [
                    -3.89557269724315,
                    40.5036901168356
                  ],
                  [
                    -3.89556023146388,
                    40.5036934566277
                  ],
                  [
                    -3.89558795576416,
                    40.5037547721539
                  ],
                  [
                    -3.89560042155329,
                    40.5037514323587
                  ],
                  [
                    -3.89560163638736,
                    40.5037540355076
                  ],
                  [
                    -3.89561492584019,
                    40.5037505091504
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART9",
        "featuretype": "BuildingPart",
        "area": 11.65196704864502,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89598338444516,
                    40.5039365682807
                  ],
                  [
                    -3.89595565970861,
                    40.5038752528559
                  ],
                  [
                    -3.89593766547534,
                    40.5038799868787
                  ],
                  [
                    -3.89596527218858,
                    40.5039413032229
                  ],
                  [
                    -3.89598338444516,
                    40.5039365682807
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART90",
        "featuretype": "BuildingPart",
        "area": 9.97191333770752,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89559660922393,
                    40.5036600221601
                  ],
                  [
                    -3.8955946647737,
                    40.5036558030743
                  ],
                  [
                    -3.89558796105194,
                    40.5036575667091
                  ],
                  [
                    -3.89556181643126,
                    40.5035996622994
                  ],
                  [
                    -3.895568520148,
                    40.5035978986661
                  ],
                  [
                    -3.89556657450326,
                    40.5035935895006
                  ],
                  [
                    -3.89554646335311,
                    40.503598880399
                  ],
                  [
                    -3.89557649805649,
                    40.5036653130639
                  ],
                  [
                    -3.89559660922393,
                    40.5036600221601
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART91",
        "featuretype": "BuildingPart",
        "area": 11.52918815612793,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89558795576416,
                    40.5037547721539
                  ],
                  [
                    -3.89556023146388,
                    40.5036934566277
                  ],
                  [
                    -3.89554235406055,
                    40.5036980995952
                  ],
                  [
                    -3.89557007834661,
                    40.5037594151258
                  ],
                  [
                    -3.89558795576416,
                    40.5037547721539
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART92",
        "featuretype": "BuildingPart",
        "area": 5.794163227081299,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89558500906812,
                    40.5036840755826
                  ],
                  [
                    -3.89557649805649,
                    40.5036653130639
                  ],
                  [
                    -3.89556309060974,
                    40.5036688403312
                  ],
                  [
                    -3.89556199498542,
                    40.5036663263464
                  ],
                  [
                    -3.89554941000332,
                    40.5036695769728
                  ],
                  [
                    -3.89556023146388,
                    40.5036934566277
                  ],
                  [
                    -3.89557269724315,
                    40.5036901168356
                  ],
                  [
                    -3.89557160161812,
                    40.5036876028509
                  ],
                  [
                    -3.89558500906812,
                    40.5036840755826
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART93",
        "featuretype": "BuildingPart",
        "area": 17.432573318481445,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89557649805649,
                    40.5036653130639
                  ],
                  [
                    -3.89554646335311,
                    40.503598880399
                  ],
                  [
                    -3.89553305591789,
                    40.5036024076627
                  ],
                  [
                    -3.89553427074657,
                    40.5036050108124
                  ],
                  [
                    -3.89552180378294,
                    40.5036082605212
                  ],
                  [
                    -3.89554941000332,
                    40.5036695769728
                  ],
                  [
                    -3.89556199498542,
                    40.5036663263464
                  ],
                  [
                    -3.89556309060974,
                    40.5036688403312
                  ],
                  [
                    -3.89557649805649,
                    40.5036653130639
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART94",
        "featuretype": "BuildingPart",
        "area": 4.992835998535156,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89555806470675,
                    40.5035749170592
                  ],
                  [
                    -3.89555623707176,
                    40.5035706069789
                  ],
                  [
                    -3.89554953335739,
                    40.5035723706115
                  ],
                  [
                    -3.89553640266986,
                    40.5035434638992
                  ],
                  [
                    -3.89552299524507,
                    40.5035469911616
                  ],
                  [
                    -3.89553807156986,
                    40.5035802070415
                  ],
                  [
                    -3.89555806470675,
                    40.5035749170592
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART95",
        "featuretype": "BuildingPart",
        "area": 11.515278816223145,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89554941000332,
                    40.5036695769728
                  ],
                  [
                    -3.89552180378294,
                    40.5036082605212
                  ],
                  [
                    -3.8955039275974,
                    40.5036129935617
                  ],
                  [
                    -3.89553165181217,
                    40.5036743091032
                  ],
                  [
                    -3.89554941000332,
                    40.5036695769728
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART96",
        "featuretype": "BuildingPart",
        "area": 5.767446041107178,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 4,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89554646335311,
                    40.503598880399
                  ],
                  [
                    -3.89553807156986,
                    40.5035802070415
                  ],
                  [
                    -3.89552466413788,
                    40.5035837343042
                  ],
                  [
                    -3.89552344930996,
                    40.5035811311544
                  ],
                  [
                    -3.89551098354823,
                    40.5035844709412
                  ],
                  [
                    -3.89552180378294,
                    40.5036082605212
                  ],
                  [
                    -3.89553427074657,
                    40.5036050108124
                  ],
                  [
                    -3.89553305591789,
                    40.5036024076627
                  ],
                  [
                    -3.89554646335311,
                    40.503598880399
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART97",
        "featuretype": "BuildingPart",
        "area": 8.726643562316895,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 3,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89553807156986,
                    40.5035802070415
                  ],
                  [
                    -3.89552299524507,
                    40.5035469911616
                  ],
                  [
                    -3.89549712086402,
                    40.5035537681286
                  ],
                  [
                    -3.89551098354823,
                    40.5035844709412
                  ],
                  [
                    -3.89552344930996,
                    40.5035811311544
                  ],
                  [
                    -3.89552466413788,
                    40.5035837343042
                  ],
                  [
                    -3.89553807156986,
                    40.5035802070415
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART98",
        "featuretype": "BuildingPart",
        "area": 5.75068473815918,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 2,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89551098354823,
                    40.5035844709412
                  ],
                  [
                    -3.89549712086402,
                    40.5035537681286
                  ],
                  [
                    -3.89547936269945,
                    40.5035585002507
                  ],
                  [
                    -3.89549310617017,
                    40.5035891139008
                  ],
                  [
                    -3.89551098354823,
                    40.5035844709412
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {
        "localid": "4242103VK2844S_PART99",
        "featuretype": "BuildingPart",
        "area": 415.16015625,
        "Condition Of Construction": "",
        "Number Of Floors Above Ground": 5,
        "Height Below Ground": 3,
        "Number Of Floors Below Ground": 1
      },
      "geometry": {
        "type": "FeatureCollection",
        "features": [
          {
            "type": "Feature",
            "geometry": {
              "type": "Polygon",
              "coordinates": [
                [
                  [
                    -3.89594992224704,
                    40.5043398832767
                  ],
                  [
                    -3.89594323633144,
                    40.5043252507039
                  ],
                  [
                    -3.8959368853833,
                    40.5043269215354
                  ],
                  [
                    -3.89593226436968,
                    40.5043166872843
                  ],
                  [
                    -3.89593861531698,
                    40.5043150164531
                  ],
                  [
                    -3.89592256458175,
                    40.504279555975
                  ],
                  [
                    -3.89591621363737,
                    40.5042812268054
                  ],
                  [
                    -3.89591159263014,
                    40.5042709925534
                  ],
                  [
                    -3.89591806158328,
                    40.5042693208083
                  ],
                  [
                    -3.89590480779293,
                    40.504240054743
                  ],
                  [
                    -3.8958984568518,
                    40.5042417255723
                  ],
                  [
                    -3.89589383585008,
                    40.5042314913194
                  ],
                  [
                    -3.89590018679037,
                    40.5042298204903
                  ],
                  [
                    -3.89588413609641,
                    40.504194360006
                  ],
                  [
                    -3.8958777863576,
                    40.5041961209133
                  ],
                  [
                    -3.89587316536227,
                    40.5041858866595
                  ],
                  [
                    -3.89587951629881,
                    40.5041842158315
                  ],
                  [
                    -3.89586626134402,
                    40.5041548596818
                  ],
                  [
                    -3.89585991040989,
                    40.504156530509
                  ],
                  [
                    -3.89585528942009,
                    40.5041462962543
                  ],
                  [
                    -3.89586164035337,
                    40.5041446254274
                  ],
                  [
                    -3.89584570890859,
                    40.504109254101
                  ],
                  [
                    -3.89583935797822,
                    40.5041109249271
                  ],
                  [
                    -3.89583473699478,
                    40.5041006906714
                  ],
                  [
                    -3.89584108792431,
                    40.5040990198456
                  ],
                  [
                    -3.89582783420214,
                    40.5040697537698
                  ],
                  [
                    -3.89582148327501,
                    40.5040714245949
                  ],
                  [
                    -3.8958168622971,
                    40.5040611903384
                  ],
                  [
                    -3.89582321322339,
                    40.5040595195136
                  ],
                  [
                    -3.89580716261202,
                    40.5040240590167
                  ],
                  [
                    -3.89580081168865,
                    40.5040257298406
                  ],
                  [
                    -3.89579619071712,
                    40.5040154955831
                  ],
                  [
                    -3.89580254163966,
                    40.5040138247595
                  ],
                  [
                    -3.89578940596072,
                    40.5039845577637
                  ],
                  [
                    -3.89578305504059,
                    40.5039862285866
                  ],
                  [
                    -3.89577843407458,
                    40.5039759943283
                  ],
                  [
                    -3.89578478499386,
                    40.5039743235056
                  ],
                  [
                    -3.89576873562217,
                    40.5039389530816
                  ],
                  [
                    -3.89576238470579,
                    40.5039406239033
                  ],
                  [
                    -3.89575776374616,
                    40.503930389644
                  ],
                  [
                    -3.8957641146617,
                    40.5039287188225
                  ],
                  [
                    -3.89575085980932,
                    40.5038993626572
                  ],
                  [
                    -3.8957445088962,
                    40.5039010334779
                  ],
                  [
                    -3.89573988914047,
                    40.5038908892969
                  ],
                  [
                    -3.89574624005275,
                    40.5038892184765
                  ],
                  [
                    -3.89573030753285,
                    40.5038537570522
                  ],
                  [
                    -3.89572395662348,
                    40.5038554278718
                  ],
                  [
                    -3.89571933567575,
                    40.5038451936107
                  ],
                  [
                    -3.89572568658428,
                    40.5038435227914
                  ],
                  [
                    -3.89571243296435,
                    40.5038142567
                  ],
                  [
                    -3.89570608205823,
                    40.5038159275186
                  ],
                  [
                    -3.89570146111602,
                    40.5038056932566
                  ],
                  [
                    -3.8957078120213,
                    40.5038040224384
                  ],
                  [
                    -3.8956917615338,
                    40.5037685619226
                  ],
                  [
                    -3.89568541063143,
                    40.5037702327399
                  ],
                  [
                    -3.89568078969561,
                    40.503759998477
                  ],
                  [
                    -3.89568714059714,
                    40.5037583276599
                  ],
                  [
                    -3.89567400502,
                    40.5037290606487
                  ],
                  [
                    -3.89566753611222,
                    40.5037307323797
                  ],
                  [
                    -3.89566303319057,
                    40.5037204972013
                  ],
                  [
                    -3.89566938408885,
                    40.5037188263852
                  ],
                  [
                    -3.89565333484085,
                    40.5036834559422
                  ],
                  [
                    -3.89564698394548,
                    40.5036851267574
                  ],
                  [
                    -3.89564236302155,
                    40.5036748924927
                  ],
                  [
                    -3.89564871391608,
                    40.5036732216777
                  ],
                  [
                    -3.89563545916612,
                    40.5036438654969
                  ],
                  [
                    -3.89562910827401,
                    40.5036455363111
                  ],
                  [
                    -3.89562448855381,
                    40.5036353921246
                  ],
                  [
                    -3.89563083944509,
                    40.5036337213107
                  ],
                  [
                    -3.8956149070486,
                    40.5035982598677
                  ],
                  [
                    -3.89560855616024,
                    40.5035999306807
                  ],
                  [
                    -3.89560393524821,
                    40.5035896964142
                  ],
                  [
                    -3.89561028613573,
                    40.5035880256014
                  ],
                  [
                    -3.89559703261806,
                    40.5035587594945
                  ],
                  [
                    -3.89559068173294,
                    40.5035604303065
                  ],
                  [
                    -3.89558606082643,
                    40.5035501960391
                  ],
                  [
                    -3.89559241171071,
                    40.5035485252273
                  ],
                  [
                    -3.8955843871258,
                    40.5035308399999
                  ],
                  [
                    -3.89553640266986,
                    40.5035434638992
                  ],
                  [
                    -3.89554953335739,
                    40.5035723706115
                  ],
                  [
                    -3.89555623707176,
                    40.5035706069789
                  ],
                  [
                    -3.89555806470675,
                    40.5035749170592
                  ],
                  [
                    -3.89553807156986,
                    40.5035802070415
                  ],
                  [
                    -3.89554646335311,
                    40.503598880399
                  ],
                  [
                    -3.89556657450326,
                    40.5035935895006
                  ],
                  [
                    -3.895568520148,
                    40.5035978986661
                  ],
                  [
                    -3.89556181643126,
                    40.5035996622994
                  ],
                  [
                    -3.89558796105194,
                    40.5036575667091
                  ],
                  [
                    -3.8955946647737,
                    40.5036558030743
                  ],
                  [
                    -3.89559660922393,
                    40.5036600221601
                  ],
                  [
                    -3.89557649805649,
                    40.5036653130639
                  ],
                  [
                    -3.89558500906812,
                    40.5036840755826
                  ],
                  [
                    -3.89560500223187,
                    40.5036787855919
                  ],
                  [
                    -3.89560694668344,
                    40.5036830046776
                  ],
                  [
                    -3.89560024295932,
                    40.5036847683132
                  ],
                  [
                    -3.89562638764727,
                    40.5037426727127
                  ],
                  [
                    -3.89563309137642,
                    40.5037409090755
                  ],
                  [
                    -3.89563503702982,
                    40.5037452182397
                  ],
                  [
                    -3.89561492584019,
                    40.5037505091504
                  ],
                  [
                    -3.89562343687369,
                    40.5037692716657
                  ],
                  [
                    -3.8956435480682,
                    40.5037639807536
                  ],
                  [
                    -3.89564549252472,
                    40.5037681998385
                  ],
                  [
                    -3.89563878879321,
                    40.5037699634764
                  ],
                  [
                    -3.89566493354858,
                    40.5038278678656
                  ],
                  [
                    -3.89567163728512,
                    40.5038261042261
                  ],
                  [
                    -3.89567358294354,
                    40.5038304133896
                  ],
                  [
                    -3.89565347173173,
                    40.5038357043071
                  ],
                  [
                    -3.89566186357998,
                    40.5038543776546
                  ],
                  [
                    -3.89568197479665,
                    40.5038490867356
                  ],
                  [
                    -3.89568392045642,
                    40.5038533958989
                  ],
                  [
                    -3.89567721671751,
                    40.5038551595391
                  ],
                  [
                    -3.8957033615402,
                    40.503913063918
                  ],
                  [
                    -3.89571006528413,
                    40.5039113002763
                  ],
                  [
                    -3.89571200974923,
                    40.5039155193599
                  ],
                  [
                    -3.89569189851527,
                    40.5039208102842
                  ],
                  [
                    -3.89570040959251,
                    40.5039395727929
                  ],
                  [
                    -3.89572052083135,
                    40.5039342818671
                  ],
                  [
                    -3.89572234728876,
                    40.5039385018652
                  ],
                  [
                    -3.89571564354247,
                    40.5039402655076
                  ],
                  [
                    -3.89574190644157,
                    40.5039981689616
                  ],
                  [
                    -3.89574849218375,
                    40.5039964062323
                  ],
                  [
                    -3.89575043785218,
                    40.5040007153942
                  ],
                  [
                    -3.89573032659604,
                    40.5040060063254
                  ],
                  [
                    -3.89573883769514,
                    40.5040247688308
                  ],
                  [
                    -3.89575894895617,
                    40.5040194778981
                  ],
                  [
                    -3.89576089342756,
                    40.5040236969807
                  ],
                  [
                    -3.89575418967388,
                    40.5040254606255
                  ],
                  [
                    -3.89578033463126,
                    40.5040833649839
                  ],
                  [
                    -3.89578703838997,
                    40.5040816013376
                  ],
                  [
                    -3.89578898406342,
                    40.5040859104988
                  ],
                  [
                    -3.89576887158669,
                    40.5040911113577
                  ],
                  [
                    -3.89577726469835,
                    40.5041098747745
                  ],
                  [
                    -3.89579737598153,
                    40.504104583835
                  ],
                  [
                    -3.89579932165633,
                    40.5041088929959
                  ],
                  [
                    -3.89579261789525,
                    40.5041106566429
                  ],
                  [
                    -3.89581876291995,
                    40.5041685609911
                  ],
                  [
                    -3.89582546668605,
                    40.5041667973426
                  ],
                  [
                    -3.89582741116602,
                    40.5041710164238
                  ],
                  [
                    -3.89580729986554,
                    40.5041763073688
                  ],
                  [
                    -3.89581581100839,
                    40.5041950698675
                  ],
                  [
                    -3.89583592231374,
                    40.504189778921
                  ],
                  [
                    -3.89583774878558,
                    40.504193998917
                  ],
                  [
                    -3.89583104501712,
                    40.5041957625662
                  ],
                  [
                    -3.89585730811867,
                    40.5042536659893
                  ],
                  [
                    -3.89586401189215,
                    40.5042519023385
                  ],
                  [
                    -3.89586583956605,
                    40.504256212413
                  ],
                  [
                    -3.89584584625298,
                    40.5042615024499
                  ],
                  [
                    -3.89585423820956,
                    40.504280175781
                  ],
                  [
                    -3.89587435073564,
                    40.5042749749068
                  ],
                  [
                    -3.8958762952219,
                    40.5042791939872
                  ],
                  [
                    -3.89586959144605,
                    40.5042809576387
                  ],
                  [
                    -3.89589573660544,
                    40.5043388619664
                  ],
                  [
                    -3.89590244038632,
                    40.5043370983133
                  ],
                  [
                    -3.8959043848762,
                    40.504341317393
                  ],
                  [
                    -3.89588427353139,
                    40.5043466083517
                  ],
                  [
                    -3.89588852972338,
                    40.5043560346373
                  ],
                  [
                    -3.89594992224704,
                    40.5043398832767
                  ]
                ]
              ]
            },
            "properties": {}
          }
        ]
      }
    }
  ]
}

Valor por el procedimiento catastral

/value

Proporciona los datos del valor catastral para una determinada búsqueda. Estos datos han sido calculados a partir del procedimiento catastral y pueden no corresponder con los asignados por el Catastro. Los valores han sido calculados aplicando coeficientes correctores de tipología y antigüedad.

Por defecto se genera un JSON en ingles. Si lo queremos en español añadimos el parámetro &language=es.

En el siguiente ejemplo, se obtiene un JSON en español &language=es del valor por el procedimiento catastral /value del inmueble con referencia catastral /4242103VK2844S0133FF/.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/cadastralreference/4242103VK2844S0133FF/value?language=es

Respuesta

{
    "valores": {
        "valordelaconstruccion": 46410,
        "valordelsuelo": 59280,
        "valordelinmueble": 147966,
        "valorencatastro": 73983
    }
}

Por defecto se obtiene un resumen del valor catastral, pero es posible disponer los datos ampliados si se añade el parámetro &extended=true.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/cadastralreference/4242103VK2844S0133FF/value?language=es&extended=true

Respuesta

{
    "valores": {
        "valordelaconstruccion": [
            {
                "División horizontal": "Es 1 Pl SM Pu 10 ",
                "Tipología": "1,70 (3113)",
                "Antigüedad": "1,00 (u=1,00 c=1,00 t=0)",
                "Vc = MBC x Superficie x Tipología x Antigüedad": "700,00 €/m² x 39 m² x 1,70 x 1,00 = 46.410,00 €"
            }
        ],
        "valordelsuelo": [
            {
                "División horizontal": "Es 1 Pl SM Pu 10 ",
                "Vr": "1.520,00 €/m² (Oficinas)",
                "Superficie": "39 m²",
                "Vs = Vr x Superficie": "1.520,00 €/m² x 39 m² = 59.280,00 €"
            }
        ],
        "valordelinmueble": [
            {
                "Vi = (Vc + Vs) x (G + B)": "(46.410,00 € + 59.280,00 €) x 1,40 = 147.966,00 €"
            }
        ],
        "valorencatastro": [
            {
                "VC = Vi x RM": "147.966,00 € x 0,5 = 73.983,00 €"
            }
        ],
        "poligono": {
            "Año de la ponencia total": "2008",
            "Polígono": "007",
            "Denominación": "SUP V-2 INDUSTRIAL",
            "MBC": "700,00 €/m²",
            "MBR": "1.200,00 €/m²",
            "G+B": "1.4",
            "G+B unitario": "1.4",
            "VUB": "",
            "VRB": "1.700,00 €/m²"
        },
        "zonadevalor": {
            "Zona de valor": "R19B",
            "Vivienda": "1.700,00 €/m²",
            "Comercial": "1.610,00 €/m²",
            "Oficinas": "1.520,00 €/m²",
            "Industrial": "1.360,00 €/m²",
            "Turístico": "1.615,00 €/m²",
            "Garajes": "200,00 €/m²",
            "Garajes/trastero": "",
            "Otros": "",
            "Otros2": "1.360,00 €/m²",
            "Otros3": "",
            "Zona verde": "1.020,00 €/m²",
            "Equipamiento": "1.020,00 €/m²",
            "G+B": "",
            "Valor unitario": "",
            "Valor unitario inicial": "",
            "Reducción UA": "0,6",
            "Reducción NU": "0,8"
        }
    }
}

Valor de referencia

/referencevalue

Proporciona el valor de referencia de catastro para una determinada búsqueda. Los valores pueden no corresponder con los asignados por catastro. Para el coeficiente H se asume siempre el uso 1º. No hay insuficientes datos para calcular los coeficientes D, E, J y M.

En el siguiente ejemplo, se obtiene un JSON con el valor de referencia /referencevalue del inmueble con referencia catastral 8726217VK1882N0014JY.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/cadastralreference/8726217VK1882N0014JY/referencevalue

Respuesta

{
    "referencevalue": 167057.58091056297
}

Por defecto se obtiene el valor final del valor de referencia, pero es posible disponer de los datos utilizados para el cálculo si se añade el parámetro &extended=true. El valor de referencia se obtiene por defecto para el año en curso, pero se puede consultar el valor de referencia de otros años añadiendo el parámetro &year=2022.

Solicitud

curl -H "x-api-key: your_api_key" -G https://api.goolzoom.com/v1/cadastre/cadastralreference/8726217VK1882N0014JY/referencevalue?&extended=true&year=2022

Respuesta

{
    "referencevalue": {
    "years": [
        2022,
        2023,
        2024
    ],
    "currentYear": 2022,
    "valorDelSuelo": {
        "calculoPorUnitario": false,
        "list": [
        {
            "ePlPt": "Pl -1 Pu 10",
            "superficie": 18,
            "destino": "AAP",
            "zonaDeValor": "R32",
            "tipoDeValorDeRepercusi\u00F3n": "Garage",
            "porcentageDeReparto": null,
            "coeficienteD": null,
            "coeficienteE": null,
            "coeficienteJ": null,
            "coeficienteK": null,
            "coeficienteM": null,
            "coeficienteN": null,
            "valorDeRepercusi\u00F3n": 24.0,
            "gB": 1.4,
            "valor": 604.8
        },
        {
            "ePlPt": "Es 2 Pl 00 Pu B",
            "superficie": 63,
            "destino": "V",
            "zonaDeValor": "R15",
            "tipoDeValorDeRepercusi\u00F3n": "Vivienda",
            "porcentageDeReparto": null,
            "coeficienteD": null,
            "coeficienteE": null,
            "coeficienteJ": null,
            "coeficienteK": null,
            "coeficienteM": null,
            "coeficienteN": null,
            "valorDeRepercusi\u00F3n": 930.0,
            "gB": 1.4,
            "valor": 82026.0
        },
        {
            "ePlPt": "Es 2 Pl \u002B1 Pu 10",
            "superficie": 7,
            "destino": "AAL",
            "zonaDeValor": "R32",
            "tipoDeValorDeRepercusi\u00F3n": "Garage",
            "porcentageDeReparto": null,
            "coeficienteD": null,
            "coeficienteE": null,
            "coeficienteJ": null,
            "coeficienteK": null,
            "coeficienteM": null,
            "coeficienteN": null,
            "valorDeRepercusi\u00F3n": 24.0,
            "gB": 1.4,
            "valor": 235.19999999999996
        },
        {
            "ePlPt": "COMUN",
            "superficie": 285,
            "destino": "AAP",
            "zonaDeValor": "R32",
            "tipoDeValorDeRepercusi\u00F3n": "Garage",
            "porcentageDeReparto": 3.0099,
            "coeficienteD": null,
            "coeficienteE": null,
            "coeficienteJ": null,
            "coeficienteK": null,
            "coeficienteM": null,
            "coeficienteN": null,
            "valorDeRepercusi\u00F3n": 24.0,
            "gB": 1.4,
            "valor": 288.22802399999995
        },
        {
            "ePlPt": "COMUN",
            "superficie": 110,
            "destino": "V",
            "zonaDeValor": "R15",
            "tipoDeValorDeRepercusi\u00F3n": "Vivienda",
            "porcentageDeReparto": 3.0099,
            "coeficienteD": null,
            "coeficienteE": null,
            "coeficienteJ": null,
            "coeficienteK": null,
            "coeficienteM": null,
            "coeficienteN": null,
            "valorDeRepercusi\u00F3n": 930.0,
            "gB": 1.4,
            "valor": 4310.778780000001
        },
        {
            "ePlPt": "COMUN",
            "superficie": 362,
            "destino": "V",
            "zonaDeValor": "R15",
            "tipoDeValorDeRepercusi\u00F3n": "Vivienda",
            "porcentageDeReparto": 3.0099,
            "coeficienteD": null,
            "coeficienteE": null,
            "coeficienteJ": null,
            "coeficienteK": null,
            "coeficienteM": null,
            "coeficienteN": null,
            "valorDeRepercusi\u00F3n": 930.0,
            "gB": 1.4,
            "valor": 14186.381076
        }
        ],
        "valor": 101651.38788000001
    },
    "valorDeLaConstrucci\u00F3n": {
        "list": [
        {
            "ePlPt": "Pl -1 Pu 10",
            "superficie": 18,
            "dACE": "AAP-1998-N-",
            "porcentageDeReparto": null,
            "mBC": 2,
            "tipologia": "01134",
            "coeficienteConstrucci\u00F3n": 0.53,
            "coeficienteH": 0.73,
            "coeficienteI": 1.0,
            "coeficienteJ": null,
            "coeficienteK": null,
            "coeficienteM": null,
            "coeficienteN": null,
            "gB": 1.4,
            "importeMBC": 700.0,
            "valor": 6824.916
        },
        {
            "ePlPt": "Es 2 Pl 00 Pu B",
            "superficie": 63,
            "dACE": "V-1998-N-",
            "porcentageDeReparto": null,
            "mBC": 2,
            "tipologia": "01124",
            "coeficienteConstrucci\u00F3n": 1.0,
            "coeficienteH": 0.73,
            "coeficienteI": 1.0,
            "coeficienteJ": null,
            "coeficienteK": null,
            "coeficienteM": null,
            "coeficienteN": null,
            "gB": 1.4,
            "importeMBC": 700.0,
            "valor": 45070.2
        },
        {
            "ePlPt": "Es 2 Pl \u002B1 Pu 10",
            "superficie": 7,
            "dACE": "AAL-1998-N-",
            "porcentageDeReparto": null,
            "mBC": 2,
            "tipologia": "01134",
            "coeficienteConstrucci\u00F3n": 0.53,
            "coeficienteH": 0.73,
            "coeficienteI": 1.0,
            "coeficienteJ": null,
            "coeficienteK": null,
            "coeficienteM": null,
            "coeficienteN": null,
            "gB": 1.4,
            "importeMBC": 700.0,
            "valor": 2654.1339999999996
        },
        {
            "ePlPt": "COMUN",
            "superficie": 285,
            "dACE": "AAP-1998-N-",
            "porcentageDeReparto": 3.0099,
            "mBC": 2,
            "tipologia": "01134",
            "coeficienteConstrucci\u00F3n": 0.53,
            "coeficienteH": 0.73,
            "coeficienteI": 1.0,
            "coeficienteJ": null,
            "coeficienteK": null,
            "coeficienteM": null,
            "coeficienteN": null,
            "gB": 1.4,
            "importeMBC": 700.0,
            "valor": 3252.53315583
        },
        {
            "ePlPt": "COMUN",
            "superficie": 110,
            "dACE": "V-1998-N-",
            "porcentageDeReparto": 3.0099,
            "mBC": 2,
            "tipologia": "01124",
            "coeficienteConstrucci\u00F3n": 1.0,
            "coeficienteH": 0.73,
            "coeficienteI": 1.0,
            "coeficienteJ": null,
            "coeficienteK": null,
            "coeficienteM": null,
            "coeficienteN": null,
            "gB": 1.4,
            "importeMBC": 700.0,
            "valor": 2368.6107059999995
        },
        {
            "ePlPt": "COMUN",
            "superficie": 362,
            "dACE": "V-1998-N-",
            "porcentageDeReparto": 3.0099,
            "mBC": 2,
            "tipologia": "01124",
            "coeficienteConstrucci\u00F3n": 1.0,
            "coeficienteH": 0.73,
            "coeficienteI": 1.0,
            "coeficienteJ": null,
            "coeficienteK": null,
            "coeficienteM": null,
            "coeficienteN": null,
            "gB": 1.4,
            "importeMBC": 700.0,
            "valor": 7794.882505199998
        },
        {
            "ePlPt": "COMUN",
            "superficie": 59,
            "dACE": "KPS-1998-N-",
            "porcentageDeReparto": 3.0099,
            "mBC": 2,
            "tipologia": "05224",
            "coeficienteConstrucci\u00F3n": 0.6,
            "coeficienteH": 0.73,
            "coeficienteI": 1.0,
            "coeficienteJ": null,
            "coeficienteK": null,
            "coeficienteM": null,
            "coeficienteN": null,
            "gB": 1.4,
            "importeMBC": 700.0,
            "valor": 762.2619908399998
        }
        ],
        "valor": 68727.53835786998
    },
    "valorDeReferencia": {
        "totalSuelo": 101651.38788000001,
        "totalConstrucci\u00F3n": 68727.53835786998,
        "total": 170378.92623787,
        "factorDeMinoraci\u00F3n": 0.9,
        "valorDeReferencia": 153341.03361408302
    }
    }
}

                    

Teselas vectoriales

/v1/cadastre/tilesets/{tilesetid}/{z}/{x}/{y.format}

Proporciona archivos de teselas vectoriales en formato pbf. Estos archivos están pensados para ser integrados en mapas de teselas como Google Maps, Mapbox, OpenStreetMap, etc. El nivel máximo de zoom es 16.

Importante: Requiere añadir la cabecera 'Accept: application/x-protobuf' en la solicitud.

El parámetro tilesetid adquiere uno de los siguientes valores:

  • parcels: Parcelas
  • buildings: Edificios
  • building-parts: Construcciones
  • other-constructions: Otras construcciones (que en la práctica son piscinas).

En el siguiente ejemplo obtenemos la tesela vectorial en formato pbf del zoom 16, tesela x 32060, tesela y 24691:

Solicitud

curl -H "x-api-key: your_api_key" -H 'Accept: application/x-protobuf' -G https://api.goolzoom.com/v1/cadastre/tilesets/parcels/16/32060/24691.pbf

Respuesta


                        �!x
Parcels(� sctscsscbscut" �" �" �"
UR" �
" �" �" �"