From a049923fea5893567013904910bea7edc5af2b0e Mon Sep 17 00:00:00 2001 From: Ahmed Behairi Date: Wed, 31 Jul 2024 11:42:31 +0200 Subject: [PATCH] Feat: Support updating style variables from layer configurations (#1088) * feat: support style variables in layer-config * feat: added a story with cog and vector layers * chore: format * fix: `layerConfig.style` + layer type checking * chore: move cropomhusc feature collection to local file * chore: format * fix: support all layer types that supports setting styles * chore: use latest eox-map version * chore: update package lock * chore: remove ol import * chore: format * fix: removing caching of node modules, seems to favour having older packages when testing * fix: adding unique map id and checking for availability before registering projection * chore: adding back npm caching for workflow * chore: ran format --------- Co-authored-by: silvester-pari Co-authored-by: Daniel Santillan --- .../src/components/layer-config.js | 31 +- elements/layercontrol/src/enums/index.js | 2 + elements/layercontrol/src/enums/stories.js | 183 - .../assets/cropomhusc-feature-collection.json | 5274 +++++++++++++++++ .../layercontrol/src/enums/stories/index.js | 424 ++ .../src/helpers/get-start-vals.js | 46 +- .../layer-config/apply-updated-styles.js | 98 + .../src/methods/layer-config/index.js | 1 + elements/layercontrol/stories/index.js | 1 + .../stories/layer-config-styles.js | 40 + .../stories/layercontrol.stories.js | 3 + 11 files changed, 5895 insertions(+), 208 deletions(-) delete mode 100644 elements/layercontrol/src/enums/stories.js create mode 100644 elements/layercontrol/src/enums/stories/assets/cropomhusc-feature-collection.json create mode 100644 elements/layercontrol/src/enums/stories/index.js create mode 100644 elements/layercontrol/src/methods/layer-config/apply-updated-styles.js create mode 100644 elements/layercontrol/stories/layer-config-styles.js diff --git a/elements/layercontrol/src/components/layer-config.js b/elements/layercontrol/src/components/layer-config.js index e8dc6ec05..9807cfaaf 100644 --- a/elements/layercontrol/src/components/layer-config.js +++ b/elements/layercontrol/src/components/layer-config.js @@ -1,9 +1,8 @@ import { LitElement, html } from "lit"; import { getStartVals } from "../helpers"; -import { dataChangeMethod } from "../methods/layer-config"; +import { dataChangeMethod, applyUpdatedStyles } from "../methods/layer-config"; import { when } from "lit/directives/when.js"; import _debounce from "lodash.debounce"; - /** * `EOxLayerControlLayerConfig` is a component that handles configuration options for layers using eox-jsonform. * It allows users to input data, modify layer settings, and update the UI based on those settings. @@ -70,7 +69,7 @@ export class EOxLayerControlLayerConfig extends LitElement { /** * Layer config for eox-jsonform * - * @type {{ schema: object, element: string }} + * @type {{ schema: Record; element: string; type?:"tileUrl"|"style"; style?:import("ol/layer/WebGLTile").Style}} */ this.layerConfig = null; @@ -89,12 +88,26 @@ export class EOxLayerControlLayerConfig extends LitElement { */ #handleDataChange(e) { this.#data = e.detail; - this.#originalTileUrlFunction = dataChangeMethod( - this.#data, - this.#originalTileUrlFunction, - this - ); - this.requestUpdate(); + if (this.layerConfig.type === "style" || this.layerConfig.style) { + const supportStyleConfig = + "setStyle" in this.layer || "updateStyleVariables" in this.layer; + if (supportStyleConfig) { + applyUpdatedStyles(this.#data, this.layer, this.layerConfig); + } else { + console.error( + `Layer type ${ + this.layer.get("type") ?? "" + } does not support styles configuration` + ); + } + } else { + this.#originalTileUrlFunction = dataChangeMethod( + this.#data, + this.#originalTileUrlFunction, + this + ); + this.requestUpdate(); + } } /** diff --git a/elements/layercontrol/src/enums/index.js b/elements/layercontrol/src/enums/index.js index 3f1eb2eff..f2f44f16a 100644 --- a/elements/layercontrol/src/enums/index.js +++ b/elements/layercontrol/src/enums/index.js @@ -10,4 +10,6 @@ export { STORIES_LAYER_EOX_CLOUDLESS_2019, STORIES_LAYER_DEFORESTED_BIOMASS, STORIES_LAYER_TERRAIN_LIGHT, + STORIES_LAYER_CROPOMHUSC2, + STORIES_LAYER_SEE, } from "./stories"; diff --git a/elements/layercontrol/src/enums/stories.js b/elements/layercontrol/src/enums/stories.js deleted file mode 100644 index 0d7fb14c4..000000000 --- a/elements/layercontrol/src/enums/stories.js +++ /dev/null @@ -1,183 +0,0 @@ -const SENTINEL_HUB_URL = - "https://services.sentinel-hub.com/ogc/wms/0635c213-17a1-48ee-aef7-9d1731695a54"; - -const S2MAP_URL = (id) => - `//s2maps-tiles.eu/wmts/1.0.0/${id}/default/g/{z}/{y}/{x}.jpg`; - -const LAYER_EOX_CLOUDLESS = (year) => ({ - type: "Tile", - properties: { title: `EOxCloudless ${year}` }, - source: { - type: "XYZ", - url: S2MAP_URL(`s2cloudless-${year}_3857`), - }, -}); - -export const STORIES_MAP_STYLE = - "width: 400px; height: 300px; margin-left: 7px;"; - -export const STORIES_LAYER_SENTINEL_HUB = { - wind: { - type: "Tile", - properties: { id: "WIND", title: "WIND" }, - source: { - type: "TileWMS", - url: SENTINEL_HUB_URL, - params: { LAYERS: "AWS_VIS_WIND_V_10M" }, - }, - }, - no2: { - type: "Tile", - properties: { id: "NO2", title: "NO2" }, - source: { - type: "TileWMS", - url: SENTINEL_HUB_URL, - params: { LAYERS: "AWS_NO2-VISUALISATION" }, - }, - }, -}; - -export const STORIES_LAYER_REGION = { - type: "Vector", - properties: { - title: "Regions", - id: "regions", - description: "Ecological regions of the earth.", - }, - source: { - type: "Vector", - url: "https://openlayers.org/data/vector/ecoregions.json", - format: "GeoJSON", - attributions: "Regions: @ openlayers.org", - }, -}; - -export const STORIES_LAYER_S2 = { - type: "WebGLTile", - properties: { - id: "s2", - layerControlExclusive: true, - title: "s2", - }, - style: { - variables: { - red: 1, - green: 2, - blue: 3, - redMax: 3000, - greenMax: 3000, - blueMax: 3000, - }, - color: [ - "array", - ["/", ["band", ["var", "red"]], ["var", "redMax"]], - ["/", ["band", ["var", "green"]], ["var", "greenMax"]], - ["/", ["band", ["var", "blue"]], ["var", "blueMax"]], - 1, - ], - gamma: 1.1, - }, - source: { - type: "GeoTIFF", - normalize: false, - sources: [ - { - url: "https://s2downloads.eox.at/demo/EOxCloudless/2020/rgbnir/s2cloudless2020-16bits_sinlge-file_z0-4.tif", - }, - ], - }, -}; - -export const STORIES_LAYER_OSM = { - type: "Tile", - properties: { - id: "osm", - title: "Open Street Map", - layerControlExclusive: true, - }, - visible: false, - opacity: 0.5, - source: { - type: "OSM", - }, -}; - -export const STORIES_LAYER_TERRAIN_LIGHT = { - type: "Tile", - properties: { title: "Terrain Light" }, - source: { - type: "XYZ", - url: S2MAP_URL("terrain-light_3857"), - }, -}; - -export const STORIES_LAYER_EOX_CLOUDLESS_2019 = LAYER_EOX_CLOUDLESS("2019"); -export const STORIES_LAYER_EOX_CLOUDLESS_2020 = LAYER_EOX_CLOUDLESS("2020"); -export const STORIES_LAYER_EOX_CLOUDLESS_2021 = LAYER_EOX_CLOUDLESS("2021"); - -export const STORIES_MAIN_MAP_LAYERS = [ - { - type: "Group", - properties: { - id: "group2", - title: "Data Layers", - layerControlExpand: true, - description: "# Hello world", - }, - layers: [ - STORIES_LAYER_SENTINEL_HUB.wind, - STORIES_LAYER_SENTINEL_HUB.no2, - STORIES_LAYER_REGION, - ], - }, - { - type: "Group", - properties: { - id: "group1", - title: "Background Layers", - }, - layers: [STORIES_LAYER_S2, STORIES_LAYER_OSM], - }, -]; - -export const STORIES_LAYER_DEFORESTED_BIOMASS = { - type: "Tile", - properties: { - id: "customId", - title: "Tile XYZ", - layerControlToolsExpand: true, - layerConfig: { - schema: { - type: "object", - properties: { - vminmax: { - type: "object", - properties: { - vmin: { - type: "number", - minimum: 0, - maximum: 10, - format: "range", - }, - vmax: { - type: "number", - minimum: 0, - maximum: 10, - format: "range", - }, - }, - format: "minmax", - }, - cbar: { - type: "string", - enum: ["rain", "temperature"], - }, - }, - }, - }, - }, - source: { - type: "XYZ", - url: "https://reccap2.api.dev.brockmann-consult.de/api/tiles/cop28~reccap2-9x108x139-0.0.1.zarr/deforested_biomass/{z}/{y}/{x}?crs=EPSG:3857&time=2018-01-01T00:00:00Z&vmin=0&vmax=3&cbar=rain", - }, -}; diff --git a/elements/layercontrol/src/enums/stories/assets/cropomhusc-feature-collection.json b/elements/layercontrol/src/enums/stories/assets/cropomhusc-feature-collection.json new file mode 100644 index 000000000..0091949da --- /dev/null +++ b/elements/layercontrol/src/enums/stories/assets/cropomhusc-feature-collection.json @@ -0,0 +1,5274 @@ +{ + "type": "FeatureCollection", + "name": "HU332", + "properties": { + "NUTS_ID": "HU332", + "LEVL_CODE": 3, + "CNTR_CODE": "HU", + "NAME_LATN": "B\u00e9k\u00e9s", + "NUTS_NAME": "B\u00e9k\u00e9s", + "MOUNT_TYPE": 4, + "URBN_TYPE": 2, + "COAST_TYPE": 3, + "FID": "HU332" + }, + "crs": { + "type": "name", + "properties": { "name": "urn:ogc:def:crs:EPSG::3035" } + }, + "features": [ + { + "type": "Feature", + "properties": { + "ID": 3322, + "NUTS_ID": "HU3322", + "NAME": "Orosh\u00e1zi j\u00e1r\u00e1s", + "ADMIN_LEVEL": "7", + "yield": { + "Wheat": { "average": 8.35, "best": 9.03, "worst": 7.48 }, + "Maize": { "average": 5.15, "best": 9.68, "worst": 0.0 }, + "Sunflower": { "average": 1.06, "best": 3.3, "worst": 0.0 }, + "Soybean": { "average": 1.19, "best": 3.06, "worst": 0.0 } + }, + "water_need": { + "Wheat": { "average": 135, "best": 72, "worst": 193 }, + "Maize": { "average": 307, "best": 248, "worst": 469 }, + "Sunflower": { "average": 332, "best": 283, "worst": 477 }, + "Soybean": { "average": 323, "best": 247, "worst": 512 } + }, + "links": { + "Wheat": { + "average": "/crop_model/regional_forecast?nuts_id=HU3322&crop=WheatGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3322&crop=WheatGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3322&crop=WheatGDD&scenario=worst" + }, + "Maize": { + "average": "/crop_model/regional_forecast?nuts_id=HU3322&crop=MaizeGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3322&crop=MaizeGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3322&crop=MaizeGDD&scenario=worst" + }, + "Sunflower": { + "average": "/crop_model/regional_forecast?nuts_id=HU3322&crop=SunflowerGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3322&crop=SunflowerGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3322&crop=SunflowerGDD&scenario=worst" + }, + "Soybean": { + "average": "/crop_model/regional_forecast?nuts_id=HU3322&crop=Soybean&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3322&crop=Soybean&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3322&crop=Soybean&scenario=worst" + } + } + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5130125.4023193875, 2644063.391474228], + [5130302.491106851, 2644725.6376860505], + [5130399.20870352, 2644993.184578633], + [5130781.8369707875, 2645723.225500677], + [5131571.38872497, 2646248.0453569107], + [5131613.747686643, 2646253.286538372], + [5131823.548309686, 2646279.245635513], + [5132332.194967511, 2646299.133312342], + [5132463.542327059, 2646273.022001978], + [5131933.014973612, 2650048.114666868], + [5131756.668817492, 2651178.5330162924], + [5132707.396953486, 2651424.0028369306], + [5133453.2514146995, 2651601.749045878], + [5133339.477747827, 2651843.267808017], + [5133497.641932679, 2651948.275402076], + [5133255.062834575, 2652558.6241385364], + [5133141.885767028, 2652800.9052290637], + [5133013.161965322, 2653169.056923407], + [5132970.787811264, 2653163.8214327423], + [5132770.934825111, 2653053.6429141434], + [5132528.43547439, 2653663.3093141946], + [5132449.307805578, 2653611.151116328], + [5132444.37471284, 2653652.908810571], + [5132326.270390153, 2653936.9466194254], + [5132321.256495049, 2653979.3923148625], + [5132447.001287471, 2653994.9526885035], + [5132516.1787547935, 2654131.322585614], + [5132673.670667753, 2654236.244007467], + [5132742.84800371, 2654372.6000548718], + [5132727.904235254, 2654499.248190341], + [5132681.289597169, 2654535.8440491543], + [5132628.979504328, 2654614.8113248255], + [5132572.435692789, 2654735.601264406], + [5132552.551233327, 2654904.003689512], + [5132476.123509931, 2655193.209811886], + [5132493.00223009, 2655408.531134418], + [5132487.992846054, 2655450.9677301887], + [5132529.6720856335, 2655456.123486145], + [5132616.413992932, 2655807.8993441965], + [5132606.477390547, 2655892.105017834], + [5132586.590579597, 2656060.510929507], + [5132524.3536695335, 2656223.665434988], + [5132583.591566877, 2656444.230533161], + [5132573.646701585, 2656528.433320307], + [5132497.211485571, 2656817.629331119], + [5132640.50253246, 2657048.613598196], + [5132652.360151306, 2657306.3764147307], + [5132608.112159441, 2657423.364945879], + [5132590.871920379, 2657468.936582205], + [5132639.4059936255, 2657774.30559918], + [5132645.862122587, 2657905.8722279044], + [5132652.021842942, 2658031.4756268575], + [5132726.136599639, 2658126.086561869], + [5132888.540307851, 2658189.2518990953], + [5132957.712965488, 2658325.612038428], + [5132990.139168781, 2658415.067310973], + [5132979.109965651, 2658508.471722632], + [5132960.389520696, 2658666.989984366], + [5133108.607925142, 2658856.2077072384], + [5133031.476921124, 2659145.330611824], + [5133058.886488909, 2659277.228767106], + [5133039.080946782, 2659444.9396490483], + [5133029.133056125, 2659529.14449653], + [5133055.942692222, 2659660.2682884163], + [5133130.044370275, 2659754.8808261], + [5133071.776094621, 2659933.418067907], + [5133062.776757709, 2659960.4861365454], + [5132942.054421995, 2659902.475964697], + [5132637.829328281, 2660676.078305469], + [5132953.532319434, 2660885.3487914535], + [5132786.1197871845, 2660864.620170298], + [5132439.977124545, 2660907.1931868056], + [5132415.555043606, 2660920.5150580457], + [5132121.3122916045, 2661080.9676906653], + [5129844.711500272, 2663402.4152853815], + [5129748.34702176, 2663860.0175947286], + [5128890.871147836, 2668234.724542227], + [5128778.815740423, 2668818.918458244], + [5128773.882090497, 2668860.680725923], + [5128625.1580370935, 2669397.2476821877], + [5128582.465284693, 2670843.030513293], + [5128021.5882814545, 2670901.3829307095], + [5128018.022161898, 2672010.2550990973], + [5128013.858733609, 2673844.949123269], + [5127986.490922338, 2674439.635396161], + [5128065.59102524, 2674491.8080636505], + [5127755.060040848, 2676032.250509062], + [5129083.469815472, 2676325.319865706], + [5128792.2398498105, 2676630.3203693405], + [5128507.756071389, 2677235.541306283], + [5128197.720136957, 2678050.8627603604], + [5128108.092070622, 2678808.0420214497], + [5127986.755320707, 2679475.8531050375], + [5127932.044075887, 2679937.973594582], + [5127647.536622777, 2680543.200449814], + [5127702.8914508205, 2681873.3865578333], + [5127692.921024588, 2681957.59659486], + [5127923.23659058, 2683607.4934317893], + [5127881.5541186165, 2683602.3332001283], + [5128050.82067196, 2684690.3291953937], + [5128084.9940762725, 2685121.7895677653], + [5128766.639573891, 2685120.820436098], + [5128986.386714459, 2685062.611676758], + [5129499.943006004, 2685040.8094160054], + [5131592.184711858, 2685001.4310427913], + [5135051.927668438, 2684918.365159982], + [5136158.786550503, 2684927.0880686594], + [5136410.229481198, 2684958.2634276613], + [5137675.105718686, 2685072.75530947], + [5138013.368025997, 2685114.970924133], + [5138054.253959622, 2685119.877747256], + [5138665.443950366, 2684982.293610138], + [5139258.70868205, 2684287.517358464], + [5139815.237010843, 2683545.8068035007], + [5140304.568786649, 2683008.3491130355], + [5140804.4800659, 2682387.451777359], + [5140912.733930692, 2682187.6006284496], + [5141380.238110037, 2681477.2383353934], + [5142127.904284092, 2680204.166090393], + [5142311.612985592, 2679907.1099869465], + [5142335.099705985, 2679888.754914961], + [5142703.630125063, 2679293.953295225], + [5141205.385879047, 2678638.514056168], + [5140526.909021528, 2678255.662968143], + [5138122.815840396, 2676250.042833557], + [5138002.039275454, 2676192.6832284587], + [5138147.692493347, 2676039.8583375216], + [5138429.713140197, 2675818.484813884], + [5138607.686914853, 2675755.7951326044], + [5138862.256199968, 2675403.1968375943], + [5139121.844771193, 2675008.1522301645], + [5139126.7792762, 2674966.3829777725], + [5139095.062317091, 2674877.0163128735], + [5139080.686859136, 2674277.8039195864], + [5139073.150038067, 2673978.17144808], + [5139211.9464316415, 2673525.773796913], + [5139289.140459458, 2673236.639367074], + [5139350.7448012475, 2673073.376233769], + [5139598.442407581, 2672421.227848068], + [5139674.941528363, 2672132.000012664], + [5139831.234382247, 2671895.0392525396], + [5140396.413972678, 2671794.2192166713], + [5141841.781798796, 2671461.4376484742], + [5143155.797771169, 2671154.7479566676], + [5143721.568908778, 2671054.7082600384], + [5144553.8427782515, 2670858.4961359017], + [5145737.096068546, 2670578.690590398], + [5145796.766171155, 2670074.1096794354], + [5146102.110645091, 2667849.4138470506], + [5146115.060583649, 2667382.112547063], + [5146024.222533731, 2667071.446893327], + [5147940.15919829, 2667437.5441270694], + [5148745.62939555, 2667110.2115530614], + [5149165.147481122, 2667162.2335153623], + [5149575.395979339, 2667298.5598846497], + [5150567.545535481, 2667550.1319801994], + [5152866.361411807, 2667920.0436289776], + [5152908.729742173, 2667925.302454996], + [5154787.241402619, 2668243.8144688834], + [5155291.4720271025, 2668306.3875510134], + [5155516.693819536, 2664237.0133654764], + [5155437.047569267, 2661666.5387010565], + [5155331.227572335, 2661482.513787331], + [5154775.840323173, 2660773.1413649875], + [5154544.296436916, 2660573.5355248535], + [5154358.678131278, 2660337.243720104], + [5153574.6885034125, 2659045.1974063003], + [5153644.219405965, 2658456.417277302], + [5153512.88244414, 2658482.5091965604], + [5151554.79834966, 2658837.110869284], + [5149936.440072906, 2659191.472810137], + [5149539.051617591, 2656069.143000409], + [5148988.506178786, 2655318.0800913544], + [5148290.422878339, 2654377.8758232156], + [5148152.07421071, 2654105.1054441053], + [5148008.791687715, 2653874.1006107843], + [5147749.709973286, 2653543.3136792], + [5147569.758367144, 2653264.69770144], + [5147221.7014190685, 2652965.262037407], + [5147456.2812426, 2652781.0860998495], + [5147606.806037509, 2652586.496183774], + [5147871.872633703, 2652149.790173958], + [5148037.34901608, 2651828.5484064934], + [5148192.801194385, 2651592.2014707057], + [5148432.378321782, 2651365.5818880843], + [5148583.587657835, 2651171.07515068], + [5148904.503788562, 2650613.486409128], + [5149070.653216209, 2650292.336055951], + [5149277.719029369, 2649976.941407838], + [5149562.629722442, 2649371.83675835], + [5149614.248789338, 2649292.799917572], + [5149671.469235719, 2649172.078145206], + [5150086.340993258, 2648540.7092156857], + [5150383.13237977, 2648193.377649175], + [5149923.511867022, 2647752.3098753765], + [5149442.748950037, 2647137.7683397364], + [5149082.009310256, 2646581.163767252], + [5148895.044741023, 2646003.037472183], + [5148613.4331090925, 2645498.607206096], + [5148169.312289158, 2644931.6950610452], + [5147806.577206369, 2644033.1414277875], + [5147603.9794133315, 2643581.5817907867], + [5147503.028462509, 2643355.850894369], + [5147118.171290344, 2643009.510698712], + [5146829.339319047, 2642930.678607275], + [5146535.513135767, 2642894.2862619204], + [5146235.998740637, 2642900.2527028793], + [5146137.791551884, 2643015.884852974], + [5145722.277337562, 2643647.1671946156], + [5145299.759786205, 2643978.9331133137], + [5145200.870251138, 2644094.4790202817], + [5145030.507483083, 2644457.4711033823], + [5144711.612089304, 2645357.0164739094], + [5141323.537722926, 2644467.9454585584], + [5140993.8462962825, 2641482.990683986], + [5140912.0343497805, 2641088.7957127825], + [5138756.259862306, 2640949.7377443193], + [5136384.970789355, 2640827.120831999], + [5136363.128039027, 2640653.5670353086], + [5136303.836330977, 2640433.0120684314], + [5135592.4805133175, 2640685.9958298523], + [5134890.960236869, 2640855.467246121], + [5134179.595190021, 2641108.4453983805], + [5134184.518813378, 2641066.691139432], + [5133552.205210856, 2641372.5131518347], + [5133433.632809024, 2640931.4242857513], + [5132262.984746365, 2641469.288282984], + [5132410.648531016, 2641657.6983244526], + [5132522.148627755, 2641799.9780890704], + [5132553.903918385, 2641889.337038758], + [5132628.117224076, 2641983.2352274703], + [5132734.016601445, 2642167.1913946588], + [5132692.333610217, 2642162.037555129], + [5130918.17390366, 2643478.7797869854], + [5130125.4023193875, 2644063.391474228] + ] + ] + ] + }, + "units": { "yield": "t/ha", "water_need": "mm" } + }, + { + "type": "Feature", + "properties": { + "ID": 3321, + "NUTS_ID": "HU3321", + "NAME": "Mez\u0151kov\u00e1csh\u00e1zai j\u00e1r\u00e1s", + "ADMIN_LEVEL": "7", + "yield": { + "Wheat": { "average": 8.43, "best": 9.04, "worst": 7.57 }, + "Maize": { "average": 10.58, "best": 12.45, "worst": 1.65 }, + "Sunflower": { "average": 3.65, "best": 4.64, "worst": 1.8 }, + "Soybean": { "average": 3.0, "best": 4.2, "worst": 1.23 } + }, + "water_need": { + "Wheat": { "average": 128, "best": 62, "worst": 185 }, + "Maize": { "average": 241, "best": 173, "worst": 388 }, + "Sunflower": { "average": 275, "best": 213, "worst": 401 }, + "Soybean": { "average": 257, "best": 173, "worst": 421 } + }, + "links": { + "Wheat": { + "average": "/crop_model/regional_forecast?nuts_id=HU3321&crop=WheatGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3321&crop=WheatGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3321&crop=WheatGDD&scenario=worst" + }, + "Maize": { + "average": "/crop_model/regional_forecast?nuts_id=HU3321&crop=MaizeGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3321&crop=MaizeGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3321&crop=MaizeGDD&scenario=worst" + }, + "Sunflower": { + "average": "/crop_model/regional_forecast?nuts_id=HU3321&crop=SunflowerGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3321&crop=SunflowerGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3321&crop=SunflowerGDD&scenario=worst" + }, + "Soybean": { + "average": "/crop_model/regional_forecast?nuts_id=HU3321&crop=Soybean&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3321&crop=Soybean&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3321&crop=Soybean&scenario=worst" + } + } + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5146896.35991927, 2635129.6270911554], + [5147197.9974464355, 2640885.047988104], + [5147027.659649756, 2641248.0345190777], + [5146235.998740637, 2642900.2527028793], + [5146535.513135767, 2642894.2862619204], + [5146829.339319047, 2642930.678607275], + [5147118.171290344, 2643009.510698712], + [5147503.028462509, 2643355.850894369], + [5147603.9794133315, 2643581.5817907867], + [5147806.577206369, 2644033.1414277875], + [5148169.312289158, 2644931.6950610452], + [5148613.4331090925, 2645498.607206096], + [5148895.044741023, 2646003.037472183], + [5149082.009310256, 2646581.163767252], + [5149442.748950037, 2647137.7683397364], + [5149923.511867022, 2647752.3098753765], + [5150383.13237977, 2648193.377649175], + [5150086.340993258, 2648540.7092156857], + [5149671.469235719, 2649172.078145206], + [5149614.248789338, 2649292.799917572], + [5149562.629722442, 2649371.83675835], + [5149277.719029369, 2649976.941407838], + [5149070.653216209, 2650292.336055951], + [5148904.503788562, 2650613.486409128], + [5148583.587657835, 2651171.07515068], + [5148432.378321782, 2651365.5818880843], + [5148192.801194385, 2651592.2014707057], + [5148037.34901608, 2651828.5484064934], + [5147871.872633703, 2652149.790173958], + [5147606.806037509, 2652586.496183774], + [5147456.2812426, 2652781.0860998495], + [5147221.7014190685, 2652965.262037407], + [5147569.758367144, 2653264.69770144], + [5147749.709973286, 2653543.3136792], + [5148008.791687715, 2653874.1006107843], + [5148152.07421071, 2654105.1054441053], + [5148290.422878339, 2654377.8758232156], + [5148988.506178786, 2655318.0800913544], + [5149539.051617591, 2656069.143000409], + [5149936.440072906, 2659191.472810137], + [5151554.79834966, 2658837.110869284], + [5153512.88244414, 2658482.5091965604], + [5153644.219405965, 2658456.417277302], + [5153574.6885034125, 2659045.1974063003], + [5154358.678131278, 2660337.243720104], + [5154544.296436916, 2660573.5355248535], + [5154775.840323173, 2660773.1413649875], + [5155331.227572335, 2661482.513787331], + [5155437.047569267, 2661666.5387010565], + [5155516.693819536, 2664237.0133654764], + [5155291.4720271025, 2668306.3875510134], + [5156522.36307425, 2666538.26487711], + [5159416.162581678, 2667281.5581928594], + [5159914.683316365, 2667386.5116699045], + [5160287.56673334, 2667475.1696566734], + [5161038.18317802, 2667611.4111500196], + [5162365.104991333, 2666836.870940456], + [5162762.8319249265, 2666715.3465613853], + [5164972.929857282, 2666392.2692976603], + [5165022.154636858, 2666697.112647269], + [5165409.919252308, 2666659.808747885], + [5165624.599728576, 2666644.0863245367], + [5166170.47315438, 2666711.861840805], + [5166837.114608926, 2666837.024091323], + [5167957.968486743, 2666720.5522780176], + [5168299.111388544, 2666719.8511144323], + [5168561.1584619805, 2666666.9387124265], + [5169330.979942267, 2666634.724104013], + [5169503.982570969, 2666613.8360726433], + [5169723.677102033, 2666555.660081722], + [5169901.691008468, 2666492.3207392935], + [5170417.201935182, 2667538.0442908294], + [5171123.571017775, 2667327.0408879407], + [5171692.50257485, 2666399.6414783117], + [5171756.430808214, 2666295.440202236], + [5171998.566783984, 2666410.9752590414], + [5172025.817600525, 2665816.8688151585], + [5171994.563205289, 2665002.2135102632], + [5172498.06092551, 2665064.76051246], + [5172697.847775765, 2665175.025929352], + [5173336.281566741, 2664101.7464491087], + [5172782.864803638, 2663734.257814583], + [5172546.423353749, 2663576.3611344844], + [5172785.933795325, 2663350.4436666244], + [5173062.872755347, 2663171.5558445244], + [5173428.166291449, 2662960.578782077], + [5173700.158271766, 2662823.4491292504], + [5173961.524432027, 2662770.468334306], + [5174233.518618943, 2662633.3529891935], + [5174411.447834977, 2662570.6864571227], + [5174898.186941162, 2662417.1744046863], + [5174811.526664434, 2662065.293577362], + [5174720.6110493075, 2661755.2555292435], + [5174570.577872736, 2661223.892611414], + [5174664.469363197, 2661150.8014596063], + [5175131.313534706, 2661165.724910192], + [5175504.0943168355, 2661255.1102790125], + [5175839.532196125, 2661296.7707997425], + [5176138.307159264, 2661290.8223648746], + [5177294.652231173, 2660879.378514597], + [5177220.9819468055, 2660059.4551417315], + [5177654.320887915, 2658192.337615705], + [5178479.447851371, 2657697.3646315113], + [5178578.349474527, 2657581.8261916963], + [5178973.458811736, 2657118.1947414437], + [5179124.669135441, 2656923.6930228835], + [5179237.762711132, 2656682.077532163], + [5179327.181476741, 2655924.8143746243], + [5179544.949448216, 2655524.598768708], + [5179752.69752013, 2655209.3025139268], + [5180086.231579923, 2654908.936713105], + [5180195.06912092, 2654709.166617262], + [5180523.590685883, 2654451.2545761205], + [5180664.163849452, 2654340.878805536], + [5180758.137580083, 2654267.10666382], + [5181232.059353942, 2654095.350036567], + [5181036.348709345, 2653902.935847556], + [5180971.754723614, 2653877.363513646], + [5180979.895513569, 2653862.3493587575], + [5180901.117111832, 2653833.107835847], + [5180797.2220768, 2653754.790465781], + [5180734.0553429155, 2652702.943335077], + [5180342.450333345, 2652712.338720009], + [5179951.108269187, 2652740.622981525], + [5179832.882855493, 2650765.189108804], + [5179729.134415594, 2649060.003490755], + [5179801.8916368475, 2648963.0096703907], + [5179823.063128626, 2648931.8429711536], + [5180319.634931499, 2646573.2945464537], + [5180254.784170193, 2646427.6582853436], + [5180064.637157192, 2646079.0031029666], + [5179751.256234706, 2645554.1467169747], + [5179739.318438115, 2645517.5803586077], + [5179360.380064746, 2645315.8938886547], + [5178746.179409506, 2644968.0237091603], + [5179035.714374571, 2644410.8792966353], + [5178818.664909713, 2644287.7108009513], + [5179036.094671255, 2643625.5307759857], + [5178981.907483927, 2643332.807618351], + [5178787.203402372, 2643025.6080075144], + [5179585.632526169, 2641535.340716865], + [5179240.895164311, 2641329.5229045097], + [5179188.408888322, 2641043.3872695896], + [5178922.697217323, 2640762.528435329], + [5178852.611584484, 2640726.0272468044], + [5178717.308053664, 2640688.714881446], + [5178592.016643283, 2640675.4751454247], + [5178440.432915286, 2640688.448359544], + [5178370.2241004445, 2640686.9245544705], + [5178080.972241665, 2640659.8674297957], + [5177688.584959646, 2640613.0736264503], + [5177635.87179738, 2640601.2203120072], + [5177566.661247772, 2640566.356270357], + [5177478.913185416, 2640477.8473150376], + [5177147.069641574, 2640604.3983605485], + [5176893.165623941, 2641185.1228233865], + [5175218.612865326, 2640515.412663633], + [5174669.021601485, 2640514.046976143], + [5174600.874838522, 2639725.109170551], + [5174589.669768255, 2639227.269849631], + [5174571.707915365, 2639170.403050135], + [5174555.045736267, 2638766.462692536], + [5174559.006162456, 2638217.2817330244], + [5174561.249953423, 2637833.4280223427], + [5174455.843301289, 2637027.700973787], + [5174448.878235197, 2637003.1220089328], + [5174350.954973425, 2636071.8481780197], + [5174334.740809411, 2636038.0199622186], + [5174260.802926151, 2636046.433992132], + [5174209.293589088, 2636150.818349246], + [5174181.632143718, 2636185.470896189], + [5174156.956363887, 2636204.398115268], + [5174115.281867799, 2636199.2352432245], + [5174036.209302616, 2636146.378613307], + [5173962.116485071, 2636051.7253978234], + [5173899.895940591, 2635995.4406032404], + [5173713.596524383, 2635957.53307336], + [5173676.8224878255, 2635935.08595833], + [5173613.942877911, 2635752.969870261], + [5173577.282366421, 2635705.304948034], + [5173503.128130785, 2635610.6459711613], + [5173475.63464351, 2635479.442163561], + [5173349.920846739, 2635463.847633639], + [5173214.288329291, 2635532.45676999], + [5173171.923491935, 2635527.2047507535], + [5173176.929755164, 2635484.751865968], + [5173181.849101709, 2635442.998037532], + [5173234.119234381, 2635364.04602206], + [5173244.031756685, 2635279.8349936265], + [5173184.726758759, 2635059.1895398935], + [5173105.658908516, 2635007.014967672], + [5173063.277586083, 2635001.7550586197], + [5173016.671780878, 2635038.391615898], + [5172970.093971433, 2635074.983477428], + [5172917.9347888995, 2635153.7202076744], + [5172912.793490708, 2635196.350182825], + [5172871.125543509, 2635191.198879586], + [5172796.988319313, 2635096.59146934], + [5172780.823615388, 2635004.951543538], + [5172720.0740328515, 2634660.603568266], + [5172028.716397499, 2634744.9113644566], + [5171926.853657775, 2634075.042984801], + [5171837.92273036, 2633490.2467845595], + [5171836.886819684, 2633483.3981161043], + [5171834.344044132, 2633484.1964295306], + [5171350.210280534, 2633637.00339416], + [5169846.543426187, 2633749.1655120784], + [5169510.396163747, 2633707.460533928], + [5168717.712586768, 2635017.1081415927], + [5168307.2122850465, 2635606.6159396707], + [5168033.28059018, 2635401.7743779486], + [5167729.654165002, 2635180.7194322282], + [5167680.1903019855, 2635144.7125459993], + [5167354.597014707, 2635018.954832218], + [5166675.61436883, 2634726.3821601924], + [5165801.764692122, 2634445.5592317367], + [5165071.858032234, 2634406.191269666], + [5164277.538044809, 2634381.215874399], + [5163506.907279742, 2634414.122705603], + [5163198.269744217, 2634503.6618579226], + [5162842.949310009, 2634630.481514493], + [5162635.263285204, 2634945.7657932187], + [5162506.658953313, 2635313.925045663], + [5162155.436257149, 2636124.076267739], + [5161427.55462657, 2635878.3779360857], + [5160557.88605049, 2635584.97649972], + [5160567.139591093, 2633924.4071983425], + [5158997.962232489, 2634367.2200765307], + [5158008.009211017, 2634619.619931736], + [5157737.762841435, 2634936.859414901], + [5156436.408509432, 2636226.562002367], + [5154285.24824183, 2635319.675401033], + [5153880.526083714, 2635141.694502555], + [5153678.189616235, 2635052.481865422], + [5153475.202684729, 2634962.99272087], + [5151514.593110236, 2634250.6515065734], + [5150989.045404949, 2634015.4072508793], + [5150251.930038416, 2633671.739302828], + [5149797.40971204, 2633663.797416359], + [5149178.791285046, 2633833.5766322287], + [5148781.066649507, 2633955.2071861], + [5148205.343435351, 2634140.192393632], + [5147741.281335531, 2634466.1059678067], + [5147177.485664843, 2634908.8553063003], + [5146896.35991927, 2635129.6270911554] + ] + ] + ] + }, + "units": { "yield": "t/ha", "water_need": "mm" } + }, + { + "type": "Feature", + "properties": { + "ID": 3323, + "NUTS_ID": "HU3323", + "NAME": "B\u00e9k\u00e9scsabai j\u00e1r\u00e1s", + "ADMIN_LEVEL": "7", + "yield": { + "Wheat": { "average": 8.42, "best": 8.98, "worst": 7.46 }, + "Maize": { "average": 5.44, "best": 10.24, "worst": 0.0 }, + "Sunflower": { "average": 1.34, "best": 3.37, "worst": 0.0 }, + "Soybean": { "average": 1.27, "best": 3.01, "worst": 0.0 } + }, + "water_need": { + "Wheat": { "average": 129, "best": 78, "worst": 187 }, + "Maize": { "average": 305, "best": 254, "worst": 469 }, + "Sunflower": { "average": 327, "best": 288, "worst": 475 }, + "Soybean": { "average": 320, "best": 244, "worst": 496 } + }, + "links": { + "Wheat": { + "average": "/crop_model/regional_forecast?nuts_id=HU3323&crop=WheatGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3323&crop=WheatGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3323&crop=WheatGDD&scenario=worst" + }, + "Maize": { + "average": "/crop_model/regional_forecast?nuts_id=HU3323&crop=MaizeGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3323&crop=MaizeGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3323&crop=MaizeGDD&scenario=worst" + }, + "Sunflower": { + "average": "/crop_model/regional_forecast?nuts_id=HU3323&crop=SunflowerGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3323&crop=SunflowerGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3323&crop=SunflowerGDD&scenario=worst" + }, + "Soybean": { + "average": "/crop_model/regional_forecast?nuts_id=HU3323&crop=Soybean&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3323&crop=Soybean&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3323&crop=Soybean&scenario=worst" + } + } + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5138002.039275454, 2676192.6832284587], + [5138122.815840396, 2676250.042833557], + [5140526.909021528, 2678255.662968143], + [5141205.385879047, 2678638.514056168], + [5142703.630125063, 2679293.953295225], + [5143839.708059207, 2679775.970950774], + [5144291.614357819, 2679917.471023496], + [5144533.080766618, 2680032.881981458], + [5145678.346956832, 2680431.3069052584], + [5146293.372949884, 2680635.4519981365], + [5146908.4016290475, 2680839.5859912443], + [5146586.480567728, 2681397.8134681736], + [5146820.507234191, 2681938.868157413], + [5146773.885933587, 2681975.461404115], + [5146901.382547567, 2682333.0933702416], + [5146948.774816274, 2682295.897237583], + [5147614.012173522, 2683872.838407726], + [5147158.957627263, 2684115.108292002], + [5147318.909459522, 2684561.526452579], + [5146906.20316611, 2684809.049560837], + [5147593.792736836, 2686559.698087773], + [5150107.831254788, 2686188.8203291036], + [5149602.876651936, 2687577.5060144975], + [5150129.938901769, 2688880.3236292177], + [5150206.51021215, 2688591.08284983], + [5150549.418064323, 2688932.4054001374], + [5150742.404947499, 2688743.0769996075], + [5151570.333068149, 2687864.157769456], + [5151496.280966915, 2687769.5077425702], + [5152027.910106137, 2687237.999048546], + [5151986.230718889, 2687232.828286789], + [5152517.864881134, 2686701.333254698], + [5152475.501056744, 2686696.0717995497], + [5153007.121725444, 2686164.5737828147], + [5152817.33445671, 2685970.1009916407], + [5153390.621386218, 2685443.7758811032], + [5153006.023730654, 2685097.276433915], + [5153095.083412455, 2685065.259078752], + [5153146.741726908, 2684986.2131826645], + [5154478.81719121, 2684169.903557631], + [5154599.499329628, 2684227.9663191345], + [5155547.427583551, 2684857.721760069], + [5156030.98265224, 2685088.6904060557], + [5156664.480570189, 2685850.342050415], + [5157059.724095905, 2686112.7306739576], + [5157064.763433531, 2686070.2792443614], + [5158030.769661223, 2685464.909870821], + [5159179.830449307, 2684753.7383471513], + [5163430.201079179, 2688782.28723187], + [5163961.131351631, 2688250.72188868], + [5164225.622988989, 2688539.9780249204], + [5164282.311554681, 2688418.484543534], + [5164243.0855832845, 2688030.071587206], + [5164347.077376255, 2687872.0643396303], + [5164398.730442873, 2687793.021479534], + [5164776.514141855, 2687839.9774076208], + [5164577.793412608, 2688797.069224318], + [5164955.576796547, 2688844.0226984792], + [5165002.884593018, 2688807.518542942], + [5165288.473698693, 2689269.643772672], + [5165867.913463918, 2686182.296418092], + [5166055.166118353, 2686035.341032121], + [5166238.232045649, 2685929.545636806], + [5166243.182680918, 2685887.7731807963], + [5167829.2948538475, 2686051.5429727025], + [5167893.654845112, 2686062.9977289764], + [5167927.383273607, 2686054.041685261], + [5167957.498049524, 2686059.685732316], + [5168011.817634584, 2686074.8402925325], + [5168173.241417383, 2686074.7595023755], + [5168324.729132934, 2686131.223694816], + [5168509.854106316, 2686169.5310697234], + [5168605.279892336, 2686255.8401329992], + [5168662.977042584, 2686316.4124515317], + [5168694.670000523, 2686405.820556825], + [5168723.409561088, 2686435.012848641], + [5168813.775403019, 2686508.1414694237], + [5168940.564879699, 2686693.012794536], + [5168948.494606442, 2686779.234799049], + [5168933.558995945, 2686905.2250267696], + [5168947.701964822, 2686953.8086170973], + [5169029.307821412, 2687173.521758057], + [5169056.729705149, 2687304.786551695], + [5169125.818808692, 2687441.213674211], + [5169258.292877605, 2687756.477128484], + [5169290.657636313, 2687845.968880119], + [5169280.67810778, 2687930.1836676793], + [5169213.404562573, 2688135.1342055406], + [5169208.370059484, 2688177.5965694785], + [5169217.753349029, 2688216.6194092524], + [5169289.560223377, 2688262.570106907], + [5169314.865023044, 2688361.0714082597], + [5169360.879148659, 2688302.3449933846], + [5169420.630513046, 2688245.6179159232], + [5169460.445532482, 2688208.935178838], + [5169502.802066609, 2688214.201173747], + [5169599.502129075, 2688282.1290749656], + [5169638.472952368, 2688285.0262350426], + [5169665.213592357, 2688276.779283573], + [5169843.252173638, 2688213.45379502], + [5169889.873676287, 2688176.863320856], + [5169919.619826381, 2688138.1628607195], + [5169961.855490944, 2688142.7904002625], + [5170405.818127423, 2688496.7264141077], + [5170443.146375371, 2688544.434849043], + [5170527.168337351, 2688554.884974403], + [5170568.836181697, 2688560.0618803767], + [5170573.865257491, 2688517.61318503], + [5170657.894389069, 2688528.066273991], + [5173032.746273432, 2688610.0778246997], + [5174731.808474972, 2688650.470504225], + [5174530.657895997, 2691785.0207115225], + [5174813.629549718, 2692631.1502548857], + [5174855.306002866, 2692636.338591384], + [5174850.265754022, 2692678.7914047563], + [5174867.6853383, 2692894.279100409], + [5174945.985488737, 2692947.1138080205], + [5174963.396576042, 2693162.606795327], + [5175027.518734649, 2693340.827724215], + [5175182.3206523, 2693829.832218573], + [5175325.337588883, 2694061.661468271], + [5175515.144546728, 2694255.5198863754], + [5180236.219066024, 2693946.6452698554], + [5180697.97330877, 2694004.119710556], + [5181342.711318182, 2693956.5122589804], + [5181727.18239311, 2694303.177938169], + [5182244.731040329, 2693171.673410242], + [5182249.683027515, 2693129.89905058], + [5182306.300704541, 2693009.083457227], + [5182331.236590564, 2692798.8376113647], + [5182243.818147561, 2692104.1765093133], + [5182162.361895329, 2691709.7525698612], + [5182074.84384159, 2691015.770535506], + [5182124.705336272, 2690595.304878523], + [5182117.262746233, 2690295.568212279], + [5182080.554291625, 2690248.6147111366], + [5182001.572136217, 2690195.6937617804], + [5181917.549056494, 2690185.2402219307], + [5181875.880932598, 2690180.0598648447], + [5181833.533609937, 2690174.782214761], + [5181791.866413436, 2690169.595709101], + [5181796.823180266, 2690127.8233677153], + [5181759.50400645, 2690080.0987179703], + [5181764.452684051, 2690038.331507971], + [5181727.821518818, 2689990.6848346284], + [5181789.382122457, 2689828.0921642454], + [5181799.373886888, 2689743.8685601167], + [5181814.388391372, 2689617.1851098193], + [5181824.373367777, 2689532.9575329786], + [5181792.6138785025, 2689444.217601314], + [5181797.648875997, 2689401.766296629], + [5181708.601285804, 2689433.7641443675], + [5181671.274815934, 2689386.0424223915], + [5181676.235841379, 2689344.272582687], + [5181681.265135808, 2689301.806030008], + [5181738.563293665, 2689181.0794129088], + [5181832.561895441, 2689107.3132120287], + [5181860.014637095, 2689085.761503264], + [5181879.185371324, 2689070.7257223045], + [5181884.213885021, 2689028.270743986], + [5181842.547255804, 2689023.0718095307], + [5181847.508182791, 2688981.306200011], + [5181726.166834775, 2688923.1213735333], + [5181642.828025231, 2688912.753349574], + [5181605.430584144, 2688865.7116561425], + [5181558.809755848, 2688902.2890041843], + [5181464.804668549, 2688976.0678184875], + [5181417.423432784, 2689013.2489559352], + [5181375.754693505, 2689008.0670409347], + [5181338.431144536, 2688960.3326535565], + [5181343.381666592, 2688918.565757272], + [5181373.342720778, 2688665.88397896], + [5181378.293238983, 2688624.1150554745], + [5181336.622712099, 2688618.926808193], + [5181302.929609684, 2688614.7299085082], + [5181294.957930296, 2688613.7466922114], + [5181200.955940764, 2688687.513133792], + [5181158.6045279745, 2688682.242214568], + [5181116.935419252, 2688677.048795242], + [5181074.581928384, 2688671.79206762], + [5181037.948385733, 2688624.14389115], + [5180958.8812373895, 2688571.9139563474], + [5180858.19816216, 2688345.3540347205], + [5180779.130258454, 2688293.139765989], + [5180695.110822915, 2688282.683089177], + [5180658.3907263465, 2688235.722991187], + [5180616.042807781, 2688230.4573836504], + [5180626.027642772, 2688146.221472826], + [5180631.059906083, 2688103.7626228128], + [5180594.343705386, 2688056.8096902194], + [5180551.995484318, 2688051.5378593584], + [5180421.354576381, 2688077.676096609], + [5180248.282825457, 2688099.2137458976], + [5180033.625201191, 2688114.898063664], + [5179996.906861855, 2688067.9362940798], + [5179959.5850830395, 2688020.216556543], + [5179922.865460654, 2687973.2547525945], + [5179875.56370602, 2688009.7587886425], + [5179833.897562684, 2688004.5694083674], + [5179713.156264885, 2687977.256331307], + [5179704.411500219, 2687961.4208630947], + [5179701.793873538, 2687947.412886101], + [5179708.110418704, 2687934.498693689], + [5179764.811617671, 2687868.119224575], + [5179797.24783626, 2687836.443567398], + [5179811.791318164, 2687823.4470870197], + [5179826.143892668, 2687821.296910577], + [5179843.398765877, 2687827.459539452], + [5179858.610930595, 2687836.9824157916], + [5179899.35865533, 2687877.8113620756], + [5179922.326613232, 2687885.974097837], + [5179952.651303335, 2687888.286188968], + [5180054.378479878, 2687874.249656696], + [5180132.231343154, 2687866.149354425], + [5180161.606802927, 2687856.837996456], + [5180180.094664819, 2687834.417735553], + [5180202.255173303, 2687795.238983421], + [5180228.864685302, 2687749.51328761], + [5180229.280107672, 2687726.7090833657], + [5180227.03038072, 2687712.8465984473], + [5180221.940239419, 2687699.9897672264], + [5180207.887347119, 2687692.39049333], + [5180192.415992239, 2687693.654163144], + [5180167.480030829, 2687704.895240154], + [5180078.5135360025, 2687736.2094215946], + [5180056.281663225, 2687733.447922367], + [5180019.399993304, 2687724.923169941], + [5179991.72718794, 2687715.9615282393], + [5179972.965281234, 2687699.5507203303], + [5179957.771104426, 2687678.8007275853], + [5179957.003770715, 2687660.715807715], + [5179960.135252527, 2687648.8440562645], + [5179969.45084653, 2687630.9828084353], + [5180010.877992194, 2687617.017956237], + [5180099.890065211, 2687587.282243972], + [5180114.8953622505, 2687566.835356746], + [5180120.370875711, 2687551.3512597634], + [5180115.391795172, 2687531.9052066603], + [5180074.515855386, 2687453.4955005776], + [5180031.339718424, 2687363.855908794], + [5179975.218770416, 2687286.4676118167], + [5179937.043515252, 2687239.451733213], + [5179852.320813005, 2687177.389540957], + [5179834.364893639, 2687152.8597256714], + [5179824.894113097, 2687135.0184278996], + [5179818.970174535, 2687115.8982099206], + [5179818.628309283, 2687098.355523201], + [5179823.194616107, 2687082.349338943], + [5179839.08930596, 2687051.159636224], + [5179946.482349087, 2686940.6591152665], + [5179966.725574866, 2686922.573170072], + [5179994.858971959, 2686906.037902741], + [5180019.605338611, 2686901.6972282752], + [5180058.379366723, 2686908.8133673724], + [5180100.370381608, 2686924.888327937], + [5180131.570962132, 2686931.882358672], + [5180153.909246308, 2686929.0028266013], + [5180179.226667251, 2686917.0275288797], + [5180219.939063754, 2686899.803666764], + [5180234.745525798, 2686892.710750734], + [5180255.149096415, 2686869.970353963], + [5180261.581320183, 2686843.1090362677], + [5180261.743459924, 2686825.6841399134], + [5180251.045069252, 2686812.6857406595], + [5180227.257852938, 2686799.5081797377], + [5180173.264219941, 2686778.282682665], + [5180137.22346815, 2686761.519019062], + [5180081.597880875, 2686721.3808147786], + [5179946.677375903, 2686633.0364647717], + [5179903.834231848, 2686600.6020636186], + [5179889.310737027, 2686571.6955617615], + [5179889.998474976, 2686542.59960865], + [5179909.971325504, 2686521.738890467], + [5179936.3647326445, 2686503.2222898793], + [5180035.369937612, 2686461.620936783], + [5180200.039360041, 2686407.317446049], + [5180238.084947261, 2686389.9383606073], + [5180292.3846969325, 2686333.2607960664], + [5180208.972035055, 2686288.5281268153], + [5180096.33162498, 2686227.9539584527], + [5180008.294423953, 2686217.680598176], + [5179916.93000683, 2686222.1166942096], + [5179690.472498966, 2685980.6193816517], + [5179695.500948057, 2685938.160429212], + [5179522.43273465, 2685959.718990437], + [5179349.435308915, 2685980.5789105003], + [5179307.769198083, 2685975.3895303356], + [5179275.396443638, 2685885.9012484723], + [5179164.63828782, 2685744.264188819], + [5179122.963697413, 2685739.075230086], + [5179152.911710808, 2685486.3998135873], + [5179110.559346742, 2685481.135172381], + [5178979.839733552, 2685507.9443357233], + [5178938.169239142, 2685502.764659847], + [5178811.79610054, 2685487.046623677], + [5178732.801936733, 2685434.1386068156], + [5178691.139696997, 2685428.9482682003], + [5178597.132730143, 2685502.714702101], + [5178555.468985654, 2685497.5389028257], + [5178518.063639844, 2685450.4990827977], + [5178481.425566037, 2685402.8627099893], + [5178439.073591982, 2685397.5963767716], + [5178397.4043027265, 2685392.407188428], + [5178308.344495473, 2685424.4121139795], + [5178229.361322631, 2685371.4999349453], + [5178056.288969238, 2685393.051301432], + [5178019.648111538, 2685345.4113626136], + [5177930.591378577, 2685377.4153739414], + [5177879.025524846, 2685455.773989029], + [5177831.6466961885, 2685492.964959925], + [5177695.965359012, 2685561.548712625], + [5177653.6145397825, 2685556.288229435], + [5177564.643603007, 2685587.6079871114], + [5177517.943788706, 2685624.875921013], + [5177471.323839464, 2685661.46274532], + [5177382.2685538875, 2685693.471260747], + [5177392.253197627, 2685609.2381873885], + [5177349.896934775, 2685603.972152912], + [5177308.229121828, 2685598.790951777], + [5177280.885640692, 2685466.8397551337], + [5177285.837411848, 2685425.0624346863], + [5177182.233397004, 2683064.275394697], + [5177318.585605927, 2682995.76007382], + [5177583.031568208, 2682881.6565881586], + [5177665.3502450595, 2682848.967442589], + [5177634.785917862, 2682479.898392671], + [5177870.089386806, 2682295.8507960504], + [5177916.789352295, 2682258.5781565118], + [5177885.094806761, 2682169.1774071483], + [5177717.045222393, 2682148.269097813], + [5177674.697722662, 2682143.007188471], + [5177633.020701542, 2682137.8134446796], + [5177529.042270791, 2682295.8174132826], + [5177439.993374009, 2682327.8244679854], + [5177398.329264528, 2682322.648034843], + [5177355.971442697, 2682317.372809145], + [5177319.333841924, 2682269.730137943], + [5177291.901622906, 2682138.4725567135], + [5177255.261132227, 2682090.8359960965], + [5177213.588535558, 2682085.659985139], + [5177176.185731145, 2682038.6218191204], + [5177087.211272914, 2682069.933044643], + [5177045.546313386, 2682064.752539175], + [5176862.49861512, 2682170.5286919298], + [5176820.819797029, 2682165.354519976], + [5176778.466624655, 2682160.091524353], + [5176736.796513611, 2682154.9054472568], + [5176657.808347253, 2682101.9919266137], + [5176578.723095054, 2682049.779129153], + [5176542.091346401, 2682002.1428187024], + [5176504.684111214, 2681955.1026256518], + [5176547.031983765, 2681960.3624428567], + [5176509.622454361, 2681913.3355114516], + [5176425.611105468, 2681902.879786686], + [5176194.16601604, 2681703.1761428136], + [5176151.818261699, 2681697.9055124363], + [5176036.094412771, 2681598.0436651036], + [5175998.685123175, 2681551.019469304], + [5175925.613098136, 2681479.061183576], + [5175885.846699537, 2681452.849036361], + [5175794.133066673, 2681422.700635718], + [5175688.627089122, 2681355.77950784], + [5175667.79969348, 2681351.1042273687], + [5175639.701483421, 2681353.6373274378], + [5175596.393106821, 2681376.242779758], + [5175550.681674509, 2681416.441178243], + [5175505.330457403, 2681477.081365527], + [5175462.711592093, 2681538.935436925], + [5175447.455065938, 2681552.5976391807], + [5175421.094292206, 2681563.5676021394], + [5175389.872738537, 2681583.7850138675], + [5175380.007369159, 2681596.528248865], + [5175376.125429362, 2681607.6728561157], + [5175376.14191311, 2681621.166839338], + [5175384.371016783, 2681640.692368058], + [5175427.810253668, 2681717.4856414213], + [5175433.755151235, 2681736.6280200058], + [5175435.1140189245, 2681759.8223746107], + [5175431.361405178, 2681783.735371084], + [5175426.3573062755, 2681795.7142464975], + [5175419.194444554, 2681805.366224854], + [5175405.756520828, 2681816.8080027928], + [5175372.60963879, 2681836.3352888324], + [5175331.317893563, 2681860.655130786], + [5175230.762701732, 2681924.5402059793], + [5175168.451283976, 2682087.711388924], + [5175126.788434199, 2682082.5315100793], + [5175121.751595902, 2682124.987940998], + [5175080.089012648, 2682119.8083933797], + [5175085.110971089, 2682077.3566553593], + [5174968.709380364, 2681977.4149096445], + [5174927.040935528, 2681972.2219477626], + [5174843.017834376, 2681961.7809420945], + [5174707.345098069, 2682030.3766589267], + [5174659.967238516, 2682067.5669623986], + [5174519.347549722, 2682177.925792046], + [5174514.400691437, 2682219.700845266], + [5174472.044096712, 2682214.43379476], + [5174430.376352194, 2682209.2512027672], + [5174393.646742973, 2682162.2995560532], + [5174356.321059445, 2682114.5775077576], + [5174193.219437632, 2682051.9163905885], + [5174146.608365263, 2682088.4981742525], + [5174099.896638587, 2682125.772026721], + [5174057.547141948, 2682120.502382232], + [5173936.881143342, 2682062.424637285], + [5173717.18807156, 2682120.570301446], + [5173638.109620651, 2682068.3581848843], + [5173643.128958595, 2682025.900865352], + [5173623.835023266, 2681469.0252748774], + [5173591.457185774, 2681379.5344729074], + [5173444.037673524, 2681190.277210512], + [5173300.88026718, 2680959.177185146], + [5173131.062288242, 2680596.207138908], + [5172892.122183454, 2680096.7991209077], + [5172521.787422236, 2679624.1445035115], + [5172256.086466118, 2678993.574968477], + [5172177.092653092, 2678940.673311994], + [5172050.710504611, 2678924.961768912], + [5171997.338422489, 2678915.4997469555], + [5171686.871372119, 2678840.4193469817], + [5170973.307709974, 2678667.943086748], + [5170932.971219834, 2678658.1923631714], + [5170890.608222622, 2678652.9149924135], + [5170977.799034695, 2678279.530941929], + [5171064.298153592, 2677906.0461019925], + [5171134.010428113, 2677317.1902421582], + [5171518.6526874155, 2675145.1057534907], + [5171558.438457435, 2674808.9183070534], + [5171593.285185055, 2674514.4804396303], + [5171551.60709605, 2674509.301141357], + [5171571.540431258, 2674340.858375735], + [5171569.047141738, 2673998.7115591485], + [5171339.940937624, 2673415.807491286], + [5171291.517439378, 2673110.3293690654], + [5171296.458026335, 2673068.566411224], + [5171536.079892608, 2672841.9702811074], + [5171963.607270243, 2672468.4956375496], + [5172312.12859031, 2672042.129854633], + [5172269.769967908, 2672036.866502862], + [5172368.709396378, 2671921.3202622263], + [5172373.728304291, 2671878.865136917], + [5172416.087082958, 2671884.1360040708], + [5172426.046995989, 2671799.907586285], + [5172472.6630383115, 2671763.329531191], + [5172519.958138656, 2671726.819720419], + [5172524.983780348, 2671684.371023852], + [5172529.91827542, 2671642.5958667016], + [5172497.528900185, 2671553.1148352893], + [5172544.910858685, 2671515.922014167], + [5172502.547430774, 2671510.663913855], + [5172522.392786473, 2671342.906490636], + [5172443.386072594, 2671290.017746343], + [5172438.361348318, 2671332.4691402996], + [5172396.6955455, 2671327.283167397], + [5172401.712173571, 2671284.8375170706], + [5172354.338540841, 2671322.0204889365], + [5172312.663880295, 2671316.8477017684], + [5172275.3244866645, 2671269.1263519423], + [5172149.625650395, 2671253.5086195776], + [5172154.568770691, 2671211.7463191194], + [5172117.916596361, 2671164.1161051565], + [5172164.528665078, 2671127.5234869206], + [5172174.495364387, 2671043.300523975], + [5172236.773428324, 2670880.123946593], + [5172214.336810009, 2670706.427940963], + [5172145.211023771, 2670570.0011822586], + [5172103.539776531, 2670564.8176642745], + [5172061.18404281, 2670559.5585138174], + [5172066.120147844, 2670517.7836963646], + [5172071.1405290235, 2670475.333600316], + [5172081.109637253, 2670391.1163848443], + [5172086.0447540535, 2670349.3472121856], + [5172016.922827649, 2670212.924309518], + [5172010.148992008, 2669912.625679731], + [5172071.665670861, 2669750.0586403194], + [5172049.912416418, 2669576.4465737976], + [5172008.234078299, 2669571.2641367186], + [5172013.1748065865, 2669529.4904462392], + [5172079.7889676895, 2669323.7854137216], + [5172043.055374122, 2669276.8352628862], + [5171880.016023582, 2669213.502618736], + [5171553.779207231, 2669088.2112276116], + [5171359.024314346, 2668935.4881848963], + [5171248.212196072, 2668793.8843895476], + [5170874.617903439, 2668510.2916201386], + [5170794.505613187, 2668310.2344475337], + [5170618.906984174, 2667989.682505524], + [5170417.201935182, 2667538.0442908294], + [5169901.691008468, 2666492.3207392935], + [5169723.677102033, 2666555.660081722], + [5169503.982570969, 2666613.8360726433], + [5169330.979942267, 2666634.724104013], + [5168561.1584619805, 2666666.9387124265], + [5168299.111388544, 2666719.8511144323], + [5167957.968486743, 2666720.5522780176], + [5166837.114608926, 2666837.024091323], + [5166170.47315438, 2666711.861840805], + [5165624.599728576, 2666644.0863245367], + [5165409.919252308, 2666659.808747885], + [5165022.154636858, 2666697.112647269], + [5164972.929857282, 2666392.2692976603], + [5162762.8319249265, 2666715.3465613853], + [5162365.104991333, 2666836.870940456], + [5161038.18317802, 2667611.4111500196], + [5160287.56673334, 2667475.1696566734], + [5159914.683316365, 2667386.5116699045], + [5159416.162581678, 2667281.5581928594], + [5156522.36307425, 2666538.26487711], + [5155291.4720271025, 2668306.3875510134], + [5154787.241402619, 2668243.8144688834], + [5152908.729742173, 2667925.302454996], + [5152866.361411807, 2667920.0436289776], + [5150567.545535481, 2667550.1319801994], + [5149575.395979339, 2667298.5598846497], + [5149165.147481122, 2667162.2335153623], + [5148745.62939555, 2667110.2115530614], + [5147940.15919829, 2667437.5441270694], + [5146024.222533731, 2667071.446893327], + [5146115.060583649, 2667382.112547063], + [5146102.110645091, 2667849.4138470506], + [5145796.766171155, 2670074.1096794354], + [5145737.096068546, 2670578.690590398], + [5144553.8427782515, 2670858.4961359017], + [5143721.568908778, 2671054.7082600384], + [5143155.797771169, 2671154.7479566676], + [5141841.781798796, 2671461.4376484742], + [5140396.413972678, 2671794.2192166713], + [5139831.234382247, 2671895.0392525396], + [5139674.941528363, 2672132.000012664], + [5139598.442407581, 2672421.227848068], + [5139350.7448012475, 2673073.376233769], + [5139289.140459458, 2673236.639367074], + [5139211.9464316415, 2673525.773796913], + [5139073.150038067, 2673978.17144808], + [5139080.686859136, 2674277.8039195864], + [5139095.062317091, 2674877.0163128735], + [5139126.7792762, 2674966.3829777725], + [5139121.844771193, 2675008.1522301645], + [5138862.256199968, 2675403.1968375943], + [5138607.686914853, 2675755.7951326044], + [5138429.713140197, 2675818.484813884], + [5138147.692493347, 2676039.8583375216], + [5138002.039275454, 2676192.6832284587] + ] + ] + ] + }, + "units": { "yield": "t/ha", "water_need": "mm" } + }, + { + "type": "Feature", + "properties": { + "ID": 3324, + "NUTS_ID": "HU3324", + "NAME": "Szarvasi j\u00e1r\u00e1s", + "ADMIN_LEVEL": "7", + "yield": { + "Wheat": { "average": 8.55, "best": 8.99, "worst": 7.73 }, + "Maize": { "average": 5.58, "best": 10.24, "worst": 0.0 }, + "Sunflower": { "average": 1.27, "best": 3.38, "worst": 0.0 }, + "Soybean": { "average": 1.21, "best": 3.08, "worst": 0.0 } + }, + "water_need": { + "Wheat": { "average": 130, "best": 85, "worst": 186 }, + "Maize": { "average": 298, "best": 242, "worst": 475 }, + "Sunflower": { "average": 319, "best": 278, "worst": 480 }, + "Soybean": { "average": 321, "best": 243, "worst": 515 } + }, + "links": { + "Wheat": { + "average": "/crop_model/regional_forecast?nuts_id=HU3324&crop=WheatGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3324&crop=WheatGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3324&crop=WheatGDD&scenario=worst" + }, + "Maize": { + "average": "/crop_model/regional_forecast?nuts_id=HU3324&crop=MaizeGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3324&crop=MaizeGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3324&crop=MaizeGDD&scenario=worst" + }, + "Sunflower": { + "average": "/crop_model/regional_forecast?nuts_id=HU3324&crop=SunflowerGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3324&crop=SunflowerGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3324&crop=SunflowerGDD&scenario=worst" + }, + "Soybean": { + "average": "/crop_model/regional_forecast?nuts_id=HU3324&crop=Soybean&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3324&crop=Soybean&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3324&crop=Soybean&scenario=worst" + } + } + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5112367.070326007, 2694101.153683464], + [5112588.665834547, 2694384.224902555], + [5112779.151827528, 2694578.709131323], + [5113010.645310367, 2694778.262925216], + [5113038.081881694, 2694909.4807361364], + [5113306.984064007, 2695156.043303248], + [5113686.595396739, 2695544.8387023075], + [5113945.508745088, 2695875.6128822304], + [5114056.98011525, 2696017.2424039636], + [5114194.432461778, 2696290.594957933], + [5114290.887083238, 2696558.880684358], + [5114317.624043808, 2696690.0143145593], + [5114381.696180104, 2696868.834397391], + [5114526.673051912, 2697441.1490339357], + [5114654.815031572, 2697798.805457695], + [5114834.625325783, 2698077.4196549137], + [5115204.309939916, 2698549.748164754], + [5115246.668946085, 2698554.99952951], + [5115199.352914998, 2698591.5102819325], + [5115147.679076717, 2698670.5573706958], + [5115096.006431591, 2698749.6036929316], + [5115104.170637522, 2698783.0377962724], + [5115127.692328836, 2698838.970948165], + [5115217.509072119, 2698953.733549986], + [5115238.479740074, 2698980.520352246], + [5115275.811258703, 2699028.2182693016], + [5115316.163234719, 2699050.47304158], + [5115475.589572147, 2699138.4132670336], + [5115554.680974776, 2699190.5921662967], + [5115623.783348279, 2699326.9735792438], + [5115660.430118845, 2699374.5893474547], + [5115692.80190289, 2699464.038388218], + [5116769.836306792, 2699000.048024331], + [5116822.19126327, 2698921.090108103], + [5116925.532840051, 2698763.0040657935], + [5117024.523562754, 2698647.433768866], + [5117155.968743052, 2698620.6583137563], + [5117829.868737515, 2698449.455386514], + [5118081.668174169, 2698432.2347220043], + [5118214.757029694, 2698467.1496062307], + [5118215.22415847, 2698467.168003033], + [5118406.625808674, 2698474.993225779], + [5118512.716838842, 2698472.9115706882], + [5118614.925809875, 2698465.1594305946], + [5118685.569934222, 2698487.4092348614], + [5118900.079942573, 2698576.384030732], + [5121463.269542054, 2699895.868275875], + [5121520.583328122, 2699936.198073272], + [5121572.648476424, 2699978.02423901], + [5121667.014038661, 2700081.319975253], + [5121748.850089181, 2700213.8689513933], + [5122041.151317644, 2700571.669133945], + [5122090.780830219, 2700729.236662113], + [5122118.469453312, 2700914.988956662], + [5122104.911293235, 2701069.4050042005], + [5122088.957311753, 2701219.4668163247], + [5122013.452688423, 2701413.895535443], + [5121977.415995527, 2701536.856558089], + [5121982.812435494, 2701618.6865234273], + [5122020.442187369, 2701693.8332669646], + [5122381.088491151, 2701943.7959004887], + [5122500.25353669, 2701995.370447904], + [5122561.306772038, 2701997.809226714], + [5122624.173508446, 2701984.188230551], + [5122796.698201116, 2701871.079571383], + [5122948.7344633285, 2701715.3163377014], + [5122983.3228745265, 2701695.1725101364], + [5123022.7508795755, 2701678.8272541314], + [5123061.514208645, 2701667.7377031334], + [5123130.331605591, 2701666.042859278], + [5124535.20943455, 2701763.9603116047], + [5124660.123984725, 2701767.112640655], + [5124788.246914035, 2701786.273799578], + [5125040.376586868, 2701817.5297207334], + [5125136.31373138, 2701853.8268410447], + [5125225.6217524065, 2701917.348385313], + [5125259.40135056, 2701938.9947052705], + [5125428.890660056, 2702084.491509241], + [5125742.249274965, 2702440.989249068], + [5125810.202632771, 2702510.465673178], + [5125896.536942906, 2702630.436331252], + [5125919.135406099, 2702651.811028693], + [5126051.642709301, 2702625.8632952976], + [5126094.011416688, 2702631.107249315], + [5126271.397757943, 2702567.650767534], + [5126360.399986312, 2702536.3201819877], + [5126444.437699882, 2702546.7394349063], + [5126486.800200405, 2702551.9853582745], + [5126518.479047857, 2702641.3644788316], + [5129383.0718442565, 2701118.0623856043], + [5130847.894173602, 2702409.9734700597], + [5131116.729668256, 2702656.608179536], + [5131548.607060311, 2702966.5540580233], + [5132146.1838337295, 2702955.239146561], + [5132463.217187079, 2702851.167845344], + [5133127.335040311, 2702838.6457822085], + [5133155.437234817, 2702886.800909741], + [5133491.846559933, 2703463.3367663734], + [5133762.357342336, 2704052.0325469347], + [5133757.396562783, 2704093.801958286], + [5133794.718433127, 2704141.504357413], + [5134064.373605353, 2703662.916606537], + [5134111.785216117, 2703625.7238732544], + [5134173.454117974, 2703462.4568261066], + [5135393.491531443, 2701437.1341479314], + [5136287.209251454, 2700011.2086425424], + [5136309.772637642, 2699458.889063006], + [5136313.716096236, 2699425.709826569], + [5136329.686577376, 2699291.149043533], + [5136411.299679319, 2699144.7984376973], + [5136708.371403366, 2698612.103361299], + [5137399.971350333, 2698527.005177358], + [5138007.441967828, 2698432.179757806], + [5139537.001006156, 2698109.2674418543], + [5140877.732514772, 2697934.538111412], + [5141742.337873563, 2697828.5673865057], + [5141957.112907124, 2697812.1454137815], + [5142260.89043273, 2697764.3996047936], + [5142407.259830359, 2697611.65404109], + [5142552.881495857, 2697459.500722528], + [5142599.584860897, 2697422.2325050877], + [5142753.491675207, 2696843.820412809], + [5142870.736638333, 2696217.7937217765], + [5143054.5109002, 2695387.4153037546], + [5143129.395228639, 2694756.128545674], + [5142413.6267239, 2694326.160069089], + [5142060.827791712, 2694068.3851644862], + [5141858.578788841, 2693616.691079214], + [5142088.299892068, 2693474.294645393], + [5143440.4888132075, 2692489.506317574], + [5144160.204149588, 2691810.4244075865], + [5146125.557822588, 2689963.1278984044], + [5146130.589304357, 2689920.6685268832], + [5147103.445853052, 2689614.845453656], + [5147632.571619866, 2689467.24158746], + [5147804.9914409835, 2689445.56175245], + [5148098.768990761, 2689482.040353586], + [5149200.512582511, 2689533.353441458], + [5149786.245839669, 2689264.9395503164], + [5149941.902164655, 2689027.8904895135], + [5150129.938901769, 2688880.3236292177], + [5149602.876651936, 2687577.5060144975], + [5150107.831254788, 2686188.8203291036], + [5147593.792736836, 2686559.698087773], + [5146906.20316611, 2684809.049560837], + [5147318.909459522, 2684561.526452579], + [5147158.957627263, 2684115.108292002], + [5147614.012173522, 2683872.838407726], + [5146948.774816274, 2682295.897237583], + [5146901.382547567, 2682333.0933702416], + [5146773.885933587, 2681975.461404115], + [5146820.507234191, 2681938.868157413], + [5146586.480567728, 2681397.8134681736], + [5146908.4016290475, 2680839.5859912443], + [5146293.372949884, 2680635.4519981365], + [5145678.346956832, 2680431.3069052584], + [5144533.080766618, 2680032.881981458], + [5144291.614357819, 2679917.471023496], + [5143839.708059207, 2679775.970950774], + [5142703.630125063, 2679293.953295225], + [5142335.099705985, 2679888.754914961], + [5142311.612985592, 2679907.1099869465], + [5142127.904284092, 2680204.166090393], + [5141380.238110037, 2681477.2383353934], + [5140912.733930692, 2682187.6006284496], + [5140804.4800659, 2682387.451777359], + [5140304.568786649, 2683008.3491130355], + [5139815.237010843, 2683545.8068035007], + [5139258.70868205, 2684287.517358464], + [5138665.443950366, 2684982.293610138], + [5138054.253959622, 2685119.877747256], + [5138013.368025997, 2685114.970924133], + [5137675.105718686, 2685072.75530947], + [5136410.229481198, 2684958.2634276613], + [5136158.786550503, 2684927.0880686594], + [5135051.927668438, 2684918.365159982], + [5131592.184711858, 2685001.4310427913], + [5129499.943006004, 2685040.8094160054], + [5128986.386714459, 2685062.611676758], + [5128766.639573891, 2685120.820436098], + [5128084.9940762725, 2685121.7895677653], + [5126810.052765475, 2685817.552832571], + [5126631.979908833, 2685880.9328039237], + [5126354.9449333465, 2686059.8660727586], + [5125853.212425954, 2686338.7821537335], + [5125356.422735205, 2686575.9394055526], + [5123838.158463979, 2686089.121823781], + [5123507.601816396, 2686005.787936139], + [5123255.464405085, 2685974.5568722733], + [5122294.972436934, 2685812.496373671], + [5121245.404622653, 2685682.4876160813], + [5120909.215833418, 2685640.8464756487], + [5120555.534750298, 2686109.696191763], + [5120249.32660624, 2686540.655340121], + [5119890.700109396, 2687051.267686294], + [5119233.283156954, 2687567.253899507], + [5118908.84824764, 2687783.391904196], + [5118815.50277976, 2687857.278752569], + [5118590.118501118, 2687957.1800988712], + [5118093.995112952, 2688194.434177051], + [5117816.861063069, 2688374.074170808], + [5117623.86221269, 2688563.434069511], + [5117430.863295341, 2688752.777218693], + [5117154.487046767, 2688931.82242982], + [5116971.465238297, 2689036.9679904967], + [5116830.730937958, 2689148.046751657], + [5116548.729513998, 2689368.753750723], + [5116311.5038145725, 2689211.560831708], + [5116121.6817797925, 2689017.1717888736], + [5115816.025573615, 2688723.6844402603], + [5115527.223405701, 2688644.8515721513], + [5115294.948228025, 2688445.9094562135], + [5115174.249868464, 2688387.8901818777], + [5114932.071808111, 2688272.4672422432], + [5114727.237446988, 2688204.72696361], + [5114480.120938359, 2688131.055353781], + [5114393.57608737, 2688504.494092528], + [5114150.686380287, 2689114.8748497525], + [5114130.730311403, 2689283.286320175], + [5114074.117290732, 2689404.0964589724], + [5113762.17786269, 2689877.422692774], + [5113717.3092944315, 2690256.012126736], + [5113573.379931691, 2690750.8372193184], + [5113471.8945642635, 2691250.232305166], + [5113446.982461927, 2691460.411085548], + [5113285.665183462, 2691739.1396125047], + [5113161.691883809, 2692065.5546691315], + [5112966.167293316, 2692638.750857079], + [5112733.2240166655, 2693164.936710584], + [5112676.6095048385, 2693285.743206879], + [5112610.007356668, 2693490.765666383], + [5112496.00803044, 2693732.971537428], + [5112367.070326007, 2694101.153683464] + ] + ] + ] + }, + "units": { "yield": "t/ha", "water_need": "mm" } + }, + { + "type": "Feature", + "properties": { + "ID": 3325, + "NUTS_ID": "HU3325", + "NAME": "B\u00e9k\u00e9si j\u00e1r\u00e1s", + "ADMIN_LEVEL": "7", + "yield": { + "Wheat": { "average": 8.74, "best": 9.16, "worst": 8.0 }, + "Maize": { "average": 4.96, "best": 10.22, "worst": 0.0 }, + "Sunflower": { "average": 1.59, "best": 3.5, "worst": 0.0 }, + "Soybean": { "average": 1.62, "best": 3.2, "worst": 0.39 } + }, + "water_need": { + "Wheat": { "average": 108, "best": 58, "worst": 166 }, + "Maize": { "average": 291, "best": 235, "worst": 470 }, + "Sunflower": { "average": 309, "best": 268, "worst": 483 }, + "Soybean": { "average": 314, "best": 232, "worst": 495 } + }, + "links": { + "Wheat": { + "average": "/crop_model/regional_forecast?nuts_id=HU3325&crop=WheatGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3325&crop=WheatGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3325&crop=WheatGDD&scenario=worst" + }, + "Maize": { + "average": "/crop_model/regional_forecast?nuts_id=HU3325&crop=MaizeGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3325&crop=MaizeGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3325&crop=MaizeGDD&scenario=worst" + }, + "Sunflower": { + "average": "/crop_model/regional_forecast?nuts_id=HU3325&crop=SunflowerGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3325&crop=SunflowerGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3325&crop=SunflowerGDD&scenario=worst" + }, + "Soybean": { + "average": "/crop_model/regional_forecast?nuts_id=HU3325&crop=Soybean&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3325&crop=Soybean&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3325&crop=Soybean&scenario=worst" + } + } + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5145931.481049254, 2695189.4450908164], + [5145926.520661801, 2695231.20129385], + [5146017.311708429, 2695541.236327733], + [5146347.637630252, 2696350.695558317], + [5147238.947184333, 2696375.897770399], + [5147426.134655362, 2696954.2914571874], + [5149045.635682386, 2696942.1057505743], + [5149092.95065412, 2696905.5988976997], + [5151794.23845495, 2697112.5765726534], + [5151878.2644220535, 2697123.0222496646], + [5154706.026024721, 2698413.738108948], + [5154719.7398166265, 2698440.5536567024], + [5154743.421933955, 2698460.771965837], + [5155147.852357486, 2698639.565810755], + [5154604.461001158, 2698913.2106497358], + [5154848.238796556, 2699370.8238820867], + [5154717.584523452, 2699396.971265081], + [5154492.897280301, 2699496.909399759], + [5154403.834993723, 2699528.9121820736], + [5154106.798700752, 2699876.2529972373], + [5154187.554482106, 2700270.525866401], + [5154837.419815426, 2700180.3502939423], + [5154879.091315856, 2700185.5319324], + [5154534.508687284, 2701295.4423035798], + [5155144.372598331, 2701542.1646964275], + [5154777.420786677, 2702478.384255505], + [5154720.791259454, 2702599.1878454867], + [5154549.443344616, 2702962.146197146], + [5154358.777644196, 2703493.6333564823], + [5154312.149796098, 2703530.2184144547], + [5154193.162362135, 2703814.2175159566], + [5152404.039563812, 2704531.3023600555], + [5152652.82233228, 2704946.467410603], + [5152685.171045696, 2705035.9491724735], + [5152891.598145763, 2705445.8643774996], + [5152760.932962553, 2705472.0045894007], + [5152714.215677902, 2705509.280678073], + [5152755.8952381965, 2705514.4622893324], + [5152793.287011391, 2705561.4956676126], + [5152824.955626288, 2705650.890638763], + [5152915.680458154, 2705960.95541028], + [5152948.026937816, 2706050.4479061724], + [5153243.432347285, 2706429.029668604], + [5153275.868944945, 2706517.829360455], + [5153344.840736902, 2706654.954641807], + [5153361.540832404, 2706870.3456381825], + [5153440.600176225, 2706922.564194822], + [5153492.198379017, 2706844.2048730664], + [5153623.622141445, 2706817.456374055], + [5153711.926340073, 2706786.0497125005], + [5153838.313055631, 2706801.755688679], + [5154122.056544878, 2706922.4992794716], + [5154364.207682921, 2707037.364242981], + [5154432.49692262, 2707174.4061744637], + [5154469.890273035, 2707221.44601278], + [5154553.915372618, 2707231.885021604], + [5154674.568771667, 2707289.963043105], + [5155005.712741366, 2707373.510068425], + [5155168.0282127755, 2707436.7775545116], + [5155205.422881114, 2707483.8089961326], + [5155200.463125547, 2707525.5778844883], + [5155153.0651094075, 2707562.7686109054], + [5155148.104690135, 2707604.5436924947], + [5154923.326443452, 2707705.144790689], + [5154797.066986986, 2707770.941339617], + [5154769.150598489, 2707807.6172329984], + [5154735.341613791, 2707852.0234271293], + [5154640.7607515175, 2708140.1147998846], + [5154636.28115658, 2708186.483722599], + [5154657.197339341, 2708233.0493144626], + [5154834.503124395, 2708379.0448162537], + [5154885.047423942, 2708417.5961365686], + [5154917.879166661, 2708425.096623364], + [5154945.148484375, 2708428.922068859], + [5155026.367716064, 2708381.8670304953], + [5155096.268948056, 2708344.4899409963], + [5155282.809739172, 2708261.952927229], + [5155342.268775218, 2708229.5279199122], + [5155424.161528493, 2708151.6753129223], + [5155475.8359570475, 2708072.63047459], + [5155538.20909054, 2707909.437220369], + [5155584.915024819, 2707872.168822102], + [5155632.229332464, 2707835.6677961745], + [5155673.910446963, 2707840.840225149], + [5155757.934230345, 2707851.2920239144], + [5155799.600732959, 2707856.470124366], + [5155873.622196409, 2707951.1495508086], + [5155942.676538273, 2708087.587402288], + [5155937.63197551, 2708130.044410109], + [5155932.673241995, 2708171.8101033363], + [5155922.663190979, 2708256.030613375], + [5155876.026647811, 2708292.6210194286], + [5155729.628434, 2708445.3618036085], + [5155640.561883977, 2708477.3769566948], + [5155593.930711463, 2708513.954250697], + [5155583.9162627915, 2708598.1822670223], + [5155527.277248948, 2708718.99990431], + [5155517.2701851, 2708803.2260354795], + [5155570.582970167, 2709066.2672725255], + [5155607.975023896, 2709113.2932930985], + [5155649.644975111, 2709118.4795205137], + [5155822.658382152, 2709097.605630946], + [5156010.723152374, 2708950.0407775296], + [5156057.356442572, 2708913.4561054762], + [5156062.402516265, 2708871.0045485618], + [5156040.744128725, 2708697.374431803], + [5156055.720424415, 2708571.370271616], + [5156060.687118796, 2708529.6083051213], + [5156107.394813276, 2708492.334681911], + [5156216.403466432, 2708292.5593281705], + [5156268.761736589, 2708213.5951631116], + [5156241.381421662, 2708082.3360822266], + [5156156.329127697, 2707880.750358294], + [5156160.934592077, 2707841.4414654374], + [5156165.467873404, 2707818.7740932163], + [5156244.704109326, 2707698.488721774], + [5156314.811530322, 2707561.0009346544], + [5156347.325576795, 2707513.2701908816], + [5156391.010440314, 2707463.7694454705], + [5156423.900485967, 2707441.071668225], + [5156451.532298834, 2707435.143735977], + [5156470.269389565, 2707440.1124958037], + [5156488.543679798, 2707466.821325467], + [5156493.436092173, 2707502.0561433756], + [5156513.773102627, 2707834.691781841], + [5156508.507393839, 2707986.999050243], + [5156479.272549847, 2708072.944613075], + [5156446.134726654, 2708150.1814003754], + [5156441.0942013655, 2708192.6324019544], + [5156295.466937718, 2708344.778488643], + [5156243.789025961, 2708423.8149131886], + [5156238.742005711, 2708466.2696678815], + [5156223.769766382, 2708592.2704614885], + [5156260.398093774, 2708639.9011200694], + [5156302.065661589, 2708645.0842649858], + [5156349.460121471, 2708607.8953064936], + [5156401.1394970175, 2708528.8554697414], + [5156463.511280882, 2708365.670005573], + [5156553.192686584, 2708213.668602846], + [5156660.163082788, 2708072.323295453], + [5156759.379587453, 2708003.6834409405], + [5156837.339674277, 2707958.563904273], + [5156928.614265091, 2707861.272648047], + [5156976.118648702, 2707840.8059497857], + [5157011.571275696, 2707842.907742837], + [5157049.601254736, 2707854.5270544877], + [5157085.792478861, 2707870.460282126], + [5157115.925547328, 2707892.2759389556], + [5157145.52978564, 2707933.2053248608], + [5157151.634042321, 2707974.5082189483], + [5157150.263810866, 2708014.0407284102], + [5157134.540473007, 2708091.881762094], + [5157087.8650301425, 2708184.3046479314], + [5157033.622193734, 2708223.2256614016], + [5156986.905111489, 2708260.5014490783], + [5156799.954873797, 2708324.5115841944], + [5156762.217534732, 2708360.415726359], + [5156714.903429266, 2708396.9192927484], + [5156663.224599792, 2708475.966660153], + [5156643.199874833, 2708644.4223466017], + [5156618.22355046, 2708854.643318656], + [5156593.239530162, 2709064.8626897903], + [5156588.196211722, 2709107.314084566], + [5156624.908486466, 2709154.267777012], + [5156667.259006432, 2709159.5292132725], + [5156761.291899108, 2709085.7547673658], + [5156807.931606823, 2709049.1629082784], + [5156855.249856198, 2709012.6590179377], + [5156901.960206199, 2708975.39460048], + [5156963.641469952, 2708812.1193479844], + [5157010.962372493, 2708775.614858913], + [5157052.636684074, 2708780.7979028705], + [5157099.952638579, 2708744.2860606844], + [5157136.657409336, 2708791.245095225], + [5157131.695381526, 2708833.0144051034], + [5157169.006693839, 2708880.740509482], + [5157121.6921133725, 2708917.2441059225], + [5157158.991241796, 2708964.9540353185], + [5157266.854774621, 2708997.1365406783], + [5157494.404791891, 2709006.6724212295], + [5157825.538305425, 2709090.23407714], + [5157957.296131509, 2709128.489757524], + [5158138.981435811, 2709208.1173930573], + [5158205.789125318, 2709220.0738563775], + [5158295.214686755, 2709221.539402199], + [5158407.9768582145, 2709205.7362241964], + [5158449.642260542, 2709210.92206161], + [5158454.685629183, 2709168.468715826], + [5158459.6505984645, 2709126.700251694], + [5158423.020894088, 2709079.059393391], + [5158346.670875476, 2708928.3900828618], + [5158327.485611414, 2708854.3454731107], + [5158349.102767133, 2708815.394864956], + [5158368.9426413225, 2708816.623475439], + [5158438.170438236, 2708832.941409434], + [5158633.779219553, 2708946.86586051], + [5158678.975893028, 2708956.3034749315], + [5158717.925483543, 2708954.161035056], + [5158736.704448166, 2708947.826842802], + [5158787.608131695, 2708930.9543124516], + [5158831.764164311, 2708898.9479977074], + [5158924.763061935, 2708800.2718411903], + [5159090.093647588, 2708684.7159717013], + [5159165.468154901, 2708641.076516502], + [5159215.890826489, 2708644.734181304], + [5159262.587714115, 2708669.115881434], + [5159285.978543981, 2708709.8057564697], + [5159283.356326365, 2708777.3897043993], + [5159226.449748831, 2708895.7635565195], + [5159188.682032862, 2708976.8982646163], + [5159141.152513739, 2709125.986862401], + [5159131.155640667, 2709210.2054511122], + [5159138.512198054, 2709509.923731654], + [5159175.21173368, 2709556.8821706595], + [5159222.078707146, 2709630.8260001554], + [5159328.200015423, 2709704.460122433], + [5159407.266921433, 2709756.677208109], + [5159453.896069521, 2709720.0914555886], + [5159458.941353348, 2709677.6335584978], + [5159576.243958541, 2709052.2313424805], + [5159601.303342551, 2708841.318424524], + [5159611.320864031, 2708757.089658753], + [5159756.9406789355, 2708604.9628498033], + [5159803.657253774, 2708567.6927079014], + [5160644.126242391, 2707946.7500437275], + [5160738.161346337, 2707872.9765810557], + [5161302.255601114, 2707430.999991838], + [5161656.035255056, 2706962.1728573977], + [5161687.700360203, 2707051.58615817], + [5161934.649646152, 2707374.889582059], + [5161915.966220635, 2707424.567227466], + [5161805.140173995, 2707544.4851546935], + [5161767.657020118, 2707597.8699249993], + [5161754.711057317, 2707662.4873609217], + [5161776.945351363, 2707710.092499156], + [5161817.4349605385, 2707750.7937357295], + [5161859.785100412, 2707756.071637053], + [5161898.083092831, 2707742.4306281027], + [5161974.677423531, 2707594.343738382], + [5162057.090640411, 2707524.8813781315], + [5162104.482815959, 2707487.6972769615], + [5162209.146625987, 2707393.1349119022], + [5162282.981552948, 2707349.323449019], + [5162334.220313035, 2707345.334518103], + [5162358.312960438, 2707360.9152029157], + [5162370.835674285, 2707392.9690687843], + [5162393.1828047205, 2707566.689036335], + [5162375.01077546, 2707670.6567843445], + [5162392.89387942, 2707721.3576308237], + [5162437.694459635, 2707775.169420301], + [5162493.888656392, 2707792.552543176], + [5162541.2842139, 2707755.36005858], + [5162546.24814467, 2707713.589871703], + [5162551.296715196, 2707671.141800883], + [5162571.22553194, 2707503.3638125667], + [5162581.231284459, 2707419.141010399], + [5162627.949772296, 2707381.871313196], + [5162688.525041702, 2707358.6244297624], + [5162753.64517783, 2707397.4974070536], + [5162832.617188172, 2707450.4142923583], + [5162906.63115895, 2707545.084578299], + [5162944.025833162, 2707592.122849036], + [5162975.681347502, 2707681.53340778], + [5162960.707331814, 2707807.5373462457], + [5162998.02056804, 2707855.259689417], + [5163034.726218408, 2707902.213751549], + [5163113.697155563, 2707955.1193131106], + [5163197.720201252, 2707965.5795208975], + [5163491.460721819, 2708002.107583322], + [5163664.5458103195, 2707980.564295966], + [5163711.178977208, 2707943.9694608026], + [5163725.363656503, 2707905.374397182], + [5163721.188308236, 2707859.7499357867], + [5163615.504474624, 2707675.656706577], + [5163524.67635556, 2707551.9487488833], + [5163430.092247192, 2707439.2588160583], + [5163271.901749477, 2707273.7495561694], + [5163158.178084169, 2707164.011264023], + [5163150.951734264, 2707106.764779562], + [5163176.3876596335, 2707065.8107706737], + [5163223.707178205, 2707029.3022626056], + [5163532.412658544, 2706939.8405838544], + [5163579.119805623, 2706902.577781783], + [5163663.146581496, 2706913.0286177937], + [5163776.760858845, 2706952.501329117], + [5163864.836344733, 2706996.635435314], + [5163905.203830073, 2707028.605565727], + [5163925.729365875, 2707061.4282893743], + [5163931.899431314, 2707159.795907084], + [5163969.206117982, 2707207.5156983566], + [5164005.912008536, 2707254.468037537], + [5164048.268703704, 2707259.7420395007], + [5164094.894695454, 2707223.149393917], + [5164188.924908272, 2707149.377463907], + [5164366.9758865405, 2707086.0595485647], + [5164413.612015842, 2707049.4689231534], + [5164423.616424736, 2706965.234423754], + [5164428.6634511985, 2706922.7851567934], + [5164391.951149084, 2706875.826339731], + [5164238.881539751, 2706728.9253143943], + [5164201.572901225, 2706681.2002194147], + [5164159.90373818, 2706676.016102095], + [5164070.835049496, 2706708.016713986], + [5164029.16607838, 2706702.8335594395], + [5163950.194099703, 2706649.921672016], + [5163917.839985004, 2706560.43119553], + [5163872.495252668, 2706420.926951647], + [5163854.521270205, 2706381.609735786], + [5163841.816704347, 2706328.304048532], + [5163822.092128202, 2706292.7962261955], + [5163748.073879528, 2706198.123158646], + [5163724.10460106, 2706148.735183558], + [5163726.336065644, 2706112.7201480777], + [5163733.7863427615, 2706088.2048128224], + [5163763.126155943, 2706071.445648325], + [5163852.116573283, 2706040.1133679226], + [5164020.160226986, 2706061.0248310394], + [5164105.919850536, 2706060.4642625013], + [5164160.6104410235, 2706040.226820598], + [5164286.503525335, 2705966.28979686], + [5164333.901636805, 2705929.107189062], + [5164388.402689028, 2705931.32221917], + [5164417.714119038, 2706012.6576083647], + [5164424.608239742, 2706239.198797685], + [5164567.681799975, 2706470.3228712995], + [5164599.34236835, 2706559.7300876253], + [5164631.677967539, 2706649.238700608], + [5164663.350539212, 2706738.6393111004], + [5164700.655362106, 2706786.367683419], + [5164784.672245826, 2706796.8197017503], + [5164868.696722844, 2706807.267255962], + [5164994.388195832, 2706822.9129066626], + [5165041.102841388, 2706785.638307157], + [5165083.4514035415, 2706790.9043995687], + [5165177.481066132, 2706717.137196979], + [5165265.7761148205, 2706685.7250897363], + [5165443.832104423, 2706622.400456899], + [5165621.877867991, 2706559.0847718227], + [5165710.857465189, 2706527.76011887], + [5165762.535944794, 2706448.7178031877], + [5165725.911380742, 2706401.0880212733], + [5165688.523888429, 2706354.040249885], + [5165605.184648006, 2706343.6717399973], + [5165526.201123783, 2706290.7583812405], + [5165488.8228651825, 2706243.727036557], + [5165493.778508549, 2706201.9480619794], + [5165541.17902, 2706164.761356296], + [5165718.544906905, 2706101.3639665716], + [5165807.523713724, 2706070.042957003], + [5165849.878494911, 2706075.3078116938], + [5165874.848462099, 2705865.0770566785], + [5165894.860367339, 2705696.621856693], + [5166003.858368372, 2705496.8529428863], + [5166008.901085462, 2705454.3975390494], + [5166097.19890007, 2705422.9847746426], + [5166139.557431804, 2705428.258327169], + [5166233.49299696, 2705467.7993471967], + [5166294.253911453, 2705453.6975456444], + [5166448.337217448, 2705338.1254143976], + [5166494.966466744, 2705301.5249543483], + [5166507.942547533, 2705258.83361945], + [5166504.964877488, 2705217.301140327], + [5166483.854647012, 2705174.3246062114], + [5166432.864925782, 2705140.6128298114], + [5166394.35829798, 2705074.0262561846], + [5166399.287671265, 2705033.215029321], + [5166405.759512841, 2705010.1285901284], + [5166475.647367602, 2704917.848728165], + [5166604.883407705, 2704856.0032168734], + [5166686.330695913, 2704770.1173719694], + [5166742.964162802, 2704649.2961164713], + [5166857.158415589, 2704511.7023454513], + [5166869.812865268, 2704407.9167637494], + [5166914.314448938, 2704286.339660465], + [5166929.276421335, 2704160.3417037455], + [5166946.044472979, 2704123.481915158], + [5167000.665232446, 2704082.5177555373], + [5167050.568250659, 2704082.0382031836], + [5167101.6809772365, 2704138.709627526], + [5168865.913558582, 2705153.6798674674], + [5168744.343544278, 2705480.765132131], + [5168724.588402528, 2705513.5747454665], + [5168714.868249849, 2705525.0984771494], + [5168699.820848586, 2705527.75710436], + [5168581.452726525, 2705510.4599270537], + [5168563.380496765, 2705522.171854594], + [5168564.842230594, 2705593.5424610567], + [5168588.815080277, 2705686.903533895], + [5168667.43761482, 2705657.3035983993], + [5168709.7838438405, 2705662.5743492395], + [5168830.508852339, 2705719.9831952597], + [5168867.131915562, 2705767.630240974], + [5168899.476321816, 2705857.1322626336], + [5168889.554884823, 2705940.675198176], + [5168884.505435882, 2705983.12353204], + [5168837.195784034, 2706019.63509634], + [5168686.448087164, 2706214.899989734], + [5168629.814926442, 2706335.7224592464], + [5168619.801477851, 2706419.9556169203], + [5168567.448951674, 2706498.9105165685], + [5168520.810620699, 2706535.5011005667], + [5168395.128200794, 2706519.861814065], + [5168189.699727587, 2706451.905813665], + [5168184.732432966, 2706493.6782913734], + [5168253.784955958, 2706630.1304289512], + [5168202.109352569, 2706709.179826957], + [5168164.725536539, 2706662.132672524], + [5168123.052326471, 2706656.9460964845], + [5168118.092098588, 2706698.7181656417], + [5167765.091090919, 2707234.8444892284], + [5167754.393765973, 2707251.0925163245], + [5167583.023445459, 2707614.043202939], + [5167988.069712282, 2707793.002998761], + [5167869.053342242, 2708077.0172229777], + [5167740.038231645, 2708445.2435660507], + [5168216.854935399, 2708376.027264812], + [5168668.603706187, 2708517.7238113624], + [5168936.571975765, 2707697.710493413], + [5170244.511004191, 2708159.3051548577], + [5170110.525457326, 2708569.3099566144], + [5171213.705829138, 2708963.0590426465], + [5171196.419190811, 2708746.867928472], + [5171221.404740445, 2708536.629590238], + [5171269.742653171, 2707774.059822364], + [5171324.754601233, 2707311.1406784123], + [5171394.723609721, 2706722.2131770123], + [5171626.079811183, 2706921.960122378], + [5172056.178923017, 2706890.022087066], + [5172609.557375956, 2706532.2159702983], + [5173185.3536797995, 2706347.463539712], + [5173093.968106375, 2706037.2636229554], + [5173092.253672006, 2705695.8434514794], + [5173095.571132817, 2705311.9575658552], + [5173167.256900264, 2705064.456430609], + [5173360.263558754, 2704875.1421782398], + [5173400.285659146, 2704538.217125717], + [5173456.923179159, 2704417.4052533833], + [5173688.967569608, 2704617.238270951], + [5173987.726743388, 2704611.335442972], + [5174743.199958133, 2704705.3809368513], + [5174916.19431292, 2704684.5312484656], + [5175140.949224207, 2704583.9450626504], + [5175254.901604352, 2704342.393768597], + [5175242.565704474, 2704084.4324174514], + [5175460.544479806, 2703684.876191568], + [5175411.498454937, 2703379.9628504217], + [5176839.397392238, 2702831.5147238155], + [5177865.470152768, 2701720.901971552], + [5177922.782096049, 2701600.166440588], + [5178447.852859425, 2701836.4896619883], + [5178857.936863195, 2701973.022051595], + [5179053.554486221, 2701399.7353364476], + [5179590.273269852, 2700825.836769311], + [5180933.311308279, 2699199.44235995], + [5182129.020717931, 2696658.947372934], + [5182203.9507452985, 2696027.556479032], + [5182113.213688429, 2695717.4502026374], + [5181938.447037599, 2695396.869859102], + [5181585.658651901, 2695139.6142373723], + [5181590.69733546, 2695097.154205719], + [5181615.639251518, 2694886.922873142], + [5181620.5960252, 2694845.1547761373], + [5181677.299615595, 2694723.6469213543], + [5181650.575599293, 2694592.457890824], + [5181623.175844708, 2694461.1834160206], + [5181727.18239311, 2694303.177938169], + [5181342.711318182, 2693956.5122589804], + [5180697.97330877, 2694004.119710556], + [5180236.219066024, 2693946.6452698554], + [5175515.144546728, 2694255.5198863754], + [5175325.337588883, 2694061.661468271], + [5175182.3206523, 2693829.832218573], + [5175027.518734649, 2693340.827724215], + [5174963.396576042, 2693162.606795327], + [5174945.985488737, 2692947.1138080205], + [5174867.6853383, 2692894.279100409], + [5174850.265754022, 2692678.7914047563], + [5174855.306002866, 2692636.338591384], + [5174813.629549718, 2692631.1502548857], + [5174530.657895997, 2691785.0207115225], + [5174731.808474972, 2688650.470504225], + [5173032.746273432, 2688610.0778246997], + [5170657.894389069, 2688528.066273991], + [5170573.865257491, 2688517.61318503], + [5170568.836181697, 2688560.0618803767], + [5170527.168337351, 2688554.884974403], + [5170443.146375371, 2688544.434849043], + [5170405.818127423, 2688496.7264141077], + [5169961.855490944, 2688142.7904002625], + [5169919.619826381, 2688138.1628607195], + [5169889.873676287, 2688176.863320856], + [5169843.252173638, 2688213.45379502], + [5169665.213592357, 2688276.779283573], + [5169638.472952368, 2688285.0262350426], + [5169599.502129075, 2688282.1290749656], + [5169502.802066609, 2688214.201173747], + [5169460.445532482, 2688208.935178838], + [5169420.630513046, 2688245.6179159232], + [5169360.879148659, 2688302.3449933846], + [5169314.865023044, 2688361.0714082597], + [5169289.560223377, 2688262.570106907], + [5169217.753349029, 2688216.6194092524], + [5169208.370059484, 2688177.5965694785], + [5169213.404562573, 2688135.1342055406], + [5169280.67810778, 2687930.1836676793], + [5169290.657636313, 2687845.968880119], + [5169258.292877605, 2687756.477128484], + [5169125.818808692, 2687441.213674211], + [5169056.729705149, 2687304.786551695], + [5169029.307821412, 2687173.521758057], + [5168947.701964822, 2686953.8086170973], + [5168933.558995945, 2686905.2250267696], + [5168948.494606442, 2686779.234799049], + [5168940.564879699, 2686693.012794536], + [5168813.775403019, 2686508.1414694237], + [5168723.409561088, 2686435.012848641], + [5168694.670000523, 2686405.820556825], + [5168662.977042584, 2686316.4124515317], + [5168605.279892336, 2686255.8401329992], + [5168509.854106316, 2686169.5310697234], + [5168324.729132934, 2686131.223694816], + [5168173.241417383, 2686074.7595023755], + [5168011.817634584, 2686074.8402925325], + [5167957.498049524, 2686059.685732316], + [5167927.383273607, 2686054.041685261], + [5167893.654845112, 2686062.9977289764], + [5167829.2948538475, 2686051.5429727025], + [5166243.182680918, 2685887.7731807963], + [5166238.232045649, 2685929.545636806], + [5166055.166118353, 2686035.341032121], + [5165867.913463918, 2686182.296418092], + [5165288.473698693, 2689269.643772672], + [5165002.884593018, 2688807.518542942], + [5164955.576796547, 2688844.0226984792], + [5164577.793412608, 2688797.069224318], + [5164776.514141855, 2687839.9774076208], + [5164398.730442873, 2687793.021479534], + [5164347.077376255, 2687872.0643396303], + [5164243.0855832845, 2688030.071587206], + [5164282.311554681, 2688418.484543534], + [5164225.622988989, 2688539.9780249204], + [5163961.131351631, 2688250.72188868], + [5163430.201079179, 2688782.28723187], + [5159179.830449307, 2684753.7383471513], + [5158030.769661223, 2685464.909870821], + [5157064.763433531, 2686070.2792443614], + [5157059.724095905, 2686112.7306739576], + [5156664.480570189, 2685850.342050415], + [5156030.98265224, 2685088.6904060557], + [5155547.427583551, 2684857.721760069], + [5154599.499329628, 2684227.9663191345], + [5154478.81719121, 2684169.903557631], + [5153146.741726908, 2684986.2131826645], + [5153095.083412455, 2685065.259078752], + [5153006.023730654, 2685097.276433915], + [5153390.621386218, 2685443.7758811032], + [5152817.33445671, 2685970.1009916407], + [5153007.121725444, 2686164.5737828147], + [5152475.501056744, 2686696.0717995497], + [5152517.864881134, 2686701.333254698], + [5151986.230718889, 2687232.828286789], + [5152027.910106137, 2687237.999048546], + [5151496.280966915, 2687769.5077425702], + [5151570.333068149, 2687864.157769456], + [5150742.404947499, 2688743.0769996075], + [5150549.418064323, 2688932.4054001374], + [5150206.51021215, 2688591.08284983], + [5150129.938901769, 2688880.3236292177], + [5149941.902164655, 2689027.8904895135], + [5149786.245839669, 2689264.9395503164], + [5149669.130998049, 2689890.287835069], + [5149664.102114032, 2689932.7458156855], + [5149459.6176295895, 2691657.5077823387], + [5149354.879693983, 2692540.778314359], + [5149304.936248412, 2692961.8701839535], + [5148994.648217158, 2694502.5893258797], + [5148746.75220016, 2695154.7937363074], + [5147168.914237389, 2695172.170206057], + [5146099.53994454, 2695210.3109391155], + [5145931.481049254, 2695189.4450908164] + ] + ] + ] + }, + "units": { "yield": "t/ha", "water_need": "mm" } + }, + { + "type": "Feature", + "properties": { + "ID": 3326, + "NUTS_ID": "HU3326", + "NAME": "Gyomaendr\u0151di j\u00e1r\u00e1s", + "ADMIN_LEVEL": "7", + "yield": { + "Wheat": { "average": 8.92, "best": 9.14, "worst": 8.33 }, + "Maize": { "average": 10.89, "best": 12.64, "worst": 1.31 }, + "Sunflower": { "average": 3.78, "best": 4.92, "worst": 0.47 }, + "Soybean": { "average": 3.06, "best": 4.34, "worst": 1.03 } + }, + "water_need": { + "Wheat": { "average": 98, "best": 58, "worst": 156 }, + "Maize": { "average": 208, "best": 151, "worst": 392 }, + "Sunflower": { "average": 231, "best": 198, "worst": 409 }, + "Soybean": { "average": 238, "best": 137, "worst": 418 } + }, + "links": { + "Wheat": { + "average": "/crop_model/regional_forecast?nuts_id=HU3326&crop=WheatGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3326&crop=WheatGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3326&crop=WheatGDD&scenario=worst" + }, + "Maize": { + "average": "/crop_model/regional_forecast?nuts_id=HU3326&crop=MaizeGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3326&crop=MaizeGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3326&crop=MaizeGDD&scenario=worst" + }, + "Sunflower": { + "average": "/crop_model/regional_forecast?nuts_id=HU3326&crop=SunflowerGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3326&crop=SunflowerGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3326&crop=SunflowerGDD&scenario=worst" + }, + "Soybean": { + "average": "/crop_model/regional_forecast?nuts_id=HU3326&crop=Soybean&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3326&crop=Soybean&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3326&crop=Soybean&scenario=worst" + } + } + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5132222.4444062365, 2714148.6557318904], + [5132182.398445258, 2714485.531665291], + [5132252.237431654, 2715603.9489339553], + [5132284.9772572005, 2716162.900440716], + [5132303.358353041, 2716440.524992076], + [5132313.881738058, 2716585.013023065], + [5132329.111516285, 2716702.708069639], + [5132398.30122688, 2716659.620911401], + [5132483.232384929, 2716614.2595197633], + [5132615.796773603, 2716594.754513149], + [5132719.643365747, 2716609.366909634], + [5132770.423150415, 2716624.1954137264], + [5132803.134960024, 2716645.941836797], + [5132897.656126784, 2716708.7963876193], + [5132951.405530039, 2716715.876071243], + [5133049.1374658095, 2716683.210664526], + [5133214.308189171, 2716497.9797061905], + [5133257.836090106, 2716453.0112460856], + [5133315.517322792, 2716418.830242431], + [5133324.835656961, 2716411.517447179], + [5133408.17135181, 2716365.002304271], + [5133523.286753792, 2716353.4369631857], + [5133599.31864696, 2716574.0065256413], + [5133643.603414984, 2716692.2880453235], + [5133675.550198818, 2716775.0795558263], + [5133674.442808063, 2716930.1329988725], + [5133659.605976847, 2716998.9367071064], + [5133657.531971965, 2717057.249055937], + [5133658.940783173, 2717827.4843725525], + [5133927.631093533, 2718074.845083983], + [5134939.2844813615, 2718883.5019864626], + [5135664.903872395, 2719229.3091440457], + [5136053.707958885, 2718466.7317355904], + [5136188.81650941, 2717330.778300633], + [5136267.875677321, 2717382.9908228046], + [5139689.622802453, 2717978.935806181], + [5140052.339425979, 2718152.5472463807], + [5139275.737669483, 2718952.415451808], + [5139726.84832544, 2719093.926872458], + [5139968.908835328, 2719209.4614639343], + [5139917.304878274, 2719287.8285513814], + [5140511.3738324735, 2719661.1163977813], + [5140911.550219674, 2719881.0837452207], + [5141132.891460438, 2720164.993575751], + [5141364.926786939, 2720364.7532241163], + [5141507.965190396, 2720595.849232827], + [5141714.3112308625, 2721005.7526539383], + [5141902.412679191, 2720858.188285672], + [5141874.003869672, 2721452.2451124378], + [5141981.925546838, 2721978.462382829], + [5142394.81849477, 2721730.2921990245], + [5142389.771471421, 2721772.7456342946], + [5142698.510969129, 2721683.264945419], + [5143049.690203505, 2721598.3530685287], + [5143052.389839026, 2721214.4240602585], + [5143405.064334154, 2721472.286169871], + [5143400.095644726, 2721514.0455906936], + [5143249.386688366, 2721708.640363067], + [5143355.040496375, 2721892.714419821], + [5142403.716356209, 2722372.0672930684], + [5142215.618752121, 2722519.624651634], + [5142074.928636559, 2722630.003369597], + [5141934.237913, 2722740.374958576], + [5141815.089264081, 2723025.057950738], + [5141895.714609658, 2723419.333829874], + [5142060.365647661, 2723824.0680200616], + [5142220.0413494585, 2724270.560740139], + [5142264.043674257, 2724617.2162228697], + [5142091.624564838, 2724638.866583784], + [5141624.859519275, 2724623.250937701], + [5141656.497874271, 2724712.6510316245], + [5141747.143160092, 2725022.710646284], + [5141791.065942312, 2725370.05240142], + [5141741.012145979, 2725790.4818626167], + [5141684.253191411, 2725911.9744708976], + [5141466.154702874, 2726311.526502425], + [5141498.48047613, 2726401.0125879245], + [5141493.502322815, 2726442.7756185983], + [5141374.418876294, 2726726.779558571], + [5141319.306280457, 2727189.673844518], + [5141439.9456228, 2727247.7464605956], + [5141518.995374979, 2727299.963302783], + [5141802.707559379, 2727420.696201258], + [5141923.428296461, 2727478.097487271], + [5142007.450759264, 2727488.536770404], + [5142905.9075425565, 2727814.254213674], + [5143021.574081974, 2727914.098490517], + [5142885.932062877, 2727982.020661181], + [5142806.879602061, 2727929.8042216254], + [5142765.21240925, 2727924.625249409], + [5142717.878412494, 2727961.1333768354], + [5142534.752225808, 2728066.9148714202], + [5142483.044736575, 2728145.9598109988], + [5142322.285410521, 2728424.776403575], + [5142317.31613828, 2728466.555561158], + [5142302.31518832, 2728592.5442405064], + [5142288.846759263, 2729060.622278691], + [5142273.759574679, 2729187.293747834], + [5142227.1197537985, 2729223.883453537], + [5142169.76240198, 2729344.6188365323], + [5141883.296973161, 2729607.808841712], + [5141820.878550434, 2729770.986992775], + [5141029.070200965, 2730697.5137392357], + [5143466.693202458, 2733394.8877282874], + [5144114.637576176, 2734112.3651483855], + [5145304.564248664, 2734132.4904511077], + [5145294.521676216, 2734216.7188175954], + [5145321.861250199, 2734347.9772341773], + [5145353.487999074, 2734437.389747791], + [5145781.748707586, 2735130.6911000456], + [5145819.042228943, 2735178.4096901063], + [5145898.077476271, 2735230.6309118136], + [5146102.724982778, 2735299.169579996], + [5146228.415568639, 2735314.8068497158], + [5146349.806819454, 2735372.298096695], + [5146386.404899213, 2735419.937524482], + [5146381.4230336845, 2735461.706983253], + [5146361.344729805, 2735630.167269379], + [5146788.010326681, 2735982.054000428], + [5146829.670879223, 2735987.2393261287], + [5147600.170511769, 2735955.2322846185], + [5147726.539721782, 2735970.959427873], + [5147763.230221406, 2736017.9073879044], + [5147758.172960378, 2736060.363933688], + [5147794.85384747, 2736107.3239934426], + [5147921.221628151, 2736123.0422796994], + [5148005.245205909, 2736133.5011418746], + [5148046.906567028, 2736138.682190718], + [5148486.392901319, 2736022.4089978286], + [5148533.728573509, 2735985.9076916277], + [5148575.390996805, 2735991.0926439045], + [5148580.453200151, 2735948.6420506695], + [5148679.497204175, 2735833.0848368127], + [5148684.4679884855, 2735791.3199006496], + [5148709.616396465, 2735580.3987147263], + [5148677.98402896, 2735490.9923118483], + [5148640.612328218, 2735443.959107407], + [5148561.581899123, 2735391.728502616], + [5148529.953406863, 2735302.31500887], + [5148535.013749857, 2735259.866278788], + [5148539.99843231, 2735218.0859603235], + [5148586.720361091, 2735180.820367291], + [5148911.164573445, 2734965.4433905343], + [5148999.5619029, 2734933.359586504], + [5149041.914595686, 2734938.629019664], + [5149199.901579572, 2735043.7591560744], + [5149283.916909288, 2735054.212340514], + [5149461.315756185, 2734990.8072366244], + [5149671.011510552, 2735016.9077664283], + [5149866.298039569, 2735169.766136759], + [5150183.86528568, 2735721.4511895413], + [5150205.450623114, 2735895.0956532876], + [5150190.431271583, 2736021.0922224186], + [5150227.118047439, 2736068.0544245136], + [5150269.471005601, 2736073.321181733], + [5150395.151196505, 2736088.9582846723], + [5150479.166566332, 2736099.418852591], + [5150531.476237259, 2736021.1444469173], + [5150568.168255809, 2736068.1036026226], + [5150624.854789583, 2735947.286738425], + [5150677.244317644, 2735868.335787789], + [5150633.400017109, 2735520.962249833], + [5150769.122876959, 2735452.372633536], + [5150967.193401492, 2735221.2779870937], + [5151811.4370441465, 2734215.8263733434], + [5152033.961558071, 2733773.735678991], + [5152941.028265968, 2731880.3105698396], + [5152143.52602121, 2730713.6532862782], + [5151864.901598088, 2730550.4117780486], + [5151415.857674072, 2730025.476357407], + [5152189.874788051, 2729608.911895819], + [5152243.795213948, 2729872.051846277], + [5152344.44014506, 2730097.9184089075], + [5155005.20894916, 2730642.3672874235], + [5155062.56979924, 2730521.64240084], + [5155260.0256683305, 2730289.7792997425], + [5155598.860089013, 2729947.6451793616], + [5155687.857479418, 2729916.3253728794], + [5155834.287653179, 2729763.5904945624], + [5156219.761886997, 2729384.869123605], + [5156308.843177458, 2729352.870239419], + [5156476.876578165, 2729373.7806935674], + [5156568.634391001, 2728958.506028292], + [5156656.089497507, 2728585.0867566634], + [5156764.47357915, 2728385.2242277274], + [5156962.599567542, 2728153.4527472705], + [5157056.652707291, 2728079.6774329925], + [5157239.69530691, 2727974.5901084878], + [5158028.005689252, 2727431.9649002855], + [5157948.553308584, 2726312.2522067996], + [5157571.582092753, 2724471.705836634], + [5156486.85799212, 2723568.134538767], + [5157050.369783155, 2723126.0841389303], + [5157144.409258726, 2723052.313360879], + [5158132.384008635, 2722619.9945635214], + [5158110.677102673, 2722447.037296049], + [5158084.092337949, 2722315.1754816216], + [5158125.768210968, 2722320.3520564446], + [5158094.117300689, 2722230.94366734], + [5158030.071223017, 2722052.7149080653], + [5157761.366611562, 2721805.9381519225], + [5157561.001533447, 2721695.5355427926], + [5156983.583553225, 2721538.2172728158], + [5156653.242668015, 2721454.0279608443], + [5156536.896202841, 2721354.087699686], + [5156273.161661293, 2721065.5414854665], + [5155979.434931369, 2721028.9912307016], + [5155450.9709682055, 2721176.5999278734], + [5154974.215097743, 2721245.14729527], + [5155123.263196502, 2720709.153124066], + [5155002.625124236, 2720651.0592190144], + [5155173.377099799, 2720288.0091535305], + [5155722.9234993365, 2719246.599148483], + [5155962.136418404, 2717952.560738919], + [5155972.163055523, 2717868.3305077692], + [5155898.163808025, 2717773.64901243], + [5156315.909445638, 2717484.4182513244], + [5156667.065469153, 2717399.5375731513], + [5157042.465531976, 2717105.0352572966], + [5157213.877989901, 2716742.076679], + [5156255.283126216, 2715904.651836619], + [5156158.313382662, 2715825.244151941], + [5155971.631430061, 2715671.5337713244], + [5155396.231186198, 2715192.217121694], + [5155375.732048565, 2715165.610921806], + [5155365.855814063, 2715071.156824502], + [5155369.539168991, 2715061.0316612376], + [5155381.341248372, 2715043.2729577976], + [5155426.197730559, 2714940.2175074806], + [5155464.387337672, 2714828.005736788], + [5155489.482257949, 2714802.71968394], + [5155507.111570107, 2714710.053847669], + [5155560.298323801, 2714529.536196327], + [5155568.449389198, 2714480.4407729516], + [5155592.634247503, 2714426.0073799775], + [5155644.441400589, 2714326.4099242073], + [5155674.276985055, 2714287.996311393], + [5155741.0589536335, 2714162.9828528864], + [5155814.271568761, 2714050.651685593], + [5155857.03550835, 2713959.330257836], + [5155907.913290921, 2713842.556090622], + [5155924.288322277, 2713787.7521251217], + [5155922.995876658, 2713694.438044961], + [5155907.273573587, 2713622.6698290687], + [5155874.649661097, 2713585.5503399717], + [5155886.613033351, 2713447.1631825967], + [5155880.283632042, 2713359.0808427534], + [5155873.390368939, 2713226.2867969275], + [5155890.110361224, 2713080.7510786047], + [5155892.3660979355, 2712956.75667105], + [5155881.07267368, 2712904.4702090034], + [5155876.396889266, 2712859.457686335], + [5155871.785893754, 2712802.807727824], + [5155857.383856894, 2712768.796757767], + [5155838.916392481, 2712737.127508878], + [5155837.868809197, 2712707.0426823352], + [5155856.997051283, 2712617.6165778195], + [5155864.337018391, 2712514.174215539], + [5155855.283211305, 2712470.550808933], + [5155861.77557159, 2712425.4790124865], + [5155889.102411996, 2712364.0835165903], + [5155892.190360426, 2712338.29263833], + [5155898.854033276, 2712327.7543896604], + [5155939.613819851, 2712288.8816910847], + [5155973.4909099415, 2712268.569307968], + [5155992.014206028, 2712253.437136463], + [5155999.081048351, 2712243.35922226], + [5155992.958126585, 2712025.174173029], + [5155924.578007102, 2711879.3534635655], + [5155888.461452783, 2711833.482254804], + [5155766.156421943, 2711723.8543944824], + [5155672.969889031, 2711656.2016285616], + [5155639.3583671525, 2711621.6522796056], + [5155556.103571115, 2711582.849881964], + [5155423.704954504, 2711471.7160528135], + [5155367.395079108, 2711444.471444723], + [5155350.130481527, 2711424.552773641], + [5155340.406180485, 2711406.5362140248], + [5155339.8890442755, 2711394.995877044], + [5155342.150806007, 2711385.775414453], + [5155354.398907208, 2711375.906027381], + [5155422.154087942, 2711342.805353541], + [5155446.752909236, 2711322.4543735827], + [5155460.987625386, 2711303.7439099876], + [5155477.148132168, 2711238.896684873], + [5155480.984093561, 2711226.421810084], + [5155489.870991114, 2711217.8419652493], + [5155514.587617628, 2711212.9996342016], + [5155575.158002367, 2711213.357450627], + [5155589.334017133, 2711198.8867356963], + [5155592.512165885, 2711180.5883922717], + [5155584.715836254, 2711158.2038043174], + [5155565.308497526, 2711125.519638159], + [5155558.792695099, 2711106.747952047], + [5155557.078095879, 2711089.247441295], + [5155572.453565982, 2711022.955833208], + [5155569.243715989, 2711008.976399161], + [5155560.705040228, 2710999.4406109173], + [5155507.992884532, 2710980.485791358], + [5155480.599913949, 2710967.594138736], + [5155456.434208163, 2710951.2338317577], + [5155447.838864855, 2710938.0202134824], + [5155448.501449196, 2710918.6338195093], + [5155457.42087632, 2710904.9471285823], + [5155468.751253074, 2710894.6496710395], + [5155491.451425331, 2710880.6754865665], + [5155582.219789265, 2710844.2050485443], + [5155601.261653654, 2710831.041739605], + [5155613.779404688, 2710811.1274164375], + [5155611.984624293, 2710797.4836996505], + [5155601.476039709, 2710786.907478221], + [5155582.795874579, 2710775.0171977794], + [5155559.778011738, 2710769.457623642], + [5155538.685435517, 2710769.6013724], + [5155429.609372826, 2710785.6102741174], + [5155408.733151469, 2710780.1376536186], + [5155397.6595442565, 2710772.6157225324], + [5155389.741391439, 2710756.330431337], + [5155384.539593514, 2710658.4854596118], + [5155370.122868781, 2710630.2864977177], + [5155345.703297142, 2710612.274199239], + [5155300.23092263, 2710582.920891735], + [5155293.523520711, 2710567.0926780514], + [5155260.930807458, 2710463.246158176], + [5155253.081740896, 2710386.1300112708], + [5155237.673049174, 2710299.423725839], + [5155247.223242377, 2710267.9495649515], + [5153709.8253551815, 2710030.098647417], + [5153406.070803488, 2710077.8027217034], + [5152186.369102592, 2708517.012613286], + [5152362.024016083, 2708112.206766106], + [5151987.568524871, 2707681.403178925], + [5152248.973092928, 2707628.428299595], + [5153341.533178104, 2707038.794549214], + [5153440.600176225, 2706922.564194822], + [5153361.540832404, 2706870.3456381825], + [5153344.840736902, 2706654.954641807], + [5153275.868944945, 2706517.829360455], + [5153243.432347285, 2706429.029668604], + [5152948.026937816, 2706050.4479061724], + [5152915.680458154, 2705960.95541028], + [5152824.955626288, 2705650.890638763], + [5152793.287011391, 2705561.4956676126], + [5152755.8952381965, 2705514.4622893324], + [5152714.215677902, 2705509.280678073], + [5152760.932962553, 2705472.0045894007], + [5152891.598145763, 2705445.8643774996], + [5152685.171045696, 2705035.9491724735], + [5152652.82233228, 2704946.467410603], + [5152404.039563812, 2704531.3023600555], + [5154193.162362135, 2703814.2175159566], + [5154312.149796098, 2703530.2184144547], + [5154358.777644196, 2703493.6333564823], + [5154549.443344616, 2702962.146197146], + [5154720.791259454, 2702599.1878454867], + [5154777.420786677, 2702478.384255505], + [5155144.372598331, 2701542.1646964275], + [5154534.508687284, 2701295.4423035798], + [5154879.091315856, 2700185.5319324], + [5154837.419815426, 2700180.3502939423], + [5154187.554482106, 2700270.525866401], + [5154106.798700752, 2699876.2529972373], + [5154403.834993723, 2699528.9121820736], + [5154492.897280301, 2699496.909399759], + [5154717.584523452, 2699396.971265081], + [5154848.238796556, 2699370.8238820867], + [5154604.461001158, 2698913.2106497358], + [5155147.852357486, 2698639.565810755], + [5154743.421933955, 2698460.771965837], + [5154719.7398166265, 2698440.5536567024], + [5154706.026024721, 2698413.738108948], + [5151878.2644220535, 2697123.0222496646], + [5151794.23845495, 2697112.5765726534], + [5149092.95065412, 2696905.5988976997], + [5149045.635682386, 2696942.1057505743], + [5147426.134655362, 2696954.2914571874], + [5147238.947184333, 2696375.897770399], + [5146347.637630252, 2696350.695558317], + [5146017.311708429, 2695541.236327733], + [5145926.520661801, 2695231.20129385], + [5145931.481049254, 2695189.4450908164], + [5146099.53994454, 2695210.3109391155], + [5147168.914237389, 2695172.170206057], + [5148746.75220016, 2695154.7937363074], + [5148994.648217158, 2694502.5893258797], + [5149304.936248412, 2692961.8701839535], + [5149354.879693983, 2692540.778314359], + [5149459.6176295895, 2691657.5077823387], + [5149664.102114032, 2689932.7458156855], + [5149669.130998049, 2689890.287835069], + [5149786.245839669, 2689264.9395503164], + [5149200.512582511, 2689533.353441458], + [5148098.768990761, 2689482.040353586], + [5147804.9914409835, 2689445.56175245], + [5147632.571619866, 2689467.24158746], + [5147103.445853052, 2689614.845453656], + [5146130.589304357, 2689920.6685268832], + [5146125.557822588, 2689963.1278984044], + [5144160.204149588, 2691810.4244075865], + [5143440.4888132075, 2692489.506317574], + [5142088.299892068, 2693474.294645393], + [5141858.578788841, 2693616.691079214], + [5142060.827791712, 2694068.3851644862], + [5142413.6267239, 2694326.160069089], + [5143129.395228639, 2694756.128545674], + [5143054.5109002, 2695387.4153037546], + [5142870.736638333, 2696217.7937217765], + [5142753.491675207, 2696843.820412809], + [5142599.584860897, 2697422.2325050877], + [5142552.881495857, 2697459.500722528], + [5142407.259830359, 2697611.65404109], + [5142260.89043273, 2697764.3996047936], + [5141957.112907124, 2697812.1454137815], + [5141742.337873563, 2697828.5673865057], + [5140877.732514772, 2697934.538111412], + [5139537.001006156, 2698109.2674418543], + [5138007.441967828, 2698432.179757806], + [5137399.971350333, 2698527.005177358], + [5136708.371403366, 2698612.103361299], + [5136411.299679319, 2699144.7984376973], + [5136329.686577376, 2699291.149043533], + [5136313.716096236, 2699425.709826569], + [5136309.772637642, 2699458.889063006], + [5136287.209251454, 2700011.2086425424], + [5135393.491531443, 2701437.1341479314], + [5134173.454117974, 2703462.4568261066], + [5134111.785216117, 2703625.7238732544], + [5134064.373605353, 2703662.916606537], + [5133794.718433127, 2704141.504357413], + [5134137.586291029, 2704482.8101783954], + [5134877.327119238, 2705428.493014326], + [5134814.966896167, 2705591.6702076965], + [5134789.9975282345, 2705801.8724482404], + [5134817.4030437125, 2705933.1131788986], + [5134854.035559251, 2705980.7419412606], + [5134849.071337696, 2706022.5061321952], + [5135002.187039702, 2706169.3499154407], + [5135112.850974005, 2706311.611508331], + [5135218.6358966995, 2706494.9650410297], + [5135168.623499662, 2706916.0604835274], + [5135196.0149700735, 2707047.296131922], + [5135186.01409196, 2707131.523981306], + [5135091.980759998, 2707205.3051618882], + [5135050.303095406, 2707200.1288950504], + [5135045.334640345, 2707241.898245133], + [5134997.942020042, 2707279.0923869214], + [5134972.972265639, 2707489.2933308585], + [5135068.665865515, 2707757.5453763506], + [5135043.701448896, 2707967.758805213], + [5134992.015306475, 2708046.802409265], + [5134893.01991747, 2708162.348492019], + [5134515.21324474, 2708115.448609142], + [5134352.09494442, 2708052.828617271], + [5134231.434954726, 2707994.774765953], + [5133895.979975685, 2707953.133263567], + [5133764.545198509, 2707979.8995027067], + [5133680.511166549, 2707969.4659681097], + [5133544.880262185, 2708037.401175348], + [5133366.801764952, 2708100.7637023563], + [5133315.115287509, 2708179.7994087865], + [5133221.081786799, 2708253.5863083214], + [5133201.075246821, 2708422.0239158813], + [5133275.097306832, 2708516.674251239], + [5133390.810412692, 2708616.4992573317], + [5133595.586992552, 2708684.2940699533], + [5133716.9383425005, 2708742.4385972293], + [5133800.976538975, 2708752.8616696014], + [5133894.334754231, 2708678.998542394], + [5134161.481540137, 2708583.6093340944], + [5134344.519467305, 2708478.4892626447], + [5134606.627876008, 2708425.566261277], + [5134694.934243169, 2708394.138818893], + [5134774.01675492, 2708446.3382902686], + [5134885.437728755, 2708588.0122811487], + [5134855.41634737, 2708840.6581867626], + [5134736.408818722, 2709124.6545248795], + [5134533.358150521, 2709398.2198815066], + [5134434.282705207, 2709514.4514142633], + [5134340.313692056, 2709587.5572523586], + [5134256.280929844, 2709577.1245188303], + [5134125.532672266, 2709603.972117103], + [5133942.498760122, 2709709.096653063], + [5133801.740504186, 2709820.156017922], + [5133749.449491988, 2709898.434702095], + [5133702.73258383, 2709935.7133548083], + [5133682.714823453, 2710104.1472010356], + [5133714.47048199, 2710192.856143073], + [5134176.316260687, 2710250.1887279423], + [5133326.526581516, 2710442.5293237856], + [5133328.982385727, 2710572.299963368], + [5133304.008043209, 2710782.50723772], + [5133348.010535891, 2711129.818125865], + [5133374.709587455, 2711260.9614479514], + [5133407.06565894, 2711350.443394838], + [5133403.667038993, 2711459.52310054], + [5133390.473340356, 2711602.6836218364], + [5133383.503996679, 2711707.3253248557], + [5133384.980766385, 2711763.427721212], + [5133365.673246135, 2711886.3811540613], + [5133364.732257476, 2712011.818242057], + [5133342.995788401, 2712282.7601376385], + [5133313.738302403, 2712491.540297534], + [5133351.130795582, 2712538.5624030586], + [5133641.586100041, 2712958.841774865], + [5133557.548334642, 2712948.4093542164], + [5133468.467591588, 2712980.4325313545], + [5133416.864765669, 2713058.7933627297], + [5133401.806989402, 2713185.460538968], + [5133423.461932391, 2713359.071731533], + [5133438.046510612, 2713443.565992603], + [5133425.235389771, 2713494.8826656654], + [5133412.377543435, 2713532.7493515713], + [5133351.842150219, 2713605.866548218], + [5133158.791280157, 2713795.207529568], + [5133013.055882698, 2713948.044305063], + [5132896.117731393, 2714182.5025617224], + [5132222.4444062365, 2714148.6557318904] + ] + ] + ] + }, + "units": { "yield": "t/ha", "water_need": "mm" } + }, + { + "type": "Feature", + "properties": { + "ID": 3327, + "NUTS_ID": "HU3327", + "NAME": "Gyulai j\u00e1r\u00e1s", + "ADMIN_LEVEL": "7", + "yield": { + "Wheat": { "average": 8.74, "best": 9.16, "worst": 7.71 }, + "Maize": { "average": 10.04, "best": 12.4, "worst": 1.73 }, + "Sunflower": { "average": 3.28, "best": 4.56, "worst": 0.33 }, + "Soybean": { "average": 2.5, "best": 3.98, "worst": 0.67 } + }, + "water_need": { + "Wheat": { "average": 110, "best": 45, "worst": 166 }, + "Maize": { "average": 263, "best": 122, "worst": 413 }, + "Sunflower": { "average": 288, "best": 174, "worst": 423 }, + "Soybean": { "average": 265, "best": 169, "worst": 440 } + }, + "links": { + "Wheat": { + "average": "/crop_model/regional_forecast?nuts_id=HU3327&crop=WheatGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3327&crop=WheatGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3327&crop=WheatGDD&scenario=worst" + }, + "Maize": { + "average": "/crop_model/regional_forecast?nuts_id=HU3327&crop=MaizeGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3327&crop=MaizeGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3327&crop=MaizeGDD&scenario=worst" + }, + "Sunflower": { + "average": "/crop_model/regional_forecast?nuts_id=HU3327&crop=SunflowerGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3327&crop=SunflowerGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3327&crop=SunflowerGDD&scenario=worst" + }, + "Soybean": { + "average": "/crop_model/regional_forecast?nuts_id=HU3327&crop=Soybean&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3327&crop=Soybean&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3327&crop=Soybean&scenario=worst" + } + } + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5170417.201935182, 2667538.0442908294], + [5170618.906984174, 2667989.682505524], + [5170794.505613187, 2668310.2344475337], + [5170874.617903439, 2668510.2916201386], + [5171248.212196072, 2668793.8843895476], + [5171359.024314346, 2668935.4881848963], + [5171553.779207231, 2669088.2112276116], + [5171880.016023582, 2669213.502618736], + [5172043.055374122, 2669276.8352628862], + [5172079.7889676895, 2669323.7854137216], + [5172013.1748065865, 2669529.4904462392], + [5172008.234078299, 2669571.2641367186], + [5172049.912416418, 2669576.4465737976], + [5172071.665670861, 2669750.0586403194], + [5172010.148992008, 2669912.625679731], + [5172016.922827649, 2670212.924309518], + [5172086.0447540535, 2670349.3472121856], + [5172081.109637253, 2670391.1163848443], + [5172071.1405290235, 2670475.333600316], + [5172066.120147844, 2670517.7836963646], + [5172061.18404281, 2670559.5585138174], + [5172103.539776531, 2670564.8176642745], + [5172145.211023771, 2670570.0011822586], + [5172214.336810009, 2670706.427940963], + [5172236.773428324, 2670880.123946593], + [5172174.495364387, 2671043.300523975], + [5172164.528665078, 2671127.5234869206], + [5172117.916596361, 2671164.1161051565], + [5172154.568770691, 2671211.7463191194], + [5172149.625650395, 2671253.5086195776], + [5172275.3244866645, 2671269.1263519423], + [5172312.663880295, 2671316.8477017684], + [5172354.338540841, 2671322.0204889365], + [5172401.712173571, 2671284.8375170706], + [5172396.6955455, 2671327.283167397], + [5172438.361348318, 2671332.4691402996], + [5172443.386072594, 2671290.017746343], + [5172522.392786473, 2671342.906490636], + [5172502.547430774, 2671510.663913855], + [5172544.910858685, 2671515.922014167], + [5172497.528900185, 2671553.1148352893], + [5172529.91827542, 2671642.5958667016], + [5172524.983780348, 2671684.371023852], + [5172519.958138656, 2671726.819720419], + [5172472.6630383115, 2671763.329531191], + [5172426.046995989, 2671799.907586285], + [5172416.087082958, 2671884.1360040708], + [5172373.728304291, 2671878.865136917], + [5172368.709396378, 2671921.3202622263], + [5172269.769967908, 2672036.866502862], + [5172312.12859031, 2672042.129854633], + [5171963.607270243, 2672468.4956375496], + [5171536.079892608, 2672841.9702811074], + [5171296.458026335, 2673068.566411224], + [5171291.517439378, 2673110.3293690654], + [5171339.940937624, 2673415.807491286], + [5171569.047141738, 2673998.7115591485], + [5171571.540431258, 2674340.858375735], + [5171551.60709605, 2674509.301141357], + [5171593.285185055, 2674514.4804396303], + [5171558.438457435, 2674808.9183070534], + [5171518.6526874155, 2675145.1057534907], + [5171134.010428113, 2677317.1902421582], + [5171064.298153592, 2677906.0461019925], + [5170977.799034695, 2678279.530941929], + [5170890.608222622, 2678652.9149924135], + [5170932.971219834, 2678658.1923631714], + [5170973.307709974, 2678667.943086748], + [5171686.871372119, 2678840.4193469817], + [5171997.338422489, 2678915.4997469555], + [5172050.710504611, 2678924.961768912], + [5172177.092653092, 2678940.673311994], + [5172256.086466118, 2678993.574968477], + [5172521.787422236, 2679624.1445035115], + [5172892.122183454, 2680096.7991209077], + [5173131.062288242, 2680596.207138908], + [5173300.88026718, 2680959.177185146], + [5173444.037673524, 2681190.277210512], + [5173591.457185774, 2681379.5344729074], + [5173623.835023266, 2681469.0252748774], + [5173643.128958595, 2682025.900865352], + [5173638.109620651, 2682068.3581848843], + [5173717.18807156, 2682120.570301446], + [5173936.881143342, 2682062.424637285], + [5174057.547141948, 2682120.502382232], + [5174099.896638587, 2682125.772026721], + [5174146.608365263, 2682088.4981742525], + [5174193.219437632, 2682051.9163905885], + [5174356.321059445, 2682114.5775077576], + [5174393.646742973, 2682162.2995560532], + [5174430.376352194, 2682209.2512027672], + [5174472.044096712, 2682214.43379476], + [5174514.400691437, 2682219.700845266], + [5174519.347549722, 2682177.925792046], + [5174659.967238516, 2682067.5669623986], + [5174707.345098069, 2682030.3766589267], + [5174843.017834376, 2681961.7809420945], + [5174927.040935528, 2681972.2219477626], + [5174968.709380364, 2681977.4149096445], + [5175085.110971089, 2682077.3566553593], + [5175080.089012648, 2682119.8083933797], + [5175121.751595902, 2682124.987940998], + [5175126.788434199, 2682082.5315100793], + [5175168.451283976, 2682087.711388924], + [5175230.762701732, 2681924.5402059793], + [5175331.317893563, 2681860.655130786], + [5175372.60963879, 2681836.3352888324], + [5175405.756520828, 2681816.8080027928], + [5175419.194444554, 2681805.366224854], + [5175426.3573062755, 2681795.7142464975], + [5175431.361405178, 2681783.735371084], + [5175435.1140189245, 2681759.8223746107], + [5175433.755151235, 2681736.6280200058], + [5175427.810253668, 2681717.4856414213], + [5175384.371016783, 2681640.692368058], + [5175376.14191311, 2681621.166839338], + [5175376.125429362, 2681607.6728561157], + [5175380.007369159, 2681596.528248865], + [5175389.872738537, 2681583.7850138675], + [5175421.094292206, 2681563.5676021394], + [5175447.455065938, 2681552.5976391807], + [5175462.711592093, 2681538.935436925], + [5175505.330457403, 2681477.081365527], + [5175550.681674509, 2681416.441178243], + [5175596.393106821, 2681376.242779758], + [5175639.701483421, 2681353.6373274378], + [5175667.79969348, 2681351.1042273687], + [5175688.627089122, 2681355.77950784], + [5175794.133066673, 2681422.700635718], + [5175885.846699537, 2681452.849036361], + [5175925.613098136, 2681479.061183576], + [5175998.685123175, 2681551.019469304], + [5176036.094412771, 2681598.0436651036], + [5176151.818261699, 2681697.9055124363], + [5176194.16601604, 2681703.1761428136], + [5176425.611105468, 2681902.879786686], + [5176509.622454361, 2681913.3355114516], + [5176547.031983765, 2681960.3624428567], + [5176504.684111214, 2681955.1026256518], + [5176542.091346401, 2682002.1428187024], + [5176578.723095054, 2682049.779129153], + [5176657.808347253, 2682101.9919266137], + [5176736.796513611, 2682154.9054472568], + [5176778.466624655, 2682160.091524353], + [5176820.819797029, 2682165.354519976], + [5176862.49861512, 2682170.5286919298], + [5177045.546313386, 2682064.752539175], + [5177087.211272914, 2682069.933044643], + [5177176.185731145, 2682038.6218191204], + [5177213.588535558, 2682085.659985139], + [5177255.261132227, 2682090.8359960965], + [5177291.901622906, 2682138.4725567135], + [5177319.333841924, 2682269.730137943], + [5177355.971442697, 2682317.372809145], + [5177398.329264528, 2682322.648034843], + [5177439.993374009, 2682327.8244679854], + [5177529.042270791, 2682295.8174132826], + [5177633.020701542, 2682137.8134446796], + [5177674.697722662, 2682143.007188471], + [5177717.045222393, 2682148.269097813], + [5177885.094806761, 2682169.1774071483], + [5177916.789352295, 2682258.5781565118], + [5177870.089386806, 2682295.8507960504], + [5177634.785917862, 2682479.898392671], + [5177665.3502450595, 2682848.967442589], + [5177583.031568208, 2682881.6565881586], + [5177318.585605927, 2682995.76007382], + [5177182.233397004, 2683064.275394697], + [5177285.837411848, 2685425.0624346863], + [5177280.885640692, 2685466.8397551337], + [5177308.229121828, 2685598.790951777], + [5177349.896934775, 2685603.972152912], + [5177392.253197627, 2685609.2381873885], + [5177382.2685538875, 2685693.471260747], + [5177471.323839464, 2685661.46274532], + [5177517.943788706, 2685624.875921013], + [5177564.643603007, 2685587.6079871114], + [5177653.6145397825, 2685556.288229435], + [5177695.965359012, 2685561.548712625], + [5177831.6466961885, 2685492.964959925], + [5177879.025524846, 2685455.773989029], + [5177930.591378577, 2685377.4153739414], + [5178019.648111538, 2685345.4113626136], + [5178056.288969238, 2685393.051301432], + [5178229.361322631, 2685371.4999349453], + [5178308.344495473, 2685424.4121139795], + [5178397.4043027265, 2685392.407188428], + [5178439.073591982, 2685397.5963767716], + [5178481.425566037, 2685402.8627099893], + [5178518.063639844, 2685450.4990827977], + [5178555.468985654, 2685497.5389028257], + [5178597.132730143, 2685502.714702101], + [5178691.139696997, 2685428.9482682003], + [5178732.801936733, 2685434.1386068156], + [5178811.79610054, 2685487.046623677], + [5178938.169239142, 2685502.764659847], + [5178979.839733552, 2685507.9443357233], + [5179110.559346742, 2685481.135172381], + [5179152.911710808, 2685486.3998135873], + [5179122.963697413, 2685739.075230086], + [5179164.63828782, 2685744.264188819], + [5179275.396443638, 2685885.9012484723], + [5179307.769198083, 2685975.3895303356], + [5179349.435308915, 2685980.5789105003], + [5179522.43273465, 2685959.718990437], + [5179695.500948057, 2685938.160429212], + [5179690.472498966, 2685980.6193816517], + [5179916.93000683, 2686222.1166942096], + [5180008.294423953, 2686217.680598176], + [5180096.33162498, 2686227.9539584527], + [5180208.972035055, 2686288.5281268153], + [5180292.3846969325, 2686333.2607960664], + [5180441.681764259, 2686394.184287228], + [5180501.984732566, 2686439.3723571133], + [5180526.863670486, 2686468.256608789], + [5180535.856657813, 2686503.825471566], + [5180531.987117889, 2686586.1729352465], + [5180513.045445209, 2686641.04461562], + [5180513.357537938, 2686678.017997647], + [5180524.582315797, 2686709.6023134375], + [5180539.266811695, 2686726.2018400384], + [5180722.683809913, 2686950.741504388], + [5180749.081743955, 2686965.21672253], + [5180775.972343994, 2686974.9425152685], + [5180800.6104336465, 2686981.452204648], + [5180838.488299027, 2686975.8808609876], + [5180961.693458323, 2686869.415063604], + [5181006.232216947, 2686851.071179546], + [5181032.460411133, 2686849.0697865034], + [5181058.433549645, 2686860.7359621637], + [5181074.394410853, 2686878.268101026], + [5181148.4207265, 2686972.9516844423], + [5181187.938084552, 2687000.413516569], + [5181232.019335506, 2687015.7165184403], + [5181289.78333629, 2687022.9941236847], + [5181358.133977183, 2686999.044348525], + [5181405.518924512, 2686961.8604849484], + [5181453.169595698, 2686937.0237485995], + [5181494.493773501, 2686930.5440851348], + [5181572.876571403, 2686982.6836242285], + [5181673.124469208, 2687086.912402196], + [5181705.413034906, 2687120.074800913], + [5181787.491440871, 2687174.414754483], + [5181847.3176380545, 2687187.783869652], + [5181888.985854274, 2687192.966467154], + [5182174.731069502, 2687166.573487698], + [5182264.4412320135, 2687159.0872379267], + [5182300.9542287495, 2687136.7172565437], + [5182370.720992947, 2687081.970262949], + [5182434.335356575, 2687019.0446712915], + [5182486.626198403, 2686949.917421572], + [5182516.291373229, 2686929.8491104636], + [5182570.2682924345, 2686902.311852442], + [5182609.955420846, 2686900.4965301203], + [5182689.3601824, 2686908.297983337], + [5182778.332280625, 2686876.9910122924], + [5182872.339124227, 2686803.2142784493], + [5182909.9579528365, 2686765.990043891], + [5182949.589760852, 2686724.450775314], + [5182977.422543635, 2686706.326820138], + [5183047.069616493, 2686692.0567538417], + [5183186.031073603, 2686671.3098672135], + [5183261.791221545, 2686666.9078840404], + [5183345.889583501, 2686689.7806423535], + [5183392.337707952, 2686719.1127143893], + [5183409.835367688, 2686741.002450137], + [5183427.592852051, 2686769.3878506958], + [5183452.807391459, 2686829.771794702], + [5183491.468946427, 2686965.741037567], + [5183518.920147908, 2687027.363091777], + [5183562.878423738, 2687057.456480542], + [5183854.271326836, 2687138.757950434], + [5183849.245860197, 2687181.2153423913], + [5183703.67106503, 2687333.340609357], + [5183656.282527762, 2687370.5277246255], + [5183651.338314626, 2687412.302423021], + [5183688.65708512, 2687460.0235259486], + [5183725.372757433, 2687506.986128278], + [5183814.341286304, 2687475.67066369], + [5183903.391936487, 2687443.6684710756], + [5183940.708640039, 2687491.391362115], + [5183957.453251311, 2687706.82105366], + [5183994.172831903, 2687753.7784265946], + [5184031.49213515, 2687801.5078315483], + [5184120.541934965, 2687769.4977720617], + [5184125.496558952, 2687727.7263874724], + [5184197.112379818, 2687480.2321469365], + [5184202.067297775, 2687438.458755861], + [5184244.418224836, 2687443.72289016], + [5184281.137886794, 2687490.6841898565], + [5184322.804944608, 2687495.878161517], + [5184396.838260737, 2687590.552028042], + [5184439.186072053, 2687595.8312481917], + [5184485.810411177, 2687559.246983618], + [5184490.834000432, 2687516.7909300923], + [5184495.79002318, 2687475.024458342], + [5184500.828184941, 2687432.5631309133], + [5184426.78902051, 2687337.8709782073], + [5184431.737651961, 2687296.102260241], + [5184515.759036488, 2687306.556612436], + [5184558.109920922, 2687311.829833759], + [5184647.07544124, 2687280.5093556633], + [5184735.446442681, 2687248.4323420394], + [5184861.812967092, 2687264.16563416], + [5184945.836828226, 2687274.6128275557], + [5185150.502013983, 2687343.179291498], + [5185225.885529819, 2687374.485800684], + [5185313.281816099, 2687470.623930619], + [5185401.439084113, 2687623.62769531], + [5185458.23616796, 2687751.4767155102], + [5185468.417324014, 2687894.885582405], + [5185471.901822776, 2688103.831784363], + [5185483.585563381, 2688145.6911916025], + [5185490.354554659, 2688163.716862271], + [5185520.276738438, 2688202.382902559], + [5185589.646838242, 2688264.0134129017], + [5185677.256333665, 2688335.5700354576], + [5185707.252249085, 2688394.3821126064], + [5185790.9373937305, 2688565.8010509703], + [5185830.342275847, 2688610.39133465], + [5186034.43098752, 2688695.1965666767], + [5186095.694704163, 2688716.78166162], + [5186135.589368297, 2688725.2665376216], + [5186635.764016413, 2688820.968877496], + [5186677.8156567635, 2688829.084384585], + [5186716.579609221, 2688861.2276762594], + [5186767.612214129, 2688915.673881149], + [5186824.030203663, 2688983.8284768555], + [5186869.591796898, 2689008.836873101], + [5186922.494580719, 2689017.046382138], + [5186961.722747937, 2689021.8361545606], + [5187004.1045434065, 2689013.539552615], + [5187121.121413551, 2688978.09779993], + [5187217.83457271, 2688964.9654991934], + [5187317.660231841, 2688968.138216631], + [5187529.32272395, 2688980.183482459], + [5187818.83044509, 2688960.6251330967], + [5187884.246412834, 2688969.999178395], + [5187954.479584325, 2689004.5331318323], + [5187980.787308414, 2689031.372655783], + [5188106.139597789, 2689149.2137534656], + [5188199.539878333, 2689213.099209277], + [5188404.441068005, 2689366.8938890537], + [5188680.978610876, 2689533.201263847], + [5188704.179313195, 2689544.4891514066], + [5188741.8789910255, 2689555.4265216067], + [5188770.741772033, 2689545.9963975707], + [5188812.572482297, 2689522.840004085], + [5188825.815409687, 2689494.32614268], + [5188837.64510609, 2689461.7934553092], + [5188857.801958861, 2689365.7120215856], + [5188885.2890440645, 2689188.0008344837], + [5188898.9462715695, 2689132.966089472], + [5188955.55829927, 2689012.1517442204], + [5189223.905399938, 2688748.6149894684], + [5189294.430292213, 2688700.1552950097], + [5189378.186896628, 2688680.4882658008], + [5189770.857701059, 2688601.5165276807], + [5190116.669271168, 2688592.0265565254], + [5190284.246824051, 2688579.9841124057], + [5190437.793469031, 2688547.0138505506], + [5190626.062696462, 2688482.0923384586], + [5190732.419838557, 2688440.281025153], + [5190771.683499781, 2688424.7613862325], + [5190807.2495015655, 2688380.787691599], + [5190823.250323319, 2688348.2873017723], + [5190884.886952094, 2688185.014500181], + [5190936.5425600195, 2688105.964278587], + [5190983.841885336, 2688069.4722422455], + [5191030.452098148, 2688045.5444187038], + [5191067.750934413, 2688036.8351443824], + [5191114.554698618, 2688042.6571100857], + [5191175.829965465, 2688049.835442431], + [5191225.7115683155, 2688068.3230191343], + [5191292.118888171, 2688095.415612742], + [5191353.903280504, 2688109.916042424], + [5191388.393386475, 2688108.8589670374], + [5191438.193926045, 2688100.4323726497], + [5191456.049810013, 2688089.685648829], + [5191472.1666316, 2688076.4558720854], + [5191501.501121533, 2688042.9215499805], + [5191531.954377836, 2687903.525033903], + [5191543.24213819, 2687831.9884973075], + [5191559.994775843, 2687795.3715122365], + [5191570.0374648655, 2687775.737299231], + [5191637.464873455, 2687717.0195261864], + [5191667.80754457, 2687684.881744934], + [5191737.836319524, 2687584.853155321], + [5191815.536989474, 2687450.2314055576], + [5191831.7813015375, 2687424.1807035683], + [5191857.217379263, 2687403.2853416353], + [5191918.124529945, 2687374.1550669074], + [5192090.427584387, 2687353.2220504307], + [5192172.892236797, 2687331.9931062046], + [5192179.470607851, 2687326.0249217683], + [5192188.394340593, 2687319.089996537], + [5192196.526478127, 2687301.1062827557], + [5192200.5100352345, 2687251.669869846], + [5192197.442200903, 2687202.3561904477], + [5192188.816319106, 2687171.7323066313], + [5192158.67177757, 2687084.107263164], + [5192067.007012357, 2686837.449813886], + [5192063.716107009, 2686806.0526388753], + [5192076.905664663, 2686753.910810715], + [5192112.947247792, 2686703.5216654963], + [5192139.8375692265, 2686675.010840965], + [5192167.351630895, 2686636.9885082575], + [5192168.547910684, 2686597.637450487], + [5192158.153547924, 2686545.527460463], + [5192165.8580034515, 2686490.6008279044], + [5192194.096173601, 2686428.324435846], + [5192263.891318822, 2686340.0469413847], + [5192304.158030558, 2686269.359379022], + [5192336.623288684, 2686217.6948982514], + [5192422.391634674, 2686139.5057952795], + [5192450.408416438, 2686117.322169456], + [5192467.855380874, 2686092.174585756], + [5192480.688324988, 2686065.7950858534], + [5192484.787897653, 2686043.7659436264], + [5192481.188602158, 2686005.329184474], + [5192465.810163495, 2685968.1111926553], + [5192436.804552823, 2685925.614558336], + [5192412.510523219, 2685886.668429924], + [5192408.994296582, 2685863.0436949213], + [5192413.930890933, 2685825.705976233], + [5192444.300561719, 2685745.804164931], + [5192499.967262631, 2685612.0398440263], + [5192553.06109939, 2685554.1998356623], + [5192649.397587624, 2685496.66012762], + [5192795.498046062, 2685390.3030019444], + [5192863.6479950305, 2685302.7338001723], + [5192932.322445269, 2685206.6542922156], + [5192944.266042928, 2685170.1257455135], + [5193041.0423626, 2685029.5737795937], + [5193146.420305112, 2684847.79686981], + [5193202.166509598, 2684793.196269968], + [5193246.965605222, 2684770.500268806], + [5193389.032093108, 2684727.6277608457], + [5193418.837543286, 2684697.5438102903], + [5193484.9015158545, 2684603.4025336523], + [5193508.936062395, 2684531.4016489615], + [5193524.334961509, 2684501.9312569685], + [5193554.435953902, 2684474.849017631], + [5193582.678144109, 2684464.7379016816], + [5193613.328313558, 2684457.660343], + [5193741.2438285565, 2684442.624157529], + [5193791.339874865, 2684445.088701663], + [5193844.717517695, 2684450.4111553216], + [5193911.897191908, 2684460.0513222176], + [5193937.551105971, 2684470.9012097693], + [5194081.812530469, 2684569.296287008], + [5194105.011166514, 2684579.5142598995], + [5194146.350578974, 2684591.3745016837], + [5194265.757205069, 2684595.5954520022], + [5194291.556550074, 2684597.120832849], + [5194367.314893557, 2684609.444392858], + [5194383.088879896, 2684614.042672788], + [5194432.2535186745, 2684632.2757194526], + [5194478.89046793, 2684652.2178757833], + [5194551.836151726, 2684689.570232182], + [5194558.411093762, 2684574.4725462613], + [5194587.705005268, 2684025.5620380747], + [5194578.670964987, 2683968.8651389056], + [5194571.102573355, 2683961.4649909684], + [5194494.136510197, 2683904.4577332754], + [5194368.890990106, 2683801.6325601097], + [5194212.794370007, 2683615.1086442936], + [5193977.5002218, 2683191.4719248195], + [5193733.854158349, 2682801.5089645474], + [5193732.692847461, 2682800.168656043], + [5193109.540734953, 2682329.60321981], + [5192323.230361263, 2682022.8689107886], + [5191986.893924956, 2681522.324038209], + [5191986.897164322, 2681162.8716518283], + [5191975.839306602, 2681017.507687391], + [5191958.239115976, 2680832.3782192133], + [5191923.917366329, 2680762.404656665], + [5191919.964521689, 2680732.3071525833], + [5191930.555415335, 2680623.560456027], + [5191932.962956632, 2680416.5038594874], + [5191916.014343902, 2679603.276935406], + [5191898.13078659, 2679459.9723405014], + [5191843.805398125, 2679250.1137246573], + [5191840.119564274, 2679171.3086910527], + [5189585.002919395, 2679546.269870426], + [5189552.63711743, 2679559.10057278], + [5189516.895494092, 2679583.5048209247], + [5189484.964246016, 2679632.942418838], + [5189304.4015177395, 2680011.8412450464], + [5189286.382966304, 2680032.8032850316], + [5189243.048603166, 2680056.647738988], + [5188222.2672099415, 2680410.8148023174], + [5187408.206230008, 2679426.629948398], + [5187368.913881783, 2679448.9062622692], + [5187352.483439499, 2679457.857893831], + [5187239.273049844, 2679462.4332297714], + [5187176.321042748, 2679446.5597052155], + [5187100.707828424, 2679445.526281911], + [5187037.578686487, 2679453.754817033], + [5187012.421728887, 2679463.3515940025], + [5186981.765410248, 2679489.2206799304], + [5186322.346557776, 2679248.419659632], + [5186113.341003152, 2679141.532873229], + [5186096.774951462, 2679132.137097376], + [5186038.787743562, 2679080.105353047], + [5185628.674599827, 2679305.772371234], + [5185291.485468937, 2678862.0742430254], + [5184934.617731592, 2678165.8283703644], + [5184655.095041114, 2677582.3087808215], + [5184663.876694174, 2677332.8067899644], + [5184510.391288552, 2676433.964464361], + [5184437.788463584, 2676222.6360063558], + [5184366.575980518, 2675759.5921621793], + [5184410.568729573, 2675443.0047468957], + [5184202.241912221, 2674964.8828499047], + [5184109.296024443, 2674484.56704601], + [5184267.179889172, 2674349.0495436937], + [5184629.691851426, 2674065.869621571], + [5184718.3060845025, 2674205.636192848], + [5185195.961714253, 2673899.551531439], + [5185245.612834605, 2673974.7648345972], + [5185253.193951195, 2673968.4143027477], + [5185327.225742951, 2674082.7431543875], + [5185727.529452912, 2673833.137410795], + [5185542.577309739, 2673363.939128823], + [5185460.720944739, 2673192.734552219], + [5185373.338368088, 2672909.304177464], + [5185076.671118012, 2672283.216446705], + [5184971.101726631, 2672037.539810172], + [5184796.724239245, 2671806.7932255557], + [5184714.6291709645, 2671597.0078093717], + [5184864.554621992, 2671265.6124894605], + [5184890.139869768, 2671208.121759208], + [5184442.551701245, 2670328.6597963236], + [5184169.766850083, 2670150.1239426853], + [5184101.599631091, 2669570.966393591], + [5183995.605473877, 2669233.5295300502], + [5183627.320249436, 2669207.0764431576], + [5183278.515601233, 2669196.194593345], + [5182884.652668069, 2668657.830467401], + [5183127.604268306, 2668055.128614813], + [5182919.313105911, 2666973.939300986], + [5182817.038621697, 2666351.2473784974], + [5182794.172433269, 2666208.43336604], + [5182648.941654345, 2665301.419434664], + [5182566.893480235, 2664822.4627324096], + [5182501.750245641, 2664520.978078152], + [5182465.474054556, 2664233.235476882], + [5182709.988178911, 2663755.3098341455], + [5183430.862533449, 2662672.7757983734], + [5183704.695459213, 2662335.6201639846], + [5183931.725275555, 2661588.939633825], + [5184667.502915553, 2661789.4324510656], + [5185259.612090085, 2661768.539122956], + [5185607.161586744, 2661811.100946185], + [5186187.085260031, 2661048.370299315], + [5186477.402770179, 2660654.6947078863], + [5187647.428604437, 2659259.963792893], + [5187504.649653563, 2659221.7515131603], + [5187340.0635230355, 2659107.5417998387], + [5187316.653441747, 2659079.825597147], + [5187309.840371793, 2659044.300019597], + [5187312.087875381, 2658935.990257105], + [5187336.10407388, 2658388.823057581], + [5187366.151348902, 2658056.4909624094], + [5187349.178445386, 2657993.1898113727], + [5186857.370672927, 2657073.8736888384], + [5186825.638809517, 2656984.519216697], + [5186431.470349671, 2655996.157220603], + [5186337.85780533, 2655344.6432221374], + [5186110.687295683, 2655102.4300283333], + [5186073.972891977, 2655055.4317290443], + [5186098.7620707415, 2654845.285566029], + [5186381.037822541, 2654521.318280442], + [5186667.617879616, 2654230.9886191003], + [5186729.91389711, 2654168.00363179], + [5185868.380797961, 2653666.3591398834], + [5185809.700207799, 2653635.2846959755], + [5185792.172785882, 2653632.991883181], + [5185143.774231119, 2653923.653241865], + [5183861.47734646, 2653943.028852029], + [5183546.971747047, 2653976.2157957973], + [5183374.941066515, 2653990.9991813367], + [5183372.926582493, 2653991.0811058474], + [5183367.739129271, 2653991.4369939617], + [5182982.685934349, 2654021.2974396744], + [5182367.914855094, 2653909.243301166], + [5181232.059353942, 2654095.350036567], + [5180758.137580083, 2654267.10666382], + [5180664.163849452, 2654340.878805536], + [5180523.590685883, 2654451.2545761205], + [5180195.06912092, 2654709.166617262], + [5180086.231579923, 2654908.936713105], + [5179752.69752013, 2655209.3025139268], + [5179544.949448216, 2655524.598768708], + [5179327.181476741, 2655924.8143746243], + [5179237.762711132, 2656682.077532163], + [5179124.669135441, 2656923.6930228835], + [5178973.458811736, 2657118.1947414437], + [5178578.349474527, 2657581.8261916963], + [5178479.447851371, 2657697.3646315113], + [5177654.320887915, 2658192.337615705], + [5177220.9819468055, 2660059.4551417315], + [5177294.652231173, 2660879.378514597], + [5176138.307159264, 2661290.8223648746], + [5175839.532196125, 2661296.7707997425], + [5175504.0943168355, 2661255.1102790125], + [5175131.313534706, 2661165.724910192], + [5174664.469363197, 2661150.8014596063], + [5174570.577872736, 2661223.892611414], + [5174720.6110493075, 2661755.2555292435], + [5174811.526664434, 2662065.293577362], + [5174898.186941162, 2662417.1744046863], + [5174411.447834977, 2662570.6864571227], + [5174233.518618943, 2662633.3529891935], + [5173961.524432027, 2662770.468334306], + [5173700.158271766, 2662823.4491292504], + [5173428.166291449, 2662960.578782077], + [5173062.872755347, 2663171.5558445244], + [5172785.933795325, 2663350.4436666244], + [5172546.423353749, 2663576.3611344844], + [5172782.864803638, 2663734.257814583], + [5173336.281566741, 2664101.7464491087], + [5172697.847775765, 2665175.025929352], + [5172498.06092551, 2665064.76051246], + [5171994.563205289, 2665002.2135102632], + [5172025.817600525, 2665816.8688151585], + [5171998.566783984, 2666410.9752590414], + [5171756.430808214, 2666295.440202236], + [5171692.50257485, 2666399.6414783117], + [5171123.571017775, 2667327.0408879407], + [5170417.201935182, 2667538.0442908294] + ] + ] + ] + }, + "units": { "yield": "t/ha", "water_need": "mm" } + }, + { + "type": "Feature", + "properties": { + "ID": 3328, + "NUTS_ID": "HU3328", + "NAME": "Szeghalmi j\u00e1r\u00e1s", + "ADMIN_LEVEL": "7", + "yield": { + "Wheat": { "average": 8.26, "best": 8.72, "worst": 7.34 }, + "Maize": { "average": 7.75, "best": 11.37, "worst": 0.0 }, + "Sunflower": { "average": 2.22, "best": 3.86, "worst": 0.0 }, + "Soybean": { "average": 1.53, "best": 3.26, "worst": 0.39 } + }, + "water_need": { + "Wheat": { "average": 144, "best": 104, "worst": 201 }, + "Maize": { "average": 278, "best": 234, "worst": 471 }, + "Sunflower": { "average": 296, "best": 271, "worst": 477 }, + "Soybean": { "average": 310, "best": 225, "worst": 498 } + }, + "links": { + "Wheat": { + "average": "/crop_model/regional_forecast?nuts_id=HU3328&crop=WheatGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3328&crop=WheatGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3328&crop=WheatGDD&scenario=worst" + }, + "Maize": { + "average": "/crop_model/regional_forecast?nuts_id=HU3328&crop=MaizeGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3328&crop=MaizeGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3328&crop=MaizeGDD&scenario=worst" + }, + "Sunflower": { + "average": "/crop_model/regional_forecast?nuts_id=HU3328&crop=SunflowerGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3328&crop=SunflowerGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3328&crop=SunflowerGDD&scenario=worst" + }, + "Soybean": { + "average": "/crop_model/regional_forecast?nuts_id=HU3328&crop=Soybean&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3328&crop=Soybean&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3328&crop=Soybean&scenario=worst" + } + } + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5147794.85384747, 2736107.3239934426], + [5147795.401585946, 2736358.664316142], + [5148088.30592582, 2737936.7791895806], + [5148142.035773431, 2738523.191149491], + [5148144.127528141, 2738582.501778247], + [5148558.128952266, 2739745.230516145], + [5148799.084193468, 2740544.414386034], + [5149453.669650692, 2741208.453283785], + [5150299.943718253, 2740816.6914865584], + [5150533.794130514, 2741555.915415788], + [5151352.803612011, 2741630.8853813843], + [5151851.133874968, 2741736.0190053205], + [5152324.281964557, 2740983.1964736492], + [5152734.296179401, 2741119.7233749945], + [5152979.125377832, 2740851.368577446], + [5155661.230867872, 2737641.62616585], + [5156665.209281758, 2738150.9528869158], + [5156045.146483918, 2739781.301964662], + [5156610.894498267, 2739681.4841636885], + [5159520.232624901, 2737780.2308507143], + [5159886.336800091, 2737570.077942339], + [5160487.277850638, 2737175.107031171], + [5161114.857825338, 2736911.3290050384], + [5161428.637745966, 2736779.449605156], + [5162838.183264245, 2736741.6653633276], + [5162833.1192254, 2736784.117140721], + [5164751.777721132, 2736766.687238235], + [5167188.81021657, 2736685.9925848613], + [5167236.137526197, 2736649.4942469127], + [5167917.565024338, 2736648.9190264153], + [5167964.290518556, 2736611.645387885], + [5168005.960068615, 2736616.8472962403], + [5168293.1039737435, 2736353.771798803], + [5168251.437258854, 2736348.5823193644], + [5168486.185591003, 2736164.4588961625], + [5168580.245492212, 2736090.690909146], + [5168621.90735189, 2736095.881719073], + [5169660.703265727, 2735243.291239774], + [5169702.366534047, 2735248.475322225], + [5169744.710377649, 2735253.757084009], + [5169986.009908871, 2735369.314729282], + [5170102.313165547, 2735469.2908005333], + [5170217.941279072, 2735569.199848975], + [5170417.658109083, 2735678.8718089657], + [5170595.635486104, 2735616.265929684], + [5171541.936600139, 2735178.8905810444], + [5172040.30899677, 2735283.4110673377], + [5172590.996614915, 2735309.653899729], + [5172927.023002121, 2735351.5442077206], + [5172922.037285855, 2735393.317380854], + [5174500.999431918, 2735718.733169041], + [5174964.930839473, 2736117.8437741753], + [5174764.161699608, 2733872.170977698], + [5174904.852116497, 2733761.8302523256], + [5174988.858245951, 2733772.29485655], + [5175035.586423699, 2733735.0396545404], + [5175208.576817799, 2733714.20569434], + [5175364.375845406, 2733477.1552935196], + [5175416.764452531, 2733398.2067694175], + [5175394.418499075, 2733225.1378757977], + [5175424.54960393, 2732972.4215463246], + [5175481.913927111, 2732851.690674257], + [5175527.0685297875, 2732472.9599119727], + [5175448.115680585, 2732420.030247745], + [5175499.82179692, 2732340.981409194], + [5175824.227478429, 2732125.656826271], + [5175922.576636106, 2732010.0364855053], + [5176120.713078056, 2731778.269113679], + [5175962.743001395, 2731673.091745352], + [5175847.112708108, 2731573.1856267983], + [5175388.898661638, 2731131.712675727], + [5175115.292049159, 2730926.6396475164], + [5175041.325507255, 2730831.9313185406], + [5175145.3237752095, 2730674.6142174653], + [5175316.1362322485, 2730311.55932894], + [5175455.310777352, 2729859.0709843254], + [5175522.033452475, 2729654.0084573776], + [5175542.10717754, 2729485.5434897416], + [5175567.160927712, 2729275.295683662], + [5175602.246677185, 2728980.809875563], + [5175164.086898185, 2728370.877308546], + [5171932.070111452, 2725833.07462714], + [5171310.828615449, 2725328.258946338], + [5171273.452621213, 2725281.2209349116], + [5171278.429235348, 2725239.4418037497], + [5171298.493956982, 2725070.968926035], + [5171427.599493428, 2724702.7322528493], + [5171583.372613412, 2724465.675156692], + [5171687.44971474, 2724307.6833103197], + [5171828.812755444, 2724197.4183179555], + [5172056.250806788, 2723713.5356857693], + [5172210.381838278, 2723135.0573748862], + [5172277.849631583, 2722929.4065113794], + [5172228.896786184, 2722624.46172835], + [5171990.223442012, 2722125.6224943986], + [5171966.380322213, 2721609.75328518], + [5171964.05836352, 2721268.231995466], + [5172312.861718497, 2720841.86901222], + [5172464.251063058, 2720647.378136165], + [5172887.036604719, 2720315.7088114503], + [5173225.817473908, 2719973.585359544], + [5173307.575710638, 2719641.84312126], + [5173391.589330449, 2719652.3106800923], + [5173428.888273749, 2719700.0407381407], + [5173539.565153329, 2719841.6998205376], + [5173618.607480235, 2719893.9432318127], + [5173650.241950618, 2719983.3665047092], + [5173687.543046996, 2720031.0974602145], + [5173729.200964922, 2720036.294794758], + [5173813.216578981, 2720046.7633017288], + [5174037.984987502, 2719946.1876367494], + [5174168.628944285, 2719920.0680643963], + [5174210.98082441, 2719925.340855825], + [5174561.343303987, 2719841.1133088446], + [5174828.449589356, 2719745.817863976], + [5174964.156924949, 2719677.2416425925], + [5175226.126537098, 2719625.087389908], + [5175394.15634906, 2719646.0197419133], + [5176754.765845668, 2719302.633044778], + [5179032.100540026, 2718775.344748694], + [5180440.012111761, 2718395.4877173593], + [5180791.042972103, 2718311.3562346976], + [5181806.242652548, 2718010.458376389], + [5181811.210887699, 2717968.6819924554], + [5181819.080661639, 2717915.2172095207], + [5181861.993529369, 2717927.5387470094], + [5181900.194322573, 2717937.378544082], + [5182854.610913678, 2717984.289496614], + [5183102.060931177, 2718006.187744463], + [5183494.154469255, 2718030.9798033168], + [5183677.397580541, 2718030.3104523947], + [5184437.766955339, 2718082.700928561], + [5184516.790540332, 2718134.955470908], + [5184642.472190143, 2718150.6228946187], + [5184778.844760231, 2718082.1329334234], + [5184867.083954664, 2718079.581094309], + [5185417.894445506, 2718076.315952282], + [5185492.786655881, 2718079.172881304], + [5185627.575378316, 2718102.4478211994], + [5185785.569481406, 2718207.637644899], + [5185869.575238594, 2718218.11471094], + [5186045.729280343, 2718208.1651241034], + [5186109.62723658, 2718217.2983237123], + [5186168.225097433, 2718212.943490793], + [5186252.230786773, 2718223.426311888], + [5186385.162148724, 2718257.984453462], + [5186593.316507149, 2718222.8581284126], + [5186733.977906551, 2718112.5122717414], + [5186859.645938522, 2718128.185900415], + [5187270.735941838, 2717539.314151038], + [5188247.44844912, 2717916.87871868], + [5188354.914704893, 2717374.946173672], + [5188743.692910902, 2716612.329287851], + [5187840.359094471, 2716328.7290431377], + [5187959.398922368, 2716044.698659891], + [5187917.059379779, 2716039.419335803], + [5188041.067620775, 2715713.628894872], + [5187590.07417124, 2715571.918587206], + [5187568.823304797, 2714672.6992486557], + [5186761.287417092, 2713589.2765294467], + [5186550.925100869, 2713563.0586662902], + [5186456.89948077, 2713636.827469114], + [5186289.56891573, 2713615.96355711], + [5186195.540979837, 2713689.7342513776], + [5186111.53109065, 2713679.258741803], + [5186007.486254458, 2713837.2685948582], + [5185935.765457337, 2714084.7839975813], + [5185920.776779018, 2714210.7904824074], + [5185873.463895745, 2714247.2882519895], + [5185831.805071662, 2714242.098773477], + [5185826.747244696, 2714284.562307684], + [5185784.405616406, 2714279.273922974], + [5185564.70906915, 2714337.375082732], + [5185523.037392539, 2714332.185768193], + [5185429.016145537, 2714405.9547195937], + [5185386.667649618, 2714400.6749945395], + [5185381.701281181, 2714442.4535451373], + [5185340.032382297, 2714437.2520535765], + [5185151.972123227, 2714584.7948759464], + [5185041.3700888865, 2714442.4264071807], + [5184957.366437525, 2714431.953059474], + [5184893.320097033, 2714253.6981644267], + [5184819.332993071, 2714158.9848140725], + [5184844.329641635, 2713948.7420439934], + [5184765.3753648745, 2713895.8075616807], + [5184775.398154109, 2713811.5749249724], + [5184733.731463353, 2713806.379255713], + [5184613.031308275, 2713748.9434664324], + [5184618.07987215, 2713706.476646387], + [5184580.6987385955, 2713659.4288389334], + [5184628.011939835, 2713622.9252754203], + [5184595.6919495575, 2713533.4109175964], + [5184516.728464012, 2713480.484443894], + [5184480.037711005, 2713433.5158508457], + [5184396.026151916, 2713423.0528126173], + [5184349.394771227, 2713459.623769411], + [5184265.3835947225, 2713449.1626712643], + [5184260.338819211, 2713491.6244097888], + [5184217.992401423, 2713486.3414609423], + [5182508.60486635, 2712461.5714673316], + [5182272.241229152, 2712304.2388188527], + [5182018.607840839, 2711930.704108474], + [5179383.558947223, 2709836.3920283807], + [5178943.303701169, 2709498.118286426], + [5178905.919321543, 2709451.071704846], + [5178910.96608991, 2709408.611261087], + [5178993.285689607, 2709077.642432599], + [5179003.2970427545, 2708993.414779658], + [5178980.974221816, 2708819.664682401], + [5178853.585597138, 2708462.5699253357], + [5178565.882747805, 2707658.121438504], + [5178523.541201786, 2707652.8429478146], + [5178528.581644302, 2707610.3835648075], + [5178491.876287491, 2707563.428429259], + [5178501.88936304, 2707479.1957080453], + [5178484.521770533, 2707263.684905244], + [5178494.533226021, 2707179.454782909], + [5178499.579810276, 2707136.9931370337], + [5178426.176941816, 2707043.0589691387], + [5178309.823271477, 2706943.0991185326], + [5178180.113483397, 2706243.81363417], + [5178168.476112324, 2705985.9312252738], + [5178753.022025314, 2702856.4311841982], + [5178802.962105259, 2702435.9564074436], + [5178847.932365698, 2702057.2560494], + [5178857.936863195, 2701973.022051595], + [5178447.852859425, 2701836.4896619883], + [5177922.782096049, 2701600.166440588], + [5177865.470152768, 2701720.901971552], + [5176839.397392238, 2702831.5147238155], + [5175411.498454937, 2703379.9628504217], + [5175460.544479806, 2703684.876191568], + [5175242.565704474, 2704084.4324174514], + [5175254.901604352, 2704342.393768597], + [5175140.949224207, 2704583.9450626504], + [5174916.19431292, 2704684.5312484656], + [5174743.199958133, 2704705.3809368513], + [5173987.726743388, 2704611.335442972], + [5173688.967569608, 2704617.238270951], + [5173456.923179159, 2704417.4052533833], + [5173400.285659146, 2704538.217125717], + [5173360.263558754, 2704875.1421782398], + [5173167.256900264, 2705064.456430609], + [5173095.571132817, 2705311.9575658552], + [5173092.253672006, 2705695.8434514794], + [5173093.968106375, 2706037.2636229554], + [5173185.3536797995, 2706347.463539712], + [5172609.557375956, 2706532.2159702983], + [5172056.178923017, 2706890.022087066], + [5171626.079811183, 2706921.960122378], + [5171394.723609721, 2706722.2131770123], + [5171324.754601233, 2707311.1406784123], + [5171269.742653171, 2707774.059822364], + [5171221.404740445, 2708536.629590238], + [5171196.419190811, 2708746.867928472], + [5171213.705829138, 2708963.0590426465], + [5170110.525457326, 2708569.3099566144], + [5170244.511004191, 2708159.3051548577], + [5168936.571975765, 2707697.710493413], + [5168668.603706187, 2708517.7238113624], + [5168216.854935399, 2708376.027264812], + [5167740.038231645, 2708445.2435660507], + [5167869.053342242, 2708077.0172229777], + [5167988.069712282, 2707793.002998761], + [5167583.023445459, 2707614.043202939], + [5167754.393765973, 2707251.0925163245], + [5167765.091090919, 2707234.8444892284], + [5168118.092098588, 2706698.7181656417], + [5168123.052326471, 2706656.9460964845], + [5168164.725536539, 2706662.132672524], + [5168202.109352569, 2706709.179826957], + [5168253.784955958, 2706630.1304289512], + [5168184.732432966, 2706493.6782913734], + [5168189.699727587, 2706451.905813665], + [5168395.128200794, 2706519.861814065], + [5168520.810620699, 2706535.5011005667], + [5168567.448951674, 2706498.9105165685], + [5168619.801477851, 2706419.9556169203], + [5168629.814926442, 2706335.7224592464], + [5168686.448087164, 2706214.899989734], + [5168837.195784034, 2706019.63509634], + [5168884.505435882, 2705983.12353204], + [5168889.554884823, 2705940.675198176], + [5168899.476321816, 2705857.1322626336], + [5168867.131915562, 2705767.630240974], + [5168830.508852339, 2705719.9831952597], + [5168709.7838438405, 2705662.5743492395], + [5168667.43761482, 2705657.3035983993], + [5168588.815080277, 2705686.903533895], + [5168564.842230594, 2705593.5424610567], + [5168563.380496765, 2705522.171854594], + [5168581.452726525, 2705510.4599270537], + [5168699.820848586, 2705527.75710436], + [5168714.868249849, 2705525.0984771494], + [5168724.588402528, 2705513.5747454665], + [5168744.343544278, 2705480.765132131], + [5168865.913558582, 2705153.6798674674], + [5167101.6809772365, 2704138.709627526], + [5167050.568250659, 2704082.0382031836], + [5167000.665232446, 2704082.5177555373], + [5166946.044472979, 2704123.481915158], + [5166929.276421335, 2704160.3417037455], + [5166914.314448938, 2704286.339660465], + [5166869.812865268, 2704407.9167637494], + [5166857.158415589, 2704511.7023454513], + [5166742.964162802, 2704649.2961164713], + [5166686.330695913, 2704770.1173719694], + [5166604.883407705, 2704856.0032168734], + [5166475.647367602, 2704917.848728165], + [5166405.759512841, 2705010.1285901284], + [5166399.287671265, 2705033.215029321], + [5166394.35829798, 2705074.0262561846], + [5166432.864925782, 2705140.6128298114], + [5166483.854647012, 2705174.3246062114], + [5166504.964877488, 2705217.301140327], + [5166507.942547533, 2705258.83361945], + [5166494.966466744, 2705301.5249543483], + [5166448.337217448, 2705338.1254143976], + [5166294.253911453, 2705453.6975456444], + [5166233.49299696, 2705467.7993471967], + [5166139.557431804, 2705428.258327169], + [5166097.19890007, 2705422.9847746426], + [5166008.901085462, 2705454.3975390494], + [5166003.858368372, 2705496.8529428863], + [5165894.860367339, 2705696.621856693], + [5165874.848462099, 2705865.0770566785], + [5165849.878494911, 2706075.3078116938], + [5165807.523713724, 2706070.042957003], + [5165718.544906905, 2706101.3639665716], + [5165541.17902, 2706164.761356296], + [5165493.778508549, 2706201.9480619794], + [5165488.8228651825, 2706243.727036557], + [5165526.201123783, 2706290.7583812405], + [5165605.184648006, 2706343.6717399973], + [5165688.523888429, 2706354.040249885], + [5165725.911380742, 2706401.0880212733], + [5165762.535944794, 2706448.7178031877], + [5165710.857465189, 2706527.76011887], + [5165621.877867991, 2706559.0847718227], + [5165443.832104423, 2706622.400456899], + [5165265.7761148205, 2706685.7250897363], + [5165177.481066132, 2706717.137196979], + [5165083.4514035415, 2706790.9043995687], + [5165041.102841388, 2706785.638307157], + [5164994.388195832, 2706822.9129066626], + [5164868.696722844, 2706807.267255962], + [5164784.672245826, 2706796.8197017503], + [5164700.655362106, 2706786.367683419], + [5164663.350539212, 2706738.6393111004], + [5164631.677967539, 2706649.238700608], + [5164599.34236835, 2706559.7300876253], + [5164567.681799975, 2706470.3228712995], + [5164424.608239742, 2706239.198797685], + [5164417.714119038, 2706012.6576083647], + [5164388.402689028, 2705931.32221917], + [5164333.901636805, 2705929.107189062], + [5164286.503525335, 2705966.28979686], + [5164160.6104410235, 2706040.226820598], + [5164105.919850536, 2706060.4642625013], + [5164020.160226986, 2706061.0248310394], + [5163852.116573283, 2706040.1133679226], + [5163763.126155943, 2706071.445648325], + [5163733.7863427615, 2706088.2048128224], + [5163726.336065644, 2706112.7201480777], + [5163724.10460106, 2706148.735183558], + [5163748.073879528, 2706198.123158646], + [5163822.092128202, 2706292.7962261955], + [5163841.816704347, 2706328.304048532], + [5163854.521270205, 2706381.609735786], + [5163872.495252668, 2706420.926951647], + [5163917.839985004, 2706560.43119553], + [5163950.194099703, 2706649.921672016], + [5164029.16607838, 2706702.8335594395], + [5164070.835049496, 2706708.016713986], + [5164159.90373818, 2706676.016102095], + [5164201.572901225, 2706681.2002194147], + [5164238.881539751, 2706728.9253143943], + [5164391.951149084, 2706875.826339731], + [5164428.6634511985, 2706922.7851567934], + [5164423.616424736, 2706965.234423754], + [5164413.612015842, 2707049.4689231534], + [5164366.9758865405, 2707086.0595485647], + [5164188.924908272, 2707149.377463907], + [5164094.894695454, 2707223.149393917], + [5164048.268703704, 2707259.7420395007], + [5164005.912008536, 2707254.468037537], + [5163969.206117982, 2707207.5156983566], + [5163931.899431314, 2707159.795907084], + [5163925.729365875, 2707061.4282893743], + [5163905.203830073, 2707028.605565727], + [5163864.836344733, 2706996.635435314], + [5163776.760858845, 2706952.501329117], + [5163663.146581496, 2706913.0286177937], + [5163579.119805623, 2706902.577781783], + [5163532.412658544, 2706939.8405838544], + [5163223.707178205, 2707029.3022626056], + [5163176.3876596335, 2707065.8107706737], + [5163150.951734264, 2707106.764779562], + [5163158.178084169, 2707164.011264023], + [5163271.901749477, 2707273.7495561694], + [5163430.092247192, 2707439.2588160583], + [5163524.67635556, 2707551.9487488833], + [5163615.504474624, 2707675.656706577], + [5163721.188308236, 2707859.7499357867], + [5163725.363656503, 2707905.374397182], + [5163711.178977208, 2707943.9694608026], + [5163664.5458103195, 2707980.564295966], + [5163491.460721819, 2708002.107583322], + [5163197.720201252, 2707965.5795208975], + [5163113.697155563, 2707955.1193131106], + [5163034.726218408, 2707902.213751549], + [5162998.02056804, 2707855.259689417], + [5162960.707331814, 2707807.5373462457], + [5162975.681347502, 2707681.53340778], + [5162944.025833162, 2707592.122849036], + [5162906.63115895, 2707545.084578299], + [5162832.617188172, 2707450.4142923583], + [5162753.64517783, 2707397.4974070536], + [5162688.525041702, 2707358.6244297624], + [5162627.949772296, 2707381.871313196], + [5162581.231284459, 2707419.141010399], + [5162571.22553194, 2707503.3638125667], + [5162551.296715196, 2707671.141800883], + [5162546.24814467, 2707713.589871703], + [5162541.2842139, 2707755.36005858], + [5162493.888656392, 2707792.552543176], + [5162437.694459635, 2707775.169420301], + [5162392.89387942, 2707721.3576308237], + [5162375.01077546, 2707670.6567843445], + [5162393.1828047205, 2707566.689036335], + [5162370.835674285, 2707392.9690687843], + [5162358.312960438, 2707360.9152029157], + [5162334.220313035, 2707345.334518103], + [5162282.981552948, 2707349.323449019], + [5162209.146625987, 2707393.1349119022], + [5162104.482815959, 2707487.6972769615], + [5162057.090640411, 2707524.8813781315], + [5161974.677423531, 2707594.343738382], + [5161898.083092831, 2707742.4306281027], + [5161859.785100412, 2707756.071637053], + [5161817.4349605385, 2707750.7937357295], + [5161776.945351363, 2707710.092499156], + [5161754.711057317, 2707662.4873609217], + [5161767.657020118, 2707597.8699249993], + [5161805.140173995, 2707544.4851546935], + [5161915.966220635, 2707424.567227466], + [5161934.649646152, 2707374.889582059], + [5161687.700360203, 2707051.58615817], + [5161656.035255056, 2706962.1728573977], + [5161302.255601114, 2707430.999991838], + [5160738.161346337, 2707872.9765810557], + [5160644.126242391, 2707946.7500437275], + [5159803.657253774, 2708567.6927079014], + [5159756.9406789355, 2708604.9628498033], + [5159611.320864031, 2708757.089658753], + [5159601.303342551, 2708841.318424524], + [5159576.243958541, 2709052.2313424805], + [5159458.941353348, 2709677.6335584978], + [5159453.896069521, 2709720.0914555886], + [5159407.266921433, 2709756.677208109], + [5159328.200015423, 2709704.460122433], + [5159222.078707146, 2709630.8260001554], + [5159175.21173368, 2709556.8821706595], + [5159138.512198054, 2709509.923731654], + [5159131.155640667, 2709210.2054511122], + [5159141.152513739, 2709125.986862401], + [5159188.682032862, 2708976.8982646163], + [5159226.449748831, 2708895.7635565195], + [5159283.356326365, 2708777.3897043993], + [5159285.978543981, 2708709.8057564697], + [5159262.587714115, 2708669.115881434], + [5159215.890826489, 2708644.734181304], + [5159165.468154901, 2708641.076516502], + [5159090.093647588, 2708684.7159717013], + [5158924.763061935, 2708800.2718411903], + [5158831.764164311, 2708898.9479977074], + [5158787.608131695, 2708930.9543124516], + [5158736.704448166, 2708947.826842802], + [5158717.925483543, 2708954.161035056], + [5158678.975893028, 2708956.3034749315], + [5158633.779219553, 2708946.86586051], + [5158438.170438236, 2708832.941409434], + [5158368.9426413225, 2708816.623475439], + [5158349.102767133, 2708815.394864956], + [5158327.485611414, 2708854.3454731107], + [5158346.670875476, 2708928.3900828618], + [5158423.020894088, 2709079.059393391], + [5158459.6505984645, 2709126.700251694], + [5158454.685629183, 2709168.468715826], + [5158449.642260542, 2709210.92206161], + [5158407.9768582145, 2709205.7362241964], + [5158295.214686755, 2709221.539402199], + [5158205.789125318, 2709220.0738563775], + [5158138.981435811, 2709208.1173930573], + [5157957.296131509, 2709128.489757524], + [5157825.538305425, 2709090.23407714], + [5157494.404791891, 2709006.6724212295], + [5157266.854774621, 2708997.1365406783], + [5157158.991241796, 2708964.9540353185], + [5157121.6921133725, 2708917.2441059225], + [5157169.006693839, 2708880.740509482], + [5157131.695381526, 2708833.0144051034], + [5157136.657409336, 2708791.245095225], + [5157099.952638579, 2708744.2860606844], + [5157052.636684074, 2708780.7979028705], + [5157010.962372493, 2708775.614858913], + [5156963.641469952, 2708812.1193479844], + [5156901.960206199, 2708975.39460048], + [5156855.249856198, 2709012.6590179377], + [5156807.931606823, 2709049.1629082784], + [5156761.291899108, 2709085.7547673658], + [5156667.259006432, 2709159.5292132725], + [5156624.908486466, 2709154.267777012], + [5156588.196211722, 2709107.314084566], + [5156593.239530162, 2709064.8626897903], + [5156618.22355046, 2708854.643318656], + [5156643.199874833, 2708644.4223466017], + [5156663.224599792, 2708475.966660153], + [5156714.903429266, 2708396.9192927484], + [5156762.217534732, 2708360.415726359], + [5156799.954873797, 2708324.5115841944], + [5156986.905111489, 2708260.5014490783], + [5157033.622193734, 2708223.2256614016], + [5157087.8650301425, 2708184.3046479314], + [5157134.540473007, 2708091.881762094], + [5157150.263810866, 2708014.0407284102], + [5157151.634042321, 2707974.5082189483], + [5157145.52978564, 2707933.2053248608], + [5157115.925547328, 2707892.2759389556], + [5157085.792478861, 2707870.460282126], + [5157049.601254736, 2707854.5270544877], + [5157011.571275696, 2707842.907742837], + [5156976.118648702, 2707840.8059497857], + [5156928.614265091, 2707861.272648047], + [5156837.339674277, 2707958.563904273], + [5156759.379587453, 2708003.6834409405], + [5156660.163082788, 2708072.323295453], + [5156553.192686584, 2708213.668602846], + [5156463.511280882, 2708365.670005573], + [5156401.1394970175, 2708528.8554697414], + [5156349.460121471, 2708607.8953064936], + [5156302.065661589, 2708645.0842649858], + [5156260.398093774, 2708639.9011200694], + [5156223.769766382, 2708592.2704614885], + [5156238.742005711, 2708466.2696678815], + [5156243.789025961, 2708423.8149131886], + [5156295.466937718, 2708344.778488643], + [5156441.0942013655, 2708192.6324019544], + [5156446.134726654, 2708150.1814003754], + [5156479.272549847, 2708072.944613075], + [5156508.507393839, 2707986.999050243], + [5156513.773102627, 2707834.691781841], + [5156493.436092173, 2707502.0561433756], + [5156488.543679798, 2707466.821325467], + [5156470.269389565, 2707440.1124958037], + [5156451.532298834, 2707435.143735977], + [5156423.900485967, 2707441.071668225], + [5156391.010440314, 2707463.7694454705], + [5156347.325576795, 2707513.2701908816], + [5156314.811530322, 2707561.0009346544], + [5156244.704109326, 2707698.488721774], + [5156165.467873404, 2707818.7740932163], + [5156160.934592077, 2707841.4414654374], + [5156156.329127697, 2707880.750358294], + [5156241.381421662, 2708082.3360822266], + [5156268.761736589, 2708213.5951631116], + [5156216.403466432, 2708292.5593281705], + [5156107.394813276, 2708492.334681911], + [5156060.687118796, 2708529.6083051213], + [5156055.720424415, 2708571.370271616], + [5156040.744128725, 2708697.374431803], + [5156062.402516265, 2708871.0045485618], + [5156057.356442572, 2708913.4561054762], + [5156010.723152374, 2708950.0407775296], + [5155822.658382152, 2709097.605630946], + [5155649.644975111, 2709118.4795205137], + [5155607.975023896, 2709113.2932930985], + [5155570.582970167, 2709066.2672725255], + [5155517.2701851, 2708803.2260354795], + [5155527.277248948, 2708718.99990431], + [5155583.9162627915, 2708598.1822670223], + [5155593.930711463, 2708513.954250697], + [5155640.561883977, 2708477.3769566948], + [5155729.628434, 2708445.3618036085], + [5155876.026647811, 2708292.6210194286], + [5155922.663190979, 2708256.030613375], + [5155932.673241995, 2708171.8101033363], + [5155937.63197551, 2708130.044410109], + [5155942.676538273, 2708087.587402288], + [5155873.622196409, 2707951.1495508086], + [5155799.600732959, 2707856.470124366], + [5155757.934230345, 2707851.2920239144], + [5155673.910446963, 2707840.840225149], + [5155632.229332464, 2707835.6677961745], + [5155584.915024819, 2707872.168822102], + [5155538.20909054, 2707909.437220369], + [5155475.8359570475, 2708072.63047459], + [5155424.161528493, 2708151.6753129223], + [5155342.268775218, 2708229.5279199122], + [5155282.809739172, 2708261.952927229], + [5155096.268948056, 2708344.4899409963], + [5155026.367716064, 2708381.8670304953], + [5154945.148484375, 2708428.922068859], + [5154917.879166661, 2708425.096623364], + [5154885.047423942, 2708417.5961365686], + [5154834.503124395, 2708379.0448162537], + [5154657.197339341, 2708233.0493144626], + [5154636.28115658, 2708186.483722599], + [5154640.7607515175, 2708140.1147998846], + [5154735.341613791, 2707852.0234271293], + [5154769.150598489, 2707807.6172329984], + [5154797.066986986, 2707770.941339617], + [5154923.326443452, 2707705.144790689], + [5155148.104690135, 2707604.5436924947], + [5155153.0651094075, 2707562.7686109054], + [5155200.463125547, 2707525.5778844883], + [5155205.422881114, 2707483.8089961326], + [5155168.0282127755, 2707436.7775545116], + [5155005.712741366, 2707373.510068425], + [5154674.568771667, 2707289.963043105], + [5154553.915372618, 2707231.885021604], + [5154469.890273035, 2707221.44601278], + [5154432.49692262, 2707174.4061744637], + [5154364.207682921, 2707037.364242981], + [5154122.056544878, 2706922.4992794716], + [5153838.313055631, 2706801.755688679], + [5153711.926340073, 2706786.0497125005], + [5153623.622141445, 2706817.456374055], + [5153492.198379017, 2706844.2048730664], + [5153440.600176225, 2706922.564194822], + [5153341.533178104, 2707038.794549214], + [5152248.973092928, 2707628.428299595], + [5151987.568524871, 2707681.403178925], + [5152362.024016083, 2708112.206766106], + [5152186.369102592, 2708517.012613286], + [5153406.070803488, 2710077.8027217034], + [5153709.8253551815, 2710030.098647417], + [5155247.223242377, 2710267.9495649515], + [5155237.673049174, 2710299.423725839], + [5155253.081740896, 2710386.1300112708], + [5155260.930807458, 2710463.246158176], + [5155293.523520711, 2710567.0926780514], + [5155300.23092263, 2710582.920891735], + [5155345.703297142, 2710612.274199239], + [5155370.122868781, 2710630.2864977177], + [5155384.539593514, 2710658.4854596118], + [5155389.741391439, 2710756.330431337], + [5155397.6595442565, 2710772.6157225324], + [5155408.733151469, 2710780.1376536186], + [5155429.609372826, 2710785.6102741174], + [5155538.685435517, 2710769.6013724], + [5155559.778011738, 2710769.457623642], + [5155582.795874579, 2710775.0171977794], + [5155601.476039709, 2710786.907478221], + [5155611.984624293, 2710797.4836996505], + [5155613.779404688, 2710811.1274164375], + [5155601.261653654, 2710831.041739605], + [5155582.219789265, 2710844.2050485443], + [5155491.451425331, 2710880.6754865665], + [5155468.751253074, 2710894.6496710395], + [5155457.42087632, 2710904.9471285823], + [5155448.501449196, 2710918.6338195093], + [5155447.838864855, 2710938.0202134824], + [5155456.434208163, 2710951.2338317577], + [5155480.599913949, 2710967.594138736], + [5155507.992884532, 2710980.485791358], + [5155560.705040228, 2710999.4406109173], + [5155569.243715989, 2711008.976399161], + [5155572.453565982, 2711022.955833208], + [5155557.078095879, 2711089.247441295], + [5155558.792695099, 2711106.747952047], + [5155565.308497526, 2711125.519638159], + [5155584.715836254, 2711158.2038043174], + [5155592.512165885, 2711180.5883922717], + [5155589.334017133, 2711198.8867356963], + [5155575.158002367, 2711213.357450627], + [5155514.587617628, 2711212.9996342016], + [5155489.870991114, 2711217.8419652493], + [5155480.984093561, 2711226.421810084], + [5155477.148132168, 2711238.896684873], + [5155460.987625386, 2711303.7439099876], + [5155446.752909236, 2711322.4543735827], + [5155422.154087942, 2711342.805353541], + [5155354.398907208, 2711375.906027381], + [5155342.150806007, 2711385.775414453], + [5155339.8890442755, 2711394.995877044], + [5155340.406180485, 2711406.5362140248], + [5155350.130481527, 2711424.552773641], + [5155367.395079108, 2711444.471444723], + [5155423.704954504, 2711471.7160528135], + [5155556.103571115, 2711582.849881964], + [5155639.3583671525, 2711621.6522796056], + [5155672.969889031, 2711656.2016285616], + [5155766.156421943, 2711723.8543944824], + [5155888.461452783, 2711833.482254804], + [5155924.578007102, 2711879.3534635655], + [5155992.958126585, 2712025.174173029], + [5155999.081048351, 2712243.35922226], + [5155992.014206028, 2712253.437136463], + [5155973.4909099415, 2712268.569307968], + [5155939.613819851, 2712288.8816910847], + [5155898.854033276, 2712327.7543896604], + [5155892.190360426, 2712338.29263833], + [5155889.102411996, 2712364.0835165903], + [5155861.77557159, 2712425.4790124865], + [5155855.283211305, 2712470.550808933], + [5155864.337018391, 2712514.174215539], + [5155856.997051283, 2712617.6165778195], + [5155837.868809197, 2712707.0426823352], + [5155838.916392481, 2712737.127508878], + [5155857.383856894, 2712768.796757767], + [5155871.785893754, 2712802.807727824], + [5155876.396889266, 2712859.457686335], + [5155881.07267368, 2712904.4702090034], + [5155892.3660979355, 2712956.75667105], + [5155890.110361224, 2713080.7510786047], + [5155873.390368939, 2713226.2867969275], + [5155880.283632042, 2713359.0808427534], + [5155886.613033351, 2713447.1631825967], + [5155874.649661097, 2713585.5503399717], + [5155907.273573587, 2713622.6698290687], + [5155922.995876658, 2713694.438044961], + [5155924.288322277, 2713787.7521251217], + [5155907.913290921, 2713842.556090622], + [5155857.03550835, 2713959.330257836], + [5155814.271568761, 2714050.651685593], + [5155741.0589536335, 2714162.9828528864], + [5155674.276985055, 2714287.996311393], + [5155644.441400589, 2714326.4099242073], + [5155592.634247503, 2714426.0073799775], + [5155568.449389198, 2714480.4407729516], + [5155560.298323801, 2714529.536196327], + [5155507.111570107, 2714710.053847669], + [5155489.482257949, 2714802.71968394], + [5155464.387337672, 2714828.005736788], + [5155426.197730559, 2714940.2175074806], + [5155381.341248372, 2715043.2729577976], + [5155369.539168991, 2715061.0316612376], + [5155365.855814063, 2715071.156824502], + [5155375.732048565, 2715165.610921806], + [5155396.231186198, 2715192.217121694], + [5155971.631430061, 2715671.5337713244], + [5156158.313382662, 2715825.244151941], + [5156255.283126216, 2715904.651836619], + [5157213.877989901, 2716742.076679], + [5157042.465531976, 2717105.0352572966], + [5156667.065469153, 2717399.5375731513], + [5156315.909445638, 2717484.4182513244], + [5155898.163808025, 2717773.64901243], + [5155972.163055523, 2717868.3305077692], + [5155962.136418404, 2717952.560738919], + [5155722.9234993365, 2719246.599148483], + [5155173.377099799, 2720288.0091535305], + [5155002.625124236, 2720651.0592190144], + [5155123.263196502, 2720709.153124066], + [5154974.215097743, 2721245.14729527], + [5155450.9709682055, 2721176.5999278734], + [5155979.434931369, 2721028.9912307016], + [5156273.161661293, 2721065.5414854665], + [5156536.896202841, 2721354.087699686], + [5156653.242668015, 2721454.0279608443], + [5156983.583553225, 2721538.2172728158], + [5157561.001533447, 2721695.5355427926], + [5157761.366611562, 2721805.9381519225], + [5158030.071223017, 2722052.7149080653], + [5158094.117300689, 2722230.94366734], + [5158125.768210968, 2722320.3520564446], + [5158084.092337949, 2722315.1754816216], + [5158110.677102673, 2722447.037296049], + [5158132.384008635, 2722619.9945635214], + [5157144.409258726, 2723052.313360879], + [5157050.369783155, 2723126.0841389303], + [5156486.85799212, 2723568.134538767], + [5157571.582092753, 2724471.705836634], + [5157948.553308584, 2726312.2522067996], + [5158028.005689252, 2727431.9649002855], + [5157239.69530691, 2727974.5901084878], + [5157056.652707291, 2728079.6774329925], + [5156962.599567542, 2728153.4527472705], + [5156764.47357915, 2728385.2242277274], + [5156656.089497507, 2728585.0867566634], + [5156568.634391001, 2728958.506028292], + [5156476.876578165, 2729373.7806935674], + [5156308.843177458, 2729352.870239419], + [5156219.761886997, 2729384.869123605], + [5155834.287653179, 2729763.5904945624], + [5155687.857479418, 2729916.3253728794], + [5155598.860089013, 2729947.6451793616], + [5155260.0256683305, 2730289.7792997425], + [5155062.56979924, 2730521.64240084], + [5155005.20894916, 2730642.3672874235], + [5152344.44014506, 2730097.9184089075], + [5152243.795213948, 2729872.051846277], + [5152189.874788051, 2729608.911895819], + [5151415.857674072, 2730025.476357407], + [5151864.901598088, 2730550.4117780486], + [5152143.52602121, 2730713.6532862782], + [5152941.028265968, 2731880.3105698396], + [5152033.961558071, 2733773.735678991], + [5151811.4370441465, 2734215.8263733434], + [5150967.193401492, 2735221.2779870937], + [5150769.122876959, 2735452.372633536], + [5150633.400017109, 2735520.962249833], + [5150677.244317644, 2735868.335787789], + [5150624.854789583, 2735947.286738425], + [5150568.168255809, 2736068.1036026226], + [5150531.476237259, 2736021.1444469173], + [5150479.166566332, 2736099.418852591], + [5150395.151196505, 2736088.9582846723], + [5150269.471005601, 2736073.321181733], + [5150227.118047439, 2736068.0544245136], + [5150190.431271583, 2736021.0922224186], + [5150205.450623114, 2735895.0956532876], + [5150183.86528568, 2735721.4511895413], + [5149866.298039569, 2735169.766136759], + [5149671.011510552, 2735016.9077664283], + [5149461.315756185, 2734990.8072366244], + [5149283.916909288, 2735054.212340514], + [5149199.901579572, 2735043.7591560744], + [5149041.914595686, 2734938.629019664], + [5148999.5619029, 2734933.359586504], + [5148911.164573445, 2734965.4433905343], + [5148586.720361091, 2735180.820367291], + [5148539.99843231, 2735218.0859603235], + [5148535.013749857, 2735259.866278788], + [5148529.953406863, 2735302.31500887], + [5148561.581899123, 2735391.728502616], + [5148640.612328218, 2735443.959107407], + [5148677.98402896, 2735490.9923118483], + [5148709.616396465, 2735580.3987147263], + [5148684.4679884855, 2735791.3199006496], + [5148679.497204175, 2735833.0848368127], + [5148580.453200151, 2735948.6420506695], + [5148575.390996805, 2735991.0926439045], + [5148533.728573509, 2735985.9076916277], + [5148486.392901319, 2736022.4089978286], + [5148046.906567028, 2736138.682190718], + [5148005.245205909, 2736133.5011418746], + [5147921.221628151, 2736123.0422796994], + [5147794.85384747, 2736107.3239934426] + ] + ] + ] + }, + "units": { "yield": "t/ha", "water_need": "mm" } + }, + { + "type": "Feature", + "properties": { + "ID": 3329, + "NUTS_ID": "HU3329", + "NAME": "Sarkadi j\u00e1r\u00e1s", + "ADMIN_LEVEL": "7", + "yield": { + "Wheat": { "average": 8.67, "best": 9.02, "worst": 7.82 }, + "Maize": { "average": 5.04, "best": 9.59, "worst": 0.0 }, + "Sunflower": { "average": 1.19, "best": 3.25, "worst": 0.0 }, + "Soybean": { "average": 1.35, "best": 2.99, "worst": 0.0 } + }, + "water_need": { + "Wheat": { "average": 110, "best": 73, "worst": 170 }, + "Maize": { "average": 316, "best": 257, "worst": 476 }, + "Sunflower": { "average": 334, "best": 296, "worst": 478 }, + "Soybean": { "average": 324, "best": 258, "worst": 500 } + }, + "links": { + "Wheat": { + "average": "/crop_model/regional_forecast?nuts_id=HU3329&crop=WheatGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3329&crop=WheatGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3329&crop=WheatGDD&scenario=worst" + }, + "Maize": { + "average": "/crop_model/regional_forecast?nuts_id=HU3329&crop=MaizeGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3329&crop=MaizeGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3329&crop=MaizeGDD&scenario=worst" + }, + "Sunflower": { + "average": "/crop_model/regional_forecast?nuts_id=HU3329&crop=SunflowerGDD&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3329&crop=SunflowerGDD&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3329&crop=SunflowerGDD&scenario=worst" + }, + "Soybean": { + "average": "/crop_model/regional_forecast?nuts_id=HU3329&crop=Soybean&scenario=average", + "best": "/crop_model/regional_forecast?nuts_id=HU3329&crop=Soybean&scenario=best", + "worst": "/crop_model/regional_forecast?nuts_id=HU3329&crop=Soybean&scenario=worst" + } + } + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5179889.998474976, 2686542.59960865], + [5179889.310737027, 2686571.6955617615], + [5179903.834231848, 2686600.6020636186], + [5179946.677375903, 2686633.0364647717], + [5180081.597880875, 2686721.3808147786], + [5180137.22346815, 2686761.519019062], + [5180173.264219941, 2686778.282682665], + [5180227.257852938, 2686799.5081797377], + [5180251.045069252, 2686812.6857406595], + [5180261.743459924, 2686825.6841399134], + [5180261.581320183, 2686843.1090362677], + [5180255.149096415, 2686869.970353963], + [5180234.745525798, 2686892.710750734], + [5180219.939063754, 2686899.803666764], + [5180179.226667251, 2686917.0275288797], + [5180153.909246308, 2686929.0028266013], + [5180131.570962132, 2686931.882358672], + [5180100.370381608, 2686924.888327937], + [5180058.379366723, 2686908.8133673724], + [5180019.605338611, 2686901.6972282752], + [5179994.858971959, 2686906.037902741], + [5179966.725574866, 2686922.573170072], + [5179946.482349087, 2686940.6591152665], + [5179839.08930596, 2687051.159636224], + [5179823.194616107, 2687082.349338943], + [5179818.628309283, 2687098.355523201], + [5179818.970174535, 2687115.8982099206], + [5179824.894113097, 2687135.0184278996], + [5179834.364893639, 2687152.8597256714], + [5179852.320813005, 2687177.389540957], + [5179937.043515252, 2687239.451733213], + [5179975.218770416, 2687286.4676118167], + [5180031.339718424, 2687363.855908794], + [5180074.515855386, 2687453.4955005776], + [5180115.391795172, 2687531.9052066603], + [5180120.370875711, 2687551.3512597634], + [5180114.8953622505, 2687566.835356746], + [5180099.890065211, 2687587.282243972], + [5180010.877992194, 2687617.017956237], + [5179969.45084653, 2687630.9828084353], + [5179960.135252527, 2687648.8440562645], + [5179957.003770715, 2687660.715807715], + [5179957.771104426, 2687678.8007275853], + [5179972.965281234, 2687699.5507203303], + [5179991.72718794, 2687715.9615282393], + [5180019.399993304, 2687724.923169941], + [5180056.281663225, 2687733.447922367], + [5180078.5135360025, 2687736.2094215946], + [5180167.480030829, 2687704.895240154], + [5180192.415992239, 2687693.654163144], + [5180207.887347119, 2687692.39049333], + [5180221.940239419, 2687699.9897672264], + [5180227.03038072, 2687712.8465984473], + [5180229.280107672, 2687726.7090833657], + [5180228.864685302, 2687749.51328761], + [5180202.255173303, 2687795.238983421], + [5180180.094664819, 2687834.417735553], + [5180161.606802927, 2687856.837996456], + [5180132.231343154, 2687866.149354425], + [5180054.378479878, 2687874.249656696], + [5179952.651303335, 2687888.286188968], + [5179922.326613232, 2687885.974097837], + [5179899.35865533, 2687877.8113620756], + [5179858.610930595, 2687836.9824157916], + [5179843.398765877, 2687827.459539452], + [5179826.143892668, 2687821.296910577], + [5179811.791318164, 2687823.4470870197], + [5179797.24783626, 2687836.443567398], + [5179764.811617671, 2687868.119224575], + [5179708.110418704, 2687934.498693689], + [5179701.793873538, 2687947.412886101], + [5179704.411500219, 2687961.4208630947], + [5179713.156264885, 2687977.256331307], + [5179833.897562684, 2688004.5694083674], + [5179875.56370602, 2688009.7587886425], + [5179922.865460654, 2687973.2547525945], + [5179959.5850830395, 2688020.216556543], + [5179996.906861855, 2688067.9362940798], + [5180033.625201191, 2688114.898063664], + [5180248.282825457, 2688099.2137458976], + [5180421.354576381, 2688077.676096609], + [5180551.995484318, 2688051.5378593584], + [5180594.343705386, 2688056.8096902194], + [5180631.059906083, 2688103.7626228128], + [5180626.027642772, 2688146.221472826], + [5180616.042807781, 2688230.4573836504], + [5180658.3907263465, 2688235.722991187], + [5180695.110822915, 2688282.683089177], + [5180779.130258454, 2688293.139765989], + [5180858.19816216, 2688345.3540347205], + [5180958.8812373895, 2688571.9139563474], + [5181037.948385733, 2688624.14389115], + [5181074.581928384, 2688671.79206762], + [5181116.935419252, 2688677.048795242], + [5181158.6045279745, 2688682.242214568], + [5181200.955940764, 2688687.513133792], + [5181294.957930296, 2688613.7466922114], + [5181302.929609684, 2688614.7299085082], + [5181336.622712099, 2688618.926808193], + [5181378.293238983, 2688624.1150554745], + [5181373.342720778, 2688665.88397896], + [5181343.381666592, 2688918.565757272], + [5181338.431144536, 2688960.3326535565], + [5181375.754693505, 2689008.0670409347], + [5181417.423432784, 2689013.2489559352], + [5181464.804668549, 2688976.0678184875], + [5181558.809755848, 2688902.2890041843], + [5181605.430584144, 2688865.7116561425], + [5181642.828025231, 2688912.753349574], + [5181726.166834775, 2688923.1213735333], + [5181847.508182791, 2688981.306200011], + [5181842.547255804, 2689023.0718095307], + [5181884.213885021, 2689028.270743986], + [5181879.185371324, 2689070.7257223045], + [5181860.014637095, 2689085.761503264], + [5181832.561895441, 2689107.3132120287], + [5181738.563293665, 2689181.0794129088], + [5181681.265135808, 2689301.806030008], + [5181676.235841379, 2689344.272582687], + [5181671.274815934, 2689386.0424223915], + [5181708.601285804, 2689433.7641443675], + [5181797.648875997, 2689401.766296629], + [5181792.6138785025, 2689444.217601314], + [5181824.373367777, 2689532.9575329786], + [5181814.388391372, 2689617.1851098193], + [5181799.373886888, 2689743.8685601167], + [5181789.382122457, 2689828.0921642454], + [5181727.821518818, 2689990.6848346284], + [5181764.452684051, 2690038.331507971], + [5181759.50400645, 2690080.0987179703], + [5181796.823180266, 2690127.8233677153], + [5181791.866413436, 2690169.595709101], + [5181833.533609937, 2690174.782214761], + [5181875.880932598, 2690180.0598648447], + [5181917.549056494, 2690185.2402219307], + [5182001.572136217, 2690195.6937617804], + [5182080.554291625, 2690248.6147111366], + [5182117.262746233, 2690295.568212279], + [5182124.705336272, 2690595.304878523], + [5182074.84384159, 2691015.770535506], + [5182162.361895329, 2691709.7525698612], + [5182243.818147561, 2692104.1765093133], + [5182331.236590564, 2692798.8376113647], + [5182306.300704541, 2693009.083457227], + [5182249.683027515, 2693129.89905058], + [5182244.731040329, 2693171.673410242], + [5181727.18239311, 2694303.177938169], + [5181623.175844708, 2694461.1834160206], + [5181650.575599293, 2694592.457890824], + [5181677.299615595, 2694723.6469213543], + [5181620.5960252, 2694845.1547761373], + [5181615.639251518, 2694886.922873142], + [5181590.69733546, 2695097.154205719], + [5181585.658651901, 2695139.6142373723], + [5181938.447037599, 2695396.869859102], + [5182113.213688429, 2695717.4502026374], + [5182203.9507452985, 2696027.556479032], + [5182129.020717931, 2696658.947372934], + [5180933.311308279, 2699199.44235995], + [5179590.273269852, 2700825.836769311], + [5179053.554486221, 2701399.7353364476], + [5178857.936863195, 2701973.022051595], + [5178847.932365698, 2702057.2560494], + [5178802.962105259, 2702435.9564074436], + [5178753.022025314, 2702856.4311841982], + [5178168.476112324, 2705985.9312252738], + [5178180.113483397, 2706243.81363417], + [5178309.823271477, 2706943.0991185326], + [5178426.176941816, 2707043.0589691387], + [5178499.579810276, 2707136.9931370337], + [5178494.533226021, 2707179.454782909], + [5178484.521770533, 2707263.684905244], + [5178501.88936304, 2707479.1957080453], + [5178491.876287491, 2707563.428429259], + [5178528.581644302, 2707610.3835648075], + [5178523.541201786, 2707652.8429478146], + [5178565.882747805, 2707658.121438504], + [5178853.585597138, 2708462.5699253357], + [5178980.974221816, 2708819.664682401], + [5179003.2970427545, 2708993.414779658], + [5178993.285689607, 2709077.642432599], + [5178910.96608991, 2709408.611261087], + [5178905.919321543, 2709451.071704846], + [5178943.303701169, 2709498.118286426], + [5179383.558947223, 2709836.3920283807], + [5182018.607840839, 2711930.704108474], + [5182272.241229152, 2712304.2388188527], + [5182508.60486635, 2712461.5714673316], + [5184217.992401423, 2713486.3414609423], + [5184260.338819211, 2713491.6244097888], + [5184265.3835947225, 2713449.1626712643], + [5184349.394771227, 2713459.623769411], + [5184396.026151916, 2713423.0528126173], + [5184480.037711005, 2713433.5158508457], + [5184516.728464012, 2713480.484443894], + [5184595.6919495575, 2713533.4109175964], + [5184628.011939835, 2713622.9252754203], + [5184580.6987385955, 2713659.4288389334], + [5184618.07987215, 2713706.476646387], + [5184613.031308275, 2713748.9434664324], + [5184733.731463353, 2713806.379255713], + [5184775.398154109, 2713811.5749249724], + [5184765.3753648745, 2713895.8075616807], + [5184844.329641635, 2713948.7420439934], + [5184819.332993071, 2714158.9848140725], + [5184893.320097033, 2714253.6981644267], + [5184957.366437525, 2714431.953059474], + [5185041.3700888865, 2714442.4264071807], + [5185151.972123227, 2714584.7948759464], + [5185340.032382297, 2714437.2520535765], + [5185381.701281181, 2714442.4535451373], + [5185386.667649618, 2714400.6749945395], + [5185429.016145537, 2714405.9547195937], + [5185523.037392539, 2714332.185768193], + [5185564.70906915, 2714337.375082732], + [5185784.405616406, 2714279.273922974], + [5185826.747244696, 2714284.562307684], + [5185831.805071662, 2714242.098773477], + [5185873.463895745, 2714247.2882519895], + [5185920.776779018, 2714210.7904824074], + [5185935.765457337, 2714084.7839975813], + [5186007.486254458, 2713837.2685948582], + [5186111.53109065, 2713679.258741803], + [5186195.540979837, 2713689.7342513776], + [5186289.56891573, 2713615.96355711], + [5186456.89948077, 2713636.827469114], + [5186550.925100869, 2713563.0586662902], + [5186761.287417092, 2713589.2765294467], + [5187568.823304797, 2714672.6992486557], + [5188857.768448909, 2716370.095267849], + [5191124.261125901, 2715927.112440723], + [5191592.058693534, 2715216.746375277], + [5191770.098118801, 2715153.457263953], + [5191812.440508023, 2715158.7440837575], + [5191844.079043612, 2715248.1809198456], + [5191913.092921723, 2715384.672966577], + [5191949.700495458, 2715432.3340362175], + [5191997.0991173955, 2715395.1435944196], + [5192012.086466479, 2715269.1335806935], + [5192106.110098799, 2715195.3685937277], + [5192190.125806727, 2715205.843017008], + [5192310.735208588, 2715263.974861693], + [5192495.38724424, 2715500.3792195125], + [5192448.759837746, 2715536.968261252], + [5192475.347165196, 2715668.865473628], + [5192549.407584081, 2715762.89751757], + [5192539.390188936, 2715847.134778826], + [5192697.3759226445, 2715952.3338781693], + [5192781.375925225, 2715962.8032700857], + [5192817.986039506, 2716010.4694544366], + [5192792.967130033, 2716220.726354084], + [5192866.952781797, 2716315.43727483], + [5192935.959088654, 2716451.936609942], + [5192930.990116867, 2716493.7191135306], + [5192972.654423425, 2716498.910530433], + [5193128.297504641, 2716262.5503279436], + [5193170.647322086, 2716267.836522989], + [5193165.678875661, 2716309.6068974086], + [5193229.633995461, 2716488.565982957], + [5193266.326946061, 2716535.541969614], + [5193313.639719292, 2716499.0459403866], + [5193412.636025782, 2716383.5064173103], + [5193495.958443088, 2716393.9023341257], + [5193533.3293715855, 2716440.9599231766], + [5194033.940240994, 2716887.7581905425], + [5194107.239442678, 2716982.3974762987], + [5194191.2468034625, 2716992.8786026305], + [5194238.55750662, 2716956.384758329], + [5194263.656532433, 2716745.4362355787], + [5194310.291294115, 2716708.8553536683], + [5194441.68577256, 2716682.158232814], + [5194483.349768629, 2716687.3542364812], + [5194478.293593021, 2716729.8213310316], + [5194514.98450265, 2716776.793116277], + [5194499.906552106, 2716903.4946970134], + [5194542.25373335, 2716908.7780596158], + [5194578.941719306, 2716955.7559326743], + [5194710.260042884, 2716929.732167833], + [5194746.952394825, 2716976.719029472], + [5194736.920492671, 2717060.951067806], + [5194601.23410607, 2717129.5108535523], + [5194632.87564835, 2717218.953602148], + [5194706.847667623, 2717313.671321067], + [5194701.878809879, 2717355.450693908], + [5194911.54564939, 2717381.605223027], + [5194936.567772035, 2717171.351495664], + [5195092.987879434, 2716934.3828490977], + [5195344.312827814, 2716965.743749541], + [5195391.6272392245, 2716929.2434250284], + [5195354.3408099115, 2716881.501031575], + [5195359.306128324, 2716839.7238107207], + [5195406.696514351, 2716802.543811456], + [5195563.999971991, 2716907.6612742026], + [5195732.003732933, 2716928.618027727], + [5195805.988054709, 2717023.339877956], + [5195780.962401373, 2717233.6047363565], + [5195739.301299166, 2717228.4055807423], + [5195724.221647314, 2717355.1101691946], + [5195745.832570352, 2717528.784031578], + [5195735.892135925, 2717612.3492107554], + [5195846.475095595, 2717754.7324537644], + [5195841.505492816, 2717796.5035505504], + [5195915.472022985, 2717891.2292817975], + [5195905.446646916, 2717975.4672573623], + [5195979.423854467, 2718070.1870401697], + [5196214.119232733, 2717886.0878548976], + [5196298.110866549, 2717896.57335773], + [5196278.1512568975, 2718064.374121116], + [5196367.117947479, 2718033.0643771943], + [5196408.780005138, 2718038.269613924], + [5196634.130306641, 2717938.488299088], + [5196680.839247547, 2717901.231774888], + [5196718.127944928, 2717948.981218256], + [5196759.7848907225, 2717954.181226817], + [5197006.818208217, 2718027.401124385], + [5197085.851387562, 2718079.6579933898], + [5197169.164395786, 2718090.057168359], + [5197164.108766248, 2718132.5119442646], + [5197285.485842059, 2718190.062863447], + [5197327.14883191, 2718195.2615201576], + [5197364.431461482, 2718243.007438911], + [5197732.069328513, 2718374.3725616173], + [5196761.343832658, 2720089.608766853], + [5196877.379779837, 2721257.219620504], + [5196872.410138285, 2721298.989282391], + [5197362.937268527, 2721830.0858498043], + [5197403.452358644, 2722560.8098014984], + [5197430.696830245, 2722692.7992882794], + [5197425.726657705, 2722734.573788958], + [5197467.391582113, 2722739.774013423], + [5197457.350920435, 2722824.024067777], + [5197526.344811431, 2722960.5265843538], + [5197658.642329388, 2722848.036995043], + [5197755.988575417, 2722818.8888219055], + [5198038.083397597, 2722597.610694524], + [5199013.083778688, 2722633.8143125493], + [5199270.055735474, 2722623.4996892298], + [5199605.369706757, 2722665.3550028047], + [5199847.413226801, 2722780.3708225423], + [5200177.661365304, 2722864.7018502466], + [5200357.217474196, 2723143.598253847], + [5200689.75911279, 2723569.505517848], + [5201173.756535155, 2723800.2317351303], + [5201210.35537465, 2723847.8954738583], + [5201200.319514053, 2723932.1427227454], + [5201325.971287655, 2723947.8350427574], + [5201316.024970288, 2724031.3915615883], + [5201353.304830528, 2724079.1426090985], + [5201348.330331365, 2724120.9268546677], + [5201516.32195725, 2724141.9078136827], + [5201552.916568272, 2724189.5652565015], + [5201501.229560178, 2724268.6125688953], + [5201453.912146282, 2724305.103840939], + [5201448.853085843, 2724347.5702898824], + [5201182.534203, 2724442.2148482203], + [5201204.114630292, 2724615.9069516505], + [5201100.1282305475, 2724773.224236175], + [5201347.056614659, 2724847.1451605796], + [5201436.114283632, 2724815.178274229], + [5201482.752203641, 2724778.597226993], + [5201566.753538323, 2724789.0816997364], + [5201561.76910717, 2724830.866786971], + [5201635.73146553, 2724925.5940433387], + [5201741.309471626, 2725109.77431368], + [5201736.338013752, 2725151.5526531073], + [5201610.682398038, 2725135.865459858], + [5201563.284067266, 2725173.0466680443], + [5201622.227977307, 2725393.8018879592], + [5201597.174186459, 2725604.077171806], + [5201671.142552676, 2725698.8048187094], + [5201944.7096437905, 2725903.959522471], + [5202092.620874079, 2726093.438141836], + [5202455.25403971, 2726266.625739721], + [5202626.035479924, 2725903.5488766427], + [5202738.93269344, 2725467.795387774], + [5202844.130768712, 2725503.982926072], + [5203048.806508087, 2725571.9502710705], + [5203337.387410767, 2725651.093568967], + [5203477.173597494, 2725723.000304022], + [5203574.3577240845, 2725808.582880192], + [5203851.975207693, 2726039.152498677], + [5203893.585266445, 2726082.340164728], + [5203948.987994449, 2726213.2391877375], + [5204005.148771406, 2726138.3592648692], + [5204092.135418468, 2726098.521686211], + [5204099.9106293535, 2726045.2274033455], + [5204103.616830711, 2726011.6062480556], + [5204162.832430964, 2725988.285460975], + [5204292.862150513, 2725991.488588683], + [5204879.958495799, 2725979.9126207717], + [5205420.396853308, 2725969.3043053835], + [5205453.191880101, 2725900.7258115876], + [5205473.873908733, 2725653.068882852], + [5205501.512215682, 2725503.9148266003], + [5205548.424287485, 2725338.524414524], + [5205561.646968372, 2725292.4175306302], + [5205665.169973244, 2725069.1286608055], + [5205718.595762221, 2724965.5971066216], + [5205866.011330904, 2724671.557384362], + [5206022.6445661215, 2724445.195641904], + [5206439.74522712, 2724403.8609836074], + [5206452.892079149, 2724392.980042352], + [5206530.736675544, 2724279.249935406], + [5206482.1177611295, 2724105.769251205], + [5206464.404812566, 2724014.508554631], + [5206460.059000977, 2723991.0764381713], + [5206296.129156602, 2723969.097356145], + [5206220.935667522, 2723935.262583694], + [5206144.097948821, 2723840.5633342303], + [5206059.556767836, 2723809.576266916], + [5205944.080220596, 2723742.223678729], + [5205874.140710366, 2723739.536445695], + [5205833.397925507, 2723555.7670011204], + [5205785.923610549, 2723365.646751202], + [5205767.985667417, 2723264.4394076956], + [5205752.20961144, 2723213.724378281], + [5205717.420818369, 2723105.8268438894], + [5205805.678309399, 2722905.729293598], + [5205895.612855654, 2722746.931515836], + [5205883.872589559, 2722686.187753452], + [5205867.379226797, 2722599.719823077], + [5205855.34797978, 2722511.759125787], + [5205839.9003829695, 2722400.612784103], + [5205781.524809449, 2722265.282882889], + [5205647.267099435, 2722049.0188316787], + [5205634.339535357, 2721991.2023621267], + [5205658.297712936, 2721883.092237477], + [5205659.69030808, 2721870.352955366], + [5205630.370265048, 2721802.5639163936], + [5205547.279137959, 2721724.9708242654], + [5205501.924969579, 2721673.7153497934], + [5205504.330510338, 2721573.058639279], + [5205532.29015207, 2721525.83591343], + [5205551.210599744, 2721493.6504772822], + [5205544.399954366, 2721477.1392494123], + [5205567.344516543, 2721360.5165445115], + [5205571.846415166, 2721304.2540634186], + [5205559.617753557, 2721216.2265420253], + [5205531.387770268, 2721028.746067187], + [5205486.404144128, 2720846.2394929705], + [5205495.990573183, 2720635.506131454], + [5205486.55801267, 2720548.9860106506], + [5205736.496408734, 2720526.748773838], + [5205907.063011985, 2720550.631462113], + [5206139.152024197, 2720545.308500597], + [5206274.167164706, 2720497.2620348376], + [5206385.514007322, 2720436.806231031], + [5206585.89274596, 2720356.8788085366], + [5206598.851143837, 2720296.6129999673], + [5206596.3603557125, 2720133.983596716], + [5206540.200005321, 2719890.7180174035], + [5206469.325361026, 2719604.0338069038], + [5206258.833015896, 2719419.3256879267], + [5206230.9637241, 2719118.2837419473], + [5206193.800767867, 2719002.446279699], + [5206183.670293604, 2718871.788640257], + [5206178.228781304, 2718870.4938907246], + [5206156.172873411, 2718798.8560579824], + [5206062.839671069, 2718807.506781732], + [5205910.626799713, 2718796.6654932545], + [5205790.762492001, 2718813.1183584286], + [5205517.671808682, 2718827.679555796], + [5205413.330038824, 2718807.542486421], + [5205341.905760971, 2718843.136507672], + [5205223.907107345, 2718849.6035372913], + [5205141.452201374, 2718881.60032469], + [5204980.789138423, 2718871.8297117013], + [5205016.826306233, 2718766.9735681163], + [5204976.510718149, 2718664.97994232], + [5204919.867948271, 2718465.3495570985], + [5204860.79488325, 2718409.4499408007], + [5204858.69722425, 2718346.255034458], + [5204922.869430588, 2718177.506153598], + [5204852.448629701, 2718112.802442059], + [5204795.164521785, 2718059.770152053], + [5204730.701654759, 2717977.0149694122], + [5204611.630153437, 2717874.1890309984], + [5204571.221519266, 2717753.8783036624], + [5204565.592748515, 2717617.2519867597], + [5204599.970603936, 2717459.161921178], + [5204577.850415118, 2717409.056423406], + [5204523.549759905, 2717331.9138888675], + [5204466.010695286, 2717249.896966168], + [5203968.923227302, 2716782.955664124], + [5203888.506227288, 2716104.748159702], + [5201482.316095108, 2715669.4653374874], + [5201471.1527855545, 2715659.4616002324], + [5201325.071645903, 2715607.438427678], + [5201001.739489229, 2715024.260051327], + [5201028.786299162, 2714643.186781512], + [5201020.240509633, 2714440.615633913], + [5201060.161818381, 2713973.113392788], + [5201142.072139561, 2713874.4952780604], + [5201248.084435424, 2713779.978260589], + [5201334.306403799, 2713018.8797106], + [5201423.396299101, 2713033.309382753], + [5201406.21233248, 2712969.3214190975], + [5201461.420407459, 2712746.29671229], + [5201488.017288082, 2712700.6447136668], + [5201548.498884623, 2712611.819886648], + [5201698.426308715, 2712489.3293526396], + [5202022.835021381, 2712579.4483293584], + [5202082.179340798, 2712344.664829489], + [5202238.227273139, 2711997.4843235416], + [5202382.671697379, 2711636.6149952025], + [5202440.271580284, 2711506.0033597182], + [5202540.400078988, 2711359.599032914], + [5202579.9615313, 2711372.2798889317], + [5202780.827053025, 2710918.866330234], + [5202853.816204922, 2710705.948090993], + [5202256.974362219, 2710547.9864018112], + [5202075.450685505, 2710410.918862139], + [5201994.227034581, 2709713.2366702375], + [5202332.121105189, 2708619.1572693167], + [5202263.598407051, 2708344.036433103], + [5202220.677396452, 2708264.4112791773], + [5202118.809478961, 2708215.4797622818], + [5202097.746675448, 2708195.8491182583], + [5201980.369285649, 2708104.769629766], + [5202013.978699558, 2707885.4440406854], + [5201967.92235461, 2707725.7067256696], + [5201862.381529639, 2707618.474311745], + [5201499.5607295, 2707544.3685746067], + [5201298.013169454, 2707527.35306165], + [5201059.190529066, 2707417.959205472], + [5200837.44767774, 2707220.7319118218], + [5200832.785052608, 2707116.0029782066], + [5200692.482080729, 2707084.942761049], + [5200487.781876255, 2707017.008963538], + [5200377.049864267, 2706956.99036614], + [5200294.51742877, 2706905.3461880516], + [5200238.3756214855, 2706902.439328732], + [5200134.092749011, 2706795.6321783415], + [5200044.759091417, 2706767.1705285194], + [5200029.996876789, 2706736.4598912965], + [5200036.936574963, 2706639.7513018046], + [5200025.897812142, 2706606.534509883], + [5200001.444651485, 2706582.791905888], + [5199859.963965006, 2706573.3025758974], + [5199489.011033143, 2706494.6048441646], + [5199315.7502611475, 2706486.4586985363], + [5199098.822657582, 2706415.490411016], + [5198810.783352183, 2706081.5263515953], + [5198508.430655958, 2705771.224077193], + [5198338.313293977, 2705714.119663374], + [5198237.525664199, 2705625.236031179], + [5197853.592869585, 2705514.757359205], + [5197767.003626389, 2705496.848606807], + [5197784.345271906, 2705398.8811089043], + [5197814.226387299, 2705127.9623806044], + [5197791.003956052, 2705018.3641427495], + [5197731.878742379, 2704881.084773837], + [5197637.597404965, 2704584.677366235], + [5197594.954761454, 2704581.4197887937], + [5197463.357309185, 2704508.9606941445], + [5197280.0028265435, 2704531.8601706293], + [5197195.466416661, 2704526.257498565], + [5196957.1521084495, 2704472.6075488757], + [5196781.046153806, 2704392.0533774043], + [5196778.178412896, 2704372.523425643], + [5196773.461159492, 2704342.862084497], + [5196756.640522319, 2704302.4138879436], + [5196711.71890047, 2704262.3276635706], + [5196647.041693362, 2704218.3298398117], + [5196602.369636054, 2704173.5084018945], + [5196549.15950115, 2704010.8237097156], + [5196569.2591295, 2703921.3449974298], + [5196673.2688168, 2703731.9368542205], + [5196648.583444046, 2703337.5564156766], + [5196787.851683048, 2703088.004659953], + [5196726.225172908, 2702657.4778263955], + [5196785.8306285, 2702360.1177649177], + [5196967.831698135, 2702275.237933635], + [5197020.54876974, 2701982.4942636127], + [5197002.460776791, 2701947.9809996034], + [5197058.207927579, 2701856.4664614336], + [5197129.748509012, 2701754.373257866], + [5197166.9291462265, 2701629.463078921], + [5197165.233853281, 2701582.7746333405], + [5197162.215111517, 2701554.3986298023], + [5197084.389266797, 2701386.5067068916], + [5197143.067497903, 2701324.93858925], + [5197177.48581954, 2701277.077986165], + [5197200.3147267755, 2701207.2207487104], + [5197207.509079332, 2701147.211585331], + [5197204.242293887, 2701088.5711217127], + [5197229.765288691, 2701030.0609962437], + [5197184.997079754, 2700874.4026023545], + [5197099.003525421, 2700768.703290133], + [5197070.431248351, 2700655.406890405], + [5197090.437092721, 2700486.9214561493], + [5197048.69164356, 2700269.535896437], + [5197107.690788459, 2700038.5675591817], + [5197090.636579687, 2700003.155128301], + [5197041.366284996, 2699905.8156175204], + [5196995.078596413, 2699806.0558309597], + [5196944.155257919, 2699739.3571645776], + [5196928.355672425, 2699698.046671656], + [5196814.399880061, 2699508.4736089227], + [5196894.825299149, 2699383.541699891], + [5196947.369429728, 2699336.830480092], + [5196904.274442269, 2699182.843497338], + [5196745.587108991, 2698874.605128451], + [5196719.572910666, 2698740.793911286], + [5196704.70282869, 2698575.8965515527], + [5196710.070580135, 2698259.992058279], + [5196668.810243575, 2698111.2888585366], + [5196584.012259418, 2698005.783755755], + [5195865.741757127, 2697286.2663659635], + [5195619.566281322, 2697001.5430721925], + [5195359.566451578, 2697056.5234910324], + [5195154.166413649, 2696124.6010045307], + [5195083.961676739, 2695807.100869073], + [5195078.165284187, 2695782.289116306], + [5195016.756114508, 2695752.9261887507], + [5195237.504457494, 2695273.616131042], + [5195245.129042621, 2695257.083496953], + [5195237.096523712, 2695084.615779101], + [5195886.92662841, 2695075.0659376397], + [5195965.343067272, 2695017.4011788494], + [5195988.858880928, 2695019.3445495507], + [5196467.781412702, 2694673.971212721], + [5196680.831090814, 2694521.2517996645], + [5197481.910301355, 2693959.784494502], + [5198564.795150696, 2693520.6127884784], + [5198716.579936883, 2693459.0790145686], + [5198725.613506608, 2693439.304072733], + [5198844.908573127, 2693265.3388852505], + [5198872.970272529, 2693105.2638580627], + [5198875.583860495, 2693055.5743904426], + [5198885.063026901, 2693019.4706902727], + [5198905.127086796, 2693002.8828402697], + [5198915.177840563, 2692922.667815267], + [5198959.904275001, 2692855.7610316942], + [5198969.181977469, 2692781.773752161], + [5198999.696602892, 2692725.5505034965], + [5199040.602711928, 2692583.27370696], + [5199105.393996005, 2692418.69417224], + [5199153.636097097, 2692269.754293056], + [5199189.904530269, 2692196.574067855], + [5199206.0090847, 2692065.491383743], + [5199253.193199078, 2691838.963896128], + [5199224.801422176, 2691576.3729571574], + [5199223.865271331, 2691468.4684403935], + [5199080.118619352, 2691255.3940404407], + [5199039.084626805, 2691176.690508764], + [5198921.78559328, 2690983.227484611], + [5198677.520901206, 2690658.2098682546], + [5198600.153064074, 2690579.3237136994], + [5198434.7983398, 2690470.2284759576], + [5198367.560946012, 2690373.597022911], + [5198350.175807114, 2690357.5523873353], + [5198320.730012363, 2690342.223625083], + [5198240.70076143, 2690316.5046052574], + [5198130.839931475, 2690282.9865820506], + [5198017.389198266, 2690270.069515538], + [5197997.870800696, 2690252.6511467295], + [5198003.787338485, 2690223.51148968], + [5198049.85669033, 2690159.551641425], + [5198071.233814724, 2690111.7364408625], + [5198094.514430698, 2690026.1741766795], + [5198109.125362758, 2689869.186576235], + [5198156.786375379, 2689838.5455829543], + [5198085.815099792, 2689776.5152972564], + [5197932.015184262, 2689595.1812874703], + [5197836.924730747, 2689455.17686622], + [5197876.572629311, 2689348.8979817946], + [5198036.033676409, 2689080.0583349913], + [5198024.693999228, 2689056.3795276573], + [5197983.317702619, 2689038.945437566], + [5197956.409597793, 2689020.450000697], + [5197937.719960291, 2688993.43377509], + [5197898.30649908, 2688945.714539488], + [5197945.97213645, 2688771.759190013], + [5197958.744956516, 2688751.71401513], + [5197961.828504461, 2688726.7157258946], + [5197957.075154336, 2688708.300529018], + [5197888.395435701, 2688655.3191449507], + [5197854.292256163, 2688621.8345392104], + [5197832.921382663, 2688609.5699761203], + [5197764.110825468, 2688594.4352631103], + [5197653.19279433, 2688545.430972639], + [5197626.987076522, 2688538.5771872355], + [5197588.769626716, 2688538.922748883], + [5197503.2497191755, 2688411.5578990867], + [5197441.544296656, 2688337.6054220283], + [5197356.35765386, 2688172.6270606173], + [5197338.024579062, 2688164.8919305243], + [5197263.505940923, 2687808.784987981], + [5197250.396374918, 2687654.0809277273], + [5197214.234690603, 2687428.472725654], + [5197136.120929726, 2687303.8343065158], + [5197115.334031318, 2687319.924978931], + [5197076.5873293, 2687295.4362324374], + [5197052.34963921, 2687270.374301631], + [5197046.008750324, 2687259.479962921], + [5196998.198425928, 2687197.352186306], + [5196939.135713162, 2687165.721962639], + [5196898.100671522, 2687153.581233716], + [5196855.334483409, 2687151.1548564862], + [5196799.487079316, 2687167.150963046], + [5196777.448492323, 2687178.8699920787], + [5196763.218308741, 2687192.3245375445], + [5196737.191457842, 2687255.529087792], + [5196723.123044109, 2687278.2580143185], + [5196689.600247132, 2687313.4432206964], + [5196583.066070197, 2687386.952517651], + [5196536.475865646, 2687429.6261977893], + [5196442.288946012, 2687533.653095087], + [5196370.85992803, 2687625.8433506424], + [5196335.228764693, 2687665.2419581176], + [5196310.561467018, 2687686.5266121416], + [5196259.978304528, 2687727.242357879], + [5196185.606094599, 2687752.5327531225], + [5196158.023622658, 2687756.80764872], + [5196137.318958411, 2687750.148875685], + [5196076.964695659, 2687728.255880408], + [5196035.833106643, 2687715.537525075], + [5196008.32244187, 2687712.678366401], + [5195979.30004286, 2687712.9963868773], + [5195926.815612305, 2687723.3966541216], + [5195866.51760159, 2687745.327308429], + [5195820.441237417, 2687778.1610407354], + [5195799.203308416, 2687799.837202371], + [5195790.105679716, 2687822.7384392596], + [5195773.907580148, 2687880.2098017065], + [5195769.646129692, 2687899.433702317], + [5195762.902982368, 2687915.071311381], + [5195750.973138129, 2687926.3181866547], + [5195703.92092757, 2687925.7123674834], + [5195690.223882238, 2687920.754420836], + [5195608.068649083, 2687892.350668737], + [5195516.638843594, 2687895.4310650383], + [5195491.197849121, 2687909.5962693985], + [5195478.187912088, 2687919.5786074814], + [5195470.727836443, 2687931.5799618475], + [5195454.251309735, 2687968.541266722], + [5195422.237003999, 2688016.3243298233], + [5195404.470365844, 2688027.8871504306], + [5195387.477716293, 2688032.8139961115], + [5195363.9994931165, 2688031.9197751945], + [5195354.526739454, 2688028.4692177833], + [5195345.017633444, 2688022.7167464215], + [5195257.549089011, 2687955.4299252527], + [5195209.091265046, 2687898.457375858], + [5195200.036916824, 2687891.01409567], + [5195187.224428607, 2687885.481118771], + [5195175.046326432, 2687888.212601881], + [5195157.813498552, 2687900.0609511836], + [5195142.570217, 2687919.9344703606], + [5195135.273978642, 2687953.8904805123], + [5195138.916845865, 2687971.5323051354], + [5194386.711718703, 2687382.801649019], + [5193855.300798038, 2686993.385548349], + [5193030.37891371, 2687339.065112204], + [5192472.909222398, 2687574.908443056], + [5192452.797307704, 2687562.980481169], + [5192383.476508437, 2687494.714427038], + [5192321.0739881825, 2687446.23471], + [5192276.717352098, 2687435.9845280116], + [5192214.740188798, 2687369.2383018453], + [5192172.892236797, 2687331.9931062046], + [5192090.427584387, 2687353.2220504307], + [5191918.124529945, 2687374.1550669074], + [5191857.217379263, 2687403.2853416353], + [5191831.7813015375, 2687424.1807035683], + [5191815.536989474, 2687450.2314055576], + [5191737.836319524, 2687584.853155321], + [5191667.80754457, 2687684.881744934], + [5191637.464873455, 2687717.0195261864], + [5191570.0374648655, 2687775.737299231], + [5191559.994775843, 2687795.3715122365], + [5191543.24213819, 2687831.9884973075], + [5191531.954377836, 2687903.525033903], + [5191501.501121533, 2688042.9215499805], + [5191472.1666316, 2688076.4558720854], + [5191456.049810013, 2688089.685648829], + [5191438.193926045, 2688100.4323726497], + [5191388.393386475, 2688108.8589670374], + [5191353.903280504, 2688109.916042424], + [5191292.118888171, 2688095.415612742], + [5191225.7115683155, 2688068.3230191343], + [5191175.829965465, 2688049.835442431], + [5191114.554698618, 2688042.6571100857], + [5191067.750934413, 2688036.8351443824], + [5191030.452098148, 2688045.5444187038], + [5190983.841885336, 2688069.4722422455], + [5190936.5425600195, 2688105.964278587], + [5190884.886952094, 2688185.014500181], + [5190823.250323319, 2688348.2873017723], + [5190807.2495015655, 2688380.787691599], + [5190771.683499781, 2688424.7613862325], + [5190732.419838557, 2688440.281025153], + [5190626.062696462, 2688482.0923384586], + [5190437.793469031, 2688547.0138505506], + [5190284.246824051, 2688579.9841124057], + [5190116.669271168, 2688592.0265565254], + [5189770.857701059, 2688601.5165276807], + [5189378.186896628, 2688680.4882658008], + [5189294.430292213, 2688700.1552950097], + [5189223.905399938, 2688748.6149894684], + [5188955.55829927, 2689012.1517442204], + [5188898.9462715695, 2689132.966089472], + [5188885.2890440645, 2689188.0008344837], + [5188857.801958861, 2689365.7120215856], + [5188837.64510609, 2689461.7934553092], + [5188825.815409687, 2689494.32614268], + [5188812.572482297, 2689522.840004085], + [5188770.741772033, 2689545.9963975707], + [5188741.8789910255, 2689555.4265216067], + [5188704.179313195, 2689544.4891514066], + [5188680.978610876, 2689533.201263847], + [5188404.441068005, 2689366.8938890537], + [5188199.539878333, 2689213.099209277], + [5188106.139597789, 2689149.2137534656], + [5187980.787308414, 2689031.372655783], + [5187954.479584325, 2689004.5331318323], + [5187884.246412834, 2688969.999178395], + [5187818.83044509, 2688960.6251330967], + [5187529.32272395, 2688980.183482459], + [5187317.660231841, 2688968.138216631], + [5187217.83457271, 2688964.9654991934], + [5187121.121413551, 2688978.09779993], + [5187004.1045434065, 2689013.539552615], + [5186961.722747937, 2689021.8361545606], + [5186922.494580719, 2689017.046382138], + [5186869.591796898, 2689008.836873101], + [5186824.030203663, 2688983.8284768555], + [5186767.612214129, 2688915.673881149], + [5186716.579609221, 2688861.2276762594], + [5186677.8156567635, 2688829.084384585], + [5186635.764016413, 2688820.968877496], + [5186135.589368297, 2688725.2665376216], + [5186095.694704163, 2688716.78166162], + [5186034.43098752, 2688695.1965666767], + [5185830.342275847, 2688610.39133465], + [5185790.9373937305, 2688565.8010509703], + [5185707.252249085, 2688394.3821126064], + [5185677.256333665, 2688335.5700354576], + [5185589.646838242, 2688264.0134129017], + [5185520.276738438, 2688202.382902559], + [5185490.354554659, 2688163.716862271], + [5185483.585563381, 2688145.6911916025], + [5185471.901822776, 2688103.831784363], + [5185468.417324014, 2687894.885582405], + [5185458.23616796, 2687751.4767155102], + [5185401.439084113, 2687623.62769531], + [5185313.281816099, 2687470.623930619], + [5185225.885529819, 2687374.485800684], + [5185150.502013983, 2687343.179291498], + [5184945.836828226, 2687274.6128275557], + [5184861.812967092, 2687264.16563416], + [5184735.446442681, 2687248.4323420394], + [5184647.07544124, 2687280.5093556633], + [5184558.109920922, 2687311.829833759], + [5184515.759036488, 2687306.556612436], + [5184431.737651961, 2687296.102260241], + [5184426.78902051, 2687337.8709782073], + [5184500.828184941, 2687432.5631309133], + [5184495.79002318, 2687475.024458342], + [5184490.834000432, 2687516.7909300923], + [5184485.810411177, 2687559.246983618], + [5184439.186072053, 2687595.8312481917], + [5184396.838260737, 2687590.552028042], + [5184322.804944608, 2687495.878161517], + [5184281.137886794, 2687490.6841898565], + [5184244.418224836, 2687443.72289016], + [5184202.067297775, 2687438.458755861], + [5184197.112379818, 2687480.2321469365], + [5184125.496558952, 2687727.7263874724], + [5184120.541934965, 2687769.4977720617], + [5184031.49213515, 2687801.5078315483], + [5183994.172831903, 2687753.7784265946], + [5183957.453251311, 2687706.82105366], + [5183940.708640039, 2687491.391362115], + [5183903.391936487, 2687443.6684710756], + [5183814.341286304, 2687475.67066369], + [5183725.372757433, 2687506.986128278], + [5183688.65708512, 2687460.0235259486], + [5183651.338314626, 2687412.302423021], + [5183656.282527762, 2687370.5277246255], + [5183703.67106503, 2687333.340609357], + [5183849.245860197, 2687181.2153423913], + [5183854.271326836, 2687138.757950434], + [5183562.878423738, 2687057.456480542], + [5183518.920147908, 2687027.363091777], + [5183491.468946427, 2686965.741037567], + [5183452.807391459, 2686829.771794702], + [5183427.592852051, 2686769.3878506958], + [5183409.835367688, 2686741.002450137], + [5183392.337707952, 2686719.1127143893], + [5183345.889583501, 2686689.7806423535], + [5183261.791221545, 2686666.9078840404], + [5183186.031073603, 2686671.3098672135], + [5183047.069616493, 2686692.0567538417], + [5182977.422543635, 2686706.326820138], + [5182949.589760852, 2686724.450775314], + [5182909.9579528365, 2686765.990043891], + [5182872.339124227, 2686803.2142784493], + [5182778.332280625, 2686876.9910122924], + [5182689.3601824, 2686908.297983337], + [5182609.955420846, 2686900.4965301203], + [5182570.2682924345, 2686902.311852442], + [5182516.291373229, 2686929.8491104636], + [5182486.626198403, 2686949.917421572], + [5182434.335356575, 2687019.0446712915], + [5182370.720992947, 2687081.970262949], + [5182300.9542287495, 2687136.7172565437], + [5182264.4412320135, 2687159.0872379267], + [5182174.731069502, 2687166.573487698], + [5181888.985854274, 2687192.966467154], + [5181847.3176380545, 2687187.783869652], + [5181787.491440871, 2687174.414754483], + [5181705.413034906, 2687120.074800913], + [5181673.124469208, 2687086.912402196], + [5181572.876571403, 2686982.6836242285], + [5181494.493773501, 2686930.5440851348], + [5181453.169595698, 2686937.0237485995], + [5181405.518924512, 2686961.8604849484], + [5181358.133977183, 2686999.044348525], + [5181289.78333629, 2687022.9941236847], + [5181232.019335506, 2687015.7165184403], + [5181187.938084552, 2687000.413516569], + [5181148.4207265, 2686972.9516844423], + [5181074.394410853, 2686878.268101026], + [5181058.433549645, 2686860.7359621637], + [5181032.460411133, 2686849.0697865034], + [5181006.232216947, 2686851.071179546], + [5180961.693458323, 2686869.415063604], + [5180838.488299027, 2686975.8808609876], + [5180800.6104336465, 2686981.452204648], + [5180775.972343994, 2686974.9425152685], + [5180749.081743955, 2686965.21672253], + [5180722.683809913, 2686950.741504388], + [5180539.266811695, 2686726.2018400384], + [5180524.582315797, 2686709.6023134375], + [5180513.357537938, 2686678.017997647], + [5180513.045445209, 2686641.04461562], + [5180531.987117889, 2686586.1729352465], + [5180535.856657813, 2686503.825471566], + [5180526.863670486, 2686468.256608789], + [5180501.984732566, 2686439.3723571133], + [5180441.681764259, 2686394.184287228], + [5180292.3846969325, 2686333.2607960664], + [5180238.084947261, 2686389.9383606073], + [5180200.039360041, 2686407.317446049], + [5180035.369937612, 2686461.620936783], + [5179936.3647326445, 2686503.2222898793], + [5179909.971325504, 2686521.738890467], + [5179889.998474976, 2686542.59960865] + ] + ] + ] + }, + "units": { "yield": "t/ha", "water_need": "mm" } + } + ] +} diff --git a/elements/layercontrol/src/enums/stories/index.js b/elements/layercontrol/src/enums/stories/index.js new file mode 100644 index 000000000..b5eb862a8 --- /dev/null +++ b/elements/layercontrol/src/enums/stories/index.js @@ -0,0 +1,424 @@ +import FEATURE_COLLECTION_LAYER_CROPOMHUSC from "./assets/cropomhusc-feature-collection.json"; + +const SENTINEL_HUB_URL = + "https://services.sentinel-hub.com/ogc/wms/0635c213-17a1-48ee-aef7-9d1731695a54"; + +const S2MAP_URL = (id) => + `//s2maps-tiles.eu/wmts/1.0.0/${id}/default/g/{z}/{y}/{x}.jpg`; + +const LAYER_EOX_CLOUDLESS = (year) => ({ + type: "Tile", + properties: { title: `EOxCloudless ${year}` }, + source: { + type: "XYZ", + url: S2MAP_URL(`s2cloudless-${year}_3857`), + }, +}); + +export const STORIES_MAP_STYLE = + "width: 400px; height: 300px; margin-left: 7px;"; + +export const STORIES_LAYER_SENTINEL_HUB = { + wind: { + type: "Tile", + properties: { id: "WIND", title: "WIND" }, + source: { + type: "TileWMS", + url: SENTINEL_HUB_URL, + params: { LAYERS: "AWS_VIS_WIND_V_10M" }, + }, + }, + no2: { + type: "Tile", + properties: { id: "NO2", title: "NO2" }, + source: { + type: "TileWMS", + url: SENTINEL_HUB_URL, + params: { LAYERS: "AWS_NO2-VISUALISATION" }, + }, + }, +}; + +export const STORIES_LAYER_REGION = { + type: "Vector", + properties: { + title: "Regions", + id: "regions", + description: "Ecological regions of the earth.", + }, + source: { + type: "Vector", + url: "https://openlayers.org/data/vector/ecoregions.json", + format: "GeoJSON", + attributions: "Regions: @ openlayers.org", + }, +}; + +export const STORIES_LAYER_S2 = { + type: "WebGLTile", + properties: { + id: "s2", + layerControlExclusive: true, + title: "s2", + }, + style: { + variables: { + red: 1, + green: 2, + blue: 3, + redMax: 3000, + greenMax: 3000, + blueMax: 3000, + }, + color: [ + "array", + ["/", ["band", ["var", "red"]], ["var", "redMax"]], + ["/", ["band", ["var", "green"]], ["var", "greenMax"]], + ["/", ["band", ["var", "blue"]], ["var", "blueMax"]], + 1, + ], + gamma: 1.1, + }, + source: { + type: "GeoTIFF", + normalize: false, + sources: [ + { + url: "https://s2downloads.eox.at/demo/EOxCloudless/2020/rgbnir/s2cloudless2020-16bits_sinlge-file_z0-4.tif", + }, + ], + }, +}; + +export const STORIES_LAYER_OSM = { + type: "Tile", + properties: { + id: "osm", + title: "Open Street Map", + layerControlExclusive: true, + }, + visible: false, + opacity: 0.5, + source: { + type: "OSM", + }, +}; + +export const STORIES_LAYER_TERRAIN_LIGHT = { + type: "Tile", + properties: { title: "Terrain Light" }, + source: { + type: "XYZ", + url: S2MAP_URL("terrain-light_3857"), + }, +}; + +export const STORIES_LAYER_EOX_CLOUDLESS_2019 = LAYER_EOX_CLOUDLESS("2019"); +export const STORIES_LAYER_EOX_CLOUDLESS_2020 = LAYER_EOX_CLOUDLESS("2020"); +export const STORIES_LAYER_EOX_CLOUDLESS_2021 = LAYER_EOX_CLOUDLESS("2021"); + +export const STORIES_MAIN_MAP_LAYERS = [ + { + type: "Group", + properties: { + id: "group2", + title: "Data Layers", + layerControlExpand: true, + description: "# Hello world", + }, + layers: [ + STORIES_LAYER_SENTINEL_HUB.wind, + STORIES_LAYER_SENTINEL_HUB.no2, + STORIES_LAYER_REGION, + ], + }, + { + type: "Group", + properties: { + id: "group1", + title: "Background Layers", + }, + layers: [STORIES_LAYER_S2, STORIES_LAYER_OSM], + }, +]; + +export const STORIES_LAYER_DEFORESTED_BIOMASS = { + type: "Tile", + properties: { + id: "customId", + title: "Tile XYZ", + layerControlToolsExpand: true, + layerConfig: { + schema: { + type: "object", + properties: { + vminmax: { + type: "object", + properties: { + vmin: { + type: "number", + minimum: 0, + maximum: 10, + format: "range", + }, + vmax: { + type: "number", + minimum: 0, + maximum: 10, + format: "range", + }, + }, + format: "minmax", + }, + cbar: { + type: "string", + enum: ["rain", "temperature"], + }, + }, + }, + }, + }, + source: { + type: "XYZ", + url: "https://reccap2.api.dev.brockmann-consult.de/api/tiles/cop28~reccap2-9x108x139-0.0.1.zarr/deforested_biomass/{z}/{y}/{x}?crs=EPSG:3857&time=2018-01-01T00:00:00Z&vmin=0&vmax=3&cbar=rain", + }, +}; + +const STYLES_LAYER_CROPOMHUSC2 = { + variables: { + vmin: 0, + vmax: 500, + crop: "Maize", + vstat: "average", + }, + "fill-color": [ + "case", + ["==", ["get", "water_need", ["var", "crop"], ["var", "vstat"]], "N/A"], + [253, 231, 37, 0.25], + [ + "interpolate", + ["linear"], + [ + "/", + [ + "-", + ["get", "water_need", ["var", "crop"], ["var", "vstat"]], + ["var", "vmin"], + ], + ["var", "vmax"], + ], + 0, + [68, 1, 84, 1], + 0.06666666666666667, + [70, 23, 103, 1], + 0.13333333333333333, + [71, 44, 122, 1], + 0.2, + [65, 63, 131, 1], + 0.26666666666666666, + [59, 81, 139, 1], + 0.3333333333333333, + [52, 97, 141, 1], + 0.4, + [44, 113, 142, 1], + 0.4666666666666667, + [39, 129, 142, 1], + 0.5333333333333333, + [33, 144, 141, 1], + 0.6, + [39, 173, 129, 1], + 0.6666666666666666, + [66, 187, 114, 1], + 0.7333333333333333, + [92, 200, 99, 1], + 0.8, + [131, 210, 75, 1], + 0.8666666666666667, + [170, 220, 50, 1], + 0.9333333333333333, + [212, 226, 44, 1], + 1, + [253, 231, 37, 1], + ], + ], + "stroke-color": "black", + "stroke-width": 1, +}; +const JSONFORM_SCHEMA_LAYER_CROPOMHUSC2 = { + type: "object", + title: "Data configuration", + properties: { + crop: { + title: "Crop", + type: "string", + enum: ["Maize", "Soybean", "Sunflower", "Wheat"], + default: "Maize", + }, + vstat: { + title: "Statistical value", + type: "string", + enum: ["average", "best", "worst"], + default: "average", + }, + vminmax: { + title: "Dynamic range", + description: "Water need [mm]", + type: "object", + properties: { + vmin: { + type: "number", + minimum: 0, + maximum: 800, + format: "range", + default: 0, + }, + vmax: { + type: "number", + minimum: 0, + maximum: 800, + format: "range", + default: 500, + }, + }, + format: "minmax", + }, + }, +}; + +export const STORIES_LAYER_CROPOMHUSC2 = { + type: "Vector", + source: { + type: "Vector", + url: + "data:," + + encodeURIComponent(JSON.stringify(FEATURE_COLLECTION_LAYER_CROPOMHUSC)), + format: "GeoJSON", + }, + properties: { + id: "id", + title: "Crop Yield Vector Example", + layerConfig: { + schema: JSONFORM_SCHEMA_LAYER_CROPOMHUSC2, + style: STYLES_LAYER_CROPOMHUSC2, + }, + }, +}; + +const LAYERCONFIG_LAYER_SEE = { + type: "style", + schema: { + type: "object", + title: "Data configuration", + properties: { + settlementDistance: { + type: "number", + minimum: 0, + maximum: 5000, + format: "range", + default: 0, + }, + vminmax: { + title: "Global horizontal irradiation", + description: "[kWh/m²/day]", + type: "object", + properties: { + vmin: { + type: "number", + minimum: 0, + maximum: 5, + format: "range", + default: 2, + }, + vmax: { + type: "number", + minimum: 0, + maximum: 5, + format: "range", + default: 5, + }, + }, + format: "minmax", + }, + }, + }, +}; + +const STYLES_LAYER_SEE = { + variables: { + vmin: 2, + vmax: 5, + settlementDistance: 0, + }, + color: [ + "case", + [ + "all", + [">", ["band", 1], 1], + [">=", ["band", 2], ["var", "settlementDistance"]], + ], + [ + "interpolate", + ["linear"], + [ + "/", + ["-", ["band", 1], ["var", "vmin"]], + ["-", ["var", "vmax"], ["var", "vmin"]], + ], + 0, + [68, 1, 84, 1], + 0.067, + [70, 23, 103, 1], + 0.133, + [71, 44, 122, 1], + 0.2, + [65, 63, 131, 1], + 0.266, + [59, 81, 139, 1], + 0.333, + [52, 97, 141, 1], + 0.4, + [44, 113, 142, 1], + 0.467, + [39, 129, 142, 1], + 0.533, + [33, 144, 141, 1], + 0.6, + [39, 173, 129, 1], + 0.666, + [66, 187, 114, 1], + 0.733, + [92, 200, 99, 1], + 0.8, + [131, 210, 75, 1], + 0.867, + [170, 220, 50, 1], + 0.933, + [212, 226, 44, 1], + 1, + [253, 231, 37, 1], + ], + ["color", 0, 0, 0, 0], + ], +}; + +export const STORIES_LAYER_SEE = { + type: "WebGLTile", + style: STYLES_LAYER_SEE, + properties: { + id: Symbol(), + title: "Solar Energy COG Example", + layerConfig: LAYERCONFIG_LAYER_SEE, + }, + source: { + type: "GeoTIFF", + normalize: false, + sources: [ + { + url: "https://eox-gtif-public.s3.eu-central-1.amazonaws.com/DHI/v2/SolarPowerPotential_Annual_COG_clipped_3857_fixed.tif", + }, + { + url: "https://eox-gtif-public.s3.eu-central-1.amazonaws.com/DHI/WSF_EucDist_Austria_3857_COG_fix.tif", + }, + ], + }, +}; diff --git a/elements/layercontrol/src/helpers/get-start-vals.js b/elements/layercontrol/src/helpers/get-start-vals.js index 01abc1b1d..f8e9a267b 100644 --- a/elements/layercontrol/src/helpers/get-start-vals.js +++ b/elements/layercontrol/src/helpers/get-start-vals.js @@ -1,11 +1,11 @@ /** - * Recursively traverses the schema object to extract startVals based on query parameters. + * Recursively traverses the schema object to extract startVals based on values of nested properties. * * @param {{[key: string]: any}} schema - The schema object to traverse. - * @param {{[key: string]: any}} queryParams - Query parameters to extract startVals. + * @param {{[key: string]: any}} nestedValues - values of nested properties to extract startVals. * @returns {object} - Object containing the startVals. */ -export function getNestedStartVals(schema, queryParams) { +export function getNestedStartVals(schema, nestedValues) { let startVals = {}; for (const key in schema) { @@ -15,12 +15,12 @@ export function getNestedStartVals(schema, queryParams) { if (type && type !== "object") { //@ts-ignore startVals[key] = - type === "number" ? Number(queryParams[key]) : queryParams[key]; + type === "number" ? Number(nestedValues[key]) : nestedValues[key]; } else if (typeof schema[key] === "object" && schema[key]?.properties) { // Recursively traverse nested properties const nestedStartVals = getNestedStartVals( schema[key].properties, - queryParams + nestedValues ); if (Object.keys(nestedStartVals).length > 0) { //@ts-ignore @@ -32,27 +32,41 @@ export function getNestedStartVals(schema, queryParams) { } /** - * Retrieves startVals from Query Params based on layer configuration. + * Retrieves startVals from Query Params or style variables based on layer configuration. * * @param {import("ol/layer").Layer} layer - The layer object. - * @param {{[key: string]: any}} layerConfig - Configuration object for the layer. + * @param {import("../components/layer-config").EOxLayerControlLayerConfig['layerConfig']} layerConfig - Configuration object for the layer. * @returns {object | null} - Object containing the startVals or null if not found. */ export function getStartVals(layer, layerConfig) { // Check for layer configuration and tile URL function availability - //@ts-ignore - if (!layerConfig || !layer.getSource().getTileUrlFunction()) return null; + if (!layerConfig) return null; - // Extract query parameters from tile URL - //@ts-ignore - const url = new URL(layer.getSource().getTileUrlFunction()([0, 0, 0])); + /** @type {Record}*/ + let nestedValues = {}; + // extract style variables from layer + let styleVars = + "updateStyleVariables" in layer + ? /** @type {import("ol/layer/WebGLTile").default} */ + (layer)["style_"]?.variables + : layerConfig.style?.variables; + if ((layerConfig.type === "style" || layerConfig.style) && styleVars) { + nestedValues = styleVars; + + //@ts-expect-error + } else if (layer.getSource()?.getTileUrlFunction?.()) { + // Extract query parameters from tile URL + //@ts-expect-error + const url = new URL(layer.getSource().getTileUrlFunction()([0, 0, 0])); + + // Retrieve startVals based on schema and query parameters + //@ts-expect-error + nestedValues = Object.fromEntries(url.searchParams.entries()); + } else return null; - // Retrieve startVals based on schema and query parameters - //@ts-ignore - const queryParams = Object.fromEntries(url.searchParams.entries()); const startVals = getNestedStartVals( layerConfig.schema?.properties || layerConfig.schema, - queryParams + nestedValues ); return Object.keys(startVals).length ? startVals : null; diff --git a/elements/layercontrol/src/methods/layer-config/apply-updated-styles.js b/elements/layercontrol/src/methods/layer-config/apply-updated-styles.js new file mode 100644 index 000000000..3982996da --- /dev/null +++ b/elements/layercontrol/src/methods/layer-config/apply-updated-styles.js @@ -0,0 +1,98 @@ +/** + * @param {Record} jsonformOutput + * @param { import("ol/layer/Layer").default} layer + * @param { import("../../components/layer-config").EOxLayerControlLayerConfig['layerConfig']} layerConfig + * */ +export default function (jsonformOutput, layer, layerConfig) { + // check whether the layer is Vector or Tile + const isTile = "updateStyleVariables" in layer; + const isVector = "setStyle" in layer; + + const styles = isTile + ? /** @type {import('ol/layer/WebGLTile').default} */ (layer)["style_"] + : layerConfig.style; + let styleVars = styles?.variables; + if (styleVars) { + const updatedValues = flattenObject(jsonformOutput); + /** @type {Record} */ + styles.variables = { + ...styleVars, + ...updatedValues, + }; + + // check if it supports updating the variables using ol first + if (isTile) { + /** @type {import('ol/layer/WebGLTile').default} */ ( + layer + ).updateStyleVariables(updatedValues); + } else if (isVector) { + const updatedStyles = updateVectorLayerStyle(styles); + /** @type {import('ol/layer/Vector').default} */ (layer).setStyle( + updatedStyles + ); + } + } +} + +/*** + * @param {Record} obj + **/ +const flattenObject = (obj) => { + /** + * the flattened object to be returned + * @type {Record} */ + const flat = {}; + // loop through the keys of the object + for (const key in obj) { + // if the property is of type object + if (typeof obj[key] == "object" && obj[key] !== null) { + // flatten it recursively + const flatObject = flattenObject( + /** @type {Record} */ (obj[key]) + ); + // assign all of its values to the flat object to be returned + for (const nestedKey in flatObject) { + flat[nestedKey] = flatObject?.[nestedKey]; + } + } else { + // the property is of a primitive value + // assign it to the object to be returned + flat[key] = obj?.[key]; + } + } + return flat; +}; + +/** + * updating the variables assigned in the layer style + * from the `styles.variables` property + * @param {Record} styles + * @returns + */ +function updateVectorLayerStyle(styles) { + // pass back flat style if contained in config + let returnStyle = styles; + // Check if variables are defined and need to be "burned in" first + if ("variables" in styles) { + // stringify all the styles to be able to search quickly + let rawStyle = JSON.stringify(styles); + // extract updated variables + const { variables } = styles; + // loop through the variables keys + for (const key in variables) { + // ol styles expects numbers to be assigned as typeof number + if (typeof variables[key] === "number") { + //@ts-expect-error ol styles expects number values to be assigned as type number + rawStyle = rawStyle.replaceAll(`["var","${key}"]`, variables[key]); + } else { + // replace all styles variables set of the specific key with the variables value + rawStyle = rawStyle.replaceAll( + `["var","${key}"]`, + `"${variables[key]}"` + ); + } + } + returnStyle = JSON.parse(rawStyle); + } + return returnStyle; +} diff --git a/elements/layercontrol/src/methods/layer-config/index.js b/elements/layercontrol/src/methods/layer-config/index.js index ed8868b20..b3f259cbd 100644 --- a/elements/layercontrol/src/methods/layer-config/index.js +++ b/elements/layercontrol/src/methods/layer-config/index.js @@ -1,3 +1,4 @@ // Importing methods from respective files and exporting them export { default as dataChangeMethod } from "./data-change"; // Handles data change with help of new tile url function +export { default as applyUpdatedStyles } from "./apply-updated-styles"; // Extracts values of layer styles variables from the jsonform output diff --git a/elements/layercontrol/stories/index.js b/elements/layercontrol/stories/index.js index 1cd8ca3bc..45cd9a779 100644 --- a/elements/layercontrol/stories/index.js +++ b/elements/layercontrol/stories/index.js @@ -7,6 +7,7 @@ export { default as OptionalLayersStory } from "./optional-layers"; export { default as ExpandedLayersStory } from "./expanded-layers"; export { default as ToolsStory } from "./tools"; export { default as LayerConfigStory } from "./layer-config"; +export { default as LayerStylesConfigStory } from "./layer-config-styles"; export { default as HiddenLayersStory } from "./hidden-layer"; export { default as SingleLayerStory } from "./single-layer"; export { default as LayerListStory } from "./layer-list"; diff --git a/elements/layercontrol/stories/layer-config-styles.js b/elements/layercontrol/stories/layer-config-styles.js new file mode 100644 index 000000000..e24890b16 --- /dev/null +++ b/elements/layercontrol/stories/layer-config-styles.js @@ -0,0 +1,40 @@ +import { html } from "lit"; +import { + STORIES_LAYER_CROPOMHUSC2, + STORIES_MAP_STYLE, + STORIES_LAYER_SEE, + STORIES_LAYER_TERRAIN_LIGHT, +} from "../src/enums"; + +// registering the projection of CROPOMHUSC2_VECTOR_CONFIG_STYLE_LAYER +setTimeout(async () => { + if (document.querySelector("eox-map#configReproject")) { + //@ts-expect-error EOX Map API + await document + .querySelector("eox-map#configReproject") + .registerProjectionFromCode(3035); + } +}); + +export default { + args: {}, + render: () => html` + +
+ + + `, +}; diff --git a/elements/layercontrol/stories/layercontrol.stories.js b/elements/layercontrol/stories/layercontrol.stories.js index 8e30c83e8..c8b15d1ee 100644 --- a/elements/layercontrol/stories/layercontrol.stories.js +++ b/elements/layercontrol/stories/layercontrol.stories.js @@ -3,6 +3,7 @@ import { ExpandedLayersStory, HiddenLayersStory, LayerConfigStory, + LayerStylesConfigStory, OptionalLayersStory, PrimaryStory, ToolsStory, @@ -60,6 +61,8 @@ export const Tools = ToolsStory; */ export const LayerConfig = LayerConfigStory; +export const LayerStylesConfig = LayerStylesConfigStory; + /** * By adding the `layerControlHide` property to map layers, * they aren't displayed in the layer control at all (but may