From 19426382b2268c75ceab3bc4077880e043d44573 Mon Sep 17 00:00:00 2001 From: ebocher Date: Fri, 27 Oct 2023 09:54:01 +0200 Subject: [PATCH] Improve doc and unit tests --- .../bdtopo/InputDataFormatting.groovy | 48 +----- .../geoclimate/geoindicators/DataUtils.groovy | 2 +- .../geoindicators/SpatialUnits.groovy | 24 +-- .../geoclimate/geoindicators/HYDRO.geojson | 8 +- .../geoclimate/geoindicators/VEGET.geojson | 148 +++++++++--------- .../geoindicators/data_for_tests.sql | 6 +- .../geoindicators/hydro_test.geojson | 4 +- .../geoindicators/veget_test.geojson | 142 ++++++++--------- .../geoclimate/osm/InputDataFormatting.groovy | 4 +- .../geoclimate/osm/WorflowOSMTest.groovy | 4 +- .../org/orbisgis/geoclimate/osm/HYDRO.geojson | 8 +- .../org/orbisgis/geoclimate/osm/VEGET.geojson | 148 +++++++++--------- 12 files changed, 256 insertions(+), 290 deletions(-) diff --git a/bdtopo/src/main/groovy/org/orbisgis/geoclimate/bdtopo/InputDataFormatting.groovy b/bdtopo/src/main/groovy/org/orbisgis/geoclimate/bdtopo/InputDataFormatting.groovy index 7e54624257..dff26d248e 100644 --- a/bdtopo/src/main/groovy/org/orbisgis/geoclimate/bdtopo/InputDataFormatting.groovy +++ b/bdtopo/src/main/groovy/org/orbisgis/geoclimate/bdtopo/InputDataFormatting.groovy @@ -280,30 +280,6 @@ String formatRoadLayer(JdbcDataSource datasource, String road, String zone = "") SURFACE VARCHAR, SIDEWALK VARCHAR, MAXSPEED INTEGER, DIRECTION INTEGER, ZINDEX INTEGER); """.toString() if (road) { - //Define the mapping between the values in BDTopo and those used in the abstract model - def road_types = - ["Autoroute" : "motorway", - "Type autoroutier" : "motorway", - 'Quasi-autoroute' : 'trunk', - 'Bretelle' : 'highway_link', - 'Route à 2 chaussées': 'primary', - 'Route à 1 chaussée' : 'unclassified', - 'Route empierrée' : 'track', - 'Chemin' : 'track', - 'Bac auto' : 'ferry', - 'Bac piéton' : 'ferry', - 'Piste cyclable' : 'cycleway', - 'Sentier' : 'path', - 'Escalier' : 'steps', - 'Gué ou radier' : null, - 'Pont' : 'bridge', - 'Tunnel' : 'tunnel', - 'NC' : null, - 'Rond-point' : 'roundabout', - 'Nationale' : 'primary', - 'Départementale' : 'secondary' - ] - def road_types_width = ["highway" : 8, "motorway" : 24, @@ -323,10 +299,8 @@ String formatRoadLayer(JdbcDataSource datasource, String road, String zone = "") "ferry" : 0, "pedestrian" : 3, "service" : 3] - - def queryMapper = "SELECT " if (datasource.hasTable(road)) { - queryMapper += Geoindicators.DataUtils.aliasColumns(datasource, road, "a", ["THE_GEOM"]) + def queryMapper = "SELECT a.ID_SOURCE, a.WIDTH, a.TYPE, a.ZINDEX, a.CROSSING, a.DIRECTION, a.RANK, a.ADMIN_SCALE" if (zone) { datasource.createSpatialIndex(road, "the_geom") queryMapper += ", ST_CollectionExtract(st_intersection(a.the_geom, b.the_geom), 2) as the_geom " + @@ -335,7 +309,7 @@ String formatRoadLayer(JdbcDataSource datasource, String road, String zone = "") "WHERE " + "a.the_geom && b.the_geom " } else { - queryMapper += ", the_geom FROM $road as a" + queryMapper += ", a.the_geom FROM $road as a" } int rowcount = 1 datasource.withBatch(100) { stmt -> @@ -591,9 +565,8 @@ String formatRailsLayer(JdbcDataSource datasource, String rail, String zone = "" ID_SOURCE VARCHAR, TYPE VARCHAR,CROSSING VARCHAR(30), ZINDEX INTEGER, WIDTH FLOAT, USAGE VARCHAR(30));""".toString() if (rail) { - def queryMapper = "SELECT " if (datasource.hasTable(rail)) { - queryMapper += Geoindicators.DataUtils.aliasColumns(datasource, rail, "a", ["THE_GEOM"]) + def queryMapper = "SELECT a.ID_SOURCE, a.TYPE, a.ZINDEX, a.CROSSING, a.WIDTH" if (zone) { datasource.createSpatialIndex(rail, "the_geom") queryMapper += ", st_intersection(a.the_geom, b.the_geom) as the_geom " + @@ -602,7 +575,7 @@ String formatRailsLayer(JdbcDataSource datasource, String rail, String zone = "" "WHERE " + "a.the_geom && b.the_geom " } else { - queryMapper += ", the_geom FROM $rail as a" + queryMapper += ", a.the_geom FROM $rail as a" } @@ -641,14 +614,8 @@ String formatRailsLayer(JdbcDataSource datasource, String rail, String zone = "" //1.435 default value for standard gauge //1 constant for balasting def rail_width = !row.WIDTH ? 1.435 + 1 : row.WIDTH + 1 + def rail_crossing = rail_types.get(row.CROSSING) - def rail_crossing = row.CROSSING - if (rail_crossing) { - rail_crossing = rail_types.get(rail_crossing) - if (!rail_zindex && rail_crossing) { - rail_zindex = 1 - } - } if (rail_zindex >= 0 && rail_type) { Geometry geom = row.the_geom if (!geom.isEmpty()) { @@ -694,9 +661,8 @@ String formatVegetationLayer(JdbcDataSource datasource, String vegetation, Strin DROP TABLE IF EXISTS $outputTableName; CREATE TABLE $outputTableName (THE_GEOM GEOMETRY, id_veget serial, ID_SOURCE VARCHAR, TYPE VARCHAR, HEIGHT_CLASS VARCHAR(4), ZINDEX INTEGER);""".toString() if (vegetation) { - def queryMapper = "SELECT " if (datasource.hasTable(vegetation)) { - queryMapper += Geoindicators.DataUtils.aliasColumns(datasource, vegetation, "a", ["THE_GEOM"]) + def queryMapper = "SELECT a.ID_SOURCE, a.TYPE, a.ZINDEX" if (zone) { datasource.createSpatialIndex(vegetation, "the_geom") queryMapper += ", st_intersection(a.the_geom, b.the_geom) as the_geom " + @@ -705,7 +671,7 @@ String formatVegetationLayer(JdbcDataSource datasource, String vegetation, Strin "WHERE " + "a.the_geom && b.the_geom " } else { - queryMapper += ", the_geom FROM $vegetation as a" + queryMapper += ", a.the_geom FROM $vegetation as a" } def vegetation_types = ['Zone arborée' : 'wood', 'Forêt fermée de feuillus' : 'forest', diff --git a/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/DataUtils.groovy b/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/DataUtils.groovy index f1a1678179..f4987d5e36 100644 --- a/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/DataUtils.groovy +++ b/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/DataUtils.groovy @@ -170,7 +170,7 @@ static String aliasColumns(JdbcDataSource datasource, String tableName, String a * @param exceptColumns * @return */ -static String aliasColumns(JdbcDataSource datasource, String tableName, String alias, Collection exceptColumns){ +static String aliasColumns(JdbcDataSource datasource, def tableName, def alias, def exceptColumns){ Collection columnNames = datasource.getColumnNames(tableName) columnNames.removeAll(exceptColumns) return columnNames.inject([]) { result, iter -> diff --git a/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/SpatialUnits.groovy b/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/SpatialUnits.groovy index 0b1a9da7a7..c8844ba123 100644 --- a/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/SpatialUnits.groovy +++ b/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/SpatialUnits.groovy @@ -215,13 +215,13 @@ String prepareTSUData(JdbcDataSource datasource, String zone, String road, Strin datasource "DROP TABLE IF EXISTS $vegetation_tmp, $vegetation_graph, $subGraphTableNodes, $subGraphTableEdges, $subGraphBlocksLow, $subGraphBlocksHigh".toString() - datasource.createIndex(vegetation, "ID") + datasource.createIndex(vegetation, "ID_VEGET") datasource.createSpatialIndex(vegetation, "THE_GEOM") datasource.execute """ CREATE TABLE $vegetation_graph (EDGE_ID SERIAL, START_NODE INT, END_NODE INT) AS - SELECT CAST((row_number() over()) as Integer), a.ID as START_NODE, b.ID AS END_NODE + SELECT CAST((row_number() over()) as Integer), a.ID_VEGET as START_NODE, b.ID_VEGET AS END_NODE FROM $vegetation AS a, $vegetation AS b - WHERE a.ID <>b.ID AND a.the_geom && b.the_geom + WHERE a.ID_VEGET <>b.ID_VEGET AND a.the_geom && b.the_geom AND ST_INTERSECTS(b.the_geom,a.the_geom); """.toString() @@ -235,14 +235,14 @@ String prepareTSUData(JdbcDataSource datasource, String zone, String road, Strin CREATE INDEX ON $subGraphTableNodes (NODE_ID); CREATE TABLE $subGraphBlocksLow AS SELECT ST_ToMultiLine(ST_UNION(ST_ACCUM(A.THE_GEOM))) AS THE_GEOM FROM $vegetation A, $subGraphTableNodes B - WHERE a.id=b.NODE_ID AND a.HEIGHT_CLASS= 'low' GROUP BY B.CONNECTED_COMPONENT + WHERE a.ID_VEGET=b.NODE_ID AND a.HEIGHT_CLASS= 'low' GROUP BY B.CONNECTED_COMPONENT HAVING SUM(st_area(A.THE_GEOM)) >= $surface_vegetation;""".toString() //Processing high vegetation datasource """ CREATE TABLE $subGraphBlocksHigh AS SELECT ST_ToMultiLine(ST_UNION(ST_ACCUM(A.THE_GEOM))) AS THE_GEOM FROM $vegetation A, $subGraphTableNodes B - WHERE a.id=b.NODE_ID AND a.HEIGHT_CLASS= 'high' GROUP BY B.CONNECTED_COMPONENT + WHERE a.ID_VEGET=b.NODE_ID AND a.HEIGHT_CLASS= 'high' GROUP BY B.CONNECTED_COMPONENT HAVING SUM(st_area(A.THE_GEOM)) >= $surface_vegetation;""".toString() debug "Creating the vegetation block table..." @@ -252,7 +252,7 @@ String prepareTSUData(JdbcDataSource datasource, String zone, String road, Strin AS SELECT the_geom FROM $subGraphBlocksLow UNION ALL SELECT the_geom FROM $subGraphBlocksHigh UNION ALL SELECT ST_ToMultiLine(a.the_geom) as the_geom FROM $vegetation a - LEFT JOIN $subGraphTableNodes b ON a.id = b.NODE_ID WHERE b.NODE_ID IS NULL + LEFT JOIN $subGraphTableNodes b ON a.ID_VEGET = b.NODE_ID WHERE b.NODE_ID IS NULL AND st_area(a.the_geom)>=$surface_vegetation; DROP TABLE $subGraphTableNodes,$subGraphTableEdges, $vegetation_graph, $subGraphBlocksLow, $subGraphBlocksHigh;""".toString() queryCreateOutputTable += [vegetation_tmp: "(SELECT the_geom FROM $vegetation_tmp)"] @@ -272,13 +272,13 @@ String prepareTSUData(JdbcDataSource datasource, String zone, String road, Strin datasource "DROP TABLE IF EXISTS $hydrographic_tmp, $water_graph, $subGraphTableNodes, $subGraphTableEdges, $subGraphBlocks".toString() - datasource.createIndex(water, "id") + datasource.createIndex(water, "ID_WATER") datasource.createSpatialIndex(water, "THE_GEOM") datasource.execute """ CREATE TABLE $water_graph (EDGE_ID SERIAL, START_NODE INT, END_NODE INT) AS - SELECT CAST((row_number() over()) as Integer), a.id as START_NODE, b.id AS END_NODE + SELECT CAST((row_number() over()) as Integer), a.ID_WATER as START_NODE, b.ID_WATER AS END_NODE FROM $water AS a, $water AS b - WHERE a.id <>b.id AND a.the_geom && b.the_geom + WHERE a.ID_WATER <>b.ID_WATER AND a.the_geom && b.the_geom AND ST_INTERSECTS(b.the_geom,a.the_geom) and a.ZINDEX=0; """.toString() @@ -292,14 +292,14 @@ String prepareTSUData(JdbcDataSource datasource, String zone, String road, Strin CREATE INDEX ON $subGraphTableNodes (NODE_ID); CREATE TABLE $subGraphBlocks AS SELECT ST_ToMultiLine(ST_UNION(ST_ACCUM(A.THE_GEOM))) AS THE_GEOM FROM $water A, $subGraphTableNodes B - WHERE a.id=b.NODE_ID GROUP BY B.CONNECTED_COMPONENT + WHERE a.ID_WATER=b.NODE_ID GROUP BY B.CONNECTED_COMPONENT HAVING SUM(st_area(A.THE_GEOM)) >= $surface_hydro;""".toString() debug "Creating the water block table..." datasource """DROP TABLE IF EXISTS $hydrographic_tmp; CREATE TABLE $hydrographic_tmp (THE_GEOM GEOMETRY) AS SELECT the_geom FROM $subGraphBlocks UNION ALL SELECT ST_ToMultiLine(a.the_geom) as the_geom FROM $water a - LEFT JOIN $subGraphTableNodes b ON a.id = b.NODE_ID WHERE b.NODE_ID IS NULL and + LEFT JOIN $subGraphTableNodes b ON a.ID_WATER = b.NODE_ID WHERE b.NODE_ID IS NULL and st_area(a.the_geom)>=$surface_hydro; DROP TABLE $subGraphTableNodes,$subGraphTableEdges, $water_graph, $subGraphBlocks ;""".toString() @@ -311,7 +311,7 @@ String prepareTSUData(JdbcDataSource datasource, String zone, String road, Strin if (road && datasource.hasTable(road)) { debug "Preparing road..." if(datasource.getColumnNames(road).size()>0) { - queryCreateOutputTable += [road_tmp: "(SELECT ST_ToMultiLine(THE_GEOM) FROM $road where (zindex=0 or crossing = 'bridge') " + + queryCreateOutputTable += [road_tmp: "(SELECT ST_ToMultiLine(THE_GEOM) FROM $road where (zindex=0 or crossing in ('bridge', 'crossing')) " + "and type not in ('track','service', 'path', 'cycleway', 'steps'))"] } } diff --git a/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/HYDRO.geojson b/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/HYDRO.geojson index 9aa8008ca0..66b352649c 100644 --- a/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/HYDRO.geojson +++ b/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/HYDRO.geojson @@ -3,9 +3,9 @@ "name": "HYDRO", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::32630" } }, "features": [ -{ "type": "Feature", "properties": { "id": 1, "id_source": "w169016779", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515411.957792967965361, 5276885.741746366024017 ], [ 515420.429411807854194, 5276891.543436447158456 ], [ 515417.564223353576381, 5276895.759156771935523 ], [ 515409.092607845319435, 5276889.957470810972154 ], [ 515411.957792967965361, 5276885.741746366024017 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 2, "id_source": "w170206276", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516500.310681352159008, 5277164.739636982791126 ], [ 516508.376651935279369, 5277170.052755190059543 ], [ 516516.210117500566412, 5277167.307588754221797 ], [ 516523.037949747114908, 5277164.303957449272275 ], [ 516527.108435057161842, 5277153.746113751083612 ], [ 516526.619191414327361, 5277146.187218014150858 ], [ 516518.562133163504768, 5277140.373970969580114 ], [ 516509.232961786270607, 5277135.568500433117151 ], [ 516500.680135444155894, 5277124.474732090719044 ], [ 516496.424594060110394, 5277112.881906726397574 ], [ 516493.682882639346644, 5277099.781871453858912 ], [ 516489.154837676207535, 5277094.234285020269454 ], [ 516484.361460104701109, 5277092.209082551300526 ], [ 516479.046394997392781, 5277096.717427551746368 ], [ 516472.970630680152681, 5277101.990489860065281 ], [ 516472.43040452565765, 5277115.081229669041932 ], [ 516474.677523227815982, 5277125.156853039748967 ], [ 516486.264132874552161, 5277133.747412442229688 ], [ 516490.532521080167498, 5277140.805763070471585 ], [ 516493.535296311310958, 5277151.883792778477073 ], [ 516494.772768916387577, 5277160.445063455030322 ], [ 516500.310681352159008, 5277164.739636982791126 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 3, "id_source": "w625863570", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516535.228325736359693, 5276275.087313095107675 ], [ 516533.53110943257343, 5276274.960241266526282 ], [ 516531.955525671830401, 5276274.322272758930922 ], [ 516530.651643254444934, 5276273.229403235949576 ], [ 516529.75438238348579, 5276271.782041127793491 ], [ 516529.345926453941502, 5276270.136014997959137 ], [ 516529.470933898934163, 5276268.435933039523661 ], [ 516530.11387779947836, 5276266.859574668109417 ], [ 516531.206714715517592, 5276265.562342435121536 ], [ 516532.65896149922628, 5276264.666233372874558 ], [ 516534.312627129082102, 5276264.259710948914289 ], [ 516536.009846537606791, 5276264.386782995425165 ], [ 516537.592943910683971, 5276265.024773913435638 ], [ 516538.889315528795123, 5276266.117623643018305 ], [ 516539.794086373818573, 5276267.565008481033146 ], [ 516540.195028190792073, 5276269.21101401373744 ], [ 516540.077528976777103, 5276270.911117081530392 ], [ 516539.434582811838482, 5276272.487474370747805 ], [ 516538.334233998262789, 5276273.784683743491769 ], [ 516536.881988595647272, 5276274.680791405029595 ], [ 516535.228325736359693, 5276275.087313095107675 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 4, "id_source": "w625863571", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516634.865931092645042, 5276275.493293523788452 ], [ 516633.161205587442964, 5276275.366171198897064 ], [ 516631.585632709087804, 5276274.728175716474652 ], [ 516630.281768962158822, 5276273.635283843614161 ], [ 516629.384532831201795, 5276272.187906326726079 ], [ 516628.97610505198827, 5276270.541873143985868 ], [ 516629.101141580787953, 5276268.84179325401783 ], [ 516629.744080727396067, 5276267.276559691876173 ], [ 516630.844451207376551, 5276265.979367549531162 ], [ 516632.28920199139975, 5276265.083261841908097 ], [ 516633.942874605010729, 5276264.676767691969872 ], [ 516635.640123612713069, 5276264.792754901573062 ], [ 516637.223178356303833, 5276265.441886802203953 ], [ 516638.527042657195125, 5276266.534780208952725 ], [ 516639.424309153924696, 5276267.971045250073075 ], [ 516639.832702420360874, 5276269.628193044103682 ], [ 516639.707694524375256, 5276271.317158836871386 ], [ 516639.064721381117124, 5276272.893505188636482 ], [ 516637.964350356138311, 5276274.1906957924366 ], [ 516636.519600939471275, 5276275.08680010214448 ], [ 516634.865931092645042, 5276275.493293523788452 ] ] ] } } +{ "type": "Feature", "properties": { "id_water": 1, "id_source": "w169016779", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515411.957792967965361, 5276885.741746366024017 ], [ 515420.429411807854194, 5276891.543436447158456 ], [ 515417.564223353576381, 5276895.759156771935523 ], [ 515409.092607845319435, 5276889.957470810972154 ], [ 515411.957792967965361, 5276885.741746366024017 ] ] ] } }, +{ "type": "Feature", "properties": { "id_water": 2, "id_source": "w170206276", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516500.310681352159008, 5277164.739636982791126 ], [ 516508.376651935279369, 5277170.052755190059543 ], [ 516516.210117500566412, 5277167.307588754221797 ], [ 516523.037949747114908, 5277164.303957449272275 ], [ 516527.108435057161842, 5277153.746113751083612 ], [ 516526.619191414327361, 5277146.187218014150858 ], [ 516518.562133163504768, 5277140.373970969580114 ], [ 516509.232961786270607, 5277135.568500433117151 ], [ 516500.680135444155894, 5277124.474732090719044 ], [ 516496.424594060110394, 5277112.881906726397574 ], [ 516493.682882639346644, 5277099.781871453858912 ], [ 516489.154837676207535, 5277094.234285020269454 ], [ 516484.361460104701109, 5277092.209082551300526 ], [ 516479.046394997392781, 5277096.717427551746368 ], [ 516472.970630680152681, 5277101.990489860065281 ], [ 516472.43040452565765, 5277115.081229669041932 ], [ 516474.677523227815982, 5277125.156853039748967 ], [ 516486.264132874552161, 5277133.747412442229688 ], [ 516490.532521080167498, 5277140.805763070471585 ], [ 516493.535296311310958, 5277151.883792778477073 ], [ 516494.772768916387577, 5277160.445063455030322 ], [ 516500.310681352159008, 5277164.739636982791126 ] ] ] } }, +{ "type": "Feature", "properties": { "id_water": 3, "id_source": "w625863570", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516535.228325736359693, 5276275.087313095107675 ], [ 516533.53110943257343, 5276274.960241266526282 ], [ 516531.955525671830401, 5276274.322272758930922 ], [ 516530.651643254444934, 5276273.229403235949576 ], [ 516529.75438238348579, 5276271.782041127793491 ], [ 516529.345926453941502, 5276270.136014997959137 ], [ 516529.470933898934163, 5276268.435933039523661 ], [ 516530.11387779947836, 5276266.859574668109417 ], [ 516531.206714715517592, 5276265.562342435121536 ], [ 516532.65896149922628, 5276264.666233372874558 ], [ 516534.312627129082102, 5276264.259710948914289 ], [ 516536.009846537606791, 5276264.386782995425165 ], [ 516537.592943910683971, 5276265.024773913435638 ], [ 516538.889315528795123, 5276266.117623643018305 ], [ 516539.794086373818573, 5276267.565008481033146 ], [ 516540.195028190792073, 5276269.21101401373744 ], [ 516540.077528976777103, 5276270.911117081530392 ], [ 516539.434582811838482, 5276272.487474370747805 ], [ 516538.334233998262789, 5276273.784683743491769 ], [ 516536.881988595647272, 5276274.680791405029595 ], [ 516535.228325736359693, 5276275.087313095107675 ] ] ] } }, +{ "type": "Feature", "properties": { "id_water": 4, "id_source": "w625863571", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516634.865931092645042, 5276275.493293523788452 ], [ 516633.161205587442964, 5276275.366171198897064 ], [ 516631.585632709087804, 5276274.728175716474652 ], [ 516630.281768962158822, 5276273.635283843614161 ], [ 516629.384532831201795, 5276272.187906326726079 ], [ 516628.97610505198827, 5276270.541873143985868 ], [ 516629.101141580787953, 5276268.84179325401783 ], [ 516629.744080727396067, 5276267.276559691876173 ], [ 516630.844451207376551, 5276265.979367549531162 ], [ 516632.28920199139975, 5276265.083261841908097 ], [ 516633.942874605010729, 5276264.676767691969872 ], [ 516635.640123612713069, 5276264.792754901573062 ], [ 516637.223178356303833, 5276265.441886802203953 ], [ 516638.527042657195125, 5276266.534780208952725 ], [ 516639.424309153924696, 5276267.971045250073075 ], [ 516639.832702420360874, 5276269.628193044103682 ], [ 516639.707694524375256, 5276271.317158836871386 ], [ 516639.064721381117124, 5276272.893505188636482 ], [ 516637.964350356138311, 5276274.1906957924366 ], [ 516636.519600939471275, 5276275.08680010214448 ], [ 516634.865931092645042, 5276275.493293523788452 ] ] ] } } ] } diff --git a/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/VEGET.geojson b/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/VEGET.geojson index d767ebed7e..6ef68046cb 100644 --- a/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/VEGET.geojson +++ b/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/VEGET.geojson @@ -3,79 +3,79 @@ "name": "VEGET", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::32630" } }, "features": [ -{ "type": "Feature", "properties": { "id": 1, "id_source": "w12857563", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515359.689912668196484, 5276849.327663001604378 ], [ 515433.83657165186014, 5276843.088724059984088 ], [ 515462.798841465846635, 5276862.448288119398057 ], [ 515498.470095688011497, 5276782.21137666888535 ], [ 515501.888150013692211, 5276773.496012406423688 ], [ 515515.612912809359841, 5276749.959845633246005 ], [ 515517.950578834919725, 5276743.642228845506907 ], [ 515529.003011146211065, 5276694.236780166625977 ], [ 515526.846030670974869, 5276660.944709153845906 ], [ 515529.460760488174856, 5276649.326476152054965 ], [ 515529.174368716718163, 5276629.976303763687611 ], [ 515445.304901980154682, 5276653.526025811210275 ], [ 515359.689912668196484, 5276849.327663001604378 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 2, "id_source": "w12857656", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515343.757617592695169, 5276291.409346736036241 ], [ 515385.633669471309986, 5276299.877513035200536 ], [ 515410.009723817347549, 5276347.498574674129486 ], [ 515372.545787538692821, 5276375.039978321641684 ], [ 515394.990539476159029, 5276420.088562174700201 ], [ 515396.728893784747925, 5276492.722873383201659 ], [ 515504.505337504961062, 5276450.586820833384991 ], [ 515614.198194220603909, 5276414.248268354684114 ], [ 515641.968510571401566, 5276396.962782558053732 ], [ 515635.679187179193832, 5276339.108853162266314 ], [ 515580.172636687813792, 5276360.810143774375319 ], [ 515569.354638654040173, 5276308.078827827237546 ], [ 515535.168614656082354, 5276314.411408226005733 ], [ 515539.114082888932899, 5276285.503418436273932 ], [ 515582.351264594355598, 5276270.837374015711248 ], [ 515580.562941643234808, 5276214.907163170166314 ], [ 515588.993137348326854, 5276166.32839472219348 ], [ 515602.083840425009839, 5276124.975079863332212 ], [ 515610.808245217893273, 5276123.687009785324335 ], [ 515609.611878811207134, 5276135.653532183729112 ], [ 515608.943871890718583, 5276141.064237778075039 ], [ 515606.448396491003223, 5276147.281365260481834 ], [ 515603.2399085839279, 5276156.086135141551495 ], [ 515601.767166831123177, 5276170.285824213176966 ], [ 515594.823836739815306, 5276213.367147841490805 ], [ 515595.740474317048211, 5276221.693955044262111 ], [ 515601.906346434552688, 5276227.689776824787259 ], [ 515602.567286500998307, 5276236.12703996617347 ], [ 515599.287540269142482, 5276257.534848567098379 ], [ 515599.749900937255006, 5276272.806663265451789 ], [ 515603.90617443312658, 5276271.88422460667789 ], [ 515609.122553380206227, 5276281.800737847574055 ], [ 515627.890953878522851, 5276305.14592255000025 ], [ 515636.054326879384462, 5276319.682661638595164 ], [ 515637.894991539826151, 5276325.133442927151918 ], [ 515645.237423780490644, 5276329.287554451264441 ], [ 515655.03104012174299, 5276335.304294510744512 ], [ 515648.985326239955612, 5276337.766459714621305 ], [ 515653.961259507457726, 5276364.43110447190702 ], [ 515657.448934570129495, 5276374.698663791641593 ], [ 515655.831688871665392, 5276381.15152642223984 ], [ 515635.355616968125105, 5276423.262881578877568 ], [ 515594.679708292591386, 5276480.390715794637799 ], [ 515551.436095804907382, 5276500.847022201865911 ], [ 515528.278370503685437, 5276481.502509543672204 ], [ 515431.505189823103137, 5276506.951872698962688 ], [ 515328.36959204840241, 5276501.544856464490294 ], [ 515313.449854872014839, 5276536.847994335927069 ], [ 515281.172935623908415, 5276554.756711267866194 ], [ 515247.779327853757422, 5276505.823338583111763 ], [ 515225.316182230308186, 5276464.63181468565017 ], [ 515238.285021908464842, 5276437.036437505856156 ], [ 515262.05616927833762, 5276469.229131908155978 ], [ 515292.979905914515257, 5276477.667948589660227 ], [ 515328.538754639273975, 5276437.273284641094506 ], [ 515365.295813352218829, 5276435.436316077597439 ], [ 515357.667812007537577, 5276394.28344146348536 ], [ 515285.540379152400419, 5276364.530569509603083 ], [ 515343.757617592695169, 5276291.409346736036241 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 3, "id_source": "w12857680", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515416.028572909825016, 5276267.171717971563339 ], [ 515367.840090686455369, 5276202.772373523563147 ], [ 515438.861839759047143, 5276165.683999580331147 ], [ 515457.968488169834018, 5276254.435146107338369 ], [ 515416.028572909825016, 5276267.171717971563339 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 4, "id_source": "w12857708", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515248.380047825106885, 5276276.377299305982888 ], [ 515206.650520008406602, 5276208.77316333539784 ], [ 515258.395706476527266, 5276143.347291049547493 ], [ 515359.782769975659903, 5276079.34179462864995 ], [ 515374.538426745217294, 5276109.588444911874831 ], [ 515338.834335201885551, 5276201.406694399192929 ], [ 515248.380047825106885, 5276276.377299305982888 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 5, "id_source": "w146255082", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516742.300127624883316, 5276793.301025846041739 ], [ 516744.846597256138921, 5276790.57430933136493 ], [ 516748.332670632225927, 5276790.195345357060432 ], [ 516751.326426174025983, 5276791.248670265078545 ], [ 516754.046087155002169, 5276793.590429455973208 ], [ 516749.9217006159015, 5276799.157781216315925 ], [ 516742.300127624883316, 5276793.301025846041739 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 6, "id_source": "w146255083", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516736.19439697091002, 5276774.834273478016257 ], [ 516736.666361462383065, 5276777.86974551063031 ], [ 516740.512097719241865, 5276783.015456917695701 ], [ 516742.908711586438585, 5276785.38962409645319 ], [ 516746.530875015771016, 5276787.311643510125577 ], [ 516750.954283238970675, 5276787.45773364789784 ], [ 516752.730701958644204, 5276788.718723242171109 ], [ 516756.511799581930973, 5276790.21887500397861 ], [ 516736.19439697091002, 5276774.834273478016257 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 7, "id_source": "w146259566", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516712.750327062269207, 5276794.194173431955278 ], [ 516711.534889264032245, 5276796.357910709455609 ], [ 516712.292110614245757, 5276799.449769328348339 ], [ 516715.068200013483874, 5276803.069779555313289 ], [ 516718.402786723629106, 5276805.746706509031355 ], [ 516729.181693083199207, 5276792.318636366166174 ], [ 516728.664765463967342, 5276791.86147831287235 ], [ 516724.521585240669083, 5276790.90488959942013 ], [ 516724.604190065932926, 5276796.139809872023761 ], [ 516720.709429674432613, 5276800.218568790704012 ], [ 516712.750327062269207, 5276794.194173431955278 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 8, "id_source": "w146259569", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516663.813905270304531, 5276813.959063909947872 ], [ 516669.910519538447261, 5276819.933604597114027 ], [ 516676.937872141599655, 5276810.373477843590081 ], [ 516679.688806137128267, 5276812.292960716411471 ], [ 516686.909614038886502, 5276803.378010733984411 ], [ 516698.705484703939874, 5276812.447487436234951 ], [ 516696.977228697447572, 5276815.343279710039496 ], [ 516703.910357718064915, 5276820.319996858946979 ], [ 516710.881364134897012, 5276812.093426367267966 ], [ 516709.060932045045774, 5276810.465561979450285 ], [ 516713.854613311530557, 5276804.588911036960781 ], [ 516709.124554622278083, 5276798.76272701472044 ], [ 516705.919727349886671, 5276792.740870766341686 ], [ 516704.864816365763545, 5276788.692357091233134 ], [ 516707.296409977192525, 5276786.732159094884992 ], [ 516716.843251571583096, 5276773.411671532317996 ], [ 516721.800803321413696, 5276775.870979917235672 ], [ 516727.387555227265693, 5276768.462888854555786 ], [ 516723.289060949231498, 5276765.016898832283914 ], [ 516699.995020467671566, 5276768.728802228346467 ], [ 516697.46496413112618, 5276768.354785955511034 ], [ 516663.813905270304531, 5276813.959063909947872 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 9, "id_source": "w146259570", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516699.138874421303626, 5276766.081220775842667 ], [ 516700.512346197385341, 5276766.429692789912224 ], [ 516722.804492542112712, 5276761.136729603633285 ], [ 516737.338082625064999, 5276742.762625137344003 ], [ 516736.019828936841805, 5276738.880058829672635 ], [ 516742.512912931269966, 5276734.964375640265644 ], [ 516743.104952050605789, 5276735.421750816516578 ], [ 516748.895327194652054, 5276727.747530546039343 ], [ 516749.98678479163209, 5276726.917121636681259 ], [ 516750.971269815578125, 5276726.719901844859123 ], [ 516752.795681209245231, 5276726.969657490029931 ], [ 516774.350725081691053, 5276735.144909459166229 ], [ 516776.018463686457835, 5276735.02745989151299 ], [ 516763.525420324760489, 5276717.653680980205536 ], [ 516761.64388857682934, 5276718.981942135840654 ], [ 516760.138535854057409, 5276720.089007036760449 ], [ 516759.769394527713303, 5276717.865149486809969 ], [ 516757.922404286218807, 5276707.190417572855949 ], [ 516757.552941443573218, 5276705.077699045650661 ], [ 516759.730110509495717, 5276705.41738373041153 ], [ 516761.681955698120873, 5276705.756420673802495 ], [ 516764.424872214207426, 5276692.205266224220395 ], [ 516767.653558349586092, 5276692.547981002368033 ], [ 516768.109646838682238, 5276690.659918434917927 ], [ 516771.126452360360418, 5276686.334155411459506 ], [ 516773.158853275468573, 5276684.784052354283631 ], [ 516771.588303852884565, 5276682.445594176650047 ], [ 516783.251210943097249, 5276675.14397116471082 ], [ 516782.503651378792711, 5276673.919279488734901 ], [ 516781.455658290942665, 5276672.693722154013813 ], [ 516781.456939353200141, 5276672.249166841618717 ], [ 516783.411036567296833, 5276671.810239224694669 ], [ 516794.682732397166546, 5276669.953359427861869 ], [ 516796.636831400217488, 5276669.514436246827245 ], [ 516796.18009095749585, 5276671.624774201773107 ], [ 516795.648563089314848, 5276673.623756749555469 ], [ 516809.609722634137142, 5276676.775952118448913 ], [ 516809.230011033592746, 5276678.219672908075154 ], [ 516812.983176543668378, 5276679.008485713042319 ], [ 516812.525789170409553, 5276681.341100090183318 ], [ 516814.851896780892275, 5276682.125794352963567 ], [ 516816.324210704595316, 5276684.664032177999616 ], [ 516821.09451024082955, 5276681.754833556711674 ], [ 516816.103984503599349, 5276672.493592948652804 ], [ 516826.382625522441231, 5276668.60004945192486 ], [ 516791.757872876303736, 5276642.38226711191237 ], [ 516739.048222192446701, 5276712.2152214134112 ], [ 516731.878105188894551, 5276721.719292820431292 ], [ 516699.138874421303626, 5276766.081220775842667 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 10, "id_source": "w146259573", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516757.362410440808162, 5276729.527897319756448 ], [ 516771.646151024266146, 5276735.381627014838159 ], [ 516763.340054562024307, 5276737.691646006889641 ], [ 516762.785507006279659, 5276737.256604633294046 ], [ 516761.443546466703992, 5276736.396965763531625 ], [ 516757.362410440808162, 5276729.527897319756448 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 11, "id_source": "w146259577", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516742.068569013499655, 5276832.043684696778655 ], [ 516724.198287946346682, 5276845.940375906415284 ], [ 516720.37700533552561, 5276842.750804871320724 ], [ 516717.65661342034582, 5276845.899363966658711 ], [ 516736.463899752183352, 5276861.379588950425386 ], [ 516748.43296959757572, 5276846.721322806552052 ], [ 516742.068569013499655, 5276832.043684696778655 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 12, "id_source": "w183968039", "type": "null", "height_class": "null", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516443.740117823588662, 5277115.389124820940197 ], [ 516482.498840655374806, 5277055.08311912138015 ], [ 516510.016103378497064, 5277020.941135651431978 ], [ 516650.743856725341175, 5277121.756668553687632 ], [ 516656.8203305566567, 5277150.414779911749065 ], [ 516657.50080539524788, 5277177.701553720980883 ], [ 516654.704974779451732, 5277262.426566129550338 ], [ 516717.667859425942879, 5277331.146956294775009 ], [ 516744.704332074848935, 5277333.647498254664242 ], [ 516768.108820313063916, 5277366.434433085843921 ], [ 516771.883562236442231, 5277482.108581299893558 ], [ 516732.614559716603253, 5277450.754167185164988 ], [ 516694.423423069063574, 5277407.400006008334458 ], [ 516636.873641964863054, 5277342.073972745798528 ], [ 516618.049415864574257, 5277322.459600200876594 ], [ 516608.607341967348475, 5277312.607895825989544 ], [ 516547.154682928929105, 5277277.47944360692054 ], [ 516521.467755565827247, 5277257.134593587368727 ], [ 516549.174677309347317, 5277222.07086565811187 ], [ 516520.883066644601058, 5277201.162919535301626 ], [ 516499.184163087978959, 5277223.040391643531621 ], [ 516481.507919324503746, 5277203.507519617676735 ], [ 516461.705017384781968, 5277192.348631243221462 ], [ 516457.383483800920658, 5277172.208995522931218 ], [ 516449.033262928540353, 5277147.868010764010251 ], [ 516424.17513249971671, 5277142.229735415428877 ], [ 516443.740117823588662, 5277115.389124820940197 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 13, "id_source": "w189027279", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516282.846104557334911, 5276855.036649436689913 ], [ 516303.141637050779536, 5276835.632867882959545 ], [ 516309.854525046248455, 5276830.861543190665543 ], [ 516420.622513207315933, 5276889.310041332617402 ], [ 516435.807669864560012, 5276905.734881917946041 ], [ 516472.09727149392711, 5276967.353284377604723 ], [ 516483.284831762604881, 5276984.3671002574265 ], [ 516419.410450335009955, 5277055.460577057674527 ], [ 516419.236586160142906, 5277047.869239673018456 ], [ 516406.090457845712081, 5277024.915162747725844 ], [ 516366.903000895632431, 5276965.422905370593071 ], [ 516282.846104557334911, 5276855.036649436689913 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 14, "id_source": "w189027280", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516354.931765206565615, 5277163.106934703886509 ], [ 516374.190923730900977, 5277175.442010604776442 ], [ 516376.660178912745323, 5277176.01576810143888 ], [ 516378.884255080309231, 5277175.644148657098413 ], [ 516381.361326714453753, 5277173.439435136504471 ], [ 516384.031127280031797, 5277169.468142163939774 ], [ 516390.124171851028223, 5277166.006614638492465 ], [ 516413.029097221675329, 5277118.525529652833939 ], [ 516428.970152382680681, 5277090.429890719242394 ], [ 516444.987610793556087, 5277067.246890241280198 ], [ 516464.775706743763294, 5277041.307214087806642 ], [ 516494.546454470895696, 5277001.725681542418897 ], [ 516495.131052327342331, 5276999.5045419447124 ], [ 516492.781787225801963, 5276996.31928972620517 ], [ 516483.284831762604881, 5276984.3671002574265 ], [ 516419.410450335009955, 5277055.460577057674527 ], [ 516398.288491076673381, 5277085.7644436173141 ], [ 516358.615929158288054, 5277158.960655835457146 ], [ 516354.931765206565615, 5277163.106934703886509 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 15, "id_source": "w189027282", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516269.427908678830136, 5277558.036143732257187 ], [ 516272.095959755475633, 5277557.2878492558375 ], [ 516275.391572193708271, 5277555.018694312311709 ], [ 516277.111705192481168, 5277552.189436944201589 ], [ 516278.009533080388792, 5277548.013088622130454 ], [ 516288.704004149127286, 5277486.071419171988964 ], [ 516294.704233083932195, 5277456.602809050120413 ], [ 516302.231003856926691, 5277423.748715351335704 ], [ 516310.469530610134825, 5277394.208593513816595 ], [ 516319.697984993516002, 5277362.515146311372519 ], [ 516340.725386569218244, 5277290.477720881812274 ], [ 516352.025928123854101, 5277256.478436036035419 ], [ 516360.691982785530854, 5277232.652177361771464 ], [ 516375.671528273785952, 5277196.418255047872663 ], [ 516373.79526204476133, 5277193.289949977770448 ], [ 516372.109279112424701, 5277189.261948186904192 ], [ 516361.277658210950904, 5277184.585857873782516 ], [ 516341.893233626440633, 5277227.586979603394866 ], [ 516332.766358972177841, 5277252.401117327623069 ], [ 516321.472653515287675, 5277286.678307493217289 ], [ 516300.034203766088467, 5277358.081153090111911 ], [ 516291.250442041957285, 5277391.920873719267547 ], [ 516283.822559068794362, 5277418.962643123231828 ], [ 516276.019039114296902, 5277454.138808822259307 ], [ 516269.481949887354858, 5277484.950729456730187 ], [ 516257.108734801411629, 5277551.111059541814029 ], [ 516258.085273450764362, 5277553.703345115296543 ], [ 516260.053586802212521, 5277556.120576958172023 ], [ 516265.336930336023215, 5277557.380101660266519 ], [ 516269.427908678830136, 5277558.036143732257187 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 16, "id_source": "w189027283", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516474.748577787424438, 5276954.046240387484431 ], [ 516476.460586756642442, 5276954.184452068991959 ], [ 516476.385476690367796, 5276956.840480067767203 ], [ 516477.773333763121627, 5276960.056346623227 ], [ 516485.409292380150873, 5276971.45867252163589 ], [ 516494.505518371006474, 5276981.709291381761432 ], [ 516496.902401464933064, 5276983.994446902535856 ], [ 516498.552711733907927, 5276984.699303207919002 ], [ 516500.385255902307108, 5276984.704495771788061 ], [ 516504.129039554332849, 5276983.448112198151648 ], [ 516506.672573736112099, 5276981.688199481926858 ], [ 516509.912268680287525, 5276978.096455323509872 ], [ 516542.352617571712472, 5276934.910694899968803 ], [ 516543.059870882483665, 5276931.823018433526158 ], [ 516544.816046923864633, 5276924.348301223479211 ], [ 516543.011450065299869, 5276919.78644354082644 ], [ 516632.540425019571558, 5276800.421744802966714 ], [ 516639.35193171404535, 5276805.93150806427002 ], [ 516748.935493506491184, 5276658.941025636158884 ], [ 516749.699906913097948, 5276656.920480822212994 ], [ 516749.902093714103103, 5276654.520443851128221 ], [ 516748.259678383008577, 5276651.048160075210035 ], [ 516742.087852471333463, 5276639.849755346775055 ], [ 516741.135249641782138, 5276639.402457836084068 ], [ 516739.931529245164711, 5276640.088064006529748 ], [ 516623.639986792288255, 5276795.23944528773427 ], [ 516530.068347584572621, 5276920.62769144307822 ], [ 516527.65602580254199, 5276923.777213494293392 ], [ 516521.8108398206532, 5276927.117047016508877 ], [ 516477.587608860398177, 5276948.719564446248114 ], [ 516476.315288521174807, 5276949.794020020402968 ], [ 516475.167973845382221, 5276951.81351759377867 ], [ 516474.748577787424438, 5276954.046240387484431 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 17, "id_source": "w189027284", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516209.367783138761297, 5277735.036674323491752 ], [ 516214.243142488354351, 5277737.12856694124639 ], [ 516221.149364159326069, 5277738.036925339139998 ], [ 516232.882561925100163, 5277734.146392535418272 ], [ 516233.833836475154385, 5277732.326351060532033 ], [ 516238.656050761055667, 5277729.238997363485396 ], [ 516240.374905882054009, 5277726.843170693144202 ], [ 516241.462439660564996, 5277724.634521 ], [ 516251.167902245710138, 5277720.816166090779006 ], [ 516253.142521133762784, 5277715.575876170769334 ], [ 516255.25706234050449, 5277708.635537448339164 ], [ 516256.535943502036389, 5277702.448617144487798 ], [ 516257.503030933672562, 5277689.59243371617049 ], [ 516259.421021448390093, 5277661.612769433297217 ], [ 516260.913325557718053, 5277648.924764034338295 ], [ 516273.261799156782217, 5277575.440246707759798 ], [ 516273.781434556585737, 5277572.229757276363671 ], [ 516273.531604518706445, 5277570.261883432045579 ], [ 516271.955513082852121, 5277567.234473940916359 ], [ 516269.745811693719588, 5277565.205552902072668 ], [ 516267.023338879807852, 5277563.93095098156482 ], [ 516255.936135634372476, 5277562.25511271879077 ], [ 516239.649377218971495, 5277655.811651490628719 ], [ 516239.830574692517985, 5277658.157208216376603 ], [ 516241.282871057046577, 5277659.795015729032457 ], [ 516244.505436434643343, 5277662.149058169685304 ], [ 516245.067882042669225, 5277665.118062201887369 ], [ 516245.058206102228723, 5277668.585599238984287 ], [ 516243.910584324155934, 5277670.794080471619964 ], [ 516242.072954081755597, 5277672.689445164985955 ], [ 516239.372813425958157, 5277674.193414874374866 ], [ 516238.555149390303995, 5277676.569527388550341 ], [ 516237.855034587380942, 5277679.879542833194137 ], [ 516236.927132213313598, 5277686.77874104026705 ], [ 516233.182235401705839, 5277694.00350344274193 ], [ 516225.713860622257926, 5277698.083744707517326 ], [ 516209.367783138761297, 5277735.036674323491752 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 18, "id_source": "w189027285", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516752.877678120159544, 5276646.249092107638717 ], [ 516754.203487994906027, 5276647.508785378187895 ], [ 516755.786105549312197, 5276648.26908899936825 ], [ 516756.861054184031673, 5276647.960990696214139 ], [ 516758.894615981320385, 5276646.010782962664962 ], [ 516813.358645465457812, 5276572.370982926338911 ], [ 516819.139612423663493, 5276565.441442206501961 ], [ 516834.225621614954434, 5276551.114662833511829 ], [ 516835.50394228141522, 5276548.01755949575454 ], [ 516836.147653131338302, 5276543.596058947965503 ], [ 516835.337532656791154, 5276540.626286091282964 ], [ 516833.633794556022622, 5276537.58724644780159 ], [ 516810.134063089615665, 5276510.734693166799843 ], [ 516808.354721829236951, 5276513.063491712324321 ], [ 516807.962164624186698, 5276516.352094653993845 ], [ 516805.600859065598343, 5276522.535763017833233 ], [ 516801.287006654369179, 5276526.001989689655602 ], [ 516800.878070468897931, 5276534.96978604234755 ], [ 516792.066568658221513, 5276535.322247656993568 ], [ 516792.082436227472499, 5276537.633999764919281 ], [ 516789.866946247813758, 5276537.538700322620571 ], [ 516789.828384572465438, 5276535.282452656887472 ], [ 516787.612573297519702, 5276535.298292878083885 ], [ 516787.555129885382485, 5276531.774997922591865 ], [ 516772.586035097658169, 5276531.609613698907197 ], [ 516772.528816125064623, 5276541.045211708173156 ], [ 516794.603519923461135, 5276556.779531194828451 ], [ 516795.541153100435622, 5276559.816349945031106 ], [ 516800.409981822536793, 5276564.442692585289478 ], [ 516777.964219149027485, 5276591.484964974224567 ], [ 516761.162970904668327, 5276614.675903933122754 ], [ 516752.199959205405321, 5276625.964139567688107 ], [ 516748.961327064898796, 5276626.454953035339713 ], [ 516747.694032142986543, 5276628.351797929033637 ], [ 516747.303338224184699, 5276631.006914175115526 ], [ 516747.035247905412689, 5276635.429504914209247 ], [ 516747.788221299706493, 5276637.38772976398468 ], [ 516752.877678120159544, 5276646.249092107638717 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 19, "id_source": "w192723399", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516070.928083823877387, 5276679.947497542016208 ], [ 516163.584448294772301, 5276646.68420516513288 ], [ 516191.354534212034196, 5276713.422937500290573 ], [ 516181.481405027850997, 5276733.745174184441566 ], [ 516188.13311696331948, 5276786.110463745892048 ], [ 516134.831672320084181, 5276796.131819072179496 ], [ 516129.98018588864943, 5276774.27942640800029 ], [ 516138.315410157782026, 5276766.767247997224331 ], [ 516127.427188092493452, 5276741.497257271781564 ], [ 516101.368025715986732, 5276740.30263580288738 ], [ 516092.356474522151984, 5276718.049787561409175 ], [ 516070.928083823877387, 5276679.947497542016208 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 20, "id_source": "w192723405", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515738.535995253594592, 5276645.986760721541941 ], [ 515732.508316331601236, 5276644.659025863744318 ], [ 515716.102363768965006, 5276637.090574090369046 ], [ 515697.546294967527501, 5276605.165678393095732 ], [ 515685.61847554333508, 5276583.005638701841235 ], [ 515657.802418469276745, 5276525.393802573904395 ], [ 515656.509838146797847, 5276511.675698944367468 ], [ 515659.206845418724697, 5276497.51264941226691 ], [ 515669.027554656204302, 5276479.389965210109949 ], [ 515690.389535606780555, 5276459.753539560362697 ], [ 515720.673259797506034, 5276418.480158785358071 ], [ 515769.744273571937811, 5276382.314627795480192 ], [ 515824.402808693004772, 5276349.465534352697432 ], [ 515842.206213101686444, 5276343.345686382614076 ], [ 515859.86902173969429, 5276347.494809228926897 ], [ 515889.731673930655234, 5276378.617499085143209 ], [ 515901.547703782678582, 5276397.576825224794447 ], [ 515908.92662445170572, 5276402.020333666354418 ], [ 515923.468480878567789, 5276404.727425389923155 ], [ 515945.427448385686148, 5276400.653111041523516 ], [ 515973.579992837447207, 5276408.710082366131246 ], [ 516002.747933306789491, 5276413.502475086599588 ], [ 516012.099863448820543, 5276421.530232624150813 ], [ 516027.226497401134111, 5276421.87191756721586 ], [ 516031.944067607400939, 5276429.864727721549571 ], [ 516047.342452829005197, 5276437.886962060816586 ], [ 516053.834673887584358, 5276436.960167462937534 ], [ 516073.709635037987027, 5276447.717734615318477 ], [ 516075.474278129637241, 5276453.335157182998955 ], [ 516122.290257271612063, 5276470.024377013556659 ], [ 516133.968494326050859, 5276467.889494416303933 ], [ 516166.372586413112003, 5276491.885494121350348 ], [ 516180.27963001281023, 5276509.384156109765172 ], [ 516183.037967550568283, 5276519.561099572107196 ], [ 516191.909639403049368, 5276527.276623711921275 ], [ 516200.672828593815211, 5276576.680351453833282 ], [ 516201.484297049755696, 5276603.578411434777081 ], [ 516207.681215885153506, 5276614.24283638689667 ], [ 516213.295457432570402, 5276621.060212824493647 ], [ 516219.839728639926761, 5276614.86572768446058 ], [ 516216.448315892717801, 5276554.251815258525312 ], [ 516220.640582274703775, 5276540.371031038463116 ], [ 516221.850878584140446, 5276531.916673076339066 ], [ 516211.823525447107386, 5276531.944320818409324 ], [ 516209.883231875603087, 5276495.040550347417593 ], [ 516211.326266924384981, 5276475.828519375994802 ], [ 516211.041706466989126, 5276464.72487526293844 ], [ 516225.591554658138193, 5276467.154896202497184 ], [ 516225.553964687103871, 5276480.647146425209939 ], [ 516250.157463192066643, 5276549.011072927154601 ], [ 516236.271574152400717, 5276556.363131784833968 ], [ 516253.492606375250034, 5276594.676561293192208 ], [ 516270.147114301973488, 5276658.250515365973115 ], [ 516258.813272172468714, 5276698.562572703696787 ], [ 516291.37545846978901, 5276821.118431362323463 ], [ 516309.854525046248455, 5276830.861543190665543 ], [ 516303.141637050779536, 5276835.632867882959545 ], [ 516282.846104557334911, 5276855.036649436689913 ], [ 516277.345949240960181, 5276847.819417729973793 ], [ 516252.455742757359985, 5276863.920727244578302 ], [ 516217.266712748503778, 5276762.040864913724363 ], [ 516202.57157293864293, 5276747.3072899132967 ], [ 516209.481136448855978, 5276709.661272699013352 ], [ 516197.513448089594021, 5276664.805333492346108 ], [ 516176.049981605785433, 5276639.505851536989212 ], [ 516173.968933883821592, 5276572.082741529680789 ], [ 516177.062647754093632, 5276545.340015360154212 ], [ 516170.691975930531044, 5276526.873137758113444 ], [ 516160.522331375337671, 5276515.919879980385303 ], [ 516151.474271408224013, 5276509.493134968914092 ], [ 516139.793746621522587, 5276488.088596286252141 ], [ 516084.315797048737295, 5276474.776178585365415 ], [ 516044.765344845538493, 5276457.251500864513218 ], [ 516014.938195353723131, 5276432.785367758013308 ], [ 515982.745153642783407, 5276421.860817108303308 ], [ 515936.949573575693648, 5276419.023513428866863 ], [ 515895.384233975200914, 5276426.656352461315691 ], [ 515880.71889641386224, 5276394.874869927763939 ], [ 515868.740786949871108, 5276374.725951042957604 ], [ 515862.158595570886973, 5276370.062384689226747 ], [ 515780.974177877011243, 5276387.646404875442386 ], [ 515738.935830716916826, 5276428.554276085458696 ], [ 515713.555327681649942, 5276481.510449754074216 ], [ 515730.412854463036638, 5276563.988216451369226 ], [ 515710.99093292321777, 5276568.970413548871875 ], [ 515724.0696098000044, 5276612.739157604984939 ], [ 515758.878400046203751, 5276650.487358752638102 ], [ 515781.300044359115418, 5276655.449334780685604 ], [ 515798.35565959016094, 5276692.049411842599511 ], [ 515797.3460493835737, 5276812.266453668475151 ], [ 515789.493895635474473, 5276860.635375917889178 ], [ 515797.151130122249015, 5276884.117732216604054 ], [ 515917.25031423807377, 5276874.21992661524564 ], [ 515939.832338418927975, 5276982.109447724185884 ], [ 515957.49437283462612, 5277002.251885491423309 ], [ 515862.462801142188255, 5277011.161257036961615 ], [ 515844.593373540905304, 5277011.923925330862403 ], [ 515834.299449189624283, 5277162.756995934061706 ], [ 515843.02612131589558, 5277204.246974798850715 ], [ 515798.306515273812693, 5277205.681421790271997 ], [ 515795.554721664928365, 5277262.177406931295991 ], [ 515779.821430915617384, 5277311.903131037019193 ], [ 515831.276676695444621, 5277318.777883530594409 ], [ 515865.901195838174317, 5277336.899004547856748 ], [ 515849.334536057605874, 5277386.388884179294109 ], [ 515840.626797774457373, 5277583.7161332834512 ], [ 515713.729134213412181, 5277524.779337232001126 ], [ 515678.155242921144236, 5277502.488813811913133 ], [ 515673.632965421536937, 5277444.417213994078338 ], [ 515676.858414484886453, 5277403.993247509934008 ], [ 515746.526698547706474, 5277407.293167860247195 ], [ 515748.179393855680246, 5277371.010500831529498 ], [ 515675.392678754171357, 5277368.213409269228578 ], [ 515617.770629501261283, 5277333.849739349447191 ], [ 515637.167111700342502, 5277275.842394653707743 ], [ 515769.765451793384273, 5277273.088108932599425 ], [ 515788.704488030343782, 5277193.307750573381782 ], [ 515749.907532078563236, 5277179.132385087199509 ], [ 515779.486665996431839, 5277008.657444330863655 ], [ 515731.436767468927428, 5276893.953516996465623 ], [ 515752.669371165859047, 5276741.19386091735214 ], [ 515761.952872879744973, 5276727.259839132428169 ], [ 515764.36945788434241, 5276700.21498728916049 ], [ 515757.872277061862405, 5276672.568084678612649 ], [ 515745.733679652272258, 5276653.497029547579587 ], [ 515738.535995253594592, 5276645.986760721541941 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 21, "id_source": "w192723423", "type": "farmland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515795.554721664928365, 5277262.177406931295991 ], [ 515905.75714200240327, 5277270.83512631803751 ], [ 515865.901195838174317, 5277336.899004547856748 ], [ 515831.276676695444621, 5277318.777883530594409 ], [ 515779.821430915617384, 5277311.903131037019193 ], [ 515795.554721664928365, 5277262.177406931295991 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 22, "id_source": "w192723428", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515798.38708906742977, 5276572.485462988726795 ], [ 515873.749549317057244, 5276562.576684392057359 ], [ 515880.149400955764577, 5276567.917721018195152 ], [ 515884.054680912871845, 5276603.882047647610307 ], [ 515833.45187001361046, 5276645.832833437249064 ], [ 515818.858019669074565, 5276607.172144838608801 ], [ 515806.844904647674412, 5276605.539114874787629 ], [ 515794.085619043151382, 5276579.931265401653945 ], [ 515798.38708906742977, 5276572.485462988726795 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 23, "id_source": "w196966595", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516211.041706466989126, 5276464.72487526293844 ], [ 516227.810485781636089, 5276436.375393335707486 ], [ 516240.697031539166346, 5276410.393521459773183 ], [ 516241.905427227145992, 5276378.399786206893623 ], [ 516234.716970199136995, 5276375.767962070181966 ], [ 516220.731797365297098, 5276345.810203330591321 ], [ 516200.671451666159555, 5276323.359731398522854 ], [ 516193.854931835376192, 5276300.39044065028429 ], [ 516192.503392380371224, 5276273.190816489048302 ], [ 516195.191014136420563, 5276246.702603463083506 ], [ 516200.708080700365826, 5276223.778729908168316 ], [ 516216.423361853056122, 5276204.428601109422743 ], [ 516244.719529284629971, 5276182.746316477656364 ], [ 516207.434828021330759, 5276187.254739834927022 ], [ 516155.493109741597436, 5276181.697935738600791 ], [ 516119.152642887434922, 5276200.602121556177735 ], [ 516092.366572706669103, 5276216.943371170200408 ], [ 516080.675164416781627, 5276215.510721184313297 ], [ 516076.999326140328776, 5276194.72858227789402 ], [ 516101.645663114904892, 5276137.27081058640033 ], [ 516106.117121804738417, 5276120.223246485926211 ], [ 516101.325343129516114, 5276114.564107088372111 ], [ 516087.859050185827073, 5276111.114911237731576 ], [ 516069.646449418447446, 5276107.285889239050448 ], [ 516029.963876100140624, 5276112.277848879806697 ], [ 515992.545738857821561, 5276118.776679932139814 ], [ 515948.40400142245926, 5276131.058822693303227 ], [ 515907.815727563691325, 5276148.730158792808652 ], [ 515886.647618870600127, 5276159.941935623064637 ], [ 515870.017362831218634, 5276157.073653931729496 ], [ 515840.161274496407714, 5276125.839960495010018 ], [ 515836.020260472723749, 5276096.23223514482379 ], [ 515841.394749842467718, 5276072.785289524123073 ], [ 516347.916011897556018, 5276066.516283508390188 ], [ 516367.796427736233454, 5276123.708988700062037 ], [ 516389.362954811484087, 5276150.143065377138555 ], [ 516421.799500257882755, 5276160.225880493409932 ], [ 516449.507493920740671, 5276158.314668531529605 ], [ 516424.964104821963701, 5276180.740065201185644 ], [ 516446.595749705971684, 5276245.128729283809662 ], [ 516399.442785191757139, 5276270.435633925721049 ], [ 516352.748217105283402, 5276263.713761945255101 ], [ 516324.941392514330801, 5276351.991771013475955 ], [ 516246.087403783516493, 5276341.346379023976624 ], [ 516257.569829047773965, 5276398.704249759204686 ], [ 516246.540639635873958, 5276434.671606441959739 ], [ 516225.591554658138193, 5276467.154896202497184 ], [ 516211.041706466989126, 5276464.72487526293844 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 24, "id_source": "w196966596", "type": "meadow", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516399.442785191757139, 5276270.435633925721049 ], [ 516352.748217105283402, 5276263.713761945255101 ], [ 516324.941392514330801, 5276351.991771013475955 ], [ 516246.087403783516493, 5276341.346379023976624 ], [ 516257.569829047773965, 5276398.704249759204686 ], [ 516246.540639635873958, 5276434.671606441959739 ], [ 516225.591554658138193, 5276467.154896202497184 ], [ 516225.553964687103871, 5276480.647146425209939 ], [ 516250.157463192066643, 5276549.011072927154601 ], [ 516279.743810494837817, 5276535.456865095533431 ], [ 516302.471079674491193, 5276578.820462059229612 ], [ 516328.733999205171131, 5276566.524192654527724 ], [ 516296.700580226955935, 5276442.658209172077477 ], [ 516385.299849574686959, 5276432.926461526192725 ], [ 516407.160075114283245, 5276354.667882501147687 ], [ 516427.736868054489605, 5276326.852059767581522 ], [ 516399.442785191757139, 5276270.435633925721049 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 25, "id_source": "w300143809", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515270.54514752846444, 5277379.440669603645802 ], [ 515267.534429687133525, 5277379.14381055533886 ], [ 515264.690940221771598, 5277378.08052736800164 ], [ 515262.224751876492519, 5277376.329168285243213 ], [ 515260.300820205302443, 5277373.990190947428346 ], [ 515259.046347957279067, 5277371.241751764900982 ], [ 515258.55098892870592, 5277368.261908827349544 ], [ 515258.844259666395374, 5277365.250790806487203 ], [ 515259.910588069586083, 5277362.419522481039166 ], [ 515261.674351394292898, 5277359.967957549728453 ], [ 515264.01498319231905, 5277358.051376167684793 ], [ 515266.774424878240097, 5277356.802732245065272 ], [ 515269.764723137195688, 5277356.299331249669194 ], [ 515272.782962638186291, 5277356.596211115829647 ], [ 515275.618951224256307, 5277357.659478494897485 ], [ 515278.085143517178949, 5277359.410843191668391 ], [ 515280.009072932763956, 5277361.749826354905963 ], [ 515281.26353738468606, 5277364.498270031064749 ], [ 515281.75888513342943, 5277367.478114906698465 ], [ 515281.465602643904276, 5277370.489231810905039 ], [ 515280.399265188374557, 5277373.320496241562068 ], [ 515278.643007874547038, 5277375.772075272165239 ], [ 515276.294839234848041, 5277377.699745013378561 ], [ 515273.535405356495176, 5277378.948384447954595 ], [ 515270.54514752846444, 5277379.440669603645802 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 26, "id_source": "w342070859", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516839.963586148398463, 5276143.426375072449446 ], [ 516838.439616519783158, 5276143.121892026625574 ], [ 516837.827560000296216, 5276141.77533268276602 ], [ 516837.726620722503867, 5276135.117775035090744 ], [ 516838.162006661528721, 5276132.618391271680593 ], [ 516840.365165525116026, 5276131.835669231601059 ], [ 516841.468138979922514, 5276132.261189074255526 ], [ 516841.515505459276028, 5276136.662456697784364 ], [ 516874.566039958852343, 5276136.813685778528452 ], [ 516874.640621629485395, 5276131.812616862356663 ], [ 516876.350770464516245, 5276132.673347151838243 ], [ 516876.774869928311091, 5276134.074935782700777 ], [ 516876.749397363630123, 5276142.8660096693784 ], [ 516876.197353628522251, 5276144.142516307532787 ], [ 516875.520802321960218, 5276144.31837953440845 ], [ 516874.914656018954702, 5276143.527531709522009 ], [ 516875.108359668520279, 5276138.893568772822618 ], [ 516839.856994022673462, 5276138.724859097972512 ], [ 516839.963586148398463, 5276143.426375072449446 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 27, "id_source": "w342070860", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516865.079381514457054, 5276175.56283968873322 ], [ 516864.907803013746161, 5276149.21112700831145 ], [ 516869.804950578254648, 5276149.347562507726252 ], [ 516869.668697533430532, 5276175.642814019694924 ], [ 516865.079381514457054, 5276175.56283968873322 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 28, "id_source": "w342070861", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516840.291171674442012, 5276175.613369910977781 ], [ 516840.16392541944515, 5276165.065847381949425 ], [ 516838.174152984574903, 5276164.793359508737922 ], [ 516837.848215211532079, 5276173.60579299274832 ], [ 516838.842967837641481, 5276175.086826418526471 ], [ 516840.291171674442012, 5276175.613369910977781 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 29, "id_source": "w342070862", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516839.489352556236554, 5276159.362432072870433 ], [ 516838.192113436758518, 5276158.580704009160399 ], [ 516838.026096234971192, 5276156.246291061863303 ], [ 516838.042064468201715, 5276150.722695817239583 ], [ 516839.174252339114901, 5276148.836594664491713 ], [ 516839.885853179905098, 5276149.527717947028577 ], [ 516840.047870046983007, 5276158.441587630659342 ], [ 516839.489352556236554, 5276159.362432072870433 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 30, "id_source": "w342618762", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516840.001674572878983, 5276317.304514355026186 ], [ 516842.377780812443234, 5276316.433381520211697 ], [ 516842.4616356070037, 5276313.41062431037426 ], [ 516842.758207869715989, 5276312.155603405088186 ], [ 516844.321113867976237, 5276309.370516998693347 ], [ 516846.169708019180689, 5276306.497345597483218 ], [ 516846.247167739027645, 5276305.686249883845448 ], [ 516845.963388473028317, 5276302.517947807908058 ], [ 516846.047438146779314, 5276299.428507454693317 ], [ 516845.892143673612736, 5276298.58339661359787 ], [ 516840.138799334876239, 5276298.455618823878467 ], [ 516840.001674572878983, 5276317.304514355026186 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 31, "id_source": "w342618763", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516849.393550617794972, 5276316.375876215286553 ], [ 516849.820335248892661, 5276298.672557604499161 ], [ 516862.663940044585615, 5276298.965350499376655 ], [ 516869.09404198161792, 5276298.839489356614649 ], [ 516874.841372351918835, 5276303.635145555250347 ], [ 516876.299515347112902, 5276308.496175267733634 ], [ 516874.957424496475141, 5276312.837848719209433 ], [ 516874.650605472736061, 5276317.627080745063722 ], [ 516871.989259079913609, 5276318.430690300650895 ], [ 516869.706010156485718, 5276315.767837634310126 ], [ 516867.122319232614245, 5276315.693670731969178 ], [ 516865.198173635930289, 5276316.121543436311185 ], [ 516849.393550617794972, 5276316.375876215286553 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 32, "id_source": "w342618765", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516842.103269751300104, 5276333.436961284838617 ], [ 516846.09217093285406, 5276333.304016049951315 ], [ 516847.94270778761711, 5276332.353567541576922 ], [ 516849.944113737496082, 5276331.181276699528098 ], [ 516850.976566355850082, 5276330.006182996556163 ], [ 516851.057242047216278, 5276328.08369963336736 ], [ 516849.732858774601482, 5276326.312746741808951 ], [ 516849.445674309157766, 5276324.322515316307545 ], [ 516849.667102576990146, 5276323.078391308896244 ], [ 516848.41654453711817, 5276321.752211103215814 ], [ 516845.985042623593472, 5276321.000541678629816 ], [ 516842.58284878951963, 5276320.846220458857715 ], [ 516839.976015429070685, 5276320.983164083212614 ], [ 516839.955240761395544, 5276322.97250457201153 ], [ 516841.795922507939395, 5276322.833345399238169 ], [ 516842.103269751300104, 5276333.436961284838617 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 33, "id_source": "w342618766", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516834.060515898861922, 5276340.582219516858459 ], [ 516833.999788983026519, 5276338.203654447570443 ], [ 516837.595280821493361, 5276336.446926719509065 ], [ 516841.360352354997303, 5276335.790974584408104 ], [ 516844.245738796307705, 5276335.432557820342481 ], [ 516847.641891677048989, 5276335.075619975104928 ], [ 516850.226410214731004, 5276334.860817460343242 ], [ 516852.001641638984438, 5276333.976836183108389 ], [ 516853.777484666788951, 5276332.881691790185869 ], [ 516854.891500349156559, 5276332.073595806024969 ], [ 516856.072474469430745, 5276331.487973224371672 ], [ 516859.250160119729117, 5276331.352689253166318 ], [ 516860.646419937082101, 5276331.64569441601634 ], [ 516863.163113818038255, 5276331.508499074727297 ], [ 516866.341668640263379, 5276331.073144298046827 ], [ 516867.891114889236633, 5276330.344109577126801 ], [ 516869.451485043333378, 5276328.437026088126004 ], [ 516870.785455524746794, 5276326.896048210561275 ], [ 516871.964307384158019, 5276327.043944713659585 ], [ 516874.100963943870738, 5276328.450495004653931 ], [ 516876.459543989039958, 5276331.03576997667551 ], [ 516877.558580015029293, 5276332.806075979955494 ], [ 516878.737888063827995, 5276335.387934657745063 ], [ 516858.794641599641182, 5276335.619135149754584 ], [ 516858.856532025500201, 5276340.187155994586647 ], [ 516834.060515898861922, 5276340.582219516858459 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 34, "id_source": "w342618767", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516902.493528608873021, 5276320.78638772200793 ], [ 516897.75229941814905, 5276316.149218405596912 ], [ 516897.195012957556173, 5276316.647730220109224 ], [ 516895.35987316846149, 5276314.875285129994154 ], [ 516888.603294469648972, 5276321.390703242272139 ], [ 516887.741398174548522, 5276320.732479789294302 ], [ 516882.678544542053714, 5276325.985823540948331 ], [ 516882.880446975876112, 5276326.297599968500435 ], [ 516881.267589553899597, 5276328.171185835264623 ], [ 516879.353850786865223, 5276325.009271685034037 ], [ 516878.84455880720634, 5276321.906998065300286 ], [ 516878.786329990951344, 5276318.672664055600762 ], [ 516878.643383346963674, 5276316.160492591559887 ], [ 516878.579994241823442, 5276312.114823862910271 ], [ 516878.438528888800647, 5276309.091414116322994 ], [ 516878.744295267795678, 5276307.258495224639773 ], [ 516880.817795314185787, 5276304.541582104749978 ], [ 516882.885337260668166, 5276303.880736844614148 ], [ 516884.882474761572666, 5276304.186603574082255 ], [ 516887.755470029194839, 5276305.517495769076049 ], [ 516891.293327631894499, 5276308.106196179054677 ], [ 516893.870187344029546, 5276310.536515596322715 ], [ 516896.012002412695438, 5276312.754408658482134 ], [ 516897.262325910618529, 5276314.158396220766008 ], [ 516902.490468366770074, 5276319.252650953829288 ], [ 516902.493528608873021, 5276320.78638772200793 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 35, "id_source": "w342618768", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516889.246283532760572, 5276301.698613105341792 ], [ 516883.483208679361269, 5276302.33762816619128 ], [ 516880.013209776720032, 5276302.249772400595248 ], [ 516877.876094076375011, 5276300.998814284801483 ], [ 516874.857794859563001, 5276297.967068654485047 ], [ 516872.423862048017327, 5276295.459374033845961 ], [ 516870.731841609871481, 5276293.542869847267866 ], [ 516869.847952455747873, 5276292.695647917687893 ], [ 516875.623787402058952, 5276287.655524424277246 ], [ 516889.545908253116067, 5276273.492227412760258 ], [ 516892.281101699511055, 5276273.13339876383543 ], [ 516893.910225590167101, 5276273.427087199874222 ], [ 516911.137140598497353, 5276290.414771029725671 ], [ 516909.657854619377758, 5276292.844435356557369 ], [ 516908.252398803771939, 5276293.129318228922784 ], [ 516905.96634972532047, 5276291.43335865624249 ], [ 516901.254144720907789, 5276287.140804120339453 ], [ 516898.676213512255345, 5276285.077239450067282 ], [ 516896.904410077724606, 5276284.772021752782166 ], [ 516893.566639267490245, 5276288.296581671573222 ], [ 516889.047854661592282, 5276292.417873037047684 ], [ 516888.09159660973819, 5276293.215305970981717 ], [ 516885.946967976517044, 5276291.964323135092854 ], [ 516884.028165822499432, 5276293.136841103434563 ], [ 516882.483706183149479, 5276294.732775627635419 ], [ 516889.246283532760572, 5276301.698613105341792 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 36, "id_source": "w342618769", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516849.975431495055091, 5276320.356360760517418 ], [ 516851.8123384086648, 5276324.118197196163237 ], [ 516853.720896689395886, 5276326.47988139372319 ], [ 516855.715937200409826, 5276327.508140136487782 ], [ 516858.742756086867303, 5276327.594698653556406 ], [ 516861.251103833317757, 5276327.746441533789039 ], [ 516864.135626647679601, 5276327.688109288923442 ], [ 516866.052289261715487, 5276327.249100607819855 ], [ 516868.197477128880564, 5276325.710471387952566 ], [ 516869.236608734936453, 5276324.824363468214869 ], [ 516869.682542661321349, 5276323.869853686541319 ], [ 516868.949849321856163, 5276322.689650672487915 ], [ 516867.182529767858796, 5276320.83961312379688 ], [ 516866.37620318797417, 5276319.147954587824643 ], [ 516865.635578905115835, 5276318.112210646271706 ], [ 516863.860565833339933, 5276318.91839062422514 ], [ 516862.88972504431149, 5276322.160858820192516 ], [ 516862.515719324641395, 5276324.21586038172245 ], [ 516860.00589013233548, 5276324.575355288572609 ], [ 516857.498602538136765, 5276324.056855018250644 ], [ 516857.061838299734518, 5276321.843910871073604 ], [ 516857.286485051678028, 5276319.488399492576718 ], [ 516856.847790368250571, 5276317.942287973128259 ], [ 516855.07641294284258, 5276317.492602572776377 ], [ 516851.386665978992824, 5276318.070966043509543 ], [ 516849.462908179499209, 5276318.36547742690891 ], [ 516849.975431495055091, 5276320.356360760517418 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 37, "id_source": "w342618770", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516905.054138185689226, 5276352.101874426007271 ], [ 516898.350374342000578, 5276345.602975036017597 ], [ 516903.018478880927432, 5276341.782201295718551 ], [ 516904.854865894943941, 5276343.121207697317004 ], [ 516909.005345055367798, 5276339.07665690779686 ], [ 516907.606708089297172, 5276337.016511903144419 ], [ 516911.755676713073626, 5276333.494315310381353 ], [ 516918.31050590594532, 5276339.548238541930914 ], [ 516905.054138185689226, 5276352.101874426007271 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 38, "id_source": "w343045449", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516824.077421205292922, 5276442.179520559497178 ], [ 516824.103619314031675, 5276433.110595526173711 ], [ 516830.878377931017894, 5276433.230195969343185 ], [ 516830.852747403609101, 5276442.099071180447936 ], [ 516824.077421205292922, 5276442.179520559497178 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 39, "id_source": "w343045452", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516845.197392237838358, 5276458.278031245805323 ], [ 516845.423262091760989, 5276452.899522116407752 ], [ 516856.952532380353659, 5276453.032907165586948 ], [ 516857.042407884611748, 5276458.312304059043527 ], [ 516845.197392237838358, 5276458.278031245805323 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 40, "id_source": "w345737630", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517198.031714984565042, 5276451.651735503226519 ], [ 517203.796214410627726, 5276453.035779909230769 ], [ 517208.593114830437116, 5276456.506398309953511 ], [ 517211.687835552613251, 5276461.550174494273961 ], [ 517212.616989838832524, 5276467.387757888063788 ], [ 517211.232989612733945, 5276473.129593194462359 ], [ 517207.748713313078042, 5276477.909420877695084 ], [ 517202.692073725978844, 5276481.006395558826625 ], [ 517196.838186720618978, 5276481.922681125812232 ], [ 517191.073681523790583, 5276480.549757359549403 ], [ 517186.276823462336324, 5276477.068039351142943 ], [ 517183.182056372985244, 5276472.035390463657677 ], [ 517182.252873389690649, 5276466.197811791673303 ], [ 517183.636879390513059, 5276460.444855847395957 ], [ 517187.121146148361731, 5276455.665013891644776 ], [ 517192.177766465058085, 5276452.57913966011256 ], [ 517198.031714984565042, 5276451.651735503226519 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 41, "id_source": "w345744104", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517259.964529229910113, 5276607.73071498144418 ], [ 517262.758359184081201, 5276607.816793796606362 ], [ 517265.301923562132288, 5276608.713452448137105 ], [ 517266.650065713329241, 5276610.00667099840939 ], [ 517267.162947366770823, 5276611.819770255126059 ], [ 517266.895452177501284, 5276613.374934200197458 ], [ 517265.442617826163769, 5276614.459796715527773 ], [ 517257.89919721649494, 5276615.27098586037755 ], [ 517256.670734889106825, 5276614.144833649508655 ], [ 517254.170060470118187, 5276611.447841245681047 ], [ 517255.650236769462936, 5276611.274403218179941 ], [ 517257.042655503668357, 5276612.83448622841388 ], [ 517262.985662306426093, 5276612.21860325243324 ], [ 517259.964529229910113, 5276607.73071498144418 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 42, "id_source": "w345744105", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517240.901260687445756, 5276615.476259981282055 ], [ 517237.858455763373058, 5276615.767329943366349 ], [ 517235.577870710287243, 5276614.838119643740356 ], [ 517234.329403823299799, 5276612.856136604212224 ], [ 517234.143481754988898, 5276607.154115339741111 ], [ 517235.503110585385002, 5276604.568582092411816 ], [ 517238.212239413638599, 5276602.820591975003481 ], [ 517241.744840459839907, 5276601.997501282952726 ], [ 517244.245977763726842, 5276602.004906795918941 ], [ 517252.150148084503599, 5276608.73004618473351 ], [ 517253.818200126057491, 5276611.057809507474303 ], [ 517247.214726768492255, 5276611.505036083981395 ], [ 517245.448273388494272, 5276609.432604781351984 ], [ 517237.093243043578696, 5276610.385899258777499 ], [ 517240.901260687445756, 5276615.476259981282055 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 43, "id_source": "w387419746", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517074.34571770747425, 5277286.481291118077934 ], [ 517073.815601031994447, 5277285.423907616175711 ], [ 517073.622539670730475, 5277264.184509105980396 ], [ 517075.53335638466524, 5277263.078713825903833 ], [ 517076.426174592168536, 5277263.381409962661564 ], [ 517088.862423049926292, 5277273.798362581990659 ], [ 517075.503046040714253, 5277286.217949401587248 ], [ 517074.34571770747425, 5277286.481291118077934 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 44, "id_source": "w395097932", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516950.782598124700598, 5277399.771897230297327 ], [ 516976.789713834121358, 5277399.725418890826404 ], [ 516976.812687043042388, 5277412.451004424132407 ], [ 516976.815368280746043, 5277414.106996771879494 ], [ 516976.851422933628783, 5277435.223683521151543 ], [ 516951.114820280869026, 5277435.270948335528374 ], [ 516929.053089810709935, 5277455.111913793720305 ], [ 516993.976177690085024, 5277455.067660893313587 ], [ 516993.189909731387161, 5277402.829610265791416 ], [ 516993.096773312136065, 5277398.717162104323506 ], [ 517005.671745092316996, 5277397.586909036152065 ], [ 517007.685480395273771, 5277392.0802520820871 ], [ 517007.646211590908933, 5277384.956069781444967 ], [ 517006.950365502969362, 5277378.930254627019167 ], [ 517004.12191711430205, 5277377.966190176084638 ], [ 516950.912539526296314, 5277378.355617901310325 ], [ 516950.856917472730856, 5277397.460403767414391 ], [ 516950.782598124700598, 5277399.771897230297327 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 45, "id_source": "w395097933", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516863.034932061680593, 5277387.269473287276924 ], [ 516860.046953876328189, 5277386.927400229498744 ], [ 516859.866241743031424, 5277374.123562324792147 ], [ 516805.30252495984314, 5277375.388404211960733 ], [ 516805.397113104758319, 5277381.645852354355156 ], [ 516793.801258020394016, 5277381.801331114023924 ], [ 516794.674426411744207, 5277464.414125978015363 ], [ 516802.348777721053921, 5277464.669662701897323 ], [ 516802.256327421520837, 5277470.682064110413194 ], [ 516805.464359833393246, 5277470.224535719491541 ], [ 516805.017967201885767, 5277489.583817024715245 ], [ 516809.396681535465177, 5277492.01930742431432 ], [ 516806.79525656288024, 5277498.268973419442773 ], [ 516804.580934366211295, 5277497.895819933153689 ], [ 516794.048058926768135, 5277494.108898930251598 ], [ 516788.810651340521872, 5277489.959389437921345 ], [ 516785.688078753475565, 5277486.827354734763503 ], [ 516783.973901469027624, 5277482.287905092351139 ], [ 516783.984698798099998, 5277478.542521808296442 ], [ 516782.501129335782025, 5277341.891761313192546 ], [ 516784.074300747073721, 5277340.651529593393207 ], [ 516891.373962575104088, 5277339.328077659010887 ], [ 516891.272426267038099, 5277345.851694053970277 ], [ 516875.455994656716939, 5277345.961425642482936 ], [ 516863.034932061680593, 5277387.269473287276924 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 46, "id_source": "w395097934", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517019.950111921411008, 5277384.08067733515054 ], [ 517019.962440094444901, 5277387.570506259799004 ], [ 517020.398079790233169, 5277387.549551795236766 ], [ 517021.397391892562155, 5277472.152171716094017 ], [ 517021.509628261090256, 5277479.998977976851165 ], [ 517019.369208245712798, 5277480.037176531739533 ], [ 517019.571434503071941, 5277487.928701876662672 ], [ 517007.404942470835522, 5277488.115428001619875 ], [ 517007.331165642826818, 5277485.092206737957895 ], [ 517004.185800015751738, 5277484.660687646828592 ], [ 516999.904898837383371, 5277484.759326064959168 ], [ 516999.840834557253402, 5277480.980381866917014 ], [ 516999.51992562081432, 5277480.29037737287581 ], [ 516928.875338061538059, 5277480.084533797577024 ], [ 516928.283628532488365, 5277482.127787612378597 ], [ 517024.800330617115833, 5277497.502023031003773 ], [ 517024.957025903160684, 5277495.279682827182114 ], [ 517025.822427126695402, 5277481.834283281117678 ], [ 517025.979773205064703, 5277479.389665226452053 ], [ 517027.62866405560635, 5277454.832566075026989 ], [ 517027.720339584862813, 5277449.164698623120785 ], [ 517027.833178302680608, 5277441.396348789334297 ], [ 517027.170987900812179, 5277403.328993655741215 ], [ 517073.383038537052926, 5277394.517563253641129 ], [ 517074.671501213044394, 5277393.065408975817263 ], [ 517077.008046307542827, 5277390.182624198496342 ], [ 517079.219773042947054, 5277388.888774883002043 ], [ 517077.084387493494432, 5277376.957199269905686 ], [ 517072.18918880529236, 5277376.509397665970027 ], [ 517024.003603314515203, 5277377.024030573666096 ], [ 517024.058002053876407, 5277384.103801283054054 ], [ 517019.950111921411008, 5277384.08067733515054 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 47, "id_source": "w395097935", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516868.770101723086555, 5277393.298754908144474 ], [ 516870.462444369506557, 5277382.034073974005878 ], [ 516877.840151886281092, 5277360.305381040088832 ], [ 516878.285049677535426, 5277393.359672509133816 ], [ 516874.845611660857685, 5277393.316360782831907 ], [ 516868.770101723086555, 5277393.298754908144474 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 48, "id_source": "w395097936", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516842.170450465055183, 5277437.210915596224368 ], [ 516842.529669232899323, 5277406.492889385670424 ], [ 516874.762992984557059, 5277406.275032329373062 ], [ 516875.365418186527677, 5277400.530846133828163 ], [ 516886.599087996815797, 5277400.952406934462488 ], [ 516928.285059344372712, 5277437.727399924769998 ], [ 516842.170450465055183, 5277437.210915596224368 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 49, "id_source": "w395097937", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516901.92081075895112, 5277346.138218006119132 ], [ 516902.023585006361827, 5277339.192273776046932 ], [ 516935.466940246638842, 5277338.789325847290456 ], [ 516935.197084536834154, 5277351.525171746499836 ], [ 516925.251642388233449, 5277352.274231209419668 ], [ 516925.482551758817863, 5277389.095547544769943 ], [ 516923.454844661755487, 5277389.100767223164439 ], [ 516906.287520830519497, 5277388.939752215519547 ], [ 516905.630570620356593, 5277346.204558455385268 ], [ 516901.92081075895112, 5277346.138218006119132 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 50, "id_source": "w400596004", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516849.974800481111743, 5276626.91305841691792 ], [ 516851.588837718300056, 5276627.195578062906861 ], [ 516852.968300470733084, 5276628.077573969960213 ], [ 516853.903269579051994, 5276629.425070749595761 ], [ 516854.259192514640745, 5276631.0153992716223 ], [ 516853.969115059589967, 5276632.626086154952645 ], [ 516853.086353658582084, 5276634.001664360053837 ], [ 516851.746715493267402, 5276634.931361604481936 ], [ 516850.14586920524016, 5276635.28237665258348 ], [ 516848.53183414414525, 5276634.999857395887375 ], [ 516847.152372373675462, 5276634.117862526327372 ], [ 516846.209859439579304, 5276632.78145897667855 ], [ 516845.861477453028783, 5276631.180038791149855 ], [ 516846.144009696785361, 5276629.580443668179214 ], [ 516847.026770114374813, 5276628.204864426515996 ], [ 516848.373952101857867, 5276627.264073950238526 ], [ 516849.974800481111743, 5276626.91305841691792 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 51, "id_source": "w400597926", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516888.607160441344604, 5276599.795725983567536 ], [ 516886.369678344228305, 5276599.52250230871141 ], [ 516884.029363043198828, 5276598.448775165714324 ], [ 516883.395219611236826, 5276596.968778026290238 ], [ 516883.085302418854553, 5276595.056275879964232 ], [ 516883.62289607146522, 5276593.56856178957969 ], [ 516884.581714557483792, 5276591.870903476141393 ], [ 516886.131867414689623, 5276590.87514031957835 ], [ 516887.99580426060129, 5276590.458214192651212 ], [ 516890.811793032684363, 5276590.677546450868249 ], [ 516892.297282087907661, 5276591.259781807661057 ], [ 516893.518791984417476, 5276592.219126921147108 ], [ 516894.371040587546304, 5276593.599732105620205 ], [ 516894.735690879111644, 5276594.767757330089808 ], [ 516894.626217450713739, 5276596.256712383590639 ], [ 516894.035593363863882, 5276597.899867290630937 ], [ 516892.80841081199469, 5276598.896565194241703 ], [ 516891.161648435052484, 5276599.536399168893695 ], [ 516888.607160441344604, 5276599.795725983567536 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 52, "id_source": "w400601709", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517066.445795848267153, 5276532.830110687762499 ], [ 517067.877435012836941, 5276533.845678032375872 ], [ 517068.354426381760277, 5276535.114069206640124 ], [ 517068.192167645844165, 5276536.658436276949942 ], [ 517066.856824344606139, 5276538.66615242511034 ], [ 517061.78498737240443, 5276544.430558699183166 ], [ 517059.439831006515305, 5276545.012729303911328 ], [ 517056.992971596890129, 5276544.416521552950144 ], [ 517055.405457444372587, 5276542.767003753222525 ], [ 517055.034073568182066, 5276541.343327248468995 ], [ 517055.144663006940391, 5276539.487617188133299 ], [ 517055.953483059303835, 5276537.733977769501507 ], [ 517057.392739939736202, 5276536.148894566111267 ], [ 517065.011811412288807, 5276532.61474306602031 ], [ 517065.860555740597192, 5276532.617230146192014 ], [ 517066.445795848267153, 5276532.830110687762499 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 53, "id_source": "w400613444", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516987.452493651013356, 5276596.971303411759436 ], [ 516983.756675439246465, 5276573.932366390712559 ], [ 516981.214040140039288, 5276567.545529939234257 ], [ 516987.642917154124007, 5276557.439447787590325 ], [ 516980.883114801777992, 5276552.240621170029044 ], [ 516994.80080003826879, 5276529.175265032798052 ], [ 516975.883787118422333, 5276512.549156718887389 ], [ 517036.108190654893406, 5276502.144512789323926 ], [ 517036.32497173291631, 5276505.068122293800116 ], [ 517006.788756772992201, 5276544.514203958213329 ], [ 517025.338118888263125, 5276558.371959769167006 ], [ 517025.328469115775079, 5276561.672782326117158 ], [ 517003.51125269010663, 5276586.593259064480662 ], [ 517002.50389213958988, 5276594.614608574658632 ], [ 516987.452493651013356, 5276596.971303411759436 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 54, "id_source": "w435813577", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516565.160712962970138, 5277473.936993055045605 ], [ 516586.958641037694179, 5277459.239679417572916 ], [ 516582.635480685392395, 5277455.715344563126564 ], [ 516586.365512145508546, 5277453.914389882236719 ], [ 516589.487032977747731, 5277454.823516473174095 ], [ 516592.104793138511013, 5277455.942374826408923 ], [ 516593.513503284135368, 5277457.046674339100718 ], [ 516602.634818743506912, 5277471.331923814490438 ], [ 516602.927762665727641, 5277473.944546245038509 ], [ 516602.719261647376698, 5277475.955583387054503 ], [ 516602.210971284541301, 5277477.754599887877703 ], [ 516601.605877951718867, 5277479.264376729726791 ], [ 516600.597284538904205, 5277480.061707899905741 ], [ 516598.478668734082021, 5277480.355745058506727 ], [ 516595.979775559797417, 5277474.424866015091538 ], [ 516567.273035817081109, 5277475.854609301313758 ], [ 516565.959991996991448, 5277475.439655515365303 ], [ 516565.73545712226769, 5277475.172280942089856 ], [ 516565.263984411314595, 5277474.593012128025293 ], [ 516565.160712962970138, 5277473.936993055045605 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 55, "id_source": "w435819540", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516654.01805674447678, 5277499.941602813079953 ], [ 516653.819298847403843, 5277498.540671728551388 ], [ 516654.430482894182205, 5277497.53104710765183 ], [ 516669.56221590784844, 5277487.238343390636146 ], [ 516671.478355312021449, 5277486.843726397491992 ], [ 516673.691735107859131, 5277487.550246145576239 ], [ 516675.402245739591308, 5277488.155300498940051 ], [ 516676.510509447951335, 5277489.269873730838299 ], [ 516677.712993269320577, 5277491.573913846164942 ], [ 516678.007048576080706, 5277493.786439917981625 ], [ 516677.797089598549064, 5277496.297599874436855 ], [ 516677.087446670804638, 5277497.595903730019927 ], [ 516676.175295095425099, 5277498.80471570417285 ], [ 516674.971440919849556, 5277499.601474764756858 ], [ 516673.558459573832806, 5277499.997531560249627 ], [ 516654.872834386012983, 5277500.410835509188473 ], [ 516654.01805674447678, 5277499.941602813079953 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 56, "id_source": "w435819541", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516592.562656500318553, 5277392.782894633710384 ], [ 516593.564105231547728, 5277394.497302561067045 ], [ 516595.476563399017323, 5277395.402986350469291 ], [ 516597.790752420609351, 5277395.0094796391204 ], [ 516607.365527006273624, 5277392.525022241286933 ], [ 516609.186061897780746, 5277391.429930838756263 ], [ 516610.090706246264745, 5277390.221087141893804 ], [ 516610.906056514824741, 5277388.723025188781321 ], [ 516611.007426889962517, 5277387.41186405159533 ], [ 516611.011422151408624, 5277386.011513214558363 ], [ 516610.609057795954868, 5277384.898966672830284 ], [ 516609.80949227954261, 5277383.496323361061513 ], [ 516605.273280631110538, 5277386.195196626707911 ], [ 516597.643240055942442, 5277375.626267831772566 ], [ 516603.089583630498964, 5277372.429854614660144 ], [ 516602.087531711440533, 5277370.92660912219435 ], [ 516600.077469086798374, 5277370.009530962444842 ], [ 516597.261530381045304, 5277369.901477105915546 ], [ 516594.94039169914322, 5277370.094912517815828 ], [ 516593.023047319846228, 5277370.900768828578293 ], [ 516591.11324507399695, 5277371.695533276535571 ], [ 516588.691058366501238, 5277373.088993662036955 ], [ 516587.575568009051494, 5277374.497291675768793 ], [ 516586.969644743367098, 5277376.296031087636948 ], [ 516586.964198803470936, 5277378.207621091045439 ], [ 516587.058978121494874, 5277379.208149813115597 ], [ 516591.701180707721505, 5277376.209486835636199 ], [ 516597.807354450516868, 5277389.185798333026469 ], [ 516592.562656500318553, 5277392.782894633710384 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 57, "id_source": "w437560217", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516148.231295185163617, 5276961.166997685097158 ], [ 516140.350367845327128, 5276932.226588282734156 ], [ 516145.994908686319832, 5276930.741850190795958 ], [ 516150.628329529135954, 5276930.954750994220376 ], [ 516153.84672470134683, 5276932.264013238251209 ], [ 516155.854510829958599, 5276934.081161126494408 ], [ 516157.667300542409066, 5276935.797742884606123 ], [ 516158.669265022152103, 5276937.40093541238457 ], [ 516161.355179659789428, 5276949.255885404534638 ], [ 516160.846672745014075, 5276951.166077611967921 ], [ 516159.428011789685115, 5276953.573872858658433 ], [ 516157.309768773964606, 5276956.379830311983824 ], [ 516155.186268224904779, 5276958.374453850090504 ], [ 516152.162593252724037, 5276959.977592044509947 ], [ 516148.231295185163617, 5276961.166997685097158 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 58, "id_source": "w437582713", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516041.836825901409611, 5277296.659471808932722 ], [ 516043.63620664307382, 5277300.487638493068516 ], [ 516046.049194930470549, 5277302.394778434187174 ], [ 516047.757312518602703, 5277303.910987295210361 ], [ 516049.768066141288728, 5277304.616710420697927 ], [ 516051.277302989154123, 5277304.720896753482521 ], [ 516099.248974451620597, 5277294.817420925945044 ], [ 516101.565135880198795, 5277293.712427788414061 ], [ 516103.589759587019216, 5277292.117614130489528 ], [ 516104.19446591072483, 5277290.70781128667295 ], [ 516104.70735214772867, 5277287.197212439961731 ], [ 516104.509284499159548, 5277285.496225762180984 ], [ 516103.423106525558978, 5277279.058227592147887 ], [ 516087.800845949270297, 5277282.22698091994971 ], [ 516089.394682380952872, 5277289.766662889160216 ], [ 516061.682170145155396, 5277295.313822302035987 ], [ 516060.780937482253648, 5277292.599525346420705 ], [ 516041.836825901409611, 5277296.659471808932722 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 59, "id_source": "w437582716", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516087.971930546045769, 5277329.028421093709767 ], [ 516082.89834433136275, 5277306.119606190361083 ], [ 516099.22767809801735, 5277302.519349787384272 ], [ 516102.242739444889594, 5277303.961390778422356 ], [ 516103.041608022584114, 5277305.664039053954184 ], [ 516103.646015100879595, 5277307.077186118811369 ], [ 516103.497296726854984, 5277325.548209192231297 ], [ 516087.971930546045769, 5277329.028421093709767 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 60, "id_source": "w437589848", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516013.250200282898732, 5277322.420780627056956 ], [ 516009.765244867128786, 5277306.14033189509064 ], [ 516034.405782080197241, 5277300.684490776620805 ], [ 516038.566727487370372, 5277308.731358015909791 ], [ 516043.982657742511947, 5277316.481609044596553 ], [ 516013.250200282898732, 5277322.420780627056956 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 61, "id_source": "w438978440", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516964.874102490895893, 5276715.691669804044068 ], [ 516960.952699856192339, 5276713.368539907038212 ], [ 516958.644364364212379, 5276711.650264710187912 ], [ 516956.640245083544869, 5276708.632540868595243 ], [ 516955.839597265876364, 5276705.018166916444898 ], [ 516954.745445047039539, 5276701.602990162558854 ], [ 516952.63383963907836, 5276699.38516120519489 ], [ 516949.717994845064823, 5276697.365043761208653 ], [ 516947.306536089163274, 5276694.946292435750365 ], [ 516945.2029859998147, 5276692.539552057161927 ], [ 516944.304429570096545, 5276689.013806753791869 ], [ 516943.812005724117626, 5276685.300305660814047 ], [ 516943.019439475552645, 5276681.485905591398478 ], [ 516942.119392637105193, 5276678.471399303525686 ], [ 516940.82068906276254, 5276675.655785036273301 ], [ 516938.710814528341871, 5276672.837811584584415 ], [ 516937.505676006956492, 5276671.422831314615905 ], [ 516938.313989993766882, 5276669.824769679456949 ], [ 516940.339383224258199, 5276668.119108679704368 ], [ 516942.055054935975932, 5276667.023816044442356 ], [ 516943.256789020786528, 5276667.027312304824591 ], [ 516946.076498124748468, 5276668.535903649404645 ], [ 516949.593225368706044, 5276670.557767959311604 ], [ 516953.719524624990299, 5276672.170191851444542 ], [ 516956.544179731572513, 5276671.978364228270948 ], [ 516960.776273791969288, 5276670.790378994308412 ], [ 516964.301768365025055, 5276669.800390003249049 ], [ 516967.932448230974842, 5276668.799595638178289 ], [ 516971.259748495649546, 5276668.809291303157806 ], [ 516973.169148603861686, 5276670.826485947705805 ], [ 516974.975469093071297, 5276672.132086229510605 ], [ 516977.393956848361995, 5276672.13913638330996 ], [ 516980.116669326205738, 5276670.846739260479808 ], [ 516982.42796411953168, 5276671.553659514524043 ], [ 516983.734742814325728, 5276674.169255105778575 ], [ 516984.435185535170604, 5276676.082902009598911 ], [ 516984.731826092931442, 5276677.384102518670261 ], [ 516984.11904106521979, 5276678.893816226162016 ], [ 516982.699575853766873, 5276684.013220119290054 ], [ 516982.383432620612439, 5276686.824134463444352 ], [ 516983.378658129891846, 5276693.2509158058092 ], [ 516985.475417279987596, 5276697.980471583083272 ], [ 516987.379550827143248, 5276701.798120092600584 ], [ 516989.588198829093017, 5276704.216296444647014 ], [ 516989.98823685006937, 5276706.117953753098845 ], [ 516989.170619533280842, 5276708.327249999158084 ], [ 516985.538394717557821, 5276712.439940376207232 ], [ 516982.300851388135925, 5276715.142308777198195 ], [ 516979.075228797388263, 5276716.33321273047477 ], [ 516974.438748443732038, 5276717.119902653619647 ], [ 516971.118986550602131, 5276717.11022699251771 ], [ 516967.793171100725885, 5276716.600406582467258 ], [ 516964.874102490895893, 5276715.691669804044068 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 62, "id_source": "w511510926", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516345.249631054000929, 5277449.853823395445943 ], [ 516346.759324829850812, 5277441.75596734508872 ], [ 516348.962936142401304, 5277429.914647633209825 ], [ 516344.274934911285527, 5277425.211383985355496 ], [ 516347.566448008583393, 5277421.764176031574607 ], [ 516344.424651509500109, 5277420.032687746919692 ], [ 516343.132455579412635, 5277420.206884070299566 ], [ 516342.425155669741798, 5277420.693913970142603 ], [ 516340.761748474324122, 5277427.368749489076436 ], [ 516345.421530891850125, 5277428.748849832452834 ], [ 516343.572270487900823, 5277437.423680024221539 ], [ 516346.770090397272725, 5277437.92167298682034 ], [ 516344.393916437285952, 5277449.706939280033112 ], [ 516344.769251767138485, 5277449.763562897220254 ], [ 516345.249631054000929, 5277449.853823395445943 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 63, "id_source": "w511510929", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516461.098823564767372, 5277428.007816318422556 ], [ 516457.02458500477951, 5277426.718190221115947 ], [ 516453.567786264000461, 5277424.852384639903903 ], [ 516452.598508212831803, 5277422.37122683506459 ], [ 516453.50194973917678, 5277418.917330568656325 ], [ 516455.016176005243324, 5277417.243398266844451 ], [ 516457.949517434288282, 5277415.662389588542283 ], [ 516461.501183607848361, 5277415.850254211574793 ], [ 516464.518171595002059, 5277416.558966252952814 ], [ 516466.490847017907072, 5277417.420321987941861 ], [ 516461.098823564767372, 5277428.007816318422556 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 64, "id_source": "w511510936", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516413.291072103602346, 5277414.558290612883866 ], [ 516399.563981445098761, 5277400.849407986737788 ], [ 516400.101065565017052, 5277399.47278680279851 ], [ 516401.970277152664494, 5277399.744787974283099 ], [ 516428.889549283951055, 5277409.111976910382509 ], [ 516429.463419294392224, 5277410.669554119929671 ], [ 516429.05663146689767, 5277411.112965608946979 ], [ 516414.003883312281687, 5277414.782579838298261 ], [ 516413.291072103602346, 5277414.558290612883866 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 65, "id_source": "w511510937", "type": "hedge", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516387.519644212210551, 5277392.268841031938791 ], [ 516412.032716302375775, 5277418.711373525671661 ], [ 516435.044775786926039, 5277412.808077803812921 ], [ 516436.348208549723495, 5277408.655127067118883 ], [ 516388.272886697610375, 5277391.470754365436733 ], [ 516387.521771378815174, 5277391.513096115551889 ], [ 516387.519644212210551, 5277392.268841031938791 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 66, "id_source": "w511510938", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516349.122218859847635, 5277389.237914191558957 ], [ 516376.971867700514849, 5277417.645729565061629 ], [ 516375.131277973239776, 5277423.219772600568831 ], [ 516379.251133432786446, 5277426.987888126634061 ], [ 516387.022299335862044, 5277424.886984696611762 ], [ 516383.886990124185104, 5277420.85489853285253 ], [ 516394.010882213362493, 5277418.004874652251601 ], [ 516362.986457669641823, 5277386.264972837641835 ], [ 516367.564459832792636, 5277384.688541206531227 ], [ 516361.748995233152527, 5277382.993984006345272 ], [ 516358.775819219939876, 5277382.718893859535456 ], [ 516356.288664200867061, 5277383.200921459123492 ], [ 516353.086101360968314, 5277384.381121629849076 ], [ 516350.820624282234348, 5277386.152996275573969 ], [ 516349.350730523292441, 5277388.093815576285124 ], [ 516349.122218859847635, 5277389.237914191558957 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 67, "id_source": "w511510939", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516344.691889998619445, 5277402.417773661203682 ], [ 516346.124426398251671, 5277397.731694337911904 ], [ 516350.154200024495367, 5277401.49953602347523 ], [ 516344.691889998619445, 5277402.417773661203682 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 68, "id_source": "w511510940", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516364.768550980137661, 5277430.892627101391554 ], [ 516375.606227438431233, 5277427.911209838464856 ], [ 516372.154404024593532, 5277424.267229223623872 ], [ 516366.998391307774, 5277425.764234390109777 ], [ 516362.480660552682821, 5277421.939439468085766 ], [ 516361.48695067880908, 5277428.138250023126602 ], [ 516364.768550980137661, 5277430.892627101391554 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 69, "id_source": "w617671556", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516180.092093858111184, 5277671.483252213336527 ], [ 516199.821587358426768, 5277678.940034786239266 ], [ 516201.086392213706858, 5277656.204337294213474 ], [ 516197.985469670325983, 5277656.006770871579647 ], [ 516195.177677093539387, 5277647.619013450108469 ], [ 516196.122834226523992, 5277623.704344338737428 ], [ 516167.449725878075697, 5277616.033794342540205 ], [ 516163.495264794502873, 5277633.838533106260002 ], [ 516180.092093858111184, 5277671.483252213336527 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 70, "id_source": "w617671557", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516137.574281121953391, 5277703.44020395167172 ], [ 516147.381181092991028, 5277706.357033611275256 ], [ 516169.025934602017514, 5277719.075941341929138 ], [ 516185.04201722756261, 5277725.110886143520474 ], [ 516200.509353643690702, 5277688.155444013886154 ], [ 516192.379050977702718, 5277684.531892837956548 ], [ 516188.176714532019105, 5277696.945643622428179 ], [ 516187.343746514350642, 5277699.43286060821265 ], [ 516170.952737226791214, 5277693.174588869325817 ], [ 516165.541146222443786, 5277689.458601790480316 ], [ 516162.140329532674514, 5277683.681000236421824 ], [ 516158.534901527047623, 5277673.157160550355911 ], [ 516152.504341740335803, 5277673.284907204099 ], [ 516137.574281121953391, 5277703.44020395167172 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 71, "id_source": "w617671559", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516242.378148338058963, 5277749.021166557446122 ], [ 516236.565128630085383, 5277749.260572599247098 ], [ 516231.144996893359348, 5277751.334887972101569 ], [ 516226.666565928782802, 5277755.023361507803202 ], [ 516223.603984520188533, 5277759.949436793103814 ], [ 516222.274102147785015, 5277765.591637076810002 ], [ 516258.015213019330986, 5277764.335436600260437 ], [ 516256.191418932692613, 5277758.595525129698217 ], [ 516252.72752354235854, 5277753.940206101164222 ], [ 516247.953195728652645, 5277750.637138257734478 ], [ 516242.378148338058963, 5277749.021166557446122 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 72, "id_source": "r3327971", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516424.964104821963701, 5276180.740065201185644 ], [ 516446.595749705971684, 5276245.128729283809662 ], [ 516476.740098067792132, 5276231.521524302661419 ], [ 516589.288905209454242, 5276171.881165928207338 ], [ 516584.977519440813921, 5276137.504510704427958 ], [ 516563.365462852932978, 5276095.676737695932388 ], [ 516449.507493920740671, 5276158.314668531529605 ], [ 516424.964104821963701, 5276180.740065201185644 ] ], [ [ 516439.578897476778366, 5276192.317591353319585 ], [ 516447.579363307973836, 5276165.466615495271981 ], [ 516501.321642060705926, 5276134.644010124728084 ], [ 516548.032741847157013, 5276112.059593254700303 ], [ 516577.610268933291081, 5276171.24776020180434 ], [ 516533.853454668540508, 5276198.452620967291296 ], [ 516518.01794817391783, 5276206.843188677914441 ], [ 516462.779899108514655, 5276232.904635717161 ], [ 516439.578897476778366, 5276192.317591353319585 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 73, "id_source": "r2547212", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516511.728878316469491, 5277542.502993915230036 ], [ 516509.458663688972592, 5277548.598135016858578 ], [ 516508.428539135609753, 5277556.997388773597777 ], [ 516512.592472666525282, 5277637.830123279243708 ], [ 516514.347054536046926, 5277646.715177794918418 ], [ 516518.102989915234502, 5277654.261118380352855 ], [ 516522.906591688748449, 5277660.454128104262054 ], [ 516529.095505628734827, 5277665.395194073207676 ], [ 516537.0376999162836, 5277669.085365911014378 ], [ 516543.626879298943095, 5277670.582247513346374 ], [ 516549.625803072296549, 5277671.021629521623254 ], [ 516554.912710135336965, 5277670.969977363012731 ], [ 516561.680830880417489, 5277670.27793216239661 ], [ 516569.286877789534628, 5277668.054548919200897 ], [ 516575.829802344844211, 5277664.694521479308605 ], [ 516580.594299512333237, 5277660.862648424692452 ], [ 516584.941971972002648, 5277655.729254907928407 ], [ 516588.404884741699789, 5277650.115441950038075 ], [ 516590.91579830943374, 5277643.898762488737702 ], [ 516591.939280900929589, 5277637.866782613098621 ], [ 516592.074796514818445, 5277632.476883607916534 ], [ 516587.64069943112554, 5277554.599638471379876 ], [ 516586.645097538887057, 5277548.206258443184197 ], [ 516584.529217125964351, 5277542.276474807411432 ], [ 516581.869245822133962, 5277537.534339076839387 ], [ 516577.783436004887335, 5277532.432496793568134 ], [ 516571.565046277886722, 5277527.257902973331511 ], [ 516564.328088305133861, 5277523.747516012750566 ], [ 516558.453025791910477, 5277521.952565498650074 ], [ 516551.80158152646618, 5277521.166786517947912 ], [ 516544.321569516381714, 5277521.256665566004813 ], [ 516537.845462927303743, 5277522.194068890064955 ], [ 516530.118735325871967, 5277524.539404842071235 ], [ 516523.988747052499093, 5277527.88954158872366 ], [ 516518.334658114239573, 5277532.908133145421743 ], [ 516514.996943991049193, 5277536.744103870354593 ], [ 516511.728878316469491, 5277542.502993915230036 ] ], [ [ 516515.101216177165043, 5277544.990978563204408 ], [ 516579.062307949876413, 5277542.205334203317761 ], [ 516584.643629545345902, 5277647.103948470205069 ], [ 516520.616006066615228, 5277649.922679178416729 ], [ 516515.101216177165043, 5277544.990978563204408 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 74, "id_source": "r2596906", "type": "farmland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515957.49437283462612, 5277002.251885491423309 ], [ 515939.832338418927975, 5276982.109447724185884 ], [ 515917.25031423807377, 5276874.21992661524564 ], [ 515797.151130122249015, 5276884.117732216604054 ], [ 515789.493895635474473, 5276860.635375917889178 ], [ 515797.3460493835737, 5276812.266453668475151 ], [ 515798.35565959016094, 5276692.049411842599511 ], [ 515781.300044359115418, 5276655.449334780685604 ], [ 515758.878400046203751, 5276650.487358752638102 ], [ 515724.0696098000044, 5276612.739157604984939 ], [ 515710.99093292321777, 5276568.970413548871875 ], [ 515730.412854463036638, 5276563.988216451369226 ], [ 515713.555327681649942, 5276481.510449754074216 ], [ 515738.935830716916826, 5276428.554276085458696 ], [ 515780.974177877011243, 5276387.646404875442386 ], [ 515862.158595570886973, 5276370.062384689226747 ], [ 515868.740786949871108, 5276374.725951042957604 ], [ 515880.71889641386224, 5276394.874869927763939 ], [ 515895.384233975200914, 5276426.656352461315691 ], [ 515936.949573575693648, 5276419.023513428866863 ], [ 515982.745153642783407, 5276421.860817108303308 ], [ 516014.938195353723131, 5276432.785367758013308 ], [ 516044.765344845538493, 5276457.251500864513218 ], [ 516084.315797048737295, 5276474.776178585365415 ], [ 516139.793746621522587, 5276488.088596286252141 ], [ 516151.474271408224013, 5276509.493134968914092 ], [ 516160.522331375337671, 5276515.919879980385303 ], [ 516170.691975930531044, 5276526.873137758113444 ], [ 516177.062647754093632, 5276545.340015360154212 ], [ 516173.968933883821592, 5276572.082741529680789 ], [ 516176.049981605785433, 5276639.505851536989212 ], [ 516197.513448089594021, 5276664.805333492346108 ], [ 516209.481136448855978, 5276709.661272699013352 ], [ 516202.57157293864293, 5276747.3072899132967 ], [ 516217.266712748503778, 5276762.040864913724363 ], [ 516252.455742757359985, 5276863.920727244578302 ], [ 516189.937303205893841, 5276885.485504798591137 ], [ 516118.507856099924538, 5276894.900934981182218 ], [ 516120.457810344058089, 5276906.764941655099392 ], [ 516025.190100993728265, 5276927.129516770131886 ], [ 516038.327794493525289, 5276994.671958418563008 ], [ 515957.49437283462612, 5277002.251885491423309 ] ], [ [ 515798.38708906742977, 5276572.485462988726795 ], [ 515873.749549317057244, 5276562.576684392057359 ], [ 515880.149400955764577, 5276567.917721018195152 ], [ 515884.054680912871845, 5276603.882047647610307 ], [ 515833.45187001361046, 5276645.832833437249064 ], [ 515818.858019669074565, 5276607.172144838608801 ], [ 515806.844904647674412, 5276605.539114874787629 ], [ 515794.085619043151382, 5276579.931265401653945 ], [ 515798.38708906742977, 5276572.485462988726795 ] ], [ [ 516070.928083823877387, 5276679.947497542016208 ], [ 516163.584448294772301, 5276646.68420516513288 ], [ 516191.354534212034196, 5276713.422937500290573 ], [ 516181.481405027850997, 5276733.745174184441566 ], [ 516188.13311696331948, 5276786.110463745892048 ], [ 516134.831672320084181, 5276796.131819072179496 ], [ 516129.98018588864943, 5276774.27942640800029 ], [ 516138.315410157782026, 5276766.767247997224331 ], [ 516127.427188092493452, 5276741.497257271781564 ], [ 516101.368025715986732, 5276740.30263580288738 ], [ 516092.356474522151984, 5276718.049787561409175 ], [ 516070.928083823877387, 5276679.947497542016208 ] ] ] } } +{ "type": "Feature", "properties": { "id_veget": 1, "id_source": "w12857563", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515359.689912668196484, 5276849.327663001604378 ], [ 515433.83657165186014, 5276843.088724059984088 ], [ 515462.798841465846635, 5276862.448288119398057 ], [ 515498.470095688011497, 5276782.21137666888535 ], [ 515501.888150013692211, 5276773.496012406423688 ], [ 515515.612912809359841, 5276749.959845633246005 ], [ 515517.950578834919725, 5276743.642228845506907 ], [ 515529.003011146211065, 5276694.236780166625977 ], [ 515526.846030670974869, 5276660.944709153845906 ], [ 515529.460760488174856, 5276649.326476152054965 ], [ 515529.174368716718163, 5276629.976303763687611 ], [ 515445.304901980154682, 5276653.526025811210275 ], [ 515359.689912668196484, 5276849.327663001604378 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 2, "id_source": "w12857656", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515343.757617592695169, 5276291.409346736036241 ], [ 515385.633669471309986, 5276299.877513035200536 ], [ 515410.009723817347549, 5276347.498574674129486 ], [ 515372.545787538692821, 5276375.039978321641684 ], [ 515394.990539476159029, 5276420.088562174700201 ], [ 515396.728893784747925, 5276492.722873383201659 ], [ 515504.505337504961062, 5276450.586820833384991 ], [ 515614.198194220603909, 5276414.248268354684114 ], [ 515641.968510571401566, 5276396.962782558053732 ], [ 515635.679187179193832, 5276339.108853162266314 ], [ 515580.172636687813792, 5276360.810143774375319 ], [ 515569.354638654040173, 5276308.078827827237546 ], [ 515535.168614656082354, 5276314.411408226005733 ], [ 515539.114082888932899, 5276285.503418436273932 ], [ 515582.351264594355598, 5276270.837374015711248 ], [ 515580.562941643234808, 5276214.907163170166314 ], [ 515588.993137348326854, 5276166.32839472219348 ], [ 515602.083840425009839, 5276124.975079863332212 ], [ 515610.808245217893273, 5276123.687009785324335 ], [ 515609.611878811207134, 5276135.653532183729112 ], [ 515608.943871890718583, 5276141.064237778075039 ], [ 515606.448396491003223, 5276147.281365260481834 ], [ 515603.2399085839279, 5276156.086135141551495 ], [ 515601.767166831123177, 5276170.285824213176966 ], [ 515594.823836739815306, 5276213.367147841490805 ], [ 515595.740474317048211, 5276221.693955044262111 ], [ 515601.906346434552688, 5276227.689776824787259 ], [ 515602.567286500998307, 5276236.12703996617347 ], [ 515599.287540269142482, 5276257.534848567098379 ], [ 515599.749900937255006, 5276272.806663265451789 ], [ 515603.90617443312658, 5276271.88422460667789 ], [ 515609.122553380206227, 5276281.800737847574055 ], [ 515627.890953878522851, 5276305.14592255000025 ], [ 515636.054326879384462, 5276319.682661638595164 ], [ 515637.894991539826151, 5276325.133442927151918 ], [ 515645.237423780490644, 5276329.287554451264441 ], [ 515655.03104012174299, 5276335.304294510744512 ], [ 515648.985326239955612, 5276337.766459714621305 ], [ 515653.961259507457726, 5276364.43110447190702 ], [ 515657.448934570129495, 5276374.698663791641593 ], [ 515655.831688871665392, 5276381.15152642223984 ], [ 515635.355616968125105, 5276423.262881578877568 ], [ 515594.679708292591386, 5276480.390715794637799 ], [ 515551.436095804907382, 5276500.847022201865911 ], [ 515528.278370503685437, 5276481.502509543672204 ], [ 515431.505189823103137, 5276506.951872698962688 ], [ 515328.36959204840241, 5276501.544856464490294 ], [ 515313.449854872014839, 5276536.847994335927069 ], [ 515281.172935623908415, 5276554.756711267866194 ], [ 515247.779327853757422, 5276505.823338583111763 ], [ 515225.316182230308186, 5276464.63181468565017 ], [ 515238.285021908464842, 5276437.036437505856156 ], [ 515262.05616927833762, 5276469.229131908155978 ], [ 515292.979905914515257, 5276477.667948589660227 ], [ 515328.538754639273975, 5276437.273284641094506 ], [ 515365.295813352218829, 5276435.436316077597439 ], [ 515357.667812007537577, 5276394.28344146348536 ], [ 515285.540379152400419, 5276364.530569509603083 ], [ 515343.757617592695169, 5276291.409346736036241 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 3, "id_source": "w12857680", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515416.028572909825016, 5276267.171717971563339 ], [ 515367.840090686455369, 5276202.772373523563147 ], [ 515438.861839759047143, 5276165.683999580331147 ], [ 515457.968488169834018, 5276254.435146107338369 ], [ 515416.028572909825016, 5276267.171717971563339 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 4, "id_source": "w12857708", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515248.380047825106885, 5276276.377299305982888 ], [ 515206.650520008406602, 5276208.77316333539784 ], [ 515258.395706476527266, 5276143.347291049547493 ], [ 515359.782769975659903, 5276079.34179462864995 ], [ 515374.538426745217294, 5276109.588444911874831 ], [ 515338.834335201885551, 5276201.406694399192929 ], [ 515248.380047825106885, 5276276.377299305982888 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 5, "id_source": "w146255082", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516742.300127624883316, 5276793.301025846041739 ], [ 516744.846597256138921, 5276790.57430933136493 ], [ 516748.332670632225927, 5276790.195345357060432 ], [ 516751.326426174025983, 5276791.248670265078545 ], [ 516754.046087155002169, 5276793.590429455973208 ], [ 516749.9217006159015, 5276799.157781216315925 ], [ 516742.300127624883316, 5276793.301025846041739 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 6, "id_source": "w146255083", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516736.19439697091002, 5276774.834273478016257 ], [ 516736.666361462383065, 5276777.86974551063031 ], [ 516740.512097719241865, 5276783.015456917695701 ], [ 516742.908711586438585, 5276785.38962409645319 ], [ 516746.530875015771016, 5276787.311643510125577 ], [ 516750.954283238970675, 5276787.45773364789784 ], [ 516752.730701958644204, 5276788.718723242171109 ], [ 516756.511799581930973, 5276790.21887500397861 ], [ 516736.19439697091002, 5276774.834273478016257 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 7, "id_source": "w146259566", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516712.750327062269207, 5276794.194173431955278 ], [ 516711.534889264032245, 5276796.357910709455609 ], [ 516712.292110614245757, 5276799.449769328348339 ], [ 516715.068200013483874, 5276803.069779555313289 ], [ 516718.402786723629106, 5276805.746706509031355 ], [ 516729.181693083199207, 5276792.318636366166174 ], [ 516728.664765463967342, 5276791.86147831287235 ], [ 516724.521585240669083, 5276790.90488959942013 ], [ 516724.604190065932926, 5276796.139809872023761 ], [ 516720.709429674432613, 5276800.218568790704012 ], [ 516712.750327062269207, 5276794.194173431955278 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 8, "id_source": "w146259569", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516663.813905270304531, 5276813.959063909947872 ], [ 516669.910519538447261, 5276819.933604597114027 ], [ 516676.937872141599655, 5276810.373477843590081 ], [ 516679.688806137128267, 5276812.292960716411471 ], [ 516686.909614038886502, 5276803.378010733984411 ], [ 516698.705484703939874, 5276812.447487436234951 ], [ 516696.977228697447572, 5276815.343279710039496 ], [ 516703.910357718064915, 5276820.319996858946979 ], [ 516710.881364134897012, 5276812.093426367267966 ], [ 516709.060932045045774, 5276810.465561979450285 ], [ 516713.854613311530557, 5276804.588911036960781 ], [ 516709.124554622278083, 5276798.76272701472044 ], [ 516705.919727349886671, 5276792.740870766341686 ], [ 516704.864816365763545, 5276788.692357091233134 ], [ 516707.296409977192525, 5276786.732159094884992 ], [ 516716.843251571583096, 5276773.411671532317996 ], [ 516721.800803321413696, 5276775.870979917235672 ], [ 516727.387555227265693, 5276768.462888854555786 ], [ 516723.289060949231498, 5276765.016898832283914 ], [ 516699.995020467671566, 5276768.728802228346467 ], [ 516697.46496413112618, 5276768.354785955511034 ], [ 516663.813905270304531, 5276813.959063909947872 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 9, "id_source": "w146259570", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516699.138874421303626, 5276766.081220775842667 ], [ 516700.512346197385341, 5276766.429692789912224 ], [ 516722.804492542112712, 5276761.136729603633285 ], [ 516737.338082625064999, 5276742.762625137344003 ], [ 516736.019828936841805, 5276738.880058829672635 ], [ 516742.512912931269966, 5276734.964375640265644 ], [ 516743.104952050605789, 5276735.421750816516578 ], [ 516748.895327194652054, 5276727.747530546039343 ], [ 516749.98678479163209, 5276726.917121636681259 ], [ 516750.971269815578125, 5276726.719901844859123 ], [ 516752.795681209245231, 5276726.969657490029931 ], [ 516774.350725081691053, 5276735.144909459166229 ], [ 516776.018463686457835, 5276735.02745989151299 ], [ 516763.525420324760489, 5276717.653680980205536 ], [ 516761.64388857682934, 5276718.981942135840654 ], [ 516760.138535854057409, 5276720.089007036760449 ], [ 516759.769394527713303, 5276717.865149486809969 ], [ 516757.922404286218807, 5276707.190417572855949 ], [ 516757.552941443573218, 5276705.077699045650661 ], [ 516759.730110509495717, 5276705.41738373041153 ], [ 516761.681955698120873, 5276705.756420673802495 ], [ 516764.424872214207426, 5276692.205266224220395 ], [ 516767.653558349586092, 5276692.547981002368033 ], [ 516768.109646838682238, 5276690.659918434917927 ], [ 516771.126452360360418, 5276686.334155411459506 ], [ 516773.158853275468573, 5276684.784052354283631 ], [ 516771.588303852884565, 5276682.445594176650047 ], [ 516783.251210943097249, 5276675.14397116471082 ], [ 516782.503651378792711, 5276673.919279488734901 ], [ 516781.455658290942665, 5276672.693722154013813 ], [ 516781.456939353200141, 5276672.249166841618717 ], [ 516783.411036567296833, 5276671.810239224694669 ], [ 516794.682732397166546, 5276669.953359427861869 ], [ 516796.636831400217488, 5276669.514436246827245 ], [ 516796.18009095749585, 5276671.624774201773107 ], [ 516795.648563089314848, 5276673.623756749555469 ], [ 516809.609722634137142, 5276676.775952118448913 ], [ 516809.230011033592746, 5276678.219672908075154 ], [ 516812.983176543668378, 5276679.008485713042319 ], [ 516812.525789170409553, 5276681.341100090183318 ], [ 516814.851896780892275, 5276682.125794352963567 ], [ 516816.324210704595316, 5276684.664032177999616 ], [ 516821.09451024082955, 5276681.754833556711674 ], [ 516816.103984503599349, 5276672.493592948652804 ], [ 516826.382625522441231, 5276668.60004945192486 ], [ 516791.757872876303736, 5276642.38226711191237 ], [ 516739.048222192446701, 5276712.2152214134112 ], [ 516731.878105188894551, 5276721.719292820431292 ], [ 516699.138874421303626, 5276766.081220775842667 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 10, "id_source": "w146259573", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516757.362410440808162, 5276729.527897319756448 ], [ 516771.646151024266146, 5276735.381627014838159 ], [ 516763.340054562024307, 5276737.691646006889641 ], [ 516762.785507006279659, 5276737.256604633294046 ], [ 516761.443546466703992, 5276736.396965763531625 ], [ 516757.362410440808162, 5276729.527897319756448 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 11, "id_source": "w146259577", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516742.068569013499655, 5276832.043684696778655 ], [ 516724.198287946346682, 5276845.940375906415284 ], [ 516720.37700533552561, 5276842.750804871320724 ], [ 516717.65661342034582, 5276845.899363966658711 ], [ 516736.463899752183352, 5276861.379588950425386 ], [ 516748.43296959757572, 5276846.721322806552052 ], [ 516742.068569013499655, 5276832.043684696778655 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 12, "id_source": "w183968039", "type": "null", "height_class": "null", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516443.740117823588662, 5277115.389124820940197 ], [ 516482.498840655374806, 5277055.08311912138015 ], [ 516510.016103378497064, 5277020.941135651431978 ], [ 516650.743856725341175, 5277121.756668553687632 ], [ 516656.8203305566567, 5277150.414779911749065 ], [ 516657.50080539524788, 5277177.701553720980883 ], [ 516654.704974779451732, 5277262.426566129550338 ], [ 516717.667859425942879, 5277331.146956294775009 ], [ 516744.704332074848935, 5277333.647498254664242 ], [ 516768.108820313063916, 5277366.434433085843921 ], [ 516771.883562236442231, 5277482.108581299893558 ], [ 516732.614559716603253, 5277450.754167185164988 ], [ 516694.423423069063574, 5277407.400006008334458 ], [ 516636.873641964863054, 5277342.073972745798528 ], [ 516618.049415864574257, 5277322.459600200876594 ], [ 516608.607341967348475, 5277312.607895825989544 ], [ 516547.154682928929105, 5277277.47944360692054 ], [ 516521.467755565827247, 5277257.134593587368727 ], [ 516549.174677309347317, 5277222.07086565811187 ], [ 516520.883066644601058, 5277201.162919535301626 ], [ 516499.184163087978959, 5277223.040391643531621 ], [ 516481.507919324503746, 5277203.507519617676735 ], [ 516461.705017384781968, 5277192.348631243221462 ], [ 516457.383483800920658, 5277172.208995522931218 ], [ 516449.033262928540353, 5277147.868010764010251 ], [ 516424.17513249971671, 5277142.229735415428877 ], [ 516443.740117823588662, 5277115.389124820940197 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 13, "id_source": "w189027279", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516282.846104557334911, 5276855.036649436689913 ], [ 516303.141637050779536, 5276835.632867882959545 ], [ 516309.854525046248455, 5276830.861543190665543 ], [ 516420.622513207315933, 5276889.310041332617402 ], [ 516435.807669864560012, 5276905.734881917946041 ], [ 516472.09727149392711, 5276967.353284377604723 ], [ 516483.284831762604881, 5276984.3671002574265 ], [ 516419.410450335009955, 5277055.460577057674527 ], [ 516419.236586160142906, 5277047.869239673018456 ], [ 516406.090457845712081, 5277024.915162747725844 ], [ 516366.903000895632431, 5276965.422905370593071 ], [ 516282.846104557334911, 5276855.036649436689913 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 14, "id_source": "w189027280", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516354.931765206565615, 5277163.106934703886509 ], [ 516374.190923730900977, 5277175.442010604776442 ], [ 516376.660178912745323, 5277176.01576810143888 ], [ 516378.884255080309231, 5277175.644148657098413 ], [ 516381.361326714453753, 5277173.439435136504471 ], [ 516384.031127280031797, 5277169.468142163939774 ], [ 516390.124171851028223, 5277166.006614638492465 ], [ 516413.029097221675329, 5277118.525529652833939 ], [ 516428.970152382680681, 5277090.429890719242394 ], [ 516444.987610793556087, 5277067.246890241280198 ], [ 516464.775706743763294, 5277041.307214087806642 ], [ 516494.546454470895696, 5277001.725681542418897 ], [ 516495.131052327342331, 5276999.5045419447124 ], [ 516492.781787225801963, 5276996.31928972620517 ], [ 516483.284831762604881, 5276984.3671002574265 ], [ 516419.410450335009955, 5277055.460577057674527 ], [ 516398.288491076673381, 5277085.7644436173141 ], [ 516358.615929158288054, 5277158.960655835457146 ], [ 516354.931765206565615, 5277163.106934703886509 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 15, "id_source": "w189027282", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516269.427908678830136, 5277558.036143732257187 ], [ 516272.095959755475633, 5277557.2878492558375 ], [ 516275.391572193708271, 5277555.018694312311709 ], [ 516277.111705192481168, 5277552.189436944201589 ], [ 516278.009533080388792, 5277548.013088622130454 ], [ 516288.704004149127286, 5277486.071419171988964 ], [ 516294.704233083932195, 5277456.602809050120413 ], [ 516302.231003856926691, 5277423.748715351335704 ], [ 516310.469530610134825, 5277394.208593513816595 ], [ 516319.697984993516002, 5277362.515146311372519 ], [ 516340.725386569218244, 5277290.477720881812274 ], [ 516352.025928123854101, 5277256.478436036035419 ], [ 516360.691982785530854, 5277232.652177361771464 ], [ 516375.671528273785952, 5277196.418255047872663 ], [ 516373.79526204476133, 5277193.289949977770448 ], [ 516372.109279112424701, 5277189.261948186904192 ], [ 516361.277658210950904, 5277184.585857873782516 ], [ 516341.893233626440633, 5277227.586979603394866 ], [ 516332.766358972177841, 5277252.401117327623069 ], [ 516321.472653515287675, 5277286.678307493217289 ], [ 516300.034203766088467, 5277358.081153090111911 ], [ 516291.250442041957285, 5277391.920873719267547 ], [ 516283.822559068794362, 5277418.962643123231828 ], [ 516276.019039114296902, 5277454.138808822259307 ], [ 516269.481949887354858, 5277484.950729456730187 ], [ 516257.108734801411629, 5277551.111059541814029 ], [ 516258.085273450764362, 5277553.703345115296543 ], [ 516260.053586802212521, 5277556.120576958172023 ], [ 516265.336930336023215, 5277557.380101660266519 ], [ 516269.427908678830136, 5277558.036143732257187 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 16, "id_source": "w189027283", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516474.748577787424438, 5276954.046240387484431 ], [ 516476.460586756642442, 5276954.184452068991959 ], [ 516476.385476690367796, 5276956.840480067767203 ], [ 516477.773333763121627, 5276960.056346623227 ], [ 516485.409292380150873, 5276971.45867252163589 ], [ 516494.505518371006474, 5276981.709291381761432 ], [ 516496.902401464933064, 5276983.994446902535856 ], [ 516498.552711733907927, 5276984.699303207919002 ], [ 516500.385255902307108, 5276984.704495771788061 ], [ 516504.129039554332849, 5276983.448112198151648 ], [ 516506.672573736112099, 5276981.688199481926858 ], [ 516509.912268680287525, 5276978.096455323509872 ], [ 516542.352617571712472, 5276934.910694899968803 ], [ 516543.059870882483665, 5276931.823018433526158 ], [ 516544.816046923864633, 5276924.348301223479211 ], [ 516543.011450065299869, 5276919.78644354082644 ], [ 516632.540425019571558, 5276800.421744802966714 ], [ 516639.35193171404535, 5276805.93150806427002 ], [ 516748.935493506491184, 5276658.941025636158884 ], [ 516749.699906913097948, 5276656.920480822212994 ], [ 516749.902093714103103, 5276654.520443851128221 ], [ 516748.259678383008577, 5276651.048160075210035 ], [ 516742.087852471333463, 5276639.849755346775055 ], [ 516741.135249641782138, 5276639.402457836084068 ], [ 516739.931529245164711, 5276640.088064006529748 ], [ 516623.639986792288255, 5276795.23944528773427 ], [ 516530.068347584572621, 5276920.62769144307822 ], [ 516527.65602580254199, 5276923.777213494293392 ], [ 516521.8108398206532, 5276927.117047016508877 ], [ 516477.587608860398177, 5276948.719564446248114 ], [ 516476.315288521174807, 5276949.794020020402968 ], [ 516475.167973845382221, 5276951.81351759377867 ], [ 516474.748577787424438, 5276954.046240387484431 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 17, "id_source": "w189027284", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516209.367783138761297, 5277735.036674323491752 ], [ 516214.243142488354351, 5277737.12856694124639 ], [ 516221.149364159326069, 5277738.036925339139998 ], [ 516232.882561925100163, 5277734.146392535418272 ], [ 516233.833836475154385, 5277732.326351060532033 ], [ 516238.656050761055667, 5277729.238997363485396 ], [ 516240.374905882054009, 5277726.843170693144202 ], [ 516241.462439660564996, 5277724.634521 ], [ 516251.167902245710138, 5277720.816166090779006 ], [ 516253.142521133762784, 5277715.575876170769334 ], [ 516255.25706234050449, 5277708.635537448339164 ], [ 516256.535943502036389, 5277702.448617144487798 ], [ 516257.503030933672562, 5277689.59243371617049 ], [ 516259.421021448390093, 5277661.612769433297217 ], [ 516260.913325557718053, 5277648.924764034338295 ], [ 516273.261799156782217, 5277575.440246707759798 ], [ 516273.781434556585737, 5277572.229757276363671 ], [ 516273.531604518706445, 5277570.261883432045579 ], [ 516271.955513082852121, 5277567.234473940916359 ], [ 516269.745811693719588, 5277565.205552902072668 ], [ 516267.023338879807852, 5277563.93095098156482 ], [ 516255.936135634372476, 5277562.25511271879077 ], [ 516239.649377218971495, 5277655.811651490628719 ], [ 516239.830574692517985, 5277658.157208216376603 ], [ 516241.282871057046577, 5277659.795015729032457 ], [ 516244.505436434643343, 5277662.149058169685304 ], [ 516245.067882042669225, 5277665.118062201887369 ], [ 516245.058206102228723, 5277668.585599238984287 ], [ 516243.910584324155934, 5277670.794080471619964 ], [ 516242.072954081755597, 5277672.689445164985955 ], [ 516239.372813425958157, 5277674.193414874374866 ], [ 516238.555149390303995, 5277676.569527388550341 ], [ 516237.855034587380942, 5277679.879542833194137 ], [ 516236.927132213313598, 5277686.77874104026705 ], [ 516233.182235401705839, 5277694.00350344274193 ], [ 516225.713860622257926, 5277698.083744707517326 ], [ 516209.367783138761297, 5277735.036674323491752 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 18, "id_source": "w189027285", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516752.877678120159544, 5276646.249092107638717 ], [ 516754.203487994906027, 5276647.508785378187895 ], [ 516755.786105549312197, 5276648.26908899936825 ], [ 516756.861054184031673, 5276647.960990696214139 ], [ 516758.894615981320385, 5276646.010782962664962 ], [ 516813.358645465457812, 5276572.370982926338911 ], [ 516819.139612423663493, 5276565.441442206501961 ], [ 516834.225621614954434, 5276551.114662833511829 ], [ 516835.50394228141522, 5276548.01755949575454 ], [ 516836.147653131338302, 5276543.596058947965503 ], [ 516835.337532656791154, 5276540.626286091282964 ], [ 516833.633794556022622, 5276537.58724644780159 ], [ 516810.134063089615665, 5276510.734693166799843 ], [ 516808.354721829236951, 5276513.063491712324321 ], [ 516807.962164624186698, 5276516.352094653993845 ], [ 516805.600859065598343, 5276522.535763017833233 ], [ 516801.287006654369179, 5276526.001989689655602 ], [ 516800.878070468897931, 5276534.96978604234755 ], [ 516792.066568658221513, 5276535.322247656993568 ], [ 516792.082436227472499, 5276537.633999764919281 ], [ 516789.866946247813758, 5276537.538700322620571 ], [ 516789.828384572465438, 5276535.282452656887472 ], [ 516787.612573297519702, 5276535.298292878083885 ], [ 516787.555129885382485, 5276531.774997922591865 ], [ 516772.586035097658169, 5276531.609613698907197 ], [ 516772.528816125064623, 5276541.045211708173156 ], [ 516794.603519923461135, 5276556.779531194828451 ], [ 516795.541153100435622, 5276559.816349945031106 ], [ 516800.409981822536793, 5276564.442692585289478 ], [ 516777.964219149027485, 5276591.484964974224567 ], [ 516761.162970904668327, 5276614.675903933122754 ], [ 516752.199959205405321, 5276625.964139567688107 ], [ 516748.961327064898796, 5276626.454953035339713 ], [ 516747.694032142986543, 5276628.351797929033637 ], [ 516747.303338224184699, 5276631.006914175115526 ], [ 516747.035247905412689, 5276635.429504914209247 ], [ 516747.788221299706493, 5276637.38772976398468 ], [ 516752.877678120159544, 5276646.249092107638717 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 19, "id_source": "w192723399", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516070.928083823877387, 5276679.947497542016208 ], [ 516163.584448294772301, 5276646.68420516513288 ], [ 516191.354534212034196, 5276713.422937500290573 ], [ 516181.481405027850997, 5276733.745174184441566 ], [ 516188.13311696331948, 5276786.110463745892048 ], [ 516134.831672320084181, 5276796.131819072179496 ], [ 516129.98018588864943, 5276774.27942640800029 ], [ 516138.315410157782026, 5276766.767247997224331 ], [ 516127.427188092493452, 5276741.497257271781564 ], [ 516101.368025715986732, 5276740.30263580288738 ], [ 516092.356474522151984, 5276718.049787561409175 ], [ 516070.928083823877387, 5276679.947497542016208 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 20, "id_source": "w192723405", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515738.535995253594592, 5276645.986760721541941 ], [ 515732.508316331601236, 5276644.659025863744318 ], [ 515716.102363768965006, 5276637.090574090369046 ], [ 515697.546294967527501, 5276605.165678393095732 ], [ 515685.61847554333508, 5276583.005638701841235 ], [ 515657.802418469276745, 5276525.393802573904395 ], [ 515656.509838146797847, 5276511.675698944367468 ], [ 515659.206845418724697, 5276497.51264941226691 ], [ 515669.027554656204302, 5276479.389965210109949 ], [ 515690.389535606780555, 5276459.753539560362697 ], [ 515720.673259797506034, 5276418.480158785358071 ], [ 515769.744273571937811, 5276382.314627795480192 ], [ 515824.402808693004772, 5276349.465534352697432 ], [ 515842.206213101686444, 5276343.345686382614076 ], [ 515859.86902173969429, 5276347.494809228926897 ], [ 515889.731673930655234, 5276378.617499085143209 ], [ 515901.547703782678582, 5276397.576825224794447 ], [ 515908.92662445170572, 5276402.020333666354418 ], [ 515923.468480878567789, 5276404.727425389923155 ], [ 515945.427448385686148, 5276400.653111041523516 ], [ 515973.579992837447207, 5276408.710082366131246 ], [ 516002.747933306789491, 5276413.502475086599588 ], [ 516012.099863448820543, 5276421.530232624150813 ], [ 516027.226497401134111, 5276421.87191756721586 ], [ 516031.944067607400939, 5276429.864727721549571 ], [ 516047.342452829005197, 5276437.886962060816586 ], [ 516053.834673887584358, 5276436.960167462937534 ], [ 516073.709635037987027, 5276447.717734615318477 ], [ 516075.474278129637241, 5276453.335157182998955 ], [ 516122.290257271612063, 5276470.024377013556659 ], [ 516133.968494326050859, 5276467.889494416303933 ], [ 516166.372586413112003, 5276491.885494121350348 ], [ 516180.27963001281023, 5276509.384156109765172 ], [ 516183.037967550568283, 5276519.561099572107196 ], [ 516191.909639403049368, 5276527.276623711921275 ], [ 516200.672828593815211, 5276576.680351453833282 ], [ 516201.484297049755696, 5276603.578411434777081 ], [ 516207.681215885153506, 5276614.24283638689667 ], [ 516213.295457432570402, 5276621.060212824493647 ], [ 516219.839728639926761, 5276614.86572768446058 ], [ 516216.448315892717801, 5276554.251815258525312 ], [ 516220.640582274703775, 5276540.371031038463116 ], [ 516221.850878584140446, 5276531.916673076339066 ], [ 516211.823525447107386, 5276531.944320818409324 ], [ 516209.883231875603087, 5276495.040550347417593 ], [ 516211.326266924384981, 5276475.828519375994802 ], [ 516211.041706466989126, 5276464.72487526293844 ], [ 516225.591554658138193, 5276467.154896202497184 ], [ 516225.553964687103871, 5276480.647146425209939 ], [ 516250.157463192066643, 5276549.011072927154601 ], [ 516236.271574152400717, 5276556.363131784833968 ], [ 516253.492606375250034, 5276594.676561293192208 ], [ 516270.147114301973488, 5276658.250515365973115 ], [ 516258.813272172468714, 5276698.562572703696787 ], [ 516291.37545846978901, 5276821.118431362323463 ], [ 516309.854525046248455, 5276830.861543190665543 ], [ 516303.141637050779536, 5276835.632867882959545 ], [ 516282.846104557334911, 5276855.036649436689913 ], [ 516277.345949240960181, 5276847.819417729973793 ], [ 516252.455742757359985, 5276863.920727244578302 ], [ 516217.266712748503778, 5276762.040864913724363 ], [ 516202.57157293864293, 5276747.3072899132967 ], [ 516209.481136448855978, 5276709.661272699013352 ], [ 516197.513448089594021, 5276664.805333492346108 ], [ 516176.049981605785433, 5276639.505851536989212 ], [ 516173.968933883821592, 5276572.082741529680789 ], [ 516177.062647754093632, 5276545.340015360154212 ], [ 516170.691975930531044, 5276526.873137758113444 ], [ 516160.522331375337671, 5276515.919879980385303 ], [ 516151.474271408224013, 5276509.493134968914092 ], [ 516139.793746621522587, 5276488.088596286252141 ], [ 516084.315797048737295, 5276474.776178585365415 ], [ 516044.765344845538493, 5276457.251500864513218 ], [ 516014.938195353723131, 5276432.785367758013308 ], [ 515982.745153642783407, 5276421.860817108303308 ], [ 515936.949573575693648, 5276419.023513428866863 ], [ 515895.384233975200914, 5276426.656352461315691 ], [ 515880.71889641386224, 5276394.874869927763939 ], [ 515868.740786949871108, 5276374.725951042957604 ], [ 515862.158595570886973, 5276370.062384689226747 ], [ 515780.974177877011243, 5276387.646404875442386 ], [ 515738.935830716916826, 5276428.554276085458696 ], [ 515713.555327681649942, 5276481.510449754074216 ], [ 515730.412854463036638, 5276563.988216451369226 ], [ 515710.99093292321777, 5276568.970413548871875 ], [ 515724.0696098000044, 5276612.739157604984939 ], [ 515758.878400046203751, 5276650.487358752638102 ], [ 515781.300044359115418, 5276655.449334780685604 ], [ 515798.35565959016094, 5276692.049411842599511 ], [ 515797.3460493835737, 5276812.266453668475151 ], [ 515789.493895635474473, 5276860.635375917889178 ], [ 515797.151130122249015, 5276884.117732216604054 ], [ 515917.25031423807377, 5276874.21992661524564 ], [ 515939.832338418927975, 5276982.109447724185884 ], [ 515957.49437283462612, 5277002.251885491423309 ], [ 515862.462801142188255, 5277011.161257036961615 ], [ 515844.593373540905304, 5277011.923925330862403 ], [ 515834.299449189624283, 5277162.756995934061706 ], [ 515843.02612131589558, 5277204.246974798850715 ], [ 515798.306515273812693, 5277205.681421790271997 ], [ 515795.554721664928365, 5277262.177406931295991 ], [ 515779.821430915617384, 5277311.903131037019193 ], [ 515831.276676695444621, 5277318.777883530594409 ], [ 515865.901195838174317, 5277336.899004547856748 ], [ 515849.334536057605874, 5277386.388884179294109 ], [ 515840.626797774457373, 5277583.7161332834512 ], [ 515713.729134213412181, 5277524.779337232001126 ], [ 515678.155242921144236, 5277502.488813811913133 ], [ 515673.632965421536937, 5277444.417213994078338 ], [ 515676.858414484886453, 5277403.993247509934008 ], [ 515746.526698547706474, 5277407.293167860247195 ], [ 515748.179393855680246, 5277371.010500831529498 ], [ 515675.392678754171357, 5277368.213409269228578 ], [ 515617.770629501261283, 5277333.849739349447191 ], [ 515637.167111700342502, 5277275.842394653707743 ], [ 515769.765451793384273, 5277273.088108932599425 ], [ 515788.704488030343782, 5277193.307750573381782 ], [ 515749.907532078563236, 5277179.132385087199509 ], [ 515779.486665996431839, 5277008.657444330863655 ], [ 515731.436767468927428, 5276893.953516996465623 ], [ 515752.669371165859047, 5276741.19386091735214 ], [ 515761.952872879744973, 5276727.259839132428169 ], [ 515764.36945788434241, 5276700.21498728916049 ], [ 515757.872277061862405, 5276672.568084678612649 ], [ 515745.733679652272258, 5276653.497029547579587 ], [ 515738.535995253594592, 5276645.986760721541941 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 21, "id_source": "w192723423", "type": "farmland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515795.554721664928365, 5277262.177406931295991 ], [ 515905.75714200240327, 5277270.83512631803751 ], [ 515865.901195838174317, 5277336.899004547856748 ], [ 515831.276676695444621, 5277318.777883530594409 ], [ 515779.821430915617384, 5277311.903131037019193 ], [ 515795.554721664928365, 5277262.177406931295991 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 22, "id_source": "w192723428", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515798.38708906742977, 5276572.485462988726795 ], [ 515873.749549317057244, 5276562.576684392057359 ], [ 515880.149400955764577, 5276567.917721018195152 ], [ 515884.054680912871845, 5276603.882047647610307 ], [ 515833.45187001361046, 5276645.832833437249064 ], [ 515818.858019669074565, 5276607.172144838608801 ], [ 515806.844904647674412, 5276605.539114874787629 ], [ 515794.085619043151382, 5276579.931265401653945 ], [ 515798.38708906742977, 5276572.485462988726795 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 23, "id_source": "w196966595", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516211.041706466989126, 5276464.72487526293844 ], [ 516227.810485781636089, 5276436.375393335707486 ], [ 516240.697031539166346, 5276410.393521459773183 ], [ 516241.905427227145992, 5276378.399786206893623 ], [ 516234.716970199136995, 5276375.767962070181966 ], [ 516220.731797365297098, 5276345.810203330591321 ], [ 516200.671451666159555, 5276323.359731398522854 ], [ 516193.854931835376192, 5276300.39044065028429 ], [ 516192.503392380371224, 5276273.190816489048302 ], [ 516195.191014136420563, 5276246.702603463083506 ], [ 516200.708080700365826, 5276223.778729908168316 ], [ 516216.423361853056122, 5276204.428601109422743 ], [ 516244.719529284629971, 5276182.746316477656364 ], [ 516207.434828021330759, 5276187.254739834927022 ], [ 516155.493109741597436, 5276181.697935738600791 ], [ 516119.152642887434922, 5276200.602121556177735 ], [ 516092.366572706669103, 5276216.943371170200408 ], [ 516080.675164416781627, 5276215.510721184313297 ], [ 516076.999326140328776, 5276194.72858227789402 ], [ 516101.645663114904892, 5276137.27081058640033 ], [ 516106.117121804738417, 5276120.223246485926211 ], [ 516101.325343129516114, 5276114.564107088372111 ], [ 516087.859050185827073, 5276111.114911237731576 ], [ 516069.646449418447446, 5276107.285889239050448 ], [ 516029.963876100140624, 5276112.277848879806697 ], [ 515992.545738857821561, 5276118.776679932139814 ], [ 515948.40400142245926, 5276131.058822693303227 ], [ 515907.815727563691325, 5276148.730158792808652 ], [ 515886.647618870600127, 5276159.941935623064637 ], [ 515870.017362831218634, 5276157.073653931729496 ], [ 515840.161274496407714, 5276125.839960495010018 ], [ 515836.020260472723749, 5276096.23223514482379 ], [ 515841.394749842467718, 5276072.785289524123073 ], [ 516347.916011897556018, 5276066.516283508390188 ], [ 516367.796427736233454, 5276123.708988700062037 ], [ 516389.362954811484087, 5276150.143065377138555 ], [ 516421.799500257882755, 5276160.225880493409932 ], [ 516449.507493920740671, 5276158.314668531529605 ], [ 516424.964104821963701, 5276180.740065201185644 ], [ 516446.595749705971684, 5276245.128729283809662 ], [ 516399.442785191757139, 5276270.435633925721049 ], [ 516352.748217105283402, 5276263.713761945255101 ], [ 516324.941392514330801, 5276351.991771013475955 ], [ 516246.087403783516493, 5276341.346379023976624 ], [ 516257.569829047773965, 5276398.704249759204686 ], [ 516246.540639635873958, 5276434.671606441959739 ], [ 516225.591554658138193, 5276467.154896202497184 ], [ 516211.041706466989126, 5276464.72487526293844 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 24, "id_source": "w196966596", "type": "meadow", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516399.442785191757139, 5276270.435633925721049 ], [ 516352.748217105283402, 5276263.713761945255101 ], [ 516324.941392514330801, 5276351.991771013475955 ], [ 516246.087403783516493, 5276341.346379023976624 ], [ 516257.569829047773965, 5276398.704249759204686 ], [ 516246.540639635873958, 5276434.671606441959739 ], [ 516225.591554658138193, 5276467.154896202497184 ], [ 516225.553964687103871, 5276480.647146425209939 ], [ 516250.157463192066643, 5276549.011072927154601 ], [ 516279.743810494837817, 5276535.456865095533431 ], [ 516302.471079674491193, 5276578.820462059229612 ], [ 516328.733999205171131, 5276566.524192654527724 ], [ 516296.700580226955935, 5276442.658209172077477 ], [ 516385.299849574686959, 5276432.926461526192725 ], [ 516407.160075114283245, 5276354.667882501147687 ], [ 516427.736868054489605, 5276326.852059767581522 ], [ 516399.442785191757139, 5276270.435633925721049 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 25, "id_source": "w300143809", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515270.54514752846444, 5277379.440669603645802 ], [ 515267.534429687133525, 5277379.14381055533886 ], [ 515264.690940221771598, 5277378.08052736800164 ], [ 515262.224751876492519, 5277376.329168285243213 ], [ 515260.300820205302443, 5277373.990190947428346 ], [ 515259.046347957279067, 5277371.241751764900982 ], [ 515258.55098892870592, 5277368.261908827349544 ], [ 515258.844259666395374, 5277365.250790806487203 ], [ 515259.910588069586083, 5277362.419522481039166 ], [ 515261.674351394292898, 5277359.967957549728453 ], [ 515264.01498319231905, 5277358.051376167684793 ], [ 515266.774424878240097, 5277356.802732245065272 ], [ 515269.764723137195688, 5277356.299331249669194 ], [ 515272.782962638186291, 5277356.596211115829647 ], [ 515275.618951224256307, 5277357.659478494897485 ], [ 515278.085143517178949, 5277359.410843191668391 ], [ 515280.009072932763956, 5277361.749826354905963 ], [ 515281.26353738468606, 5277364.498270031064749 ], [ 515281.75888513342943, 5277367.478114906698465 ], [ 515281.465602643904276, 5277370.489231810905039 ], [ 515280.399265188374557, 5277373.320496241562068 ], [ 515278.643007874547038, 5277375.772075272165239 ], [ 515276.294839234848041, 5277377.699745013378561 ], [ 515273.535405356495176, 5277378.948384447954595 ], [ 515270.54514752846444, 5277379.440669603645802 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 26, "id_source": "w342070859", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516839.963586148398463, 5276143.426375072449446 ], [ 516838.439616519783158, 5276143.121892026625574 ], [ 516837.827560000296216, 5276141.77533268276602 ], [ 516837.726620722503867, 5276135.117775035090744 ], [ 516838.162006661528721, 5276132.618391271680593 ], [ 516840.365165525116026, 5276131.835669231601059 ], [ 516841.468138979922514, 5276132.261189074255526 ], [ 516841.515505459276028, 5276136.662456697784364 ], [ 516874.566039958852343, 5276136.813685778528452 ], [ 516874.640621629485395, 5276131.812616862356663 ], [ 516876.350770464516245, 5276132.673347151838243 ], [ 516876.774869928311091, 5276134.074935782700777 ], [ 516876.749397363630123, 5276142.8660096693784 ], [ 516876.197353628522251, 5276144.142516307532787 ], [ 516875.520802321960218, 5276144.31837953440845 ], [ 516874.914656018954702, 5276143.527531709522009 ], [ 516875.108359668520279, 5276138.893568772822618 ], [ 516839.856994022673462, 5276138.724859097972512 ], [ 516839.963586148398463, 5276143.426375072449446 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 27, "id_source": "w342070860", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516865.079381514457054, 5276175.56283968873322 ], [ 516864.907803013746161, 5276149.21112700831145 ], [ 516869.804950578254648, 5276149.347562507726252 ], [ 516869.668697533430532, 5276175.642814019694924 ], [ 516865.079381514457054, 5276175.56283968873322 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 28, "id_source": "w342070861", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516840.291171674442012, 5276175.613369910977781 ], [ 516840.16392541944515, 5276165.065847381949425 ], [ 516838.174152984574903, 5276164.793359508737922 ], [ 516837.848215211532079, 5276173.60579299274832 ], [ 516838.842967837641481, 5276175.086826418526471 ], [ 516840.291171674442012, 5276175.613369910977781 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 29, "id_source": "w342070862", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516839.489352556236554, 5276159.362432072870433 ], [ 516838.192113436758518, 5276158.580704009160399 ], [ 516838.026096234971192, 5276156.246291061863303 ], [ 516838.042064468201715, 5276150.722695817239583 ], [ 516839.174252339114901, 5276148.836594664491713 ], [ 516839.885853179905098, 5276149.527717947028577 ], [ 516840.047870046983007, 5276158.441587630659342 ], [ 516839.489352556236554, 5276159.362432072870433 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 30, "id_source": "w342618762", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516840.001674572878983, 5276317.304514355026186 ], [ 516842.377780812443234, 5276316.433381520211697 ], [ 516842.4616356070037, 5276313.41062431037426 ], [ 516842.758207869715989, 5276312.155603405088186 ], [ 516844.321113867976237, 5276309.370516998693347 ], [ 516846.169708019180689, 5276306.497345597483218 ], [ 516846.247167739027645, 5276305.686249883845448 ], [ 516845.963388473028317, 5276302.517947807908058 ], [ 516846.047438146779314, 5276299.428507454693317 ], [ 516845.892143673612736, 5276298.58339661359787 ], [ 516840.138799334876239, 5276298.455618823878467 ], [ 516840.001674572878983, 5276317.304514355026186 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 31, "id_source": "w342618763", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516849.393550617794972, 5276316.375876215286553 ], [ 516849.820335248892661, 5276298.672557604499161 ], [ 516862.663940044585615, 5276298.965350499376655 ], [ 516869.09404198161792, 5276298.839489356614649 ], [ 516874.841372351918835, 5276303.635145555250347 ], [ 516876.299515347112902, 5276308.496175267733634 ], [ 516874.957424496475141, 5276312.837848719209433 ], [ 516874.650605472736061, 5276317.627080745063722 ], [ 516871.989259079913609, 5276318.430690300650895 ], [ 516869.706010156485718, 5276315.767837634310126 ], [ 516867.122319232614245, 5276315.693670731969178 ], [ 516865.198173635930289, 5276316.121543436311185 ], [ 516849.393550617794972, 5276316.375876215286553 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 32, "id_source": "w342618765", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516842.103269751300104, 5276333.436961284838617 ], [ 516846.09217093285406, 5276333.304016049951315 ], [ 516847.94270778761711, 5276332.353567541576922 ], [ 516849.944113737496082, 5276331.181276699528098 ], [ 516850.976566355850082, 5276330.006182996556163 ], [ 516851.057242047216278, 5276328.08369963336736 ], [ 516849.732858774601482, 5276326.312746741808951 ], [ 516849.445674309157766, 5276324.322515316307545 ], [ 516849.667102576990146, 5276323.078391308896244 ], [ 516848.41654453711817, 5276321.752211103215814 ], [ 516845.985042623593472, 5276321.000541678629816 ], [ 516842.58284878951963, 5276320.846220458857715 ], [ 516839.976015429070685, 5276320.983164083212614 ], [ 516839.955240761395544, 5276322.97250457201153 ], [ 516841.795922507939395, 5276322.833345399238169 ], [ 516842.103269751300104, 5276333.436961284838617 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 33, "id_source": "w342618766", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516834.060515898861922, 5276340.582219516858459 ], [ 516833.999788983026519, 5276338.203654447570443 ], [ 516837.595280821493361, 5276336.446926719509065 ], [ 516841.360352354997303, 5276335.790974584408104 ], [ 516844.245738796307705, 5276335.432557820342481 ], [ 516847.641891677048989, 5276335.075619975104928 ], [ 516850.226410214731004, 5276334.860817460343242 ], [ 516852.001641638984438, 5276333.976836183108389 ], [ 516853.777484666788951, 5276332.881691790185869 ], [ 516854.891500349156559, 5276332.073595806024969 ], [ 516856.072474469430745, 5276331.487973224371672 ], [ 516859.250160119729117, 5276331.352689253166318 ], [ 516860.646419937082101, 5276331.64569441601634 ], [ 516863.163113818038255, 5276331.508499074727297 ], [ 516866.341668640263379, 5276331.073144298046827 ], [ 516867.891114889236633, 5276330.344109577126801 ], [ 516869.451485043333378, 5276328.437026088126004 ], [ 516870.785455524746794, 5276326.896048210561275 ], [ 516871.964307384158019, 5276327.043944713659585 ], [ 516874.100963943870738, 5276328.450495004653931 ], [ 516876.459543989039958, 5276331.03576997667551 ], [ 516877.558580015029293, 5276332.806075979955494 ], [ 516878.737888063827995, 5276335.387934657745063 ], [ 516858.794641599641182, 5276335.619135149754584 ], [ 516858.856532025500201, 5276340.187155994586647 ], [ 516834.060515898861922, 5276340.582219516858459 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 34, "id_source": "w342618767", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516902.493528608873021, 5276320.78638772200793 ], [ 516897.75229941814905, 5276316.149218405596912 ], [ 516897.195012957556173, 5276316.647730220109224 ], [ 516895.35987316846149, 5276314.875285129994154 ], [ 516888.603294469648972, 5276321.390703242272139 ], [ 516887.741398174548522, 5276320.732479789294302 ], [ 516882.678544542053714, 5276325.985823540948331 ], [ 516882.880446975876112, 5276326.297599968500435 ], [ 516881.267589553899597, 5276328.171185835264623 ], [ 516879.353850786865223, 5276325.009271685034037 ], [ 516878.84455880720634, 5276321.906998065300286 ], [ 516878.786329990951344, 5276318.672664055600762 ], [ 516878.643383346963674, 5276316.160492591559887 ], [ 516878.579994241823442, 5276312.114823862910271 ], [ 516878.438528888800647, 5276309.091414116322994 ], [ 516878.744295267795678, 5276307.258495224639773 ], [ 516880.817795314185787, 5276304.541582104749978 ], [ 516882.885337260668166, 5276303.880736844614148 ], [ 516884.882474761572666, 5276304.186603574082255 ], [ 516887.755470029194839, 5276305.517495769076049 ], [ 516891.293327631894499, 5276308.106196179054677 ], [ 516893.870187344029546, 5276310.536515596322715 ], [ 516896.012002412695438, 5276312.754408658482134 ], [ 516897.262325910618529, 5276314.158396220766008 ], [ 516902.490468366770074, 5276319.252650953829288 ], [ 516902.493528608873021, 5276320.78638772200793 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 35, "id_source": "w342618768", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516889.246283532760572, 5276301.698613105341792 ], [ 516883.483208679361269, 5276302.33762816619128 ], [ 516880.013209776720032, 5276302.249772400595248 ], [ 516877.876094076375011, 5276300.998814284801483 ], [ 516874.857794859563001, 5276297.967068654485047 ], [ 516872.423862048017327, 5276295.459374033845961 ], [ 516870.731841609871481, 5276293.542869847267866 ], [ 516869.847952455747873, 5276292.695647917687893 ], [ 516875.623787402058952, 5276287.655524424277246 ], [ 516889.545908253116067, 5276273.492227412760258 ], [ 516892.281101699511055, 5276273.13339876383543 ], [ 516893.910225590167101, 5276273.427087199874222 ], [ 516911.137140598497353, 5276290.414771029725671 ], [ 516909.657854619377758, 5276292.844435356557369 ], [ 516908.252398803771939, 5276293.129318228922784 ], [ 516905.96634972532047, 5276291.43335865624249 ], [ 516901.254144720907789, 5276287.140804120339453 ], [ 516898.676213512255345, 5276285.077239450067282 ], [ 516896.904410077724606, 5276284.772021752782166 ], [ 516893.566639267490245, 5276288.296581671573222 ], [ 516889.047854661592282, 5276292.417873037047684 ], [ 516888.09159660973819, 5276293.215305970981717 ], [ 516885.946967976517044, 5276291.964323135092854 ], [ 516884.028165822499432, 5276293.136841103434563 ], [ 516882.483706183149479, 5276294.732775627635419 ], [ 516889.246283532760572, 5276301.698613105341792 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 36, "id_source": "w342618769", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516849.975431495055091, 5276320.356360760517418 ], [ 516851.8123384086648, 5276324.118197196163237 ], [ 516853.720896689395886, 5276326.47988139372319 ], [ 516855.715937200409826, 5276327.508140136487782 ], [ 516858.742756086867303, 5276327.594698653556406 ], [ 516861.251103833317757, 5276327.746441533789039 ], [ 516864.135626647679601, 5276327.688109288923442 ], [ 516866.052289261715487, 5276327.249100607819855 ], [ 516868.197477128880564, 5276325.710471387952566 ], [ 516869.236608734936453, 5276324.824363468214869 ], [ 516869.682542661321349, 5276323.869853686541319 ], [ 516868.949849321856163, 5276322.689650672487915 ], [ 516867.182529767858796, 5276320.83961312379688 ], [ 516866.37620318797417, 5276319.147954587824643 ], [ 516865.635578905115835, 5276318.112210646271706 ], [ 516863.860565833339933, 5276318.91839062422514 ], [ 516862.88972504431149, 5276322.160858820192516 ], [ 516862.515719324641395, 5276324.21586038172245 ], [ 516860.00589013233548, 5276324.575355288572609 ], [ 516857.498602538136765, 5276324.056855018250644 ], [ 516857.061838299734518, 5276321.843910871073604 ], [ 516857.286485051678028, 5276319.488399492576718 ], [ 516856.847790368250571, 5276317.942287973128259 ], [ 516855.07641294284258, 5276317.492602572776377 ], [ 516851.386665978992824, 5276318.070966043509543 ], [ 516849.462908179499209, 5276318.36547742690891 ], [ 516849.975431495055091, 5276320.356360760517418 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 37, "id_source": "w342618770", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516905.054138185689226, 5276352.101874426007271 ], [ 516898.350374342000578, 5276345.602975036017597 ], [ 516903.018478880927432, 5276341.782201295718551 ], [ 516904.854865894943941, 5276343.121207697317004 ], [ 516909.005345055367798, 5276339.07665690779686 ], [ 516907.606708089297172, 5276337.016511903144419 ], [ 516911.755676713073626, 5276333.494315310381353 ], [ 516918.31050590594532, 5276339.548238541930914 ], [ 516905.054138185689226, 5276352.101874426007271 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 38, "id_source": "w343045449", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516824.077421205292922, 5276442.179520559497178 ], [ 516824.103619314031675, 5276433.110595526173711 ], [ 516830.878377931017894, 5276433.230195969343185 ], [ 516830.852747403609101, 5276442.099071180447936 ], [ 516824.077421205292922, 5276442.179520559497178 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 39, "id_source": "w343045452", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516845.197392237838358, 5276458.278031245805323 ], [ 516845.423262091760989, 5276452.899522116407752 ], [ 516856.952532380353659, 5276453.032907165586948 ], [ 516857.042407884611748, 5276458.312304059043527 ], [ 516845.197392237838358, 5276458.278031245805323 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 40, "id_source": "w345737630", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517198.031714984565042, 5276451.651735503226519 ], [ 517203.796214410627726, 5276453.035779909230769 ], [ 517208.593114830437116, 5276456.506398309953511 ], [ 517211.687835552613251, 5276461.550174494273961 ], [ 517212.616989838832524, 5276467.387757888063788 ], [ 517211.232989612733945, 5276473.129593194462359 ], [ 517207.748713313078042, 5276477.909420877695084 ], [ 517202.692073725978844, 5276481.006395558826625 ], [ 517196.838186720618978, 5276481.922681125812232 ], [ 517191.073681523790583, 5276480.549757359549403 ], [ 517186.276823462336324, 5276477.068039351142943 ], [ 517183.182056372985244, 5276472.035390463657677 ], [ 517182.252873389690649, 5276466.197811791673303 ], [ 517183.636879390513059, 5276460.444855847395957 ], [ 517187.121146148361731, 5276455.665013891644776 ], [ 517192.177766465058085, 5276452.57913966011256 ], [ 517198.031714984565042, 5276451.651735503226519 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 41, "id_source": "w345744104", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517259.964529229910113, 5276607.73071498144418 ], [ 517262.758359184081201, 5276607.816793796606362 ], [ 517265.301923562132288, 5276608.713452448137105 ], [ 517266.650065713329241, 5276610.00667099840939 ], [ 517267.162947366770823, 5276611.819770255126059 ], [ 517266.895452177501284, 5276613.374934200197458 ], [ 517265.442617826163769, 5276614.459796715527773 ], [ 517257.89919721649494, 5276615.27098586037755 ], [ 517256.670734889106825, 5276614.144833649508655 ], [ 517254.170060470118187, 5276611.447841245681047 ], [ 517255.650236769462936, 5276611.274403218179941 ], [ 517257.042655503668357, 5276612.83448622841388 ], [ 517262.985662306426093, 5276612.21860325243324 ], [ 517259.964529229910113, 5276607.73071498144418 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 42, "id_source": "w345744105", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517240.901260687445756, 5276615.476259981282055 ], [ 517237.858455763373058, 5276615.767329943366349 ], [ 517235.577870710287243, 5276614.838119643740356 ], [ 517234.329403823299799, 5276612.856136604212224 ], [ 517234.143481754988898, 5276607.154115339741111 ], [ 517235.503110585385002, 5276604.568582092411816 ], [ 517238.212239413638599, 5276602.820591975003481 ], [ 517241.744840459839907, 5276601.997501282952726 ], [ 517244.245977763726842, 5276602.004906795918941 ], [ 517252.150148084503599, 5276608.73004618473351 ], [ 517253.818200126057491, 5276611.057809507474303 ], [ 517247.214726768492255, 5276611.505036083981395 ], [ 517245.448273388494272, 5276609.432604781351984 ], [ 517237.093243043578696, 5276610.385899258777499 ], [ 517240.901260687445756, 5276615.476259981282055 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 43, "id_source": "w387419746", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517074.34571770747425, 5277286.481291118077934 ], [ 517073.815601031994447, 5277285.423907616175711 ], [ 517073.622539670730475, 5277264.184509105980396 ], [ 517075.53335638466524, 5277263.078713825903833 ], [ 517076.426174592168536, 5277263.381409962661564 ], [ 517088.862423049926292, 5277273.798362581990659 ], [ 517075.503046040714253, 5277286.217949401587248 ], [ 517074.34571770747425, 5277286.481291118077934 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 44, "id_source": "w395097932", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516950.782598124700598, 5277399.771897230297327 ], [ 516976.789713834121358, 5277399.725418890826404 ], [ 516976.812687043042388, 5277412.451004424132407 ], [ 516976.815368280746043, 5277414.106996771879494 ], [ 516976.851422933628783, 5277435.223683521151543 ], [ 516951.114820280869026, 5277435.270948335528374 ], [ 516929.053089810709935, 5277455.111913793720305 ], [ 516993.976177690085024, 5277455.067660893313587 ], [ 516993.189909731387161, 5277402.829610265791416 ], [ 516993.096773312136065, 5277398.717162104323506 ], [ 517005.671745092316996, 5277397.586909036152065 ], [ 517007.685480395273771, 5277392.0802520820871 ], [ 517007.646211590908933, 5277384.956069781444967 ], [ 517006.950365502969362, 5277378.930254627019167 ], [ 517004.12191711430205, 5277377.966190176084638 ], [ 516950.912539526296314, 5277378.355617901310325 ], [ 516950.856917472730856, 5277397.460403767414391 ], [ 516950.782598124700598, 5277399.771897230297327 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 45, "id_source": "w395097933", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516863.034932061680593, 5277387.269473287276924 ], [ 516860.046953876328189, 5277386.927400229498744 ], [ 516859.866241743031424, 5277374.123562324792147 ], [ 516805.30252495984314, 5277375.388404211960733 ], [ 516805.397113104758319, 5277381.645852354355156 ], [ 516793.801258020394016, 5277381.801331114023924 ], [ 516794.674426411744207, 5277464.414125978015363 ], [ 516802.348777721053921, 5277464.669662701897323 ], [ 516802.256327421520837, 5277470.682064110413194 ], [ 516805.464359833393246, 5277470.224535719491541 ], [ 516805.017967201885767, 5277489.583817024715245 ], [ 516809.396681535465177, 5277492.01930742431432 ], [ 516806.79525656288024, 5277498.268973419442773 ], [ 516804.580934366211295, 5277497.895819933153689 ], [ 516794.048058926768135, 5277494.108898930251598 ], [ 516788.810651340521872, 5277489.959389437921345 ], [ 516785.688078753475565, 5277486.827354734763503 ], [ 516783.973901469027624, 5277482.287905092351139 ], [ 516783.984698798099998, 5277478.542521808296442 ], [ 516782.501129335782025, 5277341.891761313192546 ], [ 516784.074300747073721, 5277340.651529593393207 ], [ 516891.373962575104088, 5277339.328077659010887 ], [ 516891.272426267038099, 5277345.851694053970277 ], [ 516875.455994656716939, 5277345.961425642482936 ], [ 516863.034932061680593, 5277387.269473287276924 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 46, "id_source": "w395097934", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517019.950111921411008, 5277384.08067733515054 ], [ 517019.962440094444901, 5277387.570506259799004 ], [ 517020.398079790233169, 5277387.549551795236766 ], [ 517021.397391892562155, 5277472.152171716094017 ], [ 517021.509628261090256, 5277479.998977976851165 ], [ 517019.369208245712798, 5277480.037176531739533 ], [ 517019.571434503071941, 5277487.928701876662672 ], [ 517007.404942470835522, 5277488.115428001619875 ], [ 517007.331165642826818, 5277485.092206737957895 ], [ 517004.185800015751738, 5277484.660687646828592 ], [ 516999.904898837383371, 5277484.759326064959168 ], [ 516999.840834557253402, 5277480.980381866917014 ], [ 516999.51992562081432, 5277480.29037737287581 ], [ 516928.875338061538059, 5277480.084533797577024 ], [ 516928.283628532488365, 5277482.127787612378597 ], [ 517024.800330617115833, 5277497.502023031003773 ], [ 517024.957025903160684, 5277495.279682827182114 ], [ 517025.822427126695402, 5277481.834283281117678 ], [ 517025.979773205064703, 5277479.389665226452053 ], [ 517027.62866405560635, 5277454.832566075026989 ], [ 517027.720339584862813, 5277449.164698623120785 ], [ 517027.833178302680608, 5277441.396348789334297 ], [ 517027.170987900812179, 5277403.328993655741215 ], [ 517073.383038537052926, 5277394.517563253641129 ], [ 517074.671501213044394, 5277393.065408975817263 ], [ 517077.008046307542827, 5277390.182624198496342 ], [ 517079.219773042947054, 5277388.888774883002043 ], [ 517077.084387493494432, 5277376.957199269905686 ], [ 517072.18918880529236, 5277376.509397665970027 ], [ 517024.003603314515203, 5277377.024030573666096 ], [ 517024.058002053876407, 5277384.103801283054054 ], [ 517019.950111921411008, 5277384.08067733515054 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 47, "id_source": "w395097935", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516868.770101723086555, 5277393.298754908144474 ], [ 516870.462444369506557, 5277382.034073974005878 ], [ 516877.840151886281092, 5277360.305381040088832 ], [ 516878.285049677535426, 5277393.359672509133816 ], [ 516874.845611660857685, 5277393.316360782831907 ], [ 516868.770101723086555, 5277393.298754908144474 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 48, "id_source": "w395097936", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516842.170450465055183, 5277437.210915596224368 ], [ 516842.529669232899323, 5277406.492889385670424 ], [ 516874.762992984557059, 5277406.275032329373062 ], [ 516875.365418186527677, 5277400.530846133828163 ], [ 516886.599087996815797, 5277400.952406934462488 ], [ 516928.285059344372712, 5277437.727399924769998 ], [ 516842.170450465055183, 5277437.210915596224368 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 49, "id_source": "w395097937", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516901.92081075895112, 5277346.138218006119132 ], [ 516902.023585006361827, 5277339.192273776046932 ], [ 516935.466940246638842, 5277338.789325847290456 ], [ 516935.197084536834154, 5277351.525171746499836 ], [ 516925.251642388233449, 5277352.274231209419668 ], [ 516925.482551758817863, 5277389.095547544769943 ], [ 516923.454844661755487, 5277389.100767223164439 ], [ 516906.287520830519497, 5277388.939752215519547 ], [ 516905.630570620356593, 5277346.204558455385268 ], [ 516901.92081075895112, 5277346.138218006119132 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 50, "id_source": "w400596004", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516849.974800481111743, 5276626.91305841691792 ], [ 516851.588837718300056, 5276627.195578062906861 ], [ 516852.968300470733084, 5276628.077573969960213 ], [ 516853.903269579051994, 5276629.425070749595761 ], [ 516854.259192514640745, 5276631.0153992716223 ], [ 516853.969115059589967, 5276632.626086154952645 ], [ 516853.086353658582084, 5276634.001664360053837 ], [ 516851.746715493267402, 5276634.931361604481936 ], [ 516850.14586920524016, 5276635.28237665258348 ], [ 516848.53183414414525, 5276634.999857395887375 ], [ 516847.152372373675462, 5276634.117862526327372 ], [ 516846.209859439579304, 5276632.78145897667855 ], [ 516845.861477453028783, 5276631.180038791149855 ], [ 516846.144009696785361, 5276629.580443668179214 ], [ 516847.026770114374813, 5276628.204864426515996 ], [ 516848.373952101857867, 5276627.264073950238526 ], [ 516849.974800481111743, 5276626.91305841691792 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 51, "id_source": "w400597926", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516888.607160441344604, 5276599.795725983567536 ], [ 516886.369678344228305, 5276599.52250230871141 ], [ 516884.029363043198828, 5276598.448775165714324 ], [ 516883.395219611236826, 5276596.968778026290238 ], [ 516883.085302418854553, 5276595.056275879964232 ], [ 516883.62289607146522, 5276593.56856178957969 ], [ 516884.581714557483792, 5276591.870903476141393 ], [ 516886.131867414689623, 5276590.87514031957835 ], [ 516887.99580426060129, 5276590.458214192651212 ], [ 516890.811793032684363, 5276590.677546450868249 ], [ 516892.297282087907661, 5276591.259781807661057 ], [ 516893.518791984417476, 5276592.219126921147108 ], [ 516894.371040587546304, 5276593.599732105620205 ], [ 516894.735690879111644, 5276594.767757330089808 ], [ 516894.626217450713739, 5276596.256712383590639 ], [ 516894.035593363863882, 5276597.899867290630937 ], [ 516892.80841081199469, 5276598.896565194241703 ], [ 516891.161648435052484, 5276599.536399168893695 ], [ 516888.607160441344604, 5276599.795725983567536 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 52, "id_source": "w400601709", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517066.445795848267153, 5276532.830110687762499 ], [ 517067.877435012836941, 5276533.845678032375872 ], [ 517068.354426381760277, 5276535.114069206640124 ], [ 517068.192167645844165, 5276536.658436276949942 ], [ 517066.856824344606139, 5276538.66615242511034 ], [ 517061.78498737240443, 5276544.430558699183166 ], [ 517059.439831006515305, 5276545.012729303911328 ], [ 517056.992971596890129, 5276544.416521552950144 ], [ 517055.405457444372587, 5276542.767003753222525 ], [ 517055.034073568182066, 5276541.343327248468995 ], [ 517055.144663006940391, 5276539.487617188133299 ], [ 517055.953483059303835, 5276537.733977769501507 ], [ 517057.392739939736202, 5276536.148894566111267 ], [ 517065.011811412288807, 5276532.61474306602031 ], [ 517065.860555740597192, 5276532.617230146192014 ], [ 517066.445795848267153, 5276532.830110687762499 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 53, "id_source": "w400613444", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516987.452493651013356, 5276596.971303411759436 ], [ 516983.756675439246465, 5276573.932366390712559 ], [ 516981.214040140039288, 5276567.545529939234257 ], [ 516987.642917154124007, 5276557.439447787590325 ], [ 516980.883114801777992, 5276552.240621170029044 ], [ 516994.80080003826879, 5276529.175265032798052 ], [ 516975.883787118422333, 5276512.549156718887389 ], [ 517036.108190654893406, 5276502.144512789323926 ], [ 517036.32497173291631, 5276505.068122293800116 ], [ 517006.788756772992201, 5276544.514203958213329 ], [ 517025.338118888263125, 5276558.371959769167006 ], [ 517025.328469115775079, 5276561.672782326117158 ], [ 517003.51125269010663, 5276586.593259064480662 ], [ 517002.50389213958988, 5276594.614608574658632 ], [ 516987.452493651013356, 5276596.971303411759436 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 54, "id_source": "w435813577", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516565.160712962970138, 5277473.936993055045605 ], [ 516586.958641037694179, 5277459.239679417572916 ], [ 516582.635480685392395, 5277455.715344563126564 ], [ 516586.365512145508546, 5277453.914389882236719 ], [ 516589.487032977747731, 5277454.823516473174095 ], [ 516592.104793138511013, 5277455.942374826408923 ], [ 516593.513503284135368, 5277457.046674339100718 ], [ 516602.634818743506912, 5277471.331923814490438 ], [ 516602.927762665727641, 5277473.944546245038509 ], [ 516602.719261647376698, 5277475.955583387054503 ], [ 516602.210971284541301, 5277477.754599887877703 ], [ 516601.605877951718867, 5277479.264376729726791 ], [ 516600.597284538904205, 5277480.061707899905741 ], [ 516598.478668734082021, 5277480.355745058506727 ], [ 516595.979775559797417, 5277474.424866015091538 ], [ 516567.273035817081109, 5277475.854609301313758 ], [ 516565.959991996991448, 5277475.439655515365303 ], [ 516565.73545712226769, 5277475.172280942089856 ], [ 516565.263984411314595, 5277474.593012128025293 ], [ 516565.160712962970138, 5277473.936993055045605 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 55, "id_source": "w435819540", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516654.01805674447678, 5277499.941602813079953 ], [ 516653.819298847403843, 5277498.540671728551388 ], [ 516654.430482894182205, 5277497.53104710765183 ], [ 516669.56221590784844, 5277487.238343390636146 ], [ 516671.478355312021449, 5277486.843726397491992 ], [ 516673.691735107859131, 5277487.550246145576239 ], [ 516675.402245739591308, 5277488.155300498940051 ], [ 516676.510509447951335, 5277489.269873730838299 ], [ 516677.712993269320577, 5277491.573913846164942 ], [ 516678.007048576080706, 5277493.786439917981625 ], [ 516677.797089598549064, 5277496.297599874436855 ], [ 516677.087446670804638, 5277497.595903730019927 ], [ 516676.175295095425099, 5277498.80471570417285 ], [ 516674.971440919849556, 5277499.601474764756858 ], [ 516673.558459573832806, 5277499.997531560249627 ], [ 516654.872834386012983, 5277500.410835509188473 ], [ 516654.01805674447678, 5277499.941602813079953 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 56, "id_source": "w435819541", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516592.562656500318553, 5277392.782894633710384 ], [ 516593.564105231547728, 5277394.497302561067045 ], [ 516595.476563399017323, 5277395.402986350469291 ], [ 516597.790752420609351, 5277395.0094796391204 ], [ 516607.365527006273624, 5277392.525022241286933 ], [ 516609.186061897780746, 5277391.429930838756263 ], [ 516610.090706246264745, 5277390.221087141893804 ], [ 516610.906056514824741, 5277388.723025188781321 ], [ 516611.007426889962517, 5277387.41186405159533 ], [ 516611.011422151408624, 5277386.011513214558363 ], [ 516610.609057795954868, 5277384.898966672830284 ], [ 516609.80949227954261, 5277383.496323361061513 ], [ 516605.273280631110538, 5277386.195196626707911 ], [ 516597.643240055942442, 5277375.626267831772566 ], [ 516603.089583630498964, 5277372.429854614660144 ], [ 516602.087531711440533, 5277370.92660912219435 ], [ 516600.077469086798374, 5277370.009530962444842 ], [ 516597.261530381045304, 5277369.901477105915546 ], [ 516594.94039169914322, 5277370.094912517815828 ], [ 516593.023047319846228, 5277370.900768828578293 ], [ 516591.11324507399695, 5277371.695533276535571 ], [ 516588.691058366501238, 5277373.088993662036955 ], [ 516587.575568009051494, 5277374.497291675768793 ], [ 516586.969644743367098, 5277376.296031087636948 ], [ 516586.964198803470936, 5277378.207621091045439 ], [ 516587.058978121494874, 5277379.208149813115597 ], [ 516591.701180707721505, 5277376.209486835636199 ], [ 516597.807354450516868, 5277389.185798333026469 ], [ 516592.562656500318553, 5277392.782894633710384 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 57, "id_source": "w437560217", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516148.231295185163617, 5276961.166997685097158 ], [ 516140.350367845327128, 5276932.226588282734156 ], [ 516145.994908686319832, 5276930.741850190795958 ], [ 516150.628329529135954, 5276930.954750994220376 ], [ 516153.84672470134683, 5276932.264013238251209 ], [ 516155.854510829958599, 5276934.081161126494408 ], [ 516157.667300542409066, 5276935.797742884606123 ], [ 516158.669265022152103, 5276937.40093541238457 ], [ 516161.355179659789428, 5276949.255885404534638 ], [ 516160.846672745014075, 5276951.166077611967921 ], [ 516159.428011789685115, 5276953.573872858658433 ], [ 516157.309768773964606, 5276956.379830311983824 ], [ 516155.186268224904779, 5276958.374453850090504 ], [ 516152.162593252724037, 5276959.977592044509947 ], [ 516148.231295185163617, 5276961.166997685097158 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 58, "id_source": "w437582713", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516041.836825901409611, 5277296.659471808932722 ], [ 516043.63620664307382, 5277300.487638493068516 ], [ 516046.049194930470549, 5277302.394778434187174 ], [ 516047.757312518602703, 5277303.910987295210361 ], [ 516049.768066141288728, 5277304.616710420697927 ], [ 516051.277302989154123, 5277304.720896753482521 ], [ 516099.248974451620597, 5277294.817420925945044 ], [ 516101.565135880198795, 5277293.712427788414061 ], [ 516103.589759587019216, 5277292.117614130489528 ], [ 516104.19446591072483, 5277290.70781128667295 ], [ 516104.70735214772867, 5277287.197212439961731 ], [ 516104.509284499159548, 5277285.496225762180984 ], [ 516103.423106525558978, 5277279.058227592147887 ], [ 516087.800845949270297, 5277282.22698091994971 ], [ 516089.394682380952872, 5277289.766662889160216 ], [ 516061.682170145155396, 5277295.313822302035987 ], [ 516060.780937482253648, 5277292.599525346420705 ], [ 516041.836825901409611, 5277296.659471808932722 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 59, "id_source": "w437582716", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516087.971930546045769, 5277329.028421093709767 ], [ 516082.89834433136275, 5277306.119606190361083 ], [ 516099.22767809801735, 5277302.519349787384272 ], [ 516102.242739444889594, 5277303.961390778422356 ], [ 516103.041608022584114, 5277305.664039053954184 ], [ 516103.646015100879595, 5277307.077186118811369 ], [ 516103.497296726854984, 5277325.548209192231297 ], [ 516087.971930546045769, 5277329.028421093709767 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 60, "id_source": "w437589848", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516013.250200282898732, 5277322.420780627056956 ], [ 516009.765244867128786, 5277306.14033189509064 ], [ 516034.405782080197241, 5277300.684490776620805 ], [ 516038.566727487370372, 5277308.731358015909791 ], [ 516043.982657742511947, 5277316.481609044596553 ], [ 516013.250200282898732, 5277322.420780627056956 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 61, "id_source": "w438978440", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516964.874102490895893, 5276715.691669804044068 ], [ 516960.952699856192339, 5276713.368539907038212 ], [ 516958.644364364212379, 5276711.650264710187912 ], [ 516956.640245083544869, 5276708.632540868595243 ], [ 516955.839597265876364, 5276705.018166916444898 ], [ 516954.745445047039539, 5276701.602990162558854 ], [ 516952.63383963907836, 5276699.38516120519489 ], [ 516949.717994845064823, 5276697.365043761208653 ], [ 516947.306536089163274, 5276694.946292435750365 ], [ 516945.2029859998147, 5276692.539552057161927 ], [ 516944.304429570096545, 5276689.013806753791869 ], [ 516943.812005724117626, 5276685.300305660814047 ], [ 516943.019439475552645, 5276681.485905591398478 ], [ 516942.119392637105193, 5276678.471399303525686 ], [ 516940.82068906276254, 5276675.655785036273301 ], [ 516938.710814528341871, 5276672.837811584584415 ], [ 516937.505676006956492, 5276671.422831314615905 ], [ 516938.313989993766882, 5276669.824769679456949 ], [ 516940.339383224258199, 5276668.119108679704368 ], [ 516942.055054935975932, 5276667.023816044442356 ], [ 516943.256789020786528, 5276667.027312304824591 ], [ 516946.076498124748468, 5276668.535903649404645 ], [ 516949.593225368706044, 5276670.557767959311604 ], [ 516953.719524624990299, 5276672.170191851444542 ], [ 516956.544179731572513, 5276671.978364228270948 ], [ 516960.776273791969288, 5276670.790378994308412 ], [ 516964.301768365025055, 5276669.800390003249049 ], [ 516967.932448230974842, 5276668.799595638178289 ], [ 516971.259748495649546, 5276668.809291303157806 ], [ 516973.169148603861686, 5276670.826485947705805 ], [ 516974.975469093071297, 5276672.132086229510605 ], [ 516977.393956848361995, 5276672.13913638330996 ], [ 516980.116669326205738, 5276670.846739260479808 ], [ 516982.42796411953168, 5276671.553659514524043 ], [ 516983.734742814325728, 5276674.169255105778575 ], [ 516984.435185535170604, 5276676.082902009598911 ], [ 516984.731826092931442, 5276677.384102518670261 ], [ 516984.11904106521979, 5276678.893816226162016 ], [ 516982.699575853766873, 5276684.013220119290054 ], [ 516982.383432620612439, 5276686.824134463444352 ], [ 516983.378658129891846, 5276693.2509158058092 ], [ 516985.475417279987596, 5276697.980471583083272 ], [ 516987.379550827143248, 5276701.798120092600584 ], [ 516989.588198829093017, 5276704.216296444647014 ], [ 516989.98823685006937, 5276706.117953753098845 ], [ 516989.170619533280842, 5276708.327249999158084 ], [ 516985.538394717557821, 5276712.439940376207232 ], [ 516982.300851388135925, 5276715.142308777198195 ], [ 516979.075228797388263, 5276716.33321273047477 ], [ 516974.438748443732038, 5276717.119902653619647 ], [ 516971.118986550602131, 5276717.11022699251771 ], [ 516967.793171100725885, 5276716.600406582467258 ], [ 516964.874102490895893, 5276715.691669804044068 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 62, "id_source": "w511510926", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516345.249631054000929, 5277449.853823395445943 ], [ 516346.759324829850812, 5277441.75596734508872 ], [ 516348.962936142401304, 5277429.914647633209825 ], [ 516344.274934911285527, 5277425.211383985355496 ], [ 516347.566448008583393, 5277421.764176031574607 ], [ 516344.424651509500109, 5277420.032687746919692 ], [ 516343.132455579412635, 5277420.206884070299566 ], [ 516342.425155669741798, 5277420.693913970142603 ], [ 516340.761748474324122, 5277427.368749489076436 ], [ 516345.421530891850125, 5277428.748849832452834 ], [ 516343.572270487900823, 5277437.423680024221539 ], [ 516346.770090397272725, 5277437.92167298682034 ], [ 516344.393916437285952, 5277449.706939280033112 ], [ 516344.769251767138485, 5277449.763562897220254 ], [ 516345.249631054000929, 5277449.853823395445943 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 63, "id_source": "w511510929", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516461.098823564767372, 5277428.007816318422556 ], [ 516457.02458500477951, 5277426.718190221115947 ], [ 516453.567786264000461, 5277424.852384639903903 ], [ 516452.598508212831803, 5277422.37122683506459 ], [ 516453.50194973917678, 5277418.917330568656325 ], [ 516455.016176005243324, 5277417.243398266844451 ], [ 516457.949517434288282, 5277415.662389588542283 ], [ 516461.501183607848361, 5277415.850254211574793 ], [ 516464.518171595002059, 5277416.558966252952814 ], [ 516466.490847017907072, 5277417.420321987941861 ], [ 516461.098823564767372, 5277428.007816318422556 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 64, "id_source": "w511510936", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516413.291072103602346, 5277414.558290612883866 ], [ 516399.563981445098761, 5277400.849407986737788 ], [ 516400.101065565017052, 5277399.47278680279851 ], [ 516401.970277152664494, 5277399.744787974283099 ], [ 516428.889549283951055, 5277409.111976910382509 ], [ 516429.463419294392224, 5277410.669554119929671 ], [ 516429.05663146689767, 5277411.112965608946979 ], [ 516414.003883312281687, 5277414.782579838298261 ], [ 516413.291072103602346, 5277414.558290612883866 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 65, "id_source": "w511510937", "type": "hedge", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516387.519644212210551, 5277392.268841031938791 ], [ 516412.032716302375775, 5277418.711373525671661 ], [ 516435.044775786926039, 5277412.808077803812921 ], [ 516436.348208549723495, 5277408.655127067118883 ], [ 516388.272886697610375, 5277391.470754365436733 ], [ 516387.521771378815174, 5277391.513096115551889 ], [ 516387.519644212210551, 5277392.268841031938791 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 66, "id_source": "w511510938", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516349.122218859847635, 5277389.237914191558957 ], [ 516376.971867700514849, 5277417.645729565061629 ], [ 516375.131277973239776, 5277423.219772600568831 ], [ 516379.251133432786446, 5277426.987888126634061 ], [ 516387.022299335862044, 5277424.886984696611762 ], [ 516383.886990124185104, 5277420.85489853285253 ], [ 516394.010882213362493, 5277418.004874652251601 ], [ 516362.986457669641823, 5277386.264972837641835 ], [ 516367.564459832792636, 5277384.688541206531227 ], [ 516361.748995233152527, 5277382.993984006345272 ], [ 516358.775819219939876, 5277382.718893859535456 ], [ 516356.288664200867061, 5277383.200921459123492 ], [ 516353.086101360968314, 5277384.381121629849076 ], [ 516350.820624282234348, 5277386.152996275573969 ], [ 516349.350730523292441, 5277388.093815576285124 ], [ 516349.122218859847635, 5277389.237914191558957 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 67, "id_source": "w511510939", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516344.691889998619445, 5277402.417773661203682 ], [ 516346.124426398251671, 5277397.731694337911904 ], [ 516350.154200024495367, 5277401.49953602347523 ], [ 516344.691889998619445, 5277402.417773661203682 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 68, "id_source": "w511510940", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516364.768550980137661, 5277430.892627101391554 ], [ 516375.606227438431233, 5277427.911209838464856 ], [ 516372.154404024593532, 5277424.267229223623872 ], [ 516366.998391307774, 5277425.764234390109777 ], [ 516362.480660552682821, 5277421.939439468085766 ], [ 516361.48695067880908, 5277428.138250023126602 ], [ 516364.768550980137661, 5277430.892627101391554 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 69, "id_source": "w617671556", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516180.092093858111184, 5277671.483252213336527 ], [ 516199.821587358426768, 5277678.940034786239266 ], [ 516201.086392213706858, 5277656.204337294213474 ], [ 516197.985469670325983, 5277656.006770871579647 ], [ 516195.177677093539387, 5277647.619013450108469 ], [ 516196.122834226523992, 5277623.704344338737428 ], [ 516167.449725878075697, 5277616.033794342540205 ], [ 516163.495264794502873, 5277633.838533106260002 ], [ 516180.092093858111184, 5277671.483252213336527 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 70, "id_source": "w617671557", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516137.574281121953391, 5277703.44020395167172 ], [ 516147.381181092991028, 5277706.357033611275256 ], [ 516169.025934602017514, 5277719.075941341929138 ], [ 516185.04201722756261, 5277725.110886143520474 ], [ 516200.509353643690702, 5277688.155444013886154 ], [ 516192.379050977702718, 5277684.531892837956548 ], [ 516188.176714532019105, 5277696.945643622428179 ], [ 516187.343746514350642, 5277699.43286060821265 ], [ 516170.952737226791214, 5277693.174588869325817 ], [ 516165.541146222443786, 5277689.458601790480316 ], [ 516162.140329532674514, 5277683.681000236421824 ], [ 516158.534901527047623, 5277673.157160550355911 ], [ 516152.504341740335803, 5277673.284907204099 ], [ 516137.574281121953391, 5277703.44020395167172 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 71, "id_source": "w617671559", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516242.378148338058963, 5277749.021166557446122 ], [ 516236.565128630085383, 5277749.260572599247098 ], [ 516231.144996893359348, 5277751.334887972101569 ], [ 516226.666565928782802, 5277755.023361507803202 ], [ 516223.603984520188533, 5277759.949436793103814 ], [ 516222.274102147785015, 5277765.591637076810002 ], [ 516258.015213019330986, 5277764.335436600260437 ], [ 516256.191418932692613, 5277758.595525129698217 ], [ 516252.72752354235854, 5277753.940206101164222 ], [ 516247.953195728652645, 5277750.637138257734478 ], [ 516242.378148338058963, 5277749.021166557446122 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 72, "id_source": "r3327971", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516424.964104821963701, 5276180.740065201185644 ], [ 516446.595749705971684, 5276245.128729283809662 ], [ 516476.740098067792132, 5276231.521524302661419 ], [ 516589.288905209454242, 5276171.881165928207338 ], [ 516584.977519440813921, 5276137.504510704427958 ], [ 516563.365462852932978, 5276095.676737695932388 ], [ 516449.507493920740671, 5276158.314668531529605 ], [ 516424.964104821963701, 5276180.740065201185644 ] ], [ [ 516439.578897476778366, 5276192.317591353319585 ], [ 516447.579363307973836, 5276165.466615495271981 ], [ 516501.321642060705926, 5276134.644010124728084 ], [ 516548.032741847157013, 5276112.059593254700303 ], [ 516577.610268933291081, 5276171.24776020180434 ], [ 516533.853454668540508, 5276198.452620967291296 ], [ 516518.01794817391783, 5276206.843188677914441 ], [ 516462.779899108514655, 5276232.904635717161 ], [ 516439.578897476778366, 5276192.317591353319585 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 73, "id_source": "r2547212", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516511.728878316469491, 5277542.502993915230036 ], [ 516509.458663688972592, 5277548.598135016858578 ], [ 516508.428539135609753, 5277556.997388773597777 ], [ 516512.592472666525282, 5277637.830123279243708 ], [ 516514.347054536046926, 5277646.715177794918418 ], [ 516518.102989915234502, 5277654.261118380352855 ], [ 516522.906591688748449, 5277660.454128104262054 ], [ 516529.095505628734827, 5277665.395194073207676 ], [ 516537.0376999162836, 5277669.085365911014378 ], [ 516543.626879298943095, 5277670.582247513346374 ], [ 516549.625803072296549, 5277671.021629521623254 ], [ 516554.912710135336965, 5277670.969977363012731 ], [ 516561.680830880417489, 5277670.27793216239661 ], [ 516569.286877789534628, 5277668.054548919200897 ], [ 516575.829802344844211, 5277664.694521479308605 ], [ 516580.594299512333237, 5277660.862648424692452 ], [ 516584.941971972002648, 5277655.729254907928407 ], [ 516588.404884741699789, 5277650.115441950038075 ], [ 516590.91579830943374, 5277643.898762488737702 ], [ 516591.939280900929589, 5277637.866782613098621 ], [ 516592.074796514818445, 5277632.476883607916534 ], [ 516587.64069943112554, 5277554.599638471379876 ], [ 516586.645097538887057, 5277548.206258443184197 ], [ 516584.529217125964351, 5277542.276474807411432 ], [ 516581.869245822133962, 5277537.534339076839387 ], [ 516577.783436004887335, 5277532.432496793568134 ], [ 516571.565046277886722, 5277527.257902973331511 ], [ 516564.328088305133861, 5277523.747516012750566 ], [ 516558.453025791910477, 5277521.952565498650074 ], [ 516551.80158152646618, 5277521.166786517947912 ], [ 516544.321569516381714, 5277521.256665566004813 ], [ 516537.845462927303743, 5277522.194068890064955 ], [ 516530.118735325871967, 5277524.539404842071235 ], [ 516523.988747052499093, 5277527.88954158872366 ], [ 516518.334658114239573, 5277532.908133145421743 ], [ 516514.996943991049193, 5277536.744103870354593 ], [ 516511.728878316469491, 5277542.502993915230036 ] ], [ [ 516515.101216177165043, 5277544.990978563204408 ], [ 516579.062307949876413, 5277542.205334203317761 ], [ 516584.643629545345902, 5277647.103948470205069 ], [ 516520.616006066615228, 5277649.922679178416729 ], [ 516515.101216177165043, 5277544.990978563204408 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 74, "id_source": "r2596906", "type": "farmland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515957.49437283462612, 5277002.251885491423309 ], [ 515939.832338418927975, 5276982.109447724185884 ], [ 515917.25031423807377, 5276874.21992661524564 ], [ 515797.151130122249015, 5276884.117732216604054 ], [ 515789.493895635474473, 5276860.635375917889178 ], [ 515797.3460493835737, 5276812.266453668475151 ], [ 515798.35565959016094, 5276692.049411842599511 ], [ 515781.300044359115418, 5276655.449334780685604 ], [ 515758.878400046203751, 5276650.487358752638102 ], [ 515724.0696098000044, 5276612.739157604984939 ], [ 515710.99093292321777, 5276568.970413548871875 ], [ 515730.412854463036638, 5276563.988216451369226 ], [ 515713.555327681649942, 5276481.510449754074216 ], [ 515738.935830716916826, 5276428.554276085458696 ], [ 515780.974177877011243, 5276387.646404875442386 ], [ 515862.158595570886973, 5276370.062384689226747 ], [ 515868.740786949871108, 5276374.725951042957604 ], [ 515880.71889641386224, 5276394.874869927763939 ], [ 515895.384233975200914, 5276426.656352461315691 ], [ 515936.949573575693648, 5276419.023513428866863 ], [ 515982.745153642783407, 5276421.860817108303308 ], [ 516014.938195353723131, 5276432.785367758013308 ], [ 516044.765344845538493, 5276457.251500864513218 ], [ 516084.315797048737295, 5276474.776178585365415 ], [ 516139.793746621522587, 5276488.088596286252141 ], [ 516151.474271408224013, 5276509.493134968914092 ], [ 516160.522331375337671, 5276515.919879980385303 ], [ 516170.691975930531044, 5276526.873137758113444 ], [ 516177.062647754093632, 5276545.340015360154212 ], [ 516173.968933883821592, 5276572.082741529680789 ], [ 516176.049981605785433, 5276639.505851536989212 ], [ 516197.513448089594021, 5276664.805333492346108 ], [ 516209.481136448855978, 5276709.661272699013352 ], [ 516202.57157293864293, 5276747.3072899132967 ], [ 516217.266712748503778, 5276762.040864913724363 ], [ 516252.455742757359985, 5276863.920727244578302 ], [ 516189.937303205893841, 5276885.485504798591137 ], [ 516118.507856099924538, 5276894.900934981182218 ], [ 516120.457810344058089, 5276906.764941655099392 ], [ 516025.190100993728265, 5276927.129516770131886 ], [ 516038.327794493525289, 5276994.671958418563008 ], [ 515957.49437283462612, 5277002.251885491423309 ] ], [ [ 515798.38708906742977, 5276572.485462988726795 ], [ 515873.749549317057244, 5276562.576684392057359 ], [ 515880.149400955764577, 5276567.917721018195152 ], [ 515884.054680912871845, 5276603.882047647610307 ], [ 515833.45187001361046, 5276645.832833437249064 ], [ 515818.858019669074565, 5276607.172144838608801 ], [ 515806.844904647674412, 5276605.539114874787629 ], [ 515794.085619043151382, 5276579.931265401653945 ], [ 515798.38708906742977, 5276572.485462988726795 ] ], [ [ 516070.928083823877387, 5276679.947497542016208 ], [ 516163.584448294772301, 5276646.68420516513288 ], [ 516191.354534212034196, 5276713.422937500290573 ], [ 516181.481405027850997, 5276733.745174184441566 ], [ 516188.13311696331948, 5276786.110463745892048 ], [ 516134.831672320084181, 5276796.131819072179496 ], [ 516129.98018588864943, 5276774.27942640800029 ], [ 516138.315410157782026, 5276766.767247997224331 ], [ 516127.427188092493452, 5276741.497257271781564 ], [ 516101.368025715986732, 5276740.30263580288738 ], [ 516092.356474522151984, 5276718.049787561409175 ], [ 516070.928083823877387, 5276679.947497542016208 ] ] ] } } ] } diff --git a/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/data_for_tests.sql b/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/data_for_tests.sql index c00bc9b75e..75c48f0ed7 100644 --- a/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/data_for_tests.sql +++ b/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/data_for_tests.sql @@ -23,8 +23,8 @@ CREATE TABLE block_build_corr (id_block int, id_build int); CREATE TABLE rsu_test (id_rsu int, the_geom geometry, rsu_area float, rsu_building_density float, rsu_free_external_facade_density float); CREATE TABLE rsu_build_corr (id_rsu int, id_build int, rsu_mean_building_height float); CREATE TABLE road_test (id_road int, the_geom geometry, width float, zindex int, crossing varchar(30), type varchar(30) ); -CREATE TABLE veget_test (id int, the_geom geometry, height_class varchar, zindex int); -CREATE TABLE hydro_test (id int, the_geom geometry,zindex int); +CREATE TABLE veget_test (id_veget int, the_geom geometry, height_class varchar, zindex int); +CREATE TABLE hydro_test (id_water int, the_geom geometry,zindex int); CREATE TABLE rsu_test_all_indics_for_lcz(id_rsu int, sky_view_factor float, aspect_ratio float, BUILDING_FRACTION_LCZ float, IMPERVIOUS_FRACTION_LCZ float, PERVIOUS_FRACTION_LCZ float, GEOM_AVG_HEIGHT_ROOF float, EFFECTIVE_TERRAIN_ROUGHNESS_LENGTH float, HIGH_VEGETATION_FRACTION_LCZ float, @@ -141,4 +141,4 @@ CREATE TABLE rsu_test_lcz_indics AS SELECT id_rsu, sky_view_factor, aspect_ratio, BUILDING_FRACTION_LCZ AS building_surface_fraction, IMPERVIOUS_FRACTION_LCZ AS impervious_surface_fraction, PERVIOUS_FRACTION_LCZ AS pervious_surface_fraction, GEOM_AVG_HEIGHT_ROOF AS height_of_roughness_elements, EFFECTIVE_TERRAIN_ROUGHNESS_LENGTH AS terrain_roughness_length - FROM rsu_test_all_indics_for_lcz; \ No newline at end of file + FROM rsu_test_all_indics_for_lcz; diff --git a/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/hydro_test.geojson b/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/hydro_test.geojson index a0c8bf9ad0..71637759cb 100644 --- a/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/hydro_test.geojson +++ b/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/hydro_test.geojson @@ -3,7 +3,7 @@ "name": "hydo_test", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::2154" } }, "features": [ -{ "type": "Feature", "properties": { "id_source": 10214010, "natural": "water", "water": null, "waterway": null, "zindex": 0, "id": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 269282.493380499246996, 6745122.254815896973014 ], [ 269289.497813153313473, 6745120.998035289347172 ], [ 269295.509164090442937, 6745120.983279759995639 ], [ 269304.848761659581214, 6745119.656607512384653 ], [ 269305.478608027100563, 6745115.288577510975301 ], [ 269306.191975333087612, 6745095.85383321903646 ], [ 269305.464625532156788, 6745086.18203588668257 ], [ 269301.233620766957756, 6745054.865258962847292 ], [ 269297.243884918745607, 6745039.148505877703428 ], [ 269297.383793068293016, 6745037.144337574951351 ], [ 269295.617677915957756, 6745035.936292526312172 ], [ 269291.625045333174057, 6745034.534031101502478 ], [ 269288.531454402720556, 6745033.077397364191711 ], [ 269282.330524171120487, 6745032.660388057120144 ], [ 269267.893942886730656, 6745045.93248557113111 ], [ 269256.41634996724315, 6745054.889636666513979 ], [ 269257.713522713398561, 6745066.803507312200963 ], [ 269259.304137964209076, 6745080.678828570060432 ], [ 269262.803029202565085, 6745110.723345037549734 ], [ 269264.302886087913066, 6745120.049217917956412 ], [ 269266.345407239918131, 6745123.398177267052233 ], [ 269268.298852918902412, 6745124.492305195890367 ], [ 269282.493380499246996, 6745122.254815896973014 ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 2629181, "natural": "water", "water": null, "waterway": null, "zindex": 0, "id": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 268798.526843134430237, 6744508.718851670622826 ], [ 268802.652295515406877, 6744521.116995661519468 ], [ 268811.809625788242556, 6744538.428231667727232 ], [ 268815.839974741043989, 6744543.848824015818536 ], [ 268820.320265242538881, 6744551.620461227372289 ], [ 268828.434794976317789, 6744568.461947908625007 ], [ 268833.853619198314846, 6744578.37076455168426 ], [ 268836.855532274290454, 6744585.994039621204138 ], [ 268836.776112929102965, 6744589.341697086580098 ], [ 268835.470937811245676, 6744593.837021311745048 ], [ 268835.838248589599971, 6744601.451959293335676 ], [ 268836.441256679128855, 6744606.933190793730319 ], [ 268840.068850384035613, 6744617.563065270893276 ], [ 268842.071723024360836, 6744624.90274930652231 ], [ 268843.207682897278573, 6744640.682609841227531 ], [ 268842.88331946375547, 6744656.457594812847674 ], [ 268843.908762378443498, 6744666.285858566872776 ], [ 268846.563577069784515, 6744674.825620508752763 ], [ 268850.915783351694699, 6744683.731714115478098 ], [ 268860.702670783794019, 6744698.123088501393795 ], [ 268863.054413854260929, 6744702.095467157661915 ], [ 268867.569123646710068, 6744714.365002486854792 ], [ 268876.885008547455072, 6744721.783976073376834 ], [ 268882.900158395175822, 6744730.791590613313019 ], [ 268888.801077876531053, 6744736.788723604753613 ], [ 268911.042376554803923, 6744757.679617788642645 ], [ 268921.6776147861965, 6744763.275802115909755 ], [ 268935.279490475077182, 6744765.592277964577079 ], [ 268953.460562928579748, 6744759.910839876160026 ], [ 268959.657969353254884, 6744764.092949513345957 ], [ 268962.26893267367268, 6744775.955534619279206 ], [ 268953.994985282537527, 6744783.131235376000404 ], [ 268955.479732759820763, 6744818.970274673774838 ], [ 268957.731016635603737, 6744828.686878299340606 ], [ 268960.685217880934943, 6744837.516756904311478 ], [ 268964.862450102111325, 6744845.678192217834294 ], [ 268967.364259303722065, 6744849.026987898163497 ], [ 268973.974718587240204, 6744860.31943554058671 ], [ 268976.163793741958216, 6744868.770673180930316 ], [ 268981.263625381223392, 6744894.331651097163558 ], [ 268989.69240799266845, 6744908.889080814085901 ], [ 268999.752830589015502, 6744921.055075645446777 ], [ 269014.056619522278197, 6744931.352136078290641 ], [ 269051.860924921056721, 6744951.754808329045773 ], [ 269064.866936981561594, 6744955.607692245393991 ], [ 269079.66730147151975, 6744955.274992518126965 ], [ 269125.129123181395698, 6744946.324140748940408 ], [ 269131.549188255623449, 6744944.274321809411049 ], [ 269158.583306366752367, 6744931.832529089413583 ], [ 269165.901403310068417, 6744927.132920137606561 ], [ 269179.09520506800618, 6744917.560377462767065 ], [ 269184.363759030937217, 6744914.268948128446937 ], [ 269190.640275238198228, 6744910.55873201508075 ], [ 269202.226054615573958, 6744902.050309034995735 ], [ 269207.57172153936699, 6744897.338563306257129 ], [ 269215.122157672303729, 6744887.152585272677243 ], [ 269217.677498938166536, 6744881.842170285061002 ], [ 269218.492420706199482, 6744877.63887785654515 ], [ 269220.733751299616415, 6744869.878378136083484 ], [ 269220.379761708376464, 6744844.060504619032145 ], [ 269221.307851878344081, 6744834.07869865372777 ], [ 269223.912589000014123, 6744824.79902380798012 ], [ 269225.98051121836761, 6744818.788931900635362 ], [ 269229.609444863570388, 6744802.394448831677437 ], [ 269231.990719679335598, 6744788.808937393128872 ], [ 269235.130072572850622, 6744783.043813695199788 ], [ 269235.303433177759871, 6744780.569348535500467 ], [ 269236.229124995705206, 6744775.923549426719546 ], [ 269238.440975700563285, 6744772.197714827023447 ], [ 269242.438206373888534, 6744767.36149354185909 ], [ 269246.52194879646413, 6744757.929495135322213 ], [ 269248.025994644034654, 6744755.023872467689216 ], [ 269249.168526265362743, 6744752.010921442881227 ], [ 269249.769450931344181, 6744749.104277010075748 ], [ 269249.821282143879216, 6744746.30448452103883 ], [ 269248.385602862632368, 6744740.338079566136003 ], [ 269247.710930111294147, 6744736.243350913748145 ], [ 269242.335898002143949, 6744728.369544832967222 ], [ 269238.293384837044869, 6744727.628171913325787 ], [ 269234.036515143350698, 6744727.559654016979039 ], [ 269224.864432472386397, 6744728.818486397154629 ], [ 269216.809173321875278, 6744732.390933299437165 ], [ 269213.578308148949873, 6744733.183374063111842 ], [ 269206.650135546398815, 6744738.177527040243149 ], [ 269199.775118660065345, 6744740.90649448428303 ], [ 269193.004501048417296, 6744742.279980575665832 ], [ 269180.925730009621475, 6744741.344599948264658 ], [ 269160.543099672126118, 6744735.511580342426896 ], [ 269150.266282699420117, 6744731.938526903279126 ], [ 269145.966403434227686, 6744729.834675831720233 ], [ 269139.563722524908371, 6744724.486553682014346 ], [ 269136.612340962747112, 6744721.78313513379544 ], [ 269122.637652069039177, 6744704.544140703044832 ], [ 269114.856830429809634, 6744694.22802187781781 ], [ 269107.861978210217785, 6744685.403009659610689 ], [ 269105.119677464244887, 6744683.297036996111274 ], [ 269101.666228802874684, 6744681.24290710221976 ], [ 269098.671455693431199, 6744678.977109738625586 ], [ 269076.182011580385733, 6744666.959557933732867 ], [ 269065.316984161385335, 6744662.649756372906268 ], [ 269056.756437542091589, 6744662.182191476225853 ], [ 269047.202710738463793, 6744663.368861584924161 ], [ 269038.570655723684467, 6744665.223557799123228 ], [ 269024.764376417093445, 6744667.021083004772663 ], [ 269018.089648247230798, 6744666.304681387729943 ], [ 269010.596480148145929, 6744664.478312005288899 ], [ 268994.247629594989121, 6744658.240323120728135 ], [ 268987.865285935171414, 6744655.34156562294811 ], [ 268986.000165176927112, 6744653.294217478483915 ], [ 268984.748759663430974, 6744650.478049343451858 ], [ 268983.88167449721368, 6744644.882393050938845 ], [ 268984.114642831729725, 6744640.543267042376101 ], [ 268984.751508235931396, 6744639.059828568249941 ], [ 268979.315588780096732, 6744629.11872065346688 ], [ 268977.197770211321767, 6744627.011824431829154 ], [ 268973.475822440464981, 6744624.476063960231841 ], [ 268957.960090922832023, 6744613.565648218616843 ], [ 268955.32616412488278, 6744611.295883108861744 ], [ 268948.677237704978324, 6744603.504068741574883 ], [ 268951.670486768009141, 6744596.769164172001183 ], [ 268940.265867793816142, 6744586.817763464525342 ], [ 268934.258750400971621, 6744581.842019749805331 ], [ 268931.230531606182922, 6744577.261715737171471 ], [ 268927.16317350557074, 6744572.879728896543384 ], [ 268921.367305102117825, 6744574.928777825087309 ], [ 268912.73918584297644, 6744563.527313600294292 ], [ 268904.605779120698571, 6744555.297967390157282 ], [ 268901.875480325368699, 6744547.476622841320932 ], [ 268891.626503455918282, 6744532.116325126960874 ], [ 268887.912460279767402, 6744522.673523052595556 ], [ 268893.859923722979147, 6744518.574853652156889 ], [ 268889.31630501197651, 6744501.88501775637269 ], [ 268891.148801261093467, 6744497.39581158477813 ], [ 268889.791379178175703, 6744491.991880683228374 ], [ 268885.991435032512527, 6744489.317042775452137 ], [ 268884.911373549839482, 6744482.143977113068104 ], [ 268889.780761929403525, 6744481.320980692282319 ], [ 268887.907327051449101, 6744467.087615023367107 ], [ 268887.853677154926118, 6744452.008599664084613 ], [ 268898.832610845798627, 6744446.005734317936003 ], [ 268895.789117937383708, 6744443.487372238188982 ], [ 268899.612826640659478, 6744434.207768031395972 ], [ 268899.602623169950675, 6744433.139117269776762 ], [ 268882.747855788678862, 6744426.682077020406723 ], [ 268865.985409195767716, 6744437.072464218363166 ], [ 268858.918369381746743, 6744441.609278446063399 ], [ 268858.590055471577216, 6744445.053062199614942 ], [ 268856.861120882094838, 6744445.802979403175414 ], [ 268853.658874227956403, 6744444.410170355811715 ], [ 268803.168265758082271, 6744482.280314081348479 ], [ 268795.011214811878745, 6744498.181087328121066 ], [ 268798.526843134430237, 6744508.718851670622826 ] ] ] } } +{ "type": "Feature", "properties": { "id_source": 10214010, "natural": "water", "water": null, "waterway": null, "zindex": 0, "id_water": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 269282.493380499246996, 6745122.254815896973014 ], [ 269289.497813153313473, 6745120.998035289347172 ], [ 269295.509164090442937, 6745120.983279759995639 ], [ 269304.848761659581214, 6745119.656607512384653 ], [ 269305.478608027100563, 6745115.288577510975301 ], [ 269306.191975333087612, 6745095.85383321903646 ], [ 269305.464625532156788, 6745086.18203588668257 ], [ 269301.233620766957756, 6745054.865258962847292 ], [ 269297.243884918745607, 6745039.148505877703428 ], [ 269297.383793068293016, 6745037.144337574951351 ], [ 269295.617677915957756, 6745035.936292526312172 ], [ 269291.625045333174057, 6745034.534031101502478 ], [ 269288.531454402720556, 6745033.077397364191711 ], [ 269282.330524171120487, 6745032.660388057120144 ], [ 269267.893942886730656, 6745045.93248557113111 ], [ 269256.41634996724315, 6745054.889636666513979 ], [ 269257.713522713398561, 6745066.803507312200963 ], [ 269259.304137964209076, 6745080.678828570060432 ], [ 269262.803029202565085, 6745110.723345037549734 ], [ 269264.302886087913066, 6745120.049217917956412 ], [ 269266.345407239918131, 6745123.398177267052233 ], [ 269268.298852918902412, 6745124.492305195890367 ], [ 269282.493380499246996, 6745122.254815896973014 ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 2629181, "natural": "water", "water": null, "waterway": null, "zindex": 0, "id_water": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 268798.526843134430237, 6744508.718851670622826 ], [ 268802.652295515406877, 6744521.116995661519468 ], [ 268811.809625788242556, 6744538.428231667727232 ], [ 268815.839974741043989, 6744543.848824015818536 ], [ 268820.320265242538881, 6744551.620461227372289 ], [ 268828.434794976317789, 6744568.461947908625007 ], [ 268833.853619198314846, 6744578.37076455168426 ], [ 268836.855532274290454, 6744585.994039621204138 ], [ 268836.776112929102965, 6744589.341697086580098 ], [ 268835.470937811245676, 6744593.837021311745048 ], [ 268835.838248589599971, 6744601.451959293335676 ], [ 268836.441256679128855, 6744606.933190793730319 ], [ 268840.068850384035613, 6744617.563065270893276 ], [ 268842.071723024360836, 6744624.90274930652231 ], [ 268843.207682897278573, 6744640.682609841227531 ], [ 268842.88331946375547, 6744656.457594812847674 ], [ 268843.908762378443498, 6744666.285858566872776 ], [ 268846.563577069784515, 6744674.825620508752763 ], [ 268850.915783351694699, 6744683.731714115478098 ], [ 268860.702670783794019, 6744698.123088501393795 ], [ 268863.054413854260929, 6744702.095467157661915 ], [ 268867.569123646710068, 6744714.365002486854792 ], [ 268876.885008547455072, 6744721.783976073376834 ], [ 268882.900158395175822, 6744730.791590613313019 ], [ 268888.801077876531053, 6744736.788723604753613 ], [ 268911.042376554803923, 6744757.679617788642645 ], [ 268921.6776147861965, 6744763.275802115909755 ], [ 268935.279490475077182, 6744765.592277964577079 ], [ 268953.460562928579748, 6744759.910839876160026 ], [ 268959.657969353254884, 6744764.092949513345957 ], [ 268962.26893267367268, 6744775.955534619279206 ], [ 268953.994985282537527, 6744783.131235376000404 ], [ 268955.479732759820763, 6744818.970274673774838 ], [ 268957.731016635603737, 6744828.686878299340606 ], [ 268960.685217880934943, 6744837.516756904311478 ], [ 268964.862450102111325, 6744845.678192217834294 ], [ 268967.364259303722065, 6744849.026987898163497 ], [ 268973.974718587240204, 6744860.31943554058671 ], [ 268976.163793741958216, 6744868.770673180930316 ], [ 268981.263625381223392, 6744894.331651097163558 ], [ 268989.69240799266845, 6744908.889080814085901 ], [ 268999.752830589015502, 6744921.055075645446777 ], [ 269014.056619522278197, 6744931.352136078290641 ], [ 269051.860924921056721, 6744951.754808329045773 ], [ 269064.866936981561594, 6744955.607692245393991 ], [ 269079.66730147151975, 6744955.274992518126965 ], [ 269125.129123181395698, 6744946.324140748940408 ], [ 269131.549188255623449, 6744944.274321809411049 ], [ 269158.583306366752367, 6744931.832529089413583 ], [ 269165.901403310068417, 6744927.132920137606561 ], [ 269179.09520506800618, 6744917.560377462767065 ], [ 269184.363759030937217, 6744914.268948128446937 ], [ 269190.640275238198228, 6744910.55873201508075 ], [ 269202.226054615573958, 6744902.050309034995735 ], [ 269207.57172153936699, 6744897.338563306257129 ], [ 269215.122157672303729, 6744887.152585272677243 ], [ 269217.677498938166536, 6744881.842170285061002 ], [ 269218.492420706199482, 6744877.63887785654515 ], [ 269220.733751299616415, 6744869.878378136083484 ], [ 269220.379761708376464, 6744844.060504619032145 ], [ 269221.307851878344081, 6744834.07869865372777 ], [ 269223.912589000014123, 6744824.79902380798012 ], [ 269225.98051121836761, 6744818.788931900635362 ], [ 269229.609444863570388, 6744802.394448831677437 ], [ 269231.990719679335598, 6744788.808937393128872 ], [ 269235.130072572850622, 6744783.043813695199788 ], [ 269235.303433177759871, 6744780.569348535500467 ], [ 269236.229124995705206, 6744775.923549426719546 ], [ 269238.440975700563285, 6744772.197714827023447 ], [ 269242.438206373888534, 6744767.36149354185909 ], [ 269246.52194879646413, 6744757.929495135322213 ], [ 269248.025994644034654, 6744755.023872467689216 ], [ 269249.168526265362743, 6744752.010921442881227 ], [ 269249.769450931344181, 6744749.104277010075748 ], [ 269249.821282143879216, 6744746.30448452103883 ], [ 269248.385602862632368, 6744740.338079566136003 ], [ 269247.710930111294147, 6744736.243350913748145 ], [ 269242.335898002143949, 6744728.369544832967222 ], [ 269238.293384837044869, 6744727.628171913325787 ], [ 269234.036515143350698, 6744727.559654016979039 ], [ 269224.864432472386397, 6744728.818486397154629 ], [ 269216.809173321875278, 6744732.390933299437165 ], [ 269213.578308148949873, 6744733.183374063111842 ], [ 269206.650135546398815, 6744738.177527040243149 ], [ 269199.775118660065345, 6744740.90649448428303 ], [ 269193.004501048417296, 6744742.279980575665832 ], [ 269180.925730009621475, 6744741.344599948264658 ], [ 269160.543099672126118, 6744735.511580342426896 ], [ 269150.266282699420117, 6744731.938526903279126 ], [ 269145.966403434227686, 6744729.834675831720233 ], [ 269139.563722524908371, 6744724.486553682014346 ], [ 269136.612340962747112, 6744721.78313513379544 ], [ 269122.637652069039177, 6744704.544140703044832 ], [ 269114.856830429809634, 6744694.22802187781781 ], [ 269107.861978210217785, 6744685.403009659610689 ], [ 269105.119677464244887, 6744683.297036996111274 ], [ 269101.666228802874684, 6744681.24290710221976 ], [ 269098.671455693431199, 6744678.977109738625586 ], [ 269076.182011580385733, 6744666.959557933732867 ], [ 269065.316984161385335, 6744662.649756372906268 ], [ 269056.756437542091589, 6744662.182191476225853 ], [ 269047.202710738463793, 6744663.368861584924161 ], [ 269038.570655723684467, 6744665.223557799123228 ], [ 269024.764376417093445, 6744667.021083004772663 ], [ 269018.089648247230798, 6744666.304681387729943 ], [ 269010.596480148145929, 6744664.478312005288899 ], [ 268994.247629594989121, 6744658.240323120728135 ], [ 268987.865285935171414, 6744655.34156562294811 ], [ 268986.000165176927112, 6744653.294217478483915 ], [ 268984.748759663430974, 6744650.478049343451858 ], [ 268983.88167449721368, 6744644.882393050938845 ], [ 268984.114642831729725, 6744640.543267042376101 ], [ 268984.751508235931396, 6744639.059828568249941 ], [ 268979.315588780096732, 6744629.11872065346688 ], [ 268977.197770211321767, 6744627.011824431829154 ], [ 268973.475822440464981, 6744624.476063960231841 ], [ 268957.960090922832023, 6744613.565648218616843 ], [ 268955.32616412488278, 6744611.295883108861744 ], [ 268948.677237704978324, 6744603.504068741574883 ], [ 268951.670486768009141, 6744596.769164172001183 ], [ 268940.265867793816142, 6744586.817763464525342 ], [ 268934.258750400971621, 6744581.842019749805331 ], [ 268931.230531606182922, 6744577.261715737171471 ], [ 268927.16317350557074, 6744572.879728896543384 ], [ 268921.367305102117825, 6744574.928777825087309 ], [ 268912.73918584297644, 6744563.527313600294292 ], [ 268904.605779120698571, 6744555.297967390157282 ], [ 268901.875480325368699, 6744547.476622841320932 ], [ 268891.626503455918282, 6744532.116325126960874 ], [ 268887.912460279767402, 6744522.673523052595556 ], [ 268893.859923722979147, 6744518.574853652156889 ], [ 268889.31630501197651, 6744501.88501775637269 ], [ 268891.148801261093467, 6744497.39581158477813 ], [ 268889.791379178175703, 6744491.991880683228374 ], [ 268885.991435032512527, 6744489.317042775452137 ], [ 268884.911373549839482, 6744482.143977113068104 ], [ 268889.780761929403525, 6744481.320980692282319 ], [ 268887.907327051449101, 6744467.087615023367107 ], [ 268887.853677154926118, 6744452.008599664084613 ], [ 268898.832610845798627, 6744446.005734317936003 ], [ 268895.789117937383708, 6744443.487372238188982 ], [ 268899.612826640659478, 6744434.207768031395972 ], [ 268899.602623169950675, 6744433.139117269776762 ], [ 268882.747855788678862, 6744426.682077020406723 ], [ 268865.985409195767716, 6744437.072464218363166 ], [ 268858.918369381746743, 6744441.609278446063399 ], [ 268858.590055471577216, 6744445.053062199614942 ], [ 268856.861120882094838, 6744445.802979403175414 ], [ 268853.658874227956403, 6744444.410170355811715 ], [ 268803.168265758082271, 6744482.280314081348479 ], [ 268795.011214811878745, 6744498.181087328121066 ], [ 268798.526843134430237, 6744508.718851670622826 ] ] ] } } ] } diff --git a/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/veget_test.geojson b/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/veget_test.geojson index bb9645ef0f..42fc186a84 100644 --- a/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/veget_test.geojson +++ b/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/veget_test.geojson @@ -3,76 +3,76 @@ "name": "veget_test", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::2154" } }, "features": [ -{ "type": "Feature", "properties": { "id_source": 168756816, "zindex": 0, "height_class": "low", "type": "grass", "id": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269300.406132023257669, 6744907.193360469304025 ], [ 269299.250831894984003, 6744909.204679341055453 ], [ 269297.681071612809319, 6744908.316509120166302 ], [ 269296.87370287545491, 6744946.806644288823009 ], [ 269283.369848378526513, 6744946.342533096671104 ], [ 269283.97308355109999, 6744906.084943919442594 ], [ 269284.12716047995491, 6744904.068604717962444 ], [ 269289.101194923918229, 6744895.908491448499262 ], [ 269287.29071652010316, 6744894.815074543468654 ], [ 269285.15674697922077, 6744893.722951967269182 ], [ 269279.371228547242936, 6744903.345780601724982 ], [ 269279.387044031114783, 6744951.478453427553177 ], [ 269278.381299598666374, 6744959.672448556870222 ], [ 269277.240730048506521, 6744963.331348043866456 ], [ 269275.532911408459768, 6744968.190094267018139 ], [ 269277.192945071146823, 6744970.007398744113743 ], [ 269305.86972125939792, 6744947.576979106292129 ], [ 269307.101483146718238, 6744945.582368191331625 ], [ 269306.360802181530744, 6744916.10550579149276 ], [ 269305.856654767412692, 6744912.388227820396423 ], [ 269303.992070906038862, 6744909.416172235272825 ], [ 269300.406132023257669, 6744907.193360469304025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168801742, "zindex": 0, "height_class": "low", "type": "grass", "id": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268988.749732226016931, 6745157.971452524885535 ], [ 268992.78707453829702, 6745157.509943160228431 ], [ 268995.842208845948335, 6745155.549383074976504 ], [ 268997.124091121077072, 6745152.593037886545062 ], [ 268996.57253799616592, 6745149.569878703914583 ], [ 268993.936109053727705, 6745148.191454972140491 ], [ 268991.331274812051561, 6745148.381406689994037 ], [ 268987.975328387750778, 6745150.241369953379035 ], [ 268986.344454439531546, 6745153.468237582594156 ], [ 268986.072986351791769, 6745157.175229731015861 ], [ 268988.749732226016931, 6745157.971452524885535 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168802660, "zindex": 0, "height_class": "low", "type": "grass", "id": 3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268789.825724431721028, 6744909.263860460370779 ], [ 268795.835078368254472, 6744899.212004522792995 ], [ 268787.257931663887575, 6744905.218153710477054 ], [ 268789.143236716685351, 6744907.954622701741755 ], [ 268780.822138277173508, 6744915.20087512396276 ], [ 268773.486084276635665, 6744922.642624767497182 ], [ 268768.751776324119419, 6744929.437843735329807 ], [ 268763.487602668057662, 6744939.4910644646734 ], [ 268762.182150292268489, 6744947.384015281684697 ], [ 268759.795770796656143, 6744946.856330694630742 ], [ 268758.927018429327291, 6744950.317286874167621 ], [ 268758.713480883685406, 6744954.610465786419809 ], [ 268761.694201791367959, 6744958.436661262065172 ], [ 268765.851651918783318, 6744960.65088253095746 ], [ 268767.719946034951136, 6744957.997029088437557 ], [ 268763.12088603770826, 6744955.402861460112035 ], [ 268789.825724431721028, 6744909.263860460370779 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 300267052, "zindex": 0, "height_class": "low", "type": "grass", "id": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268728.317092189565301, 6744911.267363921739161 ], [ 268729.982515535433777, 6744910.989893117919564 ], [ 268731.449511703220196, 6744910.158782137557864 ], [ 268732.544897900603246, 6744908.875783591531217 ], [ 268733.137769164342899, 6744907.306402742862701 ], [ 268733.150426877778955, 6744905.623402326367795 ], [ 268732.590746249305084, 6744904.037859759293497 ], [ 268731.517383846454322, 6744902.734868246130645 ], [ 268730.063042703259271, 6744901.882978796958923 ], [ 268728.400488131912425, 6744901.580981786362827 ], [ 268726.735062139516231, 6744901.858453027904034 ], [ 268725.268064333882648, 6744902.689565155655146 ], [ 268724.172678270377219, 6744903.972565018571913 ], [ 268723.579808835987933, 6744905.541946745477617 ], [ 268723.567153813142795, 6744907.224947173148394 ], [ 268724.134322183905169, 6744908.809942721389234 ], [ 268725.207685399043839, 6744910.112932925112545 ], [ 268726.662025491765235, 6744910.964821211062372 ], [ 268728.317092189565301, 6744911.267363921739161 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168802338, "zindex": 0, "height_class": "low", "type": "grass", "id": 5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268938.874186542583629, 6745172.414149284362793 ], [ 268948.537290091568138, 6745167.476369722746313 ], [ 268950.537224343977869, 6745167.453049192205071 ], [ 268951.982329287973698, 6745168.695545554161072 ], [ 268954.77789013722213, 6745166.787312236614525 ], [ 268956.131711302383337, 6745164.404967496171594 ], [ 268956.350372397049796, 6745158.529607874341309 ], [ 268932.130053984175902, 6745130.809579293243587 ], [ 268916.455227208964061, 6745113.060096523724496 ], [ 268899.164233266666997, 6745102.970020061358809 ], [ 268896.480224864149932, 6745105.995238365605474 ], [ 268897.799088673724327, 6745107.569978428073227 ], [ 268901.980570766609162, 6745108.568319613113999 ], [ 268904.44864946155576, 6745108.566537505947053 ], [ 268910.811039452208206, 6745112.847943322733045 ], [ 268914.76923035091022, 6745121.927628509700298 ], [ 268914.62189422181109, 6745124.756686107255518 ], [ 268912.822449130937457, 6745126.703680314123631 ], [ 268904.482512927323114, 6745127.601596738211811 ], [ 268909.435659976443276, 6745149.497195806354284 ], [ 268912.26808566506952, 6745147.062693620100617 ], [ 268910.53456593467854, 6745144.96121581364423 ], [ 268914.083183720998932, 6745142.028895278461277 ], [ 268921.953579369699582, 6745132.320417148061097 ], [ 268925.157770099525806, 6745134.983010230585933 ], [ 268927.629604105022736, 6745137.921809680759907 ], [ 268929.07987544691423, 6745140.266741783358157 ], [ 268930.263065095175989, 6745143.07673613820225 ], [ 268919.842141738801729, 6745147.73562744166702 ], [ 268915.959676248778123, 6745151.249272746033967 ], [ 268913.736640707473271, 6745148.626518709585071 ], [ 268912.221292825008277, 6745149.928976837545633 ], [ 268910.620972896635067, 6745151.304470428265631 ], [ 268924.406153384945355, 6745168.010961215943098 ], [ 268916.918527081899811, 6745173.681276708841324 ], [ 268914.836257867980748, 6745173.710613916628063 ], [ 268906.707563647534698, 6745179.360863332636654 ], [ 268906.050006665696856, 6745184.789239335805178 ], [ 268880.810048381797969, 6745181.572873050346971 ], [ 268878.242584569146857, 6745180.211748216301203 ], [ 268856.271750837157015, 6745152.283365709707141 ], [ 268859.976508776075207, 6745149.428737389855087 ], [ 268861.593041705782525, 6745140.332317999564111 ], [ 268861.15347568289144, 6745130.283062926493585 ], [ 268859.495834618632216, 6745125.302052286453545 ], [ 268854.083069075888488, 6745113.098025013692677 ], [ 268849.708621586323716, 6745114.096638433635235 ], [ 268847.657372742367443, 6745117.955750335939229 ], [ 268847.363378769310657, 6745118.567594032734632 ], [ 268849.324010601907503, 6745119.449413530528545 ], [ 268852.879027590854093, 6745122.175495271570981 ], [ 268856.31034957774682, 6745128.363871523179114 ], [ 268858.50404940295266, 6745136.257767082192004 ], [ 268858.406085394264665, 6745141.723307190462947 ], [ 268856.026351031498052, 6745149.950815059244633 ], [ 268852.953419905854389, 6745157.237468209117651 ], [ 268852.820497043954674, 6745162.326813783496618 ], [ 268853.554444237495773, 6745167.230388890020549 ], [ 268855.999672508449294, 6745171.764061665162444 ], [ 268859.918060253548902, 6745176.067739265039563 ], [ 268864.054843400546815, 6745178.929621870629489 ], [ 268877.371640107419807, 6745183.127009621821344 ], [ 268887.621354354196228, 6745185.097433956339955 ], [ 268908.869841368345078, 6745187.134530193172395 ], [ 268912.608776739099994, 6745186.605612851679325 ], [ 268916.610824650793802, 6745184.731898088939488 ], [ 268921.225537426013034, 6745181.766381336376071 ], [ 268925.060878886142746, 6745180.083064691163599 ], [ 268931.304947933473159, 6745178.925866310484707 ], [ 268937.47376844950486, 6745175.601946261711419 ], [ 268939.591752608539537, 6745174.411496776156127 ], [ 268938.874186542583629, 6745172.414149284362793 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168802340, "zindex": 0, "height_class": "low", "type": "grass", "id": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268807.837265437759925, 6744879.087242973037064 ], [ 268810.504830597375985, 6744875.216584795154631 ], [ 268812.661136724462267, 6744871.661713591776788 ], [ 268815.170727401622571, 6744862.633822600357234 ], [ 268817.560576859570574, 6744863.105580262839794 ], [ 268821.74869927513646, 6744857.074325438588858 ], [ 268816.368395413446706, 6744855.428269876167178 ], [ 268815.054152619675733, 6744860.726320918649435 ], [ 268801.325876501447055, 6744867.197333510965109 ], [ 268807.837265437759925, 6744879.087242973037064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168793803, "zindex": 0, "height_class": "low", "type": "grass", "id": 7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269457.198521535436157, 6745057.88334630895406 ], [ 269455.984378837049007, 6745077.165139791555703 ], [ 269466.279170222755056, 6745092.979670245200396 ], [ 269469.089569804491475, 6745093.855487030930817 ], [ 269491.647997200489044, 6745079.580156679265201 ], [ 269497.718022162443958, 6745073.345499138347805 ], [ 269502.436507353675552, 6745063.84516298212111 ], [ 269500.352931745990645, 6745061.067235763184726 ], [ 269496.55177750060102, 6745063.739087463356555 ], [ 269486.584455070958938, 6745049.527022732421756 ], [ 269482.492765281000175, 6745052.342579614371061 ], [ 269479.896676011790987, 6745054.20259974617511 ], [ 269482.544952259748243, 6745057.708013346418738 ], [ 269486.700777103193104, 6745054.843226717785001 ], [ 269493.24367061589146, 6745063.055461475625634 ], [ 269489.261767266725656, 6745066.241760533303022 ], [ 269489.219198409409728, 6745066.690440811216831 ], [ 269491.563841470167972, 6745066.8538475073874 ], [ 269492.435645220801234, 6745067.458717164583504 ], [ 269492.591206551005598, 6745068.561335621401668 ], [ 269492.639631800237112, 6745069.226177933625877 ], [ 269492.097307525749784, 6745070.045443726703525 ], [ 269491.712759386049584, 6745070.964612495154142 ], [ 269492.81719104788499, 6745071.663933089002967 ], [ 269493.705135747615714, 6745072.490417051129043 ], [ 269494.293670177168678, 6745073.338709260337055 ], [ 269494.200461129657924, 6745074.125262714922428 ], [ 269493.941405429737642, 6745074.70110612269491 ], [ 269493.134169785073027, 6745074.982692665420473 ], [ 269492.019453382352367, 6745075.175280488096178 ], [ 269491.351637627871241, 6745076.337871647439897 ], [ 269491.223931174958125, 6745077.683912490494549 ], [ 269490.272848035325296, 6745079.089926170185208 ], [ 269489.174274379620329, 6745079.504128638654947 ], [ 269487.661083834711462, 6745079.391556616872549 ], [ 269486.230816646304447, 6745079.384339897893369 ], [ 269485.896909568517003, 6745079.965635800734162 ], [ 269485.961477693344932, 6745080.852092180401087 ], [ 269485.328161123208702, 6745081.455196667462587 ], [ 269484.470287493255455, 6745082.074657681398094 ], [ 269483.905965439975262, 6745081.558787558227777 ], [ 269483.001878299983218, 6745080.510690953582525 ], [ 269482.22328247182304, 6745079.119268998503685 ], [ 269480.394539594708476, 6745078.806893495842814 ], [ 269479.105905868113041, 6745078.677967052906752 ], [ 269478.717713501828257, 6745077.480898546986282 ], [ 269478.936411920702085, 6745076.351019287481904 ], [ 269479.138968183891848, 6745074.999525968916714 ], [ 269478.283306233177427, 6745074.616272325627506 ], [ 269474.434981206199154, 6745077.570062956772745 ], [ 269468.074063730600756, 6745069.790171929635108 ], [ 269470.214713554712944, 6745068.186110245063901 ], [ 269458.217148262483533, 6745052.239399089477956 ], [ 269457.217638494505081, 6745052.980575965717435 ], [ 269457.198521535436157, 6745057.88334630895406 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 195367715, "zindex": 0, "height_class": "low", "type": "grass", "id": 8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269192.971001813362818, 6745306.867128184996545 ], [ 269191.313749875931535, 6745308.803672902286053 ], [ 269191.216217106499244, 6745312.007831966504455 ], [ 269193.552553693647496, 6745322.175033153034747 ], [ 269196.479100653144997, 6745323.922275356948376 ], [ 269214.145695284183603, 6745323.180413646623492 ], [ 269238.228663498011883, 6745330.77119189593941 ], [ 269240.049273311975412, 6745330.972686058841646 ], [ 269241.275953076896258, 6745329.735909178853035 ], [ 269242.838959800079465, 6745320.62124424893409 ], [ 269242.729856073739938, 6745316.852891949936748 ], [ 269241.234165751375258, 6745312.127341507002711 ], [ 269238.935615289083216, 6745309.911005015484989 ], [ 269213.553423425531946, 6745308.24089661706239 ], [ 269192.971001813362818, 6745306.867128184996545 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799848, "zindex": 0, "height_class": "low", "type": "grass", "id": 9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269184.384445796778891, 6744986.306746242567897 ], [ 269182.333398683578707, 6744986.868406499736011 ], [ 269186.437262239807751, 6744996.093578274361789 ], [ 269181.316835347039159, 6744998.215704585425556 ], [ 269183.242452821694314, 6745003.366624364629388 ], [ 269186.862243324227165, 6745002.233900397084653 ], [ 269188.690890412894078, 6745000.685894099995494 ], [ 269189.6277174949646, 6744998.155775457620621 ], [ 269189.110339380044024, 6744995.909882896579802 ], [ 269184.384445796778891, 6744986.306746242567897 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088282, "zindex": 0, "height_class": "high", "type": "wood", "id": 10 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268394.255432634789031, 6745366.205032640136778 ], [ 268399.608693052025046, 6745366.832609411329031 ], [ 268401.498140555631835, 6745350.664668734185398 ], [ 268394.407438356021885, 6745347.204317489638925 ], [ 268394.255432634789031, 6745366.205032640136778 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 213162648, "zindex": 0, "height_class": "low", "type": "grass", "id": 11 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269765.307485141558573, 6744492.611904012039304 ], [ 269761.880003965459764, 6744492.71662559453398 ], [ 269748.832046029157937, 6744489.945763091556728 ], [ 269737.660602182731964, 6744492.897675548680127 ], [ 269765.151655024907086, 6744512.012753532268107 ], [ 269765.307485141558573, 6744492.611904012039304 ] ] ], [ [ [ 269764.639003553020302, 6744575.837861784733832 ], [ 269758.268668301636353, 6744580.20115521736443 ], [ 269750.16147862985963, 6744588.132134774699807 ], [ 269752.174525456561241, 6744599.659729567356408 ], [ 269745.034387361607514, 6744639.278844501823187 ], [ 269763.904235176742077, 6744667.316524633206427 ], [ 269764.639003553020302, 6744575.837861784733832 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799828, "zindex": 0, "height_class": "low", "type": "grass", "id": 12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269500.425707476038951, 6744895.105895970016718 ], [ 269504.3585736193927, 6744891.967745440080762 ], [ 269468.000428179104347, 6744852.241341440938413 ], [ 269438.7181358410744, 6744878.769771726801991 ], [ 269439.418168763222639, 6744879.598798010498285 ], [ 269460.36343231878709, 6744869.406583476811647 ], [ 269467.551073950191494, 6744878.719201507046819 ], [ 269471.216800433641765, 6744876.04606635030359 ], [ 269474.285930791229475, 6744880.679330489598215 ], [ 269479.045650011685211, 6744877.425239541567862 ], [ 269479.777011550206225, 6744878.374522591941059 ], [ 269481.47462354664458, 6744877.092367850244045 ], [ 269485.874464103428181, 6744877.885847562924027 ], [ 269495.686292057391256, 6744891.819616783410311 ], [ 269498.095728835498448, 6744892.045148426666856 ], [ 269500.425707476038951, 6744895.105895970016718 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168789765, "zindex": 0, "height_class": "low", "type": "grass", "id": 13 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269273.459402658918407, 6744982.900542106479406 ], [ 269273.688396836107131, 6744984.287433444522321 ], [ 269289.759408320591319, 6744983.528471475467086 ], [ 269294.077199174789712, 6744982.266975108534098 ], [ 269299.362028211064171, 6744978.372927440330386 ], [ 269300.57101074262755, 6744979.577013767324388 ], [ 269304.797749429941177, 6744974.690680067054927 ], [ 269307.789760131388903, 6744968.969741813838482 ], [ 269308.933340286486782, 6744964.319213659502566 ], [ 269308.796567154524382, 6744960.686560495756567 ], [ 269307.544268406461924, 6744958.37167791556567 ], [ 269306.112488185113762, 6744957.518010056577623 ], [ 269304.004835823026951, 6744957.716147568076849 ], [ 269301.70103341556387, 6744958.630368026904762 ], [ 269279.760698452708311, 6744975.8133391039446 ], [ 269280.816312038572505, 6744977.184551213867962 ], [ 269273.459402658918407, 6744982.900542106479406 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168802663, "zindex": 0, "height_class": "low", "type": "grass", "id": 14 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269126.703708864864893, 6745188.928786631673574 ], [ 269127.958264849265106, 6745194.473939818330109 ], [ 269133.422544316679705, 6745192.839104301296175 ], [ 269126.703708864864893, 6745188.928786631673574 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088284, "zindex": 0, "height_class": "low", "type": "grass", "id": 15 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268446.663957204087637, 6745295.968269175849855 ], [ 268450.422012740338687, 6745296.217431833967566 ], [ 268467.236444180714898, 6745298.331620291806757 ], [ 268470.928506211435888, 6745260.677418843843043 ], [ 268441.043746611161623, 6745256.922023850493133 ], [ 268440.467755838297307, 6745261.709569120779634 ], [ 268436.261080968484748, 6745294.889823270961642 ], [ 268446.663957204087637, 6745295.968269175849855 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168802337, "zindex": 0, "height_class": "low", "type": "grass", "id": 16 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268882.965883700875565, 6744814.957263797521591 ], [ 268886.678225356095936, 6744809.417487360537052 ], [ 268884.99612757016439, 6744808.125450386665761 ], [ 268863.377747592574451, 6744801.035688847303391 ], [ 268862.375680901517626, 6744803.392389453016222 ], [ 268882.965883700875565, 6744814.957263797521591 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168802664, "zindex": 0, "height_class": "low", "type": "grass", "id": 17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269214.626830064808019, 6745236.969853517599404 ], [ 269214.562058706709649, 6745241.552924883551896 ], [ 269215.872891122591682, 6745243.328825732693076 ], [ 269217.439195594633929, 6745243.860757251270115 ], [ 269220.178127224964555, 6745243.549732984043658 ], [ 269226.652443937433418, 6745240.493480456992984 ], [ 269228.397145255294163, 6745236.968760622665286 ], [ 269225.590253969712649, 6745237.173338674008846 ], [ 269225.5711465695058, 6745236.394963706843555 ], [ 269214.626830064808019, 6745236.969853517599404 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168801748, "zindex": 0, "height_class": "high", "type": "wood", "id": 18 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268953.171048216056079, 6745183.034595021978021 ], [ 268964.979771099402569, 6745175.634471753612161 ], [ 268965.649515634984709, 6745174.293438945896924 ], [ 268965.483775531989522, 6745172.84624261315912 ], [ 268964.522358768503182, 6745171.735562386922538 ], [ 268962.755355610803235, 6745170.928702617995441 ], [ 268950.512144515465479, 6745177.736701047979295 ], [ 268953.171048216056079, 6745183.034595021978021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799823, "zindex": 0, "height_class": "low", "type": "grass", "id": 19 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269070.005461932974868, 6745058.908784467726946 ], [ 269065.542246704455465, 6745059.000262320041656 ], [ 269062.810520285973325, 6745060.959479830227792 ], [ 269060.764936235034838, 6745065.207977053709328 ], [ 269059.456209647469223, 6745070.583542777225375 ], [ 269059.070809421187732, 6745075.824951443821192 ], [ 269059.628550922381692, 6745080.997595233842731 ], [ 269064.624839995522052, 6745087.495277062989771 ], [ 269065.831511488941032, 6745086.293344070203602 ], [ 269068.03565039858222, 6745089.173738355748355 ], [ 269073.31582333490951, 6745085.012460365891457 ], [ 269075.645003416924737, 6745082.692711525596678 ], [ 269077.15773624915164, 6745078.360533198341727 ], [ 269077.576310201780871, 6745071.612869362346828 ], [ 269076.040718051546719, 6745067.580914365127683 ], [ 269070.005461932974868, 6745058.908784467726946 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168802339, "zindex": 0, "height_class": "low", "type": "grass", "id": 20 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268946.959415899007581, 6745127.578114797361195 ], [ 268944.627585026959423, 6745130.789278227835894 ], [ 268971.118596872664057, 6745153.119303015060723 ], [ 268975.219517254794482, 6745142.282210520468652 ], [ 268970.140284359455109, 6745145.069904671981931 ], [ 268956.790680782229174, 6745122.984557622112334 ], [ 268955.932261004578322, 6745121.532180024310946 ], [ 268950.759603054670151, 6745129.952184384688735 ], [ 268946.959415899007581, 6745127.578114797361195 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088272, "zindex": 0, "height_class": "low", "type": "grass", "id": 21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268420.494847667287104, 6745343.094953232444823 ], [ 268421.556537017109804, 6745334.139125319197774 ], [ 268407.077069808496162, 6745332.055076358839869 ], [ 268409.363063201250043, 6745315.546276045031846 ], [ 268423.46346411871491, 6745318.00334214232862 ], [ 268423.182082274986897, 6745316.107869381085038 ], [ 268405.375853793113492, 6745303.193933888338506 ], [ 268403.183165825146716, 6745303.15353951882571 ], [ 268397.147249545960221, 6745305.922499003820121 ], [ 268395.56448200205341, 6745307.742448288947344 ], [ 268398.449991788016632, 6745330.356879880651832 ], [ 268399.244804429414216, 6745333.718711759895086 ], [ 268400.685949960665312, 6745336.554340010508895 ], [ 268403.301820768683683, 6745339.504698067903519 ], [ 268406.389645669609308, 6745341.395744942128658 ], [ 268420.494847667287104, 6745343.094953232444823 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088269, "zindex": 0, "height_class": "low", "type": "grass", "id": 22 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268508.496455660788342, 6745237.226033921353519 ], [ 268509.000946636951994, 6745230.015280070714653 ], [ 268504.982727590249851, 6745228.470594593323767 ], [ 268504.266297206981108, 6745223.398667674511671 ], [ 268498.492853407864459, 6745196.884537963196635 ], [ 268497.773324086738285, 6745194.553187566809356 ], [ 268496.219090270344168, 6745192.951154586859047 ], [ 268486.526221729058307, 6745186.963893706910312 ], [ 268482.359757728874683, 6745224.719533472321928 ], [ 268482.01817598787602, 6745230.347708973102272 ], [ 268489.332006214594003, 6745233.846277276985347 ], [ 268503.520128739939537, 6745236.987796447239816 ], [ 268508.496455660788342, 6745237.226033921353519 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799830, "zindex": 0, "height_class": "low", "type": "grass", "id": 23 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269081.65032853174489, 6745021.80056996550411 ], [ 269084.702772989869118, 6745021.143586649559438 ], [ 269091.1171066754614, 6745012.410409608855844 ], [ 269092.504849171673413, 6745011.317818079143763 ], [ 269094.195132901251782, 6745011.072054625488818 ], [ 269098.280513668432832, 6745012.300332864746451 ], [ 269099.728140017425176, 6745011.203377392143011 ], [ 269102.432442218530923, 6745010.415830806829035 ], [ 269110.238569466106128, 6745011.896424933336675 ], [ 269112.306513088289648, 6745011.979600054211915 ], [ 269113.848863569379319, 6745008.982021329924464 ], [ 269109.748196011816617, 6745010.22782438993454 ], [ 269106.445201159338467, 6745000.532149461098015 ], [ 269110.840495359560009, 6744998.785865935496986 ], [ 269109.983068459725473, 6744996.108046989887953 ], [ 269105.57704816875048, 6744994.713763234205544 ], [ 269103.806795602256898, 6744996.959330293349922 ], [ 269098.352441864379216, 6744993.881430465728045 ], [ 269081.65032853174489, 6745021.80056996550411 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088286, "zindex": 0, "height_class": "low", "type": "grass", "id": 24 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268511.582578865112737, 6745208.17136453371495 ], [ 268513.222576283093076, 6745193.013137051835656 ], [ 268491.013215857848991, 6745178.025370004586875 ], [ 268488.160093047306873, 6745182.132542551495135 ], [ 268499.257099254289642, 6745189.521144846454263 ], [ 268505.517331331735477, 6745195.491675511933863 ], [ 268507.810930236300919, 6745198.666119025088847 ], [ 268509.351544950448442, 6745202.864682842046022 ], [ 268510.462457926711068, 6745207.774134846404195 ], [ 268511.582578865112737, 6745208.17136453371495 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088268, "zindex": 0, "height_class": "low", "type": "grass", "id": 25 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268444.510277852765284, 6745299.244625234976411 ], [ 268446.663957204087637, 6745295.968269175849855 ], [ 268436.261080968484748, 6745294.889823270961642 ], [ 268424.506258732581045, 6745292.918686592951417 ], [ 268417.051233147038147, 6745292.226561383344233 ], [ 268402.471728088334203, 6745290.628826680593193 ], [ 268399.967891904758289, 6745294.777383823879063 ], [ 268399.944214112707414, 6745298.265823535621166 ], [ 268406.093817971122917, 6745298.908438253216445 ], [ 268425.750229650060646, 6745315.519313435070217 ], [ 268438.543807242473122, 6745316.155820981599391 ], [ 268444.510277852765284, 6745299.244625234976411 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168802657, "zindex": 0, "height_class": "low", "type": "grass", "id": 26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268758.741492487257347, 6744964.689743582159281 ], [ 268758.781437280529644, 6744966.268649873323739 ], [ 268759.593394573195837, 6744967.702113464474678 ], [ 268761.275147662148811, 6744965.173263370059431 ], [ 268763.148261932830792, 6744965.782953874208033 ], [ 268769.842654894746374, 6744981.625165205448866 ], [ 268768.858450161467772, 6744984.225656385533512 ], [ 268766.256001249596011, 6744986.821677800267935 ], [ 268770.013177907385398, 6744995.927087142132223 ], [ 268774.422797306382563, 6744993.655942522920668 ], [ 268770.064162774942815, 6744984.661249750293791 ], [ 268776.007851018221118, 6744971.751280426979065 ], [ 268761.091544345777947, 6744963.894467521458864 ], [ 268759.761989236285444, 6744963.824377837590873 ], [ 268758.741492487257347, 6744964.689743582159281 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088283, "zindex": 0, "height_class": "low", "type": "grass", "id": 27 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268474.883281396294478, 6745185.496899361722171 ], [ 268484.967104891431518, 6745186.531881287693977 ], [ 268484.74075361789437, 6745185.389885229989886 ], [ 268468.938648651877884, 6745176.428816922940314 ], [ 268468.468872996571008, 6745178.445970930159092 ], [ 268472.028298276010901, 6745181.126955180428922 ], [ 268474.883281396294478, 6745185.496899361722171 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168793800, "zindex": 0, "height_class": "low", "type": "grass", "id": 28 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269223.835078192467336, 6744887.754063718020916 ], [ 269217.330824248376302, 6744897.529596609063447 ], [ 269210.254555764433462, 6744905.341715444810688 ], [ 269198.648222304822411, 6744916.046106199733913 ], [ 269191.630784808425233, 6744921.670617119409144 ], [ 269215.37435884255683, 6744995.722245154902339 ], [ 269250.588258832925931, 6744985.347046603448689 ], [ 269252.974550850165542, 6744979.369452373124659 ], [ 269252.092126210336573, 6744975.211883502081037 ], [ 269250.93494020489743, 6744973.892636367119849 ], [ 269222.751531334710307, 6744985.225845134817064 ], [ 269214.893688752315938, 6744965.379800102673471 ], [ 269207.952251269598491, 6744959.346816750243306 ], [ 269211.0925633701263, 6744955.764943075366318 ], [ 269206.140121103846468, 6744943.259748550131917 ], [ 269233.466430029890034, 6744932.657311358489096 ], [ 269241.255067843128927, 6744951.038003228604794 ], [ 269248.542286022275221, 6744948.702326293103397 ], [ 269227.881862238107715, 6744901.049342469312251 ], [ 269226.887104282330256, 6744893.079110111109912 ], [ 269223.835078192467336, 6744887.754063718020916 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168801745, "zindex": 0, "height_class": "low", "type": "grass", "id": 29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268956.190980122773908, 6745189.052511600777507 ], [ 268957.792467275401577, 6745192.233028926886618 ], [ 268958.856479575333651, 6745197.12367963604629 ], [ 268959.168406421900727, 6745201.400805191136897 ], [ 268958.450078310794197, 6745207.234629376791418 ], [ 268957.446582247561309, 6745210.293218730017543 ], [ 268974.762351830955595, 6745217.529905208386481 ], [ 268999.016417239385191, 6745233.027515634894371 ], [ 269016.058696948923171, 6745238.992069215513766 ], [ 269061.074497915862594, 6745255.638364879414439 ], [ 269072.09946032660082, 6745251.938232300803065 ], [ 269087.226237510738429, 6745252.996423318050802 ], [ 269092.909562701068353, 6745251.167342314496636 ], [ 269097.22268650715705, 6745248.09027704782784 ], [ 269098.624894881853834, 6745245.648740919306874 ], [ 269100.43332053150516, 6745246.508316389285028 ], [ 269102.911309106275439, 6745247.675543365068734 ], [ 269106.899326598562766, 6745241.480833682231605 ], [ 269108.098283246392384, 6745241.928122916258872 ], [ 269121.620398205064703, 6745248.327839581295848 ], [ 269124.480684941052459, 6745244.933407516218722 ], [ 269121.876313807675615, 6745243.374361483380198 ], [ 269123.201955498370808, 6745240.19206397049129 ], [ 269121.972990453941748, 6745237.06232763081789 ], [ 269119.536886528716423, 6745234.198827467858791 ], [ 269114.620324740011711, 6745232.09541754424572 ], [ 269110.971710451762192, 6745232.004948521964252 ], [ 269100.622661281086039, 6745229.907716738060117 ], [ 269095.729065090185031, 6745236.892523596063256 ], [ 269089.394231094047427, 6745241.242081875912845 ], [ 269055.882080199837219, 6745242.114787958562374 ], [ 269044.76096607738873, 6745239.026828252710402 ], [ 269029.648661722254474, 6745234.659236816689372 ], [ 268982.065882076334674, 6745182.197280032560229 ], [ 268973.127975038310979, 6745181.601451917551458 ], [ 268967.865898867836222, 6745182.397362967953086 ], [ 268956.190980122773908, 6745189.052511600777507 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799838, "zindex": 0, "height_class": "low", "type": "grass", "id": 30 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269008.947083983104676, 6745130.320658653974533 ], [ 269047.145649506419431, 6745104.131150209344923 ], [ 269047.580838396097533, 6745102.049741656519473 ], [ 269046.600727665354498, 6745099.960131290368736 ], [ 269036.752815974410623, 6745097.10238401312381 ], [ 269030.463673625898082, 6745091.656994424760342 ], [ 269008.947083983104676, 6745130.320658653974533 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799847, "zindex": 0, "height_class": "low", "type": "grass", "id": 31 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269103.396858806489035, 6745024.470458743162453 ], [ 269094.139919877925422, 6745018.985153761692345 ], [ 269096.576829986646771, 6745014.529910240322351 ], [ 269094.63683383812895, 6745013.724482177756727 ], [ 269092.843157053750474, 6745014.100318291224539 ], [ 269083.389562696393114, 6745029.761077429167926 ], [ 269099.075205102097243, 6745039.200085865333676 ], [ 269101.462942414393183, 6745034.79298654012382 ], [ 269098.216249723860528, 6745032.57898183260113 ], [ 269103.396858806489035, 6745024.470458743162453 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088274, "zindex": 0, "height_class": "low", "type": "grass", "id": 32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268559.930617298290599, 6745254.458323470316827 ], [ 268556.753127162694, 6745221.237975339405239 ], [ 268530.183491788688116, 6745203.727759417146444 ], [ 268529.45791120553622, 6745208.838119067251682 ], [ 268535.2487083565793, 6745209.306553011760116 ], [ 268534.890314698335715, 6745213.777427394874394 ], [ 268539.227907723630778, 6745217.326230846345425 ], [ 268538.759082285978366, 6745228.221592123620212 ], [ 268535.069155432400294, 6745228.390703295357525 ], [ 268531.623387974803336, 6745229.121253408491611 ], [ 268528.833448066434357, 6745230.795355672948062 ], [ 268527.540519560861867, 6745232.360173616558313 ], [ 268526.316113237582613, 6745236.203613738529384 ], [ 268525.760508925770409, 6745239.931392011232674 ], [ 268525.916168180119712, 6745244.331322099082172 ], [ 268526.625761064700782, 6745247.042148175649345 ], [ 268528.710786312469281, 6745249.318375239148736 ], [ 268531.82391136221122, 6745250.628379096277058 ], [ 268559.930617298290599, 6745254.458323470316827 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168793799, "zindex": 0, "height_class": "low", "type": "grass", "id": 33 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269532.459457033372018, 6745011.954126965254545 ], [ 269534.196168951515574, 6745013.27577559556812 ], [ 269536.614934081502724, 6745014.146729993633926 ], [ 269539.333276575198397, 6745014.171545881778002 ], [ 269542.355315277236514, 6745012.993460387922823 ], [ 269544.634720005036797, 6745010.710954803973436 ], [ 269545.625035316566937, 6745008.500052286311984 ], [ 269545.893753850250505, 6745006.196888751350343 ], [ 269545.539130608376581, 6745004.117353306151927 ], [ 269544.530054628499784, 6745002.040922148153186 ], [ 269543.339772339968476, 6745000.679475230164826 ], [ 269540.695579103427008, 6744999.089729653671384 ], [ 269536.898615721613169, 6744998.720166995190084 ], [ 269533.821751848328859, 6744999.86882917303592 ], [ 269531.565831520711072, 6745002.060512547381222 ], [ 269530.583449698926415, 6745004.070329148322344 ], [ 269530.214059169287793, 6745006.024362277239561 ], [ 269530.379940445069224, 6745008.095364323817194 ], [ 269531.070017131278291, 6745010.027933890931308 ], [ 269532.459457033372018, 6745011.954126965254545 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168801747, "zindex": 0, "height_class": "low", "type": "grass", "id": 34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268950.512144515465479, 6745177.736701047979295 ], [ 268943.768887194397394, 6745182.160760967992246 ], [ 268948.538291756587569, 6745186.268751556053758 ], [ 268951.655742595146876, 6745183.924876173958182 ], [ 268953.171048216056079, 6745183.034595021978021 ], [ 268950.512144515465479, 6745177.736701047979295 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799840, "zindex": 0, "height_class": "low", "type": "grass", "id": 35 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269055.876122538524214, 6745046.148190797306597 ], [ 269043.643744790519122, 6745067.971290608868003 ], [ 269046.000435120658949, 6745069.125063877552748 ], [ 269046.655622093123384, 6745067.996756041422486 ], [ 269056.981951547961216, 6745059.457300705835223 ], [ 269060.0106462026597, 6745055.894612617790699 ], [ 269061.334844191675074, 6745051.453641680069268 ], [ 269060.547305753454566, 6745049.528221686370671 ], [ 269055.876122538524214, 6745046.148190797306597 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799821, "zindex": 0, "height_class": "low", "type": "grass", "id": 36 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269324.199792785104364, 6744818.772025358863175 ], [ 269344.161852491146419, 6744806.445424657315016 ], [ 269354.09222596231848, 6744826.441373519599438 ], [ 269353.292207216727547, 6744822.277792697772384 ], [ 269354.341052763513289, 6744818.391669357195497 ], [ 269356.807463955774438, 6744814.647335436195135 ], [ 269370.231594481156208, 6744805.336968977935612 ], [ 269352.469824602711014, 6744783.928737390786409 ], [ 269342.992023451253772, 6744788.117073827423155 ], [ 269340.614744857361075, 6744786.474543089047074 ], [ 269334.926823634596076, 6744804.979504423215985 ], [ 269323.118798883282579, 6744811.888603373430669 ], [ 269324.199792785104364, 6744818.772025358863175 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799845, "zindex": 0, "height_class": "low", "type": "grass", "id": 37 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269037.949632488831412, 6745082.968142507597804 ], [ 269043.447434085072018, 6745080.862925368361175 ], [ 269044.776481988083106, 6745078.036830136552453 ], [ 269044.543538193625864, 6745075.358043411746621 ], [ 269045.637693720520474, 6745072.716168570332229 ], [ 269044.273429868509993, 6745072.169547161087394 ], [ 269045.224248510145117, 6745070.451566609553993 ], [ 269042.845696730830241, 6745069.410783162340522 ], [ 269036.201246149255894, 6745082.003948966041207 ], [ 269037.949632488831412, 6745082.968142507597804 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168793802, "zindex": 0, "height_class": "low", "type": "grass", "id": 38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269510.364873449900188, 6745062.978075347840786 ], [ 269498.133588578959461, 6745079.464229769073427 ], [ 269499.66185980575392, 6745082.160067930817604 ], [ 269519.624972996360157, 6745069.444042860530317 ], [ 269519.232672796060797, 6745068.603735095821321 ], [ 269510.364873449900188, 6745062.978075347840786 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168789767, "zindex": 0, "height_class": "low", "type": "grass", "id": 39 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269184.281702878884971, 6745241.855166165158153 ], [ 269192.935318636533339, 6745250.837822330184281 ], [ 269194.330707812972832, 6745251.192833609879017 ], [ 269196.426139405637514, 6745250.828446868807077 ], [ 269202.927227509673685, 6745244.216702092438936 ], [ 269203.515918151591904, 6745242.692234540358186 ], [ 269203.462568241055124, 6745240.824680338613689 ], [ 269203.015798884793185, 6745238.618196984753013 ], [ 269201.759996045788284, 6745236.771450411528349 ], [ 269175.851436175173149, 6745216.01325171161443 ], [ 269162.998252213466913, 6745202.479900467209518 ], [ 269141.398480944626499, 6745190.25254977401346 ], [ 269140.699783327523619, 6745191.506554471328855 ], [ 269153.74501415429404, 6745206.641096410341561 ], [ 269155.71418411063496, 6745205.060550442896783 ], [ 269158.127177676535212, 6745208.226516922935843 ], [ 269158.693674895039294, 6745207.739640079438686 ], [ 269173.938723392901011, 6745226.523589183576405 ], [ 269174.401502531545702, 6745227.091391154564917 ], [ 269173.143040049937554, 6745228.408474163152277 ], [ 269184.281702878884971, 6745241.855166165158153 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088277, "zindex": 0, "height_class": "low", "type": "grass", "id": 40 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268518.750448413193226, 6745387.987628732807934 ], [ 268517.322975574526936, 6745382.555441481992602 ], [ 268497.257335887930822, 6745380.94584789685905 ], [ 268488.34149038355099, 6745379.001258588396013 ], [ 268478.295836415840313, 6745376.52649193815887 ], [ 268473.802714386198204, 6745375.072204883210361 ], [ 268470.662937026587315, 6745373.396571900695562 ], [ 268467.031394692428876, 6745370.654021405614913 ], [ 268463.669721038546413, 6745366.86692098993808 ], [ 268461.048644624766894, 6745362.814093942753971 ], [ 268456.535108109761495, 6745358.297906650230289 ], [ 268455.265303095802665, 6745358.735952014103532 ], [ 268453.991071359545458, 6745356.846134603954852 ], [ 268449.905160990427248, 6745353.858278735540807 ], [ 268410.562154369137716, 6745349.278696144931018 ], [ 268409.326920307823457, 6745357.712497738189995 ], [ 268410.79395769094117, 6745358.017536079511046 ], [ 268411.965455330733676, 6745354.378439755178988 ], [ 268455.077359092596453, 6745359.975036185234785 ], [ 268454.327190005220473, 6745366.190035932697356 ], [ 268453.147412739810534, 6745366.109084581024945 ], [ 268452.669149700319394, 6745370.27681525144726 ], [ 268410.16864495788468, 6745365.838676875457168 ], [ 268403.413237963279244, 6745365.864122118800879 ], [ 268401.636886286141817, 6745372.967264742590487 ], [ 268435.228749328060076, 6745377.20922710839659 ], [ 268452.864272054925095, 6745379.853805398568511 ], [ 268475.317994381533936, 6745382.737042151391506 ], [ 268478.916785960202105, 6745383.176081675104797 ], [ 268518.750448413193226, 6745387.987628732807934 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799839, "zindex": 0, "height_class": "low", "type": "grass", "id": 41 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269217.494949705898762, 6745003.755239749327302 ], [ 269221.39119383553043, 6745017.050350452773273 ], [ 269225.636585613538045, 6745027.702228755690157 ], [ 269237.293690844613593, 6745044.130048947408795 ], [ 269241.511656735441647, 6745062.04690517205745 ], [ 269252.888925016624853, 6745051.403826428577304 ], [ 269221.560635030677076, 6745002.545481172390282 ], [ 269217.494949705898762, 6745003.755239749327302 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088285, "zindex": 0, "height_class": "low", "type": "grass", "id": 42 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268449.375048688205425, 6745158.206903641112149 ], [ 268454.753891279513482, 6745153.959857424721122 ], [ 268441.084313695901074, 6745145.556088912300766 ], [ 268439.223547028552275, 6745145.424603777937591 ], [ 268437.788009317417163, 6745145.963867503218353 ], [ 268435.858426014194265, 6745148.600038029253483 ], [ 268435.908379695902113, 6745149.799471315927804 ], [ 268436.501513250288554, 6745150.914684732444584 ], [ 268449.375048688205425, 6745158.206903641112149 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 195367719, "zindex": 0, "height_class": "high", "type": "wood", "id": 43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268926.05900356953498, 6744781.871221203356981 ], [ 268929.220394564908929, 6744793.025281772948802 ], [ 268911.915131753368769, 6744814.015510743483901 ], [ 268930.325319681898691, 6744825.305092158727348 ], [ 268932.74064819549676, 6744823.959291608072817 ], [ 268936.07568183564581, 6744822.635535906068981 ], [ 268939.165392620197963, 6744822.488186157308519 ], [ 268942.910683883819729, 6744823.384704144671559 ], [ 268947.185309248568956, 6744829.166302336379886 ], [ 268947.439900993485935, 6744847.516852349974215 ], [ 268952.753970702877268, 6744870.544650639407337 ], [ 268973.012377734412439, 6744902.641918969340622 ], [ 268974.290652815834619, 6744901.802353562787175 ], [ 268970.599769923137501, 6744892.157305086962879 ], [ 268972.519922227656934, 6744884.330992749892175 ], [ 268972.751298391085584, 6744875.636411955580115 ], [ 268970.486993683269247, 6744865.018449229188263 ], [ 268963.728818687377498, 6744853.970707596279681 ], [ 268948.189438991539646, 6744828.591795056127012 ], [ 268945.361014471098315, 6744823.963498277589679 ], [ 268946.691842639353126, 6744804.650725633837283 ], [ 268944.915458162606228, 6744778.847406692802906 ], [ 268926.05900356953498, 6744781.871221203356981 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799819, "zindex": 0, "height_class": "low", "type": "grass", "id": 44 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269434.14358612743672, 6744882.912706480361521 ], [ 269411.062132259423379, 6744854.896236532367766 ], [ 269397.988352134241723, 6744861.474097178317606 ], [ 269404.614093301293906, 6744874.124870357103646 ], [ 269400.183551687572617, 6744876.319070119410753 ], [ 269404.075771102216095, 6744882.953145375475287 ], [ 269406.036895283672493, 6744883.222439202480018 ], [ 269412.536147119302768, 6744880.398542790673673 ], [ 269419.198389379598666, 6744879.088890550658107 ], [ 269424.465536918491125, 6744878.772032486274838 ], [ 269429.421879677567631, 6744879.870255820453167 ], [ 269434.14358612743672, 6744882.912706480361521 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168801743, "zindex": 0, "height_class": "low", "type": "grass", "id": 45 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269110.95651531603653, 6745265.135087197646499 ], [ 269107.211707563663367, 6745272.704509004019201 ], [ 269121.332496442075353, 6745277.924340479075909 ], [ 269149.086871259030886, 6745285.191424898803234 ], [ 269153.166829952970147, 6745283.044840300455689 ], [ 269145.259287884575315, 6745281.716420662589371 ], [ 269121.928249094286002, 6745264.936747932806611 ], [ 269133.393296521448065, 6745239.816710744984448 ], [ 269131.604952007706743, 6745236.96168215200305 ], [ 269130.288235944113694, 6745238.305300941690803 ], [ 269114.17077634925954, 6745266.905874659307301 ], [ 269110.95651531603653, 6745265.135087197646499 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088276, "zindex": 0, "height_class": "low", "type": "grass", "id": 46 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268511.300610108010005, 6745377.057685173116624 ], [ 268515.339381778612733, 6745377.854512591846287 ], [ 268519.301098012772854, 6745377.69895913824439 ], [ 268523.223176296800375, 6745377.000459788367152 ], [ 268527.131121636542957, 6745375.077634607441723 ], [ 268530.362818258756306, 6745372.446685465052724 ], [ 268532.799317538447212, 6745369.127434589900076 ], [ 268534.040899125335272, 6745364.592079935595393 ], [ 268536.944416401674971, 6745347.982570699416101 ], [ 268541.310009215259925, 6745312.952774522826076 ], [ 268547.324994427675847, 6745263.922608473338187 ], [ 268547.016355585015845, 6745261.550118751823902 ], [ 268545.824051588308066, 6745260.266982173547149 ], [ 268543.172989286074881, 6745258.689308594912291 ], [ 268539.048576410044916, 6745296.096503521315753 ], [ 268534.77993286511628, 6745295.862279745750129 ], [ 268530.374265442718752, 6745332.198342122137547 ], [ 268526.424876461736858, 6745331.595490788109601 ], [ 268521.612503388721962, 6745368.028101607225835 ], [ 268512.272626570775174, 6745366.871927726082504 ], [ 268511.300610108010005, 6745377.057685173116624 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168801744, "zindex": 0, "height_class": "high", "type": "wood", "id": 47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268990.852825597219635, 6745169.681723254732788 ], [ 268989.893619664129801, 6745172.625679420307279 ], [ 269013.305459971714299, 6745201.0286884624511 ], [ 269017.951252498256508, 6745197.147538659162819 ], [ 269002.244433587242384, 6745179.778931473381817 ], [ 269013.522467802802566, 6745169.744113530963659 ], [ 269013.59471346315695, 6745163.923994624987245 ], [ 269008.559455316048115, 6745158.543151250109076 ], [ 269006.668547285662498, 6745162.435069144703448 ], [ 269010.313834936008789, 6745165.67821559868753 ], [ 269004.73118092661025, 6745171.365457803010941 ], [ 269000.463675733422861, 6745173.314165876246989 ], [ 268996.092871577013284, 6745174.568617538549006 ], [ 268995.445293269585818, 6745168.990360975265503 ], [ 268990.852825597219635, 6745169.681723254732788 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168801741, "zindex": 0, "height_class": "low", "type": "grass", "id": 48 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268957.446582247561309, 6745210.293218730017543 ], [ 268958.450078310794197, 6745207.234629376791418 ], [ 268959.168406421900727, 6745201.400805191136897 ], [ 268958.856479575333651, 6745197.12367963604629 ], [ 268957.792467275401577, 6745192.233028926886618 ], [ 268956.190980122773908, 6745189.052511600777507 ], [ 268952.571524131519254, 6745192.457836480811238 ], [ 268951.735175247944426, 6745197.086055595427752 ], [ 268952.46008211071603, 6745204.652654645964503 ], [ 268954.168703401286621, 6745208.683104794472456 ], [ 268957.446582247561309, 6745210.293218730017543 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799835, "zindex": 0, "height_class": "high", "type": "wood", "id": 49 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269396.45428749040002, 6744887.106430562213063 ], [ 269396.94055343902437, 6744885.310965709388256 ], [ 269396.127280694025103, 6744883.030920189805329 ], [ 269393.544790072308388, 6744879.810373644344509 ], [ 269385.49648769677151, 6744872.320578414015472 ], [ 269378.427822048251983, 6744872.389975658617914 ], [ 269378.315533348999452, 6744866.717014488764107 ], [ 269375.775663754960988, 6744862.635628644376993 ], [ 269371.898592712066602, 6744855.900210427120328 ], [ 269370.025011717632879, 6744857.039264926686883 ], [ 269359.934898573847022, 6744839.394225342199206 ], [ 269351.851551566564012, 6744843.302727502770722 ], [ 269350.574325454595964, 6744845.91331016458571 ], [ 269352.148644753324334, 6744847.380416283383965 ], [ 269356.749703919049352, 6744852.381011385470629 ], [ 269359.495893084385898, 6744859.087418710812926 ], [ 269359.486017991090193, 6744867.008319796063006 ], [ 269357.205461827921681, 6744873.613104339689016 ], [ 269351.251877925707959, 6744879.794852686114609 ], [ 269352.461531484266743, 6744881.834363043308258 ], [ 269356.484239722485654, 6744879.413631510920823 ], [ 269368.752961727441289, 6744899.384047730825841 ], [ 269373.83581376937218, 6744897.777249259874225 ], [ 269382.697436664602719, 6744893.500165457837284 ], [ 269380.366438031196594, 6744888.980260264128447 ], [ 269386.102960606105626, 6744886.223040900193155 ], [ 269388.253496677847579, 6744890.744955724105239 ], [ 269396.45428749040002, 6744887.106430562213063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168802654, "zindex": 0, "height_class": "low", "type": "grass", "id": 50 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269156.999424606154207, 6745192.446014566347003 ], [ 269160.153247459733393, 6745186.36785592418164 ], [ 269158.767481932358351, 6745185.009591209702194 ], [ 269155.001238645869307, 6745180.828315883874893 ], [ 269155.335107783204876, 6745180.247001121751964 ], [ 269145.531220012868289, 6745168.596776199527085 ], [ 269141.599371313932352, 6745166.789163803681731 ], [ 269140.160558385134209, 6745168.832330946810544 ], [ 269137.223545867367648, 6745176.955511045642197 ], [ 269138.439479747554287, 6745180.732293363660574 ], [ 269156.999424606154207, 6745192.446014566347003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799829, "zindex": 0, "height_class": "low", "type": "grass", "id": 51 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269130.339084528794046, 6744963.288599512539804 ], [ 269132.726839210721664, 6744974.365467397496104 ], [ 269113.325179474719334, 6744978.676099916920066 ], [ 269110.789959302113857, 6744982.815454060211778 ], [ 269136.343184139521327, 6744976.385452289134264 ], [ 269135.559813240135554, 6744973.691092632710934 ], [ 269144.937598865362816, 6744971.336563319899142 ], [ 269164.267320062033832, 6744971.097209141589701 ], [ 269168.911415695270989, 6744972.763810737989843 ], [ 269171.432357867597602, 6744968.324758286587894 ], [ 269174.844163064612076, 6744970.326256260275841 ], [ 269171.673260301991832, 6744965.745107542723417 ], [ 269162.667854769621044, 6744959.684384867548943 ], [ 269152.409540400432888, 6744958.115117374807596 ], [ 269141.415157653158531, 6744960.075056680478156 ], [ 269130.339084528794046, 6744963.288599512539804 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088275, "zindex": 0, "height_class": "low", "type": "grass", "id": 52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268421.214143551012967, 6745283.902033089660108 ], [ 268420.09038649109425, 6745283.661041429266334 ], [ 268417.479940867633559, 6745285.010183504782617 ], [ 268416.407566700421739, 6745284.854557656683028 ], [ 268419.545950995001476, 6745260.953638697043061 ], [ 268424.669967744091991, 6745258.061919719912112 ], [ 268425.342852412664797, 6745252.643476847559214 ], [ 268424.033985453366768, 6745252.649933349341154 ], [ 268419.974266461795196, 6745253.525638029910624 ], [ 268416.742544638633262, 6745255.744479279965162 ], [ 268414.473556763783563, 6745258.472283313050866 ], [ 268400.059569872450083, 6745281.503365804441273 ], [ 268399.675201859849039, 6745282.83477318752557 ], [ 268400.040546780044679, 6745283.922058953903615 ], [ 268401.49728208797751, 6745285.219277329742908 ], [ 268403.139929678989574, 6745285.867959899827838 ], [ 268417.10709527466679, 6745287.220780309289694 ], [ 268418.970860274625011, 6745286.260351112112403 ], [ 268421.214143551012967, 6745283.902033089660108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 512101293, "zindex": 0, "height_class": "low", "type": "grass", "id": 53 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268717.006008465250488, 6745097.823070109821856 ], [ 268711.472177894611377, 6745095.308295237831771 ], [ 268706.526614573085681, 6745096.627178865484893 ], [ 268702.404931902361568, 6745099.646003605797887 ], [ 268701.529666361166164, 6745101.469929427839816 ], [ 268702.260279822279699, 6745103.232370067387819 ], [ 268706.365706273063552, 6745104.837664260528982 ], [ 268716.809284031915013, 6745099.252153552137315 ], [ 268717.006008465250488, 6745097.823070109821856 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088279, "zindex": 0, "height_class": "low", "type": "grass", "id": 54 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268464.461199933895841, 6745357.919693594798446 ], [ 268466.734004205325618, 6745339.373331613838673 ], [ 268458.947886732581537, 6745338.783310038037598 ], [ 268457.639553198183421, 6745347.144455930218101 ], [ 268459.771076836215798, 6745351.912545070052147 ], [ 268464.461199933895841, 6745357.919693594798446 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799837, "zindex": 0, "height_class": "low", "type": "grass", "id": 55 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269018.138466668373439, 6745140.789990511722863 ], [ 269027.051465717202518, 6745151.157098662108183 ], [ 269052.670513760705944, 6745180.936568378470838 ], [ 269092.319496847572736, 6745227.282598216086626 ], [ 269099.710915381438099, 6745221.53040680848062 ], [ 269024.18924017297104, 6745135.536492236889899 ], [ 269018.138466668373439, 6745140.789990511722863 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168756815, "zindex": 0, "height_class": "low", "type": "grass", "id": 56 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269249.74720664677443, 6744942.209293897263706 ], [ 269251.520861374330707, 6744947.237631645053625 ], [ 269253.25005473732017, 6744946.699452295899391 ], [ 269259.047552639036439, 6744960.992254859767854 ], [ 269255.792949844151735, 6744973.538601626642048 ], [ 269257.848116484936327, 6744979.125680492259562 ], [ 269263.390866209752858, 6744977.841728980652988 ], [ 269266.755772830802016, 6744971.558895604684949 ], [ 269271.396530384547077, 6744959.446239567361772 ], [ 269272.301142234064173, 6744954.924512247554958 ], [ 269272.281225608312525, 6744946.493352285586298 ], [ 269266.560166990908328, 6744946.776591408066452 ], [ 269250.271720442280639, 6744940.010003101080656 ], [ 269249.74720664677443, 6744942.209293897263706 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088281, "zindex": 0, "height_class": "low", "type": "grass", "id": 57 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268489.378196805657353, 6745262.616583955474198 ], [ 268484.919524057768285, 6745300.181921440176666 ], [ 268500.046180602163076, 6745301.751048500649631 ], [ 268503.729487801727373, 6745286.443629262968898 ], [ 268508.177577973925509, 6745267.59367538522929 ], [ 268508.004462501907256, 6745265.222432137466967 ], [ 268489.378196805657353, 6745262.616583955474198 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088278, "zindex": 0, "height_class": "high", "type": "wood", "id": 58 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268419.701718169206288, 6745160.652061904780567 ], [ 268416.582416372431908, 6745187.392178642563522 ], [ 268401.216725363803562, 6745185.439670794643462 ], [ 268395.839207367447671, 6745228.140731115825474 ], [ 268395.327137290267274, 6745232.241950709372759 ], [ 268395.087193171493709, 6745262.234965556301177 ], [ 268398.19282433274202, 6745264.183854004368186 ], [ 268402.442315090738703, 6745256.632766237482429 ], [ 268407.728961030486971, 6745256.792559499852359 ], [ 268410.030312043731101, 6745254.507975364103913 ], [ 268415.42116920807166, 6745250.42710040230304 ], [ 268423.39273874979699, 6745247.784174113534391 ], [ 268428.422097953443881, 6745244.420366770587862 ], [ 268512.982122021727264, 6745259.088704103603959 ], [ 268518.046815290173981, 6745251.467056256718934 ], [ 268511.345848335535266, 6745245.127664822153747 ], [ 268504.196707797062118, 6745242.029214102774858 ], [ 268460.654653722362127, 6745230.036042959429324 ], [ 268427.684926278481726, 6745221.236899486742914 ], [ 268425.06820886960486, 6745219.099785537458956 ], [ 268423.292241144634318, 6745217.346866777166724 ], [ 268421.806375665590167, 6745214.826409110799432 ], [ 268421.169166325766128, 6745210.840387674979866 ], [ 268421.42975310102338, 6745207.813656155019999 ], [ 268422.317273209046107, 6745203.994790035299957 ], [ 268425.714386758452747, 6745193.219773177057505 ], [ 268424.523970239271875, 6745180.730042492970824 ], [ 268422.642549100157339, 6745162.487017193809152 ], [ 268419.701718169206288, 6745160.652061904780567 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168756817, "zindex": 0, "height_class": "low", "type": "grass", "id": 59 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269312.447664987528697, 6744882.733603432774544 ], [ 269314.505244924512226, 6744884.533090503886342 ], [ 269322.750092627189588, 6744885.837189863435924 ], [ 269328.764826923958026, 6744885.14272874686867 ], [ 269332.850209421594627, 6744884.098711810074747 ], [ 269348.841371355927549, 6744875.11365850828588 ], [ 269352.15420054103015, 6744871.419045345857739 ], [ 269354.00596437684726, 6744867.708350297063589 ], [ 269354.549819511827081, 6744863.914715623483062 ], [ 269354.290670987451449, 6744860.357818281278014 ], [ 269352.542924225563183, 6744855.684032905846834 ], [ 269350.214835960592609, 6744852.857129245065153 ], [ 269347.341037998907268, 6744850.493287145160139 ], [ 269343.294508699444123, 6744848.972376890480518 ], [ 269340.007912083412521, 6744848.2761206086725 ], [ 269336.105894527456257, 6744848.738656025379896 ], [ 269297.597258012741804, 6744868.955603114329278 ], [ 269293.606524986505974, 6744873.880434273742139 ], [ 269294.939331961679272, 6744875.131194963119924 ], [ 269292.915573950333055, 6744878.030120911076665 ], [ 269295.92154885653872, 6744880.038981482386589 ], [ 269297.94044590939302, 6744880.894424014724791 ], [ 269302.532172979961615, 6744872.65078860335052 ], [ 269331.465000347001478, 6744856.618238700553775 ], [ 269338.001714776328299, 6744867.838438938371837 ], [ 269312.447664987528697, 6744882.733603432774544 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168801746, "zindex": 0, "height_class": "low", "type": "grass", "id": 60 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269053.718631212366745, 6745235.767029298469424 ], [ 269062.414068376121577, 6745236.547744841314852 ], [ 269080.292842886468861, 6745236.647778052836657 ], [ 269067.027288320823573, 6745222.208963288925588 ], [ 269054.526489381387364, 6745233.22400376573205 ], [ 269053.718631212366745, 6745235.767029298469424 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088271, "zindex": 0, "height_class": "low", "type": "grass", "id": 61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268427.629964809573721, 6745214.30091576743871 ], [ 268430.08423156675417, 6745216.995735258795321 ], [ 268433.358828747877851, 6745218.661507688462734 ], [ 268451.822383657970931, 6745223.674093871377409 ], [ 268461.299441139213741, 6745225.778181402944028 ], [ 268463.051655138086062, 6745218.754810521379113 ], [ 268465.518141099310014, 6745215.021180742420256 ], [ 268455.880067362100817, 6745169.384002627804875 ], [ 268453.401105731318239, 6745167.381633104756474 ], [ 268449.492481840017717, 6745165.483650955371559 ], [ 268445.011444414616562, 6745202.638476903550327 ], [ 268449.886443299881648, 6745203.652701052837074 ], [ 268447.716002271627076, 6745217.212162376381457 ], [ 268427.629964809573721, 6745214.30091576743871 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799818, "zindex": 0, "height_class": "high", "type": "wood", "id": 62 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269048.781520952587016, 6745074.035341458395123 ], [ 269048.058705145784188, 6745075.680999432690442 ], [ 269048.737674593750853, 6745077.046217038296163 ], [ 269050.384712225117255, 6745077.962105998769403 ], [ 269052.020369436242618, 6745077.586637325584888 ], [ 269053.042761575547047, 6745076.231044662185013 ], [ 269054.282954220718239, 6745068.677122073248029 ], [ 269053.925588881771546, 6745067.800874575041234 ], [ 269053.108936360047664, 6745067.437115034088492 ], [ 269051.375919520622119, 6745068.231845192611217 ], [ 269050.741951477888506, 6745069.5479776840657 ], [ 269048.781520952587016, 6745074.035341458395123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168799814, "zindex": 0, "height_class": "high", "type": "wood", "id": 63 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269461.171473722788505, 6744883.082708508707583 ], [ 269458.573177494225092, 6744879.128081544302404 ], [ 269443.811647721973713, 6744886.296637847088277 ], [ 269442.418508539674804, 6744889.795662110671401 ], [ 269468.714337010751478, 6744928.472521916031837 ], [ 269472.534472526807804, 6744928.539590400643647 ], [ 269478.437886065104976, 6744924.767750197090209 ], [ 269479.536254313425161, 6744920.321069937199354 ], [ 269476.394393062859308, 6744922.644139342941344 ], [ 269452.73086241731653, 6744889.11132031865418 ], [ 269461.171473722788505, 6744883.082708508707583 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 512101294, "zindex": 0, "height_class": "high", "type": "wood", "id": 64 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268743.592635801644064, 6745125.057731278240681 ], [ 268758.997878674475942, 6745131.16330923512578 ], [ 268761.589520677283872, 6745131.72057087905705 ], [ 268763.41170818352839, 6745130.807849918492138 ], [ 268763.377920222061221, 6745127.869462894275784 ], [ 268760.76635749801062, 6745125.698412986472249 ], [ 268743.683274245646317, 6745118.668130541220307 ], [ 268742.965268854924943, 6745119.244080414995551 ], [ 268743.592635801644064, 6745125.057731278240681 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168802662, "zindex": 0, "height_class": "low", "type": "grass", "id": 65 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269138.52752943552332, 6745025.964240901172161 ], [ 269147.82625404879218, 6745031.713914446532726 ], [ 269154.172277737350669, 6745021.526511337608099 ], [ 269138.52752943552332, 6745025.964240901172161 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168802334, "zindex": 0, "height_class": "low", "type": "grass", "id": 66 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268831.782814243400935, 6744862.580521395429969 ], [ 268829.227476507832762, 6744864.482417999766767 ], [ 268828.518777963006869, 6744866.940261809155345 ], [ 268829.237844253133517, 6744868.647859614342451 ], [ 268831.26206048426684, 6744865.035794411785901 ], [ 268858.459323907969519, 6744879.282253446057439 ], [ 268855.633691131894011, 6744883.565442281775177 ], [ 268854.596716685919091, 6744885.133783685974777 ], [ 268906.243573244428262, 6744914.651740712113678 ], [ 268914.235807436518371, 6744901.759625076316297 ], [ 268858.241716738790274, 6744871.656385764479637 ], [ 268838.233009654853959, 6744863.212822997011244 ], [ 268831.782814243400935, 6744862.580521395429969 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168802655, "zindex": 0, "height_class": "high", "type": "wood", "id": 67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268820.495191787893418, 6744888.479092609137297 ], [ 268811.297291284776293, 6744889.896425754763186 ], [ 268809.135182470083237, 6744890.276943962089717 ], [ 268805.253284540493041, 6744892.66551112011075 ], [ 268807.773874629929196, 6744897.405321780592203 ], [ 268812.257227776804939, 6744900.063663626089692 ], [ 268774.301459025708027, 6744965.3813990149647 ], [ 268779.310585828498006, 6744967.923378283157945 ], [ 268818.11219717253698, 6744898.210680260322988 ], [ 268823.156980033905711, 6744895.670453503727913 ], [ 268823.48879612586461, 6744892.894774520769715 ], [ 268822.563614858721849, 6744890.734351118095219 ], [ 268820.495191787893418, 6744888.479092609137297 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168802335, "zindex": 0, "height_class": "high", "type": "wood", "id": 68 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268826.68936185433995, 6745100.993633104488254 ], [ 268824.50972523225937, 6745101.442267696373165 ], [ 268821.244683367200196, 6745100.009518123231828 ], [ 268812.472661500796676, 6745094.778893509879708 ], [ 268808.921777272364125, 6745090.459571968764067 ], [ 268807.357257687952369, 6745086.652575425803661 ], [ 268807.604825449117925, 6745082.0004479624331 ], [ 268811.31843155878596, 6745074.934384322725236 ], [ 268810.462101530982181, 6745072.067145752720535 ], [ 268808.986436491133645, 6745070.30334981624037 ], [ 268800.286611507530324, 6745064.72214615996927 ], [ 268793.147586170467548, 6745066.713398004882038 ], [ 268801.533936606021598, 6745095.331841105595231 ], [ 268804.848351837485097, 6745099.401059832423925 ], [ 268822.106132750108372, 6745107.176263413392007 ], [ 268827.008539082133211, 6745109.391872919164598 ], [ 268827.370706821035128, 6745108.786194417625666 ], [ 268830.39859905623598, 6745103.151473161764443 ], [ 268826.68936185433995, 6745100.993633104488254 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088280, "zindex": 0, "height_class": "low", "type": "grass", "id": 69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268473.242706324148457, 6745319.99413409922272 ], [ 268476.388770978839602, 6745322.270851513370872 ], [ 268485.421437137236353, 6745323.649917371571064 ], [ 268488.296578390756622, 6745304.591731035150588 ], [ 268475.104477027023677, 6745303.237856150604784 ], [ 268473.242706324148457, 6745319.99413409922272 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 168802661, "zindex": 0, "height_class": "high", "type": "wood", "id": 70 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269154.172277737350669, 6745021.526511337608099 ], [ 269157.940501711855177, 6745023.669110700488091 ], [ 269163.994479774264619, 6745018.972518473863602 ], [ 269154.172277737350669, 6745021.526511337608099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id_source": 299088267, "zindex": 0, "height_class": "low", "type": "grass", "id": 71 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268485.611693815502804, 6745355.629078214988112 ], [ 268484.298908997268882, 6745362.074522928334773 ], [ 268465.900095552497078, 6745359.797490158118308 ], [ 268467.129413531802129, 6745361.690589188598096 ], [ 268470.451444571895991, 6745364.934743328951299 ], [ 268474.816104564233683, 6745367.412115477956831 ], [ 268478.486314267269336, 6745367.901639129966497 ], [ 268482.742992609099019, 6745367.045007520355284 ], [ 268486.493350004951935, 6745364.922007791697979 ], [ 268487.39279104192974, 6745362.193963981233537 ], [ 268487.178246692637913, 6745356.472711935639381 ], [ 268485.611693815502804, 6745355.629078214988112 ] ] ] ] } } +{ "type": "Feature", "properties": { "id_source": 168756816, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269300.406132023257669, 6744907.193360469304025 ], [ 269299.250831894984003, 6744909.204679341055453 ], [ 269297.681071612809319, 6744908.316509120166302 ], [ 269296.87370287545491, 6744946.806644288823009 ], [ 269283.369848378526513, 6744946.342533096671104 ], [ 269283.97308355109999, 6744906.084943919442594 ], [ 269284.12716047995491, 6744904.068604717962444 ], [ 269289.101194923918229, 6744895.908491448499262 ], [ 269287.29071652010316, 6744894.815074543468654 ], [ 269285.15674697922077, 6744893.722951967269182 ], [ 269279.371228547242936, 6744903.345780601724982 ], [ 269279.387044031114783, 6744951.478453427553177 ], [ 269278.381299598666374, 6744959.672448556870222 ], [ 269277.240730048506521, 6744963.331348043866456 ], [ 269275.532911408459768, 6744968.190094267018139 ], [ 269277.192945071146823, 6744970.007398744113743 ], [ 269305.86972125939792, 6744947.576979106292129 ], [ 269307.101483146718238, 6744945.582368191331625 ], [ 269306.360802181530744, 6744916.10550579149276 ], [ 269305.856654767412692, 6744912.388227820396423 ], [ 269303.992070906038862, 6744909.416172235272825 ], [ 269300.406132023257669, 6744907.193360469304025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168801742, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268988.749732226016931, 6745157.971452524885535 ], [ 268992.78707453829702, 6745157.509943160228431 ], [ 268995.842208845948335, 6745155.549383074976504 ], [ 268997.124091121077072, 6745152.593037886545062 ], [ 268996.57253799616592, 6745149.569878703914583 ], [ 268993.936109053727705, 6745148.191454972140491 ], [ 268991.331274812051561, 6745148.381406689994037 ], [ 268987.975328387750778, 6745150.241369953379035 ], [ 268986.344454439531546, 6745153.468237582594156 ], [ 268986.072986351791769, 6745157.175229731015861 ], [ 268988.749732226016931, 6745157.971452524885535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168802660, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268789.825724431721028, 6744909.263860460370779 ], [ 268795.835078368254472, 6744899.212004522792995 ], [ 268787.257931663887575, 6744905.218153710477054 ], [ 268789.143236716685351, 6744907.954622701741755 ], [ 268780.822138277173508, 6744915.20087512396276 ], [ 268773.486084276635665, 6744922.642624767497182 ], [ 268768.751776324119419, 6744929.437843735329807 ], [ 268763.487602668057662, 6744939.4910644646734 ], [ 268762.182150292268489, 6744947.384015281684697 ], [ 268759.795770796656143, 6744946.856330694630742 ], [ 268758.927018429327291, 6744950.317286874167621 ], [ 268758.713480883685406, 6744954.610465786419809 ], [ 268761.694201791367959, 6744958.436661262065172 ], [ 268765.851651918783318, 6744960.65088253095746 ], [ 268767.719946034951136, 6744957.997029088437557 ], [ 268763.12088603770826, 6744955.402861460112035 ], [ 268789.825724431721028, 6744909.263860460370779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 300267052, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268728.317092189565301, 6744911.267363921739161 ], [ 268729.982515535433777, 6744910.989893117919564 ], [ 268731.449511703220196, 6744910.158782137557864 ], [ 268732.544897900603246, 6744908.875783591531217 ], [ 268733.137769164342899, 6744907.306402742862701 ], [ 268733.150426877778955, 6744905.623402326367795 ], [ 268732.590746249305084, 6744904.037859759293497 ], [ 268731.517383846454322, 6744902.734868246130645 ], [ 268730.063042703259271, 6744901.882978796958923 ], [ 268728.400488131912425, 6744901.580981786362827 ], [ 268726.735062139516231, 6744901.858453027904034 ], [ 268725.268064333882648, 6744902.689565155655146 ], [ 268724.172678270377219, 6744903.972565018571913 ], [ 268723.579808835987933, 6744905.541946745477617 ], [ 268723.567153813142795, 6744907.224947173148394 ], [ 268724.134322183905169, 6744908.809942721389234 ], [ 268725.207685399043839, 6744910.112932925112545 ], [ 268726.662025491765235, 6744910.964821211062372 ], [ 268728.317092189565301, 6744911.267363921739161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168802338, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268938.874186542583629, 6745172.414149284362793 ], [ 268948.537290091568138, 6745167.476369722746313 ], [ 268950.537224343977869, 6745167.453049192205071 ], [ 268951.982329287973698, 6745168.695545554161072 ], [ 268954.77789013722213, 6745166.787312236614525 ], [ 268956.131711302383337, 6745164.404967496171594 ], [ 268956.350372397049796, 6745158.529607874341309 ], [ 268932.130053984175902, 6745130.809579293243587 ], [ 268916.455227208964061, 6745113.060096523724496 ], [ 268899.164233266666997, 6745102.970020061358809 ], [ 268896.480224864149932, 6745105.995238365605474 ], [ 268897.799088673724327, 6745107.569978428073227 ], [ 268901.980570766609162, 6745108.568319613113999 ], [ 268904.44864946155576, 6745108.566537505947053 ], [ 268910.811039452208206, 6745112.847943322733045 ], [ 268914.76923035091022, 6745121.927628509700298 ], [ 268914.62189422181109, 6745124.756686107255518 ], [ 268912.822449130937457, 6745126.703680314123631 ], [ 268904.482512927323114, 6745127.601596738211811 ], [ 268909.435659976443276, 6745149.497195806354284 ], [ 268912.26808566506952, 6745147.062693620100617 ], [ 268910.53456593467854, 6745144.96121581364423 ], [ 268914.083183720998932, 6745142.028895278461277 ], [ 268921.953579369699582, 6745132.320417148061097 ], [ 268925.157770099525806, 6745134.983010230585933 ], [ 268927.629604105022736, 6745137.921809680759907 ], [ 268929.07987544691423, 6745140.266741783358157 ], [ 268930.263065095175989, 6745143.07673613820225 ], [ 268919.842141738801729, 6745147.73562744166702 ], [ 268915.959676248778123, 6745151.249272746033967 ], [ 268913.736640707473271, 6745148.626518709585071 ], [ 268912.221292825008277, 6745149.928976837545633 ], [ 268910.620972896635067, 6745151.304470428265631 ], [ 268924.406153384945355, 6745168.010961215943098 ], [ 268916.918527081899811, 6745173.681276708841324 ], [ 268914.836257867980748, 6745173.710613916628063 ], [ 268906.707563647534698, 6745179.360863332636654 ], [ 268906.050006665696856, 6745184.789239335805178 ], [ 268880.810048381797969, 6745181.572873050346971 ], [ 268878.242584569146857, 6745180.211748216301203 ], [ 268856.271750837157015, 6745152.283365709707141 ], [ 268859.976508776075207, 6745149.428737389855087 ], [ 268861.593041705782525, 6745140.332317999564111 ], [ 268861.15347568289144, 6745130.283062926493585 ], [ 268859.495834618632216, 6745125.302052286453545 ], [ 268854.083069075888488, 6745113.098025013692677 ], [ 268849.708621586323716, 6745114.096638433635235 ], [ 268847.657372742367443, 6745117.955750335939229 ], [ 268847.363378769310657, 6745118.567594032734632 ], [ 268849.324010601907503, 6745119.449413530528545 ], [ 268852.879027590854093, 6745122.175495271570981 ], [ 268856.31034957774682, 6745128.363871523179114 ], [ 268858.50404940295266, 6745136.257767082192004 ], [ 268858.406085394264665, 6745141.723307190462947 ], [ 268856.026351031498052, 6745149.950815059244633 ], [ 268852.953419905854389, 6745157.237468209117651 ], [ 268852.820497043954674, 6745162.326813783496618 ], [ 268853.554444237495773, 6745167.230388890020549 ], [ 268855.999672508449294, 6745171.764061665162444 ], [ 268859.918060253548902, 6745176.067739265039563 ], [ 268864.054843400546815, 6745178.929621870629489 ], [ 268877.371640107419807, 6745183.127009621821344 ], [ 268887.621354354196228, 6745185.097433956339955 ], [ 268908.869841368345078, 6745187.134530193172395 ], [ 268912.608776739099994, 6745186.605612851679325 ], [ 268916.610824650793802, 6745184.731898088939488 ], [ 268921.225537426013034, 6745181.766381336376071 ], [ 268925.060878886142746, 6745180.083064691163599 ], [ 268931.304947933473159, 6745178.925866310484707 ], [ 268937.47376844950486, 6745175.601946261711419 ], [ 268939.591752608539537, 6745174.411496776156127 ], [ 268938.874186542583629, 6745172.414149284362793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168802340, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268807.837265437759925, 6744879.087242973037064 ], [ 268810.504830597375985, 6744875.216584795154631 ], [ 268812.661136724462267, 6744871.661713591776788 ], [ 268815.170727401622571, 6744862.633822600357234 ], [ 268817.560576859570574, 6744863.105580262839794 ], [ 268821.74869927513646, 6744857.074325438588858 ], [ 268816.368395413446706, 6744855.428269876167178 ], [ 268815.054152619675733, 6744860.726320918649435 ], [ 268801.325876501447055, 6744867.197333510965109 ], [ 268807.837265437759925, 6744879.087242973037064 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168793803, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269457.198521535436157, 6745057.88334630895406 ], [ 269455.984378837049007, 6745077.165139791555703 ], [ 269466.279170222755056, 6745092.979670245200396 ], [ 269469.089569804491475, 6745093.855487030930817 ], [ 269491.647997200489044, 6745079.580156679265201 ], [ 269497.718022162443958, 6745073.345499138347805 ], [ 269502.436507353675552, 6745063.84516298212111 ], [ 269500.352931745990645, 6745061.067235763184726 ], [ 269496.55177750060102, 6745063.739087463356555 ], [ 269486.584455070958938, 6745049.527022732421756 ], [ 269482.492765281000175, 6745052.342579614371061 ], [ 269479.896676011790987, 6745054.20259974617511 ], [ 269482.544952259748243, 6745057.708013346418738 ], [ 269486.700777103193104, 6745054.843226717785001 ], [ 269493.24367061589146, 6745063.055461475625634 ], [ 269489.261767266725656, 6745066.241760533303022 ], [ 269489.219198409409728, 6745066.690440811216831 ], [ 269491.563841470167972, 6745066.8538475073874 ], [ 269492.435645220801234, 6745067.458717164583504 ], [ 269492.591206551005598, 6745068.561335621401668 ], [ 269492.639631800237112, 6745069.226177933625877 ], [ 269492.097307525749784, 6745070.045443726703525 ], [ 269491.712759386049584, 6745070.964612495154142 ], [ 269492.81719104788499, 6745071.663933089002967 ], [ 269493.705135747615714, 6745072.490417051129043 ], [ 269494.293670177168678, 6745073.338709260337055 ], [ 269494.200461129657924, 6745074.125262714922428 ], [ 269493.941405429737642, 6745074.70110612269491 ], [ 269493.134169785073027, 6745074.982692665420473 ], [ 269492.019453382352367, 6745075.175280488096178 ], [ 269491.351637627871241, 6745076.337871647439897 ], [ 269491.223931174958125, 6745077.683912490494549 ], [ 269490.272848035325296, 6745079.089926170185208 ], [ 269489.174274379620329, 6745079.504128638654947 ], [ 269487.661083834711462, 6745079.391556616872549 ], [ 269486.230816646304447, 6745079.384339897893369 ], [ 269485.896909568517003, 6745079.965635800734162 ], [ 269485.961477693344932, 6745080.852092180401087 ], [ 269485.328161123208702, 6745081.455196667462587 ], [ 269484.470287493255455, 6745082.074657681398094 ], [ 269483.905965439975262, 6745081.558787558227777 ], [ 269483.001878299983218, 6745080.510690953582525 ], [ 269482.22328247182304, 6745079.119268998503685 ], [ 269480.394539594708476, 6745078.806893495842814 ], [ 269479.105905868113041, 6745078.677967052906752 ], [ 269478.717713501828257, 6745077.480898546986282 ], [ 269478.936411920702085, 6745076.351019287481904 ], [ 269479.138968183891848, 6745074.999525968916714 ], [ 269478.283306233177427, 6745074.616272325627506 ], [ 269474.434981206199154, 6745077.570062956772745 ], [ 269468.074063730600756, 6745069.790171929635108 ], [ 269470.214713554712944, 6745068.186110245063901 ], [ 269458.217148262483533, 6745052.239399089477956 ], [ 269457.217638494505081, 6745052.980575965717435 ], [ 269457.198521535436157, 6745057.88334630895406 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 195367715, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269192.971001813362818, 6745306.867128184996545 ], [ 269191.313749875931535, 6745308.803672902286053 ], [ 269191.216217106499244, 6745312.007831966504455 ], [ 269193.552553693647496, 6745322.175033153034747 ], [ 269196.479100653144997, 6745323.922275356948376 ], [ 269214.145695284183603, 6745323.180413646623492 ], [ 269238.228663498011883, 6745330.77119189593941 ], [ 269240.049273311975412, 6745330.972686058841646 ], [ 269241.275953076896258, 6745329.735909178853035 ], [ 269242.838959800079465, 6745320.62124424893409 ], [ 269242.729856073739938, 6745316.852891949936748 ], [ 269241.234165751375258, 6745312.127341507002711 ], [ 269238.935615289083216, 6745309.911005015484989 ], [ 269213.553423425531946, 6745308.24089661706239 ], [ 269192.971001813362818, 6745306.867128184996545 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799848, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269184.384445796778891, 6744986.306746242567897 ], [ 269182.333398683578707, 6744986.868406499736011 ], [ 269186.437262239807751, 6744996.093578274361789 ], [ 269181.316835347039159, 6744998.215704585425556 ], [ 269183.242452821694314, 6745003.366624364629388 ], [ 269186.862243324227165, 6745002.233900397084653 ], [ 269188.690890412894078, 6745000.685894099995494 ], [ 269189.6277174949646, 6744998.155775457620621 ], [ 269189.110339380044024, 6744995.909882896579802 ], [ 269184.384445796778891, 6744986.306746242567897 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088282, "zindex": 0, "height_class": "high", "type": "wood", "id_veget": 10 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268394.255432634789031, 6745366.205032640136778 ], [ 268399.608693052025046, 6745366.832609411329031 ], [ 268401.498140555631835, 6745350.664668734185398 ], [ 268394.407438356021885, 6745347.204317489638925 ], [ 268394.255432634789031, 6745366.205032640136778 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 213162648, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 11 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269765.307485141558573, 6744492.611904012039304 ], [ 269761.880003965459764, 6744492.71662559453398 ], [ 269748.832046029157937, 6744489.945763091556728 ], [ 269737.660602182731964, 6744492.897675548680127 ], [ 269765.151655024907086, 6744512.012753532268107 ], [ 269765.307485141558573, 6744492.611904012039304 ] ] ], [ [ [ 269764.639003553020302, 6744575.837861784733832 ], [ 269758.268668301636353, 6744580.20115521736443 ], [ 269750.16147862985963, 6744588.132134774699807 ], [ 269752.174525456561241, 6744599.659729567356408 ], [ 269745.034387361607514, 6744639.278844501823187 ], [ 269763.904235176742077, 6744667.316524633206427 ], [ 269764.639003553020302, 6744575.837861784733832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799828, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269500.425707476038951, 6744895.105895970016718 ], [ 269504.3585736193927, 6744891.967745440080762 ], [ 269468.000428179104347, 6744852.241341440938413 ], [ 269438.7181358410744, 6744878.769771726801991 ], [ 269439.418168763222639, 6744879.598798010498285 ], [ 269460.36343231878709, 6744869.406583476811647 ], [ 269467.551073950191494, 6744878.719201507046819 ], [ 269471.216800433641765, 6744876.04606635030359 ], [ 269474.285930791229475, 6744880.679330489598215 ], [ 269479.045650011685211, 6744877.425239541567862 ], [ 269479.777011550206225, 6744878.374522591941059 ], [ 269481.47462354664458, 6744877.092367850244045 ], [ 269485.874464103428181, 6744877.885847562924027 ], [ 269495.686292057391256, 6744891.819616783410311 ], [ 269498.095728835498448, 6744892.045148426666856 ], [ 269500.425707476038951, 6744895.105895970016718 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168789765, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 13 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269273.459402658918407, 6744982.900542106479406 ], [ 269273.688396836107131, 6744984.287433444522321 ], [ 269289.759408320591319, 6744983.528471475467086 ], [ 269294.077199174789712, 6744982.266975108534098 ], [ 269299.362028211064171, 6744978.372927440330386 ], [ 269300.57101074262755, 6744979.577013767324388 ], [ 269304.797749429941177, 6744974.690680067054927 ], [ 269307.789760131388903, 6744968.969741813838482 ], [ 269308.933340286486782, 6744964.319213659502566 ], [ 269308.796567154524382, 6744960.686560495756567 ], [ 269307.544268406461924, 6744958.37167791556567 ], [ 269306.112488185113762, 6744957.518010056577623 ], [ 269304.004835823026951, 6744957.716147568076849 ], [ 269301.70103341556387, 6744958.630368026904762 ], [ 269279.760698452708311, 6744975.8133391039446 ], [ 269280.816312038572505, 6744977.184551213867962 ], [ 269273.459402658918407, 6744982.900542106479406 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168802663, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 14 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269126.703708864864893, 6745188.928786631673574 ], [ 269127.958264849265106, 6745194.473939818330109 ], [ 269133.422544316679705, 6745192.839104301296175 ], [ 269126.703708864864893, 6745188.928786631673574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088284, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 15 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268446.663957204087637, 6745295.968269175849855 ], [ 268450.422012740338687, 6745296.217431833967566 ], [ 268467.236444180714898, 6745298.331620291806757 ], [ 268470.928506211435888, 6745260.677418843843043 ], [ 268441.043746611161623, 6745256.922023850493133 ], [ 268440.467755838297307, 6745261.709569120779634 ], [ 268436.261080968484748, 6745294.889823270961642 ], [ 268446.663957204087637, 6745295.968269175849855 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168802337, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 16 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268882.965883700875565, 6744814.957263797521591 ], [ 268886.678225356095936, 6744809.417487360537052 ], [ 268884.99612757016439, 6744808.125450386665761 ], [ 268863.377747592574451, 6744801.035688847303391 ], [ 268862.375680901517626, 6744803.392389453016222 ], [ 268882.965883700875565, 6744814.957263797521591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168802664, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269214.626830064808019, 6745236.969853517599404 ], [ 269214.562058706709649, 6745241.552924883551896 ], [ 269215.872891122591682, 6745243.328825732693076 ], [ 269217.439195594633929, 6745243.860757251270115 ], [ 269220.178127224964555, 6745243.549732984043658 ], [ 269226.652443937433418, 6745240.493480456992984 ], [ 269228.397145255294163, 6745236.968760622665286 ], [ 269225.590253969712649, 6745237.173338674008846 ], [ 269225.5711465695058, 6745236.394963706843555 ], [ 269214.626830064808019, 6745236.969853517599404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168801748, "zindex": 0, "height_class": "high", "type": "wood", "id_veget": 18 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268953.171048216056079, 6745183.034595021978021 ], [ 268964.979771099402569, 6745175.634471753612161 ], [ 268965.649515634984709, 6745174.293438945896924 ], [ 268965.483775531989522, 6745172.84624261315912 ], [ 268964.522358768503182, 6745171.735562386922538 ], [ 268962.755355610803235, 6745170.928702617995441 ], [ 268950.512144515465479, 6745177.736701047979295 ], [ 268953.171048216056079, 6745183.034595021978021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799823, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 19 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269070.005461932974868, 6745058.908784467726946 ], [ 269065.542246704455465, 6745059.000262320041656 ], [ 269062.810520285973325, 6745060.959479830227792 ], [ 269060.764936235034838, 6745065.207977053709328 ], [ 269059.456209647469223, 6745070.583542777225375 ], [ 269059.070809421187732, 6745075.824951443821192 ], [ 269059.628550922381692, 6745080.997595233842731 ], [ 269064.624839995522052, 6745087.495277062989771 ], [ 269065.831511488941032, 6745086.293344070203602 ], [ 269068.03565039858222, 6745089.173738355748355 ], [ 269073.31582333490951, 6745085.012460365891457 ], [ 269075.645003416924737, 6745082.692711525596678 ], [ 269077.15773624915164, 6745078.360533198341727 ], [ 269077.576310201780871, 6745071.612869362346828 ], [ 269076.040718051546719, 6745067.580914365127683 ], [ 269070.005461932974868, 6745058.908784467726946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168802339, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 20 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268946.959415899007581, 6745127.578114797361195 ], [ 268944.627585026959423, 6745130.789278227835894 ], [ 268971.118596872664057, 6745153.119303015060723 ], [ 268975.219517254794482, 6745142.282210520468652 ], [ 268970.140284359455109, 6745145.069904671981931 ], [ 268956.790680782229174, 6745122.984557622112334 ], [ 268955.932261004578322, 6745121.532180024310946 ], [ 268950.759603054670151, 6745129.952184384688735 ], [ 268946.959415899007581, 6745127.578114797361195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088272, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268420.494847667287104, 6745343.094953232444823 ], [ 268421.556537017109804, 6745334.139125319197774 ], [ 268407.077069808496162, 6745332.055076358839869 ], [ 268409.363063201250043, 6745315.546276045031846 ], [ 268423.46346411871491, 6745318.00334214232862 ], [ 268423.182082274986897, 6745316.107869381085038 ], [ 268405.375853793113492, 6745303.193933888338506 ], [ 268403.183165825146716, 6745303.15353951882571 ], [ 268397.147249545960221, 6745305.922499003820121 ], [ 268395.56448200205341, 6745307.742448288947344 ], [ 268398.449991788016632, 6745330.356879880651832 ], [ 268399.244804429414216, 6745333.718711759895086 ], [ 268400.685949960665312, 6745336.554340010508895 ], [ 268403.301820768683683, 6745339.504698067903519 ], [ 268406.389645669609308, 6745341.395744942128658 ], [ 268420.494847667287104, 6745343.094953232444823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088269, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 22 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268508.496455660788342, 6745237.226033921353519 ], [ 268509.000946636951994, 6745230.015280070714653 ], [ 268504.982727590249851, 6745228.470594593323767 ], [ 268504.266297206981108, 6745223.398667674511671 ], [ 268498.492853407864459, 6745196.884537963196635 ], [ 268497.773324086738285, 6745194.553187566809356 ], [ 268496.219090270344168, 6745192.951154586859047 ], [ 268486.526221729058307, 6745186.963893706910312 ], [ 268482.359757728874683, 6745224.719533472321928 ], [ 268482.01817598787602, 6745230.347708973102272 ], [ 268489.332006214594003, 6745233.846277276985347 ], [ 268503.520128739939537, 6745236.987796447239816 ], [ 268508.496455660788342, 6745237.226033921353519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799830, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 23 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269081.65032853174489, 6745021.80056996550411 ], [ 269084.702772989869118, 6745021.143586649559438 ], [ 269091.1171066754614, 6745012.410409608855844 ], [ 269092.504849171673413, 6745011.317818079143763 ], [ 269094.195132901251782, 6745011.072054625488818 ], [ 269098.280513668432832, 6745012.300332864746451 ], [ 269099.728140017425176, 6745011.203377392143011 ], [ 269102.432442218530923, 6745010.415830806829035 ], [ 269110.238569466106128, 6745011.896424933336675 ], [ 269112.306513088289648, 6745011.979600054211915 ], [ 269113.848863569379319, 6745008.982021329924464 ], [ 269109.748196011816617, 6745010.22782438993454 ], [ 269106.445201159338467, 6745000.532149461098015 ], [ 269110.840495359560009, 6744998.785865935496986 ], [ 269109.983068459725473, 6744996.108046989887953 ], [ 269105.57704816875048, 6744994.713763234205544 ], [ 269103.806795602256898, 6744996.959330293349922 ], [ 269098.352441864379216, 6744993.881430465728045 ], [ 269081.65032853174489, 6745021.80056996550411 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088286, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 24 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268511.582578865112737, 6745208.17136453371495 ], [ 268513.222576283093076, 6745193.013137051835656 ], [ 268491.013215857848991, 6745178.025370004586875 ], [ 268488.160093047306873, 6745182.132542551495135 ], [ 268499.257099254289642, 6745189.521144846454263 ], [ 268505.517331331735477, 6745195.491675511933863 ], [ 268507.810930236300919, 6745198.666119025088847 ], [ 268509.351544950448442, 6745202.864682842046022 ], [ 268510.462457926711068, 6745207.774134846404195 ], [ 268511.582578865112737, 6745208.17136453371495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088268, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 25 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268444.510277852765284, 6745299.244625234976411 ], [ 268446.663957204087637, 6745295.968269175849855 ], [ 268436.261080968484748, 6745294.889823270961642 ], [ 268424.506258732581045, 6745292.918686592951417 ], [ 268417.051233147038147, 6745292.226561383344233 ], [ 268402.471728088334203, 6745290.628826680593193 ], [ 268399.967891904758289, 6745294.777383823879063 ], [ 268399.944214112707414, 6745298.265823535621166 ], [ 268406.093817971122917, 6745298.908438253216445 ], [ 268425.750229650060646, 6745315.519313435070217 ], [ 268438.543807242473122, 6745316.155820981599391 ], [ 268444.510277852765284, 6745299.244625234976411 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168802657, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268758.741492487257347, 6744964.689743582159281 ], [ 268758.781437280529644, 6744966.268649873323739 ], [ 268759.593394573195837, 6744967.702113464474678 ], [ 268761.275147662148811, 6744965.173263370059431 ], [ 268763.148261932830792, 6744965.782953874208033 ], [ 268769.842654894746374, 6744981.625165205448866 ], [ 268768.858450161467772, 6744984.225656385533512 ], [ 268766.256001249596011, 6744986.821677800267935 ], [ 268770.013177907385398, 6744995.927087142132223 ], [ 268774.422797306382563, 6744993.655942522920668 ], [ 268770.064162774942815, 6744984.661249750293791 ], [ 268776.007851018221118, 6744971.751280426979065 ], [ 268761.091544345777947, 6744963.894467521458864 ], [ 268759.761989236285444, 6744963.824377837590873 ], [ 268758.741492487257347, 6744964.689743582159281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088283, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 27 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268474.883281396294478, 6745185.496899361722171 ], [ 268484.967104891431518, 6745186.531881287693977 ], [ 268484.74075361789437, 6745185.389885229989886 ], [ 268468.938648651877884, 6745176.428816922940314 ], [ 268468.468872996571008, 6745178.445970930159092 ], [ 268472.028298276010901, 6745181.126955180428922 ], [ 268474.883281396294478, 6745185.496899361722171 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168793800, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 28 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269223.835078192467336, 6744887.754063718020916 ], [ 269217.330824248376302, 6744897.529596609063447 ], [ 269210.254555764433462, 6744905.341715444810688 ], [ 269198.648222304822411, 6744916.046106199733913 ], [ 269191.630784808425233, 6744921.670617119409144 ], [ 269215.37435884255683, 6744995.722245154902339 ], [ 269250.588258832925931, 6744985.347046603448689 ], [ 269252.974550850165542, 6744979.369452373124659 ], [ 269252.092126210336573, 6744975.211883502081037 ], [ 269250.93494020489743, 6744973.892636367119849 ], [ 269222.751531334710307, 6744985.225845134817064 ], [ 269214.893688752315938, 6744965.379800102673471 ], [ 269207.952251269598491, 6744959.346816750243306 ], [ 269211.0925633701263, 6744955.764943075366318 ], [ 269206.140121103846468, 6744943.259748550131917 ], [ 269233.466430029890034, 6744932.657311358489096 ], [ 269241.255067843128927, 6744951.038003228604794 ], [ 269248.542286022275221, 6744948.702326293103397 ], [ 269227.881862238107715, 6744901.049342469312251 ], [ 269226.887104282330256, 6744893.079110111109912 ], [ 269223.835078192467336, 6744887.754063718020916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168801745, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268956.190980122773908, 6745189.052511600777507 ], [ 268957.792467275401577, 6745192.233028926886618 ], [ 268958.856479575333651, 6745197.12367963604629 ], [ 268959.168406421900727, 6745201.400805191136897 ], [ 268958.450078310794197, 6745207.234629376791418 ], [ 268957.446582247561309, 6745210.293218730017543 ], [ 268974.762351830955595, 6745217.529905208386481 ], [ 268999.016417239385191, 6745233.027515634894371 ], [ 269016.058696948923171, 6745238.992069215513766 ], [ 269061.074497915862594, 6745255.638364879414439 ], [ 269072.09946032660082, 6745251.938232300803065 ], [ 269087.226237510738429, 6745252.996423318050802 ], [ 269092.909562701068353, 6745251.167342314496636 ], [ 269097.22268650715705, 6745248.09027704782784 ], [ 269098.624894881853834, 6745245.648740919306874 ], [ 269100.43332053150516, 6745246.508316389285028 ], [ 269102.911309106275439, 6745247.675543365068734 ], [ 269106.899326598562766, 6745241.480833682231605 ], [ 269108.098283246392384, 6745241.928122916258872 ], [ 269121.620398205064703, 6745248.327839581295848 ], [ 269124.480684941052459, 6745244.933407516218722 ], [ 269121.876313807675615, 6745243.374361483380198 ], [ 269123.201955498370808, 6745240.19206397049129 ], [ 269121.972990453941748, 6745237.06232763081789 ], [ 269119.536886528716423, 6745234.198827467858791 ], [ 269114.620324740011711, 6745232.09541754424572 ], [ 269110.971710451762192, 6745232.004948521964252 ], [ 269100.622661281086039, 6745229.907716738060117 ], [ 269095.729065090185031, 6745236.892523596063256 ], [ 269089.394231094047427, 6745241.242081875912845 ], [ 269055.882080199837219, 6745242.114787958562374 ], [ 269044.76096607738873, 6745239.026828252710402 ], [ 269029.648661722254474, 6745234.659236816689372 ], [ 268982.065882076334674, 6745182.197280032560229 ], [ 268973.127975038310979, 6745181.601451917551458 ], [ 268967.865898867836222, 6745182.397362967953086 ], [ 268956.190980122773908, 6745189.052511600777507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799838, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 30 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269008.947083983104676, 6745130.320658653974533 ], [ 269047.145649506419431, 6745104.131150209344923 ], [ 269047.580838396097533, 6745102.049741656519473 ], [ 269046.600727665354498, 6745099.960131290368736 ], [ 269036.752815974410623, 6745097.10238401312381 ], [ 269030.463673625898082, 6745091.656994424760342 ], [ 269008.947083983104676, 6745130.320658653974533 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799847, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 31 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269103.396858806489035, 6745024.470458743162453 ], [ 269094.139919877925422, 6745018.985153761692345 ], [ 269096.576829986646771, 6745014.529910240322351 ], [ 269094.63683383812895, 6745013.724482177756727 ], [ 269092.843157053750474, 6745014.100318291224539 ], [ 269083.389562696393114, 6745029.761077429167926 ], [ 269099.075205102097243, 6745039.200085865333676 ], [ 269101.462942414393183, 6745034.79298654012382 ], [ 269098.216249723860528, 6745032.57898183260113 ], [ 269103.396858806489035, 6745024.470458743162453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088274, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268559.930617298290599, 6745254.458323470316827 ], [ 268556.753127162694, 6745221.237975339405239 ], [ 268530.183491788688116, 6745203.727759417146444 ], [ 268529.45791120553622, 6745208.838119067251682 ], [ 268535.2487083565793, 6745209.306553011760116 ], [ 268534.890314698335715, 6745213.777427394874394 ], [ 268539.227907723630778, 6745217.326230846345425 ], [ 268538.759082285978366, 6745228.221592123620212 ], [ 268535.069155432400294, 6745228.390703295357525 ], [ 268531.623387974803336, 6745229.121253408491611 ], [ 268528.833448066434357, 6745230.795355672948062 ], [ 268527.540519560861867, 6745232.360173616558313 ], [ 268526.316113237582613, 6745236.203613738529384 ], [ 268525.760508925770409, 6745239.931392011232674 ], [ 268525.916168180119712, 6745244.331322099082172 ], [ 268526.625761064700782, 6745247.042148175649345 ], [ 268528.710786312469281, 6745249.318375239148736 ], [ 268531.82391136221122, 6745250.628379096277058 ], [ 268559.930617298290599, 6745254.458323470316827 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168793799, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 33 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269532.459457033372018, 6745011.954126965254545 ], [ 269534.196168951515574, 6745013.27577559556812 ], [ 269536.614934081502724, 6745014.146729993633926 ], [ 269539.333276575198397, 6745014.171545881778002 ], [ 269542.355315277236514, 6745012.993460387922823 ], [ 269544.634720005036797, 6745010.710954803973436 ], [ 269545.625035316566937, 6745008.500052286311984 ], [ 269545.893753850250505, 6745006.196888751350343 ], [ 269545.539130608376581, 6745004.117353306151927 ], [ 269544.530054628499784, 6745002.040922148153186 ], [ 269543.339772339968476, 6745000.679475230164826 ], [ 269540.695579103427008, 6744999.089729653671384 ], [ 269536.898615721613169, 6744998.720166995190084 ], [ 269533.821751848328859, 6744999.86882917303592 ], [ 269531.565831520711072, 6745002.060512547381222 ], [ 269530.583449698926415, 6745004.070329148322344 ], [ 269530.214059169287793, 6745006.024362277239561 ], [ 269530.379940445069224, 6745008.095364323817194 ], [ 269531.070017131278291, 6745010.027933890931308 ], [ 269532.459457033372018, 6745011.954126965254545 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168801747, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268950.512144515465479, 6745177.736701047979295 ], [ 268943.768887194397394, 6745182.160760967992246 ], [ 268948.538291756587569, 6745186.268751556053758 ], [ 268951.655742595146876, 6745183.924876173958182 ], [ 268953.171048216056079, 6745183.034595021978021 ], [ 268950.512144515465479, 6745177.736701047979295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799840, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 35 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269055.876122538524214, 6745046.148190797306597 ], [ 269043.643744790519122, 6745067.971290608868003 ], [ 269046.000435120658949, 6745069.125063877552748 ], [ 269046.655622093123384, 6745067.996756041422486 ], [ 269056.981951547961216, 6745059.457300705835223 ], [ 269060.0106462026597, 6745055.894612617790699 ], [ 269061.334844191675074, 6745051.453641680069268 ], [ 269060.547305753454566, 6745049.528221686370671 ], [ 269055.876122538524214, 6745046.148190797306597 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799821, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 36 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269324.199792785104364, 6744818.772025358863175 ], [ 269344.161852491146419, 6744806.445424657315016 ], [ 269354.09222596231848, 6744826.441373519599438 ], [ 269353.292207216727547, 6744822.277792697772384 ], [ 269354.341052763513289, 6744818.391669357195497 ], [ 269356.807463955774438, 6744814.647335436195135 ], [ 269370.231594481156208, 6744805.336968977935612 ], [ 269352.469824602711014, 6744783.928737390786409 ], [ 269342.992023451253772, 6744788.117073827423155 ], [ 269340.614744857361075, 6744786.474543089047074 ], [ 269334.926823634596076, 6744804.979504423215985 ], [ 269323.118798883282579, 6744811.888603373430669 ], [ 269324.199792785104364, 6744818.772025358863175 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799845, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 37 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269037.949632488831412, 6745082.968142507597804 ], [ 269043.447434085072018, 6745080.862925368361175 ], [ 269044.776481988083106, 6745078.036830136552453 ], [ 269044.543538193625864, 6745075.358043411746621 ], [ 269045.637693720520474, 6745072.716168570332229 ], [ 269044.273429868509993, 6745072.169547161087394 ], [ 269045.224248510145117, 6745070.451566609553993 ], [ 269042.845696730830241, 6745069.410783162340522 ], [ 269036.201246149255894, 6745082.003948966041207 ], [ 269037.949632488831412, 6745082.968142507597804 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168793802, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269510.364873449900188, 6745062.978075347840786 ], [ 269498.133588578959461, 6745079.464229769073427 ], [ 269499.66185980575392, 6745082.160067930817604 ], [ 269519.624972996360157, 6745069.444042860530317 ], [ 269519.232672796060797, 6745068.603735095821321 ], [ 269510.364873449900188, 6745062.978075347840786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168789767, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 39 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269184.281702878884971, 6745241.855166165158153 ], [ 269192.935318636533339, 6745250.837822330184281 ], [ 269194.330707812972832, 6745251.192833609879017 ], [ 269196.426139405637514, 6745250.828446868807077 ], [ 269202.927227509673685, 6745244.216702092438936 ], [ 269203.515918151591904, 6745242.692234540358186 ], [ 269203.462568241055124, 6745240.824680338613689 ], [ 269203.015798884793185, 6745238.618196984753013 ], [ 269201.759996045788284, 6745236.771450411528349 ], [ 269175.851436175173149, 6745216.01325171161443 ], [ 269162.998252213466913, 6745202.479900467209518 ], [ 269141.398480944626499, 6745190.25254977401346 ], [ 269140.699783327523619, 6745191.506554471328855 ], [ 269153.74501415429404, 6745206.641096410341561 ], [ 269155.71418411063496, 6745205.060550442896783 ], [ 269158.127177676535212, 6745208.226516922935843 ], [ 269158.693674895039294, 6745207.739640079438686 ], [ 269173.938723392901011, 6745226.523589183576405 ], [ 269174.401502531545702, 6745227.091391154564917 ], [ 269173.143040049937554, 6745228.408474163152277 ], [ 269184.281702878884971, 6745241.855166165158153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088277, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 40 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268518.750448413193226, 6745387.987628732807934 ], [ 268517.322975574526936, 6745382.555441481992602 ], [ 268497.257335887930822, 6745380.94584789685905 ], [ 268488.34149038355099, 6745379.001258588396013 ], [ 268478.295836415840313, 6745376.52649193815887 ], [ 268473.802714386198204, 6745375.072204883210361 ], [ 268470.662937026587315, 6745373.396571900695562 ], [ 268467.031394692428876, 6745370.654021405614913 ], [ 268463.669721038546413, 6745366.86692098993808 ], [ 268461.048644624766894, 6745362.814093942753971 ], [ 268456.535108109761495, 6745358.297906650230289 ], [ 268455.265303095802665, 6745358.735952014103532 ], [ 268453.991071359545458, 6745356.846134603954852 ], [ 268449.905160990427248, 6745353.858278735540807 ], [ 268410.562154369137716, 6745349.278696144931018 ], [ 268409.326920307823457, 6745357.712497738189995 ], [ 268410.79395769094117, 6745358.017536079511046 ], [ 268411.965455330733676, 6745354.378439755178988 ], [ 268455.077359092596453, 6745359.975036185234785 ], [ 268454.327190005220473, 6745366.190035932697356 ], [ 268453.147412739810534, 6745366.109084581024945 ], [ 268452.669149700319394, 6745370.27681525144726 ], [ 268410.16864495788468, 6745365.838676875457168 ], [ 268403.413237963279244, 6745365.864122118800879 ], [ 268401.636886286141817, 6745372.967264742590487 ], [ 268435.228749328060076, 6745377.20922710839659 ], [ 268452.864272054925095, 6745379.853805398568511 ], [ 268475.317994381533936, 6745382.737042151391506 ], [ 268478.916785960202105, 6745383.176081675104797 ], [ 268518.750448413193226, 6745387.987628732807934 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799839, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 41 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269217.494949705898762, 6745003.755239749327302 ], [ 269221.39119383553043, 6745017.050350452773273 ], [ 269225.636585613538045, 6745027.702228755690157 ], [ 269237.293690844613593, 6745044.130048947408795 ], [ 269241.511656735441647, 6745062.04690517205745 ], [ 269252.888925016624853, 6745051.403826428577304 ], [ 269221.560635030677076, 6745002.545481172390282 ], [ 269217.494949705898762, 6745003.755239749327302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088285, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 42 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268449.375048688205425, 6745158.206903641112149 ], [ 268454.753891279513482, 6745153.959857424721122 ], [ 268441.084313695901074, 6745145.556088912300766 ], [ 268439.223547028552275, 6745145.424603777937591 ], [ 268437.788009317417163, 6745145.963867503218353 ], [ 268435.858426014194265, 6745148.600038029253483 ], [ 268435.908379695902113, 6745149.799471315927804 ], [ 268436.501513250288554, 6745150.914684732444584 ], [ 268449.375048688205425, 6745158.206903641112149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 195367719, "zindex": 0, "height_class": "high", "type": "wood", "id_veget": 43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268926.05900356953498, 6744781.871221203356981 ], [ 268929.220394564908929, 6744793.025281772948802 ], [ 268911.915131753368769, 6744814.015510743483901 ], [ 268930.325319681898691, 6744825.305092158727348 ], [ 268932.74064819549676, 6744823.959291608072817 ], [ 268936.07568183564581, 6744822.635535906068981 ], [ 268939.165392620197963, 6744822.488186157308519 ], [ 268942.910683883819729, 6744823.384704144671559 ], [ 268947.185309248568956, 6744829.166302336379886 ], [ 268947.439900993485935, 6744847.516852349974215 ], [ 268952.753970702877268, 6744870.544650639407337 ], [ 268973.012377734412439, 6744902.641918969340622 ], [ 268974.290652815834619, 6744901.802353562787175 ], [ 268970.599769923137501, 6744892.157305086962879 ], [ 268972.519922227656934, 6744884.330992749892175 ], [ 268972.751298391085584, 6744875.636411955580115 ], [ 268970.486993683269247, 6744865.018449229188263 ], [ 268963.728818687377498, 6744853.970707596279681 ], [ 268948.189438991539646, 6744828.591795056127012 ], [ 268945.361014471098315, 6744823.963498277589679 ], [ 268946.691842639353126, 6744804.650725633837283 ], [ 268944.915458162606228, 6744778.847406692802906 ], [ 268926.05900356953498, 6744781.871221203356981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799819, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 44 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269434.14358612743672, 6744882.912706480361521 ], [ 269411.062132259423379, 6744854.896236532367766 ], [ 269397.988352134241723, 6744861.474097178317606 ], [ 269404.614093301293906, 6744874.124870357103646 ], [ 269400.183551687572617, 6744876.319070119410753 ], [ 269404.075771102216095, 6744882.953145375475287 ], [ 269406.036895283672493, 6744883.222439202480018 ], [ 269412.536147119302768, 6744880.398542790673673 ], [ 269419.198389379598666, 6744879.088890550658107 ], [ 269424.465536918491125, 6744878.772032486274838 ], [ 269429.421879677567631, 6744879.870255820453167 ], [ 269434.14358612743672, 6744882.912706480361521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168801743, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 45 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269110.95651531603653, 6745265.135087197646499 ], [ 269107.211707563663367, 6745272.704509004019201 ], [ 269121.332496442075353, 6745277.924340479075909 ], [ 269149.086871259030886, 6745285.191424898803234 ], [ 269153.166829952970147, 6745283.044840300455689 ], [ 269145.259287884575315, 6745281.716420662589371 ], [ 269121.928249094286002, 6745264.936747932806611 ], [ 269133.393296521448065, 6745239.816710744984448 ], [ 269131.604952007706743, 6745236.96168215200305 ], [ 269130.288235944113694, 6745238.305300941690803 ], [ 269114.17077634925954, 6745266.905874659307301 ], [ 269110.95651531603653, 6745265.135087197646499 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088276, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 46 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268511.300610108010005, 6745377.057685173116624 ], [ 268515.339381778612733, 6745377.854512591846287 ], [ 268519.301098012772854, 6745377.69895913824439 ], [ 268523.223176296800375, 6745377.000459788367152 ], [ 268527.131121636542957, 6745375.077634607441723 ], [ 268530.362818258756306, 6745372.446685465052724 ], [ 268532.799317538447212, 6745369.127434589900076 ], [ 268534.040899125335272, 6745364.592079935595393 ], [ 268536.944416401674971, 6745347.982570699416101 ], [ 268541.310009215259925, 6745312.952774522826076 ], [ 268547.324994427675847, 6745263.922608473338187 ], [ 268547.016355585015845, 6745261.550118751823902 ], [ 268545.824051588308066, 6745260.266982173547149 ], [ 268543.172989286074881, 6745258.689308594912291 ], [ 268539.048576410044916, 6745296.096503521315753 ], [ 268534.77993286511628, 6745295.862279745750129 ], [ 268530.374265442718752, 6745332.198342122137547 ], [ 268526.424876461736858, 6745331.595490788109601 ], [ 268521.612503388721962, 6745368.028101607225835 ], [ 268512.272626570775174, 6745366.871927726082504 ], [ 268511.300610108010005, 6745377.057685173116624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168801744, "zindex": 0, "height_class": "high", "type": "wood", "id_veget": 47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268990.852825597219635, 6745169.681723254732788 ], [ 268989.893619664129801, 6745172.625679420307279 ], [ 269013.305459971714299, 6745201.0286884624511 ], [ 269017.951252498256508, 6745197.147538659162819 ], [ 269002.244433587242384, 6745179.778931473381817 ], [ 269013.522467802802566, 6745169.744113530963659 ], [ 269013.59471346315695, 6745163.923994624987245 ], [ 269008.559455316048115, 6745158.543151250109076 ], [ 269006.668547285662498, 6745162.435069144703448 ], [ 269010.313834936008789, 6745165.67821559868753 ], [ 269004.73118092661025, 6745171.365457803010941 ], [ 269000.463675733422861, 6745173.314165876246989 ], [ 268996.092871577013284, 6745174.568617538549006 ], [ 268995.445293269585818, 6745168.990360975265503 ], [ 268990.852825597219635, 6745169.681723254732788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168801741, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 48 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268957.446582247561309, 6745210.293218730017543 ], [ 268958.450078310794197, 6745207.234629376791418 ], [ 268959.168406421900727, 6745201.400805191136897 ], [ 268958.856479575333651, 6745197.12367963604629 ], [ 268957.792467275401577, 6745192.233028926886618 ], [ 268956.190980122773908, 6745189.052511600777507 ], [ 268952.571524131519254, 6745192.457836480811238 ], [ 268951.735175247944426, 6745197.086055595427752 ], [ 268952.46008211071603, 6745204.652654645964503 ], [ 268954.168703401286621, 6745208.683104794472456 ], [ 268957.446582247561309, 6745210.293218730017543 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799835, "zindex": 0, "height_class": "high", "type": "wood", "id_veget": 49 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269396.45428749040002, 6744887.106430562213063 ], [ 269396.94055343902437, 6744885.310965709388256 ], [ 269396.127280694025103, 6744883.030920189805329 ], [ 269393.544790072308388, 6744879.810373644344509 ], [ 269385.49648769677151, 6744872.320578414015472 ], [ 269378.427822048251983, 6744872.389975658617914 ], [ 269378.315533348999452, 6744866.717014488764107 ], [ 269375.775663754960988, 6744862.635628644376993 ], [ 269371.898592712066602, 6744855.900210427120328 ], [ 269370.025011717632879, 6744857.039264926686883 ], [ 269359.934898573847022, 6744839.394225342199206 ], [ 269351.851551566564012, 6744843.302727502770722 ], [ 269350.574325454595964, 6744845.91331016458571 ], [ 269352.148644753324334, 6744847.380416283383965 ], [ 269356.749703919049352, 6744852.381011385470629 ], [ 269359.495893084385898, 6744859.087418710812926 ], [ 269359.486017991090193, 6744867.008319796063006 ], [ 269357.205461827921681, 6744873.613104339689016 ], [ 269351.251877925707959, 6744879.794852686114609 ], [ 269352.461531484266743, 6744881.834363043308258 ], [ 269356.484239722485654, 6744879.413631510920823 ], [ 269368.752961727441289, 6744899.384047730825841 ], [ 269373.83581376937218, 6744897.777249259874225 ], [ 269382.697436664602719, 6744893.500165457837284 ], [ 269380.366438031196594, 6744888.980260264128447 ], [ 269386.102960606105626, 6744886.223040900193155 ], [ 269388.253496677847579, 6744890.744955724105239 ], [ 269396.45428749040002, 6744887.106430562213063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168802654, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 50 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269156.999424606154207, 6745192.446014566347003 ], [ 269160.153247459733393, 6745186.36785592418164 ], [ 269158.767481932358351, 6745185.009591209702194 ], [ 269155.001238645869307, 6745180.828315883874893 ], [ 269155.335107783204876, 6745180.247001121751964 ], [ 269145.531220012868289, 6745168.596776199527085 ], [ 269141.599371313932352, 6745166.789163803681731 ], [ 269140.160558385134209, 6745168.832330946810544 ], [ 269137.223545867367648, 6745176.955511045642197 ], [ 269138.439479747554287, 6745180.732293363660574 ], [ 269156.999424606154207, 6745192.446014566347003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799829, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 51 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269130.339084528794046, 6744963.288599512539804 ], [ 269132.726839210721664, 6744974.365467397496104 ], [ 269113.325179474719334, 6744978.676099916920066 ], [ 269110.789959302113857, 6744982.815454060211778 ], [ 269136.343184139521327, 6744976.385452289134264 ], [ 269135.559813240135554, 6744973.691092632710934 ], [ 269144.937598865362816, 6744971.336563319899142 ], [ 269164.267320062033832, 6744971.097209141589701 ], [ 269168.911415695270989, 6744972.763810737989843 ], [ 269171.432357867597602, 6744968.324758286587894 ], [ 269174.844163064612076, 6744970.326256260275841 ], [ 269171.673260301991832, 6744965.745107542723417 ], [ 269162.667854769621044, 6744959.684384867548943 ], [ 269152.409540400432888, 6744958.115117374807596 ], [ 269141.415157653158531, 6744960.075056680478156 ], [ 269130.339084528794046, 6744963.288599512539804 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088275, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268421.214143551012967, 6745283.902033089660108 ], [ 268420.09038649109425, 6745283.661041429266334 ], [ 268417.479940867633559, 6745285.010183504782617 ], [ 268416.407566700421739, 6745284.854557656683028 ], [ 268419.545950995001476, 6745260.953638697043061 ], [ 268424.669967744091991, 6745258.061919719912112 ], [ 268425.342852412664797, 6745252.643476847559214 ], [ 268424.033985453366768, 6745252.649933349341154 ], [ 268419.974266461795196, 6745253.525638029910624 ], [ 268416.742544638633262, 6745255.744479279965162 ], [ 268414.473556763783563, 6745258.472283313050866 ], [ 268400.059569872450083, 6745281.503365804441273 ], [ 268399.675201859849039, 6745282.83477318752557 ], [ 268400.040546780044679, 6745283.922058953903615 ], [ 268401.49728208797751, 6745285.219277329742908 ], [ 268403.139929678989574, 6745285.867959899827838 ], [ 268417.10709527466679, 6745287.220780309289694 ], [ 268418.970860274625011, 6745286.260351112112403 ], [ 268421.214143551012967, 6745283.902033089660108 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 512101293, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 53 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268717.006008465250488, 6745097.823070109821856 ], [ 268711.472177894611377, 6745095.308295237831771 ], [ 268706.526614573085681, 6745096.627178865484893 ], [ 268702.404931902361568, 6745099.646003605797887 ], [ 268701.529666361166164, 6745101.469929427839816 ], [ 268702.260279822279699, 6745103.232370067387819 ], [ 268706.365706273063552, 6745104.837664260528982 ], [ 268716.809284031915013, 6745099.252153552137315 ], [ 268717.006008465250488, 6745097.823070109821856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088279, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 54 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268464.461199933895841, 6745357.919693594798446 ], [ 268466.734004205325618, 6745339.373331613838673 ], [ 268458.947886732581537, 6745338.783310038037598 ], [ 268457.639553198183421, 6745347.144455930218101 ], [ 268459.771076836215798, 6745351.912545070052147 ], [ 268464.461199933895841, 6745357.919693594798446 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799837, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 55 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269018.138466668373439, 6745140.789990511722863 ], [ 269027.051465717202518, 6745151.157098662108183 ], [ 269052.670513760705944, 6745180.936568378470838 ], [ 269092.319496847572736, 6745227.282598216086626 ], [ 269099.710915381438099, 6745221.53040680848062 ], [ 269024.18924017297104, 6745135.536492236889899 ], [ 269018.138466668373439, 6745140.789990511722863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168756815, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 56 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269249.74720664677443, 6744942.209293897263706 ], [ 269251.520861374330707, 6744947.237631645053625 ], [ 269253.25005473732017, 6744946.699452295899391 ], [ 269259.047552639036439, 6744960.992254859767854 ], [ 269255.792949844151735, 6744973.538601626642048 ], [ 269257.848116484936327, 6744979.125680492259562 ], [ 269263.390866209752858, 6744977.841728980652988 ], [ 269266.755772830802016, 6744971.558895604684949 ], [ 269271.396530384547077, 6744959.446239567361772 ], [ 269272.301142234064173, 6744954.924512247554958 ], [ 269272.281225608312525, 6744946.493352285586298 ], [ 269266.560166990908328, 6744946.776591408066452 ], [ 269250.271720442280639, 6744940.010003101080656 ], [ 269249.74720664677443, 6744942.209293897263706 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088281, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 57 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268489.378196805657353, 6745262.616583955474198 ], [ 268484.919524057768285, 6745300.181921440176666 ], [ 268500.046180602163076, 6745301.751048500649631 ], [ 268503.729487801727373, 6745286.443629262968898 ], [ 268508.177577973925509, 6745267.59367538522929 ], [ 268508.004462501907256, 6745265.222432137466967 ], [ 268489.378196805657353, 6745262.616583955474198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088278, "zindex": 0, "height_class": "high", "type": "wood", "id_veget": 58 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268419.701718169206288, 6745160.652061904780567 ], [ 268416.582416372431908, 6745187.392178642563522 ], [ 268401.216725363803562, 6745185.439670794643462 ], [ 268395.839207367447671, 6745228.140731115825474 ], [ 268395.327137290267274, 6745232.241950709372759 ], [ 268395.087193171493709, 6745262.234965556301177 ], [ 268398.19282433274202, 6745264.183854004368186 ], [ 268402.442315090738703, 6745256.632766237482429 ], [ 268407.728961030486971, 6745256.792559499852359 ], [ 268410.030312043731101, 6745254.507975364103913 ], [ 268415.42116920807166, 6745250.42710040230304 ], [ 268423.39273874979699, 6745247.784174113534391 ], [ 268428.422097953443881, 6745244.420366770587862 ], [ 268512.982122021727264, 6745259.088704103603959 ], [ 268518.046815290173981, 6745251.467056256718934 ], [ 268511.345848335535266, 6745245.127664822153747 ], [ 268504.196707797062118, 6745242.029214102774858 ], [ 268460.654653722362127, 6745230.036042959429324 ], [ 268427.684926278481726, 6745221.236899486742914 ], [ 268425.06820886960486, 6745219.099785537458956 ], [ 268423.292241144634318, 6745217.346866777166724 ], [ 268421.806375665590167, 6745214.826409110799432 ], [ 268421.169166325766128, 6745210.840387674979866 ], [ 268421.42975310102338, 6745207.813656155019999 ], [ 268422.317273209046107, 6745203.994790035299957 ], [ 268425.714386758452747, 6745193.219773177057505 ], [ 268424.523970239271875, 6745180.730042492970824 ], [ 268422.642549100157339, 6745162.487017193809152 ], [ 268419.701718169206288, 6745160.652061904780567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168756817, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 59 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269312.447664987528697, 6744882.733603432774544 ], [ 269314.505244924512226, 6744884.533090503886342 ], [ 269322.750092627189588, 6744885.837189863435924 ], [ 269328.764826923958026, 6744885.14272874686867 ], [ 269332.850209421594627, 6744884.098711810074747 ], [ 269348.841371355927549, 6744875.11365850828588 ], [ 269352.15420054103015, 6744871.419045345857739 ], [ 269354.00596437684726, 6744867.708350297063589 ], [ 269354.549819511827081, 6744863.914715623483062 ], [ 269354.290670987451449, 6744860.357818281278014 ], [ 269352.542924225563183, 6744855.684032905846834 ], [ 269350.214835960592609, 6744852.857129245065153 ], [ 269347.341037998907268, 6744850.493287145160139 ], [ 269343.294508699444123, 6744848.972376890480518 ], [ 269340.007912083412521, 6744848.2761206086725 ], [ 269336.105894527456257, 6744848.738656025379896 ], [ 269297.597258012741804, 6744868.955603114329278 ], [ 269293.606524986505974, 6744873.880434273742139 ], [ 269294.939331961679272, 6744875.131194963119924 ], [ 269292.915573950333055, 6744878.030120911076665 ], [ 269295.92154885653872, 6744880.038981482386589 ], [ 269297.94044590939302, 6744880.894424014724791 ], [ 269302.532172979961615, 6744872.65078860335052 ], [ 269331.465000347001478, 6744856.618238700553775 ], [ 269338.001714776328299, 6744867.838438938371837 ], [ 269312.447664987528697, 6744882.733603432774544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168801746, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 60 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269053.718631212366745, 6745235.767029298469424 ], [ 269062.414068376121577, 6745236.547744841314852 ], [ 269080.292842886468861, 6745236.647778052836657 ], [ 269067.027288320823573, 6745222.208963288925588 ], [ 269054.526489381387364, 6745233.22400376573205 ], [ 269053.718631212366745, 6745235.767029298469424 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088271, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268427.629964809573721, 6745214.30091576743871 ], [ 268430.08423156675417, 6745216.995735258795321 ], [ 268433.358828747877851, 6745218.661507688462734 ], [ 268451.822383657970931, 6745223.674093871377409 ], [ 268461.299441139213741, 6745225.778181402944028 ], [ 268463.051655138086062, 6745218.754810521379113 ], [ 268465.518141099310014, 6745215.021180742420256 ], [ 268455.880067362100817, 6745169.384002627804875 ], [ 268453.401105731318239, 6745167.381633104756474 ], [ 268449.492481840017717, 6745165.483650955371559 ], [ 268445.011444414616562, 6745202.638476903550327 ], [ 268449.886443299881648, 6745203.652701052837074 ], [ 268447.716002271627076, 6745217.212162376381457 ], [ 268427.629964809573721, 6745214.30091576743871 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799818, "zindex": 0, "height_class": "high", "type": "wood", "id_veget": 62 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269048.781520952587016, 6745074.035341458395123 ], [ 269048.058705145784188, 6745075.680999432690442 ], [ 269048.737674593750853, 6745077.046217038296163 ], [ 269050.384712225117255, 6745077.962105998769403 ], [ 269052.020369436242618, 6745077.586637325584888 ], [ 269053.042761575547047, 6745076.231044662185013 ], [ 269054.282954220718239, 6745068.677122073248029 ], [ 269053.925588881771546, 6745067.800874575041234 ], [ 269053.108936360047664, 6745067.437115034088492 ], [ 269051.375919520622119, 6745068.231845192611217 ], [ 269050.741951477888506, 6745069.5479776840657 ], [ 269048.781520952587016, 6745074.035341458395123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168799814, "zindex": 0, "height_class": "high", "type": "wood", "id_veget": 63 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269461.171473722788505, 6744883.082708508707583 ], [ 269458.573177494225092, 6744879.128081544302404 ], [ 269443.811647721973713, 6744886.296637847088277 ], [ 269442.418508539674804, 6744889.795662110671401 ], [ 269468.714337010751478, 6744928.472521916031837 ], [ 269472.534472526807804, 6744928.539590400643647 ], [ 269478.437886065104976, 6744924.767750197090209 ], [ 269479.536254313425161, 6744920.321069937199354 ], [ 269476.394393062859308, 6744922.644139342941344 ], [ 269452.73086241731653, 6744889.11132031865418 ], [ 269461.171473722788505, 6744883.082708508707583 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 512101294, "zindex": 0, "height_class": "high", "type": "wood", "id_veget": 64 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268743.592635801644064, 6745125.057731278240681 ], [ 268758.997878674475942, 6745131.16330923512578 ], [ 268761.589520677283872, 6745131.72057087905705 ], [ 268763.41170818352839, 6745130.807849918492138 ], [ 268763.377920222061221, 6745127.869462894275784 ], [ 268760.76635749801062, 6745125.698412986472249 ], [ 268743.683274245646317, 6745118.668130541220307 ], [ 268742.965268854924943, 6745119.244080414995551 ], [ 268743.592635801644064, 6745125.057731278240681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168802662, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 65 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269138.52752943552332, 6745025.964240901172161 ], [ 269147.82625404879218, 6745031.713914446532726 ], [ 269154.172277737350669, 6745021.526511337608099 ], [ 269138.52752943552332, 6745025.964240901172161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168802334, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 66 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268831.782814243400935, 6744862.580521395429969 ], [ 268829.227476507832762, 6744864.482417999766767 ], [ 268828.518777963006869, 6744866.940261809155345 ], [ 268829.237844253133517, 6744868.647859614342451 ], [ 268831.26206048426684, 6744865.035794411785901 ], [ 268858.459323907969519, 6744879.282253446057439 ], [ 268855.633691131894011, 6744883.565442281775177 ], [ 268854.596716685919091, 6744885.133783685974777 ], [ 268906.243573244428262, 6744914.651740712113678 ], [ 268914.235807436518371, 6744901.759625076316297 ], [ 268858.241716738790274, 6744871.656385764479637 ], [ 268838.233009654853959, 6744863.212822997011244 ], [ 268831.782814243400935, 6744862.580521395429969 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168802655, "zindex": 0, "height_class": "high", "type": "wood", "id_veget": 67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268820.495191787893418, 6744888.479092609137297 ], [ 268811.297291284776293, 6744889.896425754763186 ], [ 268809.135182470083237, 6744890.276943962089717 ], [ 268805.253284540493041, 6744892.66551112011075 ], [ 268807.773874629929196, 6744897.405321780592203 ], [ 268812.257227776804939, 6744900.063663626089692 ], [ 268774.301459025708027, 6744965.3813990149647 ], [ 268779.310585828498006, 6744967.923378283157945 ], [ 268818.11219717253698, 6744898.210680260322988 ], [ 268823.156980033905711, 6744895.670453503727913 ], [ 268823.48879612586461, 6744892.894774520769715 ], [ 268822.563614858721849, 6744890.734351118095219 ], [ 268820.495191787893418, 6744888.479092609137297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168802335, "zindex": 0, "height_class": "high", "type": "wood", "id_veget": 68 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268826.68936185433995, 6745100.993633104488254 ], [ 268824.50972523225937, 6745101.442267696373165 ], [ 268821.244683367200196, 6745100.009518123231828 ], [ 268812.472661500796676, 6745094.778893509879708 ], [ 268808.921777272364125, 6745090.459571968764067 ], [ 268807.357257687952369, 6745086.652575425803661 ], [ 268807.604825449117925, 6745082.0004479624331 ], [ 268811.31843155878596, 6745074.934384322725236 ], [ 268810.462101530982181, 6745072.067145752720535 ], [ 268808.986436491133645, 6745070.30334981624037 ], [ 268800.286611507530324, 6745064.72214615996927 ], [ 268793.147586170467548, 6745066.713398004882038 ], [ 268801.533936606021598, 6745095.331841105595231 ], [ 268804.848351837485097, 6745099.401059832423925 ], [ 268822.106132750108372, 6745107.176263413392007 ], [ 268827.008539082133211, 6745109.391872919164598 ], [ 268827.370706821035128, 6745108.786194417625666 ], [ 268830.39859905623598, 6745103.151473161764443 ], [ 268826.68936185433995, 6745100.993633104488254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088280, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268473.242706324148457, 6745319.99413409922272 ], [ 268476.388770978839602, 6745322.270851513370872 ], [ 268485.421437137236353, 6745323.649917371571064 ], [ 268488.296578390756622, 6745304.591731035150588 ], [ 268475.104477027023677, 6745303.237856150604784 ], [ 268473.242706324148457, 6745319.99413409922272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 168802661, "zindex": 0, "height_class": "high", "type": "wood", "id_veget": 70 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 269154.172277737350669, 6745021.526511337608099 ], [ 269157.940501711855177, 6745023.669110700488091 ], [ 269163.994479774264619, 6745018.972518473863602 ], [ 269154.172277737350669, 6745021.526511337608099 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id_source": 299088267, "zindex": 0, "height_class": "low", "type": "grass", "id_veget": 71 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 268485.611693815502804, 6745355.629078214988112 ], [ 268484.298908997268882, 6745362.074522928334773 ], [ 268465.900095552497078, 6745359.797490158118308 ], [ 268467.129413531802129, 6745361.690589188598096 ], [ 268470.451444571895991, 6745364.934743328951299 ], [ 268474.816104564233683, 6745367.412115477956831 ], [ 268478.486314267269336, 6745367.901639129966497 ], [ 268482.742992609099019, 6745367.045007520355284 ], [ 268486.493350004951935, 6745364.922007791697979 ], [ 268487.39279104192974, 6745362.193963981233537 ], [ 268487.178246692637913, 6745356.472711935639381 ], [ 268485.611693815502804, 6745355.629078214988112 ] ] ] ] } } ] } diff --git a/osm/src/main/groovy/org/orbisgis/geoclimate/osm/InputDataFormatting.groovy b/osm/src/main/groovy/org/orbisgis/geoclimate/osm/InputDataFormatting.groovy index 43aaa4cb36..41b96e2343 100644 --- a/osm/src/main/groovy/org/orbisgis/geoclimate/osm/InputDataFormatting.groovy +++ b/osm/src/main/groovy/org/orbisgis/geoclimate/osm/InputDataFormatting.groovy @@ -428,7 +428,7 @@ String formatVegetationLayer(JdbcDataSource datasource, String vegetation, Strin def outputTableName = postfix "INPUT_VEGET" datasource """ DROP TABLE IF EXISTS $outputTableName; - CREATE TABLE $outputTableName (THE_GEOM GEOMETRY, id serial, ID_SOURCE VARCHAR, TYPE VARCHAR, HEIGHT_CLASS VARCHAR(4), ZINDEX INTEGER);""".toString() + CREATE TABLE $outputTableName (THE_GEOM GEOMETRY, id_veget serial, ID_SOURCE VARCHAR, TYPE VARCHAR, HEIGHT_CLASS VARCHAR(4), ZINDEX INTEGER);""".toString() if (vegetation) { def paramsDefaultFile = this.class.getResourceAsStream("vegetParams.json") def parametersMap = parametersMapping(jsonFilename, paramsDefaultFile) @@ -502,7 +502,7 @@ String formatWaterLayer(JdbcDataSource datasource, String water, String zone = " debug('Hydro transformation starts') def outputTableName = "INPUT_HYDRO_${UUID.randomUUID().toString().replaceAll("-", "_")}" datasource.execute """Drop table if exists $outputTableName; - CREATE TABLE $outputTableName (THE_GEOM GEOMETRY, id serial, ID_SOURCE VARCHAR, TYPE VARCHAR, ZINDEX INTEGER);""".toString() + CREATE TABLE $outputTableName (THE_GEOM GEOMETRY, id_water serial, ID_SOURCE VARCHAR, TYPE VARCHAR, ZINDEX INTEGER);""".toString() if (water) { if (datasource.getRowCount(water) > 0) { diff --git a/osm/src/test/groovy/org/orbisgis/geoclimate/osm/WorflowOSMTest.groovy b/osm/src/test/groovy/org/orbisgis/geoclimate/osm/WorflowOSMTest.groovy index 6f13898c1d..31a4525c14 100644 --- a/osm/src/test/groovy/org/orbisgis/geoclimate/osm/WorflowOSMTest.groovy +++ b/osm/src/test/groovy/org/orbisgis/geoclimate/osm/WorflowOSMTest.groovy @@ -169,13 +169,13 @@ class WorflowOSMTest extends WorkflowAbstractTest { ZINDEX INTEGER)""" datasource """DROP TABLE IF EXISTS $vegetationTableName; CREATE TABLE $vegetationTableName(THE_GEOM GEOMETRY, - ID INTEGER, + ID_VEGET INTEGER, ID_SOURCE VARCHAR, HEIGHT_CLASS VARCHAR, ZINDEX INTEGER)""" datasource """DROP TABLE IF EXISTS $hydrographicTableName; CREATE TABLE $hydrographicTableName(THE_GEOM GEOMETRY, - ID INTEGER, + ID_WATER INTEGER, ID_SOURCE VARCHAR, TYPE VARCHAR, ZINDEX INTEGER)""" diff --git a/osm/src/test/resources/org/orbisgis/geoclimate/osm/HYDRO.geojson b/osm/src/test/resources/org/orbisgis/geoclimate/osm/HYDRO.geojson index 9aa8008ca0..66b352649c 100644 --- a/osm/src/test/resources/org/orbisgis/geoclimate/osm/HYDRO.geojson +++ b/osm/src/test/resources/org/orbisgis/geoclimate/osm/HYDRO.geojson @@ -3,9 +3,9 @@ "name": "HYDRO", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::32630" } }, "features": [ -{ "type": "Feature", "properties": { "id": 1, "id_source": "w169016779", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515411.957792967965361, 5276885.741746366024017 ], [ 515420.429411807854194, 5276891.543436447158456 ], [ 515417.564223353576381, 5276895.759156771935523 ], [ 515409.092607845319435, 5276889.957470810972154 ], [ 515411.957792967965361, 5276885.741746366024017 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 2, "id_source": "w170206276", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516500.310681352159008, 5277164.739636982791126 ], [ 516508.376651935279369, 5277170.052755190059543 ], [ 516516.210117500566412, 5277167.307588754221797 ], [ 516523.037949747114908, 5277164.303957449272275 ], [ 516527.108435057161842, 5277153.746113751083612 ], [ 516526.619191414327361, 5277146.187218014150858 ], [ 516518.562133163504768, 5277140.373970969580114 ], [ 516509.232961786270607, 5277135.568500433117151 ], [ 516500.680135444155894, 5277124.474732090719044 ], [ 516496.424594060110394, 5277112.881906726397574 ], [ 516493.682882639346644, 5277099.781871453858912 ], [ 516489.154837676207535, 5277094.234285020269454 ], [ 516484.361460104701109, 5277092.209082551300526 ], [ 516479.046394997392781, 5277096.717427551746368 ], [ 516472.970630680152681, 5277101.990489860065281 ], [ 516472.43040452565765, 5277115.081229669041932 ], [ 516474.677523227815982, 5277125.156853039748967 ], [ 516486.264132874552161, 5277133.747412442229688 ], [ 516490.532521080167498, 5277140.805763070471585 ], [ 516493.535296311310958, 5277151.883792778477073 ], [ 516494.772768916387577, 5277160.445063455030322 ], [ 516500.310681352159008, 5277164.739636982791126 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 3, "id_source": "w625863570", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516535.228325736359693, 5276275.087313095107675 ], [ 516533.53110943257343, 5276274.960241266526282 ], [ 516531.955525671830401, 5276274.322272758930922 ], [ 516530.651643254444934, 5276273.229403235949576 ], [ 516529.75438238348579, 5276271.782041127793491 ], [ 516529.345926453941502, 5276270.136014997959137 ], [ 516529.470933898934163, 5276268.435933039523661 ], [ 516530.11387779947836, 5276266.859574668109417 ], [ 516531.206714715517592, 5276265.562342435121536 ], [ 516532.65896149922628, 5276264.666233372874558 ], [ 516534.312627129082102, 5276264.259710948914289 ], [ 516536.009846537606791, 5276264.386782995425165 ], [ 516537.592943910683971, 5276265.024773913435638 ], [ 516538.889315528795123, 5276266.117623643018305 ], [ 516539.794086373818573, 5276267.565008481033146 ], [ 516540.195028190792073, 5276269.21101401373744 ], [ 516540.077528976777103, 5276270.911117081530392 ], [ 516539.434582811838482, 5276272.487474370747805 ], [ 516538.334233998262789, 5276273.784683743491769 ], [ 516536.881988595647272, 5276274.680791405029595 ], [ 516535.228325736359693, 5276275.087313095107675 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 4, "id_source": "w625863571", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516634.865931092645042, 5276275.493293523788452 ], [ 516633.161205587442964, 5276275.366171198897064 ], [ 516631.585632709087804, 5276274.728175716474652 ], [ 516630.281768962158822, 5276273.635283843614161 ], [ 516629.384532831201795, 5276272.187906326726079 ], [ 516628.97610505198827, 5276270.541873143985868 ], [ 516629.101141580787953, 5276268.84179325401783 ], [ 516629.744080727396067, 5276267.276559691876173 ], [ 516630.844451207376551, 5276265.979367549531162 ], [ 516632.28920199139975, 5276265.083261841908097 ], [ 516633.942874605010729, 5276264.676767691969872 ], [ 516635.640123612713069, 5276264.792754901573062 ], [ 516637.223178356303833, 5276265.441886802203953 ], [ 516638.527042657195125, 5276266.534780208952725 ], [ 516639.424309153924696, 5276267.971045250073075 ], [ 516639.832702420360874, 5276269.628193044103682 ], [ 516639.707694524375256, 5276271.317158836871386 ], [ 516639.064721381117124, 5276272.893505188636482 ], [ 516637.964350356138311, 5276274.1906957924366 ], [ 516636.519600939471275, 5276275.08680010214448 ], [ 516634.865931092645042, 5276275.493293523788452 ] ] ] } } +{ "type": "Feature", "properties": { "id_water": 1, "id_source": "w169016779", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515411.957792967965361, 5276885.741746366024017 ], [ 515420.429411807854194, 5276891.543436447158456 ], [ 515417.564223353576381, 5276895.759156771935523 ], [ 515409.092607845319435, 5276889.957470810972154 ], [ 515411.957792967965361, 5276885.741746366024017 ] ] ] } }, +{ "type": "Feature", "properties": { "id_water": 2, "id_source": "w170206276", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516500.310681352159008, 5277164.739636982791126 ], [ 516508.376651935279369, 5277170.052755190059543 ], [ 516516.210117500566412, 5277167.307588754221797 ], [ 516523.037949747114908, 5277164.303957449272275 ], [ 516527.108435057161842, 5277153.746113751083612 ], [ 516526.619191414327361, 5277146.187218014150858 ], [ 516518.562133163504768, 5277140.373970969580114 ], [ 516509.232961786270607, 5277135.568500433117151 ], [ 516500.680135444155894, 5277124.474732090719044 ], [ 516496.424594060110394, 5277112.881906726397574 ], [ 516493.682882639346644, 5277099.781871453858912 ], [ 516489.154837676207535, 5277094.234285020269454 ], [ 516484.361460104701109, 5277092.209082551300526 ], [ 516479.046394997392781, 5277096.717427551746368 ], [ 516472.970630680152681, 5277101.990489860065281 ], [ 516472.43040452565765, 5277115.081229669041932 ], [ 516474.677523227815982, 5277125.156853039748967 ], [ 516486.264132874552161, 5277133.747412442229688 ], [ 516490.532521080167498, 5277140.805763070471585 ], [ 516493.535296311310958, 5277151.883792778477073 ], [ 516494.772768916387577, 5277160.445063455030322 ], [ 516500.310681352159008, 5277164.739636982791126 ] ] ] } }, +{ "type": "Feature", "properties": { "id_water": 3, "id_source": "w625863570", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516535.228325736359693, 5276275.087313095107675 ], [ 516533.53110943257343, 5276274.960241266526282 ], [ 516531.955525671830401, 5276274.322272758930922 ], [ 516530.651643254444934, 5276273.229403235949576 ], [ 516529.75438238348579, 5276271.782041127793491 ], [ 516529.345926453941502, 5276270.136014997959137 ], [ 516529.470933898934163, 5276268.435933039523661 ], [ 516530.11387779947836, 5276266.859574668109417 ], [ 516531.206714715517592, 5276265.562342435121536 ], [ 516532.65896149922628, 5276264.666233372874558 ], [ 516534.312627129082102, 5276264.259710948914289 ], [ 516536.009846537606791, 5276264.386782995425165 ], [ 516537.592943910683971, 5276265.024773913435638 ], [ 516538.889315528795123, 5276266.117623643018305 ], [ 516539.794086373818573, 5276267.565008481033146 ], [ 516540.195028190792073, 5276269.21101401373744 ], [ 516540.077528976777103, 5276270.911117081530392 ], [ 516539.434582811838482, 5276272.487474370747805 ], [ 516538.334233998262789, 5276273.784683743491769 ], [ 516536.881988595647272, 5276274.680791405029595 ], [ 516535.228325736359693, 5276275.087313095107675 ] ] ] } }, +{ "type": "Feature", "properties": { "id_water": 4, "id_source": "w625863571", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516634.865931092645042, 5276275.493293523788452 ], [ 516633.161205587442964, 5276275.366171198897064 ], [ 516631.585632709087804, 5276274.728175716474652 ], [ 516630.281768962158822, 5276273.635283843614161 ], [ 516629.384532831201795, 5276272.187906326726079 ], [ 516628.97610505198827, 5276270.541873143985868 ], [ 516629.101141580787953, 5276268.84179325401783 ], [ 516629.744080727396067, 5276267.276559691876173 ], [ 516630.844451207376551, 5276265.979367549531162 ], [ 516632.28920199139975, 5276265.083261841908097 ], [ 516633.942874605010729, 5276264.676767691969872 ], [ 516635.640123612713069, 5276264.792754901573062 ], [ 516637.223178356303833, 5276265.441886802203953 ], [ 516638.527042657195125, 5276266.534780208952725 ], [ 516639.424309153924696, 5276267.971045250073075 ], [ 516639.832702420360874, 5276269.628193044103682 ], [ 516639.707694524375256, 5276271.317158836871386 ], [ 516639.064721381117124, 5276272.893505188636482 ], [ 516637.964350356138311, 5276274.1906957924366 ], [ 516636.519600939471275, 5276275.08680010214448 ], [ 516634.865931092645042, 5276275.493293523788452 ] ] ] } } ] } diff --git a/osm/src/test/resources/org/orbisgis/geoclimate/osm/VEGET.geojson b/osm/src/test/resources/org/orbisgis/geoclimate/osm/VEGET.geojson index d767ebed7e..6ef68046cb 100644 --- a/osm/src/test/resources/org/orbisgis/geoclimate/osm/VEGET.geojson +++ b/osm/src/test/resources/org/orbisgis/geoclimate/osm/VEGET.geojson @@ -3,79 +3,79 @@ "name": "VEGET", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::32630" } }, "features": [ -{ "type": "Feature", "properties": { "id": 1, "id_source": "w12857563", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515359.689912668196484, 5276849.327663001604378 ], [ 515433.83657165186014, 5276843.088724059984088 ], [ 515462.798841465846635, 5276862.448288119398057 ], [ 515498.470095688011497, 5276782.21137666888535 ], [ 515501.888150013692211, 5276773.496012406423688 ], [ 515515.612912809359841, 5276749.959845633246005 ], [ 515517.950578834919725, 5276743.642228845506907 ], [ 515529.003011146211065, 5276694.236780166625977 ], [ 515526.846030670974869, 5276660.944709153845906 ], [ 515529.460760488174856, 5276649.326476152054965 ], [ 515529.174368716718163, 5276629.976303763687611 ], [ 515445.304901980154682, 5276653.526025811210275 ], [ 515359.689912668196484, 5276849.327663001604378 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 2, "id_source": "w12857656", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515343.757617592695169, 5276291.409346736036241 ], [ 515385.633669471309986, 5276299.877513035200536 ], [ 515410.009723817347549, 5276347.498574674129486 ], [ 515372.545787538692821, 5276375.039978321641684 ], [ 515394.990539476159029, 5276420.088562174700201 ], [ 515396.728893784747925, 5276492.722873383201659 ], [ 515504.505337504961062, 5276450.586820833384991 ], [ 515614.198194220603909, 5276414.248268354684114 ], [ 515641.968510571401566, 5276396.962782558053732 ], [ 515635.679187179193832, 5276339.108853162266314 ], [ 515580.172636687813792, 5276360.810143774375319 ], [ 515569.354638654040173, 5276308.078827827237546 ], [ 515535.168614656082354, 5276314.411408226005733 ], [ 515539.114082888932899, 5276285.503418436273932 ], [ 515582.351264594355598, 5276270.837374015711248 ], [ 515580.562941643234808, 5276214.907163170166314 ], [ 515588.993137348326854, 5276166.32839472219348 ], [ 515602.083840425009839, 5276124.975079863332212 ], [ 515610.808245217893273, 5276123.687009785324335 ], [ 515609.611878811207134, 5276135.653532183729112 ], [ 515608.943871890718583, 5276141.064237778075039 ], [ 515606.448396491003223, 5276147.281365260481834 ], [ 515603.2399085839279, 5276156.086135141551495 ], [ 515601.767166831123177, 5276170.285824213176966 ], [ 515594.823836739815306, 5276213.367147841490805 ], [ 515595.740474317048211, 5276221.693955044262111 ], [ 515601.906346434552688, 5276227.689776824787259 ], [ 515602.567286500998307, 5276236.12703996617347 ], [ 515599.287540269142482, 5276257.534848567098379 ], [ 515599.749900937255006, 5276272.806663265451789 ], [ 515603.90617443312658, 5276271.88422460667789 ], [ 515609.122553380206227, 5276281.800737847574055 ], [ 515627.890953878522851, 5276305.14592255000025 ], [ 515636.054326879384462, 5276319.682661638595164 ], [ 515637.894991539826151, 5276325.133442927151918 ], [ 515645.237423780490644, 5276329.287554451264441 ], [ 515655.03104012174299, 5276335.304294510744512 ], [ 515648.985326239955612, 5276337.766459714621305 ], [ 515653.961259507457726, 5276364.43110447190702 ], [ 515657.448934570129495, 5276374.698663791641593 ], [ 515655.831688871665392, 5276381.15152642223984 ], [ 515635.355616968125105, 5276423.262881578877568 ], [ 515594.679708292591386, 5276480.390715794637799 ], [ 515551.436095804907382, 5276500.847022201865911 ], [ 515528.278370503685437, 5276481.502509543672204 ], [ 515431.505189823103137, 5276506.951872698962688 ], [ 515328.36959204840241, 5276501.544856464490294 ], [ 515313.449854872014839, 5276536.847994335927069 ], [ 515281.172935623908415, 5276554.756711267866194 ], [ 515247.779327853757422, 5276505.823338583111763 ], [ 515225.316182230308186, 5276464.63181468565017 ], [ 515238.285021908464842, 5276437.036437505856156 ], [ 515262.05616927833762, 5276469.229131908155978 ], [ 515292.979905914515257, 5276477.667948589660227 ], [ 515328.538754639273975, 5276437.273284641094506 ], [ 515365.295813352218829, 5276435.436316077597439 ], [ 515357.667812007537577, 5276394.28344146348536 ], [ 515285.540379152400419, 5276364.530569509603083 ], [ 515343.757617592695169, 5276291.409346736036241 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 3, "id_source": "w12857680", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515416.028572909825016, 5276267.171717971563339 ], [ 515367.840090686455369, 5276202.772373523563147 ], [ 515438.861839759047143, 5276165.683999580331147 ], [ 515457.968488169834018, 5276254.435146107338369 ], [ 515416.028572909825016, 5276267.171717971563339 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 4, "id_source": "w12857708", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515248.380047825106885, 5276276.377299305982888 ], [ 515206.650520008406602, 5276208.77316333539784 ], [ 515258.395706476527266, 5276143.347291049547493 ], [ 515359.782769975659903, 5276079.34179462864995 ], [ 515374.538426745217294, 5276109.588444911874831 ], [ 515338.834335201885551, 5276201.406694399192929 ], [ 515248.380047825106885, 5276276.377299305982888 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 5, "id_source": "w146255082", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516742.300127624883316, 5276793.301025846041739 ], [ 516744.846597256138921, 5276790.57430933136493 ], [ 516748.332670632225927, 5276790.195345357060432 ], [ 516751.326426174025983, 5276791.248670265078545 ], [ 516754.046087155002169, 5276793.590429455973208 ], [ 516749.9217006159015, 5276799.157781216315925 ], [ 516742.300127624883316, 5276793.301025846041739 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 6, "id_source": "w146255083", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516736.19439697091002, 5276774.834273478016257 ], [ 516736.666361462383065, 5276777.86974551063031 ], [ 516740.512097719241865, 5276783.015456917695701 ], [ 516742.908711586438585, 5276785.38962409645319 ], [ 516746.530875015771016, 5276787.311643510125577 ], [ 516750.954283238970675, 5276787.45773364789784 ], [ 516752.730701958644204, 5276788.718723242171109 ], [ 516756.511799581930973, 5276790.21887500397861 ], [ 516736.19439697091002, 5276774.834273478016257 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 7, "id_source": "w146259566", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516712.750327062269207, 5276794.194173431955278 ], [ 516711.534889264032245, 5276796.357910709455609 ], [ 516712.292110614245757, 5276799.449769328348339 ], [ 516715.068200013483874, 5276803.069779555313289 ], [ 516718.402786723629106, 5276805.746706509031355 ], [ 516729.181693083199207, 5276792.318636366166174 ], [ 516728.664765463967342, 5276791.86147831287235 ], [ 516724.521585240669083, 5276790.90488959942013 ], [ 516724.604190065932926, 5276796.139809872023761 ], [ 516720.709429674432613, 5276800.218568790704012 ], [ 516712.750327062269207, 5276794.194173431955278 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 8, "id_source": "w146259569", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516663.813905270304531, 5276813.959063909947872 ], [ 516669.910519538447261, 5276819.933604597114027 ], [ 516676.937872141599655, 5276810.373477843590081 ], [ 516679.688806137128267, 5276812.292960716411471 ], [ 516686.909614038886502, 5276803.378010733984411 ], [ 516698.705484703939874, 5276812.447487436234951 ], [ 516696.977228697447572, 5276815.343279710039496 ], [ 516703.910357718064915, 5276820.319996858946979 ], [ 516710.881364134897012, 5276812.093426367267966 ], [ 516709.060932045045774, 5276810.465561979450285 ], [ 516713.854613311530557, 5276804.588911036960781 ], [ 516709.124554622278083, 5276798.76272701472044 ], [ 516705.919727349886671, 5276792.740870766341686 ], [ 516704.864816365763545, 5276788.692357091233134 ], [ 516707.296409977192525, 5276786.732159094884992 ], [ 516716.843251571583096, 5276773.411671532317996 ], [ 516721.800803321413696, 5276775.870979917235672 ], [ 516727.387555227265693, 5276768.462888854555786 ], [ 516723.289060949231498, 5276765.016898832283914 ], [ 516699.995020467671566, 5276768.728802228346467 ], [ 516697.46496413112618, 5276768.354785955511034 ], [ 516663.813905270304531, 5276813.959063909947872 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 9, "id_source": "w146259570", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516699.138874421303626, 5276766.081220775842667 ], [ 516700.512346197385341, 5276766.429692789912224 ], [ 516722.804492542112712, 5276761.136729603633285 ], [ 516737.338082625064999, 5276742.762625137344003 ], [ 516736.019828936841805, 5276738.880058829672635 ], [ 516742.512912931269966, 5276734.964375640265644 ], [ 516743.104952050605789, 5276735.421750816516578 ], [ 516748.895327194652054, 5276727.747530546039343 ], [ 516749.98678479163209, 5276726.917121636681259 ], [ 516750.971269815578125, 5276726.719901844859123 ], [ 516752.795681209245231, 5276726.969657490029931 ], [ 516774.350725081691053, 5276735.144909459166229 ], [ 516776.018463686457835, 5276735.02745989151299 ], [ 516763.525420324760489, 5276717.653680980205536 ], [ 516761.64388857682934, 5276718.981942135840654 ], [ 516760.138535854057409, 5276720.089007036760449 ], [ 516759.769394527713303, 5276717.865149486809969 ], [ 516757.922404286218807, 5276707.190417572855949 ], [ 516757.552941443573218, 5276705.077699045650661 ], [ 516759.730110509495717, 5276705.41738373041153 ], [ 516761.681955698120873, 5276705.756420673802495 ], [ 516764.424872214207426, 5276692.205266224220395 ], [ 516767.653558349586092, 5276692.547981002368033 ], [ 516768.109646838682238, 5276690.659918434917927 ], [ 516771.126452360360418, 5276686.334155411459506 ], [ 516773.158853275468573, 5276684.784052354283631 ], [ 516771.588303852884565, 5276682.445594176650047 ], [ 516783.251210943097249, 5276675.14397116471082 ], [ 516782.503651378792711, 5276673.919279488734901 ], [ 516781.455658290942665, 5276672.693722154013813 ], [ 516781.456939353200141, 5276672.249166841618717 ], [ 516783.411036567296833, 5276671.810239224694669 ], [ 516794.682732397166546, 5276669.953359427861869 ], [ 516796.636831400217488, 5276669.514436246827245 ], [ 516796.18009095749585, 5276671.624774201773107 ], [ 516795.648563089314848, 5276673.623756749555469 ], [ 516809.609722634137142, 5276676.775952118448913 ], [ 516809.230011033592746, 5276678.219672908075154 ], [ 516812.983176543668378, 5276679.008485713042319 ], [ 516812.525789170409553, 5276681.341100090183318 ], [ 516814.851896780892275, 5276682.125794352963567 ], [ 516816.324210704595316, 5276684.664032177999616 ], [ 516821.09451024082955, 5276681.754833556711674 ], [ 516816.103984503599349, 5276672.493592948652804 ], [ 516826.382625522441231, 5276668.60004945192486 ], [ 516791.757872876303736, 5276642.38226711191237 ], [ 516739.048222192446701, 5276712.2152214134112 ], [ 516731.878105188894551, 5276721.719292820431292 ], [ 516699.138874421303626, 5276766.081220775842667 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 10, "id_source": "w146259573", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516757.362410440808162, 5276729.527897319756448 ], [ 516771.646151024266146, 5276735.381627014838159 ], [ 516763.340054562024307, 5276737.691646006889641 ], [ 516762.785507006279659, 5276737.256604633294046 ], [ 516761.443546466703992, 5276736.396965763531625 ], [ 516757.362410440808162, 5276729.527897319756448 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 11, "id_source": "w146259577", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516742.068569013499655, 5276832.043684696778655 ], [ 516724.198287946346682, 5276845.940375906415284 ], [ 516720.37700533552561, 5276842.750804871320724 ], [ 516717.65661342034582, 5276845.899363966658711 ], [ 516736.463899752183352, 5276861.379588950425386 ], [ 516748.43296959757572, 5276846.721322806552052 ], [ 516742.068569013499655, 5276832.043684696778655 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 12, "id_source": "w183968039", "type": "null", "height_class": "null", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516443.740117823588662, 5277115.389124820940197 ], [ 516482.498840655374806, 5277055.08311912138015 ], [ 516510.016103378497064, 5277020.941135651431978 ], [ 516650.743856725341175, 5277121.756668553687632 ], [ 516656.8203305566567, 5277150.414779911749065 ], [ 516657.50080539524788, 5277177.701553720980883 ], [ 516654.704974779451732, 5277262.426566129550338 ], [ 516717.667859425942879, 5277331.146956294775009 ], [ 516744.704332074848935, 5277333.647498254664242 ], [ 516768.108820313063916, 5277366.434433085843921 ], [ 516771.883562236442231, 5277482.108581299893558 ], [ 516732.614559716603253, 5277450.754167185164988 ], [ 516694.423423069063574, 5277407.400006008334458 ], [ 516636.873641964863054, 5277342.073972745798528 ], [ 516618.049415864574257, 5277322.459600200876594 ], [ 516608.607341967348475, 5277312.607895825989544 ], [ 516547.154682928929105, 5277277.47944360692054 ], [ 516521.467755565827247, 5277257.134593587368727 ], [ 516549.174677309347317, 5277222.07086565811187 ], [ 516520.883066644601058, 5277201.162919535301626 ], [ 516499.184163087978959, 5277223.040391643531621 ], [ 516481.507919324503746, 5277203.507519617676735 ], [ 516461.705017384781968, 5277192.348631243221462 ], [ 516457.383483800920658, 5277172.208995522931218 ], [ 516449.033262928540353, 5277147.868010764010251 ], [ 516424.17513249971671, 5277142.229735415428877 ], [ 516443.740117823588662, 5277115.389124820940197 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 13, "id_source": "w189027279", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516282.846104557334911, 5276855.036649436689913 ], [ 516303.141637050779536, 5276835.632867882959545 ], [ 516309.854525046248455, 5276830.861543190665543 ], [ 516420.622513207315933, 5276889.310041332617402 ], [ 516435.807669864560012, 5276905.734881917946041 ], [ 516472.09727149392711, 5276967.353284377604723 ], [ 516483.284831762604881, 5276984.3671002574265 ], [ 516419.410450335009955, 5277055.460577057674527 ], [ 516419.236586160142906, 5277047.869239673018456 ], [ 516406.090457845712081, 5277024.915162747725844 ], [ 516366.903000895632431, 5276965.422905370593071 ], [ 516282.846104557334911, 5276855.036649436689913 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 14, "id_source": "w189027280", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516354.931765206565615, 5277163.106934703886509 ], [ 516374.190923730900977, 5277175.442010604776442 ], [ 516376.660178912745323, 5277176.01576810143888 ], [ 516378.884255080309231, 5277175.644148657098413 ], [ 516381.361326714453753, 5277173.439435136504471 ], [ 516384.031127280031797, 5277169.468142163939774 ], [ 516390.124171851028223, 5277166.006614638492465 ], [ 516413.029097221675329, 5277118.525529652833939 ], [ 516428.970152382680681, 5277090.429890719242394 ], [ 516444.987610793556087, 5277067.246890241280198 ], [ 516464.775706743763294, 5277041.307214087806642 ], [ 516494.546454470895696, 5277001.725681542418897 ], [ 516495.131052327342331, 5276999.5045419447124 ], [ 516492.781787225801963, 5276996.31928972620517 ], [ 516483.284831762604881, 5276984.3671002574265 ], [ 516419.410450335009955, 5277055.460577057674527 ], [ 516398.288491076673381, 5277085.7644436173141 ], [ 516358.615929158288054, 5277158.960655835457146 ], [ 516354.931765206565615, 5277163.106934703886509 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 15, "id_source": "w189027282", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516269.427908678830136, 5277558.036143732257187 ], [ 516272.095959755475633, 5277557.2878492558375 ], [ 516275.391572193708271, 5277555.018694312311709 ], [ 516277.111705192481168, 5277552.189436944201589 ], [ 516278.009533080388792, 5277548.013088622130454 ], [ 516288.704004149127286, 5277486.071419171988964 ], [ 516294.704233083932195, 5277456.602809050120413 ], [ 516302.231003856926691, 5277423.748715351335704 ], [ 516310.469530610134825, 5277394.208593513816595 ], [ 516319.697984993516002, 5277362.515146311372519 ], [ 516340.725386569218244, 5277290.477720881812274 ], [ 516352.025928123854101, 5277256.478436036035419 ], [ 516360.691982785530854, 5277232.652177361771464 ], [ 516375.671528273785952, 5277196.418255047872663 ], [ 516373.79526204476133, 5277193.289949977770448 ], [ 516372.109279112424701, 5277189.261948186904192 ], [ 516361.277658210950904, 5277184.585857873782516 ], [ 516341.893233626440633, 5277227.586979603394866 ], [ 516332.766358972177841, 5277252.401117327623069 ], [ 516321.472653515287675, 5277286.678307493217289 ], [ 516300.034203766088467, 5277358.081153090111911 ], [ 516291.250442041957285, 5277391.920873719267547 ], [ 516283.822559068794362, 5277418.962643123231828 ], [ 516276.019039114296902, 5277454.138808822259307 ], [ 516269.481949887354858, 5277484.950729456730187 ], [ 516257.108734801411629, 5277551.111059541814029 ], [ 516258.085273450764362, 5277553.703345115296543 ], [ 516260.053586802212521, 5277556.120576958172023 ], [ 516265.336930336023215, 5277557.380101660266519 ], [ 516269.427908678830136, 5277558.036143732257187 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 16, "id_source": "w189027283", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516474.748577787424438, 5276954.046240387484431 ], [ 516476.460586756642442, 5276954.184452068991959 ], [ 516476.385476690367796, 5276956.840480067767203 ], [ 516477.773333763121627, 5276960.056346623227 ], [ 516485.409292380150873, 5276971.45867252163589 ], [ 516494.505518371006474, 5276981.709291381761432 ], [ 516496.902401464933064, 5276983.994446902535856 ], [ 516498.552711733907927, 5276984.699303207919002 ], [ 516500.385255902307108, 5276984.704495771788061 ], [ 516504.129039554332849, 5276983.448112198151648 ], [ 516506.672573736112099, 5276981.688199481926858 ], [ 516509.912268680287525, 5276978.096455323509872 ], [ 516542.352617571712472, 5276934.910694899968803 ], [ 516543.059870882483665, 5276931.823018433526158 ], [ 516544.816046923864633, 5276924.348301223479211 ], [ 516543.011450065299869, 5276919.78644354082644 ], [ 516632.540425019571558, 5276800.421744802966714 ], [ 516639.35193171404535, 5276805.93150806427002 ], [ 516748.935493506491184, 5276658.941025636158884 ], [ 516749.699906913097948, 5276656.920480822212994 ], [ 516749.902093714103103, 5276654.520443851128221 ], [ 516748.259678383008577, 5276651.048160075210035 ], [ 516742.087852471333463, 5276639.849755346775055 ], [ 516741.135249641782138, 5276639.402457836084068 ], [ 516739.931529245164711, 5276640.088064006529748 ], [ 516623.639986792288255, 5276795.23944528773427 ], [ 516530.068347584572621, 5276920.62769144307822 ], [ 516527.65602580254199, 5276923.777213494293392 ], [ 516521.8108398206532, 5276927.117047016508877 ], [ 516477.587608860398177, 5276948.719564446248114 ], [ 516476.315288521174807, 5276949.794020020402968 ], [ 516475.167973845382221, 5276951.81351759377867 ], [ 516474.748577787424438, 5276954.046240387484431 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 17, "id_source": "w189027284", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516209.367783138761297, 5277735.036674323491752 ], [ 516214.243142488354351, 5277737.12856694124639 ], [ 516221.149364159326069, 5277738.036925339139998 ], [ 516232.882561925100163, 5277734.146392535418272 ], [ 516233.833836475154385, 5277732.326351060532033 ], [ 516238.656050761055667, 5277729.238997363485396 ], [ 516240.374905882054009, 5277726.843170693144202 ], [ 516241.462439660564996, 5277724.634521 ], [ 516251.167902245710138, 5277720.816166090779006 ], [ 516253.142521133762784, 5277715.575876170769334 ], [ 516255.25706234050449, 5277708.635537448339164 ], [ 516256.535943502036389, 5277702.448617144487798 ], [ 516257.503030933672562, 5277689.59243371617049 ], [ 516259.421021448390093, 5277661.612769433297217 ], [ 516260.913325557718053, 5277648.924764034338295 ], [ 516273.261799156782217, 5277575.440246707759798 ], [ 516273.781434556585737, 5277572.229757276363671 ], [ 516273.531604518706445, 5277570.261883432045579 ], [ 516271.955513082852121, 5277567.234473940916359 ], [ 516269.745811693719588, 5277565.205552902072668 ], [ 516267.023338879807852, 5277563.93095098156482 ], [ 516255.936135634372476, 5277562.25511271879077 ], [ 516239.649377218971495, 5277655.811651490628719 ], [ 516239.830574692517985, 5277658.157208216376603 ], [ 516241.282871057046577, 5277659.795015729032457 ], [ 516244.505436434643343, 5277662.149058169685304 ], [ 516245.067882042669225, 5277665.118062201887369 ], [ 516245.058206102228723, 5277668.585599238984287 ], [ 516243.910584324155934, 5277670.794080471619964 ], [ 516242.072954081755597, 5277672.689445164985955 ], [ 516239.372813425958157, 5277674.193414874374866 ], [ 516238.555149390303995, 5277676.569527388550341 ], [ 516237.855034587380942, 5277679.879542833194137 ], [ 516236.927132213313598, 5277686.77874104026705 ], [ 516233.182235401705839, 5277694.00350344274193 ], [ 516225.713860622257926, 5277698.083744707517326 ], [ 516209.367783138761297, 5277735.036674323491752 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 18, "id_source": "w189027285", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516752.877678120159544, 5276646.249092107638717 ], [ 516754.203487994906027, 5276647.508785378187895 ], [ 516755.786105549312197, 5276648.26908899936825 ], [ 516756.861054184031673, 5276647.960990696214139 ], [ 516758.894615981320385, 5276646.010782962664962 ], [ 516813.358645465457812, 5276572.370982926338911 ], [ 516819.139612423663493, 5276565.441442206501961 ], [ 516834.225621614954434, 5276551.114662833511829 ], [ 516835.50394228141522, 5276548.01755949575454 ], [ 516836.147653131338302, 5276543.596058947965503 ], [ 516835.337532656791154, 5276540.626286091282964 ], [ 516833.633794556022622, 5276537.58724644780159 ], [ 516810.134063089615665, 5276510.734693166799843 ], [ 516808.354721829236951, 5276513.063491712324321 ], [ 516807.962164624186698, 5276516.352094653993845 ], [ 516805.600859065598343, 5276522.535763017833233 ], [ 516801.287006654369179, 5276526.001989689655602 ], [ 516800.878070468897931, 5276534.96978604234755 ], [ 516792.066568658221513, 5276535.322247656993568 ], [ 516792.082436227472499, 5276537.633999764919281 ], [ 516789.866946247813758, 5276537.538700322620571 ], [ 516789.828384572465438, 5276535.282452656887472 ], [ 516787.612573297519702, 5276535.298292878083885 ], [ 516787.555129885382485, 5276531.774997922591865 ], [ 516772.586035097658169, 5276531.609613698907197 ], [ 516772.528816125064623, 5276541.045211708173156 ], [ 516794.603519923461135, 5276556.779531194828451 ], [ 516795.541153100435622, 5276559.816349945031106 ], [ 516800.409981822536793, 5276564.442692585289478 ], [ 516777.964219149027485, 5276591.484964974224567 ], [ 516761.162970904668327, 5276614.675903933122754 ], [ 516752.199959205405321, 5276625.964139567688107 ], [ 516748.961327064898796, 5276626.454953035339713 ], [ 516747.694032142986543, 5276628.351797929033637 ], [ 516747.303338224184699, 5276631.006914175115526 ], [ 516747.035247905412689, 5276635.429504914209247 ], [ 516747.788221299706493, 5276637.38772976398468 ], [ 516752.877678120159544, 5276646.249092107638717 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 19, "id_source": "w192723399", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516070.928083823877387, 5276679.947497542016208 ], [ 516163.584448294772301, 5276646.68420516513288 ], [ 516191.354534212034196, 5276713.422937500290573 ], [ 516181.481405027850997, 5276733.745174184441566 ], [ 516188.13311696331948, 5276786.110463745892048 ], [ 516134.831672320084181, 5276796.131819072179496 ], [ 516129.98018588864943, 5276774.27942640800029 ], [ 516138.315410157782026, 5276766.767247997224331 ], [ 516127.427188092493452, 5276741.497257271781564 ], [ 516101.368025715986732, 5276740.30263580288738 ], [ 516092.356474522151984, 5276718.049787561409175 ], [ 516070.928083823877387, 5276679.947497542016208 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 20, "id_source": "w192723405", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515738.535995253594592, 5276645.986760721541941 ], [ 515732.508316331601236, 5276644.659025863744318 ], [ 515716.102363768965006, 5276637.090574090369046 ], [ 515697.546294967527501, 5276605.165678393095732 ], [ 515685.61847554333508, 5276583.005638701841235 ], [ 515657.802418469276745, 5276525.393802573904395 ], [ 515656.509838146797847, 5276511.675698944367468 ], [ 515659.206845418724697, 5276497.51264941226691 ], [ 515669.027554656204302, 5276479.389965210109949 ], [ 515690.389535606780555, 5276459.753539560362697 ], [ 515720.673259797506034, 5276418.480158785358071 ], [ 515769.744273571937811, 5276382.314627795480192 ], [ 515824.402808693004772, 5276349.465534352697432 ], [ 515842.206213101686444, 5276343.345686382614076 ], [ 515859.86902173969429, 5276347.494809228926897 ], [ 515889.731673930655234, 5276378.617499085143209 ], [ 515901.547703782678582, 5276397.576825224794447 ], [ 515908.92662445170572, 5276402.020333666354418 ], [ 515923.468480878567789, 5276404.727425389923155 ], [ 515945.427448385686148, 5276400.653111041523516 ], [ 515973.579992837447207, 5276408.710082366131246 ], [ 516002.747933306789491, 5276413.502475086599588 ], [ 516012.099863448820543, 5276421.530232624150813 ], [ 516027.226497401134111, 5276421.87191756721586 ], [ 516031.944067607400939, 5276429.864727721549571 ], [ 516047.342452829005197, 5276437.886962060816586 ], [ 516053.834673887584358, 5276436.960167462937534 ], [ 516073.709635037987027, 5276447.717734615318477 ], [ 516075.474278129637241, 5276453.335157182998955 ], [ 516122.290257271612063, 5276470.024377013556659 ], [ 516133.968494326050859, 5276467.889494416303933 ], [ 516166.372586413112003, 5276491.885494121350348 ], [ 516180.27963001281023, 5276509.384156109765172 ], [ 516183.037967550568283, 5276519.561099572107196 ], [ 516191.909639403049368, 5276527.276623711921275 ], [ 516200.672828593815211, 5276576.680351453833282 ], [ 516201.484297049755696, 5276603.578411434777081 ], [ 516207.681215885153506, 5276614.24283638689667 ], [ 516213.295457432570402, 5276621.060212824493647 ], [ 516219.839728639926761, 5276614.86572768446058 ], [ 516216.448315892717801, 5276554.251815258525312 ], [ 516220.640582274703775, 5276540.371031038463116 ], [ 516221.850878584140446, 5276531.916673076339066 ], [ 516211.823525447107386, 5276531.944320818409324 ], [ 516209.883231875603087, 5276495.040550347417593 ], [ 516211.326266924384981, 5276475.828519375994802 ], [ 516211.041706466989126, 5276464.72487526293844 ], [ 516225.591554658138193, 5276467.154896202497184 ], [ 516225.553964687103871, 5276480.647146425209939 ], [ 516250.157463192066643, 5276549.011072927154601 ], [ 516236.271574152400717, 5276556.363131784833968 ], [ 516253.492606375250034, 5276594.676561293192208 ], [ 516270.147114301973488, 5276658.250515365973115 ], [ 516258.813272172468714, 5276698.562572703696787 ], [ 516291.37545846978901, 5276821.118431362323463 ], [ 516309.854525046248455, 5276830.861543190665543 ], [ 516303.141637050779536, 5276835.632867882959545 ], [ 516282.846104557334911, 5276855.036649436689913 ], [ 516277.345949240960181, 5276847.819417729973793 ], [ 516252.455742757359985, 5276863.920727244578302 ], [ 516217.266712748503778, 5276762.040864913724363 ], [ 516202.57157293864293, 5276747.3072899132967 ], [ 516209.481136448855978, 5276709.661272699013352 ], [ 516197.513448089594021, 5276664.805333492346108 ], [ 516176.049981605785433, 5276639.505851536989212 ], [ 516173.968933883821592, 5276572.082741529680789 ], [ 516177.062647754093632, 5276545.340015360154212 ], [ 516170.691975930531044, 5276526.873137758113444 ], [ 516160.522331375337671, 5276515.919879980385303 ], [ 516151.474271408224013, 5276509.493134968914092 ], [ 516139.793746621522587, 5276488.088596286252141 ], [ 516084.315797048737295, 5276474.776178585365415 ], [ 516044.765344845538493, 5276457.251500864513218 ], [ 516014.938195353723131, 5276432.785367758013308 ], [ 515982.745153642783407, 5276421.860817108303308 ], [ 515936.949573575693648, 5276419.023513428866863 ], [ 515895.384233975200914, 5276426.656352461315691 ], [ 515880.71889641386224, 5276394.874869927763939 ], [ 515868.740786949871108, 5276374.725951042957604 ], [ 515862.158595570886973, 5276370.062384689226747 ], [ 515780.974177877011243, 5276387.646404875442386 ], [ 515738.935830716916826, 5276428.554276085458696 ], [ 515713.555327681649942, 5276481.510449754074216 ], [ 515730.412854463036638, 5276563.988216451369226 ], [ 515710.99093292321777, 5276568.970413548871875 ], [ 515724.0696098000044, 5276612.739157604984939 ], [ 515758.878400046203751, 5276650.487358752638102 ], [ 515781.300044359115418, 5276655.449334780685604 ], [ 515798.35565959016094, 5276692.049411842599511 ], [ 515797.3460493835737, 5276812.266453668475151 ], [ 515789.493895635474473, 5276860.635375917889178 ], [ 515797.151130122249015, 5276884.117732216604054 ], [ 515917.25031423807377, 5276874.21992661524564 ], [ 515939.832338418927975, 5276982.109447724185884 ], [ 515957.49437283462612, 5277002.251885491423309 ], [ 515862.462801142188255, 5277011.161257036961615 ], [ 515844.593373540905304, 5277011.923925330862403 ], [ 515834.299449189624283, 5277162.756995934061706 ], [ 515843.02612131589558, 5277204.246974798850715 ], [ 515798.306515273812693, 5277205.681421790271997 ], [ 515795.554721664928365, 5277262.177406931295991 ], [ 515779.821430915617384, 5277311.903131037019193 ], [ 515831.276676695444621, 5277318.777883530594409 ], [ 515865.901195838174317, 5277336.899004547856748 ], [ 515849.334536057605874, 5277386.388884179294109 ], [ 515840.626797774457373, 5277583.7161332834512 ], [ 515713.729134213412181, 5277524.779337232001126 ], [ 515678.155242921144236, 5277502.488813811913133 ], [ 515673.632965421536937, 5277444.417213994078338 ], [ 515676.858414484886453, 5277403.993247509934008 ], [ 515746.526698547706474, 5277407.293167860247195 ], [ 515748.179393855680246, 5277371.010500831529498 ], [ 515675.392678754171357, 5277368.213409269228578 ], [ 515617.770629501261283, 5277333.849739349447191 ], [ 515637.167111700342502, 5277275.842394653707743 ], [ 515769.765451793384273, 5277273.088108932599425 ], [ 515788.704488030343782, 5277193.307750573381782 ], [ 515749.907532078563236, 5277179.132385087199509 ], [ 515779.486665996431839, 5277008.657444330863655 ], [ 515731.436767468927428, 5276893.953516996465623 ], [ 515752.669371165859047, 5276741.19386091735214 ], [ 515761.952872879744973, 5276727.259839132428169 ], [ 515764.36945788434241, 5276700.21498728916049 ], [ 515757.872277061862405, 5276672.568084678612649 ], [ 515745.733679652272258, 5276653.497029547579587 ], [ 515738.535995253594592, 5276645.986760721541941 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 21, "id_source": "w192723423", "type": "farmland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515795.554721664928365, 5277262.177406931295991 ], [ 515905.75714200240327, 5277270.83512631803751 ], [ 515865.901195838174317, 5277336.899004547856748 ], [ 515831.276676695444621, 5277318.777883530594409 ], [ 515779.821430915617384, 5277311.903131037019193 ], [ 515795.554721664928365, 5277262.177406931295991 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 22, "id_source": "w192723428", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515798.38708906742977, 5276572.485462988726795 ], [ 515873.749549317057244, 5276562.576684392057359 ], [ 515880.149400955764577, 5276567.917721018195152 ], [ 515884.054680912871845, 5276603.882047647610307 ], [ 515833.45187001361046, 5276645.832833437249064 ], [ 515818.858019669074565, 5276607.172144838608801 ], [ 515806.844904647674412, 5276605.539114874787629 ], [ 515794.085619043151382, 5276579.931265401653945 ], [ 515798.38708906742977, 5276572.485462988726795 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 23, "id_source": "w196966595", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516211.041706466989126, 5276464.72487526293844 ], [ 516227.810485781636089, 5276436.375393335707486 ], [ 516240.697031539166346, 5276410.393521459773183 ], [ 516241.905427227145992, 5276378.399786206893623 ], [ 516234.716970199136995, 5276375.767962070181966 ], [ 516220.731797365297098, 5276345.810203330591321 ], [ 516200.671451666159555, 5276323.359731398522854 ], [ 516193.854931835376192, 5276300.39044065028429 ], [ 516192.503392380371224, 5276273.190816489048302 ], [ 516195.191014136420563, 5276246.702603463083506 ], [ 516200.708080700365826, 5276223.778729908168316 ], [ 516216.423361853056122, 5276204.428601109422743 ], [ 516244.719529284629971, 5276182.746316477656364 ], [ 516207.434828021330759, 5276187.254739834927022 ], [ 516155.493109741597436, 5276181.697935738600791 ], [ 516119.152642887434922, 5276200.602121556177735 ], [ 516092.366572706669103, 5276216.943371170200408 ], [ 516080.675164416781627, 5276215.510721184313297 ], [ 516076.999326140328776, 5276194.72858227789402 ], [ 516101.645663114904892, 5276137.27081058640033 ], [ 516106.117121804738417, 5276120.223246485926211 ], [ 516101.325343129516114, 5276114.564107088372111 ], [ 516087.859050185827073, 5276111.114911237731576 ], [ 516069.646449418447446, 5276107.285889239050448 ], [ 516029.963876100140624, 5276112.277848879806697 ], [ 515992.545738857821561, 5276118.776679932139814 ], [ 515948.40400142245926, 5276131.058822693303227 ], [ 515907.815727563691325, 5276148.730158792808652 ], [ 515886.647618870600127, 5276159.941935623064637 ], [ 515870.017362831218634, 5276157.073653931729496 ], [ 515840.161274496407714, 5276125.839960495010018 ], [ 515836.020260472723749, 5276096.23223514482379 ], [ 515841.394749842467718, 5276072.785289524123073 ], [ 516347.916011897556018, 5276066.516283508390188 ], [ 516367.796427736233454, 5276123.708988700062037 ], [ 516389.362954811484087, 5276150.143065377138555 ], [ 516421.799500257882755, 5276160.225880493409932 ], [ 516449.507493920740671, 5276158.314668531529605 ], [ 516424.964104821963701, 5276180.740065201185644 ], [ 516446.595749705971684, 5276245.128729283809662 ], [ 516399.442785191757139, 5276270.435633925721049 ], [ 516352.748217105283402, 5276263.713761945255101 ], [ 516324.941392514330801, 5276351.991771013475955 ], [ 516246.087403783516493, 5276341.346379023976624 ], [ 516257.569829047773965, 5276398.704249759204686 ], [ 516246.540639635873958, 5276434.671606441959739 ], [ 516225.591554658138193, 5276467.154896202497184 ], [ 516211.041706466989126, 5276464.72487526293844 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 24, "id_source": "w196966596", "type": "meadow", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516399.442785191757139, 5276270.435633925721049 ], [ 516352.748217105283402, 5276263.713761945255101 ], [ 516324.941392514330801, 5276351.991771013475955 ], [ 516246.087403783516493, 5276341.346379023976624 ], [ 516257.569829047773965, 5276398.704249759204686 ], [ 516246.540639635873958, 5276434.671606441959739 ], [ 516225.591554658138193, 5276467.154896202497184 ], [ 516225.553964687103871, 5276480.647146425209939 ], [ 516250.157463192066643, 5276549.011072927154601 ], [ 516279.743810494837817, 5276535.456865095533431 ], [ 516302.471079674491193, 5276578.820462059229612 ], [ 516328.733999205171131, 5276566.524192654527724 ], [ 516296.700580226955935, 5276442.658209172077477 ], [ 516385.299849574686959, 5276432.926461526192725 ], [ 516407.160075114283245, 5276354.667882501147687 ], [ 516427.736868054489605, 5276326.852059767581522 ], [ 516399.442785191757139, 5276270.435633925721049 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 25, "id_source": "w300143809", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515270.54514752846444, 5277379.440669603645802 ], [ 515267.534429687133525, 5277379.14381055533886 ], [ 515264.690940221771598, 5277378.08052736800164 ], [ 515262.224751876492519, 5277376.329168285243213 ], [ 515260.300820205302443, 5277373.990190947428346 ], [ 515259.046347957279067, 5277371.241751764900982 ], [ 515258.55098892870592, 5277368.261908827349544 ], [ 515258.844259666395374, 5277365.250790806487203 ], [ 515259.910588069586083, 5277362.419522481039166 ], [ 515261.674351394292898, 5277359.967957549728453 ], [ 515264.01498319231905, 5277358.051376167684793 ], [ 515266.774424878240097, 5277356.802732245065272 ], [ 515269.764723137195688, 5277356.299331249669194 ], [ 515272.782962638186291, 5277356.596211115829647 ], [ 515275.618951224256307, 5277357.659478494897485 ], [ 515278.085143517178949, 5277359.410843191668391 ], [ 515280.009072932763956, 5277361.749826354905963 ], [ 515281.26353738468606, 5277364.498270031064749 ], [ 515281.75888513342943, 5277367.478114906698465 ], [ 515281.465602643904276, 5277370.489231810905039 ], [ 515280.399265188374557, 5277373.320496241562068 ], [ 515278.643007874547038, 5277375.772075272165239 ], [ 515276.294839234848041, 5277377.699745013378561 ], [ 515273.535405356495176, 5277378.948384447954595 ], [ 515270.54514752846444, 5277379.440669603645802 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 26, "id_source": "w342070859", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516839.963586148398463, 5276143.426375072449446 ], [ 516838.439616519783158, 5276143.121892026625574 ], [ 516837.827560000296216, 5276141.77533268276602 ], [ 516837.726620722503867, 5276135.117775035090744 ], [ 516838.162006661528721, 5276132.618391271680593 ], [ 516840.365165525116026, 5276131.835669231601059 ], [ 516841.468138979922514, 5276132.261189074255526 ], [ 516841.515505459276028, 5276136.662456697784364 ], [ 516874.566039958852343, 5276136.813685778528452 ], [ 516874.640621629485395, 5276131.812616862356663 ], [ 516876.350770464516245, 5276132.673347151838243 ], [ 516876.774869928311091, 5276134.074935782700777 ], [ 516876.749397363630123, 5276142.8660096693784 ], [ 516876.197353628522251, 5276144.142516307532787 ], [ 516875.520802321960218, 5276144.31837953440845 ], [ 516874.914656018954702, 5276143.527531709522009 ], [ 516875.108359668520279, 5276138.893568772822618 ], [ 516839.856994022673462, 5276138.724859097972512 ], [ 516839.963586148398463, 5276143.426375072449446 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 27, "id_source": "w342070860", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516865.079381514457054, 5276175.56283968873322 ], [ 516864.907803013746161, 5276149.21112700831145 ], [ 516869.804950578254648, 5276149.347562507726252 ], [ 516869.668697533430532, 5276175.642814019694924 ], [ 516865.079381514457054, 5276175.56283968873322 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 28, "id_source": "w342070861", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516840.291171674442012, 5276175.613369910977781 ], [ 516840.16392541944515, 5276165.065847381949425 ], [ 516838.174152984574903, 5276164.793359508737922 ], [ 516837.848215211532079, 5276173.60579299274832 ], [ 516838.842967837641481, 5276175.086826418526471 ], [ 516840.291171674442012, 5276175.613369910977781 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 29, "id_source": "w342070862", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516839.489352556236554, 5276159.362432072870433 ], [ 516838.192113436758518, 5276158.580704009160399 ], [ 516838.026096234971192, 5276156.246291061863303 ], [ 516838.042064468201715, 5276150.722695817239583 ], [ 516839.174252339114901, 5276148.836594664491713 ], [ 516839.885853179905098, 5276149.527717947028577 ], [ 516840.047870046983007, 5276158.441587630659342 ], [ 516839.489352556236554, 5276159.362432072870433 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 30, "id_source": "w342618762", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516840.001674572878983, 5276317.304514355026186 ], [ 516842.377780812443234, 5276316.433381520211697 ], [ 516842.4616356070037, 5276313.41062431037426 ], [ 516842.758207869715989, 5276312.155603405088186 ], [ 516844.321113867976237, 5276309.370516998693347 ], [ 516846.169708019180689, 5276306.497345597483218 ], [ 516846.247167739027645, 5276305.686249883845448 ], [ 516845.963388473028317, 5276302.517947807908058 ], [ 516846.047438146779314, 5276299.428507454693317 ], [ 516845.892143673612736, 5276298.58339661359787 ], [ 516840.138799334876239, 5276298.455618823878467 ], [ 516840.001674572878983, 5276317.304514355026186 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 31, "id_source": "w342618763", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516849.393550617794972, 5276316.375876215286553 ], [ 516849.820335248892661, 5276298.672557604499161 ], [ 516862.663940044585615, 5276298.965350499376655 ], [ 516869.09404198161792, 5276298.839489356614649 ], [ 516874.841372351918835, 5276303.635145555250347 ], [ 516876.299515347112902, 5276308.496175267733634 ], [ 516874.957424496475141, 5276312.837848719209433 ], [ 516874.650605472736061, 5276317.627080745063722 ], [ 516871.989259079913609, 5276318.430690300650895 ], [ 516869.706010156485718, 5276315.767837634310126 ], [ 516867.122319232614245, 5276315.693670731969178 ], [ 516865.198173635930289, 5276316.121543436311185 ], [ 516849.393550617794972, 5276316.375876215286553 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 32, "id_source": "w342618765", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516842.103269751300104, 5276333.436961284838617 ], [ 516846.09217093285406, 5276333.304016049951315 ], [ 516847.94270778761711, 5276332.353567541576922 ], [ 516849.944113737496082, 5276331.181276699528098 ], [ 516850.976566355850082, 5276330.006182996556163 ], [ 516851.057242047216278, 5276328.08369963336736 ], [ 516849.732858774601482, 5276326.312746741808951 ], [ 516849.445674309157766, 5276324.322515316307545 ], [ 516849.667102576990146, 5276323.078391308896244 ], [ 516848.41654453711817, 5276321.752211103215814 ], [ 516845.985042623593472, 5276321.000541678629816 ], [ 516842.58284878951963, 5276320.846220458857715 ], [ 516839.976015429070685, 5276320.983164083212614 ], [ 516839.955240761395544, 5276322.97250457201153 ], [ 516841.795922507939395, 5276322.833345399238169 ], [ 516842.103269751300104, 5276333.436961284838617 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 33, "id_source": "w342618766", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516834.060515898861922, 5276340.582219516858459 ], [ 516833.999788983026519, 5276338.203654447570443 ], [ 516837.595280821493361, 5276336.446926719509065 ], [ 516841.360352354997303, 5276335.790974584408104 ], [ 516844.245738796307705, 5276335.432557820342481 ], [ 516847.641891677048989, 5276335.075619975104928 ], [ 516850.226410214731004, 5276334.860817460343242 ], [ 516852.001641638984438, 5276333.976836183108389 ], [ 516853.777484666788951, 5276332.881691790185869 ], [ 516854.891500349156559, 5276332.073595806024969 ], [ 516856.072474469430745, 5276331.487973224371672 ], [ 516859.250160119729117, 5276331.352689253166318 ], [ 516860.646419937082101, 5276331.64569441601634 ], [ 516863.163113818038255, 5276331.508499074727297 ], [ 516866.341668640263379, 5276331.073144298046827 ], [ 516867.891114889236633, 5276330.344109577126801 ], [ 516869.451485043333378, 5276328.437026088126004 ], [ 516870.785455524746794, 5276326.896048210561275 ], [ 516871.964307384158019, 5276327.043944713659585 ], [ 516874.100963943870738, 5276328.450495004653931 ], [ 516876.459543989039958, 5276331.03576997667551 ], [ 516877.558580015029293, 5276332.806075979955494 ], [ 516878.737888063827995, 5276335.387934657745063 ], [ 516858.794641599641182, 5276335.619135149754584 ], [ 516858.856532025500201, 5276340.187155994586647 ], [ 516834.060515898861922, 5276340.582219516858459 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 34, "id_source": "w342618767", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516902.493528608873021, 5276320.78638772200793 ], [ 516897.75229941814905, 5276316.149218405596912 ], [ 516897.195012957556173, 5276316.647730220109224 ], [ 516895.35987316846149, 5276314.875285129994154 ], [ 516888.603294469648972, 5276321.390703242272139 ], [ 516887.741398174548522, 5276320.732479789294302 ], [ 516882.678544542053714, 5276325.985823540948331 ], [ 516882.880446975876112, 5276326.297599968500435 ], [ 516881.267589553899597, 5276328.171185835264623 ], [ 516879.353850786865223, 5276325.009271685034037 ], [ 516878.84455880720634, 5276321.906998065300286 ], [ 516878.786329990951344, 5276318.672664055600762 ], [ 516878.643383346963674, 5276316.160492591559887 ], [ 516878.579994241823442, 5276312.114823862910271 ], [ 516878.438528888800647, 5276309.091414116322994 ], [ 516878.744295267795678, 5276307.258495224639773 ], [ 516880.817795314185787, 5276304.541582104749978 ], [ 516882.885337260668166, 5276303.880736844614148 ], [ 516884.882474761572666, 5276304.186603574082255 ], [ 516887.755470029194839, 5276305.517495769076049 ], [ 516891.293327631894499, 5276308.106196179054677 ], [ 516893.870187344029546, 5276310.536515596322715 ], [ 516896.012002412695438, 5276312.754408658482134 ], [ 516897.262325910618529, 5276314.158396220766008 ], [ 516902.490468366770074, 5276319.252650953829288 ], [ 516902.493528608873021, 5276320.78638772200793 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 35, "id_source": "w342618768", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516889.246283532760572, 5276301.698613105341792 ], [ 516883.483208679361269, 5276302.33762816619128 ], [ 516880.013209776720032, 5276302.249772400595248 ], [ 516877.876094076375011, 5276300.998814284801483 ], [ 516874.857794859563001, 5276297.967068654485047 ], [ 516872.423862048017327, 5276295.459374033845961 ], [ 516870.731841609871481, 5276293.542869847267866 ], [ 516869.847952455747873, 5276292.695647917687893 ], [ 516875.623787402058952, 5276287.655524424277246 ], [ 516889.545908253116067, 5276273.492227412760258 ], [ 516892.281101699511055, 5276273.13339876383543 ], [ 516893.910225590167101, 5276273.427087199874222 ], [ 516911.137140598497353, 5276290.414771029725671 ], [ 516909.657854619377758, 5276292.844435356557369 ], [ 516908.252398803771939, 5276293.129318228922784 ], [ 516905.96634972532047, 5276291.43335865624249 ], [ 516901.254144720907789, 5276287.140804120339453 ], [ 516898.676213512255345, 5276285.077239450067282 ], [ 516896.904410077724606, 5276284.772021752782166 ], [ 516893.566639267490245, 5276288.296581671573222 ], [ 516889.047854661592282, 5276292.417873037047684 ], [ 516888.09159660973819, 5276293.215305970981717 ], [ 516885.946967976517044, 5276291.964323135092854 ], [ 516884.028165822499432, 5276293.136841103434563 ], [ 516882.483706183149479, 5276294.732775627635419 ], [ 516889.246283532760572, 5276301.698613105341792 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 36, "id_source": "w342618769", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516849.975431495055091, 5276320.356360760517418 ], [ 516851.8123384086648, 5276324.118197196163237 ], [ 516853.720896689395886, 5276326.47988139372319 ], [ 516855.715937200409826, 5276327.508140136487782 ], [ 516858.742756086867303, 5276327.594698653556406 ], [ 516861.251103833317757, 5276327.746441533789039 ], [ 516864.135626647679601, 5276327.688109288923442 ], [ 516866.052289261715487, 5276327.249100607819855 ], [ 516868.197477128880564, 5276325.710471387952566 ], [ 516869.236608734936453, 5276324.824363468214869 ], [ 516869.682542661321349, 5276323.869853686541319 ], [ 516868.949849321856163, 5276322.689650672487915 ], [ 516867.182529767858796, 5276320.83961312379688 ], [ 516866.37620318797417, 5276319.147954587824643 ], [ 516865.635578905115835, 5276318.112210646271706 ], [ 516863.860565833339933, 5276318.91839062422514 ], [ 516862.88972504431149, 5276322.160858820192516 ], [ 516862.515719324641395, 5276324.21586038172245 ], [ 516860.00589013233548, 5276324.575355288572609 ], [ 516857.498602538136765, 5276324.056855018250644 ], [ 516857.061838299734518, 5276321.843910871073604 ], [ 516857.286485051678028, 5276319.488399492576718 ], [ 516856.847790368250571, 5276317.942287973128259 ], [ 516855.07641294284258, 5276317.492602572776377 ], [ 516851.386665978992824, 5276318.070966043509543 ], [ 516849.462908179499209, 5276318.36547742690891 ], [ 516849.975431495055091, 5276320.356360760517418 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 37, "id_source": "w342618770", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516905.054138185689226, 5276352.101874426007271 ], [ 516898.350374342000578, 5276345.602975036017597 ], [ 516903.018478880927432, 5276341.782201295718551 ], [ 516904.854865894943941, 5276343.121207697317004 ], [ 516909.005345055367798, 5276339.07665690779686 ], [ 516907.606708089297172, 5276337.016511903144419 ], [ 516911.755676713073626, 5276333.494315310381353 ], [ 516918.31050590594532, 5276339.548238541930914 ], [ 516905.054138185689226, 5276352.101874426007271 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 38, "id_source": "w343045449", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516824.077421205292922, 5276442.179520559497178 ], [ 516824.103619314031675, 5276433.110595526173711 ], [ 516830.878377931017894, 5276433.230195969343185 ], [ 516830.852747403609101, 5276442.099071180447936 ], [ 516824.077421205292922, 5276442.179520559497178 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 39, "id_source": "w343045452", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516845.197392237838358, 5276458.278031245805323 ], [ 516845.423262091760989, 5276452.899522116407752 ], [ 516856.952532380353659, 5276453.032907165586948 ], [ 516857.042407884611748, 5276458.312304059043527 ], [ 516845.197392237838358, 5276458.278031245805323 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 40, "id_source": "w345737630", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517198.031714984565042, 5276451.651735503226519 ], [ 517203.796214410627726, 5276453.035779909230769 ], [ 517208.593114830437116, 5276456.506398309953511 ], [ 517211.687835552613251, 5276461.550174494273961 ], [ 517212.616989838832524, 5276467.387757888063788 ], [ 517211.232989612733945, 5276473.129593194462359 ], [ 517207.748713313078042, 5276477.909420877695084 ], [ 517202.692073725978844, 5276481.006395558826625 ], [ 517196.838186720618978, 5276481.922681125812232 ], [ 517191.073681523790583, 5276480.549757359549403 ], [ 517186.276823462336324, 5276477.068039351142943 ], [ 517183.182056372985244, 5276472.035390463657677 ], [ 517182.252873389690649, 5276466.197811791673303 ], [ 517183.636879390513059, 5276460.444855847395957 ], [ 517187.121146148361731, 5276455.665013891644776 ], [ 517192.177766465058085, 5276452.57913966011256 ], [ 517198.031714984565042, 5276451.651735503226519 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 41, "id_source": "w345744104", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517259.964529229910113, 5276607.73071498144418 ], [ 517262.758359184081201, 5276607.816793796606362 ], [ 517265.301923562132288, 5276608.713452448137105 ], [ 517266.650065713329241, 5276610.00667099840939 ], [ 517267.162947366770823, 5276611.819770255126059 ], [ 517266.895452177501284, 5276613.374934200197458 ], [ 517265.442617826163769, 5276614.459796715527773 ], [ 517257.89919721649494, 5276615.27098586037755 ], [ 517256.670734889106825, 5276614.144833649508655 ], [ 517254.170060470118187, 5276611.447841245681047 ], [ 517255.650236769462936, 5276611.274403218179941 ], [ 517257.042655503668357, 5276612.83448622841388 ], [ 517262.985662306426093, 5276612.21860325243324 ], [ 517259.964529229910113, 5276607.73071498144418 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 42, "id_source": "w345744105", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517240.901260687445756, 5276615.476259981282055 ], [ 517237.858455763373058, 5276615.767329943366349 ], [ 517235.577870710287243, 5276614.838119643740356 ], [ 517234.329403823299799, 5276612.856136604212224 ], [ 517234.143481754988898, 5276607.154115339741111 ], [ 517235.503110585385002, 5276604.568582092411816 ], [ 517238.212239413638599, 5276602.820591975003481 ], [ 517241.744840459839907, 5276601.997501282952726 ], [ 517244.245977763726842, 5276602.004906795918941 ], [ 517252.150148084503599, 5276608.73004618473351 ], [ 517253.818200126057491, 5276611.057809507474303 ], [ 517247.214726768492255, 5276611.505036083981395 ], [ 517245.448273388494272, 5276609.432604781351984 ], [ 517237.093243043578696, 5276610.385899258777499 ], [ 517240.901260687445756, 5276615.476259981282055 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 43, "id_source": "w387419746", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517074.34571770747425, 5277286.481291118077934 ], [ 517073.815601031994447, 5277285.423907616175711 ], [ 517073.622539670730475, 5277264.184509105980396 ], [ 517075.53335638466524, 5277263.078713825903833 ], [ 517076.426174592168536, 5277263.381409962661564 ], [ 517088.862423049926292, 5277273.798362581990659 ], [ 517075.503046040714253, 5277286.217949401587248 ], [ 517074.34571770747425, 5277286.481291118077934 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 44, "id_source": "w395097932", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516950.782598124700598, 5277399.771897230297327 ], [ 516976.789713834121358, 5277399.725418890826404 ], [ 516976.812687043042388, 5277412.451004424132407 ], [ 516976.815368280746043, 5277414.106996771879494 ], [ 516976.851422933628783, 5277435.223683521151543 ], [ 516951.114820280869026, 5277435.270948335528374 ], [ 516929.053089810709935, 5277455.111913793720305 ], [ 516993.976177690085024, 5277455.067660893313587 ], [ 516993.189909731387161, 5277402.829610265791416 ], [ 516993.096773312136065, 5277398.717162104323506 ], [ 517005.671745092316996, 5277397.586909036152065 ], [ 517007.685480395273771, 5277392.0802520820871 ], [ 517007.646211590908933, 5277384.956069781444967 ], [ 517006.950365502969362, 5277378.930254627019167 ], [ 517004.12191711430205, 5277377.966190176084638 ], [ 516950.912539526296314, 5277378.355617901310325 ], [ 516950.856917472730856, 5277397.460403767414391 ], [ 516950.782598124700598, 5277399.771897230297327 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 45, "id_source": "w395097933", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516863.034932061680593, 5277387.269473287276924 ], [ 516860.046953876328189, 5277386.927400229498744 ], [ 516859.866241743031424, 5277374.123562324792147 ], [ 516805.30252495984314, 5277375.388404211960733 ], [ 516805.397113104758319, 5277381.645852354355156 ], [ 516793.801258020394016, 5277381.801331114023924 ], [ 516794.674426411744207, 5277464.414125978015363 ], [ 516802.348777721053921, 5277464.669662701897323 ], [ 516802.256327421520837, 5277470.682064110413194 ], [ 516805.464359833393246, 5277470.224535719491541 ], [ 516805.017967201885767, 5277489.583817024715245 ], [ 516809.396681535465177, 5277492.01930742431432 ], [ 516806.79525656288024, 5277498.268973419442773 ], [ 516804.580934366211295, 5277497.895819933153689 ], [ 516794.048058926768135, 5277494.108898930251598 ], [ 516788.810651340521872, 5277489.959389437921345 ], [ 516785.688078753475565, 5277486.827354734763503 ], [ 516783.973901469027624, 5277482.287905092351139 ], [ 516783.984698798099998, 5277478.542521808296442 ], [ 516782.501129335782025, 5277341.891761313192546 ], [ 516784.074300747073721, 5277340.651529593393207 ], [ 516891.373962575104088, 5277339.328077659010887 ], [ 516891.272426267038099, 5277345.851694053970277 ], [ 516875.455994656716939, 5277345.961425642482936 ], [ 516863.034932061680593, 5277387.269473287276924 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 46, "id_source": "w395097934", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517019.950111921411008, 5277384.08067733515054 ], [ 517019.962440094444901, 5277387.570506259799004 ], [ 517020.398079790233169, 5277387.549551795236766 ], [ 517021.397391892562155, 5277472.152171716094017 ], [ 517021.509628261090256, 5277479.998977976851165 ], [ 517019.369208245712798, 5277480.037176531739533 ], [ 517019.571434503071941, 5277487.928701876662672 ], [ 517007.404942470835522, 5277488.115428001619875 ], [ 517007.331165642826818, 5277485.092206737957895 ], [ 517004.185800015751738, 5277484.660687646828592 ], [ 516999.904898837383371, 5277484.759326064959168 ], [ 516999.840834557253402, 5277480.980381866917014 ], [ 516999.51992562081432, 5277480.29037737287581 ], [ 516928.875338061538059, 5277480.084533797577024 ], [ 516928.283628532488365, 5277482.127787612378597 ], [ 517024.800330617115833, 5277497.502023031003773 ], [ 517024.957025903160684, 5277495.279682827182114 ], [ 517025.822427126695402, 5277481.834283281117678 ], [ 517025.979773205064703, 5277479.389665226452053 ], [ 517027.62866405560635, 5277454.832566075026989 ], [ 517027.720339584862813, 5277449.164698623120785 ], [ 517027.833178302680608, 5277441.396348789334297 ], [ 517027.170987900812179, 5277403.328993655741215 ], [ 517073.383038537052926, 5277394.517563253641129 ], [ 517074.671501213044394, 5277393.065408975817263 ], [ 517077.008046307542827, 5277390.182624198496342 ], [ 517079.219773042947054, 5277388.888774883002043 ], [ 517077.084387493494432, 5277376.957199269905686 ], [ 517072.18918880529236, 5277376.509397665970027 ], [ 517024.003603314515203, 5277377.024030573666096 ], [ 517024.058002053876407, 5277384.103801283054054 ], [ 517019.950111921411008, 5277384.08067733515054 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 47, "id_source": "w395097935", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516868.770101723086555, 5277393.298754908144474 ], [ 516870.462444369506557, 5277382.034073974005878 ], [ 516877.840151886281092, 5277360.305381040088832 ], [ 516878.285049677535426, 5277393.359672509133816 ], [ 516874.845611660857685, 5277393.316360782831907 ], [ 516868.770101723086555, 5277393.298754908144474 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 48, "id_source": "w395097936", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516842.170450465055183, 5277437.210915596224368 ], [ 516842.529669232899323, 5277406.492889385670424 ], [ 516874.762992984557059, 5277406.275032329373062 ], [ 516875.365418186527677, 5277400.530846133828163 ], [ 516886.599087996815797, 5277400.952406934462488 ], [ 516928.285059344372712, 5277437.727399924769998 ], [ 516842.170450465055183, 5277437.210915596224368 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 49, "id_source": "w395097937", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516901.92081075895112, 5277346.138218006119132 ], [ 516902.023585006361827, 5277339.192273776046932 ], [ 516935.466940246638842, 5277338.789325847290456 ], [ 516935.197084536834154, 5277351.525171746499836 ], [ 516925.251642388233449, 5277352.274231209419668 ], [ 516925.482551758817863, 5277389.095547544769943 ], [ 516923.454844661755487, 5277389.100767223164439 ], [ 516906.287520830519497, 5277388.939752215519547 ], [ 516905.630570620356593, 5277346.204558455385268 ], [ 516901.92081075895112, 5277346.138218006119132 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 50, "id_source": "w400596004", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516849.974800481111743, 5276626.91305841691792 ], [ 516851.588837718300056, 5276627.195578062906861 ], [ 516852.968300470733084, 5276628.077573969960213 ], [ 516853.903269579051994, 5276629.425070749595761 ], [ 516854.259192514640745, 5276631.0153992716223 ], [ 516853.969115059589967, 5276632.626086154952645 ], [ 516853.086353658582084, 5276634.001664360053837 ], [ 516851.746715493267402, 5276634.931361604481936 ], [ 516850.14586920524016, 5276635.28237665258348 ], [ 516848.53183414414525, 5276634.999857395887375 ], [ 516847.152372373675462, 5276634.117862526327372 ], [ 516846.209859439579304, 5276632.78145897667855 ], [ 516845.861477453028783, 5276631.180038791149855 ], [ 516846.144009696785361, 5276629.580443668179214 ], [ 516847.026770114374813, 5276628.204864426515996 ], [ 516848.373952101857867, 5276627.264073950238526 ], [ 516849.974800481111743, 5276626.91305841691792 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 51, "id_source": "w400597926", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516888.607160441344604, 5276599.795725983567536 ], [ 516886.369678344228305, 5276599.52250230871141 ], [ 516884.029363043198828, 5276598.448775165714324 ], [ 516883.395219611236826, 5276596.968778026290238 ], [ 516883.085302418854553, 5276595.056275879964232 ], [ 516883.62289607146522, 5276593.56856178957969 ], [ 516884.581714557483792, 5276591.870903476141393 ], [ 516886.131867414689623, 5276590.87514031957835 ], [ 516887.99580426060129, 5276590.458214192651212 ], [ 516890.811793032684363, 5276590.677546450868249 ], [ 516892.297282087907661, 5276591.259781807661057 ], [ 516893.518791984417476, 5276592.219126921147108 ], [ 516894.371040587546304, 5276593.599732105620205 ], [ 516894.735690879111644, 5276594.767757330089808 ], [ 516894.626217450713739, 5276596.256712383590639 ], [ 516894.035593363863882, 5276597.899867290630937 ], [ 516892.80841081199469, 5276598.896565194241703 ], [ 516891.161648435052484, 5276599.536399168893695 ], [ 516888.607160441344604, 5276599.795725983567536 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 52, "id_source": "w400601709", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517066.445795848267153, 5276532.830110687762499 ], [ 517067.877435012836941, 5276533.845678032375872 ], [ 517068.354426381760277, 5276535.114069206640124 ], [ 517068.192167645844165, 5276536.658436276949942 ], [ 517066.856824344606139, 5276538.66615242511034 ], [ 517061.78498737240443, 5276544.430558699183166 ], [ 517059.439831006515305, 5276545.012729303911328 ], [ 517056.992971596890129, 5276544.416521552950144 ], [ 517055.405457444372587, 5276542.767003753222525 ], [ 517055.034073568182066, 5276541.343327248468995 ], [ 517055.144663006940391, 5276539.487617188133299 ], [ 517055.953483059303835, 5276537.733977769501507 ], [ 517057.392739939736202, 5276536.148894566111267 ], [ 517065.011811412288807, 5276532.61474306602031 ], [ 517065.860555740597192, 5276532.617230146192014 ], [ 517066.445795848267153, 5276532.830110687762499 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 53, "id_source": "w400613444", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516987.452493651013356, 5276596.971303411759436 ], [ 516983.756675439246465, 5276573.932366390712559 ], [ 516981.214040140039288, 5276567.545529939234257 ], [ 516987.642917154124007, 5276557.439447787590325 ], [ 516980.883114801777992, 5276552.240621170029044 ], [ 516994.80080003826879, 5276529.175265032798052 ], [ 516975.883787118422333, 5276512.549156718887389 ], [ 517036.108190654893406, 5276502.144512789323926 ], [ 517036.32497173291631, 5276505.068122293800116 ], [ 517006.788756772992201, 5276544.514203958213329 ], [ 517025.338118888263125, 5276558.371959769167006 ], [ 517025.328469115775079, 5276561.672782326117158 ], [ 517003.51125269010663, 5276586.593259064480662 ], [ 517002.50389213958988, 5276594.614608574658632 ], [ 516987.452493651013356, 5276596.971303411759436 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 54, "id_source": "w435813577", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516565.160712962970138, 5277473.936993055045605 ], [ 516586.958641037694179, 5277459.239679417572916 ], [ 516582.635480685392395, 5277455.715344563126564 ], [ 516586.365512145508546, 5277453.914389882236719 ], [ 516589.487032977747731, 5277454.823516473174095 ], [ 516592.104793138511013, 5277455.942374826408923 ], [ 516593.513503284135368, 5277457.046674339100718 ], [ 516602.634818743506912, 5277471.331923814490438 ], [ 516602.927762665727641, 5277473.944546245038509 ], [ 516602.719261647376698, 5277475.955583387054503 ], [ 516602.210971284541301, 5277477.754599887877703 ], [ 516601.605877951718867, 5277479.264376729726791 ], [ 516600.597284538904205, 5277480.061707899905741 ], [ 516598.478668734082021, 5277480.355745058506727 ], [ 516595.979775559797417, 5277474.424866015091538 ], [ 516567.273035817081109, 5277475.854609301313758 ], [ 516565.959991996991448, 5277475.439655515365303 ], [ 516565.73545712226769, 5277475.172280942089856 ], [ 516565.263984411314595, 5277474.593012128025293 ], [ 516565.160712962970138, 5277473.936993055045605 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 55, "id_source": "w435819540", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516654.01805674447678, 5277499.941602813079953 ], [ 516653.819298847403843, 5277498.540671728551388 ], [ 516654.430482894182205, 5277497.53104710765183 ], [ 516669.56221590784844, 5277487.238343390636146 ], [ 516671.478355312021449, 5277486.843726397491992 ], [ 516673.691735107859131, 5277487.550246145576239 ], [ 516675.402245739591308, 5277488.155300498940051 ], [ 516676.510509447951335, 5277489.269873730838299 ], [ 516677.712993269320577, 5277491.573913846164942 ], [ 516678.007048576080706, 5277493.786439917981625 ], [ 516677.797089598549064, 5277496.297599874436855 ], [ 516677.087446670804638, 5277497.595903730019927 ], [ 516676.175295095425099, 5277498.80471570417285 ], [ 516674.971440919849556, 5277499.601474764756858 ], [ 516673.558459573832806, 5277499.997531560249627 ], [ 516654.872834386012983, 5277500.410835509188473 ], [ 516654.01805674447678, 5277499.941602813079953 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 56, "id_source": "w435819541", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516592.562656500318553, 5277392.782894633710384 ], [ 516593.564105231547728, 5277394.497302561067045 ], [ 516595.476563399017323, 5277395.402986350469291 ], [ 516597.790752420609351, 5277395.0094796391204 ], [ 516607.365527006273624, 5277392.525022241286933 ], [ 516609.186061897780746, 5277391.429930838756263 ], [ 516610.090706246264745, 5277390.221087141893804 ], [ 516610.906056514824741, 5277388.723025188781321 ], [ 516611.007426889962517, 5277387.41186405159533 ], [ 516611.011422151408624, 5277386.011513214558363 ], [ 516610.609057795954868, 5277384.898966672830284 ], [ 516609.80949227954261, 5277383.496323361061513 ], [ 516605.273280631110538, 5277386.195196626707911 ], [ 516597.643240055942442, 5277375.626267831772566 ], [ 516603.089583630498964, 5277372.429854614660144 ], [ 516602.087531711440533, 5277370.92660912219435 ], [ 516600.077469086798374, 5277370.009530962444842 ], [ 516597.261530381045304, 5277369.901477105915546 ], [ 516594.94039169914322, 5277370.094912517815828 ], [ 516593.023047319846228, 5277370.900768828578293 ], [ 516591.11324507399695, 5277371.695533276535571 ], [ 516588.691058366501238, 5277373.088993662036955 ], [ 516587.575568009051494, 5277374.497291675768793 ], [ 516586.969644743367098, 5277376.296031087636948 ], [ 516586.964198803470936, 5277378.207621091045439 ], [ 516587.058978121494874, 5277379.208149813115597 ], [ 516591.701180707721505, 5277376.209486835636199 ], [ 516597.807354450516868, 5277389.185798333026469 ], [ 516592.562656500318553, 5277392.782894633710384 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 57, "id_source": "w437560217", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516148.231295185163617, 5276961.166997685097158 ], [ 516140.350367845327128, 5276932.226588282734156 ], [ 516145.994908686319832, 5276930.741850190795958 ], [ 516150.628329529135954, 5276930.954750994220376 ], [ 516153.84672470134683, 5276932.264013238251209 ], [ 516155.854510829958599, 5276934.081161126494408 ], [ 516157.667300542409066, 5276935.797742884606123 ], [ 516158.669265022152103, 5276937.40093541238457 ], [ 516161.355179659789428, 5276949.255885404534638 ], [ 516160.846672745014075, 5276951.166077611967921 ], [ 516159.428011789685115, 5276953.573872858658433 ], [ 516157.309768773964606, 5276956.379830311983824 ], [ 516155.186268224904779, 5276958.374453850090504 ], [ 516152.162593252724037, 5276959.977592044509947 ], [ 516148.231295185163617, 5276961.166997685097158 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 58, "id_source": "w437582713", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516041.836825901409611, 5277296.659471808932722 ], [ 516043.63620664307382, 5277300.487638493068516 ], [ 516046.049194930470549, 5277302.394778434187174 ], [ 516047.757312518602703, 5277303.910987295210361 ], [ 516049.768066141288728, 5277304.616710420697927 ], [ 516051.277302989154123, 5277304.720896753482521 ], [ 516099.248974451620597, 5277294.817420925945044 ], [ 516101.565135880198795, 5277293.712427788414061 ], [ 516103.589759587019216, 5277292.117614130489528 ], [ 516104.19446591072483, 5277290.70781128667295 ], [ 516104.70735214772867, 5277287.197212439961731 ], [ 516104.509284499159548, 5277285.496225762180984 ], [ 516103.423106525558978, 5277279.058227592147887 ], [ 516087.800845949270297, 5277282.22698091994971 ], [ 516089.394682380952872, 5277289.766662889160216 ], [ 516061.682170145155396, 5277295.313822302035987 ], [ 516060.780937482253648, 5277292.599525346420705 ], [ 516041.836825901409611, 5277296.659471808932722 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 59, "id_source": "w437582716", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516087.971930546045769, 5277329.028421093709767 ], [ 516082.89834433136275, 5277306.119606190361083 ], [ 516099.22767809801735, 5277302.519349787384272 ], [ 516102.242739444889594, 5277303.961390778422356 ], [ 516103.041608022584114, 5277305.664039053954184 ], [ 516103.646015100879595, 5277307.077186118811369 ], [ 516103.497296726854984, 5277325.548209192231297 ], [ 516087.971930546045769, 5277329.028421093709767 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 60, "id_source": "w437589848", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516013.250200282898732, 5277322.420780627056956 ], [ 516009.765244867128786, 5277306.14033189509064 ], [ 516034.405782080197241, 5277300.684490776620805 ], [ 516038.566727487370372, 5277308.731358015909791 ], [ 516043.982657742511947, 5277316.481609044596553 ], [ 516013.250200282898732, 5277322.420780627056956 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 61, "id_source": "w438978440", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516964.874102490895893, 5276715.691669804044068 ], [ 516960.952699856192339, 5276713.368539907038212 ], [ 516958.644364364212379, 5276711.650264710187912 ], [ 516956.640245083544869, 5276708.632540868595243 ], [ 516955.839597265876364, 5276705.018166916444898 ], [ 516954.745445047039539, 5276701.602990162558854 ], [ 516952.63383963907836, 5276699.38516120519489 ], [ 516949.717994845064823, 5276697.365043761208653 ], [ 516947.306536089163274, 5276694.946292435750365 ], [ 516945.2029859998147, 5276692.539552057161927 ], [ 516944.304429570096545, 5276689.013806753791869 ], [ 516943.812005724117626, 5276685.300305660814047 ], [ 516943.019439475552645, 5276681.485905591398478 ], [ 516942.119392637105193, 5276678.471399303525686 ], [ 516940.82068906276254, 5276675.655785036273301 ], [ 516938.710814528341871, 5276672.837811584584415 ], [ 516937.505676006956492, 5276671.422831314615905 ], [ 516938.313989993766882, 5276669.824769679456949 ], [ 516940.339383224258199, 5276668.119108679704368 ], [ 516942.055054935975932, 5276667.023816044442356 ], [ 516943.256789020786528, 5276667.027312304824591 ], [ 516946.076498124748468, 5276668.535903649404645 ], [ 516949.593225368706044, 5276670.557767959311604 ], [ 516953.719524624990299, 5276672.170191851444542 ], [ 516956.544179731572513, 5276671.978364228270948 ], [ 516960.776273791969288, 5276670.790378994308412 ], [ 516964.301768365025055, 5276669.800390003249049 ], [ 516967.932448230974842, 5276668.799595638178289 ], [ 516971.259748495649546, 5276668.809291303157806 ], [ 516973.169148603861686, 5276670.826485947705805 ], [ 516974.975469093071297, 5276672.132086229510605 ], [ 516977.393956848361995, 5276672.13913638330996 ], [ 516980.116669326205738, 5276670.846739260479808 ], [ 516982.42796411953168, 5276671.553659514524043 ], [ 516983.734742814325728, 5276674.169255105778575 ], [ 516984.435185535170604, 5276676.082902009598911 ], [ 516984.731826092931442, 5276677.384102518670261 ], [ 516984.11904106521979, 5276678.893816226162016 ], [ 516982.699575853766873, 5276684.013220119290054 ], [ 516982.383432620612439, 5276686.824134463444352 ], [ 516983.378658129891846, 5276693.2509158058092 ], [ 516985.475417279987596, 5276697.980471583083272 ], [ 516987.379550827143248, 5276701.798120092600584 ], [ 516989.588198829093017, 5276704.216296444647014 ], [ 516989.98823685006937, 5276706.117953753098845 ], [ 516989.170619533280842, 5276708.327249999158084 ], [ 516985.538394717557821, 5276712.439940376207232 ], [ 516982.300851388135925, 5276715.142308777198195 ], [ 516979.075228797388263, 5276716.33321273047477 ], [ 516974.438748443732038, 5276717.119902653619647 ], [ 516971.118986550602131, 5276717.11022699251771 ], [ 516967.793171100725885, 5276716.600406582467258 ], [ 516964.874102490895893, 5276715.691669804044068 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 62, "id_source": "w511510926", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516345.249631054000929, 5277449.853823395445943 ], [ 516346.759324829850812, 5277441.75596734508872 ], [ 516348.962936142401304, 5277429.914647633209825 ], [ 516344.274934911285527, 5277425.211383985355496 ], [ 516347.566448008583393, 5277421.764176031574607 ], [ 516344.424651509500109, 5277420.032687746919692 ], [ 516343.132455579412635, 5277420.206884070299566 ], [ 516342.425155669741798, 5277420.693913970142603 ], [ 516340.761748474324122, 5277427.368749489076436 ], [ 516345.421530891850125, 5277428.748849832452834 ], [ 516343.572270487900823, 5277437.423680024221539 ], [ 516346.770090397272725, 5277437.92167298682034 ], [ 516344.393916437285952, 5277449.706939280033112 ], [ 516344.769251767138485, 5277449.763562897220254 ], [ 516345.249631054000929, 5277449.853823395445943 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 63, "id_source": "w511510929", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516461.098823564767372, 5277428.007816318422556 ], [ 516457.02458500477951, 5277426.718190221115947 ], [ 516453.567786264000461, 5277424.852384639903903 ], [ 516452.598508212831803, 5277422.37122683506459 ], [ 516453.50194973917678, 5277418.917330568656325 ], [ 516455.016176005243324, 5277417.243398266844451 ], [ 516457.949517434288282, 5277415.662389588542283 ], [ 516461.501183607848361, 5277415.850254211574793 ], [ 516464.518171595002059, 5277416.558966252952814 ], [ 516466.490847017907072, 5277417.420321987941861 ], [ 516461.098823564767372, 5277428.007816318422556 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 64, "id_source": "w511510936", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516413.291072103602346, 5277414.558290612883866 ], [ 516399.563981445098761, 5277400.849407986737788 ], [ 516400.101065565017052, 5277399.47278680279851 ], [ 516401.970277152664494, 5277399.744787974283099 ], [ 516428.889549283951055, 5277409.111976910382509 ], [ 516429.463419294392224, 5277410.669554119929671 ], [ 516429.05663146689767, 5277411.112965608946979 ], [ 516414.003883312281687, 5277414.782579838298261 ], [ 516413.291072103602346, 5277414.558290612883866 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 65, "id_source": "w511510937", "type": "hedge", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516387.519644212210551, 5277392.268841031938791 ], [ 516412.032716302375775, 5277418.711373525671661 ], [ 516435.044775786926039, 5277412.808077803812921 ], [ 516436.348208549723495, 5277408.655127067118883 ], [ 516388.272886697610375, 5277391.470754365436733 ], [ 516387.521771378815174, 5277391.513096115551889 ], [ 516387.519644212210551, 5277392.268841031938791 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 66, "id_source": "w511510938", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516349.122218859847635, 5277389.237914191558957 ], [ 516376.971867700514849, 5277417.645729565061629 ], [ 516375.131277973239776, 5277423.219772600568831 ], [ 516379.251133432786446, 5277426.987888126634061 ], [ 516387.022299335862044, 5277424.886984696611762 ], [ 516383.886990124185104, 5277420.85489853285253 ], [ 516394.010882213362493, 5277418.004874652251601 ], [ 516362.986457669641823, 5277386.264972837641835 ], [ 516367.564459832792636, 5277384.688541206531227 ], [ 516361.748995233152527, 5277382.993984006345272 ], [ 516358.775819219939876, 5277382.718893859535456 ], [ 516356.288664200867061, 5277383.200921459123492 ], [ 516353.086101360968314, 5277384.381121629849076 ], [ 516350.820624282234348, 5277386.152996275573969 ], [ 516349.350730523292441, 5277388.093815576285124 ], [ 516349.122218859847635, 5277389.237914191558957 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 67, "id_source": "w511510939", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516344.691889998619445, 5277402.417773661203682 ], [ 516346.124426398251671, 5277397.731694337911904 ], [ 516350.154200024495367, 5277401.49953602347523 ], [ 516344.691889998619445, 5277402.417773661203682 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 68, "id_source": "w511510940", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516364.768550980137661, 5277430.892627101391554 ], [ 516375.606227438431233, 5277427.911209838464856 ], [ 516372.154404024593532, 5277424.267229223623872 ], [ 516366.998391307774, 5277425.764234390109777 ], [ 516362.480660552682821, 5277421.939439468085766 ], [ 516361.48695067880908, 5277428.138250023126602 ], [ 516364.768550980137661, 5277430.892627101391554 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 69, "id_source": "w617671556", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516180.092093858111184, 5277671.483252213336527 ], [ 516199.821587358426768, 5277678.940034786239266 ], [ 516201.086392213706858, 5277656.204337294213474 ], [ 516197.985469670325983, 5277656.006770871579647 ], [ 516195.177677093539387, 5277647.619013450108469 ], [ 516196.122834226523992, 5277623.704344338737428 ], [ 516167.449725878075697, 5277616.033794342540205 ], [ 516163.495264794502873, 5277633.838533106260002 ], [ 516180.092093858111184, 5277671.483252213336527 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 70, "id_source": "w617671557", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516137.574281121953391, 5277703.44020395167172 ], [ 516147.381181092991028, 5277706.357033611275256 ], [ 516169.025934602017514, 5277719.075941341929138 ], [ 516185.04201722756261, 5277725.110886143520474 ], [ 516200.509353643690702, 5277688.155444013886154 ], [ 516192.379050977702718, 5277684.531892837956548 ], [ 516188.176714532019105, 5277696.945643622428179 ], [ 516187.343746514350642, 5277699.43286060821265 ], [ 516170.952737226791214, 5277693.174588869325817 ], [ 516165.541146222443786, 5277689.458601790480316 ], [ 516162.140329532674514, 5277683.681000236421824 ], [ 516158.534901527047623, 5277673.157160550355911 ], [ 516152.504341740335803, 5277673.284907204099 ], [ 516137.574281121953391, 5277703.44020395167172 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 71, "id_source": "w617671559", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516242.378148338058963, 5277749.021166557446122 ], [ 516236.565128630085383, 5277749.260572599247098 ], [ 516231.144996893359348, 5277751.334887972101569 ], [ 516226.666565928782802, 5277755.023361507803202 ], [ 516223.603984520188533, 5277759.949436793103814 ], [ 516222.274102147785015, 5277765.591637076810002 ], [ 516258.015213019330986, 5277764.335436600260437 ], [ 516256.191418932692613, 5277758.595525129698217 ], [ 516252.72752354235854, 5277753.940206101164222 ], [ 516247.953195728652645, 5277750.637138257734478 ], [ 516242.378148338058963, 5277749.021166557446122 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 72, "id_source": "r3327971", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516424.964104821963701, 5276180.740065201185644 ], [ 516446.595749705971684, 5276245.128729283809662 ], [ 516476.740098067792132, 5276231.521524302661419 ], [ 516589.288905209454242, 5276171.881165928207338 ], [ 516584.977519440813921, 5276137.504510704427958 ], [ 516563.365462852932978, 5276095.676737695932388 ], [ 516449.507493920740671, 5276158.314668531529605 ], [ 516424.964104821963701, 5276180.740065201185644 ] ], [ [ 516439.578897476778366, 5276192.317591353319585 ], [ 516447.579363307973836, 5276165.466615495271981 ], [ 516501.321642060705926, 5276134.644010124728084 ], [ 516548.032741847157013, 5276112.059593254700303 ], [ 516577.610268933291081, 5276171.24776020180434 ], [ 516533.853454668540508, 5276198.452620967291296 ], [ 516518.01794817391783, 5276206.843188677914441 ], [ 516462.779899108514655, 5276232.904635717161 ], [ 516439.578897476778366, 5276192.317591353319585 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 73, "id_source": "r2547212", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516511.728878316469491, 5277542.502993915230036 ], [ 516509.458663688972592, 5277548.598135016858578 ], [ 516508.428539135609753, 5277556.997388773597777 ], [ 516512.592472666525282, 5277637.830123279243708 ], [ 516514.347054536046926, 5277646.715177794918418 ], [ 516518.102989915234502, 5277654.261118380352855 ], [ 516522.906591688748449, 5277660.454128104262054 ], [ 516529.095505628734827, 5277665.395194073207676 ], [ 516537.0376999162836, 5277669.085365911014378 ], [ 516543.626879298943095, 5277670.582247513346374 ], [ 516549.625803072296549, 5277671.021629521623254 ], [ 516554.912710135336965, 5277670.969977363012731 ], [ 516561.680830880417489, 5277670.27793216239661 ], [ 516569.286877789534628, 5277668.054548919200897 ], [ 516575.829802344844211, 5277664.694521479308605 ], [ 516580.594299512333237, 5277660.862648424692452 ], [ 516584.941971972002648, 5277655.729254907928407 ], [ 516588.404884741699789, 5277650.115441950038075 ], [ 516590.91579830943374, 5277643.898762488737702 ], [ 516591.939280900929589, 5277637.866782613098621 ], [ 516592.074796514818445, 5277632.476883607916534 ], [ 516587.64069943112554, 5277554.599638471379876 ], [ 516586.645097538887057, 5277548.206258443184197 ], [ 516584.529217125964351, 5277542.276474807411432 ], [ 516581.869245822133962, 5277537.534339076839387 ], [ 516577.783436004887335, 5277532.432496793568134 ], [ 516571.565046277886722, 5277527.257902973331511 ], [ 516564.328088305133861, 5277523.747516012750566 ], [ 516558.453025791910477, 5277521.952565498650074 ], [ 516551.80158152646618, 5277521.166786517947912 ], [ 516544.321569516381714, 5277521.256665566004813 ], [ 516537.845462927303743, 5277522.194068890064955 ], [ 516530.118735325871967, 5277524.539404842071235 ], [ 516523.988747052499093, 5277527.88954158872366 ], [ 516518.334658114239573, 5277532.908133145421743 ], [ 516514.996943991049193, 5277536.744103870354593 ], [ 516511.728878316469491, 5277542.502993915230036 ] ], [ [ 516515.101216177165043, 5277544.990978563204408 ], [ 516579.062307949876413, 5277542.205334203317761 ], [ 516584.643629545345902, 5277647.103948470205069 ], [ 516520.616006066615228, 5277649.922679178416729 ], [ 516515.101216177165043, 5277544.990978563204408 ] ] ] } }, -{ "type": "Feature", "properties": { "id": 74, "id_source": "r2596906", "type": "farmland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515957.49437283462612, 5277002.251885491423309 ], [ 515939.832338418927975, 5276982.109447724185884 ], [ 515917.25031423807377, 5276874.21992661524564 ], [ 515797.151130122249015, 5276884.117732216604054 ], [ 515789.493895635474473, 5276860.635375917889178 ], [ 515797.3460493835737, 5276812.266453668475151 ], [ 515798.35565959016094, 5276692.049411842599511 ], [ 515781.300044359115418, 5276655.449334780685604 ], [ 515758.878400046203751, 5276650.487358752638102 ], [ 515724.0696098000044, 5276612.739157604984939 ], [ 515710.99093292321777, 5276568.970413548871875 ], [ 515730.412854463036638, 5276563.988216451369226 ], [ 515713.555327681649942, 5276481.510449754074216 ], [ 515738.935830716916826, 5276428.554276085458696 ], [ 515780.974177877011243, 5276387.646404875442386 ], [ 515862.158595570886973, 5276370.062384689226747 ], [ 515868.740786949871108, 5276374.725951042957604 ], [ 515880.71889641386224, 5276394.874869927763939 ], [ 515895.384233975200914, 5276426.656352461315691 ], [ 515936.949573575693648, 5276419.023513428866863 ], [ 515982.745153642783407, 5276421.860817108303308 ], [ 516014.938195353723131, 5276432.785367758013308 ], [ 516044.765344845538493, 5276457.251500864513218 ], [ 516084.315797048737295, 5276474.776178585365415 ], [ 516139.793746621522587, 5276488.088596286252141 ], [ 516151.474271408224013, 5276509.493134968914092 ], [ 516160.522331375337671, 5276515.919879980385303 ], [ 516170.691975930531044, 5276526.873137758113444 ], [ 516177.062647754093632, 5276545.340015360154212 ], [ 516173.968933883821592, 5276572.082741529680789 ], [ 516176.049981605785433, 5276639.505851536989212 ], [ 516197.513448089594021, 5276664.805333492346108 ], [ 516209.481136448855978, 5276709.661272699013352 ], [ 516202.57157293864293, 5276747.3072899132967 ], [ 516217.266712748503778, 5276762.040864913724363 ], [ 516252.455742757359985, 5276863.920727244578302 ], [ 516189.937303205893841, 5276885.485504798591137 ], [ 516118.507856099924538, 5276894.900934981182218 ], [ 516120.457810344058089, 5276906.764941655099392 ], [ 516025.190100993728265, 5276927.129516770131886 ], [ 516038.327794493525289, 5276994.671958418563008 ], [ 515957.49437283462612, 5277002.251885491423309 ] ], [ [ 515798.38708906742977, 5276572.485462988726795 ], [ 515873.749549317057244, 5276562.576684392057359 ], [ 515880.149400955764577, 5276567.917721018195152 ], [ 515884.054680912871845, 5276603.882047647610307 ], [ 515833.45187001361046, 5276645.832833437249064 ], [ 515818.858019669074565, 5276607.172144838608801 ], [ 515806.844904647674412, 5276605.539114874787629 ], [ 515794.085619043151382, 5276579.931265401653945 ], [ 515798.38708906742977, 5276572.485462988726795 ] ], [ [ 516070.928083823877387, 5276679.947497542016208 ], [ 516163.584448294772301, 5276646.68420516513288 ], [ 516191.354534212034196, 5276713.422937500290573 ], [ 516181.481405027850997, 5276733.745174184441566 ], [ 516188.13311696331948, 5276786.110463745892048 ], [ 516134.831672320084181, 5276796.131819072179496 ], [ 516129.98018588864943, 5276774.27942640800029 ], [ 516138.315410157782026, 5276766.767247997224331 ], [ 516127.427188092493452, 5276741.497257271781564 ], [ 516101.368025715986732, 5276740.30263580288738 ], [ 516092.356474522151984, 5276718.049787561409175 ], [ 516070.928083823877387, 5276679.947497542016208 ] ] ] } } +{ "type": "Feature", "properties": { "id_veget": 1, "id_source": "w12857563", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515359.689912668196484, 5276849.327663001604378 ], [ 515433.83657165186014, 5276843.088724059984088 ], [ 515462.798841465846635, 5276862.448288119398057 ], [ 515498.470095688011497, 5276782.21137666888535 ], [ 515501.888150013692211, 5276773.496012406423688 ], [ 515515.612912809359841, 5276749.959845633246005 ], [ 515517.950578834919725, 5276743.642228845506907 ], [ 515529.003011146211065, 5276694.236780166625977 ], [ 515526.846030670974869, 5276660.944709153845906 ], [ 515529.460760488174856, 5276649.326476152054965 ], [ 515529.174368716718163, 5276629.976303763687611 ], [ 515445.304901980154682, 5276653.526025811210275 ], [ 515359.689912668196484, 5276849.327663001604378 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 2, "id_source": "w12857656", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515343.757617592695169, 5276291.409346736036241 ], [ 515385.633669471309986, 5276299.877513035200536 ], [ 515410.009723817347549, 5276347.498574674129486 ], [ 515372.545787538692821, 5276375.039978321641684 ], [ 515394.990539476159029, 5276420.088562174700201 ], [ 515396.728893784747925, 5276492.722873383201659 ], [ 515504.505337504961062, 5276450.586820833384991 ], [ 515614.198194220603909, 5276414.248268354684114 ], [ 515641.968510571401566, 5276396.962782558053732 ], [ 515635.679187179193832, 5276339.108853162266314 ], [ 515580.172636687813792, 5276360.810143774375319 ], [ 515569.354638654040173, 5276308.078827827237546 ], [ 515535.168614656082354, 5276314.411408226005733 ], [ 515539.114082888932899, 5276285.503418436273932 ], [ 515582.351264594355598, 5276270.837374015711248 ], [ 515580.562941643234808, 5276214.907163170166314 ], [ 515588.993137348326854, 5276166.32839472219348 ], [ 515602.083840425009839, 5276124.975079863332212 ], [ 515610.808245217893273, 5276123.687009785324335 ], [ 515609.611878811207134, 5276135.653532183729112 ], [ 515608.943871890718583, 5276141.064237778075039 ], [ 515606.448396491003223, 5276147.281365260481834 ], [ 515603.2399085839279, 5276156.086135141551495 ], [ 515601.767166831123177, 5276170.285824213176966 ], [ 515594.823836739815306, 5276213.367147841490805 ], [ 515595.740474317048211, 5276221.693955044262111 ], [ 515601.906346434552688, 5276227.689776824787259 ], [ 515602.567286500998307, 5276236.12703996617347 ], [ 515599.287540269142482, 5276257.534848567098379 ], [ 515599.749900937255006, 5276272.806663265451789 ], [ 515603.90617443312658, 5276271.88422460667789 ], [ 515609.122553380206227, 5276281.800737847574055 ], [ 515627.890953878522851, 5276305.14592255000025 ], [ 515636.054326879384462, 5276319.682661638595164 ], [ 515637.894991539826151, 5276325.133442927151918 ], [ 515645.237423780490644, 5276329.287554451264441 ], [ 515655.03104012174299, 5276335.304294510744512 ], [ 515648.985326239955612, 5276337.766459714621305 ], [ 515653.961259507457726, 5276364.43110447190702 ], [ 515657.448934570129495, 5276374.698663791641593 ], [ 515655.831688871665392, 5276381.15152642223984 ], [ 515635.355616968125105, 5276423.262881578877568 ], [ 515594.679708292591386, 5276480.390715794637799 ], [ 515551.436095804907382, 5276500.847022201865911 ], [ 515528.278370503685437, 5276481.502509543672204 ], [ 515431.505189823103137, 5276506.951872698962688 ], [ 515328.36959204840241, 5276501.544856464490294 ], [ 515313.449854872014839, 5276536.847994335927069 ], [ 515281.172935623908415, 5276554.756711267866194 ], [ 515247.779327853757422, 5276505.823338583111763 ], [ 515225.316182230308186, 5276464.63181468565017 ], [ 515238.285021908464842, 5276437.036437505856156 ], [ 515262.05616927833762, 5276469.229131908155978 ], [ 515292.979905914515257, 5276477.667948589660227 ], [ 515328.538754639273975, 5276437.273284641094506 ], [ 515365.295813352218829, 5276435.436316077597439 ], [ 515357.667812007537577, 5276394.28344146348536 ], [ 515285.540379152400419, 5276364.530569509603083 ], [ 515343.757617592695169, 5276291.409346736036241 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 3, "id_source": "w12857680", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515416.028572909825016, 5276267.171717971563339 ], [ 515367.840090686455369, 5276202.772373523563147 ], [ 515438.861839759047143, 5276165.683999580331147 ], [ 515457.968488169834018, 5276254.435146107338369 ], [ 515416.028572909825016, 5276267.171717971563339 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 4, "id_source": "w12857708", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515248.380047825106885, 5276276.377299305982888 ], [ 515206.650520008406602, 5276208.77316333539784 ], [ 515258.395706476527266, 5276143.347291049547493 ], [ 515359.782769975659903, 5276079.34179462864995 ], [ 515374.538426745217294, 5276109.588444911874831 ], [ 515338.834335201885551, 5276201.406694399192929 ], [ 515248.380047825106885, 5276276.377299305982888 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 5, "id_source": "w146255082", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516742.300127624883316, 5276793.301025846041739 ], [ 516744.846597256138921, 5276790.57430933136493 ], [ 516748.332670632225927, 5276790.195345357060432 ], [ 516751.326426174025983, 5276791.248670265078545 ], [ 516754.046087155002169, 5276793.590429455973208 ], [ 516749.9217006159015, 5276799.157781216315925 ], [ 516742.300127624883316, 5276793.301025846041739 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 6, "id_source": "w146255083", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516736.19439697091002, 5276774.834273478016257 ], [ 516736.666361462383065, 5276777.86974551063031 ], [ 516740.512097719241865, 5276783.015456917695701 ], [ 516742.908711586438585, 5276785.38962409645319 ], [ 516746.530875015771016, 5276787.311643510125577 ], [ 516750.954283238970675, 5276787.45773364789784 ], [ 516752.730701958644204, 5276788.718723242171109 ], [ 516756.511799581930973, 5276790.21887500397861 ], [ 516736.19439697091002, 5276774.834273478016257 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 7, "id_source": "w146259566", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516712.750327062269207, 5276794.194173431955278 ], [ 516711.534889264032245, 5276796.357910709455609 ], [ 516712.292110614245757, 5276799.449769328348339 ], [ 516715.068200013483874, 5276803.069779555313289 ], [ 516718.402786723629106, 5276805.746706509031355 ], [ 516729.181693083199207, 5276792.318636366166174 ], [ 516728.664765463967342, 5276791.86147831287235 ], [ 516724.521585240669083, 5276790.90488959942013 ], [ 516724.604190065932926, 5276796.139809872023761 ], [ 516720.709429674432613, 5276800.218568790704012 ], [ 516712.750327062269207, 5276794.194173431955278 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 8, "id_source": "w146259569", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516663.813905270304531, 5276813.959063909947872 ], [ 516669.910519538447261, 5276819.933604597114027 ], [ 516676.937872141599655, 5276810.373477843590081 ], [ 516679.688806137128267, 5276812.292960716411471 ], [ 516686.909614038886502, 5276803.378010733984411 ], [ 516698.705484703939874, 5276812.447487436234951 ], [ 516696.977228697447572, 5276815.343279710039496 ], [ 516703.910357718064915, 5276820.319996858946979 ], [ 516710.881364134897012, 5276812.093426367267966 ], [ 516709.060932045045774, 5276810.465561979450285 ], [ 516713.854613311530557, 5276804.588911036960781 ], [ 516709.124554622278083, 5276798.76272701472044 ], [ 516705.919727349886671, 5276792.740870766341686 ], [ 516704.864816365763545, 5276788.692357091233134 ], [ 516707.296409977192525, 5276786.732159094884992 ], [ 516716.843251571583096, 5276773.411671532317996 ], [ 516721.800803321413696, 5276775.870979917235672 ], [ 516727.387555227265693, 5276768.462888854555786 ], [ 516723.289060949231498, 5276765.016898832283914 ], [ 516699.995020467671566, 5276768.728802228346467 ], [ 516697.46496413112618, 5276768.354785955511034 ], [ 516663.813905270304531, 5276813.959063909947872 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 9, "id_source": "w146259570", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516699.138874421303626, 5276766.081220775842667 ], [ 516700.512346197385341, 5276766.429692789912224 ], [ 516722.804492542112712, 5276761.136729603633285 ], [ 516737.338082625064999, 5276742.762625137344003 ], [ 516736.019828936841805, 5276738.880058829672635 ], [ 516742.512912931269966, 5276734.964375640265644 ], [ 516743.104952050605789, 5276735.421750816516578 ], [ 516748.895327194652054, 5276727.747530546039343 ], [ 516749.98678479163209, 5276726.917121636681259 ], [ 516750.971269815578125, 5276726.719901844859123 ], [ 516752.795681209245231, 5276726.969657490029931 ], [ 516774.350725081691053, 5276735.144909459166229 ], [ 516776.018463686457835, 5276735.02745989151299 ], [ 516763.525420324760489, 5276717.653680980205536 ], [ 516761.64388857682934, 5276718.981942135840654 ], [ 516760.138535854057409, 5276720.089007036760449 ], [ 516759.769394527713303, 5276717.865149486809969 ], [ 516757.922404286218807, 5276707.190417572855949 ], [ 516757.552941443573218, 5276705.077699045650661 ], [ 516759.730110509495717, 5276705.41738373041153 ], [ 516761.681955698120873, 5276705.756420673802495 ], [ 516764.424872214207426, 5276692.205266224220395 ], [ 516767.653558349586092, 5276692.547981002368033 ], [ 516768.109646838682238, 5276690.659918434917927 ], [ 516771.126452360360418, 5276686.334155411459506 ], [ 516773.158853275468573, 5276684.784052354283631 ], [ 516771.588303852884565, 5276682.445594176650047 ], [ 516783.251210943097249, 5276675.14397116471082 ], [ 516782.503651378792711, 5276673.919279488734901 ], [ 516781.455658290942665, 5276672.693722154013813 ], [ 516781.456939353200141, 5276672.249166841618717 ], [ 516783.411036567296833, 5276671.810239224694669 ], [ 516794.682732397166546, 5276669.953359427861869 ], [ 516796.636831400217488, 5276669.514436246827245 ], [ 516796.18009095749585, 5276671.624774201773107 ], [ 516795.648563089314848, 5276673.623756749555469 ], [ 516809.609722634137142, 5276676.775952118448913 ], [ 516809.230011033592746, 5276678.219672908075154 ], [ 516812.983176543668378, 5276679.008485713042319 ], [ 516812.525789170409553, 5276681.341100090183318 ], [ 516814.851896780892275, 5276682.125794352963567 ], [ 516816.324210704595316, 5276684.664032177999616 ], [ 516821.09451024082955, 5276681.754833556711674 ], [ 516816.103984503599349, 5276672.493592948652804 ], [ 516826.382625522441231, 5276668.60004945192486 ], [ 516791.757872876303736, 5276642.38226711191237 ], [ 516739.048222192446701, 5276712.2152214134112 ], [ 516731.878105188894551, 5276721.719292820431292 ], [ 516699.138874421303626, 5276766.081220775842667 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 10, "id_source": "w146259573", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516757.362410440808162, 5276729.527897319756448 ], [ 516771.646151024266146, 5276735.381627014838159 ], [ 516763.340054562024307, 5276737.691646006889641 ], [ 516762.785507006279659, 5276737.256604633294046 ], [ 516761.443546466703992, 5276736.396965763531625 ], [ 516757.362410440808162, 5276729.527897319756448 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 11, "id_source": "w146259577", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516742.068569013499655, 5276832.043684696778655 ], [ 516724.198287946346682, 5276845.940375906415284 ], [ 516720.37700533552561, 5276842.750804871320724 ], [ 516717.65661342034582, 5276845.899363966658711 ], [ 516736.463899752183352, 5276861.379588950425386 ], [ 516748.43296959757572, 5276846.721322806552052 ], [ 516742.068569013499655, 5276832.043684696778655 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 12, "id_source": "w183968039", "type": "null", "height_class": "null", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516443.740117823588662, 5277115.389124820940197 ], [ 516482.498840655374806, 5277055.08311912138015 ], [ 516510.016103378497064, 5277020.941135651431978 ], [ 516650.743856725341175, 5277121.756668553687632 ], [ 516656.8203305566567, 5277150.414779911749065 ], [ 516657.50080539524788, 5277177.701553720980883 ], [ 516654.704974779451732, 5277262.426566129550338 ], [ 516717.667859425942879, 5277331.146956294775009 ], [ 516744.704332074848935, 5277333.647498254664242 ], [ 516768.108820313063916, 5277366.434433085843921 ], [ 516771.883562236442231, 5277482.108581299893558 ], [ 516732.614559716603253, 5277450.754167185164988 ], [ 516694.423423069063574, 5277407.400006008334458 ], [ 516636.873641964863054, 5277342.073972745798528 ], [ 516618.049415864574257, 5277322.459600200876594 ], [ 516608.607341967348475, 5277312.607895825989544 ], [ 516547.154682928929105, 5277277.47944360692054 ], [ 516521.467755565827247, 5277257.134593587368727 ], [ 516549.174677309347317, 5277222.07086565811187 ], [ 516520.883066644601058, 5277201.162919535301626 ], [ 516499.184163087978959, 5277223.040391643531621 ], [ 516481.507919324503746, 5277203.507519617676735 ], [ 516461.705017384781968, 5277192.348631243221462 ], [ 516457.383483800920658, 5277172.208995522931218 ], [ 516449.033262928540353, 5277147.868010764010251 ], [ 516424.17513249971671, 5277142.229735415428877 ], [ 516443.740117823588662, 5277115.389124820940197 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 13, "id_source": "w189027279", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516282.846104557334911, 5276855.036649436689913 ], [ 516303.141637050779536, 5276835.632867882959545 ], [ 516309.854525046248455, 5276830.861543190665543 ], [ 516420.622513207315933, 5276889.310041332617402 ], [ 516435.807669864560012, 5276905.734881917946041 ], [ 516472.09727149392711, 5276967.353284377604723 ], [ 516483.284831762604881, 5276984.3671002574265 ], [ 516419.410450335009955, 5277055.460577057674527 ], [ 516419.236586160142906, 5277047.869239673018456 ], [ 516406.090457845712081, 5277024.915162747725844 ], [ 516366.903000895632431, 5276965.422905370593071 ], [ 516282.846104557334911, 5276855.036649436689913 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 14, "id_source": "w189027280", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516354.931765206565615, 5277163.106934703886509 ], [ 516374.190923730900977, 5277175.442010604776442 ], [ 516376.660178912745323, 5277176.01576810143888 ], [ 516378.884255080309231, 5277175.644148657098413 ], [ 516381.361326714453753, 5277173.439435136504471 ], [ 516384.031127280031797, 5277169.468142163939774 ], [ 516390.124171851028223, 5277166.006614638492465 ], [ 516413.029097221675329, 5277118.525529652833939 ], [ 516428.970152382680681, 5277090.429890719242394 ], [ 516444.987610793556087, 5277067.246890241280198 ], [ 516464.775706743763294, 5277041.307214087806642 ], [ 516494.546454470895696, 5277001.725681542418897 ], [ 516495.131052327342331, 5276999.5045419447124 ], [ 516492.781787225801963, 5276996.31928972620517 ], [ 516483.284831762604881, 5276984.3671002574265 ], [ 516419.410450335009955, 5277055.460577057674527 ], [ 516398.288491076673381, 5277085.7644436173141 ], [ 516358.615929158288054, 5277158.960655835457146 ], [ 516354.931765206565615, 5277163.106934703886509 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 15, "id_source": "w189027282", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516269.427908678830136, 5277558.036143732257187 ], [ 516272.095959755475633, 5277557.2878492558375 ], [ 516275.391572193708271, 5277555.018694312311709 ], [ 516277.111705192481168, 5277552.189436944201589 ], [ 516278.009533080388792, 5277548.013088622130454 ], [ 516288.704004149127286, 5277486.071419171988964 ], [ 516294.704233083932195, 5277456.602809050120413 ], [ 516302.231003856926691, 5277423.748715351335704 ], [ 516310.469530610134825, 5277394.208593513816595 ], [ 516319.697984993516002, 5277362.515146311372519 ], [ 516340.725386569218244, 5277290.477720881812274 ], [ 516352.025928123854101, 5277256.478436036035419 ], [ 516360.691982785530854, 5277232.652177361771464 ], [ 516375.671528273785952, 5277196.418255047872663 ], [ 516373.79526204476133, 5277193.289949977770448 ], [ 516372.109279112424701, 5277189.261948186904192 ], [ 516361.277658210950904, 5277184.585857873782516 ], [ 516341.893233626440633, 5277227.586979603394866 ], [ 516332.766358972177841, 5277252.401117327623069 ], [ 516321.472653515287675, 5277286.678307493217289 ], [ 516300.034203766088467, 5277358.081153090111911 ], [ 516291.250442041957285, 5277391.920873719267547 ], [ 516283.822559068794362, 5277418.962643123231828 ], [ 516276.019039114296902, 5277454.138808822259307 ], [ 516269.481949887354858, 5277484.950729456730187 ], [ 516257.108734801411629, 5277551.111059541814029 ], [ 516258.085273450764362, 5277553.703345115296543 ], [ 516260.053586802212521, 5277556.120576958172023 ], [ 516265.336930336023215, 5277557.380101660266519 ], [ 516269.427908678830136, 5277558.036143732257187 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 16, "id_source": "w189027283", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516474.748577787424438, 5276954.046240387484431 ], [ 516476.460586756642442, 5276954.184452068991959 ], [ 516476.385476690367796, 5276956.840480067767203 ], [ 516477.773333763121627, 5276960.056346623227 ], [ 516485.409292380150873, 5276971.45867252163589 ], [ 516494.505518371006474, 5276981.709291381761432 ], [ 516496.902401464933064, 5276983.994446902535856 ], [ 516498.552711733907927, 5276984.699303207919002 ], [ 516500.385255902307108, 5276984.704495771788061 ], [ 516504.129039554332849, 5276983.448112198151648 ], [ 516506.672573736112099, 5276981.688199481926858 ], [ 516509.912268680287525, 5276978.096455323509872 ], [ 516542.352617571712472, 5276934.910694899968803 ], [ 516543.059870882483665, 5276931.823018433526158 ], [ 516544.816046923864633, 5276924.348301223479211 ], [ 516543.011450065299869, 5276919.78644354082644 ], [ 516632.540425019571558, 5276800.421744802966714 ], [ 516639.35193171404535, 5276805.93150806427002 ], [ 516748.935493506491184, 5276658.941025636158884 ], [ 516749.699906913097948, 5276656.920480822212994 ], [ 516749.902093714103103, 5276654.520443851128221 ], [ 516748.259678383008577, 5276651.048160075210035 ], [ 516742.087852471333463, 5276639.849755346775055 ], [ 516741.135249641782138, 5276639.402457836084068 ], [ 516739.931529245164711, 5276640.088064006529748 ], [ 516623.639986792288255, 5276795.23944528773427 ], [ 516530.068347584572621, 5276920.62769144307822 ], [ 516527.65602580254199, 5276923.777213494293392 ], [ 516521.8108398206532, 5276927.117047016508877 ], [ 516477.587608860398177, 5276948.719564446248114 ], [ 516476.315288521174807, 5276949.794020020402968 ], [ 516475.167973845382221, 5276951.81351759377867 ], [ 516474.748577787424438, 5276954.046240387484431 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 17, "id_source": "w189027284", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516209.367783138761297, 5277735.036674323491752 ], [ 516214.243142488354351, 5277737.12856694124639 ], [ 516221.149364159326069, 5277738.036925339139998 ], [ 516232.882561925100163, 5277734.146392535418272 ], [ 516233.833836475154385, 5277732.326351060532033 ], [ 516238.656050761055667, 5277729.238997363485396 ], [ 516240.374905882054009, 5277726.843170693144202 ], [ 516241.462439660564996, 5277724.634521 ], [ 516251.167902245710138, 5277720.816166090779006 ], [ 516253.142521133762784, 5277715.575876170769334 ], [ 516255.25706234050449, 5277708.635537448339164 ], [ 516256.535943502036389, 5277702.448617144487798 ], [ 516257.503030933672562, 5277689.59243371617049 ], [ 516259.421021448390093, 5277661.612769433297217 ], [ 516260.913325557718053, 5277648.924764034338295 ], [ 516273.261799156782217, 5277575.440246707759798 ], [ 516273.781434556585737, 5277572.229757276363671 ], [ 516273.531604518706445, 5277570.261883432045579 ], [ 516271.955513082852121, 5277567.234473940916359 ], [ 516269.745811693719588, 5277565.205552902072668 ], [ 516267.023338879807852, 5277563.93095098156482 ], [ 516255.936135634372476, 5277562.25511271879077 ], [ 516239.649377218971495, 5277655.811651490628719 ], [ 516239.830574692517985, 5277658.157208216376603 ], [ 516241.282871057046577, 5277659.795015729032457 ], [ 516244.505436434643343, 5277662.149058169685304 ], [ 516245.067882042669225, 5277665.118062201887369 ], [ 516245.058206102228723, 5277668.585599238984287 ], [ 516243.910584324155934, 5277670.794080471619964 ], [ 516242.072954081755597, 5277672.689445164985955 ], [ 516239.372813425958157, 5277674.193414874374866 ], [ 516238.555149390303995, 5277676.569527388550341 ], [ 516237.855034587380942, 5277679.879542833194137 ], [ 516236.927132213313598, 5277686.77874104026705 ], [ 516233.182235401705839, 5277694.00350344274193 ], [ 516225.713860622257926, 5277698.083744707517326 ], [ 516209.367783138761297, 5277735.036674323491752 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 18, "id_source": "w189027285", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516752.877678120159544, 5276646.249092107638717 ], [ 516754.203487994906027, 5276647.508785378187895 ], [ 516755.786105549312197, 5276648.26908899936825 ], [ 516756.861054184031673, 5276647.960990696214139 ], [ 516758.894615981320385, 5276646.010782962664962 ], [ 516813.358645465457812, 5276572.370982926338911 ], [ 516819.139612423663493, 5276565.441442206501961 ], [ 516834.225621614954434, 5276551.114662833511829 ], [ 516835.50394228141522, 5276548.01755949575454 ], [ 516836.147653131338302, 5276543.596058947965503 ], [ 516835.337532656791154, 5276540.626286091282964 ], [ 516833.633794556022622, 5276537.58724644780159 ], [ 516810.134063089615665, 5276510.734693166799843 ], [ 516808.354721829236951, 5276513.063491712324321 ], [ 516807.962164624186698, 5276516.352094653993845 ], [ 516805.600859065598343, 5276522.535763017833233 ], [ 516801.287006654369179, 5276526.001989689655602 ], [ 516800.878070468897931, 5276534.96978604234755 ], [ 516792.066568658221513, 5276535.322247656993568 ], [ 516792.082436227472499, 5276537.633999764919281 ], [ 516789.866946247813758, 5276537.538700322620571 ], [ 516789.828384572465438, 5276535.282452656887472 ], [ 516787.612573297519702, 5276535.298292878083885 ], [ 516787.555129885382485, 5276531.774997922591865 ], [ 516772.586035097658169, 5276531.609613698907197 ], [ 516772.528816125064623, 5276541.045211708173156 ], [ 516794.603519923461135, 5276556.779531194828451 ], [ 516795.541153100435622, 5276559.816349945031106 ], [ 516800.409981822536793, 5276564.442692585289478 ], [ 516777.964219149027485, 5276591.484964974224567 ], [ 516761.162970904668327, 5276614.675903933122754 ], [ 516752.199959205405321, 5276625.964139567688107 ], [ 516748.961327064898796, 5276626.454953035339713 ], [ 516747.694032142986543, 5276628.351797929033637 ], [ 516747.303338224184699, 5276631.006914175115526 ], [ 516747.035247905412689, 5276635.429504914209247 ], [ 516747.788221299706493, 5276637.38772976398468 ], [ 516752.877678120159544, 5276646.249092107638717 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 19, "id_source": "w192723399", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516070.928083823877387, 5276679.947497542016208 ], [ 516163.584448294772301, 5276646.68420516513288 ], [ 516191.354534212034196, 5276713.422937500290573 ], [ 516181.481405027850997, 5276733.745174184441566 ], [ 516188.13311696331948, 5276786.110463745892048 ], [ 516134.831672320084181, 5276796.131819072179496 ], [ 516129.98018588864943, 5276774.27942640800029 ], [ 516138.315410157782026, 5276766.767247997224331 ], [ 516127.427188092493452, 5276741.497257271781564 ], [ 516101.368025715986732, 5276740.30263580288738 ], [ 516092.356474522151984, 5276718.049787561409175 ], [ 516070.928083823877387, 5276679.947497542016208 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 20, "id_source": "w192723405", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515738.535995253594592, 5276645.986760721541941 ], [ 515732.508316331601236, 5276644.659025863744318 ], [ 515716.102363768965006, 5276637.090574090369046 ], [ 515697.546294967527501, 5276605.165678393095732 ], [ 515685.61847554333508, 5276583.005638701841235 ], [ 515657.802418469276745, 5276525.393802573904395 ], [ 515656.509838146797847, 5276511.675698944367468 ], [ 515659.206845418724697, 5276497.51264941226691 ], [ 515669.027554656204302, 5276479.389965210109949 ], [ 515690.389535606780555, 5276459.753539560362697 ], [ 515720.673259797506034, 5276418.480158785358071 ], [ 515769.744273571937811, 5276382.314627795480192 ], [ 515824.402808693004772, 5276349.465534352697432 ], [ 515842.206213101686444, 5276343.345686382614076 ], [ 515859.86902173969429, 5276347.494809228926897 ], [ 515889.731673930655234, 5276378.617499085143209 ], [ 515901.547703782678582, 5276397.576825224794447 ], [ 515908.92662445170572, 5276402.020333666354418 ], [ 515923.468480878567789, 5276404.727425389923155 ], [ 515945.427448385686148, 5276400.653111041523516 ], [ 515973.579992837447207, 5276408.710082366131246 ], [ 516002.747933306789491, 5276413.502475086599588 ], [ 516012.099863448820543, 5276421.530232624150813 ], [ 516027.226497401134111, 5276421.87191756721586 ], [ 516031.944067607400939, 5276429.864727721549571 ], [ 516047.342452829005197, 5276437.886962060816586 ], [ 516053.834673887584358, 5276436.960167462937534 ], [ 516073.709635037987027, 5276447.717734615318477 ], [ 516075.474278129637241, 5276453.335157182998955 ], [ 516122.290257271612063, 5276470.024377013556659 ], [ 516133.968494326050859, 5276467.889494416303933 ], [ 516166.372586413112003, 5276491.885494121350348 ], [ 516180.27963001281023, 5276509.384156109765172 ], [ 516183.037967550568283, 5276519.561099572107196 ], [ 516191.909639403049368, 5276527.276623711921275 ], [ 516200.672828593815211, 5276576.680351453833282 ], [ 516201.484297049755696, 5276603.578411434777081 ], [ 516207.681215885153506, 5276614.24283638689667 ], [ 516213.295457432570402, 5276621.060212824493647 ], [ 516219.839728639926761, 5276614.86572768446058 ], [ 516216.448315892717801, 5276554.251815258525312 ], [ 516220.640582274703775, 5276540.371031038463116 ], [ 516221.850878584140446, 5276531.916673076339066 ], [ 516211.823525447107386, 5276531.944320818409324 ], [ 516209.883231875603087, 5276495.040550347417593 ], [ 516211.326266924384981, 5276475.828519375994802 ], [ 516211.041706466989126, 5276464.72487526293844 ], [ 516225.591554658138193, 5276467.154896202497184 ], [ 516225.553964687103871, 5276480.647146425209939 ], [ 516250.157463192066643, 5276549.011072927154601 ], [ 516236.271574152400717, 5276556.363131784833968 ], [ 516253.492606375250034, 5276594.676561293192208 ], [ 516270.147114301973488, 5276658.250515365973115 ], [ 516258.813272172468714, 5276698.562572703696787 ], [ 516291.37545846978901, 5276821.118431362323463 ], [ 516309.854525046248455, 5276830.861543190665543 ], [ 516303.141637050779536, 5276835.632867882959545 ], [ 516282.846104557334911, 5276855.036649436689913 ], [ 516277.345949240960181, 5276847.819417729973793 ], [ 516252.455742757359985, 5276863.920727244578302 ], [ 516217.266712748503778, 5276762.040864913724363 ], [ 516202.57157293864293, 5276747.3072899132967 ], [ 516209.481136448855978, 5276709.661272699013352 ], [ 516197.513448089594021, 5276664.805333492346108 ], [ 516176.049981605785433, 5276639.505851536989212 ], [ 516173.968933883821592, 5276572.082741529680789 ], [ 516177.062647754093632, 5276545.340015360154212 ], [ 516170.691975930531044, 5276526.873137758113444 ], [ 516160.522331375337671, 5276515.919879980385303 ], [ 516151.474271408224013, 5276509.493134968914092 ], [ 516139.793746621522587, 5276488.088596286252141 ], [ 516084.315797048737295, 5276474.776178585365415 ], [ 516044.765344845538493, 5276457.251500864513218 ], [ 516014.938195353723131, 5276432.785367758013308 ], [ 515982.745153642783407, 5276421.860817108303308 ], [ 515936.949573575693648, 5276419.023513428866863 ], [ 515895.384233975200914, 5276426.656352461315691 ], [ 515880.71889641386224, 5276394.874869927763939 ], [ 515868.740786949871108, 5276374.725951042957604 ], [ 515862.158595570886973, 5276370.062384689226747 ], [ 515780.974177877011243, 5276387.646404875442386 ], [ 515738.935830716916826, 5276428.554276085458696 ], [ 515713.555327681649942, 5276481.510449754074216 ], [ 515730.412854463036638, 5276563.988216451369226 ], [ 515710.99093292321777, 5276568.970413548871875 ], [ 515724.0696098000044, 5276612.739157604984939 ], [ 515758.878400046203751, 5276650.487358752638102 ], [ 515781.300044359115418, 5276655.449334780685604 ], [ 515798.35565959016094, 5276692.049411842599511 ], [ 515797.3460493835737, 5276812.266453668475151 ], [ 515789.493895635474473, 5276860.635375917889178 ], [ 515797.151130122249015, 5276884.117732216604054 ], [ 515917.25031423807377, 5276874.21992661524564 ], [ 515939.832338418927975, 5276982.109447724185884 ], [ 515957.49437283462612, 5277002.251885491423309 ], [ 515862.462801142188255, 5277011.161257036961615 ], [ 515844.593373540905304, 5277011.923925330862403 ], [ 515834.299449189624283, 5277162.756995934061706 ], [ 515843.02612131589558, 5277204.246974798850715 ], [ 515798.306515273812693, 5277205.681421790271997 ], [ 515795.554721664928365, 5277262.177406931295991 ], [ 515779.821430915617384, 5277311.903131037019193 ], [ 515831.276676695444621, 5277318.777883530594409 ], [ 515865.901195838174317, 5277336.899004547856748 ], [ 515849.334536057605874, 5277386.388884179294109 ], [ 515840.626797774457373, 5277583.7161332834512 ], [ 515713.729134213412181, 5277524.779337232001126 ], [ 515678.155242921144236, 5277502.488813811913133 ], [ 515673.632965421536937, 5277444.417213994078338 ], [ 515676.858414484886453, 5277403.993247509934008 ], [ 515746.526698547706474, 5277407.293167860247195 ], [ 515748.179393855680246, 5277371.010500831529498 ], [ 515675.392678754171357, 5277368.213409269228578 ], [ 515617.770629501261283, 5277333.849739349447191 ], [ 515637.167111700342502, 5277275.842394653707743 ], [ 515769.765451793384273, 5277273.088108932599425 ], [ 515788.704488030343782, 5277193.307750573381782 ], [ 515749.907532078563236, 5277179.132385087199509 ], [ 515779.486665996431839, 5277008.657444330863655 ], [ 515731.436767468927428, 5276893.953516996465623 ], [ 515752.669371165859047, 5276741.19386091735214 ], [ 515761.952872879744973, 5276727.259839132428169 ], [ 515764.36945788434241, 5276700.21498728916049 ], [ 515757.872277061862405, 5276672.568084678612649 ], [ 515745.733679652272258, 5276653.497029547579587 ], [ 515738.535995253594592, 5276645.986760721541941 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 21, "id_source": "w192723423", "type": "farmland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515795.554721664928365, 5277262.177406931295991 ], [ 515905.75714200240327, 5277270.83512631803751 ], [ 515865.901195838174317, 5277336.899004547856748 ], [ 515831.276676695444621, 5277318.777883530594409 ], [ 515779.821430915617384, 5277311.903131037019193 ], [ 515795.554721664928365, 5277262.177406931295991 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 22, "id_source": "w192723428", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515798.38708906742977, 5276572.485462988726795 ], [ 515873.749549317057244, 5276562.576684392057359 ], [ 515880.149400955764577, 5276567.917721018195152 ], [ 515884.054680912871845, 5276603.882047647610307 ], [ 515833.45187001361046, 5276645.832833437249064 ], [ 515818.858019669074565, 5276607.172144838608801 ], [ 515806.844904647674412, 5276605.539114874787629 ], [ 515794.085619043151382, 5276579.931265401653945 ], [ 515798.38708906742977, 5276572.485462988726795 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 23, "id_source": "w196966595", "type": "forest", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516211.041706466989126, 5276464.72487526293844 ], [ 516227.810485781636089, 5276436.375393335707486 ], [ 516240.697031539166346, 5276410.393521459773183 ], [ 516241.905427227145992, 5276378.399786206893623 ], [ 516234.716970199136995, 5276375.767962070181966 ], [ 516220.731797365297098, 5276345.810203330591321 ], [ 516200.671451666159555, 5276323.359731398522854 ], [ 516193.854931835376192, 5276300.39044065028429 ], [ 516192.503392380371224, 5276273.190816489048302 ], [ 516195.191014136420563, 5276246.702603463083506 ], [ 516200.708080700365826, 5276223.778729908168316 ], [ 516216.423361853056122, 5276204.428601109422743 ], [ 516244.719529284629971, 5276182.746316477656364 ], [ 516207.434828021330759, 5276187.254739834927022 ], [ 516155.493109741597436, 5276181.697935738600791 ], [ 516119.152642887434922, 5276200.602121556177735 ], [ 516092.366572706669103, 5276216.943371170200408 ], [ 516080.675164416781627, 5276215.510721184313297 ], [ 516076.999326140328776, 5276194.72858227789402 ], [ 516101.645663114904892, 5276137.27081058640033 ], [ 516106.117121804738417, 5276120.223246485926211 ], [ 516101.325343129516114, 5276114.564107088372111 ], [ 516087.859050185827073, 5276111.114911237731576 ], [ 516069.646449418447446, 5276107.285889239050448 ], [ 516029.963876100140624, 5276112.277848879806697 ], [ 515992.545738857821561, 5276118.776679932139814 ], [ 515948.40400142245926, 5276131.058822693303227 ], [ 515907.815727563691325, 5276148.730158792808652 ], [ 515886.647618870600127, 5276159.941935623064637 ], [ 515870.017362831218634, 5276157.073653931729496 ], [ 515840.161274496407714, 5276125.839960495010018 ], [ 515836.020260472723749, 5276096.23223514482379 ], [ 515841.394749842467718, 5276072.785289524123073 ], [ 516347.916011897556018, 5276066.516283508390188 ], [ 516367.796427736233454, 5276123.708988700062037 ], [ 516389.362954811484087, 5276150.143065377138555 ], [ 516421.799500257882755, 5276160.225880493409932 ], [ 516449.507493920740671, 5276158.314668531529605 ], [ 516424.964104821963701, 5276180.740065201185644 ], [ 516446.595749705971684, 5276245.128729283809662 ], [ 516399.442785191757139, 5276270.435633925721049 ], [ 516352.748217105283402, 5276263.713761945255101 ], [ 516324.941392514330801, 5276351.991771013475955 ], [ 516246.087403783516493, 5276341.346379023976624 ], [ 516257.569829047773965, 5276398.704249759204686 ], [ 516246.540639635873958, 5276434.671606441959739 ], [ 516225.591554658138193, 5276467.154896202497184 ], [ 516211.041706466989126, 5276464.72487526293844 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 24, "id_source": "w196966596", "type": "meadow", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516399.442785191757139, 5276270.435633925721049 ], [ 516352.748217105283402, 5276263.713761945255101 ], [ 516324.941392514330801, 5276351.991771013475955 ], [ 516246.087403783516493, 5276341.346379023976624 ], [ 516257.569829047773965, 5276398.704249759204686 ], [ 516246.540639635873958, 5276434.671606441959739 ], [ 516225.591554658138193, 5276467.154896202497184 ], [ 516225.553964687103871, 5276480.647146425209939 ], [ 516250.157463192066643, 5276549.011072927154601 ], [ 516279.743810494837817, 5276535.456865095533431 ], [ 516302.471079674491193, 5276578.820462059229612 ], [ 516328.733999205171131, 5276566.524192654527724 ], [ 516296.700580226955935, 5276442.658209172077477 ], [ 516385.299849574686959, 5276432.926461526192725 ], [ 516407.160075114283245, 5276354.667882501147687 ], [ 516427.736868054489605, 5276326.852059767581522 ], [ 516399.442785191757139, 5276270.435633925721049 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 25, "id_source": "w300143809", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515270.54514752846444, 5277379.440669603645802 ], [ 515267.534429687133525, 5277379.14381055533886 ], [ 515264.690940221771598, 5277378.08052736800164 ], [ 515262.224751876492519, 5277376.329168285243213 ], [ 515260.300820205302443, 5277373.990190947428346 ], [ 515259.046347957279067, 5277371.241751764900982 ], [ 515258.55098892870592, 5277368.261908827349544 ], [ 515258.844259666395374, 5277365.250790806487203 ], [ 515259.910588069586083, 5277362.419522481039166 ], [ 515261.674351394292898, 5277359.967957549728453 ], [ 515264.01498319231905, 5277358.051376167684793 ], [ 515266.774424878240097, 5277356.802732245065272 ], [ 515269.764723137195688, 5277356.299331249669194 ], [ 515272.782962638186291, 5277356.596211115829647 ], [ 515275.618951224256307, 5277357.659478494897485 ], [ 515278.085143517178949, 5277359.410843191668391 ], [ 515280.009072932763956, 5277361.749826354905963 ], [ 515281.26353738468606, 5277364.498270031064749 ], [ 515281.75888513342943, 5277367.478114906698465 ], [ 515281.465602643904276, 5277370.489231810905039 ], [ 515280.399265188374557, 5277373.320496241562068 ], [ 515278.643007874547038, 5277375.772075272165239 ], [ 515276.294839234848041, 5277377.699745013378561 ], [ 515273.535405356495176, 5277378.948384447954595 ], [ 515270.54514752846444, 5277379.440669603645802 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 26, "id_source": "w342070859", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516839.963586148398463, 5276143.426375072449446 ], [ 516838.439616519783158, 5276143.121892026625574 ], [ 516837.827560000296216, 5276141.77533268276602 ], [ 516837.726620722503867, 5276135.117775035090744 ], [ 516838.162006661528721, 5276132.618391271680593 ], [ 516840.365165525116026, 5276131.835669231601059 ], [ 516841.468138979922514, 5276132.261189074255526 ], [ 516841.515505459276028, 5276136.662456697784364 ], [ 516874.566039958852343, 5276136.813685778528452 ], [ 516874.640621629485395, 5276131.812616862356663 ], [ 516876.350770464516245, 5276132.673347151838243 ], [ 516876.774869928311091, 5276134.074935782700777 ], [ 516876.749397363630123, 5276142.8660096693784 ], [ 516876.197353628522251, 5276144.142516307532787 ], [ 516875.520802321960218, 5276144.31837953440845 ], [ 516874.914656018954702, 5276143.527531709522009 ], [ 516875.108359668520279, 5276138.893568772822618 ], [ 516839.856994022673462, 5276138.724859097972512 ], [ 516839.963586148398463, 5276143.426375072449446 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 27, "id_source": "w342070860", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516865.079381514457054, 5276175.56283968873322 ], [ 516864.907803013746161, 5276149.21112700831145 ], [ 516869.804950578254648, 5276149.347562507726252 ], [ 516869.668697533430532, 5276175.642814019694924 ], [ 516865.079381514457054, 5276175.56283968873322 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 28, "id_source": "w342070861", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516840.291171674442012, 5276175.613369910977781 ], [ 516840.16392541944515, 5276165.065847381949425 ], [ 516838.174152984574903, 5276164.793359508737922 ], [ 516837.848215211532079, 5276173.60579299274832 ], [ 516838.842967837641481, 5276175.086826418526471 ], [ 516840.291171674442012, 5276175.613369910977781 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 29, "id_source": "w342070862", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516839.489352556236554, 5276159.362432072870433 ], [ 516838.192113436758518, 5276158.580704009160399 ], [ 516838.026096234971192, 5276156.246291061863303 ], [ 516838.042064468201715, 5276150.722695817239583 ], [ 516839.174252339114901, 5276148.836594664491713 ], [ 516839.885853179905098, 5276149.527717947028577 ], [ 516840.047870046983007, 5276158.441587630659342 ], [ 516839.489352556236554, 5276159.362432072870433 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 30, "id_source": "w342618762", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516840.001674572878983, 5276317.304514355026186 ], [ 516842.377780812443234, 5276316.433381520211697 ], [ 516842.4616356070037, 5276313.41062431037426 ], [ 516842.758207869715989, 5276312.155603405088186 ], [ 516844.321113867976237, 5276309.370516998693347 ], [ 516846.169708019180689, 5276306.497345597483218 ], [ 516846.247167739027645, 5276305.686249883845448 ], [ 516845.963388473028317, 5276302.517947807908058 ], [ 516846.047438146779314, 5276299.428507454693317 ], [ 516845.892143673612736, 5276298.58339661359787 ], [ 516840.138799334876239, 5276298.455618823878467 ], [ 516840.001674572878983, 5276317.304514355026186 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 31, "id_source": "w342618763", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516849.393550617794972, 5276316.375876215286553 ], [ 516849.820335248892661, 5276298.672557604499161 ], [ 516862.663940044585615, 5276298.965350499376655 ], [ 516869.09404198161792, 5276298.839489356614649 ], [ 516874.841372351918835, 5276303.635145555250347 ], [ 516876.299515347112902, 5276308.496175267733634 ], [ 516874.957424496475141, 5276312.837848719209433 ], [ 516874.650605472736061, 5276317.627080745063722 ], [ 516871.989259079913609, 5276318.430690300650895 ], [ 516869.706010156485718, 5276315.767837634310126 ], [ 516867.122319232614245, 5276315.693670731969178 ], [ 516865.198173635930289, 5276316.121543436311185 ], [ 516849.393550617794972, 5276316.375876215286553 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 32, "id_source": "w342618765", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516842.103269751300104, 5276333.436961284838617 ], [ 516846.09217093285406, 5276333.304016049951315 ], [ 516847.94270778761711, 5276332.353567541576922 ], [ 516849.944113737496082, 5276331.181276699528098 ], [ 516850.976566355850082, 5276330.006182996556163 ], [ 516851.057242047216278, 5276328.08369963336736 ], [ 516849.732858774601482, 5276326.312746741808951 ], [ 516849.445674309157766, 5276324.322515316307545 ], [ 516849.667102576990146, 5276323.078391308896244 ], [ 516848.41654453711817, 5276321.752211103215814 ], [ 516845.985042623593472, 5276321.000541678629816 ], [ 516842.58284878951963, 5276320.846220458857715 ], [ 516839.976015429070685, 5276320.983164083212614 ], [ 516839.955240761395544, 5276322.97250457201153 ], [ 516841.795922507939395, 5276322.833345399238169 ], [ 516842.103269751300104, 5276333.436961284838617 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 33, "id_source": "w342618766", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516834.060515898861922, 5276340.582219516858459 ], [ 516833.999788983026519, 5276338.203654447570443 ], [ 516837.595280821493361, 5276336.446926719509065 ], [ 516841.360352354997303, 5276335.790974584408104 ], [ 516844.245738796307705, 5276335.432557820342481 ], [ 516847.641891677048989, 5276335.075619975104928 ], [ 516850.226410214731004, 5276334.860817460343242 ], [ 516852.001641638984438, 5276333.976836183108389 ], [ 516853.777484666788951, 5276332.881691790185869 ], [ 516854.891500349156559, 5276332.073595806024969 ], [ 516856.072474469430745, 5276331.487973224371672 ], [ 516859.250160119729117, 5276331.352689253166318 ], [ 516860.646419937082101, 5276331.64569441601634 ], [ 516863.163113818038255, 5276331.508499074727297 ], [ 516866.341668640263379, 5276331.073144298046827 ], [ 516867.891114889236633, 5276330.344109577126801 ], [ 516869.451485043333378, 5276328.437026088126004 ], [ 516870.785455524746794, 5276326.896048210561275 ], [ 516871.964307384158019, 5276327.043944713659585 ], [ 516874.100963943870738, 5276328.450495004653931 ], [ 516876.459543989039958, 5276331.03576997667551 ], [ 516877.558580015029293, 5276332.806075979955494 ], [ 516878.737888063827995, 5276335.387934657745063 ], [ 516858.794641599641182, 5276335.619135149754584 ], [ 516858.856532025500201, 5276340.187155994586647 ], [ 516834.060515898861922, 5276340.582219516858459 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 34, "id_source": "w342618767", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516902.493528608873021, 5276320.78638772200793 ], [ 516897.75229941814905, 5276316.149218405596912 ], [ 516897.195012957556173, 5276316.647730220109224 ], [ 516895.35987316846149, 5276314.875285129994154 ], [ 516888.603294469648972, 5276321.390703242272139 ], [ 516887.741398174548522, 5276320.732479789294302 ], [ 516882.678544542053714, 5276325.985823540948331 ], [ 516882.880446975876112, 5276326.297599968500435 ], [ 516881.267589553899597, 5276328.171185835264623 ], [ 516879.353850786865223, 5276325.009271685034037 ], [ 516878.84455880720634, 5276321.906998065300286 ], [ 516878.786329990951344, 5276318.672664055600762 ], [ 516878.643383346963674, 5276316.160492591559887 ], [ 516878.579994241823442, 5276312.114823862910271 ], [ 516878.438528888800647, 5276309.091414116322994 ], [ 516878.744295267795678, 5276307.258495224639773 ], [ 516880.817795314185787, 5276304.541582104749978 ], [ 516882.885337260668166, 5276303.880736844614148 ], [ 516884.882474761572666, 5276304.186603574082255 ], [ 516887.755470029194839, 5276305.517495769076049 ], [ 516891.293327631894499, 5276308.106196179054677 ], [ 516893.870187344029546, 5276310.536515596322715 ], [ 516896.012002412695438, 5276312.754408658482134 ], [ 516897.262325910618529, 5276314.158396220766008 ], [ 516902.490468366770074, 5276319.252650953829288 ], [ 516902.493528608873021, 5276320.78638772200793 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 35, "id_source": "w342618768", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516889.246283532760572, 5276301.698613105341792 ], [ 516883.483208679361269, 5276302.33762816619128 ], [ 516880.013209776720032, 5276302.249772400595248 ], [ 516877.876094076375011, 5276300.998814284801483 ], [ 516874.857794859563001, 5276297.967068654485047 ], [ 516872.423862048017327, 5276295.459374033845961 ], [ 516870.731841609871481, 5276293.542869847267866 ], [ 516869.847952455747873, 5276292.695647917687893 ], [ 516875.623787402058952, 5276287.655524424277246 ], [ 516889.545908253116067, 5276273.492227412760258 ], [ 516892.281101699511055, 5276273.13339876383543 ], [ 516893.910225590167101, 5276273.427087199874222 ], [ 516911.137140598497353, 5276290.414771029725671 ], [ 516909.657854619377758, 5276292.844435356557369 ], [ 516908.252398803771939, 5276293.129318228922784 ], [ 516905.96634972532047, 5276291.43335865624249 ], [ 516901.254144720907789, 5276287.140804120339453 ], [ 516898.676213512255345, 5276285.077239450067282 ], [ 516896.904410077724606, 5276284.772021752782166 ], [ 516893.566639267490245, 5276288.296581671573222 ], [ 516889.047854661592282, 5276292.417873037047684 ], [ 516888.09159660973819, 5276293.215305970981717 ], [ 516885.946967976517044, 5276291.964323135092854 ], [ 516884.028165822499432, 5276293.136841103434563 ], [ 516882.483706183149479, 5276294.732775627635419 ], [ 516889.246283532760572, 5276301.698613105341792 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 36, "id_source": "w342618769", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516849.975431495055091, 5276320.356360760517418 ], [ 516851.8123384086648, 5276324.118197196163237 ], [ 516853.720896689395886, 5276326.47988139372319 ], [ 516855.715937200409826, 5276327.508140136487782 ], [ 516858.742756086867303, 5276327.594698653556406 ], [ 516861.251103833317757, 5276327.746441533789039 ], [ 516864.135626647679601, 5276327.688109288923442 ], [ 516866.052289261715487, 5276327.249100607819855 ], [ 516868.197477128880564, 5276325.710471387952566 ], [ 516869.236608734936453, 5276324.824363468214869 ], [ 516869.682542661321349, 5276323.869853686541319 ], [ 516868.949849321856163, 5276322.689650672487915 ], [ 516867.182529767858796, 5276320.83961312379688 ], [ 516866.37620318797417, 5276319.147954587824643 ], [ 516865.635578905115835, 5276318.112210646271706 ], [ 516863.860565833339933, 5276318.91839062422514 ], [ 516862.88972504431149, 5276322.160858820192516 ], [ 516862.515719324641395, 5276324.21586038172245 ], [ 516860.00589013233548, 5276324.575355288572609 ], [ 516857.498602538136765, 5276324.056855018250644 ], [ 516857.061838299734518, 5276321.843910871073604 ], [ 516857.286485051678028, 5276319.488399492576718 ], [ 516856.847790368250571, 5276317.942287973128259 ], [ 516855.07641294284258, 5276317.492602572776377 ], [ 516851.386665978992824, 5276318.070966043509543 ], [ 516849.462908179499209, 5276318.36547742690891 ], [ 516849.975431495055091, 5276320.356360760517418 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 37, "id_source": "w342618770", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516905.054138185689226, 5276352.101874426007271 ], [ 516898.350374342000578, 5276345.602975036017597 ], [ 516903.018478880927432, 5276341.782201295718551 ], [ 516904.854865894943941, 5276343.121207697317004 ], [ 516909.005345055367798, 5276339.07665690779686 ], [ 516907.606708089297172, 5276337.016511903144419 ], [ 516911.755676713073626, 5276333.494315310381353 ], [ 516918.31050590594532, 5276339.548238541930914 ], [ 516905.054138185689226, 5276352.101874426007271 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 38, "id_source": "w343045449", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516824.077421205292922, 5276442.179520559497178 ], [ 516824.103619314031675, 5276433.110595526173711 ], [ 516830.878377931017894, 5276433.230195969343185 ], [ 516830.852747403609101, 5276442.099071180447936 ], [ 516824.077421205292922, 5276442.179520559497178 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 39, "id_source": "w343045452", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516845.197392237838358, 5276458.278031245805323 ], [ 516845.423262091760989, 5276452.899522116407752 ], [ 516856.952532380353659, 5276453.032907165586948 ], [ 516857.042407884611748, 5276458.312304059043527 ], [ 516845.197392237838358, 5276458.278031245805323 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 40, "id_source": "w345737630", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517198.031714984565042, 5276451.651735503226519 ], [ 517203.796214410627726, 5276453.035779909230769 ], [ 517208.593114830437116, 5276456.506398309953511 ], [ 517211.687835552613251, 5276461.550174494273961 ], [ 517212.616989838832524, 5276467.387757888063788 ], [ 517211.232989612733945, 5276473.129593194462359 ], [ 517207.748713313078042, 5276477.909420877695084 ], [ 517202.692073725978844, 5276481.006395558826625 ], [ 517196.838186720618978, 5276481.922681125812232 ], [ 517191.073681523790583, 5276480.549757359549403 ], [ 517186.276823462336324, 5276477.068039351142943 ], [ 517183.182056372985244, 5276472.035390463657677 ], [ 517182.252873389690649, 5276466.197811791673303 ], [ 517183.636879390513059, 5276460.444855847395957 ], [ 517187.121146148361731, 5276455.665013891644776 ], [ 517192.177766465058085, 5276452.57913966011256 ], [ 517198.031714984565042, 5276451.651735503226519 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 41, "id_source": "w345744104", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517259.964529229910113, 5276607.73071498144418 ], [ 517262.758359184081201, 5276607.816793796606362 ], [ 517265.301923562132288, 5276608.713452448137105 ], [ 517266.650065713329241, 5276610.00667099840939 ], [ 517267.162947366770823, 5276611.819770255126059 ], [ 517266.895452177501284, 5276613.374934200197458 ], [ 517265.442617826163769, 5276614.459796715527773 ], [ 517257.89919721649494, 5276615.27098586037755 ], [ 517256.670734889106825, 5276614.144833649508655 ], [ 517254.170060470118187, 5276611.447841245681047 ], [ 517255.650236769462936, 5276611.274403218179941 ], [ 517257.042655503668357, 5276612.83448622841388 ], [ 517262.985662306426093, 5276612.21860325243324 ], [ 517259.964529229910113, 5276607.73071498144418 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 42, "id_source": "w345744105", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517240.901260687445756, 5276615.476259981282055 ], [ 517237.858455763373058, 5276615.767329943366349 ], [ 517235.577870710287243, 5276614.838119643740356 ], [ 517234.329403823299799, 5276612.856136604212224 ], [ 517234.143481754988898, 5276607.154115339741111 ], [ 517235.503110585385002, 5276604.568582092411816 ], [ 517238.212239413638599, 5276602.820591975003481 ], [ 517241.744840459839907, 5276601.997501282952726 ], [ 517244.245977763726842, 5276602.004906795918941 ], [ 517252.150148084503599, 5276608.73004618473351 ], [ 517253.818200126057491, 5276611.057809507474303 ], [ 517247.214726768492255, 5276611.505036083981395 ], [ 517245.448273388494272, 5276609.432604781351984 ], [ 517237.093243043578696, 5276610.385899258777499 ], [ 517240.901260687445756, 5276615.476259981282055 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 43, "id_source": "w387419746", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517074.34571770747425, 5277286.481291118077934 ], [ 517073.815601031994447, 5277285.423907616175711 ], [ 517073.622539670730475, 5277264.184509105980396 ], [ 517075.53335638466524, 5277263.078713825903833 ], [ 517076.426174592168536, 5277263.381409962661564 ], [ 517088.862423049926292, 5277273.798362581990659 ], [ 517075.503046040714253, 5277286.217949401587248 ], [ 517074.34571770747425, 5277286.481291118077934 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 44, "id_source": "w395097932", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516950.782598124700598, 5277399.771897230297327 ], [ 516976.789713834121358, 5277399.725418890826404 ], [ 516976.812687043042388, 5277412.451004424132407 ], [ 516976.815368280746043, 5277414.106996771879494 ], [ 516976.851422933628783, 5277435.223683521151543 ], [ 516951.114820280869026, 5277435.270948335528374 ], [ 516929.053089810709935, 5277455.111913793720305 ], [ 516993.976177690085024, 5277455.067660893313587 ], [ 516993.189909731387161, 5277402.829610265791416 ], [ 516993.096773312136065, 5277398.717162104323506 ], [ 517005.671745092316996, 5277397.586909036152065 ], [ 517007.685480395273771, 5277392.0802520820871 ], [ 517007.646211590908933, 5277384.956069781444967 ], [ 517006.950365502969362, 5277378.930254627019167 ], [ 517004.12191711430205, 5277377.966190176084638 ], [ 516950.912539526296314, 5277378.355617901310325 ], [ 516950.856917472730856, 5277397.460403767414391 ], [ 516950.782598124700598, 5277399.771897230297327 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 45, "id_source": "w395097933", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516863.034932061680593, 5277387.269473287276924 ], [ 516860.046953876328189, 5277386.927400229498744 ], [ 516859.866241743031424, 5277374.123562324792147 ], [ 516805.30252495984314, 5277375.388404211960733 ], [ 516805.397113104758319, 5277381.645852354355156 ], [ 516793.801258020394016, 5277381.801331114023924 ], [ 516794.674426411744207, 5277464.414125978015363 ], [ 516802.348777721053921, 5277464.669662701897323 ], [ 516802.256327421520837, 5277470.682064110413194 ], [ 516805.464359833393246, 5277470.224535719491541 ], [ 516805.017967201885767, 5277489.583817024715245 ], [ 516809.396681535465177, 5277492.01930742431432 ], [ 516806.79525656288024, 5277498.268973419442773 ], [ 516804.580934366211295, 5277497.895819933153689 ], [ 516794.048058926768135, 5277494.108898930251598 ], [ 516788.810651340521872, 5277489.959389437921345 ], [ 516785.688078753475565, 5277486.827354734763503 ], [ 516783.973901469027624, 5277482.287905092351139 ], [ 516783.984698798099998, 5277478.542521808296442 ], [ 516782.501129335782025, 5277341.891761313192546 ], [ 516784.074300747073721, 5277340.651529593393207 ], [ 516891.373962575104088, 5277339.328077659010887 ], [ 516891.272426267038099, 5277345.851694053970277 ], [ 516875.455994656716939, 5277345.961425642482936 ], [ 516863.034932061680593, 5277387.269473287276924 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 46, "id_source": "w395097934", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517019.950111921411008, 5277384.08067733515054 ], [ 517019.962440094444901, 5277387.570506259799004 ], [ 517020.398079790233169, 5277387.549551795236766 ], [ 517021.397391892562155, 5277472.152171716094017 ], [ 517021.509628261090256, 5277479.998977976851165 ], [ 517019.369208245712798, 5277480.037176531739533 ], [ 517019.571434503071941, 5277487.928701876662672 ], [ 517007.404942470835522, 5277488.115428001619875 ], [ 517007.331165642826818, 5277485.092206737957895 ], [ 517004.185800015751738, 5277484.660687646828592 ], [ 516999.904898837383371, 5277484.759326064959168 ], [ 516999.840834557253402, 5277480.980381866917014 ], [ 516999.51992562081432, 5277480.29037737287581 ], [ 516928.875338061538059, 5277480.084533797577024 ], [ 516928.283628532488365, 5277482.127787612378597 ], [ 517024.800330617115833, 5277497.502023031003773 ], [ 517024.957025903160684, 5277495.279682827182114 ], [ 517025.822427126695402, 5277481.834283281117678 ], [ 517025.979773205064703, 5277479.389665226452053 ], [ 517027.62866405560635, 5277454.832566075026989 ], [ 517027.720339584862813, 5277449.164698623120785 ], [ 517027.833178302680608, 5277441.396348789334297 ], [ 517027.170987900812179, 5277403.328993655741215 ], [ 517073.383038537052926, 5277394.517563253641129 ], [ 517074.671501213044394, 5277393.065408975817263 ], [ 517077.008046307542827, 5277390.182624198496342 ], [ 517079.219773042947054, 5277388.888774883002043 ], [ 517077.084387493494432, 5277376.957199269905686 ], [ 517072.18918880529236, 5277376.509397665970027 ], [ 517024.003603314515203, 5277377.024030573666096 ], [ 517024.058002053876407, 5277384.103801283054054 ], [ 517019.950111921411008, 5277384.08067733515054 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 47, "id_source": "w395097935", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516868.770101723086555, 5277393.298754908144474 ], [ 516870.462444369506557, 5277382.034073974005878 ], [ 516877.840151886281092, 5277360.305381040088832 ], [ 516878.285049677535426, 5277393.359672509133816 ], [ 516874.845611660857685, 5277393.316360782831907 ], [ 516868.770101723086555, 5277393.298754908144474 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 48, "id_source": "w395097936", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516842.170450465055183, 5277437.210915596224368 ], [ 516842.529669232899323, 5277406.492889385670424 ], [ 516874.762992984557059, 5277406.275032329373062 ], [ 516875.365418186527677, 5277400.530846133828163 ], [ 516886.599087996815797, 5277400.952406934462488 ], [ 516928.285059344372712, 5277437.727399924769998 ], [ 516842.170450465055183, 5277437.210915596224368 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 49, "id_source": "w395097937", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516901.92081075895112, 5277346.138218006119132 ], [ 516902.023585006361827, 5277339.192273776046932 ], [ 516935.466940246638842, 5277338.789325847290456 ], [ 516935.197084536834154, 5277351.525171746499836 ], [ 516925.251642388233449, 5277352.274231209419668 ], [ 516925.482551758817863, 5277389.095547544769943 ], [ 516923.454844661755487, 5277389.100767223164439 ], [ 516906.287520830519497, 5277388.939752215519547 ], [ 516905.630570620356593, 5277346.204558455385268 ], [ 516901.92081075895112, 5277346.138218006119132 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 50, "id_source": "w400596004", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516849.974800481111743, 5276626.91305841691792 ], [ 516851.588837718300056, 5276627.195578062906861 ], [ 516852.968300470733084, 5276628.077573969960213 ], [ 516853.903269579051994, 5276629.425070749595761 ], [ 516854.259192514640745, 5276631.0153992716223 ], [ 516853.969115059589967, 5276632.626086154952645 ], [ 516853.086353658582084, 5276634.001664360053837 ], [ 516851.746715493267402, 5276634.931361604481936 ], [ 516850.14586920524016, 5276635.28237665258348 ], [ 516848.53183414414525, 5276634.999857395887375 ], [ 516847.152372373675462, 5276634.117862526327372 ], [ 516846.209859439579304, 5276632.78145897667855 ], [ 516845.861477453028783, 5276631.180038791149855 ], [ 516846.144009696785361, 5276629.580443668179214 ], [ 516847.026770114374813, 5276628.204864426515996 ], [ 516848.373952101857867, 5276627.264073950238526 ], [ 516849.974800481111743, 5276626.91305841691792 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 51, "id_source": "w400597926", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516888.607160441344604, 5276599.795725983567536 ], [ 516886.369678344228305, 5276599.52250230871141 ], [ 516884.029363043198828, 5276598.448775165714324 ], [ 516883.395219611236826, 5276596.968778026290238 ], [ 516883.085302418854553, 5276595.056275879964232 ], [ 516883.62289607146522, 5276593.56856178957969 ], [ 516884.581714557483792, 5276591.870903476141393 ], [ 516886.131867414689623, 5276590.87514031957835 ], [ 516887.99580426060129, 5276590.458214192651212 ], [ 516890.811793032684363, 5276590.677546450868249 ], [ 516892.297282087907661, 5276591.259781807661057 ], [ 516893.518791984417476, 5276592.219126921147108 ], [ 516894.371040587546304, 5276593.599732105620205 ], [ 516894.735690879111644, 5276594.767757330089808 ], [ 516894.626217450713739, 5276596.256712383590639 ], [ 516894.035593363863882, 5276597.899867290630937 ], [ 516892.80841081199469, 5276598.896565194241703 ], [ 516891.161648435052484, 5276599.536399168893695 ], [ 516888.607160441344604, 5276599.795725983567536 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 52, "id_source": "w400601709", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 517066.445795848267153, 5276532.830110687762499 ], [ 517067.877435012836941, 5276533.845678032375872 ], [ 517068.354426381760277, 5276535.114069206640124 ], [ 517068.192167645844165, 5276536.658436276949942 ], [ 517066.856824344606139, 5276538.66615242511034 ], [ 517061.78498737240443, 5276544.430558699183166 ], [ 517059.439831006515305, 5276545.012729303911328 ], [ 517056.992971596890129, 5276544.416521552950144 ], [ 517055.405457444372587, 5276542.767003753222525 ], [ 517055.034073568182066, 5276541.343327248468995 ], [ 517055.144663006940391, 5276539.487617188133299 ], [ 517055.953483059303835, 5276537.733977769501507 ], [ 517057.392739939736202, 5276536.148894566111267 ], [ 517065.011811412288807, 5276532.61474306602031 ], [ 517065.860555740597192, 5276532.617230146192014 ], [ 517066.445795848267153, 5276532.830110687762499 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 53, "id_source": "w400613444", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516987.452493651013356, 5276596.971303411759436 ], [ 516983.756675439246465, 5276573.932366390712559 ], [ 516981.214040140039288, 5276567.545529939234257 ], [ 516987.642917154124007, 5276557.439447787590325 ], [ 516980.883114801777992, 5276552.240621170029044 ], [ 516994.80080003826879, 5276529.175265032798052 ], [ 516975.883787118422333, 5276512.549156718887389 ], [ 517036.108190654893406, 5276502.144512789323926 ], [ 517036.32497173291631, 5276505.068122293800116 ], [ 517006.788756772992201, 5276544.514203958213329 ], [ 517025.338118888263125, 5276558.371959769167006 ], [ 517025.328469115775079, 5276561.672782326117158 ], [ 517003.51125269010663, 5276586.593259064480662 ], [ 517002.50389213958988, 5276594.614608574658632 ], [ 516987.452493651013356, 5276596.971303411759436 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 54, "id_source": "w435813577", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516565.160712962970138, 5277473.936993055045605 ], [ 516586.958641037694179, 5277459.239679417572916 ], [ 516582.635480685392395, 5277455.715344563126564 ], [ 516586.365512145508546, 5277453.914389882236719 ], [ 516589.487032977747731, 5277454.823516473174095 ], [ 516592.104793138511013, 5277455.942374826408923 ], [ 516593.513503284135368, 5277457.046674339100718 ], [ 516602.634818743506912, 5277471.331923814490438 ], [ 516602.927762665727641, 5277473.944546245038509 ], [ 516602.719261647376698, 5277475.955583387054503 ], [ 516602.210971284541301, 5277477.754599887877703 ], [ 516601.605877951718867, 5277479.264376729726791 ], [ 516600.597284538904205, 5277480.061707899905741 ], [ 516598.478668734082021, 5277480.355745058506727 ], [ 516595.979775559797417, 5277474.424866015091538 ], [ 516567.273035817081109, 5277475.854609301313758 ], [ 516565.959991996991448, 5277475.439655515365303 ], [ 516565.73545712226769, 5277475.172280942089856 ], [ 516565.263984411314595, 5277474.593012128025293 ], [ 516565.160712962970138, 5277473.936993055045605 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 55, "id_source": "w435819540", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516654.01805674447678, 5277499.941602813079953 ], [ 516653.819298847403843, 5277498.540671728551388 ], [ 516654.430482894182205, 5277497.53104710765183 ], [ 516669.56221590784844, 5277487.238343390636146 ], [ 516671.478355312021449, 5277486.843726397491992 ], [ 516673.691735107859131, 5277487.550246145576239 ], [ 516675.402245739591308, 5277488.155300498940051 ], [ 516676.510509447951335, 5277489.269873730838299 ], [ 516677.712993269320577, 5277491.573913846164942 ], [ 516678.007048576080706, 5277493.786439917981625 ], [ 516677.797089598549064, 5277496.297599874436855 ], [ 516677.087446670804638, 5277497.595903730019927 ], [ 516676.175295095425099, 5277498.80471570417285 ], [ 516674.971440919849556, 5277499.601474764756858 ], [ 516673.558459573832806, 5277499.997531560249627 ], [ 516654.872834386012983, 5277500.410835509188473 ], [ 516654.01805674447678, 5277499.941602813079953 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 56, "id_source": "w435819541", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516592.562656500318553, 5277392.782894633710384 ], [ 516593.564105231547728, 5277394.497302561067045 ], [ 516595.476563399017323, 5277395.402986350469291 ], [ 516597.790752420609351, 5277395.0094796391204 ], [ 516607.365527006273624, 5277392.525022241286933 ], [ 516609.186061897780746, 5277391.429930838756263 ], [ 516610.090706246264745, 5277390.221087141893804 ], [ 516610.906056514824741, 5277388.723025188781321 ], [ 516611.007426889962517, 5277387.41186405159533 ], [ 516611.011422151408624, 5277386.011513214558363 ], [ 516610.609057795954868, 5277384.898966672830284 ], [ 516609.80949227954261, 5277383.496323361061513 ], [ 516605.273280631110538, 5277386.195196626707911 ], [ 516597.643240055942442, 5277375.626267831772566 ], [ 516603.089583630498964, 5277372.429854614660144 ], [ 516602.087531711440533, 5277370.92660912219435 ], [ 516600.077469086798374, 5277370.009530962444842 ], [ 516597.261530381045304, 5277369.901477105915546 ], [ 516594.94039169914322, 5277370.094912517815828 ], [ 516593.023047319846228, 5277370.900768828578293 ], [ 516591.11324507399695, 5277371.695533276535571 ], [ 516588.691058366501238, 5277373.088993662036955 ], [ 516587.575568009051494, 5277374.497291675768793 ], [ 516586.969644743367098, 5277376.296031087636948 ], [ 516586.964198803470936, 5277378.207621091045439 ], [ 516587.058978121494874, 5277379.208149813115597 ], [ 516591.701180707721505, 5277376.209486835636199 ], [ 516597.807354450516868, 5277389.185798333026469 ], [ 516592.562656500318553, 5277392.782894633710384 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 57, "id_source": "w437560217", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516148.231295185163617, 5276961.166997685097158 ], [ 516140.350367845327128, 5276932.226588282734156 ], [ 516145.994908686319832, 5276930.741850190795958 ], [ 516150.628329529135954, 5276930.954750994220376 ], [ 516153.84672470134683, 5276932.264013238251209 ], [ 516155.854510829958599, 5276934.081161126494408 ], [ 516157.667300542409066, 5276935.797742884606123 ], [ 516158.669265022152103, 5276937.40093541238457 ], [ 516161.355179659789428, 5276949.255885404534638 ], [ 516160.846672745014075, 5276951.166077611967921 ], [ 516159.428011789685115, 5276953.573872858658433 ], [ 516157.309768773964606, 5276956.379830311983824 ], [ 516155.186268224904779, 5276958.374453850090504 ], [ 516152.162593252724037, 5276959.977592044509947 ], [ 516148.231295185163617, 5276961.166997685097158 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 58, "id_source": "w437582713", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516041.836825901409611, 5277296.659471808932722 ], [ 516043.63620664307382, 5277300.487638493068516 ], [ 516046.049194930470549, 5277302.394778434187174 ], [ 516047.757312518602703, 5277303.910987295210361 ], [ 516049.768066141288728, 5277304.616710420697927 ], [ 516051.277302989154123, 5277304.720896753482521 ], [ 516099.248974451620597, 5277294.817420925945044 ], [ 516101.565135880198795, 5277293.712427788414061 ], [ 516103.589759587019216, 5277292.117614130489528 ], [ 516104.19446591072483, 5277290.70781128667295 ], [ 516104.70735214772867, 5277287.197212439961731 ], [ 516104.509284499159548, 5277285.496225762180984 ], [ 516103.423106525558978, 5277279.058227592147887 ], [ 516087.800845949270297, 5277282.22698091994971 ], [ 516089.394682380952872, 5277289.766662889160216 ], [ 516061.682170145155396, 5277295.313822302035987 ], [ 516060.780937482253648, 5277292.599525346420705 ], [ 516041.836825901409611, 5277296.659471808932722 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 59, "id_source": "w437582716", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516087.971930546045769, 5277329.028421093709767 ], [ 516082.89834433136275, 5277306.119606190361083 ], [ 516099.22767809801735, 5277302.519349787384272 ], [ 516102.242739444889594, 5277303.961390778422356 ], [ 516103.041608022584114, 5277305.664039053954184 ], [ 516103.646015100879595, 5277307.077186118811369 ], [ 516103.497296726854984, 5277325.548209192231297 ], [ 516087.971930546045769, 5277329.028421093709767 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 60, "id_source": "w437589848", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516013.250200282898732, 5277322.420780627056956 ], [ 516009.765244867128786, 5277306.14033189509064 ], [ 516034.405782080197241, 5277300.684490776620805 ], [ 516038.566727487370372, 5277308.731358015909791 ], [ 516043.982657742511947, 5277316.481609044596553 ], [ 516013.250200282898732, 5277322.420780627056956 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 61, "id_source": "w438978440", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516964.874102490895893, 5276715.691669804044068 ], [ 516960.952699856192339, 5276713.368539907038212 ], [ 516958.644364364212379, 5276711.650264710187912 ], [ 516956.640245083544869, 5276708.632540868595243 ], [ 516955.839597265876364, 5276705.018166916444898 ], [ 516954.745445047039539, 5276701.602990162558854 ], [ 516952.63383963907836, 5276699.38516120519489 ], [ 516949.717994845064823, 5276697.365043761208653 ], [ 516947.306536089163274, 5276694.946292435750365 ], [ 516945.2029859998147, 5276692.539552057161927 ], [ 516944.304429570096545, 5276689.013806753791869 ], [ 516943.812005724117626, 5276685.300305660814047 ], [ 516943.019439475552645, 5276681.485905591398478 ], [ 516942.119392637105193, 5276678.471399303525686 ], [ 516940.82068906276254, 5276675.655785036273301 ], [ 516938.710814528341871, 5276672.837811584584415 ], [ 516937.505676006956492, 5276671.422831314615905 ], [ 516938.313989993766882, 5276669.824769679456949 ], [ 516940.339383224258199, 5276668.119108679704368 ], [ 516942.055054935975932, 5276667.023816044442356 ], [ 516943.256789020786528, 5276667.027312304824591 ], [ 516946.076498124748468, 5276668.535903649404645 ], [ 516949.593225368706044, 5276670.557767959311604 ], [ 516953.719524624990299, 5276672.170191851444542 ], [ 516956.544179731572513, 5276671.978364228270948 ], [ 516960.776273791969288, 5276670.790378994308412 ], [ 516964.301768365025055, 5276669.800390003249049 ], [ 516967.932448230974842, 5276668.799595638178289 ], [ 516971.259748495649546, 5276668.809291303157806 ], [ 516973.169148603861686, 5276670.826485947705805 ], [ 516974.975469093071297, 5276672.132086229510605 ], [ 516977.393956848361995, 5276672.13913638330996 ], [ 516980.116669326205738, 5276670.846739260479808 ], [ 516982.42796411953168, 5276671.553659514524043 ], [ 516983.734742814325728, 5276674.169255105778575 ], [ 516984.435185535170604, 5276676.082902009598911 ], [ 516984.731826092931442, 5276677.384102518670261 ], [ 516984.11904106521979, 5276678.893816226162016 ], [ 516982.699575853766873, 5276684.013220119290054 ], [ 516982.383432620612439, 5276686.824134463444352 ], [ 516983.378658129891846, 5276693.2509158058092 ], [ 516985.475417279987596, 5276697.980471583083272 ], [ 516987.379550827143248, 5276701.798120092600584 ], [ 516989.588198829093017, 5276704.216296444647014 ], [ 516989.98823685006937, 5276706.117953753098845 ], [ 516989.170619533280842, 5276708.327249999158084 ], [ 516985.538394717557821, 5276712.439940376207232 ], [ 516982.300851388135925, 5276715.142308777198195 ], [ 516979.075228797388263, 5276716.33321273047477 ], [ 516974.438748443732038, 5276717.119902653619647 ], [ 516971.118986550602131, 5276717.11022699251771 ], [ 516967.793171100725885, 5276716.600406582467258 ], [ 516964.874102490895893, 5276715.691669804044068 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 62, "id_source": "w511510926", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516345.249631054000929, 5277449.853823395445943 ], [ 516346.759324829850812, 5277441.75596734508872 ], [ 516348.962936142401304, 5277429.914647633209825 ], [ 516344.274934911285527, 5277425.211383985355496 ], [ 516347.566448008583393, 5277421.764176031574607 ], [ 516344.424651509500109, 5277420.032687746919692 ], [ 516343.132455579412635, 5277420.206884070299566 ], [ 516342.425155669741798, 5277420.693913970142603 ], [ 516340.761748474324122, 5277427.368749489076436 ], [ 516345.421530891850125, 5277428.748849832452834 ], [ 516343.572270487900823, 5277437.423680024221539 ], [ 516346.770090397272725, 5277437.92167298682034 ], [ 516344.393916437285952, 5277449.706939280033112 ], [ 516344.769251767138485, 5277449.763562897220254 ], [ 516345.249631054000929, 5277449.853823395445943 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 63, "id_source": "w511510929", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516461.098823564767372, 5277428.007816318422556 ], [ 516457.02458500477951, 5277426.718190221115947 ], [ 516453.567786264000461, 5277424.852384639903903 ], [ 516452.598508212831803, 5277422.37122683506459 ], [ 516453.50194973917678, 5277418.917330568656325 ], [ 516455.016176005243324, 5277417.243398266844451 ], [ 516457.949517434288282, 5277415.662389588542283 ], [ 516461.501183607848361, 5277415.850254211574793 ], [ 516464.518171595002059, 5277416.558966252952814 ], [ 516466.490847017907072, 5277417.420321987941861 ], [ 516461.098823564767372, 5277428.007816318422556 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 64, "id_source": "w511510936", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516413.291072103602346, 5277414.558290612883866 ], [ 516399.563981445098761, 5277400.849407986737788 ], [ 516400.101065565017052, 5277399.47278680279851 ], [ 516401.970277152664494, 5277399.744787974283099 ], [ 516428.889549283951055, 5277409.111976910382509 ], [ 516429.463419294392224, 5277410.669554119929671 ], [ 516429.05663146689767, 5277411.112965608946979 ], [ 516414.003883312281687, 5277414.782579838298261 ], [ 516413.291072103602346, 5277414.558290612883866 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 65, "id_source": "w511510937", "type": "hedge", "height_class": "high", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516387.519644212210551, 5277392.268841031938791 ], [ 516412.032716302375775, 5277418.711373525671661 ], [ 516435.044775786926039, 5277412.808077803812921 ], [ 516436.348208549723495, 5277408.655127067118883 ], [ 516388.272886697610375, 5277391.470754365436733 ], [ 516387.521771378815174, 5277391.513096115551889 ], [ 516387.519644212210551, 5277392.268841031938791 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 66, "id_source": "w511510938", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516349.122218859847635, 5277389.237914191558957 ], [ 516376.971867700514849, 5277417.645729565061629 ], [ 516375.131277973239776, 5277423.219772600568831 ], [ 516379.251133432786446, 5277426.987888126634061 ], [ 516387.022299335862044, 5277424.886984696611762 ], [ 516383.886990124185104, 5277420.85489853285253 ], [ 516394.010882213362493, 5277418.004874652251601 ], [ 516362.986457669641823, 5277386.264972837641835 ], [ 516367.564459832792636, 5277384.688541206531227 ], [ 516361.748995233152527, 5277382.993984006345272 ], [ 516358.775819219939876, 5277382.718893859535456 ], [ 516356.288664200867061, 5277383.200921459123492 ], [ 516353.086101360968314, 5277384.381121629849076 ], [ 516350.820624282234348, 5277386.152996275573969 ], [ 516349.350730523292441, 5277388.093815576285124 ], [ 516349.122218859847635, 5277389.237914191558957 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 67, "id_source": "w511510939", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516344.691889998619445, 5277402.417773661203682 ], [ 516346.124426398251671, 5277397.731694337911904 ], [ 516350.154200024495367, 5277401.49953602347523 ], [ 516344.691889998619445, 5277402.417773661203682 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 68, "id_source": "w511510940", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516364.768550980137661, 5277430.892627101391554 ], [ 516375.606227438431233, 5277427.911209838464856 ], [ 516372.154404024593532, 5277424.267229223623872 ], [ 516366.998391307774, 5277425.764234390109777 ], [ 516362.480660552682821, 5277421.939439468085766 ], [ 516361.48695067880908, 5277428.138250023126602 ], [ 516364.768550980137661, 5277430.892627101391554 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 69, "id_source": "w617671556", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516180.092093858111184, 5277671.483252213336527 ], [ 516199.821587358426768, 5277678.940034786239266 ], [ 516201.086392213706858, 5277656.204337294213474 ], [ 516197.985469670325983, 5277656.006770871579647 ], [ 516195.177677093539387, 5277647.619013450108469 ], [ 516196.122834226523992, 5277623.704344338737428 ], [ 516167.449725878075697, 5277616.033794342540205 ], [ 516163.495264794502873, 5277633.838533106260002 ], [ 516180.092093858111184, 5277671.483252213336527 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 70, "id_source": "w617671557", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516137.574281121953391, 5277703.44020395167172 ], [ 516147.381181092991028, 5277706.357033611275256 ], [ 516169.025934602017514, 5277719.075941341929138 ], [ 516185.04201722756261, 5277725.110886143520474 ], [ 516200.509353643690702, 5277688.155444013886154 ], [ 516192.379050977702718, 5277684.531892837956548 ], [ 516188.176714532019105, 5277696.945643622428179 ], [ 516187.343746514350642, 5277699.43286060821265 ], [ 516170.952737226791214, 5277693.174588869325817 ], [ 516165.541146222443786, 5277689.458601790480316 ], [ 516162.140329532674514, 5277683.681000236421824 ], [ 516158.534901527047623, 5277673.157160550355911 ], [ 516152.504341740335803, 5277673.284907204099 ], [ 516137.574281121953391, 5277703.44020395167172 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 71, "id_source": "w617671559", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516242.378148338058963, 5277749.021166557446122 ], [ 516236.565128630085383, 5277749.260572599247098 ], [ 516231.144996893359348, 5277751.334887972101569 ], [ 516226.666565928782802, 5277755.023361507803202 ], [ 516223.603984520188533, 5277759.949436793103814 ], [ 516222.274102147785015, 5277765.591637076810002 ], [ 516258.015213019330986, 5277764.335436600260437 ], [ 516256.191418932692613, 5277758.595525129698217 ], [ 516252.72752354235854, 5277753.940206101164222 ], [ 516247.953195728652645, 5277750.637138257734478 ], [ 516242.378148338058963, 5277749.021166557446122 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 72, "id_source": "r3327971", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516424.964104821963701, 5276180.740065201185644 ], [ 516446.595749705971684, 5276245.128729283809662 ], [ 516476.740098067792132, 5276231.521524302661419 ], [ 516589.288905209454242, 5276171.881165928207338 ], [ 516584.977519440813921, 5276137.504510704427958 ], [ 516563.365462852932978, 5276095.676737695932388 ], [ 516449.507493920740671, 5276158.314668531529605 ], [ 516424.964104821963701, 5276180.740065201185644 ] ], [ [ 516439.578897476778366, 5276192.317591353319585 ], [ 516447.579363307973836, 5276165.466615495271981 ], [ 516501.321642060705926, 5276134.644010124728084 ], [ 516548.032741847157013, 5276112.059593254700303 ], [ 516577.610268933291081, 5276171.24776020180434 ], [ 516533.853454668540508, 5276198.452620967291296 ], [ 516518.01794817391783, 5276206.843188677914441 ], [ 516462.779899108514655, 5276232.904635717161 ], [ 516439.578897476778366, 5276192.317591353319585 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 73, "id_source": "r2547212", "type": "grassland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 516511.728878316469491, 5277542.502993915230036 ], [ 516509.458663688972592, 5277548.598135016858578 ], [ 516508.428539135609753, 5277556.997388773597777 ], [ 516512.592472666525282, 5277637.830123279243708 ], [ 516514.347054536046926, 5277646.715177794918418 ], [ 516518.102989915234502, 5277654.261118380352855 ], [ 516522.906591688748449, 5277660.454128104262054 ], [ 516529.095505628734827, 5277665.395194073207676 ], [ 516537.0376999162836, 5277669.085365911014378 ], [ 516543.626879298943095, 5277670.582247513346374 ], [ 516549.625803072296549, 5277671.021629521623254 ], [ 516554.912710135336965, 5277670.969977363012731 ], [ 516561.680830880417489, 5277670.27793216239661 ], [ 516569.286877789534628, 5277668.054548919200897 ], [ 516575.829802344844211, 5277664.694521479308605 ], [ 516580.594299512333237, 5277660.862648424692452 ], [ 516584.941971972002648, 5277655.729254907928407 ], [ 516588.404884741699789, 5277650.115441950038075 ], [ 516590.91579830943374, 5277643.898762488737702 ], [ 516591.939280900929589, 5277637.866782613098621 ], [ 516592.074796514818445, 5277632.476883607916534 ], [ 516587.64069943112554, 5277554.599638471379876 ], [ 516586.645097538887057, 5277548.206258443184197 ], [ 516584.529217125964351, 5277542.276474807411432 ], [ 516581.869245822133962, 5277537.534339076839387 ], [ 516577.783436004887335, 5277532.432496793568134 ], [ 516571.565046277886722, 5277527.257902973331511 ], [ 516564.328088305133861, 5277523.747516012750566 ], [ 516558.453025791910477, 5277521.952565498650074 ], [ 516551.80158152646618, 5277521.166786517947912 ], [ 516544.321569516381714, 5277521.256665566004813 ], [ 516537.845462927303743, 5277522.194068890064955 ], [ 516530.118735325871967, 5277524.539404842071235 ], [ 516523.988747052499093, 5277527.88954158872366 ], [ 516518.334658114239573, 5277532.908133145421743 ], [ 516514.996943991049193, 5277536.744103870354593 ], [ 516511.728878316469491, 5277542.502993915230036 ] ], [ [ 516515.101216177165043, 5277544.990978563204408 ], [ 516579.062307949876413, 5277542.205334203317761 ], [ 516584.643629545345902, 5277647.103948470205069 ], [ 516520.616006066615228, 5277649.922679178416729 ], [ 516515.101216177165043, 5277544.990978563204408 ] ] ] } }, +{ "type": "Feature", "properties": { "id_veget": 74, "id_source": "r2596906", "type": "farmland", "height_class": "low", "zindex": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 515957.49437283462612, 5277002.251885491423309 ], [ 515939.832338418927975, 5276982.109447724185884 ], [ 515917.25031423807377, 5276874.21992661524564 ], [ 515797.151130122249015, 5276884.117732216604054 ], [ 515789.493895635474473, 5276860.635375917889178 ], [ 515797.3460493835737, 5276812.266453668475151 ], [ 515798.35565959016094, 5276692.049411842599511 ], [ 515781.300044359115418, 5276655.449334780685604 ], [ 515758.878400046203751, 5276650.487358752638102 ], [ 515724.0696098000044, 5276612.739157604984939 ], [ 515710.99093292321777, 5276568.970413548871875 ], [ 515730.412854463036638, 5276563.988216451369226 ], [ 515713.555327681649942, 5276481.510449754074216 ], [ 515738.935830716916826, 5276428.554276085458696 ], [ 515780.974177877011243, 5276387.646404875442386 ], [ 515862.158595570886973, 5276370.062384689226747 ], [ 515868.740786949871108, 5276374.725951042957604 ], [ 515880.71889641386224, 5276394.874869927763939 ], [ 515895.384233975200914, 5276426.656352461315691 ], [ 515936.949573575693648, 5276419.023513428866863 ], [ 515982.745153642783407, 5276421.860817108303308 ], [ 516014.938195353723131, 5276432.785367758013308 ], [ 516044.765344845538493, 5276457.251500864513218 ], [ 516084.315797048737295, 5276474.776178585365415 ], [ 516139.793746621522587, 5276488.088596286252141 ], [ 516151.474271408224013, 5276509.493134968914092 ], [ 516160.522331375337671, 5276515.919879980385303 ], [ 516170.691975930531044, 5276526.873137758113444 ], [ 516177.062647754093632, 5276545.340015360154212 ], [ 516173.968933883821592, 5276572.082741529680789 ], [ 516176.049981605785433, 5276639.505851536989212 ], [ 516197.513448089594021, 5276664.805333492346108 ], [ 516209.481136448855978, 5276709.661272699013352 ], [ 516202.57157293864293, 5276747.3072899132967 ], [ 516217.266712748503778, 5276762.040864913724363 ], [ 516252.455742757359985, 5276863.920727244578302 ], [ 516189.937303205893841, 5276885.485504798591137 ], [ 516118.507856099924538, 5276894.900934981182218 ], [ 516120.457810344058089, 5276906.764941655099392 ], [ 516025.190100993728265, 5276927.129516770131886 ], [ 516038.327794493525289, 5276994.671958418563008 ], [ 515957.49437283462612, 5277002.251885491423309 ] ], [ [ 515798.38708906742977, 5276572.485462988726795 ], [ 515873.749549317057244, 5276562.576684392057359 ], [ 515880.149400955764577, 5276567.917721018195152 ], [ 515884.054680912871845, 5276603.882047647610307 ], [ 515833.45187001361046, 5276645.832833437249064 ], [ 515818.858019669074565, 5276607.172144838608801 ], [ 515806.844904647674412, 5276605.539114874787629 ], [ 515794.085619043151382, 5276579.931265401653945 ], [ 515798.38708906742977, 5276572.485462988726795 ] ], [ [ 516070.928083823877387, 5276679.947497542016208 ], [ 516163.584448294772301, 5276646.68420516513288 ], [ 516191.354534212034196, 5276713.422937500290573 ], [ 516181.481405027850997, 5276733.745174184441566 ], [ 516188.13311696331948, 5276786.110463745892048 ], [ 516134.831672320084181, 5276796.131819072179496 ], [ 516129.98018588864943, 5276774.27942640800029 ], [ 516138.315410157782026, 5276766.767247997224331 ], [ 516127.427188092493452, 5276741.497257271781564 ], [ 516101.368025715986732, 5276740.30263580288738 ], [ 516092.356474522151984, 5276718.049787561409175 ], [ 516070.928083823877387, 5276679.947497542016208 ] ] ] } } ] }