diff --git a/DESCRIPTION b/DESCRIPTION index df757804..2a52fd61 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: antaresViz Type: Package Title: Antares Visualizations -Version: 0.18.0 +Version: 0.18.1 Authors@R: c( person("Tatiana", "Vargas", email = "tatiana.vargas@rte-france.com", role = c("aut", "cre")), person("Jalal-Edine", "Zawam", role = "aut"), @@ -55,5 +55,6 @@ Suggests: hexbin, knitr, visNetwork, - rmarkdown + rmarkdown, + antaresEditObject VignetteBuilder: knitr diff --git a/NAMESPACE b/NAMESPACE index ac472e79..764dd74c 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -13,6 +13,7 @@ export(getInteractivity) export(leafletDragPointsOutput) export(limitSizeGraph) export(mapLayout) +export(mapLayout_no_interactive) export(modRpart) export(modXY) export(plotMap) @@ -56,6 +57,7 @@ importFrom(grDevices,rainbow) importFrom(grDevices,rgb) importFrom(graphics,par) importFrom(graphics,plot.default) +importFrom(methods,as) importFrom(methods,is) importFrom(plotly,add_bars) importFrom(plotly,add_heatmap) @@ -64,6 +66,7 @@ importFrom(plotly,add_trace) importFrom(plotly,config) importFrom(plotly,layout) importFrom(plotly,plot_ly) +importFrom(sf,st_read) importFrom(shiny,runApp) importFrom(stats,as.formula) importFrom(stats,density) diff --git a/NEWS.md b/NEWS.md index ee6a7218..f44e5ac3 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,10 @@ Copyright 2016 RTE Reseau de transport d'electricite +# antaresViz 0.18.1 + +## new feature : +* `mapLayout_no_interactive()` make an object of class "mapLayout" from external geojson file + # antaresViz 0.18.0 * fix deprecated dependencies (issue #200) * packages `rgeos`, `raster` removed and replaced by `sf` diff --git a/R/map_layout.R b/R/map_layout.R index 8509562d..78b8e0ec 100644 --- a/R/map_layout.R +++ b/R/map_layout.R @@ -646,3 +646,136 @@ plot.mapLayout <- function(x, colAreas = x$coords$color, dataAreas = 1, # Add shadows to elements map %>% addShadows() } + + + + + +utils::globalVariables("from") + +#' @title Build a `mapLayout` object with gesojson file +#' +#' @description +#' +#' This function creates a 'mapLayout' object from a study and an external +#' 'geojson' file. +#' +#' This function should be used only once per study. +#' +#' The result should then be saved in an external file and be reused. +#' +#' @param path_geojson_file `character` path of geojson file +#' @param opts list of simulation parameters returned by +#' the function \code{\link[antaresRead]{setSimulationPath}} +#' +#' @importFrom methods as +#' @importFrom sf st_read +#' +#' @export +#' @note The 'geojson' file must contain zones compatible with the study. +#' +#' @return Object of class "mapLayout" +#' +#' @examples +#' \dontrun{ +#' # set informations to your study ("input" mode is enough) +#' setSimulationPath(path = "path/my_study", simulation = "input") +#' +#' path_geojson <- "path/my_geosjonfile.geojson" +#' +#' mapLayout_no_interactive(path_geojson_file = path_geojson) +#' +#' } +mapLayout_no_interactive <- function(path_geojson_file, + opts = simOptions()){ + # check parameters + assertthat::assert_that(inherits(path_geojson_file, "character")) + assertthat::assert_that(inherits(opts, "simOptions")) + + # read file + sf_object <- st_read(path_geojson_file) + + # check geojson file + if(!"name"%in%names(sf_object)) + stop("geosjon file must have key 'name'", + call. = FALSE) + if(!all(c("Lat", "Long")%in%names(sf_object))) + stop("geosjon file must have key {'Lat;'Long'}", + call. = FALSE) + + # check areas if compatible with geojson file + areas_names <- getAreas() + if(!any(areas_names%in%tolower(sf_object$name))) + stop("study must have areas according to geojson file", + call. = FALSE) + + cat("\nstudy compatible with geojson file\n") + + # conversion to "sp" class + geojson_as_sp <- as(sf_object, "Spatial") + + ## + # build "mapLayout" object + ## + all_coords <- data.table( + area = tolower(geojson_as_sp@data$name), + x = geojson_as_sp@data$Long, + y = geojson_as_sp@data$Lat, + color = rep("#0080FF", times = length(geojson_as_sp@data$name)), + geoAreaId = seq(seq_along(geojson_as_sp@data$name)) + ) + + # keep area and id + zone_geoArea_table <- data.frame( + ZONE = all_coords$area, + geoAreaId = all_coords$geoAreaId + ) + + # update "SpatialPolygonsDataFrame" object + geojson_as_sp@data<-zone_geoArea_table + + setcolorder(all_coords, c("area", "x", "y", "color", "geoAreaId")) + + ## + # Manage study's links + ## + links <- data.table( + opts$linksDef + ) + + if(nrow(links) %in% 0) + stop("no links are found in study", + call. = FALSE) + + # keep links according to your study + links <- links[from %in% all_coords$area & to %in% all_coords$area] + + # add coordonates links "from" + links <- merge( + x = links, + y = all_coords[, list(from = area, x0 = x, y0 = y)], + by = "from" + ) + + # add coordonates links "to" + links <- merge( + x = links, + y = all_coords[, list(to = area, x1 = x, y1 = y)], + by = "to" + ) + + setcolorder(links, c("link", "from", "to", "x0", "y0", "x1", "y1")) + + # final object + zone_layout <- list( + coords = all_coords, + links = links, + map = geojson_as_sp, + all_coords = all_coords + ) + + class(zone_layout) <- "mapLayout" + attr(zone_layout, "type") <- "areas" + + return(zone_layout) +} diff --git a/inst/mapLayout/filter_zonal.geojson b/inst/mapLayout/filter_zonal.geojson new file mode 100644 index 00000000..a3e95505 --- /dev/null +++ b/inst/mapLayout/filter_zonal.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"NUTS_ID":"FR_C2","Couleur":2,"name":"21_FR","LONG":3904086,"LAT":2734853,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":47.6015,"Long":4.4568},"geometry":{"type":"MultiPolygon","coordinates":[[[[5.0128,48.9368],[5.0593,48.9096],[5.0663,48.8746],[5.0733,48.8373],[5.0733,48.7813],[5.0733,48.723],[5.0639,48.674],[5.0533,48.6339],[5.0578,48.6296],[5.0596,48.6127],[5.0703,48.5959],[5.0942,48.5929],[5.1194,48.5957],[5.1181,48.5848],[5.1466,48.5604],[5.168,48.5646],[5.174,48.5557],[5.197,48.5467],[5.1951,48.5378],[5.2078,48.5386],[5.2122,48.5288],[5.2219,48.5265],[5.2272,48.5318],[5.2713,48.5138],[5.2866,48.5152],[5.2957,48.5084],[5.3056,48.5158],[5.314,48.5096],[5.3284,48.5097],[5.3287,48.503],[5.3576,48.4779],[5.379,48.4715],[5.3977,48.4738],[5.406,48.4654],[5.4033,48.4542],[5.4094,48.4447],[5.4333,48.4321],[5.4381,48.4355],[5.4508,48.4227],[5.4647,48.4254],[5.47,48.4209],[5.4462,48.4151],[5.4211,48.3958],[5.3938,48.3916],[5.4077,48.3828],[5.4429,48.3794],[5.4186,48.3607],[5.4226,48.3514],[5.417,48.3428],[5.426,48.3311],[5.445,48.3373],[5.4617,48.3517],[5.4686,48.3491],[5.4803,48.3563],[5.5265,48.3469],[5.5224,48.3413],[5.5242,48.3342],[5.5376,48.3181],[5.5888,48.2752],[5.6116,48.2918],[5.6432,48.2751],[5.6538,48.2685],[5.6511,48.2566],[5.6409,48.2424],[5.6763,48.229],[5.6878,48.2342],[5.7156,48.2166],[5.7301,48.1983],[5.731,48.1897],[5.7022,48.1904],[5.6799,48.1794],[5.6867,48.1672],[5.6854,48.1474],[5.6772,48.145],[5.6767,48.1363],[5.6625,48.1288],[5.6566,48.1206],[5.668,48.1158],[5.6721,48.1095],[5.6494,48.1051],[5.6377,48.0978],[5.6378,48.0921],[5.6299,48.0844],[5.6588,48.0689],[5.6609,48.0728],[5.6529,48.0804],[5.656,48.0851],[5.6738,48.0789],[5.6811,48.0808],[5.6891,48.0753],[5.6963,48.0776],[5.699,48.0668],[5.7156,48.0597],[5.7206,48.0443],[5.7404,48.05],[5.764,48.0348],[5.7647,48.0301],[5.7768,48.0337],[5.7764,48.0224],[5.7854,48.013],[5.7867,48.0026],[5.7945,47.9983],[5.793,47.987],[5.7785,47.978],[5.7871,47.953],[5.8053,47.947],[5.8152,47.9572],[5.8317,47.958],[5.8458,47.9757],[5.8467,47.9696],[5.8536,47.9699],[5.8542,47.9661],[5.8492,47.9643],[5.8532,47.9504],[5.8576,47.9451],[5.8684,47.945],[5.8847,47.9261],[5.8905,47.9098],[5.8865,47.9026],[5.8704,47.9007],[5.8496,47.9053],[5.8375,47.8912],[5.8384,47.8858],[5.8215,47.8704],[5.8261,47.8572],[5.818,47.8524],[5.8289,47.8559],[5.8285,47.852],[5.7965,47.8467],[5.7989,47.8557],[5.767,47.8558],[5.7612,47.8594],[5.7442,47.8489],[5.7476,47.8285],[5.7423,47.8197],[5.7314,47.8176],[5.6998,47.8238],[5.69,47.819],[5.6819,47.8086],[5.6766,47.7792],[5.6823,47.7754],[5.68,47.77],[5.7075,47.7675],[5.7094,47.745],[5.69,47.7346],[5.6888,47.7304],[5.6959,47.7252],[5.6852,47.7227],[5.6881,47.7193],[5.6836,47.7169],[5.6931,47.7052],[5.6951,47.6943],[5.6911,47.685],[5.6804,47.6862],[5.6722,47.6819],[5.6597,47.6846],[5.6476,47.6754],[5.6012,47.6752],[5.5968,47.6717],[5.5849,47.6906],[5.5848,47.7002],[5.5674,47.7071],[5.5296,47.6729],[5.5121,47.6736],[5.4828,47.6847],[5.4709,47.6754],[5.4465,47.6708],[5.4203,47.6775],[5.4065,47.6736],[5.3985,47.6492],[5.4055,47.6467],[5.386,47.6351],[5.373,47.619],[5.3741,47.6045],[5.3871,47.6003],[5.3904,47.5942],[5.3998,47.5972],[5.4256,47.6321],[5.4416,47.6299],[5.4711,47.6082],[5.4779,47.6081],[5.4881,47.5772],[5.4804,47.5644],[5.4913,47.5634],[5.497,47.5542],[5.4969,47.5444],[5.4864,47.527],[5.4717,47.5275],[5.4475,47.4962],[5.4364,47.4904],[5.4293,47.4924],[5.4346,47.4946],[5.4316,47.4979],[5.3992,47.499],[5.3871,47.4806],[5.4076,47.4772],[5.376,47.4648],[5.3672,47.4651],[5.3856,47.4595],[5.3796,47.4506],[5.4062,47.4617],[5.4157,47.4583],[5.4134,47.4552],[5.4185,47.449],[5.4402,47.4488],[5.4312,47.4361],[5.4304,47.4214],[5.4443,47.4046],[5.436,47.4029],[5.4338,47.3931],[5.4534,47.3845],[5.4771,47.3951],[5.4956,47.3875],[5.488,47.3614],[5.4951,47.3436],[5.4929,47.3324],[5.4872,47.3266],[5.4766,47.331],[5.4761,47.3211],[5.4692,47.3171],[5.5036,47.3136],[5.5051,47.3085],[5.5185,47.3042],[5.5082,47.2929],[5.5056,47.2834],[5.4884,47.2892],[5.4882,47.2682],[5.4787,47.2563],[5.4859,47.2508],[5.4861,47.2434],[5.474,47.2309],[5.4804,47.2183],[5.445,47.1994],[5.4559,47.1922],[5.4592,47.1827],[5.4508,47.1618],[5.4383,47.1533],[5.4383,47.1417],[5.4087,47.1267],[5.4103,47.1137],[5.3982,47.1054],[5.3989,47.0957],[5.3858,47.0818],[5.3266,47.0752],[5.3109,47.0579],[5.3059,47.0629],[5.2844,47.0482],[5.2753,47.0269],[5.3155,47.0165],[5.3182,47.0125],[5.3032,47.012],[5.3045,47.006],[5.3005,47.0019],[5.2743,46.9983],[5.2745,46.9914],[5.2552,46.9799],[5.2544,46.9711],[5.2631,46.9644],[5.2631,46.9522],[5.261,46.9466],[5.254,46.9482],[5.2513,46.9446],[5.2638,46.9376],[5.262,46.9274],[5.2701,46.9281],[5.2834,46.94],[5.3066,46.9387],[5.3124,46.9103],[5.328,46.8984],[5.3291,46.8881],[5.3355,46.8847],[5.351,46.8933],[5.3618,46.883],[5.3897,46.8941],[5.3983,46.8924],[5.4037,46.8894],[5.4,46.881],[5.4045,46.8795],[5.4052,46.8723],[5.4017,46.8687],[5.4314,46.8599],[5.4442,46.8518],[5.4491,46.8562],[5.439,46.8555],[5.4342,46.8612],[5.4593,46.8553],[5.457,46.8457],[5.465,46.8407],[5.4568,46.8305],[5.4463,46.8279],[5.4297,46.8259],[5.4034,46.8325],[5.3865,46.8263],[5.3698,46.826],[5.3513,46.8136],[5.3453,46.8159],[5.3471,46.819],[5.34,46.8259],[5.342,46.8199],[5.3277,46.8153],[5.3335,46.7956],[5.3405,46.7908],[5.3528,46.7931],[5.3642,46.7833],[5.3708,46.7861],[5.3712,46.777],[5.3854,46.7752],[5.3902,46.7706],[5.373,46.7507],[5.3668,46.7524],[5.361,46.7311],[5.3865,46.731],[5.3956,46.7221],[5.3949,46.708],[5.4066,46.7039],[5.4084,46.6984],[5.3954,46.6851],[5.4221,46.673],[5.4188,46.668],[5.4271,46.6602],[5.4136,46.6537],[5.4411,46.6373],[5.4369,46.6292],[5.4176,46.6157],[5.3959,46.6106],[5.404,46.6102],[5.414,46.6002],[5.4047,46.5821],[5.3696,46.5805],[5.3621,46.5773],[5.3679,46.567],[5.3562,46.562],[5.3626,46.5517],[5.3583,46.5194],[5.3844,46.5156],[5.3924,46.5082],[5.409,46.5],[5.4213,46.5011],[5.4201,46.4802],[5.4148,46.4726],[5.3981,46.4666],[5.3836,46.4708],[5.3729,46.4601],[5.359,46.4642],[5.3466,46.4608],[5.3233,46.4625],[5.3231,46.4565],[5.3126,46.4529],[5.3106,46.4468],[5.2904,46.4498],[5.2834,46.4458],[5.2574,46.45],[5.2543,46.4558],[5.2417,46.4612],[5.2353,46.4579],[5.2253,46.4683],[5.2151,46.4684],[5.2105,46.4788],[5.2138,46.484],[5.2059,46.4865],[5.2075,46.4928],[5.2005,46.5026],[5.202,46.508],[5.1816,46.5098],[5.168,46.5187],[5.1663,46.5033],[5.1353,46.5089],[5.1371,46.5027],[5.1147,46.4929],[5.108,46.4917],[5.0965,46.4998],[5.0871,46.4907],[5.0567,46.484],[5.0142,46.5005],[5.0106,46.5111],[4.9833,46.5154],[4.964,46.5129],[4.9709,46.5061],[4.9608,46.5081],[4.9511,46.5005],[4.9442,46.5053],[4.9444,46.5109],[4.9541,46.5132],[4.9446,46.5144],[4.9413,46.5195],[4.9419,46.5122],[4.9336,46.5125],[4.9277,46.4992],[4.9149,46.4857],[4.9145,46.4622],[4.8929,46.4426],[4.8875,46.4027],[4.8515,46.3564],[4.8534,46.3301],[4.8329,46.2994],[4.825,46.2732],[4.8119,46.2616],[4.8079,46.2375],[4.7955,46.2201],[4.7931,46.2019],[4.7802,46.1889],[4.7802,46.1767],[4.7615,46.1763],[4.7583,46.1722],[4.7282,46.1787],[4.7284,46.1842],[4.7244,46.1843],[4.7201,46.1943],[4.721,46.2009],[4.7275,46.2076],[4.7343,46.2068],[4.7357,46.2117],[4.7289,46.2143],[4.7307,46.2188],[4.7206,46.2216],[4.7226,46.2261],[4.7195,46.2279],[4.7325,46.2269],[4.736,46.2339],[4.7053,46.2511],[4.6894,46.2491],[4.688,46.2543],[4.6816,46.2558],[4.681,46.2658],[4.688,46.2656],[4.6931,46.2716],[4.7007,46.2675],[4.7074,46.2698],[4.7103,46.2784],[4.6952,46.2919],[4.6909,46.3013],[4.6796,46.3062],[4.6641,46.2952],[4.6527,46.304],[4.6362,46.3002],[4.636,46.2902],[4.6165,46.282],[4.622,46.2705],[4.6186,46.2648],[4.5833,46.2694],[4.5728,46.2764],[4.5703,46.293],[4.5617,46.2946],[4.548,46.2847],[4.5464,46.2739],[4.504,46.2671],[4.4885,46.288],[4.4753,46.2843],[4.4585,46.2969],[4.4395,46.2931],[4.4378,46.2981],[4.427,46.3028],[4.4228,46.2952],[4.4064,46.294],[4.3976,46.2829],[4.3983,46.2762],[4.3894,46.2579],[4.3923,46.2519],[4.3856,46.2462],[4.3921,46.2367],[4.387,46.2326],[4.3881,46.2198],[4.3889,46.213],[4.3753,46.2112],[4.3733,46.2047],[4.3629,46.2001],[4.3625,46.1952],[4.3737,46.187],[4.3708,46.1843],[4.3595,46.1821],[4.3462,46.1877],[4.3363,46.1811],[4.3266,46.1849],[4.3158,46.1707],[4.3074,46.1744],[4.292,46.1723],[4.2873,46.1603],[4.2808,46.156],[4.25,46.1584],[4.2504,46.1647],[4.2635,46.176],[4.2551,46.1878],[4.243,46.1881],[4.225,46.1776],[4.2078,46.1948],[4.1849,46.1888],[4.1867,46.1746],[4.1643,46.173],[4.1334,46.1773],[4.1038,46.1984],[4.0693,46.1864],[4.06,46.1885],[4.0289,46.1692],[3.9934,46.1727],[3.9902,46.1692],[3.9796,46.1788],[3.9781,46.1858],[3.9711,46.1889],[3.9723,46.2027],[3.9335,46.2064],[3.9181,46.2029],[3.8901,46.2145],[3.8979,46.2249],[3.8975,46.2393],[3.905,46.238],[3.9076,46.2419],[3.9055,46.2521],[3.9088,46.2606],[3.9049,46.2731],[3.8995,46.2759],[3.8913,46.2852],[3.8973,46.2925],[3.9455,46.3005],[3.9494,46.3141],[3.9463,46.3214],[3.9713,46.3215],[3.9877,46.3149],[3.9886,46.3225],[4.0053,46.3274],[3.9848,46.3296],[3.9915,46.3709],[3.9838,46.3789],[3.9772,46.3993],[3.9886,46.4087],[3.985,46.4206],[3.996,46.4264],[3.9887,46.437],[4.0057,46.4429],[3.9973,46.4509],[4.0009,46.4623],[3.9752,46.4795],[3.9551,46.4769],[3.9522,46.4816],[3.958,46.4905],[3.9502,46.4923],[3.9094,46.4952],[3.895,46.4807],[3.8651,46.4897],[3.8604,46.4951],[3.8639,46.5125],[3.8408,46.515],[3.8464,46.5246],[3.8383,46.5315],[3.8031,46.5196],[3.7937,46.5277],[3.7807,46.5284],[3.7722,46.5386],[3.7547,46.5361],[3.7422,46.5394],[3.7317,46.549],[3.7433,46.567],[3.734,46.5947],[3.7374,46.6012],[3.7129,46.6103],[3.724,46.6264],[3.7089,46.6358],[3.6976,46.6597],[3.6697,46.6727],[3.6707,46.6837],[3.6555,46.6878],[3.6509,46.705],[3.6376,46.7075],[3.6376,46.7246],[3.6227,46.7397],[3.6294,46.7495],[3.6408,46.7391],[3.6478,46.7426],[3.6597,46.7375],[3.739,46.7522],[3.7837,46.7361],[3.7773,46.7292],[3.7889,46.7207],[3.7977,46.7016],[3.8289,46.7045],[3.8409,46.7179],[3.8448,46.7173],[3.8451,46.7226],[3.8724,46.7257],[3.8764,46.7323],[3.8869,46.7273],[3.8935,46.7327],[3.9126,46.7342],[3.9126,46.7411],[3.928,46.7397],[3.9342,46.743],[3.9288,46.7514],[3.9537,46.7543],[3.9667,46.7689],[3.9732,46.7674],[3.9941,46.7786],[4.0191,46.7762],[4.0338,46.7877],[4.0479,46.7789],[4.0588,46.7814],[4.0627,46.7889],[4.0579,46.8216],[4.0427,46.8348],[4.1009,46.8591],[4.1003,46.864],[4.0942,46.8742],[4.0665,46.8979],[4.0454,46.8998],[4.0356,46.9214],[4.0421,46.9329],[4.0479,46.932],[4.0394,46.9464],[4.0407,46.9504],[4.0556,46.9567],[4.0408,46.9743],[4.0394,46.985],[4.0315,46.9848],[4.0164,46.9729],[3.9973,46.9742],[3.9938,46.9787],[3.996,46.9867],[4.0316,46.9984],[4.0431,47.0088],[4.0557,47.0129],[4.0616,47.0233],[4.0561,47.0371],[4.0734,47.0559],[4.0384,47.0811],[4.039,47.0859],[4.0534,47.095],[4.0532,47.1038],[4.048,47.1094],[4.051,47.113],[4.0607,47.1212],[4.0911,47.1166],[4.094,47.1288],[4.1102,47.1182],[4.116,47.1233],[4.1071,47.1299],[4.1169,47.1319],[4.1163,47.1384],[4.1107,47.1424],[4.1157,47.146],[4.1445,47.1429],[4.1819,47.1505],[4.1859,47.1527],[4.1959,47.1476],[4.2004,47.1542],[4.2098,47.1554],[4.2083,47.1641],[4.2133,47.1759],[4.2102,47.1798],[4.2309,47.1954],[4.2258,47.2073],[4.2287,47.2082],[4.2213,47.2138],[4.2212,47.2196],[4.1926,47.2343],[4.179,47.2544],[4.1346,47.2395],[4.1259,47.2473],[4.1261,47.2591],[4.1203,47.2686],[4.125,47.2736],[4.1166,47.2762],[4.1146,47.2926],[4.1339,47.3065],[4.1238,47.3037],[4.1143,47.3082],[4.1276,47.316],[4.1304,47.3206],[4.1241,47.3278],[4.1249,47.3359],[4.1433,47.3543],[4.1379,47.3573],[4.13,47.3539],[4.113,47.3343],[4.1062,47.3355],[4.1061,47.3393],[4.0451,47.3404],[4.0419,47.329],[4.0285,47.3247],[4.0273,47.3135],[4.0088,47.3149],[4.0028,47.3106],[3.9733,47.3318],[3.9675,47.3636],[3.9618,47.3668],[3.9732,47.3728],[3.9605,47.3858],[3.9491,47.3944],[3.9442,47.3803],[3.9088,47.3821],[3.8867,47.3646],[3.8722,47.3659],[3.8682,47.373],[3.8697,47.3805],[3.8599,47.3874],[3.8595,47.3927],[3.8654,47.3978],[3.877,47.3975],[3.8938,47.4138],[3.8918,47.4195],[3.8816,47.4232],[3.8799,47.4298],[3.8513,47.4356],[3.8475,47.4123],[3.8346,47.4015],[3.8353,47.406],[3.8305,47.408],[3.8208,47.4017],[3.8312,47.3926],[3.8274,47.3894],[3.8281,47.382],[3.8161,47.3788],[3.8016,47.3896],[3.7856,47.3903],[3.7843,47.4052],[3.7746,47.4062],[3.7689,47.401],[3.741,47.3966],[3.7266,47.3982],[3.7173,47.4027],[3.7187,47.4059],[3.7017,47.427],[3.674,47.4335],[3.6778,47.4448],[3.6736,47.4502],[3.6671,47.4461],[3.6342,47.4561],[3.6216,47.4556],[3.616,47.4574],[3.6176,47.4647],[3.6114,47.4667],[3.6003,47.4654],[3.5955,47.4574],[3.5871,47.4562],[3.5882,47.4623],[3.5794,47.4659],[3.5799,47.4787],[3.5757,47.4832],[3.5805,47.4979],[3.5526,47.5025],[3.5387,47.5164],[3.5137,47.5276],[3.5108,47.5505],[3.4984,47.5609],[3.492,47.56],[3.4951,47.5214],[3.4883,47.4938],[3.4616,47.5015],[3.4501,47.5002],[3.4468,47.5116],[3.4291,47.5064],[3.3911,47.5091],[3.3908,47.4976],[3.3799,47.4864],[3.3703,47.4882],[3.356,47.4791],[3.3459,47.4787],[3.3465,47.4697],[3.3381,47.4704],[3.3402,47.4808],[3.3262,47.4834],[3.307,47.4945],[3.2963,47.492],[3.2852,47.5039],[3.2752,47.4909],[3.2361,47.4884],[3.2256,47.5043],[3.2045,47.5232],[3.1914,47.5206],[3.186,47.5254],[3.1816,47.5184],[3.1652,47.5175],[3.1622,47.5243],[3.15,47.5285],[3.1342,47.5426],[3.123,47.5394],[3.1163,47.5693],[3.1238,47.5763],[3.1016,47.588],[3.0805,47.5853],[3.0605,47.5694],[3.0353,47.5642],[3.0221,47.5563],[2.9899,47.5687],[2.9765,47.5694],[2.9746,47.5735],[2.9628,47.5762],[2.9626,47.5854],[2.9365,47.5997],[2.9449,47.6086],[2.9323,47.627],[2.9361,47.6364],[2.9542,47.6457],[2.9416,47.6575],[2.9281,47.6582],[2.9181,47.6698],[2.9266,47.6821],[2.8794,47.7038],[2.8846,47.7137],[2.8787,47.7201],[2.8611,47.7102],[2.849,47.7169],[2.8525,47.7216],[2.8486,47.7258],[2.853,47.728],[2.8504,47.7329],[2.8591,47.7498],[2.8523,47.7574],[2.8705,47.7649],[2.8967,47.7644],[2.9097,47.7693],[2.9306,47.7623],[2.9491,47.7659],[2.9554,47.7756],[2.9874,47.7857],[3.0251,47.7875],[3.0282,47.8015],[3.0243,47.8131],[3.0155,47.8135],[3.0216,47.8181],[3.0145,47.8221],[3.013,47.8339],[3.0296,47.8352],[3.0314,47.8509],[3.0233,47.861],[2.9949,47.8674],[3.0119,47.874],[3.0072,47.8953],[3.0166,47.8987],[3.0099,47.9056],[3.0504,47.9109],[3.0512,47.9242],[3.0777,47.9313],[3.0845,47.9427],[3.0985,47.9487],[3.1053,47.9469],[3.1114,47.9579],[3.1098,47.9623],[3.1282,47.9707],[3.1289,47.9835],[3.1205,47.9863],[3.1248,47.9917],[3.1207,48.0028],[3.1244,48.0068],[3.1155,48.0128],[3.1047,48.0132],[3.0998,48.0208],[3.1141,48.0274],[3.12,48.026],[3.1242,48.0311],[3.0952,48.0403],[3.0897,48.0491],[3.0953,48.054],[3.0609,48.0643],[3.0505,48.0723],[3.0503,48.0911],[3.0383,48.0994],[3.0352,48.1157],[3.0159,48.1157],[3.0294,48.1332],[3.01,48.1456],[2.9948,48.1416],[2.9901,48.1526],[2.9806,48.1538],[2.9802,48.1496],[2.9636,48.1529],[2.9531,48.1649],[2.9363,48.1634],[2.934,48.1757],[2.9369,48.1827],[2.9554,48.1925],[2.9709,48.1942],[2.9735,48.2055],[2.989,48.209],[2.9929,48.2045],[3.0047,48.207],[3.011,48.2203],[3.0227,48.2304],[3.019,48.2355],[3.032,48.2489],[3.0476,48.2497],[3.0427,48.2625],[3.0453,48.2711],[3.0247,48.2756],[3.0297,48.2854],[3.0188,48.2947],[3.0276,48.3027],[3.0157,48.3073],[3.0435,48.3306],[3.0366,48.3395],[3.0494,48.36],[3.0992,48.3578],[3.1034,48.3495],[3.1224,48.3686],[3.1398,48.3726],[3.147,48.3659],[3.153,48.371],[3.1667,48.3707],[3.1718,48.3777],[3.1803,48.3753],[3.1849,48.3681],[3.1908,48.3708],[3.2005,48.3635],[3.2296,48.3706],[3.2541,48.365],[3.268,48.3781],[3.282,48.3775],[3.2832,48.3814],[3.2911,48.3798],[3.29,48.376],[3.2985,48.3787],[3.3053,48.3729],[3.3136,48.3767],[3.3356,48.3706],[3.3482,48.3734],[3.3513,48.3786],[3.3565,48.3785],[3.3564,48.3714],[3.3641,48.3724],[3.3624,48.3804],[3.3669,48.3936],[3.3837,48.4],[3.402,48.39],[3.4148,48.3903],[3.422,48.416],[3.404,48.415],[3.4118,48.4213],[3.3921,48.4242],[3.4044,48.4404],[3.4057,48.4533],[3.3941,48.4634],[3.4001,48.4676],[3.3835,48.4798],[3.4048,48.4885],[3.4137,48.4865],[3.4216,48.4922],[3.4334,48.4904],[3.4349,48.4973],[3.4239,48.5143],[3.4054,48.528],[3.4146,48.5338],[3.4507,48.5287],[3.4809,48.5414],[3.4792,48.5455],[3.4856,48.5475],[3.4763,48.5523],[3.4768,48.5576],[3.4655,48.5705],[3.4853,48.5805],[3.4938,48.5902],[3.5154,48.5898],[3.5034,48.6045],[3.5353,48.6104],[3.5415,48.616],[3.5576,48.6161],[3.5557,48.6207],[3.5635,48.6125],[3.5642,48.6034],[3.5799,48.6049],[3.5826,48.5855],[3.5927,48.5876],[3.6021,48.5801],[3.6042,48.5725],[3.6199,48.58],[3.6263,48.5776],[3.6331,48.569],[3.6288,48.5622],[3.6323,48.5439],[3.6396,48.5383],[3.6443,48.5404],[3.6436,48.5363],[3.6509,48.5391],[3.6587,48.5344],[3.6881,48.5395],[3.7048,48.5339],[3.7347,48.5387],[3.7665,48.5275],[3.7976,48.5287],[3.8259,48.5152],[3.8516,48.5237],[3.8652,48.5376],[3.8662,48.5436],[3.86,48.5436],[3.8587,48.56],[3.8647,48.5687],[3.8632,48.5721],[3.8562,48.5716],[3.8539,48.58],[3.8719,48.5811],[3.9002,48.5754],[3.9012,48.5796],[3.8972,48.5799],[3.9057,48.5873],[3.9084,48.6018],[3.9156,48.6023],[3.9163,48.6069],[3.9492,48.6034],[3.9583,48.6225],[3.9682,48.6316],[3.9704,48.627],[3.9777,48.6258],[3.9848,48.6535],[4.0017,48.6639],[4.0301,48.6594],[4.0443,48.661],[4.0536,48.6683],[4.0585,48.6667],[4.0689,48.6791],[4.0629,48.6823],[4.0646,48.6864],[4.0798,48.7011],[4.1311,48.6862],[4.1488,48.7004],[4.1654,48.7072],[4.233,48.7023],[4.2431,48.7167],[4.2523,48.7089],[4.2647,48.7062],[4.2993,48.7145],[4.3076,48.709],[4.3117,48.7111],[4.325,48.7009],[4.3281,48.6931],[4.3226,48.6826],[4.3299,48.6811],[4.3338,48.6746],[4.3228,48.6638],[4.3277,48.6563],[4.3175,48.6515],[4.3336,48.632],[4.3149,48.6162],[4.3308,48.6018],[4.3496,48.5979],[4.398,48.5637],[4.4192,48.5551],[4.4706,48.547],[4.4942,48.5387],[4.511,48.5478],[4.5219,48.5451],[4.5226,48.5397],[4.5284,48.5402],[4.5257,48.5284],[4.5455,48.5253],[4.5484,48.5363],[4.5746,48.5498],[4.5909,48.548],[4.5947,48.5522],[4.6434,48.5538],[4.6351,48.5512],[4.635,48.5445],[4.6495,48.5409],[4.651,48.537],[4.6658,48.5379],[4.6702,48.5319],[4.6749,48.5376],[4.7072,48.5371],[4.7178,48.5419],[4.7992,48.5298],[4.783,48.554],[4.796,48.5679],[4.7757,48.5664],[4.764,48.5943],[4.775,48.5929],[4.7843,48.5994],[4.8035,48.5968],[4.8296,48.6125],[4.8569,48.6122],[4.8577,48.6153],[4.8519,48.6157],[4.8486,48.6285],[4.8535,48.635],[4.839,48.6458],[4.8414,48.6492],[4.8085,48.6553],[4.7719,48.6519],[4.7817,48.6702],[4.7952,48.6695],[4.7983,48.6775],[4.8179,48.6803],[4.8248,48.673],[4.8434,48.6736],[4.8502,48.6678],[4.8678,48.6672],[4.911,48.6889],[4.9387,48.6748],[4.9506,48.689],[4.9552,48.6848],[4.9763,48.6891],[4.9884,48.6844],[4.99,48.693],[4.9955,48.692],[5.0064,48.6989],[4.9978,48.7098],[5.0113,48.7069],[5.016,48.7095],[5.0112,48.7179],[5.0047,48.7191],[5.0096,48.7292],[5.0058,48.735],[5.0092,48.7414],[4.9813,48.7457],[4.9718,48.7579],[4.9507,48.7687],[4.9377,48.7827],[4.9364,48.7897],[4.8888,48.8002],[4.8965,48.8088],[4.8887,48.8172],[4.9147,48.8351],[4.937,48.8431],[4.9374,48.8481],[4.9279,48.8496],[4.9303,48.8557],[4.9233,48.8577],[4.923,48.8642],[4.9116,48.8686],[4.9245,48.8909],[4.9125,48.8982],[4.9338,48.9128],[4.9399,48.9255],[4.9509,48.9309],[4.9596,48.9261],[4.9984,48.9378],[5.0128,48.9368]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C15","Couleur":1,"name":"24_FR","Lat":47.7119,"Long":-0.1262},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.9527,47.4518],[-0.9679,47.468],[-0.9675,47.4742],[-0.959,47.4812],[-0.9662,47.4923],[-1.006,47.4881],[-1.0392,47.5053],[-1.1078,47.5009],[-1.1575,47.5104],[-1.1605,47.5217],[-1.1699,47.5295],[-1.1516,47.5401],[-1.1783,47.548],[-1.1729,47.5728],[-1.1093,47.5652],[-1.0657,47.5671],[-1.042,47.562],[-1.0438,47.5678],[-1.0193,47.5769],[-1.007,47.5888],[-1.037,47.6024],[-1.058,47.6014],[-1.0785,47.6068],[-1.0994,47.6206],[-1.1371,47.6193],[-1.1574,47.6353],[-1.1604,47.6613],[-1.1762,47.6594],[-1.1699,47.6627],[-1.1809,47.6651],[-1.1813,47.6748],[-1.1737,47.6817],[-1.1784,47.6888],[-1.1749,47.6945],[-1.189,47.6991],[-1.1817,47.7035],[-1.1958,47.7093],[-1.195,47.7212],[-1.2154,47.7188],[-1.2553,47.7316],[-1.2557,47.7425],[-1.2417,47.7428],[-1.2427,47.7485],[-1.2342,47.7563],[-1.2496,47.7642],[-1.2459,47.7767],[-1.2363,47.798],[-1.2423,47.8076],[-1.2382,47.81],[-1.2143,47.8032],[-1.2109,47.7965],[-1.1968,47.7948],[-1.1925,47.7856],[-1.1447,47.7743],[-1.1371,47.7756],[-1.1397,47.785],[-1.0933,47.7818],[-1.0809,47.7747],[-1.0361,47.7708],[-1.021,47.7777],[-1.0135,47.7667],[-0.9813,47.7614],[-0.9746,47.7658],[-0.952,47.7669],[-0.9554,47.7786],[-0.9721,47.7831],[-0.9598,47.7963],[-0.9393,47.909],[-0.9346,47.9486],[-0.9066,48.0326],[-0.8926,48.1213],[-0.8226,48.3313],[-0.8459,48.4526],[-0.8604,48.5014],[-0.8456,48.4973],[-0.8377,48.4848],[-0.815,48.4721],[-0.816,48.4584],[-0.8127,48.4549],[-0.7988,48.4593],[-0.7961,48.4662],[-0.7779,48.4654],[-0.7799,48.4464],[-0.7647,48.4366],[-0.7151,48.449],[-0.7149,48.4539],[-0.7361,48.4615],[-0.7307,48.4728],[-0.714,48.4692],[-0.7054,48.4756],[-0.6999,48.4739],[-0.704,48.4701],[-0.7017,48.4671],[-0.6918,48.4681],[-0.6822,48.4709],[-0.6852,48.477],[-0.6692,48.483],[-0.6689,48.4864],[-0.662,48.4832],[-0.6629,48.4766],[-0.6559,48.4752],[-0.6597,48.4695],[-0.6537,48.4596],[-0.6557,48.4474],[-0.6512,48.444],[-0.6152,48.4591],[-0.5954,48.4726],[-0.5726,48.4686],[-0.5651,48.4772],[-0.56,48.4722],[-0.5508,48.4735],[-0.5493,48.4804],[-0.5304,48.4951],[-0.5167,48.4981],[-0.517,48.5038],[-0.5093,48.5088],[-0.4894,48.5013],[-0.4739,48.5034],[-0.4699,48.5121],[-0.4471,48.5153],[-0.4327,48.5133],[-0.4236,48.5067],[-0.4075,48.5057],[-0.3946,48.5101],[-0.3911,48.5085],[-0.3934,48.5011],[-0.3685,48.4945],[-0.3681,48.4879],[-0.3532,48.4838],[-0.3498,48.4892],[-0.3553,48.4958],[-0.3491,48.5011],[-0.3362,48.5017],[-0.3358,48.5093],[-0.3202,48.5229],[-0.2929,48.5151],[-0.2873,48.5186],[-0.2851,48.5068],[-0.2716,48.5074],[-0.2673,48.5138],[-0.2739,48.518],[-0.2628,48.526],[-0.2511,48.5268],[-0.2414,48.5368],[-0.2626,48.5485],[-0.247,48.5576],[-0.2485,48.5634],[-0.2427,48.568],[-0.2179,48.5584],[-0.2082,48.5641],[-0.1796,48.5411],[-0.1446,48.5277],[-0.1453,48.5206],[-0.1555,48.5206],[-0.1724,48.5099],[-0.156,48.4958],[-0.155,48.4867],[-0.1492,48.4804],[-0.1535,48.4769],[-0.1476,48.473],[-0.1505,48.4651],[-0.1468,48.4564],[-0.1187,48.4482],[-0.0731,48.4505],[-0.0706,48.4579],[-0.0541,48.4544],[-0.0495,48.4486],[-0.0576,48.4291],[-0.053,48.4245],[-0.0573,48.4207],[-0.0528,48.4132],[-0.0567,48.3984],[-0.0527,48.3924],[-0.0579,48.3877],[-0.0545,48.382],[-0.0497,48.3751],[-0.0505,48.3802],[-0.0366,48.3807],[-0.0342,48.3863],[-0.0211,48.3857],[-0.0202,48.3939],[-0.0016,48.3974],[0.0034,48.396],[0.0046,48.3886],[0.011,48.3899],[0.0156,48.3816],[0.0611,48.3798],[0.0625,48.383],[0.0542,48.3916],[0.0701,48.4081],[0.1002,48.4103],[0.1101,48.4233],[0.1067,48.4268],[0.1177,48.4362],[0.1262,48.4342],[0.1571,48.4401],[0.1582,48.4439],[0.1477,48.4497],[0.1455,48.4572],[0.1703,48.4494],[0.1736,48.4509],[0.1696,48.4593],[0.1727,48.465],[0.19,48.4619],[0.2132,48.4734],[0.2498,48.4742],[0.2593,48.477],[0.2656,48.4848],[0.2749,48.4792],[0.3008,48.4803],[0.31,48.4722],[0.3264,48.4718],[0.339,48.4615],[0.3566,48.4577],[0.3822,48.4248],[0.3808,48.4158],[0.3718,48.4105],[0.377,48.3915],[0.3738,48.387],[0.3802,48.3796],[0.3798,48.3665],[0.3882,48.3493],[0.3806,48.3431],[0.383,48.3333],[0.4039,48.3156],[0.4133,48.3168],[0.4115,48.3205],[0.4171,48.322],[0.4258,48.3179],[0.4313,48.3069],[0.4671,48.3057],[0.4799,48.2987],[0.4899,48.3092],[0.5072,48.2947],[0.4944,48.2866],[0.4945,48.282],[0.512,48.2696],[0.5328,48.2643],[0.5378,48.259],[0.5373,48.2492],[0.6126,48.242],[0.624,48.2453],[0.6338,48.2343],[0.6385,48.2356],[0.6311,48.2521],[0.6394,48.2608],[0.6523,48.2639],[0.6729,48.2546],[0.6813,48.2551],[0.6821,48.2485],[0.6879,48.2464],[0.6865,48.2407],[0.6944,48.2373],[0.7065,48.2233],[0.7049,48.2199],[0.7158,48.2142],[0.7236,48.1981],[0.7298,48.2006],[0.7375,48.1895],[0.758,48.1799],[0.7976,48.1945],[0.7957,48.1883],[0.8107,48.1858],[0.8376,48.1665],[0.86,48.1675],[0.8869,48.1618],[0.9113,48.1491],[0.9096,48.1435],[0.9166,48.1389],[0.9138,48.1351],[0.8504,48.1331],[0.8551,48.1223],[0.8412,48.1031],[0.8124,48.0957],[0.8378,48.0889],[0.8407,48.0896],[0.8387,48.0941],[0.848,48.0946],[0.843,48.0726],[0.794,48.0694],[0.7986,48.064],[0.7939,48.0485],[0.7975,48.0372],[0.8052,48.0386],[0.8181,48.0304],[0.8356,48.0345],[0.8416,48.0302],[0.8407,48.0188],[0.8317,48.0064],[0.8321,47.9964],[0.8195,47.986],[0.828,47.9726],[0.8377,47.9685],[0.8486,47.9415],[0.8138,47.932],[0.8088,47.9167],[0.8161,47.913],[0.8078,47.9082],[0.8148,47.9043],[0.8129,47.9004],[0.8174,47.8931],[0.8118,47.8885],[0.7945,47.9002],[0.7901,47.912],[0.76,47.8994],[0.7572,47.8853],[0.7645,47.8669],[0.7592,47.8592],[0.7738,47.8506],[0.7744,47.8391],[0.7684,47.8311],[0.759,47.8336],[0.746,47.8275],[0.7389,47.8167],[0.7404,47.8119],[0.7195,47.793],[0.7147,47.7937],[0.7119,47.7871],[0.7008,47.7897],[0.6916,47.7837],[0.6896,47.7798],[0.6997,47.7747],[0.7032,47.7676],[0.6943,47.7637],[0.6768,47.7695],[0.6459,47.753],[0.6247,47.7508],[0.6089,47.7253],[0.5944,47.7232],[0.5805,47.7128],[0.5918,47.7043],[0.5962,47.688],[0.6047,47.686],[0.6144,47.6942],[0.6273,47.7078],[0.6396,47.7096],[0.6435,47.7001],[0.654,47.6984],[0.6438,47.6877],[0.6481,47.6841],[0.6782,47.6964],[0.7121,47.6818],[0.7197,47.6904],[0.7388,47.696],[0.7885,47.6801],[0.8061,47.679],[0.8118,47.6822],[0.8342,47.6769],[0.867,47.6904],[0.8587,47.6784],[0.8596,47.6652],[0.8532,47.6616],[0.844,47.6454],[0.8628,47.6325],[0.8598,47.6266],[0.8504,47.6241],[0.8613,47.5989],[0.8992,47.6037],[0.899,47.6092],[0.8923,47.6116],[0.9047,47.6147],[0.9196,47.6328],[0.9536,47.6252],[0.9653,47.6296],[0.971,47.6219],[0.9918,47.62],[0.9846,47.6095],[0.987,47.5906],[0.997,47.584],[1.0037,47.5844],[1.0126,47.6039],[1.0323,47.6082],[1.0593,47.5779],[1.0636,47.5661],[1.077,47.5724],[1.0777,47.5625],[1.0469,47.5389],[1.045,47.5316],[1.0549,47.5285],[1.0564,47.5236],[1.0701,47.5225],[1.0673,47.5156],[1.0736,47.5118],[1.066,47.5051],[1.0787,47.4943],[1.0943,47.4692],[1.0855,47.4644],[1.0871,47.4618],[1.1129,47.4659],[1.126,47.4514],[1.1334,47.449],[1.1142,47.4283],[1.1054,47.4316],[1.085,47.4297],[1.1024,47.4179],[0.977,47.342],[0.8197,47.189],[0.4702,47.106],[0.1599,47.0514],[-0.0367,47.0514],[-0.3142,47.1147],[-0.4239,47.0666],[-0.5242,47.0502],[-0.6362,47.0479],[-0.8088,47.0316],[-0.8718,47.0176],[-1.0281,47.0082],[-1.1172,47.0402],[-1.1213,47.0554],[-1.1155,47.0627],[-1.1556,47.0731],[-1.1696,47.0931],[-1.2282,47.1003],[-1.2404,47.0941],[-1.2496,47.0976],[-1.2294,47.1102],[-1.2248,47.1186],[-1.2322,47.1238],[-1.2388,47.1368],[-1.2048,47.1448],[-1.2052,47.1501],[-1.1979,47.1492],[-1.1979,47.1537],[-1.1826,47.1589],[-1.1812,47.1653],[-1.1757,47.1631],[-1.1637,47.1768],[-1.162,47.1872],[-1.1704,47.1868],[-1.178,47.1931],[-1.1737,47.199],[-1.1807,47.2074],[-1.1745,47.2144],[-1.1884,47.22],[-1.1811,47.2409],[-1.1948,47.252],[-1.207,47.2532],[-1.2134,47.2453],[-1.2282,47.2398],[-1.2539,47.2477],[-1.2544,47.2528],[-1.2679,47.2597],[-1.2776,47.2707],[-1.2753,47.2909],[-1.2945,47.3007],[-1.296,47.306],[-1.3374,47.3004],[-1.3542,47.3041],[-1.336,47.3187],[-1.3192,47.322],[-1.3104,47.3321],[-1.2968,47.3386],[-1.2585,47.3409],[-1.2284,47.35],[-1.2027,47.3491],[-1.1831,47.3542],[-1.1788,47.3611],[-1.1672,47.366],[-1.1445,47.369],[-1.1079,47.3658],[-1.0787,47.3708],[-1.0166,47.365],[-0.9918,47.3728],[-0.9762,47.371],[-0.9458,47.387],[-0.9404,47.3887],[-0.9435,47.3836],[-0.9389,47.3845],[-0.9235,47.3988],[-0.9475,47.4201],[-0.947,47.4289],[-0.9542,47.4418],[-0.9527,47.4518]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C11","Couleur":1,"name":"23_FR","LONG":3404652,"LAT":2845943,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":48.1992,"Long":-2.3391},"geometry":{"type":"MultiPolygon","coordinates":[[[[-3.6592,48.6592],[-3.6349,48.671],[-3.6364,48.6818],[-3.6234,48.6864],[-3.6157,48.6834],[-3.6105,48.6699],[-3.5813,48.67],[-3.5732,48.6747],[-3.5674,48.6828],[-3.5845,48.6906],[-3.5799,48.6968],[-3.5848,48.7171],[-3.5814,48.7223],[-3.5543,48.7284],[-3.5494,48.7457],[-3.5651,48.7603],[-3.5852,48.757],[-3.5781,48.763],[-3.5858,48.7798],[-3.5805,48.7791],[-3.5803,48.7873],[-3.5695,48.7897],[-3.5671,48.7961],[-3.5548,48.7914],[-3.5412,48.7986],[-3.5423,48.8016],[-3.5352,48.802],[-3.537,48.8095],[-3.5481,48.8119],[-3.5397,48.8166],[-3.5395,48.8244],[-3.5193,48.8191],[-3.5231,48.8298],[-3.5048,48.8393],[-3.5015,48.8368],[-3.5097,48.8331],[-3.5095,48.8268],[-3.5012,48.8243],[-3.5029,48.8288],[-3.4973,48.8298],[-3.4867,48.826],[-3.4912,48.8321],[-3.4804,48.8378],[-3.459,48.8161],[-3.4283,48.8214],[-3.4268,48.8171],[-3.4424,48.805],[-3.4406,48.7983],[-3.3929,48.8019],[-3.3872,48.8052],[-3.3891,48.8158],[-3.3526,48.8205],[-3.3221,48.838],[-3.292,48.8324],[-3.2782,48.8415],[-3.2696,48.8339],[-3.2644,48.8342],[-3.2551,48.8481],[-3.2348,48.862],[-3.2334,48.8673],[-3.2188,48.8656],[-3.2105,48.8485],[-3.2167,48.8357],[-3.2027,48.8346],[-3.2068,48.8139],[-3.2269,48.7986],[-3.2261,48.7937],[-3.235,48.7896],[-3.228,48.7911],[-3.2194,48.7838],[-3.2236,48.7964],[-3.1968,48.8184],[-3.1992,48.8254],[-3.1902,48.8376],[-3.1828,48.8437],[-3.1736,48.8419],[-3.1678,48.8533],[-3.1537,48.8521],[-3.1331,48.8588],[-3.1299,48.8643],[-3.1062,48.8656],[-3.0719,48.8841],[-3.1017,48.8668],[-3.0851,48.8673],[-3.076,48.8577],[-3.0865,48.8634],[-3.0935,48.8607],[-3.0834,48.8477],[-3.0991,48.8303],[-3.0837,48.8335],[-3.0716,48.8306],[-3.0835,48.8272],[-3.0882,48.8118],[-3.0988,48.8048],[-3.0941,48.8049],[-3.0996,48.8005],[-3.0974,48.7943],[-3.1027,48.7879],[-3.099,48.7833],[-3.1216,48.7727],[-3.1295,48.7737],[-3.1218,48.7702],[-3.1246,48.7623],[-3.1196,48.7588],[-3.1161,48.7645],[-3.0977,48.7689],[-3.1054,48.7802],[-3.095,48.7813],[-3.0943,48.7949],[-3.0855,48.8103],[-3.0664,48.8222],[-3.0534,48.822],[-3.0573,48.8182],[-3.0537,48.8152],[-3.0119,48.8214],[-3.0079,48.8183],[-3.0168,48.8104],[-3.0029,48.8029],[-3.0464,48.7855],[-3.0087,48.7816],[-3.0288,48.778],[-3.0297,48.775],[-3.0158,48.7663],[-2.9646,48.7625],[-2.9503,48.7711],[-2.9505,48.7633],[-2.9285,48.7547],[-2.942,48.7448],[-2.9414,48.7404],[-2.9342,48.7371],[-2.9479,48.7272],[-2.9451,48.7208],[-2.9337,48.7186],[-2.9211,48.7059],[-2.9036,48.6991],[-2.8911,48.6993],[-2.8833,48.6903],[-2.8831,48.6755],[-2.866,48.6716],[-2.8591,48.6751],[-2.8503,48.6672],[-2.8416,48.6642],[-2.8378,48.656],[-2.8272,48.6541],[-2.8224,48.643],[-2.8274,48.6366],[-2.8207,48.6318],[-2.8232,48.6242],[-2.8146,48.6151],[-2.8196,48.6017],[-2.8268,48.6009],[-2.8232,48.5962],[-2.7933,48.5849],[-2.7793,48.5849],[-2.7738,48.5771],[-2.7751,48.5719],[-2.7625,48.566],[-2.7136,48.5552],[-2.7248,48.5469],[-2.7182,48.5398],[-2.7211,48.5313],[-2.7099,48.5327],[-2.7168,48.5245],[-2.7028,48.5143],[-2.6864,48.4931],[-2.6777,48.4913],[-2.6849,48.4976],[-2.6752,48.5096],[-2.6814,48.5326],[-2.6698,48.5357],[-2.6547,48.5251],[-2.6303,48.5261],[-2.634,48.5305],[-2.6277,48.541],[-2.5804,48.5695],[-2.5698,48.5834],[-2.5536,48.5911],[-2.5533,48.5994],[-2.5319,48.5972],[-2.4988,48.6074],[-2.4734,48.6225],[-2.4672,48.6321],[-2.4681,48.6358],[-2.4846,48.6381],[-2.4872,48.6456],[-2.4768,48.6443],[-2.4676,48.6499],[-2.4534,48.6476],[-2.438,48.6528],[-2.4214,48.647],[-2.4215,48.6401],[-2.4167,48.6357],[-2.4209,48.6292],[-2.409,48.6359],[-2.4184,48.6412],[-2.3963,48.6427],[-2.3857,48.6527],[-2.3589,48.6564],[-2.3278,48.6733],[-2.3256,48.682],[-2.3177,48.6886],[-2.3119,48.6715],[-2.284,48.6683],[-2.3092,48.644],[-2.3117,48.6342],[-2.3379,48.62],[-2.3211,48.6178],[-2.3135,48.6102],[-2.2975,48.6264],[-2.2928,48.622],[-2.2866,48.6312],[-2.2607,48.6452],[-2.2459,48.6456],[-2.2448,48.6415],[-2.2562,48.6357],[-2.2434,48.6234],[-2.2458,48.6154],[-2.2241,48.6038],[-2.2244,48.5948],[-2.2141,48.5929],[-2.2103,48.5874],[-2.2129,48.5727],[-2.2056,48.5754],[-2.206,48.5797],[-2.1916,48.5923],[-2.1951,48.5987],[-2.1908,48.6073],[-2.1849,48.6061],[-2.182,48.599],[-2.1881,48.5837],[-2.1769,48.5762],[-2.1663,48.579],[-2.159,48.5874],[-2.1707,48.5956],[-2.1641,48.6073],[-2.1523,48.6101],[-2.15,48.6181],[-2.1443,48.6197],[-2.1429,48.6112],[-2.1237,48.6044],[-2.1365,48.6128],[-2.1386,48.6248],[-2.1503,48.627],[-2.1503,48.6333],[-2.1241,48.6352],[-2.1133,48.6434],[-2.1112,48.6377],[-2.0995,48.6386],[-2.0948,48.6336],[-2.0812,48.6361],[-2.0778,48.6408],[-2.0571,48.64],[-2.053,48.6355],[-2.0476,48.639],[-2.0456,48.6368],[-2.0551,48.6268],[-2.0326,48.6269],[-2.0291,48.6169],[-2.0346,48.6113],[-2.0316,48.6052],[-2.0185,48.6046],[-2.0251,48.5979],[-2.0197,48.5977],[-2.0125,48.5862],[-2.0053,48.5884],[-2.003,48.5831],[-1.9958,48.5826],[-1.9939,48.5779],[-2.0135,48.5714],[-2.0069,48.5661],[-2.0009,48.5678],[-1.9862,48.5496],[-1.9882,48.5451],[-1.9741,48.545],[-1.9723,48.5357],[-1.983,48.5267],[-1.9986,48.5231],[-1.9842,48.5237],[-1.9865,48.5171],[-1.9813,48.5148],[-1.9857,48.5116],[-1.9824,48.5006],[-2.0017,48.4917],[-1.9816,48.4983],[-1.979,48.5114],[-1.9654,48.512],[-1.9707,48.5219],[-1.9647,48.5263],[-1.9578,48.5253],[-1.9522,48.5181],[-1.9395,48.5197],[-1.9546,48.5219],[-1.948,48.5388],[-1.9694,48.5365],[-1.9607,48.5498],[-1.9649,48.5568],[-1.9775,48.5565],[-1.9726,48.5656],[-1.9871,48.5845],[-1.9813,48.5862],[-1.9547,48.5765],[-1.9661,48.5848],[-1.9615,48.5922],[-1.973,48.5894],[-1.9855,48.5942],[-1.9978,48.5904],[-2.0017,48.594],[-1.997,48.6037],[-2.0135,48.599],[-2.0009,48.615],[-2.0152,48.614],[-2.0185,48.6197],[-2.0136,48.627],[-2.0225,48.6347],[-2.031,48.6343],[-2.0309,48.6376],[-2.0203,48.6399],[-2.0285,48.6461],[-2.0283,48.6505],[-2.0095,48.6541],[-1.9889,48.6642],[-1.9818,48.6749],[-1.9905,48.6831],[-1.9815,48.6815],[-1.9658,48.6871],[-1.9592,48.6805],[-1.9373,48.6842],[-1.9595,48.6905],[-1.9385,48.6941],[-1.9369,48.7025],[-1.9282,48.6925],[-1.9047,48.6899],[-1.89,48.6991],[-1.8746,48.6949],[-1.8443,48.7123],[-1.8429,48.7087],[-1.8501,48.6994],[-1.8469,48.6897],[-1.8358,48.6803],[-1.8627,48.6673],[-1.8642,48.6549],[-1.8721,48.6457],[-1.8622,48.6295],[-1.8405,48.614],[-1.7677,48.6024],[-1.6642,48.6101],[-1.5711,48.6264],[-1.5423,48.6312],[-1.5187,48.6272],[-1.5157,48.6182],[-1.476,48.619],[-1.4546,48.6257],[-1.4487,48.6235],[-1.4265,48.6368],[-1.4289,48.641],[-1.4253,48.6442],[-1.4209,48.6392],[-1.3911,48.6446],[-1.3823,48.6401],[-1.374,48.6424],[-1.3629,48.6341],[-1.3455,48.6327],[-1.3574,48.6355],[-1.3642,48.647],[-1.3932,48.6505],[-1.4008,48.6582],[-1.3723,48.6938],[-1.3903,48.6792],[-1.4323,48.6667],[-1.4386,48.6558],[-1.4458,48.6548],[-1.4498,48.6704],[-1.4858,48.6864],[-1.497,48.6837],[-1.505,48.6874],[-1.5293,48.7301],[-1.5527,48.7324],[-1.5702,48.7429],[-1.5747,48.7534],[-1.5678,48.8026],[-1.5745,48.8217],[-1.594,48.8347],[-1.6145,48.834],[-1.5872,48.8464],[-1.5816,48.8544],[-1.5644,48.9216],[-1.5567,48.9323],[-1.5512,48.9322],[-1.5584,48.9276],[-1.5606,48.9133],[-1.5548,48.8942],[-1.5493,48.8938],[-1.5514,48.9088],[-1.5486,48.9251],[-1.5435,48.9314],[-1.5495,48.9402],[-1.561,48.9391],[-1.5618,48.9512],[-1.5615,48.9704],[-1.5626,48.971],[-1.5624,48.9766],[-1.559,48.9917],[-1.5604,49.0032],[-1.5588,49.0035],[-1.5541,48.9981],[-1.551,48.9889],[-1.5523,48.9878],[-1.5523,48.986],[-1.5492,48.9873],[-1.5482,48.9892],[-1.5516,48.9982],[-1.5508,49.0032],[-1.5564,49.0122],[-1.5546,49.0155],[-1.5553,49.022],[-1.5572,49.0262],[-1.5382,49.0343],[-1.5319,49.0332],[-1.525,49.0276],[-1.5208,49.0267],[-1.5098,49.0213],[-1.5081,49.0187],[-1.5068,49.0185],[-1.5055,49.0204],[-1.5064,49.0246],[-1.519,49.0321],[-1.5248,49.0335],[-1.5278,49.0358],[-1.5426,49.0413],[-1.5431,49.0399],[-1.5471,49.0373],[-1.5632,49.0355],[-1.5706,49.0303],[-1.5698,49.0276],[-1.5706,49.026],[-1.577,49.02],[-1.5788,49.0151],[-1.5749,49.009],[-1.5744,49.0014],[-1.5809,49.0038],[-1.5743,48.9993],[-1.5811,49.0022],[-1.5859,49.0078],[-1.5952,49.026],[-1.6001,49.0416],[-1.6054,49.0646],[-1.6074,49.0685],[-1.606,49.0687],[-1.601,49.0545],[-1.5981,49.0585],[-1.5978,49.0636],[-1.5958,49.0661],[-1.6009,49.0707],[-1.6011,49.0679],[-1.5999,49.067],[-1.6012,49.0666],[-1.6019,49.0698],[-1.601,49.0712],[-1.5973,49.0729],[-1.5992,49.0752],[-1.6071,49.0783],[-1.609,49.0828],[-1.6098,49.0804],[-1.6083,49.0752],[-1.6097,49.0736],[-1.6104,49.0929],[-1.6081,49.1079],[-1.5989,49.1206],[-1.5955,49.1309],[-1.5917,49.1338],[-1.5894,49.1304],[-1.584,49.129],[-1.5833,49.1338],[-1.586,49.1353],[-1.5863,49.1395],[-1.5875,49.1399],[-1.5913,49.1378],[-1.5918,49.1349],[-1.5958,49.1428],[-1.599,49.169],[-1.6007,49.1727],[-1.6034,49.1868],[-1.6073,49.1966],[-1.6054,49.2056],[-1.6098,49.2139],[-1.6142,49.2181],[-1.6115,49.2189],[-1.606,49.2184],[-1.604,49.2171],[-1.599,49.2172],[-1.5749,49.2231],[-1.5673,49.2209],[-1.5701,49.2234],[-1.5757,49.2257],[-1.5878,49.2332],[-1.6028,49.2318],[-1.6074,49.2321],[-1.6127,49.2346],[-1.6149,49.2339],[-1.6256,49.2241],[-1.6259,49.2195],[-1.6248,49.2138],[-1.6225,49.2111],[-1.6255,49.21],[-1.6297,49.2127],[-1.641,49.2216],[-1.6474,49.2299],[-1.6542,49.2414],[-1.6607,49.2588],[-1.6652,49.2659],[-1.6782,49.2801],[-1.6784,49.2821],[-1.6758,49.2865],[-1.6764,49.2829],[-1.6747,49.2801],[-1.6682,49.2796],[-1.6646,49.2821],[-1.6617,49.2814],[-1.66,49.2788],[-1.6565,49.2789],[-1.6574,49.2818],[-1.6642,49.2858],[-1.6871,49.2899],[-1.7112,49.3251],[-1.6993,49.3242],[-1.6775,49.3313],[-1.6924,49.3298],[-1.6999,49.3341],[-1.7071,49.3291],[-1.7172,49.3292],[-1.7188,49.325],[-1.7243,49.3271],[-1.7647,49.3635],[-1.7871,49.3746],[-1.7569,49.3682],[-1.7591,49.3737],[-1.7695,49.3752],[-1.7716,49.38],[-1.7873,49.3759],[-1.7898,49.3691],[-1.8092,49.3721],[-1.8237,49.4015],[-1.8268,49.4529],[-1.8349,49.4666],[-1.8461,49.4751],[-1.8482,49.5037],[-1.8526,49.5104],[-1.8756,49.5149],[-1.8869,49.527],[-1.8853,49.5414],[-1.8579,49.5514],[-1.8398,49.5774],[-1.8478,49.6268],[-1.8603,49.6502],[-1.8724,49.6573],[-1.9471,49.6748],[-1.9363,49.6879],[-1.9474,49.7098],[-1.9424,49.7259],[-1.9361,49.7261],[-1.9064,49.7222],[-1.8852,49.7058],[-1.8534,49.7163],[-1.8393,49.7113],[-1.824,49.6905],[-1.7903,49.6871],[-1.7607,49.6782],[-1.7178,49.6798],[-1.7009,49.6699],[-1.6806,49.6723],[-1.6777,49.6699],[-1.6832,49.665],[-1.6724,49.6577],[-1.6155,49.6582],[-1.6302,49.6572],[-1.6308,49.652],[-1.6201,49.6435],[-1.6169,49.6489],[-1.6152,49.6435],[-1.6134,49.6488],[-1.6028,49.6458],[-1.6052,49.6567],[-1.5928,49.6523],[-1.5693,49.6569],[-1.5338,49.6549],[-1.5074,49.6614],[-1.4929,49.6704],[-1.4869,49.6685],[-1.4849,49.6777],[-1.4727,49.6864],[-1.4763,49.691],[-1.4733,49.697],[-1.453,49.6913],[-1.4218,49.7033],[-1.371,49.7073],[-1.3432,49.7009],[-1.3326,49.7027],[-1.2999,49.6935],[-1.2669,49.6946],[-1.2652,49.6914],[-1.2716,49.6845],[-1.2696,49.6796],[-1.2394,49.6544],[-1.2433,49.6482],[-1.2281,49.6236],[-1.2287,49.607],[-1.2544,49.6115],[-1.2664,49.5925],[-1.2614,49.586],[-1.2713,49.5774],[-1.2721,49.5707],[-1.2755,49.5767],[-1.2698,49.5838],[-1.2841,49.5872],[-1.2962,49.5832],[-1.3067,49.5665],[-1.3098,49.55],[-1.3064,49.5389],[-1.2527,49.4806],[-1.1712,49.4125],[-1.1617,49.3908],[-1.1663,49.3831],[-1.1794,49.3775],[-1.1776,49.3649],[-1.1639,49.3666],[-1.1389,49.3584],[-1.1361,49.354],[-1.1196,49.3556],[-1.1154,49.3515],[-1.1179,49.3605],[-1.0727,49.39],[-1.0285,49.3897],[-1.0063,49.3963],[-0.9472,49.3958],[-0.9238,49.3923],[-0.8959,49.3766],[-0.8512,49.3625],[-0.7978,49.354],[-0.7223,49.347],[-0.7715,49.2742],[-0.7715,49.2322],[-0.7715,49.1482],[-0.7948,49.0175],[-0.8135,48.9102],[-0.8275,48.8076],[-0.8415,48.7049],[-0.8604,48.5014],[-0.8459,48.4526],[-0.8226,48.3313],[-0.8926,48.1213],[-0.9066,48.0326],[-0.9346,47.9486],[-0.9393,47.909],[-0.9598,47.7963],[-0.9721,47.7831],[-0.9554,47.7786],[-0.952,47.7669],[-0.9746,47.7658],[-0.9813,47.7614],[-1.0135,47.7667],[-1.021,47.7777],[-1.0361,47.7708],[-1.0809,47.7747],[-1.0933,47.7818],[-1.1397,47.785],[-1.1371,47.7756],[-1.1447,47.7743],[-1.1925,47.7856],[-1.1968,47.7948],[-1.2109,47.7965],[-1.2143,47.8032],[-1.2382,47.81],[-1.2423,47.8076],[-1.2363,47.798],[-1.2459,47.7767],[-1.2496,47.7642],[-1.2342,47.7563],[-1.2427,47.7485],[-1.2417,47.7428],[-1.2557,47.7425],[-1.2553,47.7316],[-1.2154,47.7188],[-1.195,47.7212],[-1.1958,47.7093],[-1.1817,47.7035],[-1.189,47.6991],[-1.1749,47.6945],[-1.1784,47.6888],[-1.1737,47.6817],[-1.1813,47.6748],[-1.1809,47.6651],[-1.1699,47.6627],[-1.1762,47.6594],[-1.1604,47.6613],[-1.1574,47.6353],[-1.1371,47.6193],[-1.0994,47.6206],[-1.0785,47.6068],[-1.058,47.6014],[-1.037,47.6024],[-1.007,47.5888],[-1.0193,47.5769],[-1.0438,47.5678],[-1.042,47.562],[-1.0657,47.5671],[-1.1093,47.5652],[-1.1729,47.5728],[-1.1783,47.548],[-1.1516,47.5401],[-1.1699,47.5295],[-1.1605,47.5217],[-1.1575,47.5104],[-1.1078,47.5009],[-1.0392,47.5053],[-1.006,47.4881],[-0.9662,47.4923],[-0.959,47.4812],[-0.9675,47.4742],[-0.9679,47.468],[-0.9527,47.4518],[-0.9542,47.4418],[-0.947,47.4289],[-0.9475,47.4201],[-0.9235,47.3988],[-0.9389,47.3845],[-0.9435,47.3836],[-0.9404,47.3887],[-0.9458,47.387],[-0.9762,47.371],[-0.9918,47.3728],[-1.0166,47.365],[-1.0787,47.3708],[-1.1079,47.3658],[-1.1445,47.369],[-1.1672,47.366],[-1.1788,47.3611],[-1.1831,47.3542],[-1.2027,47.3491],[-1.2284,47.35],[-1.2585,47.3409],[-1.2968,47.3386],[-1.3104,47.3321],[-1.3192,47.322],[-1.336,47.3187],[-1.3542,47.3041],[-1.3374,47.3004],[-1.296,47.306],[-1.2945,47.3007],[-1.2753,47.2909],[-1.2776,47.2707],[-1.2679,47.2597],[-1.2544,47.2528],[-1.2539,47.2477],[-1.2282,47.2398],[-1.2134,47.2453],[-1.207,47.2532],[-1.1948,47.252],[-1.1811,47.2409],[-1.1884,47.22],[-1.1745,47.2144],[-1.1807,47.2074],[-1.1737,47.199],[-1.178,47.1931],[-1.1704,47.1868],[-1.162,47.1872],[-1.1637,47.1768],[-1.1757,47.1631],[-1.1812,47.1653],[-1.1826,47.1589],[-1.1979,47.1537],[-1.1979,47.1492],[-1.2052,47.1501],[-1.2048,47.1448],[-1.2388,47.1368],[-1.2322,47.1238],[-1.2248,47.1186],[-1.2294,47.1102],[-1.2496,47.0976],[-1.2404,47.0941],[-1.2282,47.1003],[-1.1696,47.0931],[-1.1556,47.0731],[-1.1155,47.0627],[-1.1213,47.0554],[-1.1172,47.0402],[-1.1485,47.0295],[-1.2009,47.0402],[-1.2019,47.0458],[-1.2093,47.0496],[-1.2316,47.0653],[-1.2469,47.0669],[-1.2698,47.0849],[-1.2803,47.0757],[-1.2875,47.0763],[-1.2913,47.0684],[-1.286,47.0638],[-1.2873,47.0583],[-1.3048,47.0411],[-1.2957,47.0423],[-1.2987,47.0347],[-1.3199,47.0345],[-1.3396,47.0454],[-1.3457,47.0457],[-1.3417,47.0399],[-1.347,47.038],[-1.3665,47.0414],[-1.3673,47.0353],[-1.3785,47.0311],[-1.3668,47.0193],[-1.3632,47.005],[-1.3778,46.9917],[-1.359,46.9811],[-1.3582,46.9714],[-1.3692,46.9641],[-1.364,46.9579],[-1.3916,46.9471],[-1.4138,46.9451],[-1.4582,46.9258],[-1.4717,46.9332],[-1.4571,46.9544],[-1.4615,46.9623],[-1.4719,46.9679],[-1.4771,46.9819],[-1.4602,46.9926],[-1.4692,47.0021],[-1.4769,47.033],[-1.4842,47.0397],[-1.4958,47.0415],[-1.5259,47.0229],[-1.5386,47.0232],[-1.5407,47.0175],[-1.5518,47.0186],[-1.5553,47.014],[-1.5427,47.003],[-1.555,46.9785],[-1.5427,46.9652],[-1.5445,46.9577],[-1.5347,46.9507],[-1.5339,46.9453],[-1.525,46.9455],[-1.5189,46.9344],[-1.5294,46.9227],[-1.5459,46.9255],[-1.5373,46.9206],[-1.5382,46.9163],[-1.5298,46.9069],[-1.5025,46.8933],[-1.5055,46.8903],[-1.5006,46.8834],[-1.5269,46.8729],[-1.5464,46.8743],[-1.5485,46.8601],[-1.5762,46.8641],[-1.6041,46.8753],[-1.6096,46.8712],[-1.6465,46.8792],[-1.6641,46.8747],[-1.682,46.8838],[-1.6865,46.8905],[-1.7228,46.8841],[-1.7341,46.8917],[-1.7354,46.9112],[-1.7453,46.9164],[-1.7419,46.9219],[-1.747,46.9236],[-1.7454,46.9281],[-1.7502,46.9305],[-1.7775,46.9251],[-1.7864,46.9296],[-1.7984,46.9274],[-1.8003,46.9306],[-1.8321,46.9321],[-1.8265,46.9379],[-1.8255,46.9476],[-1.8322,46.9538],[-1.8679,46.9522],[-1.8997,46.9617],[-1.9062,46.9708],[-1.917,46.9748],[-1.9122,46.9794],[-1.9191,46.9848],[-1.9149,46.9886],[-1.917,46.9918],[-1.9426,46.9944],[-1.9685,47.0274],[-1.9804,47.0289],[-2.0047,47.0615],[-2.0326,47.0735],[-2.0524,47.0941],[-2.1111,47.1099],[-2.1574,47.113],[-2.1772,47.122],[-2.2144,47.1239],[-2.2268,47.1309],[-2.2447,47.1303],[-2.2478,47.1337],[-2.2288,47.1449],[-2.224,47.1536],[-2.1992,47.1588],[-2.1781,47.1561],[-2.167,47.1662],[-2.1584,47.2087],[-2.1812,47.2355],[-2.1705,47.2397],[-2.17,47.2685],[-2.0581,47.2825],[-2.0415,47.2922],[-2.0105,47.2846],[-2.0106,47.3147],[-2.0193,47.3158],[-2.0245,47.3079],[-2.0221,47.3054],[-2.03,47.306],[-2.0319,47.3],[-2.0361,47.3047],[-2.0344,47.3157],[-2.0699,47.3046],[-2.127,47.3036],[-2.1727,47.2883],[-2.1816,47.2985],[-2.185,47.2886],[-2.1806,47.2842],[-2.1914,47.2821],[-2.1987,47.2703],[-2.2212,47.2668],[-2.2246,47.2644],[-2.2221,47.2586],[-2.2294,47.2556],[-2.2533,47.2532],[-2.269,47.2391],[-2.2975,47.2343],[-2.3029,47.2372],[-2.3361,47.2527],[-2.3541,47.2711],[-2.3822,47.2802],[-2.4002,47.2813],[-2.4222,47.2753],[-2.4254,47.2709],[-2.4165,47.2612],[-2.4205,47.2583],[-2.451,47.2629],[-2.4555,47.2681],[-2.5463,47.2906],[-2.5449,47.2979],[-2.5395,47.2996],[-2.5119,47.2996],[-2.5143,47.3037],[-2.5022,47.3148],[-2.5003,47.3223],[-2.5084,47.3444],[-2.5211,47.3588],[-2.5589,47.3745],[-2.5336,47.3835],[-2.5093,47.3999],[-2.4917,47.4044],[-2.488,47.4114],[-2.4691,47.4185],[-2.4642,47.4105],[-2.4327,47.4136],[-2.4508,47.4253],[-2.4585,47.4232],[-2.4455,47.4356],[-2.4585,47.4481],[-2.4693,47.4493],[-2.48,47.4412],[-2.4929,47.4479],[-2.4988,47.4574],[-2.4884,47.4715],[-2.4995,47.4851],[-2.5008,47.493],[-2.4827,47.4958],[-2.4674,47.4826],[-2.4566,47.4865],[-2.47,47.4879],[-2.4531,47.4896],[-2.4473,47.4946],[-2.4204,47.4952],[-2.4412,47.4962],[-2.4661,47.5117],[-2.4881,47.5168],[-2.5021,47.514],[-2.5013,47.5201],[-2.5068,47.5238],[-2.5209,47.5269],[-2.5349,47.5236],[-2.5343,47.5281],[-2.5523,47.5143],[-2.5498,47.5106],[-2.5868,47.5178],[-2.6035,47.5163],[-2.6082,47.5085],[-2.6219,47.5046],[-2.6331,47.5069],[-2.6335,47.511],[-2.6395,47.5162],[-2.6631,47.5192],[-2.6683,47.512],[-2.6655,47.5087],[-2.6802,47.4977],[-2.6749,47.4918],[-2.7246,47.5064],[-2.7384,47.5039],[-2.7413,47.4998],[-2.7813,47.4952],[-2.7937,47.4842],[-2.807,47.4887],[-2.8161,47.4868],[-2.8492,47.4989],[-2.8489,47.5138],[-2.8752,47.5343],[-2.8912,47.5383],[-2.9036,47.5343],[-2.9053,47.5383],[-2.8905,47.5447],[-2.9096,47.5412],[-2.9194,47.5473],[-2.9087,47.5495],[-2.9152,47.5548],[-2.9139,47.558],[-2.8977,47.5635],[-2.8951,47.5548],[-2.891,47.5617],[-2.8832,47.5565],[-2.884,47.5618],[-2.8785,47.5638],[-2.8789,47.5553],[-2.87,47.5553],[-2.8733,47.5464],[-2.8693,47.5512],[-2.8584,47.5506],[-2.8615,47.5395],[-2.8447,47.5384],[-2.8535,47.5416],[-2.8475,47.5476],[-2.8413,47.5437],[-2.8302,47.5461],[-2.8274,47.5413],[-2.8176,47.5424],[-2.8243,47.5565],[-2.8136,47.5529],[-2.8056,47.5553],[-2.8074,47.5407],[-2.7993,47.537],[-2.7965,47.5427],[-2.7999,47.5472],[-2.7877,47.5525],[-2.7826,47.5456],[-2.777,47.5488],[-2.7808,47.5396],[-2.7683,47.5391],[-2.7669,47.5433],[-2.7636,47.5394],[-2.7676,47.5356],[-2.7513,47.5381],[-2.7432,47.5436],[-2.7308,47.5423],[-2.7303,47.5503],[-2.7347,47.5528],[-2.7236,47.5567],[-2.7249,47.5609],[-2.7296,47.5563],[-2.7289,47.5679],[-2.7178,47.5673],[-2.7138,47.5794],[-2.7201,47.5896],[-2.7181,47.599],[-2.7223,47.6036],[-2.7362,47.606],[-2.732,47.5985],[-2.7796,47.6216],[-2.7751,47.6251],[-2.7363,47.6138],[-2.7435,47.6273],[-2.7474,47.6207],[-2.7507,47.6219],[-2.7573,47.6298],[-2.7549,47.6377],[-2.7612,47.6407],[-2.7645,47.6313],[-2.7804,47.6319],[-2.7819,47.6195],[-2.8119,47.6223],[-2.8352,47.6125],[-2.829,47.619],[-2.8401,47.6167],[-2.8633,47.6218],[-2.8674,47.6164],[-2.8587,47.618],[-2.8564,47.6135],[-2.8684,47.607],[-2.859,47.6008],[-2.8645,47.5967],[-2.8889,47.6034],[-2.891,47.5861],[-2.8852,47.5789],[-2.8904,47.5741],[-2.891,47.5817],[-2.896,47.5849],[-2.9089,47.5837],[-2.9042,47.5871],[-2.9062,47.5908],[-2.9141,47.5915],[-2.9178,47.5823],[-2.9259,47.5862],[-2.9265,47.5904],[-2.917,47.5964],[-2.919,47.6039],[-2.9267,47.5929],[-2.9309,47.6042],[-2.9373,47.5954],[-2.9341,47.5863],[-2.9388,47.5877],[-2.9395,47.5948],[-2.9511,47.6097],[-2.9467,47.6125],[-2.9493,47.6215],[-2.9357,47.6253],[-2.9429,47.6292],[-2.9588,47.6274],[-2.9582,47.6386],[-2.9667,47.639],[-2.9641,47.6457],[-2.978,47.6638],[-2.9792,47.6543],[-2.9705,47.6329],[-2.9632,47.6342],[-2.9532,47.6125],[-2.9596,47.6151],[-2.9661,47.6113],[-2.9624,47.6092],[-2.9681,47.6051],[-2.9543,47.5971],[-2.965,47.5887],[-2.9717,47.5887],[-2.9632,47.5864],[-2.9596,47.5808],[-2.9478,47.5793],[-2.9367,47.5613],[-2.9266,47.5571],[-2.9292,47.5546],[-2.9518,47.556],[-2.9577,47.5642],[-2.9645,47.5541],[-2.9752,47.576],[-2.9924,47.5807],[-2.9944,47.5907],[-2.9994,47.5908],[-2.998,47.5846],[-2.9875,47.5664],[-2.9946,47.5717],[-2.9985,47.5708],[-2.9962,47.5663],[-3.0045,47.5659],[-3.024,47.5913],[-3.0282,47.5891],[-3.0197,47.5674],[-3.0249,47.5683],[-3.0433,47.5875],[-3.0427,47.5788],[-3.052,47.5779],[-3.0539,47.571],[-3.0714,47.5716],[-3.0953,47.5644],[-3.1065,47.5752],[-3.0972,47.5781],[-3.0918,47.574],[-3.0928,47.5797],[-3.1047,47.5808],[-3.1036,47.5844],[-3.1103,47.5856],[-3.1249,47.5989],[-3.1309,47.5955],[-3.1294,47.5746],[-3.1179,47.5761],[-3.1335,47.5464],[-3.1331,47.5317],[-3.1264,47.5129],[-3.1178,47.5098],[-3.1178,47.4967],[-3.0796,47.4685],[-3.0936,47.4734],[-3.1089,47.4715],[-3.1178,47.4787],[-3.1307,47.4731],[-3.1392,47.4824],[-3.1456,47.4835],[-3.1451,47.4919],[-3.1518,47.5038],[-3.1525,47.5199],[-3.1598,47.5267],[-3.1446,47.5312],[-3.1346,47.5488],[-3.1397,47.5796],[-3.1583,47.6067],[-3.1977,47.6239],[-3.2109,47.6423],[-3.204,47.6515],[-3.2094,47.667],[-3.1983,47.6732],[-3.1968,47.6788],[-3.1866,47.6769],[-3.1897,47.6837],[-3.1633,47.6798],[-3.1634,47.6863],[-3.1587,47.6897],[-3.1553,47.6864],[-3.1512,47.6927],[-3.1669,47.6957],[-3.1993,47.6871],[-3.2002,47.6912],[-3.2101,47.6928],[-3.2088,47.6995],[-3.2163,47.6958],[-3.2085,47.6846],[-3.1985,47.683],[-3.2036,47.676],[-3.209,47.6763],[-3.2057,47.6718],[-3.2147,47.6718],[-3.2189,47.6664],[-3.2119,47.6618],[-3.2106,47.6511],[-3.2145,47.6448],[-3.2709,47.6788],[-3.3005,47.6894],[-3.3445,47.6952],[-3.3594,47.6864],[-3.3524,47.7004],[-3.3433,47.6962],[-3.3267,47.7016],[-3.3079,47.6932],[-3.2849,47.686],[-3.2775,47.6901],[-3.2922,47.7031],[-3.3162,47.7028],[-3.3019,47.7105],[-3.322,47.7047],[-3.3274,47.7086],[-3.3442,47.7083],[-3.3522,47.7028],[-3.362,47.7099],[-3.3529,47.7083],[-3.3514,47.7158],[-3.3427,47.7159],[-3.3468,47.7245],[-3.3437,47.728],[-3.3491,47.7286],[-3.3478,47.7345],[-3.3312,47.7298],[-3.3345,47.7354],[-3.3216,47.7352],[-3.3144,47.7462],[-3.3057,47.7481],[-3.2965,47.7711],[-3.285,47.7692],[-3.2825,47.7793],[-3.2933,47.7867],[-3.2907,47.7912],[-3.2766,47.7934],[-3.2764,47.7978],[-3.2777,47.7944],[-3.2904,47.7939],[-3.2957,47.7865],[-3.2869,47.7773],[-3.2883,47.7717],[-3.3,47.7746],[-3.3031,47.7653],[-3.3181,47.7561],[-3.324,47.7592],[-3.3267,47.7683],[-3.3223,47.7492],[-3.3333,47.7429],[-3.3453,47.7423],[-3.3512,47.7581],[-3.3635,47.7624],[-3.3599,47.7702],[-3.3678,47.7732],[-3.369,47.7788],[-3.3765,47.7854],[-3.3802,47.7938],[-3.3777,47.7948],[-3.3787,47.7971],[-3.3841,47.7968],[-3.3864,47.7991],[-3.3854,47.8046],[-3.3927,47.8057],[-3.3874,47.8119],[-3.3862,47.8169],[-3.3899,47.8216],[-3.388,47.826],[-3.3893,47.8286],[-3.393,47.8221],[-3.3874,47.8162],[-3.3893,47.8111],[-3.3936,47.8087],[-3.3997,47.8106],[-3.4039,47.8086],[-3.4004,47.8095],[-3.3925,47.8036],[-3.3877,47.803],[-3.3893,47.7981],[-3.3798,47.791],[-3.3805,47.7879],[-3.3855,47.7839],[-3.374,47.7808],[-3.3698,47.775],[-3.3722,47.7721],[-3.3716,47.7695],[-3.3663,47.766],[-3.3669,47.7629],[-3.3621,47.7585],[-3.3555,47.7577],[-3.3515,47.7493],[-3.3537,47.7483],[-3.3498,47.7445],[-3.3603,47.7455],[-3.3502,47.7419],[-3.3549,47.7381],[-3.3558,47.7324],[-3.3594,47.7292],[-3.364,47.7268],[-3.3621,47.7288],[-3.3658,47.7288],[-3.3685,47.7318],[-3.3661,47.7276],[-3.3693,47.7203],[-3.3664,47.7168],[-3.3752,47.7122],[-3.3753,47.7087],[-3.3814,47.7077],[-3.3805,47.7049],[-3.3912,47.7007],[-3.4046,47.7029],[-3.4169,47.7002],[-3.4278,47.7046],[-3.4363,47.7001],[-3.4363,47.6985],[-3.445,47.6994],[-3.4457,47.6958],[-3.4528,47.6953],[-3.4623,47.6999],[-3.4621,47.7015],[-3.4592,47.7014],[-3.4604,47.7042],[-3.4699,47.7068],[-3.4715,47.7101],[-3.4762,47.7098],[-3.4751,47.7142],[-3.4809,47.7146],[-3.487,47.7228],[-3.4934,47.7243],[-3.4947,47.7284],[-3.5003,47.7306],[-3.4989,47.7332],[-3.5016,47.7378],[-3.5067,47.7476],[-3.5226,47.7595],[-3.5269,47.7669],[-3.525,47.7696],[-3.53,47.7742],[-3.5299,47.7824],[-3.5255,47.7847],[-3.5248,47.7876],[-3.5164,47.7867],[-3.5177,47.7889],[-3.5262,47.7904],[-3.5189,47.799],[-3.5173,47.8051],[-3.5239,47.8111],[-3.5351,47.8146],[-3.5359,47.8164],[-3.5329,47.8203],[-3.5384,47.8233],[-3.5408,47.8292],[-3.5383,47.836],[-3.5261,47.8429],[-3.523,47.8491],[-3.5303,47.856],[-3.5419,47.857],[-3.541,47.8642],[-3.5443,47.858],[-3.532,47.8523],[-3.5276,47.844],[-3.5317,47.8438],[-3.5386,47.8378],[-3.5414,47.8312],[-3.5416,47.8227],[-3.5349,47.8204],[-3.5371,47.8167],[-3.5357,47.8129],[-3.5245,47.8096],[-3.5268,47.8044],[-3.5321,47.8042],[-3.5205,47.8037],[-3.5212,47.7988],[-3.5269,47.797],[-3.5301,47.7915],[-3.5334,47.7745],[-3.5312,47.7702],[-3.5374,47.7629],[-3.5441,47.7634],[-3.5484,47.7661],[-3.5549,47.7648],[-3.5645,47.7687],[-3.6019,47.7686],[-3.6074,47.771],[-3.6043,47.7781],[-3.6121,47.7684],[-3.6162,47.7697],[-3.6264,47.77],[-3.6458,47.7761],[-3.648,47.7818],[-3.6379,47.793],[-3.6431,47.7902],[-3.6509,47.7798],[-3.6698,47.7812],[-3.6735,47.7765],[-3.6778,47.7763],[-3.7233,47.7983],[-3.7226,47.8033],[-3.7183,47.8064],[-3.7134,47.8068],[-3.7118,47.8107],[-3.7023,47.8137],[-3.697,47.819],[-3.6863,47.819],[-3.6715,47.8244],[-3.6515,47.8199],[-3.6396,47.829],[-3.6511,47.8219],[-3.659,47.8247],[-3.6709,47.8256],[-3.6816,47.8235],[-3.6861,47.8204],[-3.6903,47.8202],[-3.6952,47.8207],[-3.696,47.8219],[-3.6937,47.8288],[-3.6953,47.8316],[-3.6962,47.8306],[-3.6955,47.8277],[-3.7001,47.8196],[-3.7245,47.8052],[-3.7327,47.8034],[-3.7362,47.8057],[-3.7418,47.8123],[-3.7439,47.8175],[-3.7436,47.8276],[-3.7456,47.835],[-3.7448,47.8358],[-3.7477,47.8422],[-3.7507,47.8457],[-3.7477,47.848],[-3.7465,47.8511],[-3.7472,47.8516],[-3.7509,47.8474],[-3.751,47.8449],[-3.7482,47.8412],[-3.7546,47.8343],[-3.7515,47.8296],[-3.7459,47.8266],[-3.7454,47.8191],[-3.7501,47.8165],[-3.7555,47.818],[-3.7519,47.8159],[-3.7465,47.8157],[-3.745,47.8142],[-3.7412,47.8092],[-3.7397,47.7992],[-3.7456,47.7955],[-3.7599,47.7906],[-3.7767,47.79],[-3.7884,47.7912],[-3.7953,47.7898],[-3.8004,47.7873],[-3.8071,47.789],[-3.8108,47.7942],[-3.8376,47.7974],[-3.8531,47.7921],[-3.8505,47.7972],[-3.8546,47.804],[-3.9025,47.8357],[-3.8987,47.8466],[-3.8914,47.8451],[-3.8888,47.8487],[-3.8955,47.8496],[-3.8806,47.8591],[-3.8967,47.8491],[-3.9192,47.8557],[-3.9137,47.8595],[-3.9068,47.856],[-3.8986,47.8593],[-3.9071,47.8617],[-3.9139,47.8719],[-3.9187,47.8688],[-3.9305,47.8707],[-3.9335,47.8817],[-3.948,47.888],[-3.9406,47.8939],[-3.9501,47.8907],[-3.946,47.9045],[-3.9535,47.8941],[-3.9587,47.8969],[-3.9732,47.8947],[-3.9776,47.9097],[-3.9807,47.8947],[-3.9912,47.8972],[-3.9923,47.8958],[-3.9915,47.8944],[-3.9901,47.893],[-3.9889,47.8931],[-3.987,47.8904],[-3.98,47.8895],[-3.9732,47.8907],[-3.9852,47.8863],[-3.99,47.8827],[-3.9872,47.8795],[-3.9857,47.8747],[-3.9859,47.8723],[-3.9845,47.8695],[-3.986,47.8668],[-3.9845,47.8651],[-3.9842,47.862],[-3.9795,47.8571],[-3.9747,47.8553],[-3.9771,47.8538],[-3.9902,47.854],[-4.0036,47.8513],[-4.0256,47.8504],[-4.0346,47.8484],[-4.0405,47.8445],[-4.0474,47.8509],[-4.0567,47.856],[-4.072,47.8603],[-4.0885,47.8622],[-4.087,47.8629],[-4.0743,47.8615],[-4.0609,47.858],[-4.047,47.8516],[-4.0452,47.8529],[-4.0528,47.8555],[-4.0582,47.8593],[-4.0586,47.8606],[-4.0565,47.8621],[-4.0609,47.8607],[-4.0649,47.8621],[-4.0629,47.8652],[-4.0636,47.867],[-4.0667,47.8632],[-4.0682,47.8644],[-4.0716,47.8639],[-4.074,47.8648],[-4.0667,47.871],[-4.0692,47.87],[-4.0698,47.8687],[-4.0739,47.8676],[-4.0785,47.8687],[-4.0798,47.8718],[-4.0783,47.8745],[-4.0786,47.878],[-4.0811,47.8768],[-4.0795,47.8748],[-4.0804,47.8735],[-4.0851,47.8735],[-4.0838,47.8718],[-4.0812,47.8712],[-4.08,47.8682],[-4.0773,47.867],[-4.0784,47.8657],[-4.0804,47.8645],[-4.0881,47.8644],[-4.0904,47.8628],[-4.0909,47.8612],[-4.0994,47.8625],[-4.0996,47.8645],[-4.1025,47.8666],[-4.1013,47.8686],[-4.1018,47.8701],[-4.1053,47.8714],[-4.1112,47.8715],[-4.1175,47.8766],[-4.118,47.8792],[-4.1143,47.8825],[-4.1122,47.8828],[-4.1056,47.8808],[-4.1066,47.8818],[-4.1119,47.8846],[-4.117,47.8844],[-4.1241,47.8876],[-4.1252,47.8914],[-4.118,47.8933],[-4.119,47.8943],[-4.116,47.8968],[-4.1229,47.8934],[-4.127,47.8945],[-4.1271,47.8926],[-4.1285,47.8927],[-4.1311,47.894],[-4.1332,47.8985],[-4.1353,47.8995],[-4.1379,47.898],[-4.1411,47.9001],[-4.1421,47.9056],[-4.1447,47.9093],[-4.1439,47.9141],[-4.1393,47.9214],[-4.1395,47.9257],[-4.1354,47.9247],[-4.1313,47.9254],[-4.1303,47.9264],[-4.131,47.9295],[-4.1303,47.9302],[-4.1163,47.9305],[-4.1101,47.9357],[-4.1098,47.9418],[-4.1063,47.9414],[-4.104,47.9397],[-4.1014,47.9431],[-4.0965,47.9413],[-4.0957,47.9382],[-4.0793,47.9366],[-4.0773,47.9342],[-4.0726,47.9327],[-4.0693,47.933],[-4.0761,47.9343],[-4.0778,47.9356],[-4.0779,47.9365],[-4.077,47.9366],[-4.0778,47.9373],[-4.0861,47.9377],[-4.0888,47.939],[-4.0922,47.9392],[-4.0949,47.9413],[-4.0928,47.9422],[-4.089,47.9455],[-4.0855,47.946],[-4.0844,47.9447],[-4.0831,47.9446],[-4.085,47.9464],[-4.0881,47.9473],[-4.0852,47.9501],[-4.0796,47.9494],[-4.0758,47.9482],[-4.077,47.9496],[-4.0787,47.9504],[-4.0832,47.9511],[-4.0834,47.9542],[-4.0824,47.9547],[-4.0827,47.9551],[-4.0844,47.9542],[-4.0848,47.952],[-4.0872,47.9511],[-4.0878,47.9491],[-4.0901,47.9482],[-4.0903,47.9463],[-4.0911,47.9457],[-4.0929,47.9449],[-4.0942,47.9451],[-4.0956,47.9422],[-4.0969,47.942],[-4.0987,47.9435],[-4.1009,47.9441],[-4.1021,47.9437],[-4.1038,47.942],[-4.1095,47.9427],[-4.1088,47.9434],[-4.1083,47.9455],[-4.1093,47.9499],[-4.1081,47.9508],[-4.1022,47.9506],[-4.0973,47.9532],[-4.0977,47.9546],[-4.0974,47.9556],[-4.0943,47.9623],[-4.0965,47.9705],[-4.1011,47.9732],[-4.1019,47.9743],[-4.1073,47.9744],[-4.1134,47.9754],[-4.114,47.9786],[-4.115,47.9776],[-4.1148,47.9764],[-4.1155,47.9764],[-4.116,47.9773],[-4.1151,47.9805],[-4.1151,47.9836],[-4.1172,47.9835],[-4.1184,47.9793],[-4.1181,47.9774],[-4.117,47.9754],[-4.1124,47.9721],[-4.1051,47.9712],[-4.102,47.9688],[-4.1026,47.9675],[-4.1054,47.9665],[-4.1093,47.9638],[-4.1103,47.9641],[-4.1108,47.9657],[-4.1125,47.9663],[-4.1139,47.9662],[-4.1159,47.965],[-4.1177,47.9656],[-4.1191,47.9652],[-4.1168,47.964],[-4.1149,47.9639],[-4.112,47.9606],[-4.1118,47.9562],[-4.1132,47.9548],[-4.115,47.954],[-4.1178,47.9535],[-4.1228,47.9537],[-4.1219,47.9526],[-4.12,47.9515],[-4.1155,47.9519],[-4.1139,47.9529],[-4.1126,47.9523],[-4.1117,47.9507],[-4.1119,47.9496],[-4.1186,47.9459],[-4.1156,47.9468],[-4.113,47.9467],[-4.1129,47.9461],[-4.1137,47.9457],[-4.1138,47.9451],[-4.1129,47.9426],[-4.1113,47.9414],[-4.1108,47.9364],[-4.1174,47.9315],[-4.12,47.9312],[-4.1248,47.9324],[-4.1306,47.9315],[-4.1326,47.9296],[-4.1315,47.9274],[-4.1322,47.9259],[-4.1362,47.9257],[-4.1393,47.9268],[-4.1411,47.926],[-4.1406,47.9223],[-4.1414,47.9201],[-4.1463,47.9156],[-4.1483,47.9128],[-4.151,47.9107],[-4.1479,47.9095],[-4.1486,47.9062],[-4.1463,47.9042],[-4.1451,47.8988],[-4.1456,47.8973],[-4.1507,47.8974],[-4.1548,47.8968],[-4.158,47.8957],[-4.1587,47.8944],[-4.1613,47.8973],[-4.163,47.8972],[-4.164,47.8959],[-4.1657,47.8955],[-4.1672,47.8965],[-4.1678,47.8991],[-4.1726,47.9006],[-4.1731,47.9035],[-4.1727,47.9052],[-4.1741,47.9074],[-4.1753,47.9076],[-4.1763,47.9068],[-4.175,47.9021],[-4.1724,47.8982],[-4.1707,47.8975],[-4.1698,47.8962],[-4.1712,47.8946],[-4.1584,47.893],[-4.1577,47.8928],[-4.1573,47.8915],[-4.1556,47.8921],[-4.1565,47.8937],[-4.1557,47.8951],[-4.1509,47.8946],[-4.152,47.8921],[-4.1509,47.8904],[-4.1484,47.8892],[-4.1486,47.8924],[-4.1492,47.8934],[-4.1472,47.8947],[-4.144,47.8959],[-4.1404,47.8961],[-4.1378,47.8948],[-4.1363,47.8936],[-4.1358,47.8921],[-4.1304,47.8899],[-4.1287,47.8871],[-4.1226,47.8839],[-4.1215,47.8819],[-4.1243,47.8794],[-4.1247,47.8782],[-4.1224,47.8783],[-4.1196,47.8742],[-4.1163,47.8716],[-4.1144,47.8715],[-4.1126,47.8651],[-4.1133,47.862],[-4.1157,47.8626],[-4.1179,47.8641],[-4.1232,47.8647],[-4.1385,47.8603],[-4.1513,47.8548],[-4.1636,47.8491],[-4.1698,47.8395],[-4.1688,47.8491],[-4.1651,47.8523],[-4.1698,47.8661],[-4.1742,47.8707],[-4.1742,47.8754],[-4.1789,47.8802],[-4.1829,47.8795],[-4.1848,47.8753],[-4.1957,47.8761],[-4.1918,47.8733],[-4.1918,47.8667],[-4.197,47.8625],[-4.1962,47.8582],[-4.2034,47.862],[-4.2058,47.8656],[-4.2176,47.867],[-4.2084,47.8655],[-4.2076,47.8619],[-4.1999,47.8594],[-4.1877,47.85],[-4.1917,47.8472],[-4.1794,47.8392],[-4.1863,47.8391],[-4.1893,47.8361],[-4.1856,47.8388],[-4.1787,47.8356],[-4.1676,47.8357],[-4.1588,47.8315],[-4.163,47.8278],[-4.1614,47.8241],[-4.167,47.8186],[-4.1665,47.8156],[-4.1748,47.8123],[-4.1764,47.805],[-4.1928,47.7958],[-4.2099,47.8013],[-4.2162,47.8133],[-4.2213,47.8149],[-4.2177,47.8135],[-4.2125,47.8007],[-4.2126,47.798],[-4.2187,47.792],[-4.2325,47.7937],[-4.2671,47.7902],[-4.2772,47.7912],[-4.2793,47.793],[-4.2713,47.7977],[-4.2723,47.8008],[-4.2858,47.792],[-4.2957,47.7928],[-4.2938,47.7973],[-4.3007,47.8006],[-4.3632,47.7955],[-4.3742,47.7979],[-4.3717,47.8095],[-4.3757,47.8168],[-4.3819,47.8162],[-4.3796,47.8217],[-4.3658,47.828],[-4.3529,47.8283],[-4.3479,47.8348],[-4.3549,47.837],[-4.3462,47.839],[-4.3611,47.8825],[-4.3593,47.88],[-4.3556,47.8839],[-4.3556,47.8926],[-4.3395,47.8997],[-4.3674,47.8948],[-4.3896,47.9286],[-4.4082,47.9428],[-4.4226,47.9624],[-4.452,47.9816],[-4.4759,47.9859],[-4.4816,47.9931],[-4.4981,48.0011],[-4.5351,48.0101],[-4.5308,48.0279],[-4.5339,48.0319],[-4.5303,48.0355],[-4.4874,48.0386],[-4.5211,48.0382],[-4.5214,48.0423],[-4.5348,48.0358],[-4.5385,48.0227],[-4.5355,48.0171],[-4.5418,48.0118],[-4.5494,48.012],[-4.5661,47.9996],[-4.5923,48.0065],[-4.5914,48.0108],[-4.5973,48.0148],[-4.6226,48.0179],[-4.633,48.0293],[-4.6549,48.0219],[-4.7001,48.0281],[-4.7378,48.0393],[-4.7069,48.045],[-4.7058,48.0494],[-4.7145,48.0535],[-4.711,48.0556],[-4.7143,48.0643],[-4.6717,48.0602],[-4.6652,48.0726],[-4.656,48.0679],[-4.6303,48.0673],[-4.6312,48.0728],[-4.6215,48.0684],[-4.6056,48.0751],[-4.5913,48.075],[-4.5817,48.0823],[-4.5521,48.0761],[-4.5357,48.0896],[-4.5231,48.0857],[-4.5122,48.0901],[-4.4867,48.0874],[-4.4667,48.0991],[-4.4573,48.0965],[-4.433,48.0973],[-4.4161,48.1067],[-4.3943,48.1043],[-4.3744,48.1101],[-4.3625,48.1092],[-4.3523,48.1021],[-4.341,48.1005],[-4.3304,48.0817],[-4.3353,48.0973],[-4.3233,48.0978],[-4.3229,48.0929],[-4.307,48.0891],[-4.2996,48.0906],[-4.2831,48.1096],[-4.2806,48.1188],[-4.2856,48.1261],[-4.2755,48.1335],[-4.2696,48.1318],[-4.2731,48.1541],[-4.296,48.1589],[-4.2944,48.1644],[-4.2991,48.1676],[-4.2927,48.1681],[-4.2912,48.1755],[-4.3035,48.1957],[-4.3341,48.2068],[-4.3694,48.2051],[-4.3739,48.2076],[-4.3693,48.2102],[-4.3782,48.2186],[-4.4045,48.2226],[-4.4653,48.2388],[-4.4953,48.2343],[-4.504,48.2256],[-4.4946,48.2216],[-4.4973,48.2167],[-4.5096,48.2126],[-4.5192,48.193],[-4.5401,48.1809],[-4.5401,48.1698],[-4.5541,48.1677],[-4.56,48.1762],[-4.5508,48.1818],[-4.5547,48.1902],[-4.5497,48.1942],[-4.5523,48.2095],[-4.5601,48.2193],[-4.5613,48.2301],[-4.5716,48.2314],[-4.5709,48.235],[-4.5445,48.2412],[-4.5451,48.2503],[-4.5569,48.2586],[-4.5825,48.2505],[-4.6115,48.2618],[-4.6183,48.2607],[-4.6225,48.2527],[-4.6256,48.2567],[-4.6152,48.2735],[-4.6309,48.2793],[-4.6122,48.2797],[-4.601,48.2876],[-4.6004,48.2822],[-4.5901,48.2791],[-4.5965,48.2796],[-4.5956,48.2768],[-4.5879,48.2749],[-4.5699,48.2819],[-4.5676,48.2916],[-4.5729,48.2986],[-4.5704,48.3043],[-4.5739,48.313],[-4.5813,48.3188],[-4.5707,48.3304],[-4.5548,48.3386],[-4.533,48.3419],[-4.5453,48.3245],[-4.5478,48.3096],[-4.5563,48.3002],[-4.5481,48.2917],[-4.538,48.2935],[-4.5412,48.2874],[-4.5365,48.284],[-4.522,48.2904],[-4.5261,48.2949],[-4.5077,48.3107],[-4.4993,48.3111],[-4.4954,48.3096],[-4.5183,48.2947],[-4.5026,48.2808],[-4.4699,48.2872],[-4.4596,48.2929],[-4.4221,48.2921],[-4.4099,48.276],[-4.3845,48.2751],[-4.3661,48.278],[-4.3519,48.2864],[-4.3368,48.2859],[-4.3071,48.2975],[-4.2717,48.2959],[-4.2648,48.2921],[-4.2657,48.2845],[-4.2764,48.2896],[-4.2844,48.288],[-4.2876,48.2821],[-4.2846,48.2763],[-4.2885,48.2733],[-4.2826,48.2753],[-4.2604,48.2666],[-4.2555,48.2622],[-4.2699,48.2579],[-4.2555,48.2597],[-4.2434,48.2488],[-4.2293,48.251],[-4.2186,48.2584],[-4.2065,48.239],[-4.211,48.2472],[-4.1569,48.2444],[-4.1354,48.2362],[-4.1128,48.2446],[-4.1169,48.2183],[-4.108,48.2465],[-4.0955,48.2563],[-4.1108,48.2473],[-4.1338,48.2415],[-4.1529,48.248],[-4.2044,48.249],[-4.2158,48.2608],[-4.2397,48.2539],[-4.251,48.2666],[-4.2794,48.2778],[-4.2773,48.2812],[-4.2587,48.2803],[-4.2329,48.2918],[-4.2258,48.2875],[-4.2028,48.2939],[-4.1959,48.2916],[-4.187,48.2963],[-4.2357,48.2992],[-4.2409,48.3075],[-4.2207,48.3139],[-4.2442,48.3107],[-4.2491,48.3019],[-4.2466,48.2988],[-4.2557,48.3095],[-4.2718,48.3085],[-4.2819,48.3124],[-4.2429,48.3282],[-4.2823,48.3186],[-4.2932,48.3113],[-4.3369,48.3145],[-4.3183,48.3227],[-4.3168,48.3254],[-4.3232,48.3265],[-4.3188,48.3294],[-4.3091,48.3274],[-4.3027,48.3307],[-4.3165,48.3316],[-4.3162,48.3358],[-4.2778,48.3446],[-4.2877,48.3499],[-4.2668,48.3547],[-4.2621,48.3604],[-4.2882,48.3533],[-4.3022,48.3556],[-4.3057,48.3496],[-4.2997,48.3448],[-4.3303,48.3386],[-4.331,48.3464],[-4.3185,48.3621],[-4.347,48.3432],[-4.3559,48.3451],[-4.3413,48.3571],[-4.3669,48.3445],[-4.3674,48.3352],[-4.3782,48.3255],[-4.4175,48.3245],[-4.4025,48.3385],[-4.3915,48.3412],[-4.3972,48.3422],[-4.4408,48.327],[-4.458,48.3272],[-4.4493,48.3298],[-4.4483,48.3373],[-4.4392,48.3418],[-4.4439,48.3488],[-4.4341,48.3626],[-4.4186,48.3687],[-4.3961,48.3865],[-4.3681,48.3949],[-4.3593,48.4021],[-4.3484,48.4021],[-4.3103,48.4173],[-4.2786,48.4358],[-4.2695,48.4436],[-4.273,48.4446],[-4.2795,48.4374],[-4.2935,48.434],[-4.3142,48.4198],[-4.3373,48.4152],[-4.3472,48.407],[-4.3611,48.4098],[-4.3691,48.4062],[-4.3689,48.4015],[-4.3834,48.3959],[-4.3927,48.3973],[-4.4017,48.3896],[-4.4307,48.3974],[-4.4373,48.3825],[-4.4553,48.382],[-4.4521,48.3861],[-4.4556,48.3874],[-4.4673,48.381],[-4.4773,48.3832],[-4.5011,48.3778],[-4.5302,48.3634],[-4.5338,48.3576],[-4.5529,48.3619],[-4.5718,48.3492],[-4.6087,48.3379],[-4.6281,48.3375],[-4.6402,48.3455],[-4.6504,48.345],[-4.6789,48.3554],[-4.7004,48.3502],[-4.7035,48.3458],[-4.6959,48.3367],[-4.7053,48.336],[-4.7106,48.3308],[-4.7361,48.3329],[-4.7555,48.3281],[-4.7728,48.3292],[-4.7747,48.3379],[-4.7701,48.3475],[-4.7801,48.3534],[-4.7807,48.3586],[-4.7682,48.362],[-4.7528,48.3595],[-4.75,48.3611],[-4.7539,48.3625],[-4.7459,48.3657],[-4.7906,48.3616],[-4.7859,48.3683],[-4.7693,48.365],[-4.7604,48.3747],[-4.763,48.3832],[-4.7704,48.3839],[-4.7764,48.3913],[-4.7737,48.4054],[-4.7845,48.4052],[-4.7914,48.4176],[-4.7856,48.4357],[-4.776,48.4439],[-4.7793,48.4508],[-4.7646,48.4668],[-4.7568,48.4679],[-4.7595,48.4598],[-4.7504,48.471],[-4.7191,48.4744],[-4.7625,48.4721],[-4.7706,48.4788],[-4.7667,48.4806],[-4.7799,48.4978],[-4.7755,48.5011],[-4.7779,48.5047],[-4.7664,48.5105],[-4.776,48.5191],[-4.7668,48.5155],[-4.7649,48.5194],[-4.7698,48.5213],[-4.758,48.5209],[-4.7647,48.5307],[-4.7574,48.5299],[-4.7582,48.5344],[-4.7522,48.5315],[-4.7491,48.537],[-4.753,48.5439],[-4.7355,48.55],[-4.7306,48.5563],[-4.7172,48.5592],[-4.7173,48.5557],[-4.7075,48.555],[-4.7041,48.55],[-4.7004,48.5657],[-4.7041,48.5701],[-4.6849,48.5721],[-4.6853,48.5682],[-4.6802,48.5671],[-4.6684,48.5745],[-4.6632,48.5689],[-4.6258,48.5787],[-4.6242,48.5747],[-4.5967,48.5715],[-4.5909,48.5595],[-4.5956,48.5534],[-4.5783,48.5603],[-4.5423,48.5571],[-4.5318,48.5494],[-4.5288,48.5546],[-4.5073,48.548],[-4.5081,48.552],[-4.5341,48.5557],[-4.5402,48.5607],[-4.548,48.558],[-4.554,48.5621],[-4.5865,48.5625],[-4.5931,48.5742],[-4.6099,48.5758],[-4.6123,48.5782],[-4.603,48.5853],[-4.6074,48.5976],[-4.5974,48.6082],[-4.5857,48.6019],[-4.5953,48.5933],[-4.543,48.5983],[-4.5228,48.5921],[-4.5216,48.5861],[-4.5024,48.587],[-4.4914,48.576],[-4.4784,48.572],[-4.4981,48.5843],[-4.4992,48.5887],[-4.5194,48.5889],[-4.521,48.5933],[-4.5508,48.6041],[-4.563,48.6033],[-4.5524,48.6107],[-4.5683,48.609],[-4.5639,48.6152],[-4.5695,48.6194],[-4.5625,48.6206],[-4.5661,48.6254],[-4.5417,48.6243],[-4.5485,48.6334],[-4.5422,48.637],[-4.5388,48.6367],[-4.5393,48.6309],[-4.5302,48.6289],[-4.5146,48.6341],[-4.5061,48.6294],[-4.5125,48.6288],[-4.5096,48.6226],[-4.5013,48.6209],[-4.4936,48.6254],[-4.4792,48.6233],[-4.4628,48.627],[-4.4418,48.6401],[-4.4331,48.6351],[-4.4271,48.6395],[-4.3974,48.6363],[-4.4325,48.6475],[-4.4367,48.6546],[-4.3981,48.6556],[-4.35,48.6765],[-4.3269,48.6743],[-4.3299,48.6689],[-4.3245,48.666],[-4.3124,48.6725],[-4.3114,48.6682],[-4.2957,48.6638],[-4.2999,48.6525],[-4.3181,48.6463],[-4.3082,48.6437],[-4.3162,48.6377],[-4.2976,48.6324],[-4.2935,48.637],[-4.3013,48.64],[-4.2811,48.6428],[-4.2745,48.6495],[-4.2384,48.6505],[-4.2233,48.6559],[-4.2336,48.6493],[-4.1945,48.652],[-4.2027,48.6567],[-4.2222,48.6579],[-4.1928,48.6829],[-4.1328,48.695],[-4.0952,48.6935],[-4.0945,48.6875],[-4.0919,48.6919],[-4.0812,48.693],[-4.0677,48.6827],[-4.0688,48.6798],[-4.0579,48.675],[-4.0571,48.6696],[-4.0567,48.6756],[-4.0662,48.6855],[-4.0383,48.6873],[-4.0568,48.6875],[-4.0565,48.701],[-4.0515,48.705],[-4.0399,48.7039],[-4.0354,48.7139],[-4.0159,48.7124],[-4.0069,48.7259],[-4.0012,48.7258],[-4.0075,48.72],[-4.0005,48.7116],[-3.993,48.7151],[-3.9928,48.7234],[-3.9872,48.7275],[-3.9776,48.722],[-3.9693,48.7277],[-3.9621,48.7209],[-3.9691,48.7186],[-3.9758,48.6997],[-3.965,48.6931],[-3.9666,48.69],[-3.958,48.6882],[-3.9617,48.6864],[-3.9591,48.6827],[-3.9682,48.6899],[-3.9715,48.6741],[-3.965,48.6768],[-3.95,48.6726],[-3.9554,48.6692],[-3.9514,48.6614],[-3.9572,48.6478],[-3.9498,48.6389],[-3.955,48.6271],[-3.9536,48.6187],[-3.9583,48.6136],[-3.9506,48.619],[-3.9415,48.6029],[-3.9346,48.5987],[-3.9425,48.6107],[-3.9435,48.6143],[-3.9389,48.6145],[-3.9506,48.6233],[-3.9483,48.641],[-3.9428,48.6413],[-3.951,48.6449],[-3.9505,48.6528],[-3.9411,48.659],[-3.9301,48.6578],[-3.9226,48.6754],[-3.9093,48.6693],[-3.8994,48.6734],[-3.8901,48.6684],[-3.9062,48.6608],[-3.8977,48.6463],[-3.8629,48.6337],[-3.857,48.626],[-3.8567,48.6196],[-3.8623,48.6132],[-3.858,48.6086],[-3.8707,48.604],[-3.8569,48.6083],[-3.8496,48.6037],[-3.8595,48.6143],[-3.8456,48.6269],[-3.8113,48.6289],[-3.848,48.6289],[-3.8566,48.6614],[-3.8644,48.6703],[-3.8542,48.6732],[-3.8538,48.6622],[-3.8463,48.6601],[-3.8458,48.6717],[-3.8494,48.6829],[-3.8543,48.6856],[-3.8502,48.6954],[-3.8403,48.6967],[-3.8409,48.7043],[-3.8311,48.7127],[-3.8281,48.7041],[-3.8196,48.7008],[-3.8213,48.7081],[-3.8168,48.7116],[-3.8232,48.7195],[-3.8097,48.7119],[-3.7987,48.7128],[-3.796,48.7061],[-3.7851,48.7012],[-3.7586,48.7096],[-3.7164,48.7046],[-3.7181,48.7001],[-3.7024,48.6903],[-3.6885,48.6916],[-3.6803,48.6867],[-3.6558,48.6966],[-3.6521,48.6936],[-3.6437,48.6963],[-3.6548,48.682],[-3.6393,48.6733],[-3.6592,48.6592]]],[[[-2.9861,48.8645],[-2.9866,48.8592],[-2.9956,48.8589],[-2.9933,48.8487],[-2.9968,48.8384],[-3.0115,48.837],[-3.0141,48.8512],[-2.9986,48.8512],[-3.0128,48.858],[-2.9861,48.8645]]],[[[-3.5657,48.8075],[-3.5626,48.8031],[-3.5656,48.799],[-3.5858,48.7956],[-3.5851,48.8044],[-3.5657,48.8075]]],[[[-5.0725,48.4827],[-5.0601,48.4759],[-5.0503,48.4762],[-5.0586,48.4669],[-5.0328,48.4627],[-5.0377,48.4584],[-5.0499,48.4587],[-5.0623,48.4487],[-5.0803,48.451],[-5.0889,48.4405],[-5.1113,48.4356],[-5.1102,48.4429],[-5.092,48.4502],[-5.0988,48.4563],[-5.1392,48.4478],[-5.1401,48.4518],[-5.1315,48.4597],[-5.1084,48.4657],[-5.1067,48.4718],[-5.076,48.4743],[-5.0709,48.4791],[-5.0764,48.4803],[-5.0725,48.4827]]],[[[-3.9918,48.7364],[-4.0116,48.7441],[-4.0222,48.7385],[-4.0403,48.7459],[-4.0231,48.7533],[-4.0062,48.7531],[-4.0031,48.7476],[-3.9919,48.7453],[-3.9885,48.7394],[-3.9918,48.7364]]],[[[-3.2354,47.3238],[-3.2537,47.3356],[-3.2573,47.345],[-3.2533,47.3491],[-3.2635,47.3522],[-3.2588,47.3557],[-3.2586,47.3689],[-3.2626,47.3713],[-3.2463,47.3715],[-3.2532,47.3753],[-3.2483,47.3874],[-3.235,47.3793],[-3.2173,47.3783],[-3.2218,47.3684],[-3.2182,47.3632],[-3.2186,47.3709],[-3.2126,47.3736],[-3.2007,47.3723],[-3.194,47.3658],[-3.1709,47.3614],[-3.1573,47.3646],[-3.1535,47.3475],[-3.1452,47.3432],[-3.1463,47.3348],[-3.1385,47.3289],[-3.1242,47.3289],[-3.1223,47.3235],[-3.115,47.324],[-3.1008,47.3155],[-3.0685,47.317],[-3.0559,47.3081],[-3.064,47.3067],[-3.0652,47.3002],[-3.0753,47.2925],[-3.0755,47.2863],[-3.0931,47.2779],[-3.0962,47.2829],[-3.1119,47.2888],[-3.1229,47.2905],[-3.1396,47.2859],[-3.1482,47.2931],[-3.1581,47.2923],[-3.1738,47.3018],[-3.1927,47.2939],[-3.2021,47.2968],[-3.1982,47.3009],[-3.2061,47.2936],[-3.2188,47.2935],[-3.225,47.3001],[-3.2388,47.3031],[-3.2485,47.3138],[-3.2495,47.3168],[-3.2448,47.3154],[-3.2354,47.3238]]],[[[-3.4218,47.62],[-3.438,47.6285],[-3.4626,47.6201],[-3.4736,47.6269],[-3.4866,47.6283],[-3.5147,47.6466],[-3.5143,47.6521],[-3.4856,47.6528],[-3.4335,47.6433],[-3.4151,47.6322],[-3.4218,47.62]]],[[[-2.9904,47.4023],[-2.9677,47.3928],[-2.9388,47.3941],[-2.9534,47.3851],[-2.9481,47.3733],[-2.9587,47.3836],[-2.9739,47.3853],[-2.9822,47.393],[-2.9919,47.3938],[-2.9936,47.4018],[-2.9904,47.4023]]],[[[-2.8415,47.5984],[-2.8392,47.5925],[-2.8237,47.5888],[-2.8467,47.5897],[-2.8557,47.5741],[-2.848,47.5673],[-2.8604,47.5601],[-2.857,47.5901],[-2.8389,47.6072],[-2.8415,47.5984]]],[[[-2.8625,47.3435],[-2.8643,47.3368],[-2.8776,47.3325],[-2.8861,47.3322],[-2.8886,47.3369],[-2.8882,47.3447],[-2.8749,47.3425],[-2.8633,47.3489],[-2.8625,47.3435]]],[[[-2.7928,47.6012],[-2.7868,47.5992],[-2.7865,47.5948],[-2.7986,47.5896],[-2.8088,47.5784],[-2.8131,47.5792],[-2.8127,47.5838],[-2.8047,47.5867],[-2.8129,47.5909],[-2.7962,47.5979],[-2.7947,47.6056],[-2.7928,47.6012]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C6","Couleur":6,"name":"16_FR","LONG":3972724,"LAT":2313518,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":43.8378,"Long":5.6653},"geometry":{"type":"MultiPolygon","coordinates":[[[[7.4156,43.7257],[7.4062,43.7184],[7.389,43.723],[7.3746,43.7184],[7.36,43.7223],[7.3507,43.7148],[7.3376,43.7117],[7.3294,43.7021],[7.3339,43.6896],[7.3501,43.6863],[7.3423,43.683],[7.3344,43.686],[7.3354,43.6782],[7.3313,43.6745],[7.3241,43.677],[7.3199,43.6898],[7.3264,43.6956],[7.325,43.7],[7.3147,43.7065],[7.3069,43.6981],[7.3086,43.6911],[7.304,43.6848],[7.2937,43.6863],[7.2856,43.6977],[7.2835,43.6931],[7.2624,43.6943],[7.2419,43.6885],[7.2306,43.6785],[7.2253,43.6594],[7.2065,43.6456],[7.1994,43.6463],[7.203,43.6509],[7.1967,43.6572],[7.1782,43.656],[7.1677,43.6574],[7.1511,43.6493],[7.1374,43.6343],[7.1301,43.6178],[7.1258,43.5952],[7.1302,43.5903],[7.1217,43.5863],[7.1313,43.5851],[7.1257,43.5732],[7.1405,43.5696],[7.1346,43.5555],[7.1451,43.5516],[7.1385,43.5456],[7.1233,43.5459],[7.1195,43.5422],[7.1175,43.5489],[7.1219,43.5524],[7.1218,43.5595],[7.1129,43.567],[7.0963,43.5709],[7.0694,43.563],[7.0558,43.5478],[7.0409,43.5421],[7.0382,43.5347],[7.0325,43.5458],[7.0157,43.5509],[7.0121,43.5473],[6.9718,43.5454],[6.9516,43.5341],[6.9374,43.5103],[6.9533,43.5061],[6.9572,43.5006],[6.9461,43.4916],[6.949,43.4851],[6.9327,43.4843],[6.9337,43.4801],[6.9308,43.4747],[6.9239,43.4733],[6.9243,43.4664],[6.9205,43.4491],[6.9011,43.4431],[6.8917,43.4284],[6.8708,43.4251],[6.8664,43.4336],[6.8577,43.4318],[6.86,43.417],[6.8534,43.411],[6.8291,43.4185],[6.7977,43.4139],[6.7875,43.4083],[6.7637,43.4245],[6.7484,43.4198],[6.7334,43.4053],[6.7284,43.3934],[6.7326,43.3901],[6.7131,43.367],[6.7193,43.3573],[6.7128,43.3524],[6.7161,43.3467],[6.6809,43.3408],[6.6697,43.3336],[6.6651,43.3249],[6.6713,43.3126],[6.6592,43.3139],[6.6449,43.306],[6.6355,43.3077],[6.6227,43.2964],[6.5839,43.2773],[6.5855,43.2678],[6.582,43.2675],[6.5942,43.2622],[6.6207,43.2642],[6.6402,43.2743],[6.6642,43.2646],[6.6695,43.2685],[6.6692,43.2761],[6.678,43.2788],[6.6976,43.2665],[6.6903,43.2544],[6.6778,43.2459],[6.6655,43.2431],[6.6623,43.2231],[6.6648,43.211],[6.6797,43.1991],[6.6757,43.1952],[6.66,43.1962],[6.6425,43.1866],[6.6406,43.1734],[6.6462,43.1674],[6.6328,43.1719],[6.6222,43.1644],[6.6208,43.1578],[6.6017,43.1821],[6.562,43.1891],[6.5382,43.18],[6.5341,43.1728],[6.5401,43.1698],[6.5346,43.1633],[6.5241,43.166],[6.4966,43.1512],[6.4641,43.1575],[6.4482,43.1527],[6.4487,43.1491],[6.439,43.1422],[6.4394,43.1473],[6.4291,43.1514],[6.4036,43.1491],[6.3956,43.1438],[6.3844,43.144],[6.3764,43.1356],[6.3687,43.137],[6.3638,43.127],[6.3671,43.1225],[6.3595,43.1181],[6.3596,43.1052],[6.3692,43.1025],[6.3643,43.0863],[6.3365,43.0896],[6.3126,43.1077],[6.2961,43.1102],[6.2893,43.1067],[6.2876,43.1147],[6.2749,43.1207],[6.2614,43.121],[6.2343,43.113],[6.1978,43.1144],[6.1803,43.107],[6.1604,43.0893],[6.1503,43.0644],[6.1507,43.0422],[6.1532,43.0352],[6.1727,43.0322],[6.1479,43.027],[6.1369,43.0304],[6.1347,43.0362],[6.12,43.032],[6.1138,43.0353],[6.1032,43.0275],[6.0962,43.0278],[6.0909,43.0361],[6.0938,43.0404],[6.1193,43.039],[6.1318,43.0489],[6.1323,43.0595],[6.1254,43.0783],[6.1088,43.0839],[6.0788,43.0877],[6.0547,43.0801],[6.0215,43.0783],[6.0168,43.0836],[6.0237,43.0944],[6.0062,43.104],[5.9558,43.1082],[5.9257,43.1023],[5.9344,43.1185],[5.93,43.1209],[5.9227,43.1151],[5.9265,43.1207],[5.9209,43.1239],[5.9173,43.1215],[5.9198,43.12],[5.9075,43.1189],[5.9109,43.1151],[5.8873,43.1161],[5.8845,43.1133],[5.8917,43.108],[5.8812,43.1094],[5.8832,43.1026],[5.901,43.104],[5.9106,43.1006],[5.9076,43.0977],[5.9107,43.0933],[5.9016,43.0919],[5.8948,43.0817],[5.9079,43.0777],[5.9179,43.0858],[5.9274,43.0775],[5.9289,43.0829],[5.9382,43.0846],[5.9493,43.0788],[5.9511,43.072],[5.9442,43.0663],[5.9366,43.0717],[5.9113,43.0658],[5.8985,43.0776],[5.8902,43.078],[5.8722,43.0677],[5.8587,43.0476],[5.8472,43.0493],[5.8292,43.0492],[5.8155,43.0638],[5.7938,43.0686],[5.7958,43.0744],[5.8037,43.0767],[5.8122,43.0942],[5.8042,43.1004],[5.8139,43.1068],[5.8073,43.1157],[5.791,43.1124],[5.7887,43.1164],[5.7707,43.1164],[5.7771,43.1221],[5.7734,43.126],[5.781,43.1309],[5.7712,43.1389],[5.7545,43.1353],[5.7512,43.1298],[5.7493,43.1355],[5.7241,43.1362],[5.7165,43.148],[5.7105,43.1439],[5.7096,43.1472],[5.6949,43.1436],[5.6942,43.1501],[5.6834,43.1548],[5.6827,43.1604],[5.6938,43.1657],[5.6946,43.1718],[5.6867,43.1797],[5.6719,43.1793],[5.6505,43.1884],[5.6232,43.1868],[5.6063,43.1737],[5.6093,43.1679],[5.6146,43.1692],[5.6055,43.1602],[5.5715,43.1736],[5.5555,43.1884],[5.5479,43.196],[5.5499,43.2074],[5.5394,43.2098],[5.5372,43.2145],[5.5124,43.2045],[5.5101,43.1977],[5.5003,43.1968],[5.4546,43.2119],[5.4435,43.2126],[5.4552,43.2028],[5.4521,43.2013],[5.4234,43.2112],[5.4203,43.2096],[5.4276,43.2034],[5.3987,43.2129],[5.3636,43.2071],[5.3471,43.2127],[5.3369,43.2136],[5.3366,43.2151],[5.3428,43.2148],[5.3458,43.2169],[5.3447,43.2215],[5.348,43.2295],[5.3584,43.2348],[5.3616,43.2381],[5.3625,43.2431],[5.3683,43.2432],[5.3645,43.2457],[5.3725,43.2451],[5.376,43.2552],[5.3747,43.2595],[5.3715,43.2599],[5.37,43.264],[5.3681,43.263],[5.3702,43.2675],[5.3631,43.2704],[5.3617,43.274],[5.3523,43.2797],[5.3455,43.2821],[5.3544,43.2893],[5.3533,43.2925],[5.355,43.2952],[5.3613,43.2928],[5.3738,43.2945],[5.3727,43.2961],[5.362,43.2947],[5.3585,43.2978],[5.3625,43.299],[5.3625,43.3013],[5.3607,43.3014],[5.3641,43.3042],[5.3622,43.3051],[5.3644,43.3121],[5.3603,43.3124],[5.3641,43.3141],[5.3609,43.314],[5.3607,43.3163],[5.3588,43.3153],[5.3613,43.3177],[5.3565,43.3191],[5.3621,43.3209],[5.3587,43.3257],[5.3583,43.3222],[5.3551,43.3208],[5.3569,43.3229],[5.3558,43.3245],[5.3524,43.3231],[5.3533,43.325],[5.3498,43.3295],[5.3473,43.3297],[5.3504,43.3311],[5.345,43.3332],[5.3525,43.3328],[5.3511,43.3347],[5.3428,43.3351],[5.3416,43.3364],[5.3455,43.3363],[5.3432,43.3391],[5.3375,43.3395],[5.3283,43.3447],[5.3319,43.3449],[5.3398,43.3401],[5.3419,43.3415],[5.3397,43.3435],[5.343,43.3432],[5.3242,43.3544],[5.3232,43.3521],[5.3166,43.3543],[5.3212,43.3519],[5.3166,43.3539],[5.3211,43.3501],[5.32,43.3488],[5.3128,43.3548],[5.3167,43.3564],[5.3226,43.3542],[5.3266,43.3558],[5.3226,43.3572],[5.322,43.3555],[5.3083,43.3614],[5.2941,43.3596],[5.3037,43.3586],[5.2935,43.3585],[5.2826,43.3537],[5.2591,43.3384],[5.2294,43.3287],[5.1912,43.3295],[5.1753,43.3342],[5.1688,43.3281],[5.1444,43.3265],[5.0956,43.3283],[5.0885,43.3325],[5.0816,43.3279],[5.0624,43.3311],[5.0539,43.3243],[5.0482,43.3264],[5.0509,43.3316],[5.041,43.3273],[5.0307,43.3334],[5.018,43.3464],[5.0257,43.3551],[5.0176,43.3571],[5.01,43.3672],[5.0126,43.3693],[4.9865,43.3927],[5.0009,43.398],[4.9955,43.4035],[4.9832,43.4038],[4.9829,43.3961],[4.9738,43.4021],[4.9776,43.4074],[4.97,43.4249],[4.9314,43.4332],[4.9113,43.4277],[4.9068,43.4196],[4.8884,43.4122],[4.8935,43.4041],[4.8868,43.4129],[4.8897,43.4202],[4.9061,43.4291],[4.8881,43.4265],[4.8822,43.4193],[4.866,43.4341],[4.8605,43.4441],[4.8608,43.454],[4.8502,43.4508],[4.8766,43.4128],[4.8668,43.4047],[4.8299,43.4287],[4.8244,43.4243],[4.8619,43.4002],[4.8501,43.3979],[4.8365,43.4055],[4.8403,43.4023],[4.8358,43.4035],[4.8322,43.3971],[4.8325,43.394],[4.8528,43.3949],[4.8548,43.3914],[4.8531,43.3905],[4.8526,43.3938],[4.8517,43.39],[4.8543,43.3885],[4.8711,43.3898],[4.8528,43.3876],[4.8491,43.3832],[4.8484,43.3786],[4.8287,43.3756],[4.8433,43.3757],[4.849,43.3709],[4.8479,43.3741],[4.8516,43.3761],[4.8554,43.3711],[4.8685,43.3669],[4.8785,43.3558],[4.8864,43.3564],[4.8835,43.3641],[4.8931,43.363],[4.8945,43.3658],[4.9105,43.3751],[4.9136,43.3804],[4.9121,43.3856],[4.9163,43.3836],[4.9175,43.3799],[4.915,43.3751],[4.8618,43.338],[4.8587,43.3339],[4.8575,43.3266],[4.8376,43.3272],[4.8129,43.3393],[4.7737,43.349],[4.7219,43.3501],[4.6807,43.3457],[4.6613,43.3462],[4.641,43.3503],[4.604,43.3537],[4.5828,43.3603],[4.5648,43.3705],[4.5592,43.376],[4.557,43.3815],[4.5625,43.3884],[4.5947,43.4025],[4.5963,43.4055],[4.5925,43.4168],[4.5855,43.4286],[4.5737,43.4379],[4.5549,43.4462],[4.5353,43.4515],[4.502,43.4557],[4.4555,43.4557],[4.4387,43.4538],[4.4293,43.4491],[4.4013,43.4468],[4.382,43.4523],[4.2303,43.4602],[4.1656,43.4719],[4.1321,43.4857],[4.1165,43.5083],[4.1219,43.5109],[4.1231,43.5214],[4.1373,43.5247],[4.1391,43.5319],[4.1239,43.5458],[4.101,43.5544],[4.1087,43.5684],[4.0954,43.5815],[4.081,43.5899],[4.0747,43.5886],[4.0851,43.5921],[4.0988,43.5853],[4.1248,43.5886],[4.1502,43.5856],[4.1493,43.5977],[4.1688,43.6091],[4.1935,43.6417],[4.1907,43.6475],[4.1942,43.6545],[4.1636,43.6901],[4.152,43.7057],[4.12,43.727],[4.0791,43.7541],[4.0526,43.773],[4.0538,43.7832],[4.0494,43.789],[4.0186,43.8071],[4.0013,43.8131],[3.9743,43.8015],[3.9601,43.806],[3.962,43.8171],[3.978,43.8295],[3.9722,43.8373],[3.9795,43.8427],[3.9582,43.844],[3.9556,43.8538],[3.9253,43.8566],[3.9176,43.8686],[3.9176,43.8871],[3.9121,43.8883],[3.898,43.8778],[3.8569,43.8772],[3.8516,43.8679],[3.8219,43.8534],[3.7488,43.8556],[3.6873,43.8534],[3.5755,43.8656],[3.5989,43.8549],[3.6009,43.8495],[3.5814,43.848],[3.5789,43.8436],[3.5588,43.8566],[3.5525,43.8516],[3.5282,43.8546],[3.5227,43.8662],[3.5227,43.8886],[3.5164,43.8887],[3.5185,43.892],[3.5132,43.8962],[3.5026,43.8973],[3.5021,43.8917],[3.4831,43.8918],[3.4624,43.8719],[3.4323,43.8629],[3.4216,43.8723],[3.4313,43.8726],[3.4351,43.885],[3.4412,43.8873],[3.4324,43.8935],[3.4393,43.8968],[3.4371,43.9007],[3.4228,43.9124],[3.4032,43.9151],[3.384,43.9106],[3.3703,43.9174],[3.3615,43.9107],[3.3587,43.9145],[3.3507,43.9328],[3.357,43.9489],[3.3756,43.9561],[3.3775,43.9674],[3.4056,43.9697],[3.4182,43.9932],[3.4396,43.9983],[3.4454,44.0041],[3.451,44.0225],[3.4176,44.0418],[3.3994,44.044],[3.3894,44.0575],[3.3712,44.0494],[3.372,44.0554],[3.3676,44.0582],[3.3518,44.0502],[3.3375,44.0586],[3.3289,44.079],[3.3183,44.079],[3.3068,44.0688],[3.2945,44.0679],[3.2972,44.0724],[3.2898,44.0719],[3.2757,44.0839],[3.277,44.0876],[3.2625,44.0931],[3.2781,44.0967],[3.2915,44.106],[3.3118,44.1051],[3.3238,44.1089],[3.3203,44.1356],[3.3321,44.1418],[3.3346,44.1588],[3.3444,44.1588],[3.3574,44.168],[3.3736,44.1708],[3.3952,44.1687],[3.3967,44.1613],[3.4055,44.1618],[3.4116,44.1535],[3.4303,44.1482],[3.4328,44.135],[3.4397,44.1292],[3.4802,44.1241],[3.5081,44.126],[3.538,44.1206],[3.5453,44.1132],[3.5663,44.1233],[3.604,44.1156],[3.6328,44.1212],[3.6364,44.1409],[3.6528,44.146],[3.6266,44.1534],[3.6374,44.1765],[3.6496,44.1809],[3.6585,44.1734],[3.671,44.1789],[3.6696,44.1862],[3.685,44.1827],[3.6924,44.1714],[3.7056,44.165],[3.7256,44.1642],[3.7369,44.156],[3.7591,44.1517],[3.7651,44.1414],[3.7733,44.1436],[3.797,44.1274],[3.8127,44.1288],[3.8226,44.1363],[3.8321,44.1373],[3.8752,44.1264],[3.8739,44.1301],[3.8895,44.1448],[3.9006,44.1497],[3.911,44.1487],[3.9116,44.1601],[3.9273,44.1613],[3.9238,44.1823],[3.9741,44.163],[3.9766,44.1708],[3.9712,44.1745],[3.965,44.1709],[3.9615,44.1752],[3.9646,44.1784],[3.9585,44.1816],[3.9621,44.1882],[3.9596,44.1917],[3.937,44.1949],[3.952,44.2217],[3.9479,44.2265],[3.9468,44.2433],[3.9547,44.2496],[3.9711,44.2504],[3.9751,44.2588],[3.9597,44.271],[3.9458,44.2667],[3.9339,44.2758],[3.9399,44.2859],[3.9366,44.2939],[3.9229,44.3052],[3.9441,44.3167],[3.9523,44.3311],[3.9448,44.3361],[3.935,44.336],[3.9066,44.3758],[3.8976,44.3777],[3.8858,44.388],[3.8887,44.393],[3.8993,44.3907],[3.9074,44.4025],[3.9164,44.4051],[3.9448,44.3996],[3.9527,44.402],[3.9491,44.4039],[3.9491,44.4128],[3.961,44.4138],[3.973,44.4267],[3.9757,44.4432],[3.9848,44.4458],[3.9982,44.4598],[4.0216,44.4499],[4.0232,44.4457],[4.0371,44.446],[4.0464,44.4326],[4.0359,44.4195],[4.0481,44.4179],[4.0684,44.4051],[4.0626,44.398],[4.0643,44.3948],[4.0566,44.3926],[4.0475,44.3974],[4.0405,44.3913],[4.0574,44.3634],[4.0509,44.3471],[4.0535,44.3376],[4.0357,44.3298],[4.0515,44.3173],[4.074,44.3299],[4.093,44.3304],[4.0945,44.3347],[4.1163,44.3272],[4.1267,44.3377],[4.1345,44.3287],[4.142,44.3272],[4.1429,44.3134],[4.1644,44.3121],[4.178,44.3177],[4.1866,44.2997],[4.2148,44.2908],[4.2414,44.2701],[4.2589,44.2644],[4.2775,44.2748],[4.289,44.2921],[4.2884,44.315],[4.3032,44.3148],[4.3174,44.3212],[4.3297,44.3323],[4.3258,44.3383],[4.3677,44.3394],[4.3918,44.3466],[4.4032,44.3337],[4.3896,44.301],[4.3936,44.3002],[4.3956,44.2907],[4.4202,44.2871],[4.433,44.2912],[4.4345,44.2834],[4.4404,44.2834],[4.4532,44.2979],[4.4485,44.2973],[4.4524,44.3381],[4.472,44.342],[4.4812,44.3369],[4.5022,44.3386],[4.5044,44.3442],[4.5131,44.3342],[4.5126,44.3282],[4.5225,44.3305],[4.5325,44.3227],[4.5486,44.3259],[4.5445,44.3207],[4.5599,44.3019],[4.6055,44.291],[4.6166,44.278],[4.6343,44.2849],[4.6409,44.2747],[4.6492,44.2704],[4.6535,44.3019],[4.6506,44.3298],[4.6792,44.3205],[4.713,44.3207],[4.7187,44.3267],[4.7611,44.3254],[4.7712,44.3175],[4.7887,44.3133],[4.7896,44.3077],[4.8046,44.3039],[4.8027,44.2814],[4.8125,44.2581],[4.8134,44.2323],[4.8263,44.2284],[4.8438,44.2417],[4.8659,44.2496],[4.8675,44.2558],[4.8803,44.2618],[4.9013,44.2643],[4.8962,44.2584],[4.8987,44.257],[4.9358,44.2632],[4.9396,44.2692],[4.9819,44.2845],[5.0035,44.2855],[5.0232,44.2964],[5.0602,44.3076],[5.0765,44.2841],[5.1043,44.2798],[5.1547,44.3022],[5.1511,44.3098],[5.1664,44.3149],[5.1737,44.3082],[5.168,44.2899],[5.1488,44.2807],[5.1468,44.2738],[5.1484,44.2694],[5.1606,44.2667],[5.1615,44.2456],[5.1495,44.2353],[5.1553,44.2304],[5.176,44.2204],[5.2301,44.2119],[5.2381,44.2132],[5.2404,44.2308],[5.2522,44.2312],[5.2921,44.2145],[5.3033,44.2054],[5.3035,44.2098],[5.3183,44.2097],[5.3368,44.2036],[5.3555,44.2144],[5.3845,44.2012],[5.3811,44.1958],[5.3867,44.1811],[5.3832,44.1553],[5.3972,44.152],[5.4166,44.155],[5.4269,44.149],[5.4357,44.1522],[5.4367,44.1399],[5.4476,44.1367],[5.451,44.1212],[5.4988,44.1157],[5.5078,44.1179],[5.5113,44.1242],[5.5416,44.1328],[5.5513,44.1496],[5.5691,44.1481],[5.5785,44.152],[5.583,44.1575],[5.5644,44.1709],[5.5774,44.1883],[5.6093,44.1907],[5.6162,44.1781],[5.6395,44.1676],[5.6317,44.1582],[5.6311,44.1506],[5.6786,44.1461],[5.6827,44.1635],[5.6436,44.1696],[5.6516,44.1896],[5.676,44.1914],[5.6924,44.1863],[5.6937,44.1917],[5.7114,44.1947],[5.7147,44.1999],[5.7361,44.2006],[5.7553,44.2102],[5.7758,44.2055],[5.795,44.2135],[5.8143,44.2101],[5.829,44.2005],[5.9091,44.1904],[5.9148,44.204],[5.8768,44.2141],[5.872,44.2277],[5.861,44.2357],[5.8602,44.2448],[5.8265,44.263],[5.8228,44.2757],[5.8367,44.292],[5.8361,44.2975],[5.8474,44.3012],[5.8755,44.291],[5.8748,44.2774],[5.8792,44.272],[5.9136,44.2487],[5.9218,44.2484],[5.9198,44.2543],[5.9248,44.266],[5.9128,44.2688],[5.9168,44.281],[5.9126,44.2881],[5.9269,44.2941],[5.9233,44.3011],[5.9251,44.3134],[5.9214,44.3155],[5.911,44.3109],[5.8982,44.316],[5.8978,44.3225],[5.9053,44.3281],[5.9031,44.337],[5.9184,44.3392],[5.9372,44.3592],[5.9463,44.3826],[5.9571,44.3974],[5.9797,44.4095],[6.0186,44.4187],[6.0251,44.4334],[6.0544,44.4471],[6.0575,44.452],[6.062,44.45],[6.0608,44.4459],[6.0758,44.4386],[6.0712,44.4511],[6.0828,44.4637],[6.0762,44.4685],[6.0847,44.4775],[6.1021,44.4718],[6.1153,44.4756],[6.1252,44.4686],[6.1548,44.4621],[6.1599,44.4352],[6.174,44.4396],[6.1827,44.4318],[6.1847,44.4232],[6.2032,44.4127],[6.2266,44.3814],[6.2484,44.3893],[6.2625,44.4123],[6.2335,44.4637],[6.2659,44.466],[6.269,44.4717],[6.2935,44.4809],[6.3121,44.4669],[6.3271,44.4635],[6.3272,44.4681],[6.3389,44.4711],[6.3412,44.4884],[6.3482,44.4977],[6.3324,44.51],[6.3572,44.5226],[6.362,44.5221],[6.3856,44.4991],[6.3988,44.4942],[6.4115,44.4706],[6.4234,44.4676],[6.4353,44.4748],[6.4455,44.4656],[6.459,44.4656],[6.469,44.4513],[6.4817,44.454],[6.5197,44.448],[6.536,44.4521],[6.5628,44.4456],[6.5777,44.4486],[6.5889,44.4456],[6.5993,44.4487],[6.6323,44.4469],[6.6417,44.4855],[6.6685,44.5003],[6.6789,44.5207],[6.6806,44.5415],[6.7039,44.5391],[6.7293,44.5532],[6.7383,44.5531],[6.7486,44.561],[6.7522,44.5703],[6.7714,44.5755],[6.7675,44.5875],[6.7824,44.5947],[6.7925,44.5927],[6.8016,44.6046],[6.8089,44.6014],[6.8243,44.6088],[6.8437,44.6092],[6.8538,44.6148],[6.8586,44.6293],[6.871,44.6281],[6.8907,44.6362],[6.9076,44.6564],[6.9158,44.66],[6.9394,44.6521],[6.9483,44.6548],[6.9532,44.6379],[6.9684,44.6198],[6.9493,44.6192],[6.9503,44.61],[6.938,44.6037],[6.9335,44.5962],[6.9329,44.5734],[6.9127,44.569],[6.9156,44.5592],[6.8904,44.5523],[6.8786,44.5543],[6.8698,44.5368],[6.8535,44.5293],[6.8619,44.5001],[6.8769,44.4887],[6.8762,44.4818],[6.9062,44.4677],[6.9119,44.4512],[6.9364,44.4399],[6.9481,44.4297],[6.9338,44.43],[6.9333,44.4251],[6.9248,44.4223],[6.918,44.4274],[6.8927,44.4207],[6.8977,44.4055],[6.8944,44.4],[6.8968,44.3751],[6.8875,44.3662],[6.8874,44.361],[6.9219,44.3515],[6.9268,44.3328],[6.9528,44.3192],[6.9607,44.3103],[6.9575,44.2951],[6.9705,44.2942],[6.9719,44.2836],[6.9814,44.2867],[6.9957,44.2799],[6.9967,44.2519],[7.0085,44.2352],[7.0304,44.2314],[7.0388,44.2237],[7.0768,44.2322],[7.0865,44.2293],[7.0925,44.2202],[7.1139,44.2178],[7.1431,44.2002],[7.1627,44.208],[7.1777,44.1972],[7.1883,44.2008],[7.1936,44.1871],[7.2007,44.187],[7.2048,44.179],[7.2198,44.1684],[7.2283,44.1682],[7.2352,44.1755],[7.2409,44.1734],[7.2486,44.1585],[7.2803,44.1412],[7.2879,44.1452],[7.3081,44.1442],[7.3104,44.1475],[7.3212,44.1427],[7.3442,44.1452],[7.358,44.116],[7.3929,44.125],[7.4248,44.1119],[7.4299,44.1301],[7.4607,44.1258],[7.5074,44.1444],[7.5213,44.1376],[7.5342,44.1479],[7.5546,44.1464],[7.5681,44.1535],[7.6201,44.1495],[7.6366,44.1771],[7.6806,44.1761],[7.6846,44.1737],[7.681,44.1643],[7.6722,44.1592],[7.6709,44.1529],[7.678,44.1454],[7.6666,44.1311],[7.6745,44.1179],[7.7188,44.0825],[7.7129,44.0746],[7.7141,44.0616],[7.7051,44.0546],[7.7005,44.0407],[7.6908,44.04],[7.6754,44.0294],[7.6627,44.0289],[7.6618,44.0179],[7.6704,43.9982],[7.6557,43.9852],[7.6524,43.9737],[7.6435,43.9739],[7.6114,43.9555],[7.5985,43.9574],[7.5691,43.9474],[7.5666,43.9434],[7.5734,43.9354],[7.5682,43.923],[7.5579,43.9172],[7.5623,43.9004],[7.5171,43.8823],[7.512,43.8852],[7.5103,43.8794],[7.4975,43.8709],[7.5002,43.867],[7.4954,43.8644],[7.4967,43.8509],[7.4991,43.8452],[7.5079,43.8415],[7.5183,43.8033],[7.5298,43.784],[7.5148,43.7827],[7.5222,43.7828],[7.5106,43.781],[7.5112,43.7751],[7.493,43.7692],[7.4821,43.7569],[7.4868,43.749],[7.4764,43.7505],[7.461,43.7604],[7.4392,43.749],[7.4309,43.7487],[7.4134,43.7346],[7.4092,43.7296],[7.4156,43.7257]],[[5.023,43.5563],[5.0133,43.5545],[5.0158,43.5275],[4.9998,43.5082],[4.9979,43.4992],[5.0037,43.4833],[5.0006,43.475],[5.0074,43.4695],[5.0414,43.47],[5.0519,43.4636],[5.0607,43.4231],[5.0575,43.4084],[5.0608,43.4029],[5.0817,43.3997],[5.1175,43.4046],[5.1249,43.4002],[5.1373,43.4002],[5.1647,43.4138],[5.2041,43.4416],[5.1954,43.4485],[5.1981,43.4509],[5.2086,43.4437],[5.2266,43.453],[5.2301,43.4651],[5.2248,43.4811],[5.2079,43.4919],[5.1634,43.4708],[5.1537,43.4598],[5.1549,43.4558],[5.1458,43.4581],[5.1242,43.484],[5.1136,43.5047],[5.1182,43.518],[5.1137,43.523],[5.0587,43.5279],[5.0456,43.5218],[5.023,43.5563]]],[[[7.0671,43.5136],[7.0339,43.5178],[7.0313,43.5218],[7.0483,43.5238],[7.0709,43.5174],[7.0671,43.5136]]],[[[4.9886,44.4232],[5.0015,44.4125],[5.0102,44.4109],[5.012,44.4156],[5.0188,44.416],[5.02,44.4104],[5.0134,44.4054],[5.0159,44.3928],[5.0348,44.391],[5.0473,44.3815],[5.0709,44.3832],[5.0703,44.3764],[5.0549,44.365],[5.023,44.3596],[5.0231,44.3457],[5.009,44.3338],[5.0133,44.3257],[4.9912,44.312],[4.987,44.2927],[4.9798,44.2974],[4.9218,44.3088],[4.8895,44.304],[4.8915,44.3129],[4.8813,44.3242],[4.8943,44.3331],[4.8953,44.3381],[4.8795,44.3454],[4.8695,44.3451],[4.8705,44.3485],[4.8911,44.3602],[4.8942,44.3688],[4.9071,44.3746],[4.9118,44.3876],[4.9097,44.3967],[4.9185,44.4078],[4.9597,44.4203],[4.9715,44.4315],[4.9787,44.4235],[4.9886,44.4232]]],[[[6.2056,42.9818],[6.1958,42.9834],[6.1937,42.9903],[6.1609,43.0011],[6.1796,43.0086],[6.1985,43.0007],[6.2106,43.0021],[6.2173,43.0082],[6.2172,43.0135],[6.234,43.0116],[6.2423,43.0255],[6.2487,43.0165],[6.2508,42.9997],[6.2156,42.991],[6.2056,42.9818]]],[[[6.5051,43.0531],[6.5099,43.0457],[6.5032,43.042],[6.4875,43.0427],[6.4728,43.0251],[6.471,43.0166],[6.4612,43.0134],[6.4503,43.0167],[6.4379,43.0033],[6.4337,43.0069],[6.4339,43.0202],[6.4579,43.0276],[6.4691,43.0446],[6.5051,43.0531]]],[[[6.3971,42.9928],[6.3879,42.9981],[6.3704,42.9979],[6.3833,43.0138],[6.3902,43.012],[6.4084,43.0183],[6.4137,43.0167],[6.4129,43.0089],[6.4207,43.0137],[6.4069,42.9972],[6.3971,42.9928]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C10","Couleur":6,"name":"19_FR","LONG":3545173,"LAT":2679179,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":46.3076,"Long":0.1972},"geometry":{"type":"MultiPolygon","coordinates":[[[[1.1024,47.4179],[1.1138,47.3962],[1.1231,47.3922],[1.1193,47.3871],[1.1212,47.3823],[1.1044,47.3701],[1.116,47.3634],[1.1228,47.3536],[1.1136,47.3481],[1.1063,47.3311],[1.0949,47.3285],[1.0988,47.3124],[1.1081,47.2984],[1.1224,47.2932],[1.1274,47.2976],[1.1621,47.2722],[1.1741,47.2886],[1.1949,47.2832],[1.2233,47.2942],[1.2418,47.2877],[1.2434,47.2738],[1.2598,47.2648],[1.2659,47.2558],[1.2762,47.2568],[1.2801,47.2481],[1.2944,47.2374],[1.3267,47.1862],[1.3465,47.1691],[1.3512,47.1524],[1.3637,47.1351],[1.3657,47.1227],[1.3557,47.1085],[1.3431,47.1006],[1.3181,47.1041],[1.31,47.0951],[1.317,47.085],[1.3122,47.0721],[1.2938,47.0723],[1.2857,47.0577],[1.2695,47.0496],[1.2772,47.0398],[1.2537,47.0222],[1.2322,47.0141],[1.2231,47.0242],[1.1988,47.028],[1.183,47.0405],[1.174,47.0413],[1.1323,47.0277],[1.1156,47.0244],[1.1103,47.0292],[1.0841,47.021],[1.0699,47.0063],[1.0736,47.0027],[1.0564,46.9964],[1.0559,46.9826],[1.0505,46.9806],[1.0599,46.972],[1.064,46.9558],[1.0361,46.9404],[1.0342,46.9083],[1.0224,46.8633],[1.0168,46.8559],[1.0226,46.8456],[1.2695,46.7548],[1.453,46.6936],[1.6278,46.615],[1.8113,46.5363],[2.0473,46.3703],[2.0735,46.2654],[2.115,46.2174],[2.1587,46.1693],[2.1827,46.1256],[2.2067,46.0863],[2.2483,46.0338],[2.3291,45.9639],[2.3859,45.8066],[2.3826,45.7078],[2.3638,45.7129],[2.344,45.7065],[2.3495,45.6932],[2.3373,45.6803],[2.3274,45.6756],[2.3219,45.678],[2.3253,45.6711],[2.3205,45.6686],[2.3079,45.6763],[2.2885,45.6654],[2.269,45.6634],[2.2711,45.6917],[2.2533,45.6888],[2.2455,45.6952],[2.2379,45.6929],[2.2317,45.7],[2.2241,45.6958],[2.2127,45.7128],[2.2113,45.7023],[2.1946,45.6987],[2.1915,45.7021],[2.1975,45.7046],[2.199,45.7122],[2.2074,45.7158],[2.1829,45.7207],[2.1763,45.7317],[2.1639,45.7364],[2.1569,45.7213],[2.1449,45.7233],[2.1334,45.7354],[2.121,45.7322],[2.1139,45.725],[2.0974,45.734],[2.0847,45.7281],[2.0832,45.7464],[2.0596,45.7538],[2.0521,45.765],[2.0372,45.7545],[2.0171,45.7554],[2.0015,45.7488],[1.9992,45.7325],[1.9916,45.7214],[1.9568,45.7247],[1.9415,45.7132],[1.9477,45.7056],[1.9322,45.706],[1.9293,45.7125],[1.9226,45.7136],[1.912,45.7084],[1.9138,45.7037],[1.9048,45.7037],[1.8987,45.6983],[1.9019,45.6921],[1.9092,45.6918],[1.911,45.6808],[1.9045,45.6778],[1.8818,45.6813],[1.8818,45.674],[1.8774,45.6712],[1.8817,45.6675],[1.8748,45.6647],[1.8549,45.6721],[1.8468,45.6612],[1.843,45.6645],[1.8332,45.6634],[1.8246,45.6666],[1.8154,45.6811],[1.8015,45.6766],[1.8015,45.6731],[1.7965,45.6748],[1.796,45.6814],[1.7858,45.6827],[1.7765,45.6588],[1.7535,45.6555],[1.7504,45.6444],[1.7437,45.6465],[1.7282,45.6382],[1.7093,45.6418],[1.6609,45.6085],[1.658,45.5942],[1.6465,45.5903],[1.6429,45.5838],[1.6374,45.5843],[1.6372,45.5804],[1.6281,45.5827],[1.6215,45.5771],[1.5945,45.5776],[1.5823,45.555],[1.5704,45.5556],[1.5563,45.5493],[1.5511,45.5512],[1.5506,45.5567],[1.5357,45.5563],[1.5176,45.5643],[1.5176,45.5556],[1.4925,45.5494],[1.4922,45.5609],[1.4804,45.5659],[1.4752,45.5534],[1.452,45.553],[1.4543,45.5384],[1.4396,45.5204],[1.4252,45.531],[1.4075,45.5269],[1.3915,45.5073],[1.3896,45.4962],[1.372,45.4926],[1.3501,45.4669],[1.2853,45.4903],[1.2874,45.4818],[1.2692,45.4764],[1.2627,45.4675],[1.2645,45.4525],[1.2566,45.4523],[1.2532,45.4442],[1.2434,45.4366],[1.2345,45.4398],[1.2358,45.455],[1.2096,45.4632],[1.1851,45.4551],[1.1776,45.4573],[1.1761,45.4712],[1.1615,45.4786],[1.1355,45.4697],[1.1244,45.4791],[1.1199,45.4752],[1.1184,45.4879],[1.1284,45.4944],[1.1341,45.505],[1.167,45.5246],[1.1289,45.5444],[1.1205,45.5439],[1.1197,45.5474],[1.106,45.5441],[1.1034,45.5367],[1.0868,45.5372],[1.0855,45.5311],[1.0822,45.5326],[1.0751,45.5455],[1.0614,45.5543],[1.0457,45.5573],[1.0468,45.5626],[1.0404,45.5658],[1.0327,45.5799],[1.0417,45.5861],[1.0336,45.5925],[1.0357,45.6],[1.0266,45.6022],[1.0227,45.6101],[1.006,45.6104],[0.9971,45.6151],[0.9861,45.6043],[0.9793,45.6033],[0.9688,45.611],[0.9602,45.6078],[0.9464,45.615],[0.9422,45.6095],[0.9335,45.6118],[0.9155,45.6041],[0.9067,45.6089],[0.8981,45.5999],[0.883,45.6082],[0.8765,45.621],[0.8694,45.6235],[0.8426,45.5824],[0.8115,45.5759],[0.8067,45.5948],[0.7762,45.592],[0.7522,45.6177],[0.7635,45.6287],[0.7643,45.6412],[0.7729,45.6499],[0.7764,45.6672],[0.7609,45.6699],[0.7429,45.6903],[0.7343,45.6895],[0.7256,45.6954],[0.7118,45.6945],[0.7031,45.6872],[0.6952,45.6921],[0.6696,45.6859],[0.6546,45.6887],[0.6521,45.699],[0.6399,45.6983],[0.6298,45.7146],[0.6217,45.6989],[0.614,45.6985],[0.6149,45.6945],[0.6101,45.6919],[0.604,45.6941],[0.6032,45.6804],[0.5914,45.6758],[0.6004,45.6717],[0.5861,45.6674],[0.5866,45.6596],[0.5784,45.6603],[0.567,45.6533],[0.5755,45.6409],[0.5608,45.6328],[0.5468,45.635],[0.5425,45.6334],[0.5465,45.6289],[0.5385,45.6287],[0.5339,45.6358],[0.5373,45.6378],[0.5354,45.6429],[0.5256,45.6441],[0.5263,45.6399],[0.5106,45.6311],[0.5073,45.6196],[0.5004,45.6196],[0.5036,45.6112],[0.5168,45.5996],[0.5105,45.5967],[0.5163,45.5881],[0.501,45.573],[0.5049,45.5693],[0.4986,45.5648],[0.5057,45.561],[0.5066,45.5543],[0.5001,45.5455],[0.4944,45.5467],[0.4859,45.5385],[0.4657,45.5396],[0.4592,45.526],[0.4493,45.5239],[0.4486,45.5156],[0.4324,45.5042],[0.4318,45.4856],[0.4226,45.4845],[0.4094,45.4925],[0.391,45.4854],[0.3814,45.4861],[0.3767,45.4762],[0.3602,45.4761],[0.3592,45.4662],[0.3329,45.459],[0.3338,45.4494],[0.3294,45.4435],[0.3079,45.4608],[0.3026,45.4589],[0.3023,45.4455],[0.3177,45.436],[0.3131,45.4324],[0.2933,45.4337],[0.2765,45.4268],[0.2482,45.3689],[0.2044,45.385],[0.1236,45.409],[-0.0228,45.4505],[-0.2128,45.4702],[-0.4925,45.4898],[-0.6651,45.4811],[-0.7738,45.4493],[-0.7783,45.4488],[-0.7902,45.4614],[-0.7992,45.4758],[-0.808,45.4724],[-0.8268,45.4875],[-0.8197,45.492],[-0.8369,45.5002],[-0.8541,45.515],[-0.8708,45.5163],[-0.8865,45.5294],[-0.9079,45.5338],[-0.907,45.5398],[-0.9173,45.551],[-0.9323,45.5576],[-0.9429,45.5566],[-0.9448,45.5515],[-0.9626,45.5567],[-0.9839,45.5769],[-0.993,45.5772],[-0.989,45.5853],[-0.9945,45.5985],[-1.0136,45.6002],[-1.0098,45.6118],[-1.0222,45.6226],[-1.0283,45.6232],[-1.0307,45.6166],[-1.0426,45.6173],[-1.0522,45.623],[-1.0517,45.627],[-1.057,45.6251],[-1.0766,45.635],[-1.0749,45.6382],[-1.0828,45.6364],[-1.1019,45.6453],[-1.1149,45.6463],[-1.1615,45.6743],[-1.2093,45.6967],[-1.2316,45.6914],[-1.2184,45.6738],[-1.2057,45.6718],[-1.2251,45.6741],[-1.2344,45.6894],[-1.2401,45.7262],[-1.2418,45.7859],[-1.2063,45.7935],[-1.1884,45.7898],[-1.1561,45.8023],[-1.1457,45.797],[-1.1392,45.799],[-1.1321,45.8049],[-1.1371,45.8199],[-1.1521,45.8318],[-1.1493,45.8361],[-1.1547,45.8445],[-1.1681,45.8452],[-1.1637,45.8509],[-1.1702,45.8559],[-1.1512,45.8521],[-1.1555,45.8587],[-1.1532,45.8624],[-1.1209,45.8568],[-1.106,45.8671],[-1.1009,45.872],[-1.0984,45.8823],[-1.0792,45.9012],[-1.0738,45.9142],[-1.0771,45.9371],[-1.0996,45.9444],[-1.0958,45.9489],[-1.0643,45.9499],[-1.0646,45.9526],[-1.0651,45.9559],[-1.0767,45.9594],[-1.0819,45.9646],[-1.0834,45.9782],[-1.0855,45.9813],[-1.0961,45.9839],[-1.0985,45.99],[-1.1094,45.9987],[-1.1217,46.0036],[-1.1104,46.0016],[-1.1043,45.9969],[-1.0981,45.9959],[-1.0948,45.9918],[-1.0817,45.9966],[-1.0631,45.9944],[-1.057,45.9981],[-1.0531,46.0038],[-1.0528,46.0119],[-1.059,46.0191],[-1.0613,46.0269],[-1.0611,46.0289],[-1.0564,46.0304],[-1.0567,46.0359],[-1.0659,46.0498],[-1.0775,46.0535],[-1.0888,46.054],[-1.0938,46.0771],[-1.1011,46.0942],[-1.115,46.1023],[-1.131,46.1018],[-1.135,46.1053],[-1.1383,46.1059],[-1.1406,46.1039],[-1.1431,46.1063],[-1.1431,46.1088],[-1.1402,46.1103],[-1.1322,46.1088],[-1.1241,46.112],[-1.1247,46.1207],[-1.1282,46.1266],[-1.1457,46.127],[-1.153,46.1367],[-1.1724,46.1393],[-1.1722,46.146],[-1.1609,46.1486],[-1.1592,46.154],[-1.1607,46.1555],[-1.1743,46.1526],[-1.1871,46.1534],[-1.1878,46.151],[-1.2069,46.1458],[-1.2291,46.1498],[-1.2334,46.1545],[-1.242,46.1575],[-1.2415,46.1627],[-1.2381,46.1656],[-1.2219,46.1672],[-1.2191,46.1705],[-1.2184,46.1801],[-1.2154,46.1829],[-1.2066,46.1847],[-1.2034,46.1879],[-1.1995,46.1935],[-1.1994,46.199],[-1.2067,46.2036],[-1.1998,46.2126],[-1.1893,46.2163],[-1.1833,46.2216],[-1.1728,46.223],[-1.1615,46.2309],[-1.158,46.2357],[-1.1491,46.238],[-1.1428,46.244],[-1.1409,46.2527],[-1.1421,46.2547],[-1.1296,46.2537],[-1.1183,46.2611],[-1.1111,46.2613],[-1.121,46.2887],[-1.1133,46.2919],[-1.1216,46.2897],[-1.1233,46.2937],[-1.1196,46.2952],[-1.1229,46.3017],[-1.1261,46.3021],[-1.1268,46.3076],[-1.1294,46.3103],[-1.1307,46.3111],[-1.1396,46.3112],[-1.1514,46.3186],[-1.1627,46.3238],[-1.1645,46.3233],[-1.1649,46.3218],[-1.1672,46.3197],[-1.1857,46.3185],[-1.2,46.3146],[-1.2007,46.3164],[-1.203,46.3157],[-1.2029,46.313],[-1.1997,46.3068],[-1.1955,46.3005],[-1.2064,46.2888],[-1.2076,46.2829],[-1.2082,46.2825],[-1.2117,46.283],[-1.2126,46.2789],[-1.2101,46.2742],[-1.2076,46.2723],[-1.2071,46.273],[-1.209,46.278],[-1.2082,46.2804],[-1.2075,46.2772],[-1.2034,46.2692],[-1.2032,46.2675],[-1.205,46.2665],[-1.2065,46.2664],[-1.2091,46.2676],[-1.2141,46.2713],[-1.221,46.2732],[-1.2286,46.2773],[-1.2308,46.2767],[-1.2478,46.2902],[-1.2632,46.2982],[-1.2752,46.3056],[-1.2761,46.3077],[-1.2839,46.3106],[-1.2871,46.3155],[-1.2942,46.3208],[-1.2947,46.3225],[-1.2959,46.3239],[-1.306,46.3192],[-1.3047,46.3163],[-1.3016,46.3128],[-1.2979,46.3072],[-1.2943,46.3034],[-1.2933,46.2987],[-1.2939,46.2984],[-1.3015,46.2998],[-1.2992,46.2982],[-1.2927,46.2967],[-1.2883,46.2966],[-1.2886,46.296],[-1.2918,46.2952],[-1.2958,46.295],[-1.2858,46.2941],[-1.2854,46.2955],[-1.2861,46.2963],[-1.2872,46.2966],[-1.287,46.297],[-1.2857,46.2965],[-1.284,46.2942],[-1.2847,46.2936],[-1.2982,46.2935],[-1.2929,46.2915],[-1.2884,46.2889],[-1.2791,46.2881],[-1.2764,46.2887],[-1.2733,46.2903],[-1.2722,46.2901],[-1.2722,46.2896],[-1.278,46.2871],[-1.2918,46.2883],[-1.2968,46.2899],[-1.3003,46.2928],[-1.3099,46.3048],[-1.3141,46.3132],[-1.3169,46.3168],[-1.3232,46.3234],[-1.3282,46.3279],[-1.3312,46.3297],[-1.3311,46.3302],[-1.3304,46.3301],[-1.3251,46.3268],[-1.3203,46.3225],[-1.3198,46.3225],[-1.3216,46.3264],[-1.3272,46.3311],[-1.3321,46.3333],[-1.3447,46.3418],[-1.3581,46.3476],[-1.3696,46.3487],[-1.3746,46.3485],[-1.3771,46.3471],[-1.3752,46.3454],[-1.3741,46.3451],[-1.3664,46.3445],[-1.3603,46.3432],[-1.3493,46.3386],[-1.3481,46.3376],[-1.3495,46.3374],[-1.3642,46.3414],[-1.3714,46.3427],[-1.3745,46.3429],[-1.3838,46.3409],[-1.401,46.3405],[-1.4081,46.3426],[-1.4119,46.3446],[-1.4164,46.346],[-1.4254,46.3476],[-1.4284,46.3471],[-1.4321,46.3436],[-1.4383,46.3401],[-1.4511,46.3407],[-1.4659,46.3424],[-1.4684,46.3432],[-1.4704,46.345],[-1.4755,46.3579],[-1.4772,46.3635],[-1.4816,46.3717],[-1.5003,46.3956],[-1.515,46.4043],[-1.5402,46.4095],[-1.5505,46.4054],[-1.6235,46.4129],[-1.6298,46.4179],[-1.6479,46.4202],[-1.6539,46.4239],[-1.6488,46.4294],[-1.7107,46.451],[-1.7143,46.459],[-1.7553,46.4744],[-1.7771,46.4928],[-1.7913,46.4945],[-1.8003,46.4887],[-1.8123,46.4934],[-1.8186,46.5187],[-1.857,46.6099],[-1.8717,46.6185],[-1.8764,46.6288],[-1.8978,46.6404],[-1.9408,46.6911],[-1.9509,46.6957],[-1.9655,46.6913],[-1.979,46.7039],[-1.9797,46.7174],[-1.9978,46.7324],[-2.065,46.779],[-2.1419,46.819],[-2.147,46.8628],[-2.155,46.8896],[-2.1217,46.8911],[-2.1121,46.8968],[-2.1107,46.9],[-2.1193,46.9008],[-2.1178,46.9083],[-2.091,46.9302],[-2.0794,46.934],[-2.0816,46.9382],[-2.0582,46.9509],[-2.0447,46.968],[-2.0465,46.9779],[-2.037,46.9913],[-2.0327,46.9916],[-2.0383,46.9972],[-2.0314,46.9992],[-2.0291,47.0084],[-1.9804,47.0289],[-1.9685,47.0274],[-1.9426,46.9944],[-1.917,46.9918],[-1.9149,46.9886],[-1.9191,46.9848],[-1.9122,46.9794],[-1.917,46.9748],[-1.9062,46.9708],[-1.8997,46.9617],[-1.8679,46.9522],[-1.8322,46.9538],[-1.8255,46.9476],[-1.8265,46.9379],[-1.8321,46.9321],[-1.8003,46.9306],[-1.7984,46.9274],[-1.7864,46.9296],[-1.7775,46.9251],[-1.7502,46.9305],[-1.7454,46.9281],[-1.747,46.9236],[-1.7419,46.9219],[-1.7453,46.9164],[-1.7354,46.9112],[-1.7341,46.8917],[-1.7228,46.8841],[-1.6865,46.8905],[-1.682,46.8838],[-1.6641,46.8747],[-1.6465,46.8792],[-1.6096,46.8712],[-1.6041,46.8753],[-1.5762,46.8641],[-1.5485,46.8601],[-1.5464,46.8743],[-1.5269,46.8729],[-1.5006,46.8834],[-1.5055,46.8903],[-1.5025,46.8933],[-1.5298,46.9069],[-1.5382,46.9163],[-1.5373,46.9206],[-1.5459,46.9255],[-1.5294,46.9227],[-1.5189,46.9344],[-1.525,46.9455],[-1.5339,46.9453],[-1.5347,46.9507],[-1.5445,46.9577],[-1.5427,46.9652],[-1.555,46.9785],[-1.5427,47.003],[-1.5553,47.014],[-1.5518,47.0186],[-1.5407,47.0175],[-1.5386,47.0232],[-1.5259,47.0229],[-1.4958,47.0415],[-1.4842,47.0397],[-1.4769,47.033],[-1.4692,47.0021],[-1.4602,46.9926],[-1.4771,46.9819],[-1.4719,46.9679],[-1.4615,46.9623],[-1.4571,46.9544],[-1.4717,46.9332],[-1.4582,46.9258],[-1.4138,46.9451],[-1.3916,46.9471],[-1.364,46.9579],[-1.3692,46.9641],[-1.3582,46.9714],[-1.359,46.9811],[-1.3778,46.9917],[-1.3632,47.005],[-1.3668,47.0193],[-1.3785,47.0311],[-1.3673,47.0353],[-1.3665,47.0414],[-1.347,47.038],[-1.3417,47.0399],[-1.3457,47.0457],[-1.3396,47.0454],[-1.3199,47.0345],[-1.2987,47.0347],[-1.2957,47.0423],[-1.3048,47.0411],[-1.2873,47.0583],[-1.286,47.0638],[-1.2913,47.0684],[-1.2875,47.0763],[-1.2803,47.0757],[-1.2698,47.0849],[-1.2469,47.0669],[-1.2316,47.0653],[-1.2093,47.0496],[-1.2019,47.0458],[-1.2009,47.0402],[-1.1485,47.0295],[-1.1172,47.0402],[-1.0281,47.0082],[-0.8718,47.0176],[-0.8088,47.0316],[-0.6362,47.0479],[-0.5242,47.0502],[-0.4239,47.0666],[-0.3142,47.1147],[-0.0367,47.0514],[0.1599,47.0514],[0.4702,47.106],[0.8197,47.189],[0.977,47.342],[1.1024,47.4179]]],[[[-2.3018,46.9897],[-2.302,46.9976],[-2.2921,47.0114],[-2.3075,47.0249],[-2.252,47.028],[-2.2445,47.0194],[-2.2256,47.0168],[-2.2183,47.0078],[-2.2198,46.9904],[-2.2412,46.9987],[-2.2401,46.9961],[-2.2468,46.994],[-2.2352,46.9952],[-2.2315,46.9889],[-2.2374,46.9815],[-2.2307,46.9732],[-2.2257,46.976],[-2.1571,46.95],[-2.1474,46.9339],[-2.1533,46.9312],[-2.1471,46.9263],[-2.151,46.9173],[-2.1482,46.9135],[-2.1533,46.9065],[-2.1479,46.8942],[-2.1646,46.9066],[-2.1814,46.937],[-2.2056,46.9564],[-2.2298,46.9659],[-2.2616,46.9593],[-2.2867,46.9835],[-2.3018,46.9897]]],[[[-2.3326,46.6855],[-2.3409,46.6912],[-2.3646,46.6944],[-2.3692,46.7015],[-2.3836,46.6993],[-2.3805,46.7049],[-2.3934,46.7111],[-2.4,46.7262],[-2.3745,46.733],[-2.3445,46.728],[-2.3387,46.7193],[-2.3181,46.7188],[-2.2887,46.6979],[-2.2826,46.6884],[-2.312,46.6958],[-2.3326,46.6855]]],[[[-1.3568,46.0237],[-1.3361,46.0135],[-1.3127,45.993],[-1.2857,45.9883],[-1.2479,45.9904],[-1.236,45.9815],[-1.2377,45.974],[-1.2327,45.9711],[-1.2327,45.9642],[-1.2348,45.9609],[-1.2362,45.9681],[-1.2421,45.9567],[-1.2248,45.9393],[-1.2284,45.9412],[-1.2338,45.9271],[-1.2236,45.9131],[-1.1884,45.8847],[-1.2077,45.8503],[-1.1959,45.8289],[-1.2304,45.8064],[-1.2252,45.8046],[-1.2292,45.8006],[-1.2366,45.8002],[-1.2454,45.8094],[-1.2551,45.855],[-1.2696,45.8808],[-1.2933,45.8999],[-1.3047,45.9009],[-1.3509,45.925],[-1.387,45.9538],[-1.3862,45.9631],[-1.3958,45.9768],[-1.3878,46],[-1.4005,46.0161],[-1.4134,46.0469],[-1.3702,46.0392],[-1.3721,46.0322],[-1.3568,46.0237]]],[[[-1.5243,46.2508],[-1.5132,46.2581],[-1.5006,46.2582],[-1.482,46.2472],[-1.4816,46.2405],[-1.4745,46.2338],[-1.482,46.2286],[-1.4915,46.2291],[-1.4946,46.2336],[-1.4853,46.2436],[-1.4961,46.235],[-1.4996,46.2407],[-1.4977,46.2278],[-1.5039,46.2234],[-1.5149,46.2349],[-1.5148,46.227],[-1.5068,46.2146],[-1.4967,46.2156],[-1.4935,46.2129],[-1.4962,46.2091],[-1.4881,46.2071],[-1.4854,46.202],[-1.4834,46.2131],[-1.4733,46.2143],[-1.4655,46.2234],[-1.4587,46.2246],[-1.4681,46.2246],[-1.4689,46.2285],[-1.4129,46.2301],[-1.4101,46.2276],[-1.4185,46.226],[-1.419,46.2192],[-1.4444,46.2141],[-1.4314,46.2102],[-1.4292,46.2059],[-1.4049,46.2032],[-1.3547,46.2061],[-1.3213,46.1872],[-1.306,46.1906],[-1.2927,46.1874],[-1.2822,46.1734],[-1.2818,46.1647],[-1.2742,46.1602],[-1.255,46.1641],[-1.278,46.1441],[-1.3117,46.1434],[-1.3534,46.1545],[-1.3861,46.1749],[-1.4616,46.2021],[-1.4837,46.201],[-1.504,46.1937],[-1.5339,46.2023],[-1.5438,46.2198],[-1.5609,46.2363],[-1.5629,46.2445],[-1.5424,46.2433],[-1.5243,46.2508]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C8","Couleur":2,"name":"14_FR","LONG":3535779,"LAT":2371722,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":44.4509,"Long":-0.0765},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.7148,45.3277],[-0.7405,45.3989],[-0.7542,45.4242],[-0.7738,45.4493],[-0.6651,45.4811],[-0.4925,45.4898],[-0.2128,45.4702],[-0.0228,45.4505],[0.1236,45.409],[0.2044,45.385],[0.2482,45.3689],[0.2765,45.4268],[0.2933,45.4337],[0.3131,45.4324],[0.3177,45.436],[0.3023,45.4455],[0.3026,45.4589],[0.3079,45.4608],[0.3294,45.4435],[0.3338,45.4494],[0.3329,45.459],[0.3592,45.4662],[0.3602,45.4761],[0.3767,45.4762],[0.3814,45.4861],[0.391,45.4854],[0.4094,45.4925],[0.4226,45.4845],[0.4318,45.4856],[0.4324,45.5042],[0.4486,45.5156],[0.4493,45.5239],[0.4592,45.526],[0.4657,45.5396],[0.4859,45.5385],[0.4944,45.5467],[0.5001,45.5455],[0.5066,45.5543],[0.5057,45.561],[0.4986,45.5648],[0.5049,45.5693],[0.501,45.573],[0.5163,45.5881],[0.5105,45.5967],[0.5168,45.5996],[0.5036,45.6112],[0.5004,45.6196],[0.5073,45.6196],[0.5106,45.6311],[0.5263,45.6399],[0.5256,45.6441],[0.5354,45.6429],[0.5373,45.6378],[0.5339,45.6358],[0.5385,45.6287],[0.5465,45.6289],[0.5425,45.6334],[0.5468,45.635],[0.5608,45.6328],[0.5755,45.6409],[0.567,45.6533],[0.5784,45.6603],[0.5866,45.6596],[0.5861,45.6674],[0.6004,45.6717],[0.5914,45.6758],[0.6032,45.6804],[0.604,45.6941],[0.6101,45.6919],[0.6149,45.6945],[0.614,45.6985],[0.6217,45.6989],[0.6298,45.7146],[0.6399,45.6983],[0.6521,45.699],[0.6546,45.6887],[0.6696,45.6859],[0.6952,45.6921],[0.7031,45.6872],[0.7118,45.6945],[0.7256,45.6954],[0.7343,45.6895],[0.7429,45.6903],[0.7609,45.6699],[0.7764,45.6672],[0.7729,45.6499],[0.7643,45.6412],[0.7635,45.6287],[0.7522,45.6177],[0.7762,45.592],[0.8067,45.5948],[0.8115,45.5759],[0.8426,45.5824],[0.8694,45.6235],[0.8765,45.621],[0.883,45.6082],[0.8981,45.5999],[0.9067,45.6089],[0.9155,45.6041],[0.9335,45.6118],[0.9422,45.6095],[0.9464,45.615],[0.9602,45.6078],[0.9688,45.611],[0.9793,45.6033],[0.9861,45.6043],[0.9971,45.6151],[1.006,45.6104],[1.0227,45.6101],[1.0266,45.6022],[1.0357,45.6],[1.0336,45.5925],[1.0417,45.5861],[1.0327,45.5799],[1.0404,45.5658],[1.0468,45.5626],[1.0457,45.5573],[1.0614,45.5543],[1.0751,45.5455],[1.0822,45.5326],[1.0855,45.5311],[1.0868,45.5372],[1.1034,45.5367],[1.106,45.5441],[1.1197,45.5474],[1.1205,45.5439],[1.1289,45.5444],[1.167,45.5246],[1.1341,45.505],[1.1284,45.4944],[1.1184,45.4879],[1.1199,45.4752],[1.1244,45.4791],[1.1355,45.4697],[1.1615,45.4786],[1.1761,45.4712],[1.1776,45.4573],[1.1851,45.4551],[1.2096,45.4632],[1.2358,45.455],[1.2345,45.4398],[1.2434,45.4366],[1.2532,45.4442],[1.2633,45.4436],[1.2755,45.4339],[1.2842,45.4376],[1.2939,45.4342],[1.2827,45.4327],[1.2901,45.4185],[1.2861,45.4156],[1.2781,45.4127],[1.2719,45.4182],[1.2587,45.4196],[1.2564,45.4058],[1.2599,45.3978],[1.2678,45.3957],[1.2773,45.4031],[1.2799,45.3997],[1.274,45.3929],[1.2803,45.3839],[1.2942,45.3914],[1.2936,45.3976],[1.3248,45.3796],[1.3158,45.3609],[1.2838,45.353],[1.286,45.3485],[1.2796,45.3353],[1.2651,45.3231],[1.2358,45.3221],[1.2416,45.3013],[1.2393,45.2905],[1.2324,45.2908],[1.229,45.2722],[1.2419,45.2662],[1.2394,45.2604],[1.2543,45.255],[1.2741,45.2571],[1.2785,45.2504],[1.2737,45.2372],[1.2633,45.2307],[1.2336,45.2222],[1.2283,45.2036],[1.233,45.1977],[1.2722,45.2017],[1.2896,45.1889],[1.291,45.1837],[1.2851,45.1752],[1.2697,45.165],[1.2567,45.1667],[1.2544,45.1585],[1.279,45.1508],[1.2938,45.1391],[1.2983,45.1416],[1.309,45.1352],[1.3207,45.143],[1.3324,45.1376],[1.352,45.1416],[1.3553,45.1324],[1.3841,45.1358],[1.4131,45.1249],[1.4105,45.1131],[1.3775,45.1048],[1.3933,45.0974],[1.3949,45.092],[1.3905,45.0886],[1.4068,45.0704],[1.3996,45.0612],[1.4129,45.0612],[1.4078,45.0531],[1.4174,45.0495],[1.4261,45.0359],[1.4483,45.0193],[1.4429,45.0137],[1.4091,45.0067],[1.4152,44.994],[1.4122,44.9866],[1.4178,44.982],[1.4125,44.9727],[1.4216,44.9682],[1.4167,44.9606],[1.428,44.9466],[1.4335,44.9461],[1.4427,44.916],[1.4255,44.9199],[1.4105,44.9088],[1.4211,44.9061],[1.4182,44.9004],[1.4231,44.8954],[1.4399,44.889],[1.4411,44.8764],[1.4316,44.8714],[1.4114,44.8727],[1.4025,44.8491],[1.3876,44.8509],[1.3772,44.8419],[1.3711,44.8472],[1.3659,44.8456],[1.36,44.8348],[1.3641,44.8116],[1.3255,44.806],[1.2985,44.7964],[1.2933,44.7899],[1.304,44.7892],[1.3046,44.7847],[1.2982,44.7807],[1.2985,44.7743],[1.3139,44.765],[1.3227,44.7648],[1.3161,44.7404],[1.3002,44.7443],[1.2957,44.7361],[1.3002,44.7334],[1.2983,44.7258],[1.2877,44.7149],[1.27,44.7221],[1.2636,44.7107],[1.2456,44.706],[1.2416,44.6928],[1.2299,44.6913],[1.2246,44.6843],[1.1787,44.6826],[1.1603,44.6725],[1.1467,44.6708],[1.1499,44.6551],[1.1465,44.6529],[1.1537,44.6396],[1.1509,44.6329],[1.0946,44.5923],[1.1025,44.5865],[1.1035,44.581],[1.0989,44.5798],[1.1032,44.5717],[1.0887,44.5707],[1.0766,44.5733],[1.0752,44.5773],[1.0703,44.5664],[1.0332,44.5548],[1.0132,44.5361],[1.0063,44.5477],[0.9942,44.5496],[0.9815,44.5445],[0.9892,44.5388],[0.9884,44.5325],[1.0001,44.5265],[1.0161,44.506],[1.0165,44.499],[1.0118,44.4956],[1.017,44.4898],[1.009,44.4801],[1.023,44.4754],[1.0256,44.4665],[1.0215,44.4445],[1.0325,44.441],[1.0286,44.4339],[1.0452,44.4342],[1.0575,44.4277],[1.0617,44.4019],[1.0512,44.3923],[1.0604,44.3905],[1.0641,44.3785],[1.0819,44.3814],[1.1023,44.3919],[1.1364,44.3932],[1.1316,44.388],[1.1335,44.3714],[1.1076,44.3701],[1.1081,44.3649],[1.1047,44.3645],[1.0941,44.3695],[1.0915,44.3602],[1.0812,44.3544],[1.1158,44.3382],[1.1081,44.3271],[1.1223,44.3158],[1.136,44.3171],[1.1514,44.3074],[1.1606,44.3107],[1.1686,44.3033],[1.1808,44.31],[1.1769,44.2959],[1.1799,44.2892],[1.1969,44.2806],[1.2043,44.2824],[1.2142,44.2684],[1.2166,44.278],[1.2212,44.2804],[1.2386,44.276],[1.2423,44.2663],[1.2471,44.2661],[1.2554,44.2857],[1.2707,44.2813],[1.2832,44.2906],[1.304,44.2942],[1.3018,44.2807],[1.2938,44.2727],[1.3039,44.2691],[1.3048,44.262],[1.2844,44.2525],[1.2862,44.2412],[1.2813,44.2353],[1.3056,44.227],[1.3171,44.2335],[1.3252,44.2257],[1.3292,44.225],[1.3297,44.2304],[1.3359,44.2285],[1.3437,44.2243],[1.3423,44.2183],[1.3572,44.203],[1.3766,44.2225],[1.4296,44.2426],[1.4406,44.2527],[1.4538,44.2545],[1.4534,44.2675],[1.4634,44.2664],[1.4719,44.2867],[1.4866,44.2778],[1.4847,44.2726],[1.509,44.2737],[1.5263,44.2605],[1.5179,44.2551],[1.5184,44.2493],[1.5269,44.2372],[1.5411,44.2276],[1.5506,44.2328],[1.5738,44.2355],[1.5752,44.2415],[1.5869,44.2487],[1.5769,44.2704],[1.5633,44.2748],[1.5616,44.2792],[1.5779,44.2836],[1.5701,44.3008],[1.5867,44.299],[1.5949,44.3034],[1.6013,44.2956],[1.6167,44.2977],[1.6156,44.2784],[1.634,44.2688],[1.6423,44.2708],[1.6522,44.2852],[1.6325,44.2936],[1.6342,44.2988],[1.6527,44.296],[1.6595,44.2833],[1.6636,44.2936],[1.6686,44.2896],[1.6711,44.2983],[1.7023,44.3145],[1.7111,44.3117],[1.7366,44.3181],[1.7388,44.327],[1.7566,44.3253],[1.7746,44.3123],[1.7754,44.3172],[1.78,44.3142],[1.7853,44.3176],[1.7887,44.3227],[1.7835,44.3279],[1.7908,44.3258],[1.7944,44.3346],[1.806,44.3366],[1.8098,44.3289],[1.8265,44.3236],[1.8333,44.3354],[1.8472,44.3378],[1.853,44.3318],[1.8821,44.3401],[1.8856,44.3353],[1.877,44.3356],[1.8598,44.3212],[1.8813,44.3044],[1.8688,44.292],[1.9014,44.2791],[1.9259,44.2821],[1.9706,44.2764],[1.9641,44.2655],[1.962,44.2424],[1.9498,44.2425],[1.9431,44.2476],[1.9338,44.2458],[1.9118,44.2146],[1.9042,44.2097],[1.8907,44.2133],[1.8903,44.2076],[1.907,44.2009],[1.9031,44.1931],[1.9124,44.1898],[1.9111,44.1855],[1.9242,44.1878],[1.9229,44.1909],[1.9331,44.1881],[1.935,44.1814],[1.931,44.1785],[1.9407,44.1698],[1.9448,44.1826],[1.9615,44.1844],[1.9779,44.1796],[1.9801,44.1764],[1.9731,44.1717],[1.9767,44.1621],[2.0002,44.1589],[1.9902,44.1495],[1.9844,44.1493],[1.9845,44.1567],[1.9797,44.1473],[1.9718,44.143],[1.9517,44.1511],[1.9441,44.1464],[1.9191,44.1631],[1.9075,44.1631],[1.8942,44.1546],[1.9193,44.1416],[1.9068,44.1302],[1.8993,44.1321],[1.893,44.1429],[1.8844,44.1373],[1.8622,44.1439],[1.8484,44.135],[1.8394,44.1446],[1.8289,44.1332],[1.8405,44.1142],[1.8354,44.1055],[1.8253,44.108],[1.8057,44.1266],[1.801,44.1169],[1.7872,44.1094],[1.7928,44.0998],[1.778,44.0968],[1.7697,44.0984],[1.7642,44.1077],[1.7506,44.1091],[1.7469,44.1164],[1.7328,44.1124],[1.7221,44.1184],[1.7229,44.1147],[1.7057,44.1172],[1.6878,44.1115],[1.6587,44.1166],[1.6526,44.1079],[1.6531,44.0965],[1.6701,44.0888],[1.6615,44.0714],[1.6639,44.0671],[1.6717,44.0595],[1.675,44.0667],[1.6919,44.0628],[1.7042,44.0444],[1.6957,44.0356],[1.6913,44.0226],[1.679,44.0211],[1.6718,44.0164],[1.6713,44.0107],[1.6494,44.0117],[1.6579,43.9954],[1.6464,43.9917],[1.6371,43.9947],[1.6305,43.9903],[1.6265,43.9848],[1.5681,43.965],[1.5667,43.9653],[1.5496,43.9624],[1.5494,43.9587],[1.5441,43.9569],[1.5353,43.9597],[1.5391,43.9552],[1.3951,43.9065],[1.1723,43.9065],[0.897,43.8671],[0.6217,43.8147],[0.3792,43.7229],[-0.0206,43.6771],[-0.4204,43.6377],[-0.6301,43.5591],[-0.6957,43.4608],[-0.6957,43.2642],[-0.7309,42.9452],[-0.7436,42.9506],[-0.752,42.9671],[-0.7676,42.969],[-0.7838,42.9645],[-0.8097,42.9514],[-0.864,42.9508],[-0.8955,42.9552],[-0.8995,42.9617],[-0.9086,42.9645],[-0.9258,42.9541],[-0.9452,42.9534],[-0.9964,42.9749],[-1.0122,42.9926],[-1.0721,42.9979],[-1.0866,43.0028],[-1.0833,43.0106],[-1.0984,43.0134],[-1.1148,43.0239],[-1.1418,43.0075],[-1.147,43.0258],[-1.1745,43.0373],[-1.1813,43.0322],[-1.2127,43.0517],[-1.2293,43.0557],[-1.2479,43.0428],[-1.2636,43.0442],[-1.2702,43.0553],[-1.3091,43.0712],[-1.2997,43.0924],[-1.2705,43.117],[-1.2731,43.1188],[-1.3197,43.1128],[-1.3327,43.1076],[-1.3447,43.0945],[-1.3463,43.0906],[-1.34,43.0811],[-1.3444,43.0732],[-1.3426,43.0544],[-1.3537,43.028],[-1.4413,43.0463],[-1.4735,43.0866],[-1.4679,43.0954],[-1.4409,43.1077],[-1.4436,43.1117],[-1.4274,43.1168],[-1.4239,43.1248],[-1.4142,43.1283],[-1.4149,43.1357],[-1.4101,43.1429],[-1.416,43.1498],[-1.4023,43.156],[-1.4024,43.1777],[-1.3815,43.1897],[-1.3867,43.1942],[-1.3829,43.1996],[-1.3846,43.2213],[-1.378,43.2321],[-1.3823,43.25],[-1.3897,43.2594],[-1.4137,43.2737],[-1.427,43.2671],[-1.4402,43.2673],[-1.4689,43.2735],[-1.4826,43.2831],[-1.4928,43.2818],[-1.5061,43.2933],[-1.5356,43.2949],[-1.5642,43.2888],[-1.5564,43.2794],[-1.5748,43.2504],[-1.596,43.2546],[-1.6088,43.252],[-1.6219,43.2633],[-1.6301,43.285],[-1.6215,43.3001],[-1.6253,43.3067],[-1.6447,43.3067],[-1.6681,43.3148],[-1.6859,43.3093],[-1.6945,43.3121],[-1.7134,43.3],[-1.7289,43.2961],[-1.7418,43.3166],[-1.7375,43.3301],[-1.7506,43.3318],[-1.7573,43.3437],[-1.7719,43.3424],[-1.786,43.3505],[-1.7842,43.3557],[-1.7697,43.365],[-1.7741,43.3703],[-1.7834,43.3674],[-1.7802,43.3699],[-1.7862,43.3713],[-1.7622,43.3757],[-1.7554,43.3792],[-1.7581,43.3811],[-1.7522,43.3871],[-1.7413,43.3805],[-1.6769,43.3978],[-1.6842,43.3954],[-1.6814,43.3901],[-1.6677,43.3884],[-1.6607,43.3934],[-1.667,43.3995],[-1.658,43.4055],[-1.6458,43.4052],[-1.6373,43.4099],[-1.6388,43.4129],[-1.6288,43.4135],[-1.619,43.4267],[-1.6097,43.4268],[-1.5974,43.4375],[-1.5949,43.4484],[-1.5876,43.4516],[-1.57,43.4747],[-1.5694,43.4826],[-1.548,43.496],[-1.5248,43.5297],[-1.4825,43.5864],[-1.4468,43.6456],[-1.4394,43.6975],[-1.42,43.7727],[-1.3946,43.8517],[-1.389,43.8578],[-1.3898,43.8663],[-1.3123,44.1448],[-1.2774,44.3197],[-1.2539,44.4676],[-1.2507,44.506],[-1.2599,44.5444],[-1.2317,44.5694],[-1.2121,44.5995],[-1.2046,44.6157],[-1.2042,44.6404],[-1.1937,44.659],[-1.1635,44.664],[-1.1436,44.6599],[-1.1392,44.6525],[-1.1549,44.6454],[-1.1491,44.64],[-1.1466,44.6445],[-1.1438,44.6401],[-1.1435,44.6466],[-1.1278,44.6475],[-1.1181,44.6469],[-1.1188,44.6402],[-1.1158,44.6447],[-1.1028,44.6463],[-1.0811,44.6402],[-1.0655,44.6472],[-1.0507,44.6443],[-1.0394,44.6531],[-1.0266,44.6436],[-1.014,44.6405],[-1.0197,44.6427],[-1.0198,44.6485],[-1.0036,44.6488],[-1.0259,44.6758],[-1.0194,44.6789],[-1.0381,44.6788],[-1.0438,44.6811],[-1.0403,44.6861],[-1.05,44.6821],[-1.0693,44.6961],[-1.0374,44.6923],[-1.0339,44.6964],[-1.0439,44.6965],[-1.0536,44.7036],[-1.0512,44.7058],[-1.0866,44.7265],[-1.1016,44.7404],[-1.1182,44.7442],[-1.1229,44.7515],[-1.1163,44.7564],[-1.1277,44.7508],[-1.1675,44.776],[-1.18,44.7581],[-1.172,44.7507],[-1.1738,44.7454],[-1.1887,44.7372],[-1.2044,44.7177],[-1.2204,44.7102],[-1.2323,44.6937],[-1.2401,44.6685],[-1.2393,44.6561],[-1.2459,44.6428],[-1.2442,44.6375],[-1.2441,44.6459],[-1.2408,44.64],[-1.2446,44.6231],[-1.2529,44.618],[-1.262,44.6322],[-1.2577,44.6778],[-1.2091,44.9545],[-1.162,45.2997],[-1.1603,45.3904],[-1.1605,45.4107],[-1.151,45.4416],[-1.157,45.4704],[-1.1542,45.4818],[-1.1364,45.511],[-1.1014,45.5396],[-1.0912,45.5624],[-1.0619,45.5723],[-1.0641,45.5549],[-1.0425,45.5442],[-1.0379,45.5337],[-1.0421,45.5343],[-1.0422,45.5298],[-1.0494,45.5378],[-1.0614,45.5361],[-1.0506,45.5263],[-1.058,45.5299],[-1.0693,45.5277],[-1.0707,45.5206],[-1.0655,45.5105],[-1.0274,45.4925],[-1.0086,45.476],[-0.9705,45.4531],[-0.9315,45.4397],[-0.909,45.4178],[-0.9041,45.4074],[-0.8794,45.3989],[-0.854,45.384],[-0.81,45.3517],[-0.765,45.282],[-0.7469,45.2268],[-0.6914,45.2372],[-0.6985,45.278],[-0.7148,45.3277]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C12","Couleur":2,"name":"28_FR","LONG":3782314,"LAT":3005845,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":49.8947,"Long":2.4495},"geometry":{"type":"MultiPolygon","coordinates":[[[[1.6415,50.3521],[1.6314,50.3601],[1.6334,50.3646],[1.6263,50.3714],[1.6107,50.3701],[1.6009,50.378],[1.5838,50.3759],[1.569,50.3935],[1.558,50.3955],[1.5554,50.3999],[1.5696,50.4421],[1.5774,50.5165],[1.583,50.5346],[1.5899,50.5394],[1.5987,50.5269],[1.6021,50.5297],[1.6094,50.5268],[1.6348,50.5113],[1.6383,50.5092],[1.6623,50.5066],[1.65,50.5107],[1.6404,50.5113],[1.6285,50.5183],[1.6187,50.5369],[1.6069,50.5403],[1.6103,50.5367],[1.6086,50.5362],[1.6034,50.5411],[1.6035,50.5475],[1.5825,50.5616],[1.5766,50.5722],[1.578,50.5922],[1.5762,50.641],[1.5689,50.6734],[1.5629,50.6854],[1.5607,50.6997],[1.5695,50.7071],[1.5736,50.7162],[1.5625,50.725],[1.5704,50.7246],[1.5746,50.728],[1.5712,50.7197],[1.5756,50.7172],[1.5742,50.7201],[1.5781,50.7276],[1.5863,50.7313],[1.5908,50.7286],[1.5817,50.7235],[1.5957,50.7275],[1.6025,50.7216],[1.598,50.7279],[1.5926,50.7302],[1.5959,50.7487],[1.6056,50.7676],[1.6029,50.7842],[1.606,50.7919],[1.6031,50.8032],[1.5997,50.8058],[1.5939,50.8201],[1.5887,50.8252],[1.5899,50.8286],[1.586,50.8391],[1.5778,50.853],[1.5818,50.871],[1.6096,50.8721],[1.6442,50.8797],[1.6673,50.8923],[1.6906,50.9139],[1.7122,50.9294],[1.7368,50.9411],[1.7807,50.9549],[1.8346,50.9634],[1.844,50.9676],[1.8485,50.9631],[1.8383,50.9593],[1.855,50.9632],[1.8479,50.9673],[1.8662,50.9696],[1.8643,50.971],[1.8543,50.9691],[1.8527,50.971],[1.8711,50.9749],[1.8815,50.975],[1.8897,50.9723],[1.9152,50.984],[1.9417,50.9884],[1.9641,50.9876],[1.9927,50.9937],[2.0425,50.9971],[2.0487,51.0037],[2.0677,51.0065],[2.1029,51.006],[2.1203,50.9917],[2.1201,50.9852],[2.1229,50.9909],[2.1093,51.0029],[2.1258,51.0155],[2.1445,51.021],[2.1426,51.0256],[2.1486,51.0289],[2.1486,51.0342],[2.152,51.0205],[2.1693,51.0222],[2.1673,51.0201],[2.1734,51.017],[2.1709,51.0133],[2.1774,51.0068],[2.1811,51.0109],[2.1789,51.016],[2.1902,51.018],[2.1745,51.0231],[2.1915,51.0275],[2.1952,51.0365],[2.1659,51.0444],[2.1923,51.0412],[2.2031,51.0322],[2.214,51.0317],[2.3495,51.0606],[2.3694,51.0503],[2.3822,51.0487],[2.4247,51.0556],[2.5454,51.0891],[2.563,51.0646],[2.576,51.0139],[2.5711,51.0106],[2.574,51.0033],[2.5954,50.9921],[2.6072,50.9912],[2.6108,50.9737],[2.6194,50.9674],[2.6328,50.9463],[2.6179,50.9414],[2.6178,50.9348],[2.5903,50.9191],[2.5944,50.9144],[2.6027,50.9168],[2.6074,50.9128],[2.604,50.9047],[2.6093,50.8945],[2.6044,50.8864],[2.6125,50.8644],[2.5987,50.8503],[2.6161,50.8473],[2.6165,50.8395],[2.6255,50.8367],[2.6352,50.813],[2.6558,50.8135],[2.6692,50.8227],[2.6789,50.8134],[2.7182,50.8135],[2.7259,50.8091],[2.7222,50.8016],[2.726,50.7923],[2.762,50.771],[2.7564,50.7627],[2.7631,50.7629],[2.7614,50.7593],[2.7663,50.7545],[2.7829,50.7515],[2.7842,50.737],[2.7945,50.7249],[2.8193,50.7156],[2.848,50.723],[2.8632,50.7083],[2.8697,50.7033],[2.8853,50.7064],[2.8998,50.6932],[2.9087,50.6931],[2.9091,50.7023],[2.9235,50.7033],[2.93,50.7109],[2.9316,50.7283],[2.9448,50.7322],[2.9379,50.739],[2.9387,50.7452],[2.9558,50.7538],[2.9727,50.7503],[3.0189,50.7737],[3.0352,50.7702],[3.0409,50.776],[3.0587,50.7807],[3.0826,50.7726],[3.0985,50.779],[3.1072,50.7843],[3.1125,50.7945],[3.1249,50.7864],[3.1506,50.7901],[3.1549,50.7782],[3.1714,50.7586],[3.1799,50.7553],[3.1881,50.74],[3.1997,50.735],[3.1914,50.7247],[3.2202,50.7099],[3.2455,50.7131],[3.2508,50.7053],[3.2611,50.7013],[3.2605,50.693],[3.253,50.6897],[3.2653,50.677],[3.2412,50.6688],[3.2401,50.6586],[3.2494,50.6472],[3.2441,50.6407],[3.2591,50.6298],[3.2552,50.6227],[3.2701,50.6118],[3.2743,50.597],[3.2795,50.596],[3.2758,50.5816],[3.2821,50.5753],[3.2778,50.5644],[3.2852,50.5617],[3.2759,50.5585],[3.2824,50.5521],[3.278,50.5518],[3.2789,50.5388],[3.2887,50.5259],[3.3206,50.5187],[3.3291,50.5083],[3.3615,50.504],[3.3771,50.4911],[3.392,50.4986],[3.429,50.5047],[3.4355,50.5099],[3.449,50.5066],[3.4538,50.5192],[3.4742,50.5337],[3.5198,50.5237],[3.5176,50.5172],[3.5161,50.5129],[3.4961,50.4989],[3.5007,50.4867],[3.5234,50.4954],[3.5389,50.4943],[3.5692,50.5009],[3.581,50.4912],[3.6078,50.4971],[3.6152,50.4904],[3.6326,50.48],[3.6349,50.4717],[3.6438,50.4632],[3.6554,50.4615],[3.6642,50.4525],[3.6585,50.4468],[3.6698,50.4373],[3.6738,50.4013],[3.6734,50.388],[3.6574,50.3685],[3.6672,50.3609],[3.6647,50.3477],[3.6774,50.3403],[3.6746,50.3329],[3.6939,50.3218],[3.6927,50.3188],[3.684,50.3201],[3.6951,50.3168],[3.7103,50.3032],[3.72,50.305],[3.7101,50.3195],[3.7203,50.3159],[3.7212,50.3113],[3.7319,50.3115],[3.7274,50.3153],[3.7325,50.3215],[3.73,50.3304],[3.734,50.33],[3.7331,50.3384],[3.7386,50.3413],[3.7337,50.3425],[3.7472,50.3511],[3.7634,50.348],[3.7666,50.3531],[3.7989,50.3509],[3.8063,50.3553],[3.8141,50.3532],[3.8116,50.345],[3.8158,50.3449],[3.822,50.3457],[3.8244,50.3535],[3.8474,50.3529],[3.8721,50.3382],[3.8872,50.3409],[3.8905,50.3298],[3.8856,50.327],[3.9006,50.327],[3.9682,50.35],[3.9655,50.3415],[3.9728,50.3478],[3.9856,50.342],[3.9939,50.3486],[4.0113,50.35],[4.0184,50.3573],[4.0279,50.3583],[4.0361,50.3436],[4.0541,50.3392],[4.055,50.3325],[4.0651,50.3306],[4.0779,50.3209],[4.0791,50.3096],[4.0973,50.3136],[4.1097,50.3018],[4.1177,50.3036],[4.1257,50.2884],[4.1218,50.2777],[4.1243,50.274],[4.1362,50.2746],[4.1387,50.2633],[4.1355,50.2575],[4.1679,50.2598],[4.1687,50.2665],[4.1634,50.2718],[4.1492,50.2758],[4.1553,50.2805],[4.1543,50.2851],[4.161,50.2849],[4.1626,50.2888],[4.1764,50.2845],[4.1746,50.2784],[4.1825,50.274],[4.2043,50.2741],[4.2212,50.2586],[4.2201,50.2518],[4.2126,50.246],[4.1816,50.2323],[4.1728,50.2171],[4.1524,50.2127],[4.1607,50.1969],[4.1481,50.1742],[4.1556,50.172],[4.1553,50.163],[4.1379,50.152],[4.1358,50.1427],[4.1274,50.1355],[4.1442,50.1286],[4.1556,50.1302],[4.1572,50.1353],[4.2002,50.1338],[4.1979,50.1274],[4.2041,50.1155],[4.1968,50.1064],[4.2065,50.1061],[4.2003,50.1009],[4.2252,50.0855],[4.2307,50.0716],[4.2246,50.0638],[4.1995,50.0571],[4.1942,50.0494],[4.1743,50.0455],[4.1624,50.0494],[4.158,50.0449],[4.138,50.0231],[4.1354,50.0152],[4.1474,50.0061],[4.1456,50.0039],[4.1619,50.0006],[4.1631,49.9949],[4.1416,49.9788],[4.154,49.9751],[4.1722,49.9768],[4.1971,49.9675],[4.1972,49.9546],[4.2331,49.9579],[4.2299,49.9462],[4.2209,49.9369],[4.217,49.9138],[4.2336,49.9091],[4.2334,49.9043],[4.2557,49.904],[4.2515,49.8893],[4.2532,49.87],[4.249,49.857],[4.2337,49.8486],[4.2234,49.8335],[4.2147,49.8061],[4.2219,49.8047],[4.2194,49.8002],[4.227,49.7932],[4.2064,49.7784],[4.2142,49.7712],[4.2287,49.773],[4.2426,49.7673],[4.2419,49.7619],[4.2497,49.7571],[4.2305,49.747],[4.2254,49.7286],[4.1923,49.7171],[4.1852,49.6989],[4.1442,49.6885],[4.1487,49.6784],[4.1264,49.6782],[4.1222,49.6587],[4.1253,49.6505],[4.1149,49.6353],[4.0983,49.6287],[4.0679,49.6375],[4.0539,49.6371],[4.0556,49.6345],[4.0421,49.6381],[4.0395,49.6252],[4.0256,49.6225],[4.0471,49.5998],[4.0664,49.5944],[4.0579,49.5912],[4.0623,49.5867],[4.0596,49.5761],[4.0767,49.5707],[4.0582,49.5528],[4.0504,49.5516],[4.0489,49.5453],[4.0753,49.5415],[4.0751,49.5186],[4.0616,49.5226],[4.0567,49.521],[4.0619,49.5131],[4.0571,49.5082],[4.0408,49.5084],[4.0421,49.468],[4.0679,49.4453],[4.0514,49.4439],[4.0496,49.4475],[4.0376,49.4381],[4.0436,49.4289],[4.0423,49.4168],[4.0494,49.4152],[4.0479,49.4057],[4.0373,49.3877],[4.0355,49.3599],[4.0127,49.3583],[4.0069,49.3694],[4.0006,49.3688],[3.995,49.3777],[3.9613,49.3774],[3.9248,49.4077],[3.9148,49.4031],[3.9104,49.395],[3.8567,49.3809],[3.8598,49.3727],[3.8545,49.3656],[3.8475,49.3646],[3.8587,49.3544],[3.8525,49.3449],[3.8228,49.3566],[3.8021,49.3589],[3.7799,49.352],[3.7775,49.3558],[3.7578,49.3476],[3.7411,49.3476],[3.7422,49.3367],[3.6691,49.3248],[3.644,49.3125],[3.6435,49.3035],[3.6383,49.3014],[3.659,49.2868],[3.6517,49.2787],[3.6611,49.2703],[3.653,49.2546],[3.6606,49.2599],[3.6686,49.2412],[3.678,49.2355],[3.6691,49.2318],[3.6682,49.222],[3.6559,49.2211],[3.6531,49.2152],[3.6625,49.209],[3.6804,49.2061],[3.6762,49.2002],[3.6823,49.1974],[3.6975,49.2066],[3.7046,49.2007],[3.7031,49.1952],[3.6967,49.1938],[3.7068,49.1858],[3.7065,49.1803],[3.7255,49.1737],[3.7302,49.1782],[3.7511,49.1777],[3.7487,49.1572],[3.7395,49.1569],[3.7034,49.1416],[3.6977,49.15],[3.687,49.1542],[3.6573,49.1489],[3.6211,49.1498],[3.6204,49.1392],[3.6097,49.135],[3.6116,49.1288],[3.6,49.1207],[3.6032,49.1147],[3.6116,49.118],[3.639,49.0813],[3.6382,49.0771],[3.6226,49.0709],[3.6107,49.0736],[3.602,49.0633],[3.5877,49.0594],[3.5852,49.0389],[3.5883,49.0339],[3.6147,49.0336],[3.6321,49.0398],[3.6425,49.0372],[3.6499,49.0427],[3.6635,49.0373],[3.6788,49.0181],[3.6651,49.0056],[3.6398,49.004],[3.6235,48.983],[3.6266,48.98],[3.6212,48.966],[3.6017,48.9662],[3.5915,48.9603],[3.6015,48.9532],[3.6024,48.9442],[3.5744,48.939],[3.5707,48.915],[3.5643,48.9116],[3.5595,48.9168],[3.5286,48.9121],[3.5087,48.891],[3.5011,48.8714],[3.4813,48.8665],[3.4852,48.8519],[3.4703,48.8507],[3.4619,48.8385],[3.4453,48.8432],[3.4522,48.8563],[3.4451,48.8603],[3.4329,48.8598],[3.4237,48.8675],[3.405,48.8638],[3.3989,48.8664],[3.4058,48.8711],[3.4058,48.8759],[3.3932,48.8752],[3.3915,48.8705],[3.3813,48.8719],[3.384,48.8881],[3.3691,48.8935],[3.3764,48.9097],[3.3674,48.9288],[3.3605,48.9185],[3.3296,48.9093],[3.3131,48.9212],[3.3128,48.934],[3.3047,48.9488],[3.2838,48.9401],[3.2651,48.9391],[3.2499,48.974],[3.2312,48.9768],[3.2244,48.9911],[3.2093,48.9938],[3.1976,49.0087],[3.1675,49.0125],[3.1611,49.024],[3.1768,49.0305],[3.1827,49.0414],[3.1805,49.0444],[3.1906,49.0467],[3.1907,49.0509],[3.1825,49.0524],[3.1769,49.0692],[3.1537,49.0832],[3.1652,49.0997],[3.1451,49.1017],[3.1374,49.1073],[3.0806,49.1119],[3.0719,49.1176],[3.0563,49.1019],[3.0558,49.0963],[3.066,49.0852],[3.0335,49.0889],[3.0307,49.0857],[3.0085,49.0912],[3.0053,49.0862],[3.001,49.0894],[2.9923,49.0845],[2.987,49.0712],[2.9746,49.0748],[2.9681,49.0914],[2.9567,49.0856],[2.9458,49.0881],[2.9408,49.0771],[2.9339,49.0812],[2.9233,49.0778],[2.9009,49.0853],[2.8951,49.077],[2.8874,49.0791],[2.8699,49.0702],[2.8561,49.07],[2.8449,49.0849],[2.8268,49.0847],[2.8092,49.0975],[2.784,49.0886],[2.7883,49.0828],[2.7683,49.0833],[2.7868,49.0753],[2.7786,49.0706],[2.753,49.0607],[2.735,49.0605],[2.7243,49.0805],[2.7061,49.0653],[2.6969,49.0646],[2.6898,49.068],[2.695,49.0748],[2.6772,49.0884],[2.6501,49.1005],[2.6417,49.0991],[2.6333,49.1084],[2.6222,49.0951],[2.6103,49.0949],[2.6058,49.0879],[2.5905,49.0797],[2.5826,49.0805],[2.578,49.0922],[2.5582,49.0987],[2.5516,49.1127],[2.5557,49.1235],[2.5491,49.122],[2.5466,49.1162],[2.5379,49.1177],[2.5426,49.1221],[2.5329,49.1188],[2.531,49.0996],[2.4899,49.1064],[2.5029,49.118],[2.4763,49.1281],[2.4716,49.1353],[2.4615,49.1359],[2.4583,49.1405],[2.4354,49.1339],[2.4409,49.1458],[2.4133,49.1522],[2.392,49.1494],[2.3732,49.1592],[2.3565,49.1481],[2.3218,49.1844],[2.3119,49.1864],[2.3012,49.1839],[2.2995,49.1763],[2.2859,49.1654],[2.2864,49.1599],[2.2686,49.1558],[2.2621,49.1581],[2.2535,49.1527],[2.224,49.1517],[2.2163,49.1544],[2.2341,49.1657],[2.2182,49.1808],[2.1946,49.1729],[2.1766,49.1765],[2.1817,49.1701],[2.1688,49.1637],[2.1577,49.1725],[2.1642,49.1797],[2.147,49.1879],[2.1371,49.179],[2.1354,49.1904],[2.1287,49.1932],[2.1139,49.1866],[2.1095,49.1904],[2.0959,49.1901],[2.0911,49.2083],[2.0799,49.2057],[2.0809,49.2104],[2.0721,49.2042],[2.0478,49.1984],[2.0333,49.1887],[2.0218,49.1887],[1.9994,49.1756],[1.9741,49.1833],[1.9495,49.1702],[1.9355,49.1704],[1.9325,49.1749],[1.8825,49.1625],[1.8767,49.1753],[1.844,49.1701],[1.836,49.1646],[1.8373,49.1733],[1.8266,49.1795],[1.8115,49.174],[1.8129,49.1783],[1.8001,49.1803],[1.8021,49.185],[1.7956,49.1851],[1.7915,49.1799],[1.7845,49.185],[1.7762,49.1838],[1.7556,49.1746],[1.7409,49.1806],[1.7445,49.1832],[1.7373,49.1941],[1.7259,49.194],[1.726,49.2005],[1.7156,49.2028],[1.7149,49.207],[1.7347,49.2105],[1.7339,49.2211],[1.7405,49.2242],[1.7156,49.2331],[1.7124,49.2411],[1.7043,49.2322],[1.674,49.2114],[1.6726,49.2068],[1.6769,49.2025],[1.6692,49.1862],[1.6716,49.1802],[1.6662,49.1764],[1.6699,49.1693],[1.6607,49.1574],[1.6643,49.1533],[1.6533,49.1445],[1.6519,49.134],[1.6565,49.1379],[1.658,49.1324],[1.6298,49.1102],[1.6176,49.0946],[1.623,49.0931],[1.619,49.0882],[1.6233,49.0861],[1.6088,49.0779],[1.6037,49.0847],[1.574,49.0785],[1.5581,49.0693],[1.5413,49.0738],[1.521,49.0681],[1.5178,49.0786],[1.5076,49.0851],[1.5141,49.0786],[1.5033,49.0591],[1.48,49.052],[1.4622,49.064],[1.4473,49.0535],[1.3877,49.0666],[1.3482,49.0842],[1.3044,49.1061],[1.2649,49.1281],[1.2385,49.1544],[1.1946,49.2027],[1.1771,49.2466],[1.134,49.3098],[1.0804,49.3087],[1.0485,49.2978],[1.0498,49.2927],[1.0534,49.2923],[1.0684,49.2766],[1.0582,49.2758],[1.0521,49.273],[1.0552,49.2671],[1.0649,49.2634],[1.0628,49.2591],[1.0511,49.2613],[1.0387,49.2581],[1.0369,49.2608],[1.0274,49.2595],[1.0159,49.2537],[1.0069,49.2561],[1.0141,49.2526],[1.0017,49.251],[0.9931,49.2533],[0.9923,49.2583],[1.008,49.2627],[1.0071,49.2646],[0.998,49.2622],[0.989,49.2638],[0.9856,49.2612],[0.9883,49.2686],[0.9807,49.269],[0.975,49.2724],[0.973,49.2807],[0.9678,49.2767],[0.9629,49.2768],[0.9558,49.2714],[0.956,49.2748],[0.9495,49.2798],[0.9556,49.2798],[0.9568,49.2861],[0.9686,49.2856],[0.9596,49.2888],[0.9632,49.2945],[0.9534,49.2943],[0.9501,49.2971],[0.9493,49.3019],[0.9438,49.309],[0.94,49.3228],[0.9288,49.3139],[0.9074,49.3075],[0.9103,49.2986],[0.9053,49.2978],[0.8999,49.298],[0.8925,49.3026],[0.8922,49.3107],[0.8994,49.3158],[0.8982,49.3186],[0.8913,49.3142],[0.8874,49.3206],[0.8785,49.3197],[0.8549,49.3265],[0.8508,49.3241],[0.8445,49.3246],[0.842,49.3293],[0.8525,49.3315],[0.848,49.3358],[0.8588,49.3394],[0.8563,49.3431],[0.8604,49.3463],[0.8642,49.3456],[0.8658,49.3425],[0.8718,49.342],[0.883,49.3468],[0.8995,49.3446],[0.9026,49.3418],[0.921,49.3383],[0.9322,49.3449],[0.9232,49.3499],[0.921,49.3562],[0.9243,49.3589],[0.9189,49.368],[0.9181,49.3855],[0.8962,49.3797],[0.892,49.375],[0.8927,49.3721],[0.8841,49.3746],[0.879,49.3728],[0.8801,49.3763],[0.8844,49.3783],[0.885,49.3839],[0.8737,49.3915],[0.8784,49.3962],[0.8627,49.3923],[0.8608,49.3954],[0.8468,49.3921],[0.826,49.3952],[0.8106,49.4048],[0.8029,49.4271],[0.8001,49.4271],[0.8003,49.425],[0.8048,49.4121],[0.7972,49.4173],[0.785,49.4106],[0.7798,49.4114],[0.7743,49.4178],[0.7661,49.4198],[0.7596,49.4145],[0.7427,49.4131],[0.7432,49.4097],[0.7383,49.4081],[0.7174,49.4115],[0.7142,49.4096],[0.708,49.4104],[0.7102,49.4078],[0.7043,49.4021],[0.6901,49.4061],[0.6643,49.4017],[0.6498,49.4089],[0.6592,49.4155],[0.6524,49.4216],[0.6448,49.4151],[0.6393,49.4181],[0.6441,49.4216],[0.6445,49.4263],[0.6408,49.4275],[0.6295,49.4226],[0.636,49.4364],[0.6423,49.4402],[0.6481,49.4399],[0.6425,49.4442],[0.6146,49.4299],[0.5921,49.4301],[0.5713,49.44],[0.5234,49.4789],[0.5027,49.4851],[0.488,49.4829],[0.4353,49.4604],[0.4041,49.451],[0.3688,49.444],[0.339,49.4409],[0.2936,49.4375],[0.2823,49.4446],[0.2856,49.4493],[0.3147,49.4496],[0.2846,49.4518],[0.2785,49.446],[0.2172,49.4533],[0.2133,49.4572],[0.2042,49.4521],[0.195,49.4548],[0.1853,49.4571],[0.1814,49.454],[0.1786,49.4592],[0.1663,49.4611],[0.1599,49.4597],[0.1589,49.4551],[0.1498,49.4651],[0.1137,49.4702],[0.0903,49.4824],[0.0918,49.4977],[0.0695,49.5064],[0.0656,49.5126],[0.0749,49.5363],[0.1499,49.6395],[0.1545,49.6486],[0.1504,49.6541],[0.1527,49.6617],[0.1597,49.6671],[0.1638,49.686],[0.206,49.7142],[0.2373,49.719],[0.2866,49.7383],[0.3121,49.7398],[0.3366,49.7468],[0.3553,49.7552],[0.369,49.7688],[0.432,49.7874],[0.5835,49.8526],[0.6919,49.8713],[0.7697,49.8721],[0.8326,49.8896],[0.922,49.9047],[0.9593,49.9195],[1.0257,49.9165],[1.0727,49.9277],[1.0891,49.9371],[1.1061,49.9367],[1.2018,49.9713],[1.2087,49.9798],[1.2465,49.9953],[1.3324,50.0471],[1.3797,50.065],[1.451,50.1068],[1.4828,50.1724],[1.4968,50.1891],[1.5168,50.2039],[1.5667,50.2173],[1.5594,50.211],[1.5771,50.1949],[1.5962,50.1855],[1.6131,50.1913],[1.6274,50.19],[1.6439,50.1848],[1.6465,50.1772],[1.6461,50.1823],[1.6733,50.1747],[1.6832,50.1832],[1.6708,50.1944],[1.6742,50.1958],[1.6675,50.2027],[1.6712,50.2041],[1.6626,50.2136],[1.6373,50.2184],[1.6233,50.2141],[1.5936,50.2443],[1.5922,50.2564],[1.5623,50.2558],[1.5499,50.2596],[1.5379,50.2814],[1.5558,50.3613],[1.5624,50.364],[1.5707,50.3625],[1.5713,50.3584],[1.6129,50.3603],[1.6252,50.3663],[1.6267,50.36],[1.6415,50.3521]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C1","Couleur":1,"name":"25_FR","LONG":3770265,"LAT":2872021,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":48.7093,"Long":2.5033},"geometry":{"type":"MultiPolygon","coordinates":[[[[1.9221,48.4576],[1.921,48.4483],[1.9069,48.4456],[1.9035,48.4385],[1.8711,48.4398],[1.86,48.4462],[1.8452,48.4465],[1.8354,48.4672],[1.8016,48.466],[1.8028,48.4729],[1.7916,48.4813],[1.7963,48.4842],[1.7857,48.4902],[1.7906,48.4972],[1.7767,48.51],[1.7759,48.528],[1.7872,48.5537],[1.7782,48.5526],[1.7681,48.5589],[1.7632,48.5642],[1.765,48.5693],[1.7589,48.5731],[1.7465,48.5761],[1.7435,48.5727],[1.7269,48.5728],[1.7092,48.578],[1.71,48.5815],[1.702,48.585],[1.7182,48.6055],[1.715,48.6141],[1.6867,48.6112],[1.6835,48.6159],[1.6902,48.6169],[1.6859,48.6199],[1.6663,48.6137],[1.6556,48.6225],[1.6569,48.6295],[1.6495,48.6323],[1.6516,48.6381],[1.6388,48.6449],[1.6432,48.6513],[1.621,48.6497],[1.6027,48.6631],[1.6015,48.6685],[1.6077,48.6723],[1.6049,48.6752],[1.6115,48.6891],[1.5822,48.696],[1.5849,48.6991],[1.5774,48.7027],[1.5949,48.7093],[1.5875,48.71],[1.6153,48.7356],[1.6202,48.736],[1.6264,48.748],[1.6086,48.7604],[1.5823,48.7621],[1.5876,48.7736],[1.5768,48.7829],[1.5757,48.7913],[1.5805,48.7939],[1.5777,48.7958],[1.5833,48.8107],[1.5908,48.8146],[1.5792,48.8297],[1.598,48.8385],[1.5773,48.8444],[1.584,48.8604],[1.5611,48.8677],[1.5588,48.8642],[1.5457,48.8706],[1.5637,48.8906],[1.5534,48.8934],[1.5389,48.9053],[1.5451,48.913],[1.5384,48.9224],[1.5113,48.9231],[1.5073,48.9281],[1.5115,48.9354],[1.5015,48.9411],[1.511,48.9536],[1.5008,48.9516],[1.4953,48.9566],[1.4993,48.9603],[1.4922,48.9645],[1.5184,48.9784],[1.5079,48.9838],[1.498,48.9792],[1.4792,48.9801],[1.4709,48.9748],[1.4617,48.9889],[1.4713,48.9897],[1.4692,48.9935],[1.4781,48.9984],[1.4804,49.0056],[1.474,49.0097],[1.4766,49.017],[1.4577,49.0263],[1.4577,49.0355],[1.4467,49.0462],[1.4523,49.0508],[1.4473,49.0535],[1.4622,49.064],[1.48,49.052],[1.5033,49.0591],[1.5141,49.0786],[1.5076,49.0851],[1.5178,49.0786],[1.521,49.0681],[1.5413,49.0738],[1.5581,49.0693],[1.574,49.0785],[1.6037,49.0847],[1.6088,49.0779],[1.6233,49.0861],[1.619,49.0882],[1.623,49.0931],[1.6176,49.0946],[1.6298,49.1102],[1.658,49.1324],[1.6565,49.1379],[1.6519,49.134],[1.6533,49.1445],[1.6643,49.1533],[1.6607,49.1574],[1.6699,49.1693],[1.6662,49.1764],[1.6716,49.1802],[1.6692,49.1862],[1.6769,49.2025],[1.6726,49.2068],[1.674,49.2114],[1.7043,49.2322],[1.7124,49.2411],[1.7156,49.2331],[1.7405,49.2242],[1.7339,49.2211],[1.7347,49.2105],[1.7149,49.207],[1.7156,49.2028],[1.726,49.2005],[1.7259,49.194],[1.7373,49.1941],[1.7445,49.1832],[1.7409,49.1806],[1.7556,49.1746],[1.7762,49.1838],[1.7845,49.185],[1.7915,49.1799],[1.7956,49.1851],[1.8021,49.185],[1.8001,49.1803],[1.8129,49.1783],[1.8115,49.174],[1.8266,49.1795],[1.8373,49.1733],[1.836,49.1646],[1.844,49.1701],[1.8767,49.1753],[1.8825,49.1625],[1.9325,49.1749],[1.9355,49.1704],[1.9495,49.1702],[1.9741,49.1833],[1.9994,49.1756],[2.0218,49.1887],[2.0333,49.1887],[2.0478,49.1984],[2.0721,49.2042],[2.0809,49.2104],[2.0799,49.2057],[2.0911,49.2083],[2.0959,49.1901],[2.1095,49.1904],[2.1139,49.1866],[2.1287,49.1932],[2.1354,49.1904],[2.1371,49.179],[2.147,49.1879],[2.1642,49.1797],[2.1577,49.1725],[2.1688,49.1637],[2.1817,49.1701],[2.1766,49.1765],[2.1946,49.1729],[2.2182,49.1808],[2.2341,49.1657],[2.2163,49.1544],[2.224,49.1517],[2.2535,49.1527],[2.2621,49.1581],[2.2686,49.1558],[2.2864,49.1599],[2.2859,49.1654],[2.2995,49.1763],[2.3012,49.1839],[2.3119,49.1864],[2.3218,49.1844],[2.3565,49.1481],[2.3732,49.1592],[2.392,49.1494],[2.4133,49.1522],[2.4409,49.1458],[2.4354,49.1339],[2.4583,49.1405],[2.4615,49.1359],[2.4716,49.1353],[2.4763,49.1281],[2.5029,49.118],[2.4899,49.1064],[2.531,49.0996],[2.5329,49.1188],[2.5426,49.1221],[2.5379,49.1177],[2.5466,49.1162],[2.5491,49.122],[2.5557,49.1235],[2.5516,49.1127],[2.5582,49.0987],[2.578,49.0922],[2.5826,49.0805],[2.5905,49.0797],[2.6058,49.0879],[2.6103,49.0949],[2.6222,49.0951],[2.6333,49.1084],[2.6417,49.0991],[2.6501,49.1005],[2.6772,49.0884],[2.695,49.0748],[2.6898,49.068],[2.6969,49.0646],[2.7061,49.0653],[2.7243,49.0805],[2.735,49.0605],[2.753,49.0607],[2.7786,49.0706],[2.7868,49.0753],[2.7683,49.0833],[2.7883,49.0828],[2.784,49.0886],[2.8092,49.0975],[2.8268,49.0847],[2.8449,49.0849],[2.8561,49.07],[2.8699,49.0702],[2.8874,49.0791],[2.8951,49.077],[2.9009,49.0853],[2.9233,49.0778],[2.9339,49.0812],[2.9408,49.0771],[2.9458,49.0881],[2.9567,49.0856],[2.9681,49.0914],[2.9746,49.0748],[2.987,49.0712],[2.9923,49.0845],[3.001,49.0894],[3.0053,49.0862],[3.0085,49.0912],[3.0307,49.0857],[3.0335,49.0889],[3.066,49.0852],[3.0558,49.0963],[3.0563,49.1019],[3.0719,49.1176],[3.0806,49.1119],[3.1374,49.1073],[3.1451,49.1017],[3.1652,49.0997],[3.1537,49.0832],[3.1769,49.0692],[3.1825,49.0524],[3.1907,49.0509],[3.1906,49.0467],[3.1805,49.0444],[3.1827,49.0414],[3.1768,49.0305],[3.1611,49.024],[3.1675,49.0125],[3.1976,49.0087],[3.2093,48.9938],[3.2244,48.9911],[3.2312,48.9768],[3.2499,48.974],[3.2651,48.9391],[3.2838,48.9401],[3.3047,48.9488],[3.3128,48.934],[3.3131,48.9212],[3.3296,48.9093],[3.3605,48.9185],[3.3674,48.9288],[3.3764,48.9097],[3.3691,48.8935],[3.384,48.8881],[3.3813,48.8719],[3.3915,48.8705],[3.3932,48.8752],[3.4058,48.8759],[3.4058,48.8711],[3.3989,48.8664],[3.405,48.8638],[3.4237,48.8675],[3.4329,48.8598],[3.4451,48.8603],[3.4522,48.8563],[3.4453,48.8432],[3.4619,48.8385],[3.4703,48.8507],[3.4852,48.8519],[3.4913,48.8348],[3.485,48.825],[3.4872,48.8152],[3.4809,48.8122],[3.4701,48.8208],[3.4477,48.8113],[3.4166,48.8178],[3.4046,48.8096],[3.4235,48.8009],[3.4418,48.8036],[3.4399,48.7983],[3.444,48.7908],[3.4412,48.782],[3.4376,48.785],[3.4279,48.7796],[3.4243,48.785],[3.4085,48.7816],[3.3958,48.7592],[3.4091,48.7524],[3.4281,48.7582],[3.4366,48.7532],[3.4366,48.7435],[3.4436,48.737],[3.4692,48.738],[3.4642,48.7068],[3.4776,48.6983],[3.4708,48.6942],[3.4717,48.6858],[3.4477,48.6774],[3.4427,48.6725],[3.4462,48.6669],[3.4406,48.6635],[3.4603,48.6529],[3.4511,48.6347],[3.4755,48.6372],[3.4931,48.6475],[3.513,48.6435],[3.5332,48.6465],[3.5178,48.6375],[3.5193,48.6336],[3.5385,48.6314],[3.5557,48.6207],[3.5576,48.6161],[3.5415,48.616],[3.5353,48.6104],[3.5034,48.6045],[3.5154,48.5898],[3.4938,48.5902],[3.4853,48.5805],[3.4655,48.5705],[3.4768,48.5576],[3.4763,48.5523],[3.4856,48.5475],[3.4792,48.5455],[3.4809,48.5414],[3.4507,48.5287],[3.4146,48.5338],[3.4054,48.528],[3.4239,48.5143],[3.4349,48.4973],[3.4334,48.4904],[3.4216,48.4922],[3.4137,48.4865],[3.4048,48.4885],[3.3835,48.4798],[3.4001,48.4676],[3.3941,48.4634],[3.4057,48.4533],[3.4044,48.4404],[3.3921,48.4242],[3.4118,48.4213],[3.404,48.415],[3.422,48.416],[3.4148,48.3903],[3.402,48.39],[3.3837,48.4],[3.3669,48.3936],[3.3624,48.3804],[3.3641,48.3724],[3.3564,48.3714],[3.3565,48.3785],[3.3513,48.3786],[3.3482,48.3734],[3.3356,48.3706],[3.3136,48.3767],[3.3053,48.3729],[3.2985,48.3787],[3.29,48.376],[3.2911,48.3798],[3.2832,48.3814],[3.282,48.3775],[3.268,48.3781],[3.2541,48.365],[3.2296,48.3706],[3.2005,48.3635],[3.1908,48.3708],[3.1849,48.3681],[3.1803,48.3753],[3.1718,48.3777],[3.1667,48.3707],[3.153,48.371],[3.147,48.3659],[3.1398,48.3726],[3.1224,48.3686],[3.1034,48.3495],[3.0992,48.3578],[3.0494,48.36],[3.0366,48.3395],[3.0435,48.3306],[3.0157,48.3073],[3.0276,48.3027],[3.0188,48.2947],[3.0297,48.2854],[3.0247,48.2756],[3.0453,48.2711],[3.0427,48.2625],[3.0476,48.2497],[3.032,48.2489],[3.019,48.2355],[3.0227,48.2304],[3.011,48.2203],[3.0047,48.207],[2.9929,48.2045],[2.989,48.209],[2.9735,48.2055],[2.9709,48.1942],[2.9554,48.1925],[2.9369,48.1827],[2.934,48.1757],[2.9363,48.1634],[2.8668,48.156],[2.8496,48.1412],[2.8209,48.1297],[2.801,48.1319],[2.7983,48.152],[2.8112,48.1642],[2.7946,48.1686],[2.7919,48.1648],[2.7789,48.1674],[2.7714,48.1618],[2.7669,48.1648],[2.7554,48.1602],[2.7364,48.1663],[2.7536,48.1532],[2.7552,48.1457],[2.7204,48.1368],[2.7028,48.1244],[2.6741,48.1256],[2.6647,48.1205],[2.6397,48.139],[2.6033,48.1316],[2.5749,48.1313],[2.5705,48.1408],[2.5591,48.1416],[2.5375,48.1405],[2.5222,48.1252],[2.4763,48.1295],[2.4644,48.1289],[2.4545,48.1225],[2.4428,48.1246],[2.4442,48.1315],[2.4604,48.1372],[2.4677,48.1481],[2.4746,48.1493],[2.4738,48.1541],[2.4832,48.1645],[2.5063,48.1564],[2.5166,48.1664],[2.5125,48.1708],[2.5152,48.1746],[2.5076,48.1794],[2.5179,48.1897],[2.5133,48.1928],[2.5231,48.1954],[2.5174,48.2144],[2.5141,48.2144],[2.5134,48.224],[2.5183,48.2281],[2.5072,48.226],[2.5062,48.2385],[2.4842,48.239],[2.4763,48.2447],[2.4787,48.2493],[2.4691,48.2553],[2.4505,48.2501],[2.4465,48.255],[2.4328,48.2549],[2.4228,48.2611],[2.4178,48.2791],[2.4232,48.2948],[2.4026,48.3207],[2.3972,48.3139],[2.3587,48.3086],[2.3481,48.3164],[2.3414,48.3162],[2.3353,48.3269],[2.3282,48.3265],[2.3293,48.3328],[2.3172,48.3316],[2.2957,48.3082],[2.2671,48.3147],[2.264,48.3079],[2.2451,48.2984],[2.2517,48.3164],[2.238,48.3164],[2.246,48.3313],[2.2319,48.3277],[2.224,48.3362],[2.2163,48.3341],[2.2071,48.3449],[2.1881,48.3322],[2.1821,48.3241],[2.1849,48.3216],[2.1809,48.3118],[2.1527,48.3159],[2.1558,48.3044],[2.161,48.3044],[2.1637,48.2984],[2.1106,48.2969],[2.1137,48.3072],[2.1062,48.3076],[2.0858,48.2941],[2.0527,48.2955],[2.0409,48.2845],[2.0262,48.2891],[2.0112,48.2849],[1.9941,48.2866],[1.9732,48.2882],[1.982,48.2955],[1.9652,48.2953],[1.9592,48.3069],[1.9735,48.3149],[1.979,48.3128],[1.9802,48.3191],[1.9747,48.3234],[1.9823,48.3283],[1.9689,48.3411],[1.9753,48.3451],[1.9735,48.3556],[1.9884,48.3632],[1.9802,48.3706],[1.9796,48.3783],[1.9665,48.3811],[1.9778,48.402],[1.9519,48.4061],[1.9304,48.4039],[1.9324,48.4108],[1.9259,48.4127],[1.9327,48.4203],[1.9398,48.42],[1.9363,48.4346],[1.9429,48.441],[1.9334,48.4418],[1.9291,48.457],[1.9221,48.4576]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C13","Couleur":3,"name":"27_FR","LONG":3581595,"LAT":2924909,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":48.8971,"Long":0.2371},"geometry":{"type":"MultiPolygon","coordinates":[[[[1.5015,48.9411],[1.4913,48.9362],[1.4803,48.9405],[1.4613,48.9375],[1.4597,48.9278],[1.4479,48.9246],[1.4591,48.9149],[1.4614,48.8996],[1.4715,48.8972],[1.4646,48.8764],[1.4408,48.8648],[1.404,48.8603],[1.3902,48.8463],[1.3623,48.8342],[1.3561,48.8168],[1.3746,48.7958],[1.3748,48.7815],[1.3648,48.7836],[1.3538,48.7792],[1.3298,48.761],[1.2975,48.7682],[1.2704,48.7627],[1.2701,48.7582],[1.2576,48.7578],[1.2545,48.7594],[1.2567,48.7655],[1.246,48.7697],[1.2226,48.7673],[1.2245,48.7635],[1.2327,48.7634],[1.2229,48.7582],[1.1876,48.7729],[1.1576,48.7695],[1.1488,48.7775],[1.1521,48.7857],[1.1214,48.7892],[1.1176,48.7841],[1.1205,48.7706],[1.1272,48.7655],[1.1165,48.7647],[1.1191,48.7556],[1.1129,48.7518],[1.1137,48.7463],[1.0958,48.7489],[1.0865,48.7572],[1.0705,48.7485],[1.0683,48.7574],[1.063,48.759],[1.0451,48.7436],[1.0348,48.7404],[1.0339,48.7342],[1.0378,48.7321],[1.0336,48.7284],[1.0209,48.7348],[1.0159,48.7282],[0.991,48.7257],[0.9783,48.731],[0.9611,48.7255],[0.9498,48.7147],[0.9212,48.7092],[0.9195,48.7123],[0.9001,48.7105],[0.8907,48.7202],[0.8726,48.7133],[0.8669,48.7038],[0.8685,48.699],[0.8605,48.6926],[0.8635,48.6875],[0.8412,48.6786],[0.8277,48.6807],[0.8148,48.6702],[0.8095,48.663],[0.8179,48.6593],[0.825,48.6488],[0.8221,48.6355],[0.8317,48.6334],[0.8175,48.616],[0.8196,48.6099],[0.8468,48.6095],[0.8508,48.5825],[0.8689,48.5727],[0.893,48.5719],[0.9257,48.5597],[0.9393,48.5492],[0.923,48.5386],[0.9257,48.5354],[0.9677,48.5239],[0.9542,48.504],[0.9415,48.4987],[0.9554,48.4926],[0.9558,48.4819],[0.9357,48.4755],[0.9394,48.4604],[0.9566,48.4439],[0.9744,48.4433],[0.9764,48.4388],[0.9453,48.4181],[0.9438,48.41],[0.9496,48.3994],[0.9294,48.3908],[0.9265,48.3841],[0.9182,48.3773],[0.9147,48.3788],[0.9161,48.3742],[0.9073,48.3701],[0.9007,48.3737],[0.8837,48.3567],[0.8753,48.3555],[0.8718,48.3594],[0.8591,48.3498],[0.84,48.3529],[0.8436,48.3511],[0.8418,48.3463],[0.8278,48.3423],[0.8184,48.3494],[0.7905,48.3426],[0.7689,48.322],[0.7697,48.3138],[0.7559,48.3],[0.7784,48.3031],[0.7938,48.2928],[0.8071,48.2897],[0.7962,48.2869],[0.786,48.2713],[0.8019,48.2448],[0.8303,48.2138],[0.8297,48.2105],[0.8061,48.2054],[0.8087,48.198],[0.7976,48.1945],[0.758,48.1799],[0.7375,48.1895],[0.7298,48.2006],[0.7236,48.1981],[0.7158,48.2142],[0.7049,48.2199],[0.7065,48.2233],[0.6944,48.2373],[0.6865,48.2407],[0.6879,48.2464],[0.6821,48.2485],[0.6813,48.2551],[0.6729,48.2546],[0.6523,48.2639],[0.6394,48.2608],[0.6311,48.2521],[0.6385,48.2356],[0.6338,48.2343],[0.624,48.2453],[0.6126,48.242],[0.5373,48.2492],[0.5378,48.259],[0.5328,48.2643],[0.512,48.2696],[0.4945,48.282],[0.4944,48.2866],[0.5072,48.2947],[0.4899,48.3092],[0.4799,48.2987],[0.4671,48.3057],[0.4313,48.3069],[0.4258,48.3179],[0.4171,48.322],[0.4115,48.3205],[0.4133,48.3168],[0.4039,48.3156],[0.383,48.3333],[0.3806,48.3431],[0.3882,48.3493],[0.3798,48.3665],[0.3802,48.3796],[0.3738,48.387],[0.377,48.3915],[0.3718,48.4105],[0.3808,48.4158],[0.3822,48.4248],[0.3566,48.4577],[0.339,48.4615],[0.3264,48.4718],[0.31,48.4722],[0.3008,48.4803],[0.2749,48.4792],[0.2656,48.4848],[0.2593,48.477],[0.2498,48.4742],[0.2132,48.4734],[0.19,48.4619],[0.1727,48.465],[0.1696,48.4593],[0.1736,48.4509],[0.1703,48.4494],[0.1455,48.4572],[0.1477,48.4497],[0.1582,48.4439],[0.1571,48.4401],[0.1262,48.4342],[0.1177,48.4362],[0.1067,48.4268],[0.1101,48.4233],[0.1002,48.4103],[0.0701,48.4081],[0.0542,48.3916],[0.0625,48.383],[0.0611,48.3798],[0.0156,48.3816],[0.011,48.3899],[0.0046,48.3886],[0.0034,48.396],[-0.0016,48.3974],[-0.0202,48.3939],[-0.0211,48.3857],[-0.0342,48.3863],[-0.0366,48.3807],[-0.0505,48.3802],[-0.0497,48.3751],[-0.0545,48.382],[-0.0579,48.3877],[-0.0527,48.3924],[-0.0567,48.3984],[-0.0528,48.4132],[-0.0573,48.4207],[-0.053,48.4245],[-0.0576,48.4291],[-0.0495,48.4486],[-0.0541,48.4544],[-0.0706,48.4579],[-0.0731,48.4505],[-0.1187,48.4482],[-0.1468,48.4564],[-0.1505,48.4651],[-0.1476,48.473],[-0.1535,48.4769],[-0.1492,48.4804],[-0.155,48.4867],[-0.156,48.4958],[-0.1724,48.5099],[-0.1555,48.5206],[-0.1453,48.5206],[-0.1446,48.5277],[-0.1796,48.5411],[-0.2082,48.5641],[-0.2179,48.5584],[-0.2427,48.568],[-0.2485,48.5634],[-0.247,48.5576],[-0.2626,48.5485],[-0.2414,48.5368],[-0.2511,48.5268],[-0.2628,48.526],[-0.2739,48.518],[-0.2673,48.5138],[-0.2716,48.5074],[-0.2851,48.5068],[-0.2873,48.5186],[-0.2929,48.5151],[-0.3202,48.5229],[-0.3358,48.5093],[-0.3362,48.5017],[-0.3491,48.5011],[-0.3553,48.4958],[-0.3498,48.4892],[-0.3532,48.4838],[-0.3681,48.4879],[-0.3685,48.4945],[-0.3934,48.5011],[-0.3911,48.5085],[-0.3946,48.5101],[-0.4075,48.5057],[-0.4236,48.5067],[-0.4327,48.5133],[-0.4471,48.5153],[-0.4699,48.5121],[-0.4739,48.5034],[-0.4894,48.5013],[-0.5093,48.5088],[-0.517,48.5038],[-0.5167,48.4981],[-0.5304,48.4951],[-0.5493,48.4804],[-0.5508,48.4735],[-0.56,48.4722],[-0.5651,48.4772],[-0.5726,48.4686],[-0.5954,48.4726],[-0.6152,48.4591],[-0.6512,48.444],[-0.6557,48.4474],[-0.6537,48.4596],[-0.6597,48.4695],[-0.6559,48.4752],[-0.6629,48.4766],[-0.662,48.4832],[-0.6689,48.4864],[-0.6692,48.483],[-0.6852,48.477],[-0.6822,48.4709],[-0.6918,48.4681],[-0.7017,48.4671],[-0.704,48.4701],[-0.6999,48.4739],[-0.7054,48.4756],[-0.714,48.4692],[-0.7307,48.4728],[-0.7361,48.4615],[-0.7149,48.4539],[-0.7151,48.449],[-0.7647,48.4366],[-0.7799,48.4464],[-0.7779,48.4654],[-0.7961,48.4662],[-0.7988,48.4593],[-0.8127,48.4549],[-0.816,48.4584],[-0.815,48.4721],[-0.8377,48.4848],[-0.8456,48.4973],[-0.8604,48.5014],[-0.8415,48.7049],[-0.8275,48.8076],[-0.8135,48.9102],[-0.7948,49.0175],[-0.7715,49.1482],[-0.7715,49.2322],[-0.7715,49.2742],[-0.7223,49.347],[-0.6495,49.3465],[-0.6114,49.3402],[-0.5583,49.3459],[-0.5181,49.3452],[-0.4523,49.3354],[-0.3966,49.333],[-0.3026,49.2984],[-0.2257,49.2818],[-0.0872,49.2979],[-0.0735,49.3055],[0.0106,49.3306],[0.0695,49.3627],[0.0702,49.3683],[0.0755,49.3662],[0.1105,49.3945],[0.1297,49.403],[0.1734,49.4116],[0.2236,49.4281],[0.2972,49.4299],[0.341,49.4344],[0.339,49.4409],[0.3688,49.444],[0.4041,49.451],[0.4353,49.4604],[0.488,49.4829],[0.5027,49.4851],[0.5234,49.4789],[0.5713,49.44],[0.5921,49.4301],[0.6146,49.4299],[0.6425,49.4442],[0.6481,49.4399],[0.6423,49.4402],[0.636,49.4364],[0.6295,49.4226],[0.6408,49.4275],[0.6445,49.4263],[0.6441,49.4216],[0.6393,49.4181],[0.6448,49.4151],[0.6524,49.4216],[0.6592,49.4155],[0.6498,49.4089],[0.6643,49.4017],[0.6901,49.4061],[0.7043,49.4021],[0.7102,49.4078],[0.708,49.4104],[0.7142,49.4096],[0.7174,49.4115],[0.7383,49.4081],[0.7432,49.4097],[0.7427,49.4131],[0.7596,49.4145],[0.7661,49.4198],[0.7743,49.4178],[0.7798,49.4114],[0.785,49.4106],[0.7972,49.4173],[0.8048,49.4121],[0.8003,49.425],[0.8001,49.4271],[0.8029,49.4271],[0.8106,49.4048],[0.826,49.3952],[0.8468,49.3921],[0.8608,49.3954],[0.8627,49.3923],[0.8784,49.3962],[0.8737,49.3915],[0.885,49.3839],[0.8844,49.3783],[0.8801,49.3763],[0.879,49.3728],[0.8841,49.3746],[0.8927,49.3721],[0.892,49.375],[0.8962,49.3797],[0.9181,49.3855],[0.9189,49.368],[0.9243,49.3589],[0.921,49.3562],[0.9232,49.3499],[0.9322,49.3449],[0.921,49.3383],[0.9026,49.3418],[0.8995,49.3446],[0.883,49.3468],[0.8718,49.342],[0.8658,49.3425],[0.8642,49.3456],[0.8604,49.3463],[0.8563,49.3431],[0.8588,49.3394],[0.848,49.3358],[0.8525,49.3315],[0.842,49.3293],[0.8445,49.3246],[0.8508,49.3241],[0.8549,49.3265],[0.8785,49.3197],[0.8874,49.3206],[0.8913,49.3142],[0.8982,49.3186],[0.8994,49.3158],[0.8922,49.3107],[0.8925,49.3026],[0.8999,49.298],[0.9053,49.2978],[0.9103,49.2986],[0.9074,49.3075],[0.9288,49.3139],[0.94,49.3228],[0.9438,49.309],[0.9493,49.3019],[0.9501,49.2971],[0.9534,49.2943],[0.9632,49.2945],[0.9596,49.2888],[0.9686,49.2856],[0.9568,49.2861],[0.9556,49.2798],[0.9495,49.2798],[0.956,49.2748],[0.9558,49.2714],[0.9629,49.2768],[0.9678,49.2767],[0.973,49.2807],[0.975,49.2724],[0.9807,49.269],[0.9883,49.2686],[0.9856,49.2612],[0.989,49.2638],[0.998,49.2622],[1.0071,49.2646],[1.008,49.2627],[0.9923,49.2583],[0.9931,49.2533],[1.0017,49.251],[1.0141,49.2526],[1.0069,49.2561],[1.0159,49.2537],[1.0274,49.2595],[1.0369,49.2608],[1.0387,49.2581],[1.0511,49.2613],[1.0628,49.2591],[1.0649,49.2634],[1.0552,49.2671],[1.0521,49.273],[1.0582,49.2758],[1.0684,49.2766],[1.0534,49.2923],[1.0498,49.2927],[1.0485,49.2978],[1.0804,49.3087],[1.134,49.3098],[1.1771,49.2466],[1.1946,49.2027],[1.2385,49.1544],[1.2649,49.1281],[1.3044,49.1061],[1.3482,49.0842],[1.3877,49.0666],[1.4473,49.0535],[1.4523,49.0508],[1.4467,49.0462],[1.4577,49.0355],[1.4577,49.0263],[1.4766,49.017],[1.474,49.0097],[1.4804,49.0056],[1.4781,48.9984],[1.4692,48.9935],[1.4713,48.9897],[1.4617,48.9889],[1.4709,48.9748],[1.4792,48.9801],[1.498,48.9792],[1.5079,48.9838],[1.5184,48.9784],[1.4922,48.9645],[1.4993,48.9603],[1.4953,48.9566],[1.5008,48.9516],[1.511,48.9536],[1.5015,48.9411]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C14","Couleur":8,"name":"26_FR","LONG":3912901,"LAT":2915174,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":49.2119,"Long":4.3968},"geometry":{"type":"MultiPolygon","coordinates":[[[[4.2331,49.9579],[4.3094,49.9696],[4.3203,49.9641],[4.3359,49.9632],[4.3511,49.9522],[4.3816,49.9536],[4.3905,49.9478],[4.4166,49.9476],[4.4328,49.9418],[4.4457,49.9373],[4.4813,49.9481],[4.5113,49.9465],[4.5234,49.9502],[4.541,49.9696],[4.5645,49.9704],[4.5818,49.9835],[4.6338,49.9873],[4.6669,49.9968],[4.6929,49.9955],[4.6851,50.007],[4.6886,50.0115],[4.6848,50.0272],[4.7001,50.0531],[4.6966,50.0577],[4.6862,50.0574],[4.6798,50.0678],[4.6858,50.07],[4.7021,50.0955],[4.7518,50.1119],[4.7535,50.1163],[4.748,50.1224],[4.7563,50.1224],[4.7623,50.1364],[4.797,50.1486],[4.8227,50.1674],[4.8242,50.1609],[4.8335,50.1536],[4.8782,50.1535],[4.8819,50.1409],[4.8971,50.1379],[4.8869,50.1309],[4.8785,50.1318],[4.8785,50.127],[4.8671,50.1189],[4.8735,50.1074],[4.8689,50.098],[4.8759,50.0945],[4.8724,50.0879],[4.8602,50.093],[4.8587,50.1],[4.8486,50.101],[4.8384,50.0936],[4.847,50.0836],[4.8405,50.0831],[4.8428,50.0777],[4.8379,50.0676],[4.8195,50.0662],[4.8194,50.0607],[4.8292,50.0575],[4.8275,50.05],[4.8407,50.0463],[4.8418,50.039],[4.82,50.0252],[4.8161,49.9996],[4.8195,49.995],[4.8072,49.984],[4.7934,49.9819],[4.7952,49.9755],[4.7902,49.969],[4.7911,49.958],[4.8472,49.9489],[4.8587,49.932],[4.8816,49.9219],[4.8808,49.9164],[4.8901,49.909],[4.8777,49.9046],[4.8764,49.9014],[4.8875,49.8987],[4.8779,49.8946],[4.8625,49.8729],[4.8623,49.8667],[4.8502,49.8665],[4.8572,49.8428],[4.8673,49.8421],[4.8689,49.823],[4.8763,49.8195],[4.8655,49.8133],[4.8591,49.7969],[4.8516,49.7935],[4.8641,49.7888],[4.876,49.7936],[4.9058,49.7855],[4.9306,49.7868],[4.9389,49.7932],[4.9429,49.7906],[4.9476,49.7991],[4.967,49.7982],[4.9688,49.8016],[4.9982,49.7995],[5.0082,49.7819],[5.0617,49.7673],[5.0629,49.7622],[5.0854,49.7632],[5.0881,49.7664],[5.1189,49.7386],[5.1249,49.727],[5.123,49.7173],[5.1278,49.7132],[5.1412,49.7134],[5.1436,49.7093],[5.153,49.7187],[5.1659,49.7118],[5.1641,49.6934],[5.1919,49.6949],[5.1959,49.6921],[5.2057,49.6962],[5.2179,49.6876],[5.2316,49.6917],[5.2429,49.6892],[5.2427,49.6848],[5.2562,49.6942],[5.2685,49.6966],[5.2941,49.6772],[5.3161,49.6668],[5.3326,49.6527],[5.3183,49.6464],[5.3053,49.6309],[5.3048,49.6246],[5.3136,49.6107],[5.3406,49.6167],[5.3472,49.6313],[5.3639,49.6232],[5.3937,49.6173],[5.3817,49.6057],[5.3782,49.5931],[5.3514,49.5884],[5.3404,49.5948],[5.3081,49.5629],[5.3117,49.5593],[5.2836,49.5522],[5.277,49.5442],[5.2627,49.5418],[5.2542,49.5554],[5.2347,49.5623],[5.2355,49.5692],[5.2094,49.5742],[5.1976,49.5668],[5.1831,49.5694],[5.1629,49.5626],[5.1507,49.5857],[5.1438,49.5909],[5.1129,49.5914],[5.1046,49.5763],[5.1098,49.5738],[5.1129,49.5605],[5.1084,49.5553],[5.0961,49.5578],[5.0882,49.5445],[5.0896,49.5351],[5.1006,49.536],[5.0801,49.5104],[5.0619,49.5077],[5.0595,49.5006],[5.0677,49.4962],[5.0735,49.4866],[5.0836,49.484],[5.0829,49.4704],[5.095,49.4599],[5.1056,49.4612],[5.1109,49.4576],[5.1072,49.4456],[5.1,49.444],[5.1062,49.4313],[5.1049,49.4258],[5.1158,49.4217],[5.1147,49.419],[5.0768,49.403],[5.0884,49.4018],[5.0866,49.3985],[5.1041,49.3898],[5.0987,49.3847],[5.1011,49.3781],[5.0886,49.3697],[5.0602,49.3715],[5.0537,49.366],[5.0559,49.3591],[5.027,49.3367],[5.0257,49.3332],[5.0381,49.3162],[5.0258,49.3102],[5.0381,49.3045],[5.0429,49.2984],[5.0397,49.2954],[5.0547,49.2949],[5.0594,49.2898],[5.0491,49.2854],[5.0512,49.2741],[5.0334,49.2708],[5.0259,49.2742],[5.009,49.2686],[4.9973,49.264],[4.9992,49.2591],[4.9676,49.2491],[4.9605,49.2401],[4.951,49.2369],[4.9701,49.2362],[4.9778,49.2191],[4.9934,49.2098],[4.9779,49.1997],[4.9517,49.1934],[4.9403,49.1847],[4.9517,49.1745],[4.9716,49.1365],[4.9965,49.1065],[4.9965,49.0881],[5.0042,49.0624],[5.0007,49.055],[5.0032,49.0531],[4.9654,49.0215],[5.0087,49.0352],[5.0361,49.0244],[5.0386,49.0111],[5.0314,49.0055],[5.034,48.9936],[5.0055,48.9931],[4.9941,48.9843],[5.0045,48.9835],[5.0074,48.9792],[5.0161,48.9814],[5.0177,48.9777],[5.0291,48.9794],[5.0394,48.974],[5.0317,48.9638],[5.0309,48.9543],[5.0141,48.9456],[5.0128,48.9368],[4.9984,48.9378],[4.9596,48.9261],[4.9509,48.9309],[4.9399,48.9255],[4.9338,48.9128],[4.9125,48.8982],[4.9245,48.8909],[4.9116,48.8686],[4.923,48.8642],[4.9233,48.8577],[4.9303,48.8557],[4.9279,48.8496],[4.9374,48.8481],[4.937,48.8431],[4.9147,48.8351],[4.8887,48.8172],[4.8965,48.8088],[4.8888,48.8002],[4.9364,48.7897],[4.9377,48.7827],[4.9507,48.7687],[4.9718,48.7579],[4.9813,48.7457],[5.0092,48.7414],[5.0058,48.735],[5.0096,48.7292],[5.0047,48.7191],[5.0112,48.7179],[5.016,48.7095],[5.0113,48.7069],[4.9978,48.7098],[5.0064,48.6989],[4.9955,48.692],[4.99,48.693],[4.9884,48.6844],[4.9763,48.6891],[4.9552,48.6848],[4.9506,48.689],[4.9387,48.6748],[4.911,48.6889],[4.8678,48.6672],[4.8502,48.6678],[4.8434,48.6736],[4.8248,48.673],[4.8179,48.6803],[4.7983,48.6775],[4.7952,48.6695],[4.7817,48.6702],[4.7719,48.6519],[4.8085,48.6553],[4.8414,48.6492],[4.839,48.6458],[4.8535,48.635],[4.8486,48.6285],[4.8519,48.6157],[4.8577,48.6153],[4.8569,48.6122],[4.8296,48.6125],[4.8035,48.5968],[4.7843,48.5994],[4.775,48.5929],[4.764,48.5943],[4.7757,48.5664],[4.796,48.5679],[4.783,48.554],[4.7992,48.5298],[4.7178,48.5419],[4.7072,48.5371],[4.6749,48.5376],[4.6702,48.5319],[4.6658,48.5379],[4.651,48.537],[4.6495,48.5409],[4.635,48.5445],[4.6351,48.5512],[4.6434,48.5538],[4.5947,48.5522],[4.5909,48.548],[4.5746,48.5498],[4.5484,48.5363],[4.5455,48.5253],[4.5257,48.5284],[4.5284,48.5402],[4.5226,48.5397],[4.5219,48.5451],[4.511,48.5478],[4.4942,48.5387],[4.4706,48.547],[4.4192,48.5551],[4.398,48.5637],[4.3496,48.5979],[4.3308,48.6018],[4.3149,48.6162],[4.3336,48.632],[4.3175,48.6515],[4.3277,48.6563],[4.3228,48.6638],[4.3338,48.6746],[4.3299,48.6811],[4.3226,48.6826],[4.3281,48.6931],[4.325,48.7009],[4.3117,48.7111],[4.3076,48.709],[4.2993,48.7145],[4.2647,48.7062],[4.2523,48.7089],[4.2431,48.7167],[4.233,48.7023],[4.1654,48.7072],[4.1488,48.7004],[4.1311,48.6862],[4.0798,48.7011],[4.0646,48.6864],[4.0629,48.6823],[4.0689,48.6791],[4.0585,48.6667],[4.0536,48.6683],[4.0443,48.661],[4.0301,48.6594],[4.0017,48.6639],[3.9848,48.6535],[3.9777,48.6258],[3.9704,48.627],[3.9682,48.6316],[3.9583,48.6225],[3.9492,48.6034],[3.9163,48.6069],[3.9156,48.6023],[3.9084,48.6018],[3.9057,48.5873],[3.8972,48.5799],[3.9012,48.5796],[3.9002,48.5754],[3.8719,48.5811],[3.8539,48.58],[3.8562,48.5716],[3.8632,48.5721],[3.8647,48.5687],[3.8587,48.56],[3.86,48.5436],[3.8662,48.5436],[3.8652,48.5376],[3.8516,48.5237],[3.8259,48.5152],[3.7976,48.5287],[3.7665,48.5275],[3.7347,48.5387],[3.7048,48.5339],[3.6881,48.5395],[3.6587,48.5344],[3.6509,48.5391],[3.6436,48.5363],[3.6443,48.5404],[3.6396,48.5383],[3.6323,48.5439],[3.6288,48.5622],[3.6331,48.569],[3.6263,48.5776],[3.6199,48.58],[3.6042,48.5725],[3.6021,48.5801],[3.5927,48.5876],[3.5826,48.5855],[3.5799,48.6049],[3.5642,48.6034],[3.5635,48.6125],[3.5557,48.6207],[3.5385,48.6314],[3.5193,48.6336],[3.5178,48.6375],[3.5332,48.6465],[3.513,48.6435],[3.4931,48.6475],[3.4755,48.6372],[3.4511,48.6347],[3.4603,48.6529],[3.4406,48.6635],[3.4462,48.6669],[3.4427,48.6725],[3.4477,48.6774],[3.4717,48.6858],[3.4708,48.6942],[3.4776,48.6983],[3.4642,48.7068],[3.4692,48.738],[3.4436,48.737],[3.4366,48.7435],[3.4366,48.7532],[3.4281,48.7582],[3.4091,48.7524],[3.3958,48.7592],[3.4085,48.7816],[3.4243,48.785],[3.4279,48.7796],[3.4376,48.785],[3.4412,48.782],[3.444,48.7908],[3.4399,48.7983],[3.4418,48.8036],[3.4235,48.8009],[3.4046,48.8096],[3.4166,48.8178],[3.4477,48.8113],[3.4701,48.8208],[3.4809,48.8122],[3.4872,48.8152],[3.485,48.825],[3.4913,48.8348],[3.4852,48.8519],[3.4813,48.8665],[3.5011,48.8714],[3.5087,48.891],[3.5286,48.9121],[3.5595,48.9168],[3.5643,48.9116],[3.5707,48.915],[3.5744,48.939],[3.6024,48.9442],[3.6015,48.9532],[3.5915,48.9603],[3.6017,48.9662],[3.6212,48.966],[3.6266,48.98],[3.6235,48.983],[3.6398,49.004],[3.6651,49.0056],[3.6788,49.0181],[3.6635,49.0373],[3.6499,49.0427],[3.6425,49.0372],[3.6321,49.0398],[3.6147,49.0336],[3.5883,49.0339],[3.5852,49.0389],[3.5877,49.0594],[3.602,49.0633],[3.6107,49.0736],[3.6226,49.0709],[3.6382,49.0771],[3.639,49.0813],[3.6116,49.118],[3.6032,49.1147],[3.6,49.1207],[3.6116,49.1288],[3.6097,49.135],[3.6204,49.1392],[3.6211,49.1498],[3.6573,49.1489],[3.687,49.1542],[3.6977,49.15],[3.7034,49.1416],[3.7395,49.1569],[3.7487,49.1572],[3.7511,49.1777],[3.7302,49.1782],[3.7255,49.1737],[3.7065,49.1803],[3.7068,49.1858],[3.6967,49.1938],[3.7031,49.1952],[3.7046,49.2007],[3.6975,49.2066],[3.6823,49.1974],[3.6762,49.2002],[3.6804,49.2061],[3.6625,49.209],[3.6531,49.2152],[3.6559,49.2211],[3.6682,49.222],[3.6691,49.2318],[3.678,49.2355],[3.6686,49.2412],[3.6606,49.2599],[3.653,49.2546],[3.6611,49.2703],[3.6517,49.2787],[3.659,49.2868],[3.6383,49.3014],[3.6435,49.3035],[3.644,49.3125],[3.6691,49.3248],[3.7422,49.3367],[3.7411,49.3476],[3.7578,49.3476],[3.7775,49.3558],[3.7799,49.352],[3.8021,49.3589],[3.8228,49.3566],[3.8525,49.3449],[3.8587,49.3544],[3.8475,49.3646],[3.8545,49.3656],[3.8598,49.3727],[3.8567,49.3809],[3.9104,49.395],[3.9148,49.4031],[3.9248,49.4077],[3.9613,49.3774],[3.995,49.3777],[4.0006,49.3688],[4.0069,49.3694],[4.0127,49.3583],[4.0355,49.3599],[4.0373,49.3877],[4.0479,49.4057],[4.0494,49.4152],[4.0423,49.4168],[4.0436,49.4289],[4.0376,49.4381],[4.0496,49.4475],[4.0514,49.4439],[4.0679,49.4453],[4.0421,49.468],[4.0408,49.5084],[4.0571,49.5082],[4.0619,49.5131],[4.0567,49.521],[4.0616,49.5226],[4.0751,49.5186],[4.0753,49.5415],[4.0489,49.5453],[4.0504,49.5516],[4.0582,49.5528],[4.0767,49.5707],[4.0596,49.5761],[4.0623,49.5867],[4.0579,49.5912],[4.0664,49.5944],[4.0471,49.5998],[4.0256,49.6225],[4.0395,49.6252],[4.0421,49.6381],[4.0556,49.6345],[4.0539,49.6371],[4.0679,49.6375],[4.0983,49.6287],[4.1149,49.6353],[4.1253,49.6505],[4.1222,49.6587],[4.1264,49.6782],[4.1487,49.6784],[4.1442,49.6885],[4.1852,49.6989],[4.1923,49.7171],[4.2254,49.7286],[4.2305,49.747],[4.2497,49.7571],[4.2419,49.7619],[4.2426,49.7673],[4.2287,49.773],[4.2142,49.7712],[4.2064,49.7784],[4.227,49.7932],[4.2194,49.8002],[4.2219,49.8047],[4.2147,49.8061],[4.2234,49.8335],[4.2337,49.8486],[4.249,49.857],[4.2532,49.87],[4.2515,49.8893],[4.2557,49.904],[4.2334,49.9043],[4.2336,49.9091],[4.217,49.9138],[4.2209,49.9369],[4.2299,49.9462],[4.2331,49.9579]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C3","Couleur":3,"name":"22_FR","LONG":4055817,"LAT":2808143,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":48.3328,"Long":6.4305},"geometry":{"type":"MultiPolygon","coordinates":[[[[4.951,49.2369],[4.9605,49.2401],[4.9676,49.2491],[4.9992,49.2591],[4.9973,49.264],[5.009,49.2686],[5.0259,49.2742],[5.0334,49.2708],[5.0512,49.2741],[5.0491,49.2854],[5.0594,49.2898],[5.0547,49.2949],[5.0397,49.2954],[5.0429,49.2984],[5.0381,49.3045],[5.0258,49.3102],[5.0381,49.3162],[5.0257,49.3332],[5.027,49.3367],[5.0559,49.3591],[5.0537,49.366],[5.0602,49.3715],[5.0886,49.3697],[5.1011,49.3781],[5.0987,49.3847],[5.1041,49.3898],[5.0866,49.3985],[5.0884,49.4018],[5.0768,49.403],[5.1147,49.419],[5.1158,49.4217],[5.1049,49.4258],[5.1062,49.4313],[5.1,49.444],[5.1072,49.4456],[5.1109,49.4576],[5.1056,49.4612],[5.095,49.4599],[5.0829,49.4704],[5.0836,49.484],[5.0735,49.4866],[5.0677,49.4962],[5.0595,49.5006],[5.0619,49.5077],[5.0801,49.5104],[5.1006,49.536],[5.0896,49.5351],[5.0882,49.5445],[5.0961,49.5578],[5.1084,49.5553],[5.1129,49.5605],[5.1098,49.5738],[5.1046,49.5763],[5.1129,49.5914],[5.1438,49.5909],[5.1507,49.5857],[5.1629,49.5626],[5.1831,49.5694],[5.1976,49.5668],[5.2094,49.5742],[5.2355,49.5692],[5.2347,49.5623],[5.2542,49.5554],[5.2627,49.5418],[5.277,49.5442],[5.2836,49.5522],[5.3117,49.5593],[5.3081,49.5629],[5.3404,49.5948],[5.3514,49.5884],[5.3782,49.5931],[5.3817,49.6057],[5.3937,49.6173],[5.429,49.5951],[5.4378,49.5694],[5.4569,49.5668],[5.4428,49.5526],[5.4655,49.5389],[5.4672,49.5258],[5.4473,49.5181],[5.466,49.5088],[5.465,49.4992],[5.4709,49.4973],[5.4792,49.5003],[5.4839,49.5075],[5.4996,49.5065],[5.541,49.5151],[5.5458,49.5238],[5.5567,49.5292],[5.5911,49.5229],[5.611,49.506],[5.6216,49.5196],[5.6158,49.5273],[5.6442,49.5502],[5.6643,49.553],[5.6694,49.5484],[5.6909,49.5462],[5.7051,49.5389],[5.734,49.5456],[5.7383,49.5388],[5.7571,49.5426],[5.7559,49.5563],[5.7712,49.5633],[5.792,49.5518],[5.8186,49.5464],[5.8105,49.5436],[5.8172,49.537],[5.8369,49.5425],[5.8462,49.5296],[5.8359,49.5275],[5.8345,49.5234],[5.8486,49.5144],[5.8506,49.5083],[5.8691,49.4988],[5.8934,49.4969],[5.9073,49.5019],[5.9286,49.4981],[5.9409,49.5006],[5.9519,49.494],[5.9727,49.4909],[5.9686,49.4865],[5.9749,49.4806],[5.9739,49.4654],[5.9786,49.4612],[5.988,49.4615],[5.979,49.4529],[6.0009,49.4566],[6.0076,49.4518],[6.0278,49.4558],[6.0275,49.4483],[6.0421,49.4478],[6.0578,49.4662],[6.0797,49.4638],[6.0799,49.4591],[6.0873,49.455],[6.1008,49.4529],[6.0995,49.4675],[6.1235,49.4735],[6.1278,49.4938],[6.1327,49.49],[6.1419,49.4918],[6.1408,49.4867],[6.1573,49.4917],[6.1623,49.4935],[6.1538,49.5014],[6.1557,49.5041],[6.1756,49.5101],[6.1779,49.5066],[6.1957,49.5054],[6.2356,49.5081],[6.2384,49.512],[6.2564,49.5101],[6.2633,49.504],[6.2791,49.5034],[6.2806,49.4942],[6.2896,49.4938],[6.2845,49.4906],[6.289,49.4847],[6.2992,49.4882],[6.2962,49.4802],[6.3058,49.4773],[6.3128,49.4803],[6.3338,49.4669],[6.3529,49.4672],[6.3644,49.4595],[6.3688,49.4599],[6.3671,49.4695],[6.3748,49.4642],[6.3936,49.4641],[6.4086,49.4676],[6.4205,49.4764],[6.4297,49.4759],[6.4406,49.4667],[6.4557,49.4627],[6.4687,49.4645],[6.4863,49.4516],[6.4993,49.4504],[6.5248,49.4355],[6.5344,49.4356],[6.557,49.4192],[6.5387,49.4122],[6.5408,49.4012],[6.5488,49.3998],[6.5636,49.3881],[6.5768,49.3898],[6.5867,49.3851],[6.5832,49.3685],[6.5945,49.3715],[6.6023,49.3671],[6.5891,49.3514],[6.5741,49.3587],[6.5636,49.3559],[6.567,49.3462],[6.5758,49.3417],[6.5785,49.335],[6.5859,49.337],[6.5931,49.3327],[6.5956,49.33],[6.5891,49.3222],[6.6095,49.3066],[6.6388,49.2957],[6.6534,49.2812],[6.6602,49.2836],[6.6687,49.2805],[6.6614,49.2581],[6.6644,49.2545],[6.6756,49.2576],[6.6899,49.2496],[6.6849,49.2417],[6.6897,49.2356],[6.6887,49.2224],[6.6961,49.2151],[6.7197,49.2212],[6.7232,49.2189],[6.7315,49.2059],[6.7112,49.1883],[6.7203,49.1754],[6.7383,49.1637],[6.7844,49.168],[6.834,49.1511],[6.8477,49.1572],[6.8443,49.173],[6.8591,49.1746],[6.8617,49.1818],[6.8511,49.1932],[6.8522,49.2001],[6.8362,49.2113],[6.8381,49.2135],[6.8588,49.2228],[6.8934,49.2091],[6.9251,49.2234],[6.9382,49.2224],[6.9399,49.2168],[6.9596,49.2031],[6.9752,49.2094],[6.9995,49.1945],[7.0089,49.194],[7.0108,49.1879],[7.0214,49.1932],[7.0232,49.1892],[7.035,49.1914],[7.0277,49.1706],[7.0329,49.1642],[7.0321,49.1567],[7.0468,49.1367],[7.0442,49.1204],[7.052,49.113],[7.0666,49.1143],[7.072,49.1244],[7.09,49.1307],[7.0818,49.142],[7.0823,49.1522],[7.1023,49.156],[7.1135,49.1519],[7.1038,49.1453],[7.1042,49.1385],[7.1264,49.1421],[7.1359,49.1285],[7.1595,49.1205],[7.1651,49.1286],[7.1836,49.13],[7.1963,49.1216],[7.1981,49.1152],[7.2055,49.1236],[7.2451,49.1301],[7.2656,49.1227],[7.2816,49.1244],[7.2823,49.1169],[7.2932,49.1149],[7.3212,49.1413],[7.3299,49.1448],[7.3627,49.1432],[7.3613,49.1529],[7.3688,49.1615],[7.3652,49.1719],[7.4456,49.1842],[7.436,49.1801],[7.4418,49.1722],[7.4328,49.1678],[7.4346,49.1646],[7.4477,49.1686],[7.4598,49.1628],[7.4725,49.1685],[7.494,49.1695],[7.496,49.1552],[7.5064,49.1547],[7.5059,49.1506],[7.4954,49.1414],[7.4899,49.1423],[7.4895,49.1366],[7.4977,49.1345],[7.5055,49.1224],[7.5154,49.121],[7.5296,49.1021],[7.5284,49.0971],[7.5378,49.0964],[7.5361,49.0934],[7.5637,49.0802],[7.601,49.0832],[7.6294,49.0736],[7.6312,49.0549],[7.6357,49.054],[7.6747,49.045],[7.6973,49.0496],[7.6925,49.0541],[7.696,49.0578],[7.7228,49.0512],[7.7315,49.0556],[7.7322,49.044],[7.7408,49.0473],[7.7611,49.0455],[7.7799,49.0583],[7.789,49.0584],[7.7944,49.0657],[7.8105,49.0613],[7.8305,49.0473],[7.8498,49.044],[7.8547,49.0355],[7.8668,49.0329],[7.8887,49.049],[7.9035,49.0448],[7.9135,49.04],[7.9235,49.0441],[7.9317,49.0581],[7.9455,49.0555],[7.9491,49.0472],[7.9668,49.0416],[7.9752,49.0266],[7.9964,49.0291],[8.0137,49.0208],[8.0496,49.0143],[8.067,48.9998],[8.0914,48.9894],[8.1243,48.9857],[8.14,48.9784],[8.1946,48.9771],[8.1955,48.9692],[8.1998,48.9669],[8.2233,48.9758],[8.2326,48.9665],[8.1989,48.9582],[8.1467,48.9024],[8.1236,48.869],[8.1037,48.8203],[8.0942,48.8083],[8.0696,48.7912],[8.0304,48.7874],[8.0226,48.7679],[8.0131,48.7605],[7.9732,48.7586],[7.9669,48.7441],[7.9673,48.7271],[7.9594,48.7184],[7.8915,48.6636],[7.8419,48.6436],[7.8289,48.6179],[7.8026,48.5896],[7.8002,48.5821],[7.8057,48.5581],[7.8054,48.5141],[7.797,48.5032],[7.7682,48.4896],[7.763,48.4508],[7.7319,48.3926],[7.7313,48.3799],[7.7444,48.3273],[7.7338,48.318],[7.7059,48.3102],[7.6936,48.3018],[7.6808,48.2573],[7.6654,48.2201],[7.6427,48.2055],[7.6294,48.1837],[7.5998,48.1562],[7.5989,48.1357],[7.5779,48.1214],[7.5773,48.1155],[7.5794,48.1015],[7.5692,48.0804],[7.5739,48.0526],[7.5689,48.0347],[7.6119,47.9967],[7.6218,47.9723],[7.6094,47.954],[7.5835,47.9316],[7.5806,47.9221],[7.5829,47.9019],[7.5791,47.8941],[7.5571,47.879],[7.5559,47.8672],[7.5631,47.8436],[7.5298,47.7794],[7.5462,47.7435],[7.5487,47.735],[7.5436,47.722],[7.5117,47.6983],[7.519,47.6848],[7.5192,47.6693],[7.5371,47.6497],[7.5629,47.6359],[7.5741,47.6164],[7.5911,47.6051],[7.5929,47.5972],[7.589,47.5899],[7.5848,47.5757],[7.5663,47.5774],[7.5575,47.5726],[7.5552,47.5646],[7.4992,47.5398],[7.5024,47.5285],[7.5192,47.5345],[7.5315,47.5277],[7.5221,47.5142],[7.5053,47.5151],[7.4978,47.5212],[7.5109,47.5026],[7.511,47.4968],[7.502,47.4904],[7.476,47.48],[7.4621,47.4891],[7.4348,47.498],[7.4212,47.4802],[7.4294,47.4825],[7.4558,47.4728],[7.445,47.4617],[7.4301,47.4593],[7.4211,47.4464],[7.403,47.4355],[7.3809,47.4319],[7.3472,47.4354],[7.3387,47.4409],[7.3265,47.4399],[7.2826,47.4346],[7.2705,47.427],[7.2456,47.4203],[7.245,47.4268],[7.2386,47.4288],[7.2386,47.4338],[7.232,47.439],[7.1962,47.4354],[7.1704,47.4435],[7.1783,47.4581],[7.1776,47.4681],[7.1909,47.4882],[7.2011,47.4939],[7.1617,47.4901],[7.1304,47.503],[7.1119,47.4951],[7.0917,47.4948],[7.0749,47.4882],[7.0713,47.4923],[7.037,47.4975],[7.0244,47.5042],[7.0009,47.5],[6.9859,47.4922],[6.9865,47.4762],[6.9929,47.4712],[6.9918,47.4664],[7.0004,47.4669],[6.9975,47.4566],[7.0016,47.4537],[6.9903,47.4479],[6.9703,47.4471],[6.9662,47.4377],[6.9578,47.4337],[6.9392,47.4337],[6.9417,47.416],[6.9386,47.4065],[6.9136,47.4047],[6.9178,47.4032],[6.9154,47.3974],[6.9095,47.3962],[6.9119,47.3862],[6.895,47.3817],[6.8837,47.3732],[6.8798,47.3524],[6.9018,47.3594],[6.9211,47.3553],[6.9744,47.3599],[6.996,47.3634],[7.0179,47.3729],[7.0333,47.3695],[7.0345,47.3636],[7.0489,47.3618],[7.0526,47.3517],[7.0499,47.3472],[7.0616,47.3437],[7.0529,47.3369],[7.0566,47.3344],[7.0457,47.3267],[7.0097,47.3244],[7.0162,47.314],[7.0082,47.3013],[6.9966,47.2961],[6.9766,47.2964],[6.9733,47.2914],[6.9532,47.2924],[6.9407,47.2865],[6.9519,47.269],[6.9465,47.2535],[6.9551,47.2432],[6.8799,47.2],[6.8739,47.1853],[6.8413,47.1714],[6.8452,47.1664],[6.8589,47.1653],[6.805,47.1302],[6.7651,47.1203],[6.7416,47.1098],[6.7462,47.0991],[6.7434,47.0924],[6.7259,47.0918],[6.7036,47.0822],[6.7075,47.0792],[6.7034,47.0733],[6.6918,47.0664],[6.7192,47.0515],[6.6968,47.0375],[6.6779,47.0352],[6.6585,47.0263],[6.6337,46.9984],[6.6169,46.9916],[6.5961,46.9925],[6.5635,46.9794],[6.506,46.9661],[6.4967,46.9742],[6.4595,46.9431],[6.4328,46.9285],[6.4645,46.8904],[6.46,46.8516],[6.4425,46.8319],[6.4407,46.8163],[6.431,46.8123],[6.4348,46.8015],[6.4584,46.7883],[6.4522,46.7741],[6.4298,46.7565],[6.3945,46.7479],[6.384,46.731],[6.3681,46.7293],[6.3718,46.7244],[6.3602,46.7231],[6.342,46.7104],[6.2694,46.6827],[6.2675,46.6765],[6.2277,46.6481],[6.1999,46.6343],[6.1791,46.6162],[6.1261,46.5895],[6.111,46.5767],[6.1381,46.5577],[6.1311,46.5536],[6.0486,46.6077],[6.0539,46.6136],[6.0643,46.6125],[6.0582,46.6185],[6.0596,46.6261],[6.0991,46.6428],[6.0975,46.6469],[6.1052,46.6504],[6.0702,46.6896],[6.1802,46.7415],[6.1841,46.755],[6.2071,46.7652],[6.2033,46.7727],[6.181,46.7959],[6.163,46.8028],[6.1546,46.8147],[6.1488,46.816],[6.1514,46.8208],[6.1141,46.8358],[6.1056,46.8453],[6.0866,46.8433],[6.0866,46.85],[6.0646,46.8599],[6.0471,46.8456],[6.0477,46.8486],[6.0229,46.8526],[6.0295,46.8616],[6.0264,46.8643],[6.0323,46.8714],[6.0304,46.8747],[6.0225,46.8752],[6.0193,46.868],[6.0161,46.8721],[6.0058,46.873],[6.0124,46.8831],[6.0121,46.8905],[5.9814,46.9078],[5.9814,46.9187],[5.9972,46.9335],[5.9565,46.9485],[5.9798,46.9635],[5.9733,46.969],[5.9755,46.9759],[5.9688,46.9761],[5.9686,46.9804],[5.9437,46.9803],[5.9488,46.9901],[5.9405,46.9825],[5.9206,46.9804],[5.9216,46.9855],[5.9133,46.9897],[5.9216,47.0145],[5.9173,47.0144],[5.9111,46.9996],[5.8966,46.9958],[5.8845,46.9985],[5.8816,47.0051],[5.8562,47.0088],[5.847,47.0031],[5.8469,47.0094],[5.8387,47.009],[5.8395,47.0154],[5.8291,47.0122],[5.8141,47.0175],[5.8179,47.0403],[5.8153,47.0461],[5.8102,47.0468],[5.798,47.0434],[5.799,47.0304],[5.7919,47.0227],[5.7706,47.0182],[5.7632,47.0114],[5.7432,47.0229],[5.741,47.0308],[5.7486,47.0313],[5.7532,47.0392],[5.7375,47.0494],[5.737,47.055],[5.7459,47.057],[5.7636,47.045],[5.7847,47.0549],[5.7688,47.0899],[5.7783,47.0976],[5.7873,47.0957],[5.7919,47.1056],[5.8046,47.1134],[5.8162,47.1344],[5.8281,47.1412],[5.8137,47.1499],[5.8161,47.1521],[5.8094,47.1604],[5.8115,47.1691],[5.7876,47.1728],[5.7861,47.1882],[5.7802,47.1931],[5.7596,47.1946],[5.7604,47.2023],[5.7542,47.2061],[5.7377,47.2013],[5.738,47.2087],[5.7206,47.2198],[5.7213,47.2312],[5.714,47.236],[5.7191,47.2414],[5.6987,47.265],[5.6982,47.2693],[5.6827,47.2748],[5.6699,47.2746],[5.6719,47.2713],[5.6655,47.2663],[5.6534,47.265],[5.6423,47.2562],[5.6224,47.2549],[5.6017,47.2612],[5.5774,47.2526],[5.5692,47.2632],[5.5722,47.2683],[5.5552,47.269],[5.5586,47.2782],[5.5433,47.2801],[5.5409,47.2858],[5.5316,47.2845],[5.5289,47.2998],[5.5185,47.3042],[5.5051,47.3085],[5.5036,47.3136],[5.4692,47.3171],[5.4761,47.3211],[5.4766,47.331],[5.4872,47.3266],[5.4929,47.3324],[5.4951,47.3436],[5.488,47.3614],[5.4956,47.3875],[5.4771,47.3951],[5.4534,47.3845],[5.4338,47.3931],[5.436,47.4029],[5.4443,47.4046],[5.4304,47.4214],[5.4312,47.4361],[5.4402,47.4488],[5.4185,47.449],[5.4134,47.4552],[5.4157,47.4583],[5.4062,47.4617],[5.3796,47.4506],[5.3856,47.4595],[5.3672,47.4651],[5.376,47.4648],[5.4076,47.4772],[5.3871,47.4806],[5.3992,47.499],[5.4316,47.4979],[5.4346,47.4946],[5.4293,47.4924],[5.4364,47.4904],[5.4475,47.4962],[5.4717,47.5275],[5.4864,47.527],[5.4969,47.5444],[5.497,47.5542],[5.4913,47.5634],[5.4804,47.5644],[5.4881,47.5772],[5.4779,47.6081],[5.4711,47.6082],[5.4416,47.6299],[5.4256,47.6321],[5.3998,47.5972],[5.3904,47.5942],[5.3871,47.6003],[5.3741,47.6045],[5.373,47.619],[5.386,47.6351],[5.4055,47.6467],[5.3985,47.6492],[5.4065,47.6736],[5.4203,47.6775],[5.4465,47.6708],[5.4709,47.6754],[5.4828,47.6847],[5.5121,47.6736],[5.5296,47.6729],[5.5674,47.7071],[5.5848,47.7002],[5.5849,47.6906],[5.5968,47.6717],[5.6012,47.6752],[5.6476,47.6754],[5.6597,47.6846],[5.6722,47.6819],[5.6804,47.6862],[5.6911,47.685],[5.6951,47.6943],[5.6931,47.7052],[5.6836,47.7169],[5.6881,47.7193],[5.6852,47.7227],[5.6959,47.7252],[5.6888,47.7304],[5.69,47.7346],[5.7094,47.745],[5.7075,47.7675],[5.68,47.77],[5.6823,47.7754],[5.6766,47.7792],[5.6819,47.8086],[5.69,47.819],[5.6998,47.8238],[5.7314,47.8176],[5.7423,47.8197],[5.7476,47.8285],[5.7442,47.8489],[5.7612,47.8594],[5.767,47.8558],[5.7989,47.8557],[5.7965,47.8467],[5.8285,47.852],[5.8289,47.8559],[5.818,47.8524],[5.8261,47.8572],[5.8215,47.8704],[5.8384,47.8858],[5.8375,47.8912],[5.8496,47.9053],[5.8704,47.9007],[5.8865,47.9026],[5.8905,47.9098],[5.8847,47.9261],[5.8684,47.945],[5.8576,47.9451],[5.8532,47.9504],[5.8492,47.9643],[5.8542,47.9661],[5.8536,47.9699],[5.8467,47.9696],[5.8458,47.9757],[5.8317,47.958],[5.8152,47.9572],[5.8053,47.947],[5.7871,47.953],[5.7785,47.978],[5.793,47.987],[5.7945,47.9983],[5.7867,48.0026],[5.7854,48.013],[5.7764,48.0224],[5.7768,48.0337],[5.7647,48.0301],[5.764,48.0348],[5.7404,48.05],[5.7206,48.0443],[5.7156,48.0597],[5.699,48.0668],[5.6963,48.0776],[5.6891,48.0753],[5.6811,48.0808],[5.6738,48.0789],[5.656,48.0851],[5.6529,48.0804],[5.6609,48.0728],[5.6588,48.0689],[5.6299,48.0844],[5.6378,48.0921],[5.6377,48.0978],[5.6494,48.1051],[5.6721,48.1095],[5.668,48.1158],[5.6566,48.1206],[5.6625,48.1288],[5.6767,48.1363],[5.6772,48.145],[5.6854,48.1474],[5.6867,48.1672],[5.6799,48.1794],[5.7022,48.1904],[5.731,48.1897],[5.7301,48.1983],[5.7156,48.2166],[5.6878,48.2342],[5.6763,48.229],[5.6409,48.2424],[5.6511,48.2566],[5.6538,48.2685],[5.6432,48.2751],[5.6116,48.2918],[5.5888,48.2752],[5.5376,48.3181],[5.5242,48.3342],[5.5224,48.3413],[5.5265,48.3469],[5.4803,48.3563],[5.4686,48.3491],[5.4617,48.3517],[5.445,48.3373],[5.426,48.3311],[5.417,48.3428],[5.4226,48.3514],[5.4186,48.3607],[5.4429,48.3794],[5.4077,48.3828],[5.3938,48.3916],[5.4211,48.3958],[5.4462,48.4151],[5.47,48.4209],[5.4647,48.4254],[5.4508,48.4227],[5.4381,48.4355],[5.4333,48.4321],[5.4094,48.4447],[5.4033,48.4542],[5.406,48.4654],[5.3977,48.4738],[5.379,48.4715],[5.3576,48.4779],[5.3287,48.503],[5.3284,48.5097],[5.314,48.5096],[5.3056,48.5158],[5.2957,48.5084],[5.2866,48.5152],[5.2713,48.5138],[5.2272,48.5318],[5.2219,48.5265],[5.2122,48.5288],[5.2078,48.5386],[5.1951,48.5378],[5.197,48.5467],[5.174,48.5557],[5.168,48.5646],[5.1466,48.5604],[5.1181,48.5848],[5.1194,48.5957],[5.0942,48.5929],[5.0703,48.5959],[5.0596,48.6127],[5.0578,48.6296],[5.0533,48.6339],[5.0639,48.674],[5.0733,48.723],[5.0733,48.7813],[5.0733,48.8373],[5.0663,48.8746],[5.0593,48.9096],[5.0128,48.9368],[5.0141,48.9456],[5.0309,48.9543],[5.0317,48.9638],[5.0394,48.974],[5.0291,48.9794],[5.0177,48.9777],[5.0161,48.9814],[5.0074,48.9792],[5.0045,48.9835],[4.9941,48.9843],[5.0055,48.9931],[5.034,48.9936],[5.0314,49.0055],[5.0386,49.0111],[5.0361,49.0244],[5.0087,49.0352],[4.9654,49.0215],[5.0032,49.0531],[5.0007,49.055],[5.0042,49.0624],[4.9965,49.0881],[4.9965,49.1065],[4.9716,49.1365],[4.9517,49.1745],[4.9403,49.1847],[4.9517,49.1934],[4.9779,49.1997],[4.9934,49.2098],[4.9778,49.2191],[4.9701,49.2362],[4.951,49.2369]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C4","Couleur":4,"name":"18_FR","LONG":4003837,"LAT":2513173,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":45.6598,"Long":5.9306},"geometry":{"type":"MultiPolygon","coordinates":[[[[7.044,45.923],[7.021,45.9162],[7.0074,45.9033],[7.0029,45.8969],[7.0068,45.8871],[6.9992,45.8737],[6.9914,45.868],[6.9791,45.8688],[6.951,45.8592],[6.9412,45.8511],[6.9414,45.8469],[6.9207,45.8463],[6.9133,45.8408],[6.8791,45.8492],[6.8736,45.8455],[6.8685,45.8247],[6.8614,45.8326],[6.8432,45.8406],[6.8202,45.8369],[6.8036,45.8159],[6.8131,45.8075],[6.8131,45.7955],[6.8045,45.7912],[6.8025,45.7784],[6.8064,45.7698],[6.8056,45.7476],[6.8171,45.7404],[6.8084,45.7252],[6.8193,45.7187],[6.8291,45.7028],[6.8414,45.7004],[6.8478,45.6894],[6.8931,45.6755],[6.9025,45.6809],[6.907,45.6759],[6.9021,45.6637],[6.9145,45.6612],[6.9148,45.6517],[6.9308,45.6457],[6.9609,45.6549],[6.9705,45.6539],[6.9749,45.6466],[6.9895,45.644],[6.9923,45.6396],[7.0011,45.6396],[7.001,45.635],[6.9848,45.6207],[6.9864,45.6131],[6.9779,45.5899],[6.9808,45.5832],[6.9954,45.5756],[6.997,45.5689],[6.9898,45.5625],[6.996,45.5452],[6.9912,45.5304],[7.0052,45.5181],[7,45.5048],[7.0225,45.4966],[7.0532,45.4958],[7.0556,45.4875],[7.0459,45.4784],[7.0504,45.4721],[7.077,45.4738],[7.1044,45.4671],[7.0992,45.4588],[7.1146,45.4417],[7.1135,45.4342],[7.1522,45.4232],[7.1672,45.4118],[7.1843,45.4075],[7.1857,45.403],[7.1786,45.3962],[7.1794,45.3903],[7.1632,45.3814],[7.1583,45.3692],[7.1645,45.3605],[7.1339,45.3472],[7.1317,45.3293],[7.1107,45.3265],[7.1097,45.3185],[7.118,45.3116],[7.1224,45.295],[7.1364,45.2808],[7.1313,45.2703],[7.1376,45.2557],[7.1252,45.2439],[7.1106,45.2464],[7.1062,45.2371],[7.0808,45.2245],[7.0831,45.2178],[7.0719,45.21],[7.0472,45.2258],[7.0263,45.2154],[7.0036,45.2199],[6.9931,45.21],[6.9658,45.208],[6.9606,45.2027],[6.9674,45.1964],[6.9523,45.1897],[6.9542,45.1796],[6.9429,45.1762],[6.9468,45.1703],[6.8916,45.167],[6.8922,45.1627],[6.8842,45.1564],[6.8903,45.1465],[6.8978,45.1428],[6.8939,45.1372],[6.8736,45.1359],[6.8479,45.1272],[6.8473,45.1356],[6.836,45.1352],[6.8136,45.1479],[6.7679,45.1597],[6.74,45.1367],[6.7113,45.1448],[6.6921,45.1392],[6.6801,45.1401],[6.6728,45.1246],[6.6584,45.122],[6.6492,45.1149],[6.6341,45.1155],[6.63,45.1093],[6.6271,45.1017],[6.6468,45.085],[6.6453,45.0756],[6.6621,45.0716],[6.6636,45.057],[6.6588,45.0522],[6.6695,45.0442],[6.6642,45.0339],[6.6733,45.0203],[6.7233,45.022],[6.7454,45.0143],[6.7517,44.9966],[6.7372,44.9935],[6.7379,44.9892],[6.7492,44.9851],[6.7497,44.9772],[6.7635,44.9712],[6.7652,44.962],[6.7581,44.9477],[6.7436,44.9363],[6.7564,44.9375],[6.7609,44.9332],[6.7543,44.9319],[6.7489,44.9224],[6.752,44.9193],[6.751,44.9055],[6.7723,44.903],[6.7867,44.8895],[6.8015,44.891],[6.8002,44.8843],[6.8072,44.8758],[6.8302,44.8678],[6.8403,44.8599],[6.8548,44.8578],[6.8632,44.8506],[6.9132,44.845],[6.9313,44.8635],[6.971,44.8463],[7.0068,44.8393],[7.0098,44.826],[7.0241,44.8228],[6.9994,44.7897],[7.0117,44.7837],[7.0246,44.7696],[7.0216,44.7659],[7.0251,44.7563],[7.0213,44.7515],[7.0299,44.7298],[7.0424,44.7184],[7.0657,44.7134],[7.0767,44.6808],[7.0597,44.68],[7.0303,44.6914],[7.0034,44.687],[6.9992,44.6905],[6.9878,44.6894],[6.9708,44.677],[6.9632,44.6781],[6.9577,44.6713],[6.9591,44.6627],[6.9483,44.6548],[6.9394,44.6521],[6.9158,44.66],[6.9076,44.6564],[6.8907,44.6362],[6.871,44.6281],[6.8586,44.6293],[6.8538,44.6148],[6.8437,44.6092],[6.8243,44.6088],[6.8089,44.6014],[6.8016,44.6046],[6.7925,44.5927],[6.7824,44.5947],[6.7675,44.5875],[6.7714,44.5755],[6.7522,44.5703],[6.7486,44.561],[6.7383,44.5531],[6.7293,44.5532],[6.7039,44.5391],[6.6806,44.5415],[6.6789,44.5207],[6.6685,44.5003],[6.6417,44.4855],[6.6323,44.4469],[6.5993,44.4487],[6.5889,44.4456],[6.5777,44.4486],[6.5628,44.4456],[6.536,44.4521],[6.5197,44.448],[6.4817,44.454],[6.469,44.4513],[6.459,44.4656],[6.4455,44.4656],[6.4353,44.4748],[6.4234,44.4676],[6.4115,44.4706],[6.3988,44.4942],[6.3856,44.4991],[6.362,44.5221],[6.3572,44.5226],[6.3324,44.51],[6.3482,44.4977],[6.3412,44.4884],[6.3389,44.4711],[6.3272,44.4681],[6.3271,44.4635],[6.3121,44.4669],[6.2935,44.4809],[6.269,44.4717],[6.2659,44.466],[6.2335,44.4637],[6.2625,44.4123],[6.2484,44.3893],[6.2266,44.3814],[6.2032,44.4127],[6.1847,44.4232],[6.1827,44.4318],[6.174,44.4396],[6.1599,44.4352],[6.1548,44.4621],[6.1252,44.4686],[6.1153,44.4756],[6.1021,44.4718],[6.0847,44.4775],[6.0762,44.4685],[6.0828,44.4637],[6.0712,44.4511],[6.0758,44.4386],[6.0608,44.4459],[6.062,44.45],[6.0575,44.452],[6.0544,44.4471],[6.0251,44.4334],[6.0186,44.4187],[5.9797,44.4095],[5.9571,44.3974],[5.9463,44.3826],[5.9372,44.3592],[5.9184,44.3392],[5.9031,44.337],[5.9053,44.3281],[5.8978,44.3225],[5.8982,44.316],[5.911,44.3109],[5.9214,44.3155],[5.9251,44.3134],[5.9233,44.3011],[5.9269,44.2941],[5.9126,44.2881],[5.9168,44.281],[5.9128,44.2688],[5.9248,44.266],[5.9198,44.2543],[5.9218,44.2484],[5.9136,44.2487],[5.8792,44.272],[5.8748,44.2774],[5.8755,44.291],[5.8474,44.3012],[5.8361,44.2975],[5.8367,44.292],[5.8228,44.2757],[5.8265,44.263],[5.8602,44.2448],[5.861,44.2357],[5.872,44.2277],[5.8768,44.2141],[5.9148,44.204],[5.9091,44.1904],[5.829,44.2005],[5.8143,44.2101],[5.795,44.2135],[5.7758,44.2055],[5.7553,44.2102],[5.7361,44.2006],[5.7147,44.1999],[5.7114,44.1947],[5.6937,44.1917],[5.6924,44.1863],[5.676,44.1914],[5.6866,44.1953],[5.6762,44.2114],[5.6824,44.2347],[5.6732,44.2396],[5.6726,44.2457],[5.6747,44.2573],[5.6867,44.2661],[5.6756,44.2759],[5.6468,44.2671],[5.6475,44.2723],[5.6326,44.2832],[5.6335,44.2906],[5.6427,44.2939],[5.6373,44.3],[5.627,44.3011],[5.6167,44.3093],[5.6083,44.3061],[5.6115,44.3162],[5.6324,44.3284],[5.6308,44.333],[5.5677,44.3323],[5.5602,44.3353],[5.5476,44.33],[5.5379,44.3327],[5.5396,44.3424],[5.5291,44.343],[5.5215,44.351],[5.4929,44.3371],[5.4823,44.3499],[5.4689,44.3514],[5.4658,44.3646],[5.4598,44.369],[5.4389,44.3675],[5.4322,44.3709],[5.4304,44.3768],[5.4439,44.3796],[5.4428,44.3916],[5.433,44.4118],[5.4229,44.4161],[5.4184,44.4248],[5.4347,44.4334],[5.4758,44.4197],[5.486,44.429],[5.4936,44.4282],[5.4973,44.4383],[5.4644,44.4479],[5.4591,44.4688],[5.4677,44.4729],[5.4589,44.4885],[5.4586,44.4994],[5.4708,44.5],[5.4807,44.4912],[5.5156,44.4918],[5.5451,44.4825],[5.5589,44.4731],[5.5702,44.4767],[5.6036,44.4655],[5.6183,44.4752],[5.6298,44.5012],[5.6645,44.5019],[5.6266,44.5349],[5.615,44.5328],[5.5973,44.5433],[5.6071,44.5683],[5.6155,44.5735],[5.6179,44.5838],[5.6263,44.5866],[5.6353,44.6091],[5.6464,44.6099],[5.6495,44.6194],[5.643,44.6225],[5.6393,44.6353],[5.6417,44.6511],[5.6545,44.6553],[5.6556,44.6516],[5.6686,44.6485],[5.6804,44.6521],[5.7282,44.6392],[5.7385,44.6409],[5.7362,44.6498],[5.7532,44.6487],[5.7476,44.6548],[5.7547,44.6629],[5.7638,44.6557],[5.7906,44.6533],[5.8002,44.6683],[5.7998,44.6743],[5.8303,44.6908],[5.8269,44.7004],[5.8015,44.7068],[5.7722,44.697],[5.7562,44.696],[5.7466,44.7009],[5.7373,44.7135],[5.7201,44.7133],[5.7041,44.7293],[5.698,44.7221],[5.6639,44.7254],[5.6609,44.7208],[5.6471,44.7241],[5.644,44.7316],[5.6364,44.7328],[5.6307,44.74],[5.6263,44.7533],[5.5868,44.7633],[5.582,44.7779],[5.5498,44.7945],[5.5445,44.7952],[5.5441,44.7895],[5.5541,44.7789],[5.5543,44.7676],[5.5345,44.7761],[5.4816,44.786],[5.477,44.7892],[5.48,44.7926],[5.4642,44.7926],[5.4586,44.7999],[5.4755,44.8068],[5.4769,44.8151],[5.4848,44.8231],[5.4638,44.826],[5.4755,44.8672],[5.4703,44.8795],[5.4802,44.8967],[5.4836,44.923],[5.4777,44.9668],[5.4934,44.9958],[5.4806,45.0124],[5.4836,45.0228],[5.4763,45.025],[5.4777,45.0341],[5.4652,45.0435],[5.4756,45.0709],[5.4942,45.0717],[5.4831,45.0834],[5.4693,45.0885],[5.4613,45.0865],[5.4492,45.0705],[5.437,45.0621],[5.4353,45.0542],[5.4249,45.0559],[5.4126,45.0448],[5.3919,45.0462],[5.387,45.0584],[5.3813,45.051],[5.3973,45.0383],[5.3861,45.0347],[5.3726,45.0437],[5.3464,45.0478],[5.341,45.0618],[5.3352,45.0623],[5.3252,45.0549],[5.3207,45.0571],[5.3177,45.0514],[5.3083,45.0535],[5.3047,45.0612],[5.2916,45.0639],[5.2701,45.0544],[5.2629,45.0592],[5.2445,45.0608],[5.2445,45.067],[5.2327,45.0704],[5.2258,45.0794],[5.2075,45.0842],[5.1817,45.0844],[5.1691,45.0674],[5.157,45.0659],[5.1484,45.0768],[5.1345,45.0747],[5.1357,45.0796],[5.1411,45.0766],[5.1451,45.0815],[5.1546,45.0796],[5.1629,45.0984],[5.1728,45.1036],[5.1869,45.1201],[5.1867,45.1347],[5.1912,45.1407],[5.1814,45.1478],[5.1915,45.1544],[5.1894,45.1706],[5.1755,45.1809],[5.1685,45.1985],[5.1645,45.198],[5.1674,45.2101],[5.1797,45.2172],[5.2017,45.2174],[5.1849,45.231],[5.1765,45.2484],[5.1565,45.2478],[5.1601,45.2548],[5.1531,45.2563],[5.1408,45.2433],[5.1222,45.2454],[5.1239,45.259],[5.1301,45.2674],[5.1312,45.2859],[5.1378,45.2975],[5.1213,45.2985],[5.1189,45.2917],[5.1111,45.2886],[5.0754,45.2818],[5.0542,45.3191],[5.0227,45.3179],[5.0096,45.3422],[4.9888,45.344],[4.9651,45.3349],[4.96,45.329],[4.9282,45.3227],[4.8798,45.297],[4.8586,45.2985],[4.8588,45.309],[4.8005,45.2974],[4.7634,45.3219],[4.7618,45.3419],[4.7731,45.3461],[4.7735,45.3523],[4.756,45.3657],[4.7581,45.3912],[4.7415,45.417],[4.7599,45.4326],[4.7569,45.4557],[4.7795,45.455],[4.7813,45.4716],[4.8414,45.5006],[4.8728,45.5311],[4.8665,45.5364],[4.8332,45.5464],[4.8124,45.5703],[4.7819,45.5807],[4.7771,45.5874],[4.8299,45.5878],[4.8576,45.5765],[4.8598,45.5908],[4.901,45.6062],[4.9271,45.6057],[4.972,45.6127],[4.9983,45.6033],[5.0018,45.614],[4.9894,45.6186],[5.0045,45.623],[5.0364,45.6129],[5.0441,45.6205],[5.0353,45.6285],[5.0386,45.6452],[5.0581,45.6533],[5.054,45.6601],[5.0609,45.6663],[5.1082,45.6885],[5.1046,45.6997],[5.1196,45.6999],[5.1308,45.707],[5.1435,45.6998],[5.1494,45.7054],[5.1553,45.7017],[5.1603,45.7114],[5.1441,45.7202],[5.1365,45.7325],[5.1244,45.7383],[5.0945,45.7395],[5.0894,45.7498],[5.0953,45.769],[5.0842,45.7654],[5.066,45.7678],[5.0591,45.7919],[5.0889,45.7843],[5.1011,45.8134],[5.0629,45.8089],[5.0481,45.8122],[5.0127,45.8051],[5.0032,45.81],[4.9823,45.8056],[4.9631,45.811],[4.9245,45.804],[4.9181,45.8076],[4.922,45.8196],[4.9171,45.845],[4.9006,45.8576],[4.909,45.8741],[4.8838,45.88],[4.8807,45.8972],[4.8721,45.8935],[4.8715,45.9027],[4.8536,45.9068],[4.8481,45.913],[4.8052,45.8963],[4.8036,45.9015],[4.8106,45.9084],[4.8078,45.9208],[4.789,45.9236],[4.7765,45.9386],[4.7544,45.9348],[4.7301,45.9425],[4.7291,45.9492],[4.7485,45.9624],[4.7546,45.9739],[4.744,46.0187],[4.7469,46.0319],[4.7395,46.0465],[4.7591,46.0612],[4.7618,46.0674],[4.7471,46.0888],[4.7986,46.1422],[4.8028,46.1537],[4.7986,46.1605],[4.7854,46.1672],[4.7802,46.1767],[4.7802,46.1889],[4.7931,46.2019],[4.7955,46.2201],[4.8079,46.2375],[4.8119,46.2616],[4.825,46.2732],[4.8329,46.2994],[4.8534,46.3301],[4.8515,46.3564],[4.8875,46.4027],[4.8929,46.4426],[4.9145,46.4622],[4.9149,46.4857],[4.9277,46.4992],[4.9336,46.5125],[4.9419,46.5122],[4.9413,46.5195],[4.9446,46.5144],[4.9541,46.5132],[4.9444,46.5109],[4.9442,46.5053],[4.9511,46.5005],[4.9608,46.5081],[4.9709,46.5061],[4.964,46.5129],[4.9833,46.5154],[5.0106,46.5111],[5.0142,46.5005],[5.0567,46.484],[5.0871,46.4907],[5.0965,46.4998],[5.108,46.4917],[5.1147,46.4929],[5.1371,46.5027],[5.1353,46.5089],[5.1663,46.5033],[5.168,46.5187],[5.1816,46.5098],[5.202,46.508],[5.2005,46.5026],[5.2075,46.4928],[5.2059,46.4865],[5.2138,46.484],[5.2105,46.4788],[5.2151,46.4684],[5.2253,46.4683],[5.2353,46.4579],[5.2417,46.4612],[5.2543,46.4558],[5.2574,46.45],[5.2834,46.4458],[5.2904,46.4498],[5.3106,46.4468],[5.3126,46.4529],[5.3231,46.4565],[5.3233,46.4625],[5.3466,46.4608],[5.359,46.4642],[5.3729,46.4601],[5.3836,46.4708],[5.3981,46.4666],[5.4148,46.4726],[5.4201,46.4802],[5.4213,46.5011],[5.409,46.5],[5.3924,46.5082],[5.3844,46.5156],[5.3583,46.5194],[5.3626,46.5517],[5.3562,46.562],[5.3679,46.567],[5.3621,46.5773],[5.3696,46.5805],[5.4047,46.5821],[5.414,46.6002],[5.404,46.6102],[5.3959,46.6106],[5.4176,46.6157],[5.4369,46.6292],[5.4411,46.6373],[5.4136,46.6537],[5.4271,46.6602],[5.4188,46.668],[5.4221,46.673],[5.3954,46.6851],[5.4084,46.6984],[5.4066,46.7039],[5.3949,46.708],[5.3956,46.7221],[5.3865,46.731],[5.361,46.7311],[5.3668,46.7524],[5.373,46.7507],[5.3902,46.7706],[5.3854,46.7752],[5.3712,46.777],[5.3708,46.7861],[5.3642,46.7833],[5.3528,46.7931],[5.3405,46.7908],[5.3335,46.7956],[5.3277,46.8153],[5.342,46.8199],[5.34,46.8259],[5.3471,46.819],[5.3453,46.8159],[5.3513,46.8136],[5.3698,46.826],[5.3865,46.8263],[5.4034,46.8325],[5.4297,46.8259],[5.4463,46.8279],[5.4568,46.8305],[5.465,46.8407],[5.457,46.8457],[5.4593,46.8553],[5.4342,46.8612],[5.439,46.8555],[5.4491,46.8562],[5.4442,46.8518],[5.4314,46.8599],[5.4017,46.8687],[5.4052,46.8723],[5.4045,46.8795],[5.4,46.881],[5.4037,46.8894],[5.3983,46.8924],[5.3897,46.8941],[5.3618,46.883],[5.351,46.8933],[5.3355,46.8847],[5.3291,46.8881],[5.328,46.8984],[5.3124,46.9103],[5.3066,46.9387],[5.2834,46.94],[5.2701,46.9281],[5.262,46.9274],[5.2638,46.9376],[5.2513,46.9446],[5.254,46.9482],[5.261,46.9466],[5.2631,46.9522],[5.2631,46.9644],[5.2544,46.9711],[5.2552,46.9799],[5.2745,46.9914],[5.2743,46.9983],[5.3005,47.0019],[5.3045,47.006],[5.3032,47.012],[5.3182,47.0125],[5.3155,47.0165],[5.2753,47.0269],[5.2844,47.0482],[5.3059,47.0629],[5.3109,47.0579],[5.3266,47.0752],[5.3858,47.0818],[5.3989,47.0957],[5.3982,47.1054],[5.4103,47.1137],[5.4087,47.1267],[5.4383,47.1417],[5.4383,47.1533],[5.4508,47.1618],[5.4592,47.1827],[5.4559,47.1922],[5.445,47.1994],[5.4804,47.2183],[5.474,47.2309],[5.4861,47.2434],[5.4859,47.2508],[5.4787,47.2563],[5.4882,47.2682],[5.4884,47.2892],[5.5056,47.2834],[5.5082,47.2929],[5.5185,47.3042],[5.5289,47.2998],[5.5316,47.2845],[5.5409,47.2858],[5.5433,47.2801],[5.5586,47.2782],[5.5552,47.269],[5.5722,47.2683],[5.5692,47.2632],[5.5774,47.2526],[5.6017,47.2612],[5.6224,47.2549],[5.6423,47.2562],[5.6534,47.265],[5.6655,47.2663],[5.6719,47.2713],[5.6699,47.2746],[5.6827,47.2748],[5.6982,47.2693],[5.6987,47.265],[5.7191,47.2414],[5.714,47.236],[5.7213,47.2312],[5.7206,47.2198],[5.738,47.2087],[5.7377,47.2013],[5.7542,47.2061],[5.7604,47.2023],[5.7596,47.1946],[5.7802,47.1931],[5.7861,47.1882],[5.7876,47.1728],[5.8115,47.1691],[5.8094,47.1604],[5.8161,47.1521],[5.8137,47.1499],[5.8281,47.1412],[5.8162,47.1344],[5.8046,47.1134],[5.7919,47.1056],[5.7873,47.0957],[5.7783,47.0976],[5.7688,47.0899],[5.7847,47.0549],[5.7636,47.045],[5.7459,47.057],[5.737,47.055],[5.7375,47.0494],[5.7532,47.0392],[5.7486,47.0313],[5.741,47.0308],[5.7432,47.0229],[5.7632,47.0114],[5.7706,47.0182],[5.7919,47.0227],[5.799,47.0304],[5.798,47.0434],[5.8102,47.0468],[5.8153,47.0461],[5.8179,47.0403],[5.8141,47.0175],[5.8291,47.0122],[5.8395,47.0154],[5.8387,47.009],[5.8469,47.0094],[5.847,47.0031],[5.8562,47.0088],[5.8816,47.0051],[5.8845,46.9985],[5.8966,46.9958],[5.9111,46.9996],[5.9173,47.0144],[5.9216,47.0145],[5.9133,46.9897],[5.9216,46.9855],[5.9206,46.9804],[5.9405,46.9825],[5.9488,46.9901],[5.9437,46.9803],[5.9686,46.9804],[5.9688,46.9761],[5.9755,46.9759],[5.9733,46.969],[5.9798,46.9635],[5.9565,46.9485],[5.9972,46.9335],[5.9814,46.9187],[5.9814,46.9078],[6.0121,46.8905],[6.0124,46.8831],[6.0058,46.873],[6.0161,46.8721],[6.0193,46.868],[6.0225,46.8752],[6.0304,46.8747],[6.0323,46.8714],[6.0264,46.8643],[6.0295,46.8616],[6.0229,46.8526],[6.0477,46.8486],[6.0471,46.8456],[6.0646,46.8599],[6.0866,46.85],[6.0866,46.8433],[6.1056,46.8453],[6.1141,46.8358],[6.1514,46.8208],[6.1488,46.816],[6.1546,46.8147],[6.163,46.8028],[6.181,46.7959],[6.2033,46.7727],[6.2071,46.7652],[6.1841,46.755],[6.1802,46.7415],[6.0702,46.6896],[6.1052,46.6504],[6.0975,46.6469],[6.0991,46.6428],[6.0596,46.6261],[6.0582,46.6185],[6.0643,46.6125],[6.0539,46.6136],[6.0486,46.6077],[6.1311,46.5536],[6.1381,46.5577],[6.1565,46.5453],[6.1486,46.5394],[6.1534,46.5366],[6.1442,46.528],[6.1375,46.5306],[6.1208,46.5169],[6.0971,46.4816],[6.0728,46.4658],[6.0749,46.4533],[6.0862,46.4431],[6.064,46.4162],[6.0982,46.4086],[6.1055,46.3997],[6.1136,46.3999],[6.1498,46.3774],[6.1597,46.3791],[6.1703,46.3673],[6.1492,46.3427],[6.1386,46.3393],[6.1256,46.3172],[6.1198,46.3124],[6.1196,46.2948],[6.1024,46.2849],[6.1243,46.2511],[6.1018,46.2375],[6.0882,46.2462],[6.0696,46.2411],[6.0611,46.2452],[6.0463,46.2314],[6.0337,46.2384],[6.007,46.2266],[6.0021,46.2208],[5.9914,46.2224],[5.9931,46.2155],[5.9744,46.2148],[5.9693,46.2066],[5.973,46.2025],[5.9637,46.197],[5.9952,46.1829],[5.9883,46.1707],[5.9819,46.1727],[5.9647,46.1447],[5.9659,46.1372],[5.9561,46.1321],[5.9573,46.128],[5.9764,46.1326],[5.9827,46.1421],[5.9927,46.1444],[6.0358,46.1365],[6.0485,46.1415],[6.0519,46.1513],[6.0918,46.1517],[6.0991,46.144],[6.1355,46.1412],[6.1888,46.1662],[6.1861,46.1782],[6.1891,46.1814],[6.2223,46.2008],[6.2341,46.2064],[6.2488,46.205],[6.2945,46.2249],[6.3102,46.244],[6.3061,46.2512],[6.3103,46.2562],[6.2952,46.256],[6.2949,46.2646],[6.2789,46.2514],[6.2665,46.2477],[6.2602,46.2517],[6.2377,46.2766],[6.2423,46.285],[6.2528,46.2901],[6.2488,46.3016],[6.2414,46.3046],[6.2533,46.3116],[6.2566,46.3232],[6.2785,46.3502],[6.3037,46.3663],[6.3262,46.3717],[6.3447,46.37],[6.3506,46.3673],[6.3502,46.3621],[6.3595,46.3495],[6.39,46.3402],[6.4131,46.3596],[6.4314,46.36],[6.4749,46.3748],[6.4822,46.3821],[6.4845,46.3935],[6.5131,46.4048],[6.5452,46.3947],[6.5881,46.4023],[6.7185,46.408],[6.7575,46.4026],[6.7898,46.3929],[6.8017,46.3938],[6.8017,46.3938],[6.8052,46.3941],[6.8018,46.3869],[6.8061,46.3798],[6.7918,46.3671],[6.7716,46.3612],[6.7722,46.3502],[6.7844,46.3329],[6.7965,46.3328],[6.8007,46.3199],[6.8193,46.3153],[6.83,46.3061],[6.8287,46.3011],[6.8471,46.29],[6.8586,46.2908],[6.8648,46.2806],[6.8591,46.2738],[6.8551,46.2547],[6.8401,46.2483],[6.8305,46.2342],[6.8213,46.2322],[6.8217,46.2235],[6.8036,46.2031],[6.8124,46.1814],[6.7923,46.1632],[6.7904,46.1543],[6.7979,46.1368],[6.808,46.1361],[6.8152,46.1293],[6.8391,46.1326],[6.8514,46.1266],[6.8995,46.1241],[6.8933,46.1129],[6.8953,46.1082],[6.883,46.0952],[6.8918,46.085],[6.8884,46.0787],[6.8915,46.0739],[6.8808,46.0695],[6.8731,46.0556],[6.8756,46.0477],[6.8906,46.0425],[6.8947,46.0481],[6.909,46.0506],[6.9238,46.0647],[6.937,46.0648],[6.9352,46.0559],[6.9497,46.0517],[6.9629,46.0305],[6.9809,46.0202],[6.9848,46.0051],[7.0105,45.9973],[7.0121,45.9874],[7.0233,45.9792],[7.0091,45.9694],[7.0184,45.9602],[7.0376,45.9543],[7.0357,45.9384],[7.044,45.923]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C5","Couleur":1,"name":"17_FR","LONG":3886239,"LAT":2463756,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":45.1442,"Long":4.4721},"geometry":{"type":"MultiPolygon","coordinates":[[[[4.3881,46.2198],[4.387,46.2326],[4.3921,46.2367],[4.3856,46.2462],[4.3923,46.2519],[4.3894,46.2579],[4.3983,46.2762],[4.3976,46.2829],[4.4064,46.294],[4.4228,46.2952],[4.427,46.3028],[4.4378,46.2981],[4.4395,46.2931],[4.4585,46.2969],[4.4753,46.2843],[4.4885,46.288],[4.504,46.2671],[4.5464,46.2739],[4.548,46.2847],[4.5617,46.2946],[4.5703,46.293],[4.5728,46.2764],[4.5833,46.2694],[4.6186,46.2648],[4.622,46.2705],[4.6165,46.282],[4.636,46.2902],[4.6362,46.3002],[4.6527,46.304],[4.6641,46.2952],[4.6796,46.3062],[4.6909,46.3013],[4.6952,46.2919],[4.7103,46.2784],[4.7074,46.2698],[4.7007,46.2675],[4.6931,46.2716],[4.688,46.2656],[4.681,46.2658],[4.6816,46.2558],[4.688,46.2543],[4.6894,46.2491],[4.7053,46.2511],[4.736,46.2339],[4.7325,46.2269],[4.7195,46.2279],[4.7226,46.2261],[4.7206,46.2216],[4.7307,46.2188],[4.7289,46.2143],[4.7357,46.2117],[4.7343,46.2068],[4.7275,46.2076],[4.721,46.2009],[4.7201,46.1943],[4.7244,46.1843],[4.7284,46.1842],[4.7282,46.1787],[4.7583,46.1722],[4.7615,46.1763],[4.7802,46.1767],[4.7854,46.1672],[4.7986,46.1605],[4.8028,46.1537],[4.7986,46.1422],[4.7471,46.0888],[4.7618,46.0674],[4.7591,46.0612],[4.7395,46.0465],[4.7469,46.0319],[4.744,46.0187],[4.7546,45.9739],[4.7485,45.9624],[4.7291,45.9492],[4.7301,45.9425],[4.7544,45.9348],[4.7765,45.9386],[4.789,45.9236],[4.8078,45.9208],[4.8106,45.9084],[4.8036,45.9015],[4.8052,45.8963],[4.8481,45.913],[4.8536,45.9068],[4.8715,45.9027],[4.8721,45.8935],[4.8807,45.8972],[4.8838,45.88],[4.909,45.8741],[4.9006,45.8576],[4.9171,45.845],[4.922,45.8196],[4.9181,45.8076],[4.9245,45.804],[4.9631,45.811],[4.9823,45.8056],[5.0032,45.81],[5.0127,45.8051],[5.0481,45.8122],[5.0629,45.8089],[5.1011,45.8134],[5.0889,45.7843],[5.0591,45.7919],[5.066,45.7678],[5.0842,45.7654],[5.0953,45.769],[5.0894,45.7498],[5.0945,45.7395],[5.1244,45.7383],[5.1365,45.7325],[5.1441,45.7202],[5.1603,45.7114],[5.1553,45.7017],[5.1494,45.7054],[5.1435,45.6998],[5.1308,45.707],[5.1196,45.6999],[5.1046,45.6997],[5.1082,45.6885],[5.0609,45.6663],[5.054,45.6601],[5.0581,45.6533],[5.0386,45.6452],[5.0353,45.6285],[5.0441,45.6205],[5.0364,45.6129],[5.0045,45.623],[4.9894,45.6186],[5.0018,45.614],[4.9983,45.6033],[4.972,45.6127],[4.9271,45.6057],[4.901,45.6062],[4.8598,45.5908],[4.8576,45.5765],[4.8299,45.5878],[4.7771,45.5874],[4.7819,45.5807],[4.8124,45.5703],[4.8332,45.5464],[4.8665,45.5364],[4.8728,45.5311],[4.8414,45.5006],[4.7813,45.4716],[4.7795,45.455],[4.7569,45.4557],[4.7599,45.4326],[4.7415,45.417],[4.7581,45.3912],[4.756,45.3657],[4.7735,45.3523],[4.7731,45.3461],[4.7618,45.3419],[4.7634,45.3219],[4.8005,45.2974],[4.8588,45.309],[4.8586,45.2985],[4.8798,45.297],[4.9282,45.3227],[4.96,45.329],[4.9651,45.3349],[4.9888,45.344],[5.0096,45.3422],[5.0227,45.3179],[5.0542,45.3191],[5.0754,45.2818],[5.1111,45.2886],[5.1189,45.2917],[5.1213,45.2985],[5.1378,45.2975],[5.1312,45.2859],[5.1301,45.2674],[5.1239,45.259],[5.1222,45.2454],[5.1408,45.2433],[5.1531,45.2563],[5.1601,45.2548],[5.1565,45.2478],[5.1765,45.2484],[5.1849,45.231],[5.2017,45.2174],[5.1797,45.2172],[5.1674,45.2101],[5.1645,45.198],[5.1685,45.1985],[5.1755,45.1809],[5.1894,45.1706],[5.1915,45.1544],[5.1814,45.1478],[5.1912,45.1407],[5.1867,45.1347],[5.1869,45.1201],[5.1728,45.1036],[5.1629,45.0984],[5.1546,45.0796],[5.1451,45.0815],[5.1411,45.0766],[5.1357,45.0796],[5.1345,45.0747],[5.1484,45.0768],[5.157,45.0659],[5.1691,45.0674],[5.1817,45.0844],[5.2075,45.0842],[5.2258,45.0794],[5.2327,45.0704],[5.2445,45.067],[5.2445,45.0608],[5.2629,45.0592],[5.2701,45.0544],[5.2916,45.0639],[5.3047,45.0612],[5.3083,45.0535],[5.3177,45.0514],[5.3207,45.0571],[5.3252,45.0549],[5.3352,45.0623],[5.341,45.0618],[5.3464,45.0478],[5.3726,45.0437],[5.3861,45.0347],[5.3973,45.0383],[5.3813,45.051],[5.387,45.0584],[5.3919,45.0462],[5.4126,45.0448],[5.4249,45.0559],[5.4353,45.0542],[5.437,45.0621],[5.4492,45.0705],[5.4613,45.0865],[5.4693,45.0885],[5.4831,45.0834],[5.4942,45.0717],[5.4756,45.0709],[5.4652,45.0435],[5.4777,45.0341],[5.4763,45.025],[5.4836,45.0228],[5.4806,45.0124],[5.4934,44.9958],[5.4777,44.9668],[5.4836,44.923],[5.4802,44.8967],[5.4703,44.8795],[5.4755,44.8672],[5.4638,44.826],[5.4848,44.8231],[5.4769,44.8151],[5.4755,44.8068],[5.4586,44.7999],[5.4642,44.7926],[5.48,44.7926],[5.477,44.7892],[5.4816,44.786],[5.5345,44.7761],[5.5543,44.7676],[5.5541,44.7789],[5.5441,44.7895],[5.5445,44.7952],[5.5498,44.7945],[5.582,44.7779],[5.5868,44.7633],[5.6263,44.7533],[5.6307,44.74],[5.6364,44.7328],[5.644,44.7316],[5.6471,44.7241],[5.6609,44.7208],[5.6639,44.7254],[5.698,44.7221],[5.7041,44.7293],[5.7201,44.7133],[5.7373,44.7135],[5.7466,44.7009],[5.7562,44.696],[5.7722,44.697],[5.8015,44.7068],[5.8269,44.7004],[5.8303,44.6908],[5.7998,44.6743],[5.8002,44.6683],[5.7906,44.6533],[5.7638,44.6557],[5.7547,44.6629],[5.7476,44.6548],[5.7532,44.6487],[5.7362,44.6498],[5.7385,44.6409],[5.7282,44.6392],[5.6804,44.6521],[5.6686,44.6485],[5.6556,44.6516],[5.6545,44.6553],[5.6417,44.6511],[5.6393,44.6353],[5.643,44.6225],[5.6495,44.6194],[5.6464,44.6099],[5.6353,44.6091],[5.6263,44.5866],[5.6179,44.5838],[5.6155,44.5735],[5.6071,44.5683],[5.5973,44.5433],[5.615,44.5328],[5.6266,44.5349],[5.6645,44.5019],[5.6298,44.5012],[5.6183,44.4752],[5.6036,44.4655],[5.5702,44.4767],[5.5589,44.4731],[5.5451,44.4825],[5.5156,44.4918],[5.4807,44.4912],[5.4708,44.5],[5.4586,44.4994],[5.4589,44.4885],[5.4677,44.4729],[5.4591,44.4688],[5.4644,44.4479],[5.4973,44.4383],[5.4936,44.4282],[5.486,44.429],[5.4758,44.4197],[5.4347,44.4334],[5.4184,44.4248],[5.4229,44.4161],[5.433,44.4118],[5.4428,44.3916],[5.4439,44.3796],[5.4304,44.3768],[5.4322,44.3709],[5.4389,44.3675],[5.4598,44.369],[5.4658,44.3646],[5.4689,44.3514],[5.4823,44.3499],[5.4929,44.3371],[5.5215,44.351],[5.5291,44.343],[5.5396,44.3424],[5.5379,44.3327],[5.5476,44.33],[5.5602,44.3353],[5.5677,44.3323],[5.6308,44.333],[5.6324,44.3284],[5.6115,44.3162],[5.6083,44.3061],[5.6167,44.3093],[5.627,44.3011],[5.6373,44.3],[5.6427,44.2939],[5.6335,44.2906],[5.6326,44.2832],[5.6475,44.2723],[5.6468,44.2671],[5.6756,44.2759],[5.6867,44.2661],[5.6747,44.2573],[5.6726,44.2457],[5.6732,44.2396],[5.6824,44.2347],[5.6762,44.2114],[5.6866,44.1953],[5.676,44.1914],[5.6516,44.1896],[5.6436,44.1696],[5.6827,44.1635],[5.6786,44.1461],[5.6311,44.1506],[5.6317,44.1582],[5.6395,44.1676],[5.6162,44.1781],[5.6093,44.1907],[5.5774,44.1883],[5.5644,44.1709],[5.583,44.1575],[5.5785,44.152],[5.5691,44.1481],[5.5513,44.1496],[5.5416,44.1328],[5.5113,44.1242],[5.5078,44.1179],[5.4988,44.1157],[5.451,44.1212],[5.4476,44.1367],[5.4367,44.1399],[5.4357,44.1522],[5.4269,44.149],[5.4166,44.155],[5.3972,44.152],[5.3832,44.1553],[5.3867,44.1811],[5.3811,44.1958],[5.3845,44.2012],[5.3555,44.2144],[5.3368,44.2036],[5.3183,44.2097],[5.3035,44.2098],[5.3033,44.2054],[5.2921,44.2145],[5.2522,44.2312],[5.2404,44.2308],[5.2381,44.2132],[5.2301,44.2119],[5.176,44.2204],[5.1553,44.2304],[5.1495,44.2353],[5.1615,44.2456],[5.1606,44.2667],[5.1484,44.2694],[5.1468,44.2738],[5.1488,44.2807],[5.168,44.2899],[5.1737,44.3082],[5.1664,44.3149],[5.1511,44.3098],[5.1547,44.3022],[5.1043,44.2798],[5.0765,44.2841],[5.0602,44.3076],[5.0232,44.2964],[5.0035,44.2855],[4.9819,44.2845],[4.9396,44.2692],[4.9358,44.2632],[4.8987,44.257],[4.8962,44.2584],[4.9013,44.2643],[4.8803,44.2618],[4.8675,44.2558],[4.8659,44.2496],[4.8438,44.2417],[4.8263,44.2284],[4.8134,44.2323],[4.8125,44.2581],[4.8027,44.2814],[4.8046,44.3039],[4.7896,44.3077],[4.7887,44.3133],[4.7712,44.3175],[4.7611,44.3254],[4.7187,44.3267],[4.713,44.3207],[4.6792,44.3205],[4.6506,44.3298],[4.6535,44.3019],[4.6492,44.2704],[4.6409,44.2747],[4.6343,44.2849],[4.6166,44.278],[4.6055,44.291],[4.5599,44.3019],[4.5445,44.3207],[4.5486,44.3259],[4.5325,44.3227],[4.5225,44.3305],[4.5126,44.3282],[4.5131,44.3342],[4.5044,44.3442],[4.5022,44.3386],[4.4812,44.3369],[4.472,44.342],[4.4524,44.3381],[4.4485,44.2973],[4.4532,44.2979],[4.4404,44.2834],[4.4345,44.2834],[4.433,44.2912],[4.4202,44.2871],[4.3956,44.2907],[4.3936,44.3002],[4.3896,44.301],[4.4032,44.3337],[4.3918,44.3466],[4.3677,44.3394],[4.3258,44.3383],[4.3297,44.3323],[4.3174,44.3212],[4.3032,44.3148],[4.2884,44.315],[4.289,44.2921],[4.2775,44.2748],[4.2589,44.2644],[4.2414,44.2701],[4.2148,44.2908],[4.1866,44.2997],[4.178,44.3177],[4.1644,44.3121],[4.1429,44.3134],[4.142,44.3272],[4.1345,44.3287],[4.1267,44.3377],[4.1163,44.3272],[4.0945,44.3347],[4.093,44.3304],[4.074,44.3299],[4.0515,44.3173],[4.0357,44.3298],[4.0535,44.3376],[4.0509,44.3471],[4.0574,44.3634],[4.0405,44.3913],[4.0475,44.3974],[4.0566,44.3926],[4.0643,44.3948],[4.0626,44.398],[4.0684,44.4051],[4.0481,44.4179],[4.0359,44.4195],[4.0464,44.4326],[4.0371,44.446],[4.0232,44.4457],[4.0216,44.4499],[3.9982,44.4598],[3.9859,44.4779],[3.9883,44.5038],[3.9788,44.5229],[3.9711,44.5267],[3.9662,44.5356],[3.9547,44.5667],[3.9451,44.5738],[3.9236,44.5719],[3.916,44.5814],[3.9183,44.5884],[3.9056,44.5925],[3.9072,44.6104],[3.8941,44.6137],[3.8937,44.6408],[3.8979,44.6437],[3.8903,44.6566],[3.8831,44.6576],[3.8837,44.6652],[3.8782,44.6679],[3.8781,44.6747],[3.8697,44.6779],[3.8774,44.6894],[3.8828,44.6909],[3.8843,44.6976],[3.8696,44.697],[3.8673,44.703],[3.8724,44.7074],[3.8614,44.7115],[3.8648,44.7172],[3.8615,44.7194],[3.867,44.7284],[3.8777,44.7322],[3.8773,44.7376],[3.8625,44.7439],[3.8419,44.7459],[3.8299,44.7546],[3.8427,44.7674],[3.8419,44.7721],[3.8314,44.7765],[3.8091,44.7654],[3.8032,44.7708],[3.8032,44.7813],[3.7987,44.7859],[3.7754,44.7967],[3.7708,44.8036],[3.7616,44.8013],[3.7586,44.8061],[3.7617,44.8136],[3.7501,44.8228],[3.7518,44.8279],[3.7467,44.8296],[3.7428,44.8388],[3.7354,44.8401],[3.736,44.8339],[3.7228,44.831],[3.7006,44.8369],[3.698,44.831],[3.6628,44.8307],[3.6574,44.8361],[3.6697,44.841],[3.6725,44.8568],[3.6668,44.8578],[3.6537,44.8758],[3.6296,44.8781],[3.63,44.8808],[3.6147,44.8742],[3.6083,44.8793],[3.5943,44.8765],[3.5988,44.8601],[3.5907,44.8469],[3.5942,44.8413],[3.5867,44.8368],[3.5885,44.8263],[3.5786,44.8256],[3.5704,44.8356],[3.5606,44.8328],[3.561,44.825],[3.5427,44.8283],[3.5074,44.8242],[3.4889,44.807],[3.4782,44.8097],[3.4644,44.828],[3.4559,44.8295],[3.4586,44.8403],[3.4418,44.8542],[3.4357,44.8802],[3.4205,44.8952],[3.4193,44.9084],[3.4104,44.9178],[3.4158,44.9277],[3.4124,44.9388],[3.4151,44.9417],[3.4044,44.9569],[3.397,44.9585],[3.3905,44.9509],[3.3714,44.9605],[3.3765,44.9631],[3.3704,44.9703],[3.3727,44.9757],[3.3614,44.9714],[3.3479,44.9741],[3.3453,44.9856],[3.3644,44.9902],[3.3703,45.0049],[3.35,45.0019],[3.3504,45.0124],[3.3469,45.0141],[3.3252,45.0096],[3.3372,45.0253],[3.3262,45.0304],[3.3112,45.0205],[3.3001,45.0315],[3.2972,45.038],[3.3049,45.0462],[3.2996,45.0612],[3.3146,45.085],[3.2974,45.0912],[3.2894,45.0871],[3.2825,45.1031],[3.3022,45.1072],[3.3058,45.101],[3.325,45.0954],[3.3615,45.1042],[3.3508,45.1042],[3.3519,45.1112],[3.348,45.1129],[3.3309,45.1097],[3.3283,45.1145],[3.2991,45.1252],[3.288,45.1204],[3.274,45.145],[3.2816,45.1516],[3.2787,45.1555],[3.274,45.1521],[3.268,45.1541],[3.2696,45.1576],[3.2607,45.1712],[3.2607,45.1826],[3.2708,45.1898],[3.2734,45.2083],[3.2627,45.2137],[3.2549,45.2102],[3.2528,45.2159],[3.2356,45.2199],[3.2343,45.2376],[3.221,45.2443],[3.2275,45.2549],[3.2241,45.262],[3.2289,45.2651],[3.2269,45.2719],[3.2201,45.272],[3.2228,45.2767],[3.2018,45.2824],[3.1837,45.2793],[3.1882,45.2775],[3.1642,45.2691],[3.1697,45.2819],[3.1595,45.2914],[3.1607,45.2954],[3.1475,45.2879],[3.1365,45.2894],[3.1256,45.2848],[3.1114,45.2842],[3.0994,45.2922],[3.0827,45.2895],[3.0851,45.2993],[3.1037,45.3004],[3.1143,45.3107],[3.0906,45.3226],[3.0936,45.3271],[3.1134,45.3271],[3.1159,45.3338],[3.1094,45.3453],[3.1127,45.3515],[3.1035,45.3544],[3.1806,45.3512],[3.175,45.3556],[3.1812,45.3644],[3.1945,45.3627],[3.1926,45.367],[3.2021,45.371],[3.209,45.3713],[3.2115,45.3672],[3.2187,45.3695],[3.2216,45.3814],[3.2362,45.3946],[3.2535,45.3887],[3.29,45.4007],[3.2987,45.4203],[3.3108,45.4182],[3.3236,45.4068],[3.3272,45.3971],[3.334,45.3982],[3.3341,45.4079],[3.3431,45.4162],[3.3409,45.4214],[3.356,45.4227],[3.38,45.4001],[3.3904,45.4035],[3.4028,45.4],[3.4056,45.4034],[3.4223,45.399],[3.4636,45.4019],[3.4693,45.4133],[3.4765,45.4153],[3.4795,45.4209],[3.5013,45.4276],[3.5062,45.4117],[3.5218,45.4021],[3.5245,45.406],[3.5299,45.3985],[3.5318,45.4014],[3.5527,45.3976],[3.5568,45.3916],[3.5703,45.4021],[3.588,45.3753],[3.5848,45.3681],[3.587,45.3612],[3.6191,45.3377],[3.6279,45.3391],[3.6444,45.3509],[3.6456,45.3594],[3.6631,45.3615],[3.6702,45.3835],[3.6744,45.3805],[3.6805,45.3839],[3.6903,45.378],[3.6885,45.3734],[3.7078,45.3753],[3.7066,45.3694],[3.6971,45.3654],[3.6998,45.3595],[3.7302,45.3614],[3.7416,45.3528],[3.7559,45.3539],[3.7572,45.3573],[3.776,45.3488],[3.78,45.3548],[3.7899,45.3542],[3.7904,45.3637],[3.7855,45.3698],[3.7914,45.3848],[3.8052,45.392],[3.8202,45.3854],[3.8223,45.3801],[3.8363,45.3831],[3.8379,45.3657],[3.8465,45.3703],[3.8542,45.3599],[3.8706,45.3556],[3.8921,45.3541],[3.8974,45.3571],[3.8909,45.3707],[3.8943,45.3842],[3.8892,45.3936],[3.8996,45.4061],[3.8985,45.4098],[3.9204,45.4247],[3.9625,45.4352],[3.9644,45.4463],[3.9751,45.4483],[3.9691,45.4518],[3.9732,45.46],[3.9668,45.472],[3.9856,45.4862],[3.9845,45.4952],[3.9657,45.5005],[3.9613,45.5065],[3.9458,45.5452],[3.9545,45.5558],[3.9446,45.5628],[3.9354,45.5778],[3.9098,45.5929],[3.9088,45.5972],[3.8816,45.6029],[3.8612,45.6147],[3.8587,45.6247],[3.8236,45.632],[3.8178,45.6465],[3.777,45.6911],[3.7758,45.6996],[3.7827,45.7067],[3.7769,45.7191],[3.7809,45.7247],[3.7676,45.7288],[3.758,45.7465],[3.7512,45.747],[3.746,45.7412],[3.7271,45.7556],[3.7388,45.7668],[3.7317,45.7745],[3.7106,45.7832],[3.7008,45.7815],[3.6915,45.7905],[3.7113,45.7994],[3.7217,45.8139],[3.7176,45.8194],[3.7243,45.8239],[3.726,45.8337],[3.7191,45.8511],[3.7286,45.8557],[3.7285,45.8627],[3.7207,45.8607],[3.7172,45.8683],[3.7392,45.8727],[3.7473,45.8818],[3.7454,45.884],[3.7544,45.886],[3.7398,45.9089],[3.7302,45.9122],[3.7239,45.9216],[3.6939,45.931],[3.6939,45.9494],[3.7059,45.9573],[3.7018,45.9699],[3.7164,45.9739],[3.7421,45.966],[3.754,45.9719],[3.7558,45.9827],[3.7651,45.9762],[3.7744,45.9764],[3.7766,45.9717],[3.7882,45.9733],[3.7984,45.9836],[3.8237,45.9873],[3.8229,45.9929],[3.8321,45.9997],[3.826,46.0004],[3.8221,46.0133],[3.8164,46.0174],[3.8131,46.0392],[3.8056,46.0531],[3.8199,46.0797],[3.8151,46.0855],[3.8213,46.0902],[3.8037,46.1095],[3.7935,46.1122],[3.8017,46.1305],[3.7918,46.1444],[3.7898,46.1549],[3.8097,46.1631],[3.7891,46.1858],[3.7883,46.2017],[3.7958,46.207],[3.7851,46.2209],[3.7722,46.2284],[3.7683,46.2389],[3.782,46.2439],[3.8027,46.2385],[3.8068,46.2433],[3.8046,46.2558],[3.8676,46.2626],[3.8777,46.2756],[3.8995,46.2759],[3.9049,46.2731],[3.9088,46.2606],[3.9055,46.2521],[3.9076,46.2419],[3.905,46.238],[3.8975,46.2393],[3.8979,46.2249],[3.8901,46.2145],[3.9181,46.2029],[3.9335,46.2064],[3.9723,46.2027],[3.9711,46.1889],[3.9781,46.1858],[3.9796,46.1788],[3.9902,46.1692],[3.9934,46.1727],[4.0289,46.1692],[4.06,46.1885],[4.0693,46.1864],[4.1038,46.1984],[4.1334,46.1773],[4.1643,46.173],[4.1867,46.1746],[4.1849,46.1888],[4.2078,46.1948],[4.225,46.1776],[4.243,46.1881],[4.2551,46.1878],[4.2635,46.176],[4.2504,46.1647],[4.25,46.1584],[4.2808,46.156],[4.2873,46.1603],[4.292,46.1723],[4.3074,46.1744],[4.3158,46.1707],[4.3266,46.1849],[4.3363,46.1811],[4.3462,46.1877],[4.3595,46.1821],[4.3708,46.1843],[4.3737,46.187],[4.3625,46.1952],[4.3629,46.2001],[4.3733,46.2047],[4.3753,46.2112],[4.3889,46.213],[4.3881,46.2198]],[[4.9886,44.4232],[4.9787,44.4235],[4.9715,44.4315],[4.9597,44.4203],[4.9185,44.4078],[4.9097,44.3967],[4.9118,44.3876],[4.9071,44.3746],[4.8942,44.3688],[4.8911,44.3602],[4.8705,44.3485],[4.8695,44.3451],[4.8795,44.3454],[4.8953,44.3381],[4.8943,44.3331],[4.8813,44.3242],[4.8915,44.3129],[4.8895,44.304],[4.9218,44.3088],[4.9798,44.2974],[4.987,44.2927],[4.9912,44.312],[5.0133,44.3257],[5.009,44.3338],[5.0231,44.3457],[5.023,44.3596],[5.0549,44.365],[5.0703,44.3764],[5.0709,44.3832],[5.0473,44.3815],[5.0348,44.391],[5.0159,44.3928],[5.0134,44.4054],[5.02,44.4104],[5.0188,44.416],[5.012,44.4156],[5.0102,44.4109],[5.0015,44.4125],[4.9886,44.4232]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C7","Couleur":7,"name":"15_FR","LONG":3724420,"LAT":2365859,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":44.7373,"Long":2.4598},"geometry":{"type":"MultiPolygon","coordinates":[[[[1.9902,44.1495],[2.0002,44.1589],[1.9767,44.1621],[1.9731,44.1717],[1.9801,44.1764],[1.9779,44.1796],[1.9615,44.1844],[1.9448,44.1826],[1.9407,44.1698],[1.931,44.1785],[1.935,44.1814],[1.9331,44.1881],[1.9229,44.1909],[1.9242,44.1878],[1.9111,44.1855],[1.9124,44.1898],[1.9031,44.1931],[1.907,44.2009],[1.8903,44.2076],[1.8907,44.2133],[1.9042,44.2097],[1.9118,44.2146],[1.9338,44.2458],[1.9431,44.2476],[1.9498,44.2425],[1.962,44.2424],[1.9641,44.2655],[1.9706,44.2764],[1.9259,44.2821],[1.9014,44.2791],[1.8688,44.292],[1.8813,44.3044],[1.8598,44.3212],[1.877,44.3356],[1.8856,44.3353],[1.8821,44.3401],[1.853,44.3318],[1.8472,44.3378],[1.8333,44.3354],[1.8265,44.3236],[1.8098,44.3289],[1.806,44.3366],[1.7944,44.3346],[1.7908,44.3258],[1.7835,44.3279],[1.7887,44.3227],[1.7853,44.3176],[1.78,44.3142],[1.7754,44.3172],[1.7746,44.3123],[1.7566,44.3253],[1.7388,44.327],[1.7366,44.3181],[1.7111,44.3117],[1.7023,44.3145],[1.6711,44.2983],[1.6686,44.2896],[1.6636,44.2936],[1.6595,44.2833],[1.6527,44.296],[1.6342,44.2988],[1.6325,44.2936],[1.6522,44.2852],[1.6423,44.2708],[1.634,44.2688],[1.6156,44.2784],[1.6167,44.2977],[1.6013,44.2956],[1.5949,44.3034],[1.5867,44.299],[1.5701,44.3008],[1.5779,44.2836],[1.5616,44.2792],[1.5633,44.2748],[1.5769,44.2704],[1.5869,44.2487],[1.5752,44.2415],[1.5738,44.2355],[1.5506,44.2328],[1.5411,44.2276],[1.5269,44.2372],[1.5184,44.2493],[1.5179,44.2551],[1.5263,44.2605],[1.509,44.2737],[1.4847,44.2726],[1.4866,44.2778],[1.4719,44.2867],[1.4634,44.2664],[1.4534,44.2675],[1.4538,44.2545],[1.4406,44.2527],[1.4296,44.2426],[1.3766,44.2225],[1.3572,44.203],[1.3423,44.2183],[1.3437,44.2243],[1.3359,44.2285],[1.3297,44.2304],[1.3292,44.225],[1.3252,44.2257],[1.3171,44.2335],[1.3056,44.227],[1.2813,44.2353],[1.2862,44.2412],[1.2844,44.2525],[1.3048,44.262],[1.3039,44.2691],[1.2938,44.2727],[1.3018,44.2807],[1.304,44.2942],[1.2832,44.2906],[1.2707,44.2813],[1.2554,44.2857],[1.2471,44.2661],[1.2423,44.2663],[1.2386,44.276],[1.2212,44.2804],[1.2166,44.278],[1.2142,44.2684],[1.2043,44.2824],[1.1969,44.2806],[1.1799,44.2892],[1.1769,44.2959],[1.1808,44.31],[1.1686,44.3033],[1.1606,44.3107],[1.1514,44.3074],[1.136,44.3171],[1.1223,44.3158],[1.1081,44.3271],[1.1158,44.3382],[1.0812,44.3544],[1.0915,44.3602],[1.0941,44.3695],[1.1047,44.3645],[1.1081,44.3649],[1.1076,44.3701],[1.1335,44.3714],[1.1316,44.388],[1.1364,44.3932],[1.1023,44.3919],[1.0819,44.3814],[1.0641,44.3785],[1.0604,44.3905],[1.0512,44.3923],[1.0617,44.4019],[1.0575,44.4277],[1.0452,44.4342],[1.0286,44.4339],[1.0325,44.441],[1.0215,44.4445],[1.0256,44.4665],[1.023,44.4754],[1.009,44.4801],[1.017,44.4898],[1.0118,44.4956],[1.0165,44.499],[1.0161,44.506],[1.0001,44.5265],[0.9884,44.5325],[0.9892,44.5388],[0.9815,44.5445],[0.9942,44.5496],[1.0063,44.5477],[1.0132,44.5361],[1.0332,44.5548],[1.0703,44.5664],[1.0752,44.5773],[1.0766,44.5733],[1.0887,44.5707],[1.1032,44.5717],[1.0989,44.5798],[1.1035,44.581],[1.1025,44.5865],[1.0946,44.5923],[1.1509,44.6329],[1.1537,44.6396],[1.1465,44.6529],[1.1499,44.6551],[1.1467,44.6708],[1.1603,44.6725],[1.1787,44.6826],[1.2246,44.6843],[1.2299,44.6913],[1.2416,44.6928],[1.2456,44.706],[1.2636,44.7107],[1.27,44.7221],[1.2877,44.7149],[1.2983,44.7258],[1.3002,44.7334],[1.2957,44.7361],[1.3002,44.7443],[1.3161,44.7404],[1.3227,44.7648],[1.3139,44.765],[1.2985,44.7743],[1.2982,44.7807],[1.3046,44.7847],[1.304,44.7892],[1.2933,44.7899],[1.2985,44.7964],[1.3255,44.806],[1.3641,44.8116],[1.36,44.8348],[1.3659,44.8456],[1.3711,44.8472],[1.3772,44.8419],[1.3876,44.8509],[1.4025,44.8491],[1.4114,44.8727],[1.4316,44.8714],[1.4411,44.8764],[1.4399,44.889],[1.4231,44.8954],[1.4182,44.9004],[1.4211,44.9061],[1.4105,44.9088],[1.4255,44.9199],[1.4427,44.916],[1.4335,44.9461],[1.428,44.9466],[1.4167,44.9606],[1.4216,44.9682],[1.4125,44.9727],[1.4178,44.982],[1.4122,44.9866],[1.4152,44.994],[1.4091,45.0067],[1.4429,45.0137],[1.4483,45.0193],[1.4261,45.0359],[1.4174,45.0495],[1.4078,45.0531],[1.4129,45.0612],[1.3996,45.0612],[1.4068,45.0704],[1.3905,45.0886],[1.3949,45.092],[1.3933,45.0974],[1.3775,45.1048],[1.4105,45.1131],[1.4131,45.1249],[1.3841,45.1358],[1.3553,45.1324],[1.352,45.1416],[1.3324,45.1376],[1.3207,45.143],[1.309,45.1352],[1.2983,45.1416],[1.2938,45.1391],[1.279,45.1508],[1.2544,45.1585],[1.2567,45.1667],[1.2697,45.165],[1.2851,45.1752],[1.291,45.1837],[1.2896,45.1889],[1.2722,45.2017],[1.233,45.1977],[1.2283,45.2036],[1.2336,45.2222],[1.2633,45.2307],[1.2737,45.2372],[1.2785,45.2504],[1.2741,45.2571],[1.2543,45.255],[1.2394,45.2604],[1.2419,45.2662],[1.229,45.2722],[1.2324,45.2908],[1.2393,45.2905],[1.2416,45.3013],[1.2358,45.3221],[1.2651,45.3231],[1.2796,45.3353],[1.286,45.3485],[1.2838,45.353],[1.3158,45.3609],[1.3248,45.3796],[1.2936,45.3976],[1.2942,45.3914],[1.2803,45.3839],[1.274,45.3929],[1.2799,45.3997],[1.2773,45.4031],[1.2678,45.3957],[1.2599,45.3978],[1.2564,45.4058],[1.2587,45.4196],[1.2719,45.4182],[1.2781,45.4127],[1.2861,45.4156],[1.2901,45.4185],[1.2827,45.4327],[1.2939,45.4342],[1.2842,45.4376],[1.2755,45.4339],[1.2633,45.4436],[1.2532,45.4442],[1.2566,45.4523],[1.2645,45.4525],[1.2627,45.4675],[1.2692,45.4764],[1.2874,45.4818],[1.2853,45.4903],[1.3501,45.4669],[1.372,45.4926],[1.3896,45.4962],[1.3915,45.5073],[1.4075,45.5269],[1.4252,45.531],[1.4396,45.5204],[1.4543,45.5384],[1.452,45.553],[1.4752,45.5534],[1.4804,45.5659],[1.4922,45.5609],[1.4925,45.5494],[1.5176,45.5556],[1.5176,45.5643],[1.5357,45.5563],[1.5506,45.5567],[1.5511,45.5512],[1.5563,45.5493],[1.5704,45.5556],[1.5823,45.555],[1.5945,45.5776],[1.6215,45.5771],[1.6281,45.5827],[1.6372,45.5804],[1.6374,45.5843],[1.6429,45.5838],[1.6465,45.5903],[1.658,45.5942],[1.6609,45.6085],[1.7093,45.6418],[1.7282,45.6382],[1.7437,45.6465],[1.7504,45.6444],[1.7535,45.6555],[1.7765,45.6588],[1.7858,45.6827],[1.796,45.6814],[1.7965,45.6748],[1.8015,45.6731],[1.8015,45.6766],[1.8154,45.6811],[1.8246,45.6666],[1.8332,45.6634],[1.843,45.6645],[1.8468,45.6612],[1.8549,45.6721],[1.8748,45.6647],[1.8817,45.6675],[1.8774,45.6712],[1.8818,45.674],[1.8818,45.6813],[1.9045,45.6778],[1.911,45.6808],[1.9092,45.6918],[1.9019,45.6921],[1.8987,45.6983],[1.9048,45.7037],[1.9138,45.7037],[1.912,45.7084],[1.9226,45.7136],[1.9293,45.7125],[1.9322,45.706],[1.9477,45.7056],[1.9415,45.7132],[1.9568,45.7247],[1.9916,45.7214],[1.9992,45.7325],[2.0015,45.7488],[2.0171,45.7554],[2.0372,45.7545],[2.0521,45.765],[2.0596,45.7538],[2.0832,45.7464],[2.0847,45.7281],[2.0974,45.734],[2.1139,45.725],[2.121,45.7322],[2.1334,45.7354],[2.1449,45.7233],[2.1569,45.7213],[2.1639,45.7364],[2.1763,45.7317],[2.1829,45.7207],[2.2074,45.7158],[2.199,45.7122],[2.1975,45.7046],[2.1915,45.7021],[2.1946,45.6987],[2.2113,45.7023],[2.2127,45.7128],[2.2241,45.6958],[2.2317,45.7],[2.2379,45.6929],[2.2455,45.6952],[2.2533,45.6888],[2.2711,45.6917],[2.269,45.6634],[2.2885,45.6654],[2.3079,45.6763],[2.3205,45.6686],[2.3253,45.6711],[2.3219,45.678],[2.3274,45.6756],[2.3373,45.6803],[2.3495,45.6932],[2.344,45.7065],[2.3638,45.7129],[2.3826,45.7078],[2.4105,45.7095],[2.4359,45.6993],[2.4436,45.7076],[2.4545,45.7081],[2.4641,45.7184],[2.4726,45.719],[2.4713,45.7276],[2.4818,45.7357],[2.4921,45.7377],[2.5088,45.7241],[2.5156,45.7129],[2.5233,45.711],[2.519,45.6978],[2.5263,45.6919],[2.5235,45.6868],[2.5287,45.6822],[2.5129,45.6713],[2.5132,45.6679],[2.5188,45.6594],[2.5281,45.6586],[2.5168,45.6391],[2.4959,45.641],[2.4929,45.6376],[2.4885,45.6426],[2.4834,45.6393],[2.4802,45.6112],[2.4612,45.5964],[2.4814,45.571],[2.4914,45.568],[2.49,45.5613],[2.5004,45.5536],[2.5171,45.552],[2.5148,45.5392],[2.5191,45.5302],[2.5119,45.5252],[2.5204,45.521],[2.5079,45.5044],[2.5139,45.4928],[2.5084,45.4785],[2.5197,45.4832],[2.544,45.479],[2.5362,45.4569],[2.5642,45.4655],[2.5867,45.4497],[2.6033,45.4498],[2.6166,45.463],[2.6179,45.47],[2.6235,45.4663],[2.6245,45.4439],[2.6477,45.4437],[2.662,45.4342],[2.6778,45.4399],[2.6885,45.4377],[2.6897,45.4302],[2.6799,45.4227],[2.6809,45.4074],[2.69,45.4053],[2.6942,45.3983],[2.7033,45.399],[2.7013,45.3914],[2.7145,45.3815],[2.7422,45.3932],[2.7615,45.3859],[2.7852,45.3846],[2.7858,45.3894],[2.8026,45.3927],[2.8137,45.4014],[2.8219,45.3997],[2.8292,45.39],[2.8524,45.3923],[2.8577,45.3822],[2.8676,45.3762],[2.8735,45.3754],[2.8747,45.381],[2.8861,45.383],[2.8994,45.377],[2.9008,45.3708],[2.9142,45.3662],[2.9227,45.3681],[2.9204,45.3622],[2.926,45.3423],[2.9486,45.3091],[2.9692,45.3071],[2.9992,45.2906],[3.0183,45.2871],[3.0218,45.2952],[3.0533,45.3035],[3.0667,45.3198],[3.0606,45.3308],[3.0714,45.3375],[3.0871,45.3386],[3.0906,45.3468],[3.1035,45.3544],[3.1127,45.3515],[3.1094,45.3453],[3.1159,45.3338],[3.1134,45.3271],[3.0936,45.3271],[3.0906,45.3226],[3.1143,45.3107],[3.1037,45.3004],[3.0851,45.2993],[3.0827,45.2895],[3.0994,45.2922],[3.1114,45.2842],[3.1256,45.2848],[3.1365,45.2894],[3.1475,45.2879],[3.1607,45.2954],[3.1595,45.2914],[3.1697,45.2819],[3.1642,45.2691],[3.1882,45.2775],[3.1837,45.2793],[3.2018,45.2824],[3.2228,45.2767],[3.2201,45.272],[3.2269,45.2719],[3.2289,45.2651],[3.2241,45.262],[3.2275,45.2549],[3.221,45.2443],[3.2343,45.2376],[3.2356,45.2199],[3.2528,45.2159],[3.2549,45.2102],[3.2627,45.2137],[3.2734,45.2083],[3.2708,45.1898],[3.2607,45.1826],[3.2607,45.1712],[3.2696,45.1576],[3.268,45.1541],[3.274,45.1521],[3.2787,45.1555],[3.2816,45.1516],[3.274,45.145],[3.288,45.1204],[3.2991,45.1252],[3.3283,45.1145],[3.3309,45.1097],[3.348,45.1129],[3.3519,45.1112],[3.3508,45.1042],[3.3615,45.1042],[3.325,45.0954],[3.3058,45.101],[3.3022,45.1072],[3.2825,45.1031],[3.2894,45.0871],[3.2974,45.0912],[3.3146,45.085],[3.2996,45.0612],[3.3049,45.0462],[3.2972,45.038],[3.3001,45.0315],[3.3112,45.0205],[3.3262,45.0304],[3.3372,45.0253],[3.3252,45.0096],[3.3469,45.0141],[3.3504,45.0124],[3.35,45.0019],[3.3703,45.0049],[3.3644,44.9902],[3.3453,44.9856],[3.3479,44.9741],[3.3614,44.9714],[3.3727,44.9757],[3.3704,44.9703],[3.3765,44.9631],[3.3714,44.9605],[3.3905,44.9509],[3.397,44.9585],[3.4044,44.9569],[3.4151,44.9417],[3.4124,44.9388],[3.4158,44.9277],[3.4104,44.9178],[3.4193,44.9084],[3.4205,44.8952],[3.4357,44.8802],[3.4418,44.8542],[3.4586,44.8403],[3.4559,44.8295],[3.4644,44.828],[3.4782,44.8097],[3.4889,44.807],[3.5074,44.8242],[3.5427,44.8283],[3.561,44.825],[3.5606,44.8328],[3.5704,44.8356],[3.5786,44.8256],[3.5885,44.8263],[3.5867,44.8368],[3.5942,44.8413],[3.5907,44.8469],[3.5988,44.8601],[3.5943,44.8765],[3.6083,44.8793],[3.6147,44.8742],[3.63,44.8808],[3.6296,44.8781],[3.6537,44.8758],[3.6668,44.8578],[3.6725,44.8568],[3.6697,44.841],[3.6574,44.8361],[3.6628,44.8307],[3.698,44.831],[3.7006,44.8369],[3.7228,44.831],[3.736,44.8339],[3.7354,44.8401],[3.7428,44.8388],[3.7467,44.8296],[3.7518,44.8279],[3.7501,44.8228],[3.7617,44.8136],[3.7586,44.8061],[3.7616,44.8013],[3.7708,44.8036],[3.7754,44.7967],[3.7987,44.7859],[3.8032,44.7813],[3.8032,44.7708],[3.8091,44.7654],[3.8314,44.7765],[3.8419,44.7721],[3.8427,44.7674],[3.8299,44.7546],[3.8419,44.7459],[3.8625,44.7439],[3.8773,44.7376],[3.8777,44.7322],[3.867,44.7284],[3.8615,44.7194],[3.8648,44.7172],[3.8614,44.7115],[3.8724,44.7074],[3.8673,44.703],[3.8696,44.697],[3.8843,44.6976],[3.8828,44.6909],[3.8774,44.6894],[3.8697,44.6779],[3.8781,44.6747],[3.8782,44.6679],[3.8837,44.6652],[3.8831,44.6576],[3.8903,44.6566],[3.8979,44.6437],[3.8937,44.6408],[3.8941,44.6137],[3.9072,44.6104],[3.9056,44.5925],[3.9183,44.5884],[3.916,44.5814],[3.9236,44.5719],[3.9451,44.5738],[3.9547,44.5667],[3.9662,44.5356],[3.9711,44.5267],[3.9788,44.5229],[3.9883,44.5038],[3.9859,44.4779],[3.9982,44.4598],[3.9848,44.4458],[3.9757,44.4432],[3.973,44.4267],[3.961,44.4138],[3.9491,44.4128],[3.9491,44.4039],[3.9527,44.402],[3.9448,44.3996],[3.9164,44.4051],[3.9074,44.4025],[3.8993,44.3907],[3.8887,44.393],[3.8858,44.388],[3.8976,44.3777],[3.9066,44.3758],[3.935,44.336],[3.9448,44.3361],[3.9523,44.3311],[3.9441,44.3167],[3.9229,44.3052],[3.9366,44.2939],[3.9399,44.2859],[3.9339,44.2758],[3.9458,44.2667],[3.9597,44.271],[3.9751,44.2588],[3.9711,44.2504],[3.9547,44.2496],[3.9468,44.2433],[3.9479,44.2265],[3.952,44.2217],[3.937,44.1949],[3.9596,44.1917],[3.9621,44.1882],[3.9585,44.1816],[3.9646,44.1784],[3.9615,44.1752],[3.965,44.1709],[3.9712,44.1745],[3.9766,44.1708],[3.9741,44.163],[3.9238,44.1823],[3.9273,44.1613],[3.9116,44.1601],[3.911,44.1487],[3.9006,44.1497],[3.8895,44.1448],[3.8739,44.1301],[3.8752,44.1264],[3.8321,44.1373],[3.8226,44.1363],[3.8127,44.1288],[3.797,44.1274],[3.7733,44.1436],[3.7651,44.1414],[3.7591,44.1517],[3.7369,44.156],[3.7256,44.1642],[3.7056,44.165],[3.6924,44.1714],[3.685,44.1827],[3.6696,44.1862],[3.671,44.1789],[3.6585,44.1734],[3.6496,44.1809],[3.6374,44.1765],[3.6266,44.1534],[3.6528,44.146],[3.6364,44.1409],[3.6328,44.1212],[3.604,44.1156],[3.5663,44.1233],[3.5453,44.1132],[3.538,44.1206],[3.5081,44.126],[3.4802,44.1241],[3.4397,44.1292],[3.4328,44.135],[3.4303,44.1482],[3.4116,44.1535],[3.4055,44.1618],[3.3967,44.1613],[3.3952,44.1687],[3.3736,44.1708],[3.3574,44.168],[3.3444,44.1588],[3.3346,44.1588],[3.3321,44.1418],[3.3203,44.1356],[3.3238,44.1089],[3.3118,44.1051],[3.2915,44.106],[3.2781,44.0967],[3.2625,44.0931],[3.277,44.0876],[3.2757,44.0839],[3.2898,44.0719],[3.2972,44.0724],[3.2945,44.0679],[3.3068,44.0688],[3.3183,44.079],[3.3289,44.079],[3.3375,44.0586],[3.3518,44.0502],[3.3676,44.0582],[3.372,44.0554],[3.3712,44.0494],[3.3894,44.0575],[3.3994,44.044],[3.4176,44.0418],[3.451,44.0225],[3.4454,44.0041],[3.4396,43.9983],[3.4182,43.9932],[3.4056,43.9697],[3.3775,43.9674],[3.3756,43.9561],[3.357,43.9489],[3.3507,43.9328],[3.3587,43.9145],[3.3615,43.9107],[3.3703,43.9174],[3.384,43.9106],[3.4032,43.9151],[3.4228,43.9124],[3.4371,43.9007],[3.4393,43.8968],[3.4324,43.8935],[3.4412,43.8873],[3.4351,43.885],[3.4313,43.8726],[3.4216,43.8723],[3.4323,43.8629],[3.0926,43.8737],[2.8829,43.9065],[2.7387,43.8934],[2.6601,43.8999],[2.5355,43.9655],[2.162,44.0507],[1.9653,44.0507],[1.6579,43.9954],[1.6494,44.0117],[1.6713,44.0107],[1.6718,44.0164],[1.679,44.0211],[1.6913,44.0226],[1.6957,44.0356],[1.7042,44.0444],[1.6919,44.0628],[1.675,44.0667],[1.6717,44.0595],[1.6639,44.0671],[1.6615,44.0714],[1.6701,44.0888],[1.6531,44.0965],[1.6526,44.1079],[1.6587,44.1166],[1.6878,44.1115],[1.7057,44.1172],[1.7229,44.1147],[1.7221,44.1184],[1.7328,44.1124],[1.7469,44.1164],[1.7506,44.1091],[1.7642,44.1077],[1.7697,44.0984],[1.778,44.0968],[1.7928,44.0998],[1.7872,44.1094],[1.801,44.1169],[1.8057,44.1266],[1.8253,44.108],[1.8354,44.1055],[1.8405,44.1142],[1.8289,44.1332],[1.8394,44.1446],[1.8484,44.135],[1.8622,44.1439],[1.8844,44.1373],[1.893,44.1429],[1.8993,44.1321],[1.9068,44.1302],[1.9193,44.1416],[1.8942,44.1546],[1.9075,44.1631],[1.9191,44.1631],[1.9441,44.1464],[1.9517,44.1511],[1.9718,44.143],[1.9797,44.1473],[1.9845,44.1567],[1.9844,44.1493],[1.9902,44.1495]]],[[[1.5391,43.9552],[1.5353,43.9597],[1.5441,43.9569],[1.5391,43.9552]]],[[[1.5494,43.9587],[1.5496,43.9624],[1.5667,43.9653],[1.5681,43.965],[1.5494,43.9587]]],[[[1.6265,43.9848],[1.6305,43.9903],[1.6371,43.9947],[1.6464,43.9917],[1.6579,43.9954],[1.6265,43.9848]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C9","Couleur":9,"name":"20_FR","LONG":3734793,"LAT":2671895,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":47.0664,"Long":2.4599},"geometry":{"type":"MultiPolygon","coordinates":[[[[1.3267,47.1862],[1.2944,47.2374],[1.2801,47.2481],[1.2762,47.2568],[1.2659,47.2558],[1.2598,47.2648],[1.2434,47.2738],[1.2418,47.2877],[1.2233,47.2942],[1.1949,47.2832],[1.1741,47.2886],[1.1621,47.2722],[1.1274,47.2976],[1.1224,47.2932],[1.1081,47.2984],[1.0988,47.3124],[1.0949,47.3285],[1.1063,47.3311],[1.1136,47.3481],[1.1228,47.3536],[1.116,47.3634],[1.1044,47.3701],[1.1212,47.3823],[1.1193,47.3871],[1.1231,47.3922],[1.1138,47.3962],[1.1024,47.4179],[1.085,47.4297],[1.1054,47.4316],[1.1142,47.4283],[1.1334,47.449],[1.126,47.4514],[1.1129,47.4659],[1.0871,47.4618],[1.0855,47.4644],[1.0943,47.4692],[1.0787,47.4943],[1.066,47.5051],[1.0736,47.5118],[1.0673,47.5156],[1.0701,47.5225],[1.0564,47.5236],[1.0549,47.5285],[1.045,47.5316],[1.0469,47.5389],[1.0777,47.5625],[1.077,47.5724],[1.0636,47.5661],[1.0593,47.5779],[1.0323,47.6082],[1.0126,47.6039],[1.0037,47.5844],[0.997,47.584],[0.987,47.5906],[0.9846,47.6095],[0.9918,47.62],[0.971,47.6219],[0.9653,47.6296],[0.9536,47.6252],[0.9196,47.6328],[0.9047,47.6147],[0.8923,47.6116],[0.899,47.6092],[0.8992,47.6037],[0.8613,47.5989],[0.8504,47.6241],[0.8598,47.6266],[0.8628,47.6325],[0.844,47.6454],[0.8532,47.6616],[0.8596,47.6652],[0.8587,47.6784],[0.867,47.6904],[0.8342,47.6769],[0.8118,47.6822],[0.8061,47.679],[0.7885,47.6801],[0.7388,47.696],[0.7197,47.6904],[0.7121,47.6818],[0.6782,47.6964],[0.6481,47.6841],[0.6438,47.6877],[0.654,47.6984],[0.6435,47.7001],[0.6396,47.7096],[0.6273,47.7078],[0.6144,47.6942],[0.6047,47.686],[0.5962,47.688],[0.5918,47.7043],[0.5805,47.7128],[0.5944,47.7232],[0.6089,47.7253],[0.6247,47.7508],[0.6459,47.753],[0.6768,47.7695],[0.6943,47.7637],[0.7032,47.7676],[0.6997,47.7747],[0.6896,47.7798],[0.6916,47.7837],[0.7008,47.7897],[0.7119,47.7871],[0.7147,47.7937],[0.7195,47.793],[0.7404,47.8119],[0.7389,47.8167],[0.746,47.8275],[0.759,47.8336],[0.7684,47.8311],[0.7744,47.8391],[0.7738,47.8506],[0.7592,47.8592],[0.7645,47.8669],[0.7572,47.8853],[0.76,47.8994],[0.7901,47.912],[0.7945,47.9002],[0.8118,47.8885],[0.8174,47.8931],[0.8129,47.9004],[0.8148,47.9043],[0.8078,47.9082],[0.8161,47.913],[0.8088,47.9167],[0.8138,47.932],[0.8486,47.9415],[0.8377,47.9685],[0.828,47.9726],[0.8195,47.986],[0.8321,47.9964],[0.8317,48.0064],[0.8407,48.0188],[0.8416,48.0302],[0.8356,48.0345],[0.8181,48.0304],[0.8052,48.0386],[0.7975,48.0372],[0.7939,48.0485],[0.7986,48.064],[0.794,48.0694],[0.843,48.0726],[0.848,48.0946],[0.8387,48.0941],[0.8407,48.0896],[0.8378,48.0889],[0.8124,48.0957],[0.8412,48.1031],[0.8551,48.1223],[0.8504,48.1331],[0.9138,48.1351],[0.9166,48.1389],[0.9096,48.1435],[0.9113,48.1491],[0.8869,48.1618],[0.86,48.1675],[0.8376,48.1665],[0.8107,48.1858],[0.7957,48.1883],[0.7976,48.1945],[0.8087,48.198],[0.8061,48.2054],[0.8297,48.2105],[0.8303,48.2138],[0.8019,48.2448],[0.786,48.2713],[0.7962,48.2869],[0.8071,48.2897],[0.7938,48.2928],[0.7784,48.3031],[0.7559,48.3],[0.7697,48.3138],[0.7689,48.322],[0.7905,48.3426],[0.8184,48.3494],[0.8278,48.3423],[0.8418,48.3463],[0.8436,48.3511],[0.84,48.3529],[0.8591,48.3498],[0.8718,48.3594],[0.8753,48.3555],[0.8837,48.3567],[0.9007,48.3737],[0.9073,48.3701],[0.9161,48.3742],[0.9147,48.3788],[0.9182,48.3773],[0.9265,48.3841],[0.9294,48.3908],[0.9496,48.3994],[0.9438,48.41],[0.9453,48.4181],[0.9764,48.4388],[0.9744,48.4433],[0.9566,48.4439],[0.9394,48.4604],[0.9357,48.4755],[0.9558,48.4819],[0.9554,48.4926],[0.9415,48.4987],[0.9542,48.504],[0.9677,48.5239],[0.9257,48.5354],[0.923,48.5386],[0.9393,48.5492],[0.9257,48.5597],[0.893,48.5719],[0.8689,48.5727],[0.8508,48.5825],[0.8468,48.6095],[0.8196,48.6099],[0.8175,48.616],[0.8317,48.6334],[0.8221,48.6355],[0.825,48.6488],[0.8179,48.6593],[0.8095,48.663],[0.8148,48.6702],[0.8277,48.6807],[0.8412,48.6786],[0.8635,48.6875],[0.8605,48.6926],[0.8685,48.699],[0.8669,48.7038],[0.8726,48.7133],[0.8907,48.7202],[0.9001,48.7105],[0.9195,48.7123],[0.9212,48.7092],[0.9498,48.7147],[0.9611,48.7255],[0.9783,48.731],[0.991,48.7257],[1.0159,48.7282],[1.0209,48.7348],[1.0336,48.7284],[1.0378,48.7321],[1.0339,48.7342],[1.0348,48.7404],[1.0451,48.7436],[1.063,48.759],[1.0683,48.7574],[1.0705,48.7485],[1.0865,48.7572],[1.0958,48.7489],[1.1137,48.7463],[1.1129,48.7518],[1.1191,48.7556],[1.1165,48.7647],[1.1272,48.7655],[1.1205,48.7706],[1.1176,48.7841],[1.1214,48.7892],[1.1521,48.7857],[1.1488,48.7775],[1.1576,48.7695],[1.1876,48.7729],[1.2229,48.7582],[1.2327,48.7634],[1.2245,48.7635],[1.2226,48.7673],[1.246,48.7697],[1.2567,48.7655],[1.2545,48.7594],[1.2576,48.7578],[1.2701,48.7582],[1.2704,48.7627],[1.2975,48.7682],[1.3298,48.761],[1.3538,48.7792],[1.3648,48.7836],[1.3748,48.7815],[1.3746,48.7958],[1.3561,48.8168],[1.3623,48.8342],[1.3902,48.8463],[1.404,48.8603],[1.4408,48.8648],[1.4646,48.8764],[1.4715,48.8972],[1.4614,48.8996],[1.4591,48.9149],[1.4479,48.9246],[1.4597,48.9278],[1.4613,48.9375],[1.4803,48.9405],[1.4913,48.9362],[1.5015,48.9411],[1.5115,48.9354],[1.5073,48.9281],[1.5113,48.9231],[1.5384,48.9224],[1.5451,48.913],[1.5389,48.9053],[1.5534,48.8934],[1.5637,48.8906],[1.5457,48.8706],[1.5588,48.8642],[1.5611,48.8677],[1.584,48.8604],[1.5773,48.8444],[1.598,48.8385],[1.5792,48.8297],[1.5908,48.8146],[1.5833,48.8107],[1.5777,48.7958],[1.5805,48.7939],[1.5757,48.7913],[1.5768,48.7829],[1.5876,48.7736],[1.5823,48.7621],[1.6086,48.7604],[1.6264,48.748],[1.6202,48.736],[1.6153,48.7356],[1.5875,48.71],[1.5949,48.7093],[1.5774,48.7027],[1.5849,48.6991],[1.5822,48.696],[1.6115,48.6891],[1.6049,48.6752],[1.6077,48.6723],[1.6015,48.6685],[1.6027,48.6631],[1.621,48.6497],[1.6432,48.6513],[1.6388,48.6449],[1.6516,48.6381],[1.6495,48.6323],[1.6569,48.6295],[1.6556,48.6225],[1.6663,48.6137],[1.6859,48.6199],[1.6902,48.6169],[1.6835,48.6159],[1.6867,48.6112],[1.715,48.6141],[1.7182,48.6055],[1.702,48.585],[1.71,48.5815],[1.7092,48.578],[1.7269,48.5728],[1.7435,48.5727],[1.7465,48.5761],[1.7589,48.5731],[1.765,48.5693],[1.7632,48.5642],[1.7681,48.5589],[1.7782,48.5526],[1.7872,48.5537],[1.7759,48.528],[1.7767,48.51],[1.7906,48.4972],[1.7857,48.4902],[1.7963,48.4842],[1.7916,48.4813],[1.8028,48.4729],[1.8016,48.466],[1.8354,48.4672],[1.8452,48.4465],[1.86,48.4462],[1.8711,48.4398],[1.9035,48.4385],[1.9069,48.4456],[1.921,48.4483],[1.9221,48.4576],[1.9291,48.457],[1.9334,48.4418],[1.9429,48.441],[1.9363,48.4346],[1.9398,48.42],[1.9327,48.4203],[1.9259,48.4127],[1.9324,48.4108],[1.9304,48.4039],[1.9519,48.4061],[1.9778,48.402],[1.9665,48.3811],[1.9796,48.3783],[1.9802,48.3706],[1.9884,48.3632],[1.9735,48.3556],[1.9753,48.3451],[1.9689,48.3411],[1.9823,48.3283],[1.9747,48.3234],[1.9802,48.3191],[1.979,48.3128],[1.9735,48.3149],[1.9592,48.3069],[1.9652,48.2953],[1.982,48.2955],[1.9732,48.2882],[1.9941,48.2866],[2.0112,48.2849],[2.0262,48.2891],[2.0409,48.2845],[2.0527,48.2955],[2.0858,48.2941],[2.1062,48.3076],[2.1137,48.3072],[2.1106,48.2969],[2.1637,48.2984],[2.161,48.3044],[2.1558,48.3044],[2.1527,48.3159],[2.1809,48.3118],[2.1849,48.3216],[2.1821,48.3241],[2.1881,48.3322],[2.2071,48.3449],[2.2163,48.3341],[2.224,48.3362],[2.2319,48.3277],[2.246,48.3313],[2.238,48.3164],[2.2517,48.3164],[2.2451,48.2984],[2.264,48.3079],[2.2671,48.3147],[2.2957,48.3082],[2.3172,48.3316],[2.3293,48.3328],[2.3282,48.3265],[2.3353,48.3269],[2.3414,48.3162],[2.3481,48.3164],[2.3587,48.3086],[2.3972,48.3139],[2.4026,48.3207],[2.4232,48.2948],[2.4178,48.2791],[2.4228,48.2611],[2.4328,48.2549],[2.4465,48.255],[2.4505,48.2501],[2.4691,48.2553],[2.4787,48.2493],[2.4763,48.2447],[2.4842,48.239],[2.5062,48.2385],[2.5072,48.226],[2.5183,48.2281],[2.5134,48.224],[2.5141,48.2144],[2.5174,48.2144],[2.5231,48.1954],[2.5133,48.1928],[2.5179,48.1897],[2.5076,48.1794],[2.5152,48.1746],[2.5125,48.1708],[2.5166,48.1664],[2.5063,48.1564],[2.4832,48.1645],[2.4738,48.1541],[2.4746,48.1493],[2.4677,48.1481],[2.4604,48.1372],[2.4442,48.1315],[2.4428,48.1246],[2.4545,48.1225],[2.4644,48.1289],[2.4763,48.1295],[2.5222,48.1252],[2.5375,48.1405],[2.5591,48.1416],[2.5705,48.1408],[2.5749,48.1313],[2.6033,48.1316],[2.6397,48.139],[2.6647,48.1205],[2.6741,48.1256],[2.7028,48.1244],[2.7204,48.1368],[2.7552,48.1457],[2.7536,48.1532],[2.7364,48.1663],[2.7554,48.1602],[2.7669,48.1648],[2.7714,48.1618],[2.7789,48.1674],[2.7919,48.1648],[2.7946,48.1686],[2.8112,48.1642],[2.7983,48.152],[2.801,48.1319],[2.8209,48.1297],[2.8496,48.1412],[2.8668,48.156],[2.9363,48.1634],[2.9531,48.1649],[2.9636,48.1529],[2.9802,48.1496],[2.9806,48.1538],[2.9901,48.1526],[2.9948,48.1416],[3.01,48.1456],[3.0294,48.1332],[3.0159,48.1157],[3.0352,48.1157],[3.0383,48.0994],[3.0503,48.0911],[3.0505,48.0723],[3.0609,48.0643],[3.0953,48.054],[3.0897,48.0491],[3.0952,48.0403],[3.1242,48.0311],[3.12,48.026],[3.1141,48.0274],[3.0998,48.0208],[3.1047,48.0132],[3.1155,48.0128],[3.1244,48.0068],[3.1207,48.0028],[3.1248,47.9917],[3.1205,47.9863],[3.1289,47.9835],[3.1282,47.9707],[3.1098,47.9623],[3.1114,47.9579],[3.1053,47.9469],[3.0985,47.9487],[3.0845,47.9427],[3.0777,47.9313],[3.0512,47.9242],[3.0504,47.9109],[3.0099,47.9056],[3.0166,47.8987],[3.0072,47.8953],[3.0119,47.874],[2.9949,47.8674],[3.0233,47.861],[3.0314,47.8509],[3.0296,47.8352],[3.013,47.8339],[3.0145,47.8221],[3.0216,47.8181],[3.0155,47.8135],[3.0243,47.8131],[3.0282,47.8015],[3.0251,47.7875],[2.9874,47.7857],[2.9554,47.7756],[2.9491,47.7659],[2.9306,47.7623],[2.9097,47.7693],[2.8967,47.7644],[2.8705,47.7649],[2.8523,47.7574],[2.8591,47.7498],[2.8504,47.7329],[2.853,47.728],[2.8486,47.7258],[2.8525,47.7216],[2.849,47.7169],[2.8611,47.7102],[2.8787,47.7201],[2.8846,47.7137],[2.8794,47.7038],[2.9266,47.6821],[2.9181,47.6698],[2.9281,47.6582],[2.9416,47.6575],[2.9542,47.6457],[2.9361,47.6364],[2.9323,47.627],[2.9449,47.6086],[2.9365,47.5997],[2.9626,47.5854],[2.9628,47.5762],[2.9746,47.5735],[2.9765,47.5694],[2.9899,47.5687],[3.0221,47.5563],[3.0353,47.5642],[3.0605,47.5694],[3.0805,47.5853],[3.1016,47.588],[3.1238,47.5763],[3.1163,47.5693],[3.123,47.5394],[3.1342,47.5426],[3.15,47.5285],[3.1622,47.5243],[3.1652,47.5175],[3.1816,47.5184],[3.186,47.5254],[3.1914,47.5206],[3.2045,47.5232],[3.2256,47.5043],[3.2361,47.4884],[3.2752,47.4909],[3.2852,47.5039],[3.2963,47.492],[3.307,47.4945],[3.3262,47.4834],[3.3402,47.4808],[3.3381,47.4704],[3.3465,47.4697],[3.3459,47.4787],[3.356,47.4791],[3.3703,47.4882],[3.3799,47.4864],[3.3908,47.4976],[3.3911,47.5091],[3.4291,47.5064],[3.4468,47.5116],[3.4501,47.5002],[3.4616,47.5015],[3.4883,47.4938],[3.4951,47.5214],[3.492,47.56],[3.4984,47.5609],[3.5108,47.5505],[3.5137,47.5276],[3.5387,47.5164],[3.5526,47.5025],[3.5805,47.4979],[3.5757,47.4832],[3.5799,47.4787],[3.5794,47.4659],[3.5882,47.4623],[3.5871,47.4562],[3.5955,47.4574],[3.6003,47.4654],[3.6114,47.4667],[3.6176,47.4647],[3.616,47.4574],[3.6216,47.4556],[3.6342,47.4561],[3.6671,47.4461],[3.6736,47.4502],[3.6778,47.4448],[3.674,47.4335],[3.7017,47.427],[3.7187,47.4059],[3.7173,47.4027],[3.7266,47.3982],[3.741,47.3966],[3.7689,47.401],[3.7746,47.4062],[3.7843,47.4052],[3.7856,47.3903],[3.8016,47.3896],[3.8161,47.3788],[3.8281,47.382],[3.8274,47.3894],[3.8312,47.3926],[3.8208,47.4017],[3.8305,47.408],[3.8353,47.406],[3.8346,47.4015],[3.8475,47.4123],[3.8513,47.4356],[3.8799,47.4298],[3.8816,47.4232],[3.8918,47.4195],[3.8938,47.4138],[3.877,47.3975],[3.8654,47.3978],[3.8595,47.3927],[3.8599,47.3874],[3.8697,47.3805],[3.8682,47.373],[3.8722,47.3659],[3.8867,47.3646],[3.9088,47.3821],[3.9442,47.3803],[3.9491,47.3944],[3.9605,47.3858],[3.9732,47.3728],[3.9618,47.3668],[3.9675,47.3636],[3.9733,47.3318],[4.0028,47.3106],[4.0088,47.3149],[4.0273,47.3135],[4.0285,47.3247],[4.0419,47.329],[4.0451,47.3404],[4.1061,47.3393],[4.1062,47.3355],[4.113,47.3343],[4.13,47.3539],[4.1379,47.3573],[4.1433,47.3543],[4.1249,47.3359],[4.1241,47.3278],[4.1304,47.3206],[4.1276,47.316],[4.1143,47.3082],[4.1238,47.3037],[4.1339,47.3065],[4.1146,47.2926],[4.1166,47.2762],[4.125,47.2736],[4.1203,47.2686],[4.1261,47.2591],[4.1259,47.2473],[4.1346,47.2395],[4.179,47.2544],[4.1926,47.2343],[4.2212,47.2196],[4.2213,47.2138],[4.2287,47.2082],[4.2258,47.2073],[4.2309,47.1954],[4.2102,47.1798],[4.2133,47.1759],[4.2083,47.1641],[4.2098,47.1554],[4.2004,47.1542],[4.1959,47.1476],[4.1859,47.1527],[4.1819,47.1505],[4.1445,47.1429],[4.1157,47.146],[4.1107,47.1424],[4.1163,47.1384],[4.1169,47.1319],[4.1071,47.1299],[4.116,47.1233],[4.1102,47.1182],[4.094,47.1288],[4.0911,47.1166],[4.0607,47.1212],[4.051,47.113],[4.048,47.1094],[4.0532,47.1038],[4.0534,47.095],[4.039,47.0859],[4.0384,47.0811],[4.0734,47.0559],[4.0561,47.0371],[4.0616,47.0233],[4.0557,47.0129],[4.0431,47.0088],[4.0316,46.9984],[3.996,46.9867],[3.9938,46.9787],[3.9973,46.9742],[4.0164,46.9729],[4.0315,46.9848],[4.0394,46.985],[4.0408,46.9743],[4.0556,46.9567],[4.0407,46.9504],[4.0394,46.9464],[4.0479,46.932],[4.0421,46.9329],[4.0356,46.9214],[4.0454,46.8998],[4.0665,46.8979],[4.0942,46.8742],[4.1003,46.864],[4.1009,46.8591],[4.0427,46.8348],[4.0579,46.8216],[4.0627,46.7889],[4.0588,46.7814],[4.0479,46.7789],[4.0338,46.7877],[4.0191,46.7762],[3.9941,46.7786],[3.9732,46.7674],[3.9667,46.7689],[3.9537,46.7543],[3.9288,46.7514],[3.9342,46.743],[3.928,46.7397],[3.9126,46.7411],[3.9126,46.7342],[3.8935,46.7327],[3.8869,46.7273],[3.8764,46.7323],[3.8724,46.7257],[3.8451,46.7226],[3.8448,46.7173],[3.8409,46.7179],[3.8289,46.7045],[3.7977,46.7016],[3.7889,46.7207],[3.7773,46.7292],[3.7837,46.7361],[3.739,46.7522],[3.6597,46.7375],[3.6478,46.7426],[3.6408,46.7391],[3.6294,46.7495],[3.6227,46.7397],[3.6376,46.7246],[3.6376,46.7075],[3.6509,46.705],[3.6555,46.6878],[3.6707,46.6837],[3.6697,46.6727],[3.6976,46.6597],[3.7089,46.6358],[3.724,46.6264],[3.7129,46.6103],[3.7374,46.6012],[3.734,46.5947],[3.7433,46.567],[3.7317,46.549],[3.7422,46.5394],[3.7547,46.5361],[3.7722,46.5386],[3.7807,46.5284],[3.7937,46.5277],[3.8031,46.5196],[3.8383,46.5315],[3.8464,46.5246],[3.8408,46.515],[3.8639,46.5125],[3.8604,46.4951],[3.8651,46.4897],[3.895,46.4807],[3.9094,46.4952],[3.9502,46.4923],[3.958,46.4905],[3.9522,46.4816],[3.9551,46.4769],[3.9752,46.4795],[4.0009,46.4623],[3.9973,46.4509],[4.0057,46.4429],[3.9887,46.437],[3.996,46.4264],[3.985,46.4206],[3.9886,46.4087],[3.9772,46.3993],[3.9838,46.3789],[3.9915,46.3709],[3.9848,46.3296],[4.0053,46.3274],[3.9886,46.3225],[3.9877,46.3149],[3.9713,46.3215],[3.9463,46.3214],[3.9494,46.3141],[3.9455,46.3005],[3.8973,46.2925],[3.8913,46.2852],[3.8995,46.2759],[3.8777,46.2756],[3.8676,46.2626],[3.8046,46.2558],[3.8068,46.2433],[3.8027,46.2385],[3.782,46.2439],[3.7683,46.2389],[3.7722,46.2284],[3.7851,46.2209],[3.7958,46.207],[3.7883,46.2017],[3.7891,46.1858],[3.8097,46.1631],[3.7898,46.1549],[3.7918,46.1444],[3.8017,46.1305],[3.7935,46.1122],[3.8037,46.1095],[3.8213,46.0902],[3.8151,46.0855],[3.8199,46.0797],[3.8056,46.0531],[3.8131,46.0392],[3.8164,46.0174],[3.8221,46.0133],[3.826,46.0004],[3.8321,45.9997],[3.8229,45.9929],[3.8237,45.9873],[3.7984,45.9836],[3.7882,45.9733],[3.7766,45.9717],[3.7744,45.9764],[3.7651,45.9762],[3.7558,45.9827],[3.754,45.9719],[3.7421,45.966],[3.7164,45.9739],[3.7018,45.9699],[3.7059,45.9573],[3.6939,45.9494],[3.6939,45.931],[3.7239,45.9216],[3.7302,45.9122],[3.7398,45.9089],[3.7544,45.886],[3.7454,45.884],[3.7473,45.8818],[3.7392,45.8727],[3.7172,45.8683],[3.7207,45.8607],[3.7285,45.8627],[3.7286,45.8557],[3.7191,45.8511],[3.726,45.8337],[3.7243,45.8239],[3.7176,45.8194],[3.7217,45.8139],[3.7113,45.7994],[3.6915,45.7905],[3.7008,45.7815],[3.7106,45.7832],[3.7317,45.7745],[3.7388,45.7668],[3.7271,45.7556],[3.746,45.7412],[3.7512,45.747],[3.758,45.7465],[3.7676,45.7288],[3.7809,45.7247],[3.7769,45.7191],[3.7827,45.7067],[3.7758,45.6996],[3.777,45.6911],[3.8178,45.6465],[3.8236,45.632],[3.8587,45.6247],[3.8612,45.6147],[3.8816,45.6029],[3.9088,45.5972],[3.9098,45.5929],[3.9354,45.5778],[3.9446,45.5628],[3.9545,45.5558],[3.9458,45.5452],[3.9613,45.5065],[3.9657,45.5005],[3.9845,45.4952],[3.9856,45.4862],[3.9668,45.472],[3.9732,45.46],[3.9691,45.4518],[3.9751,45.4483],[3.9644,45.4463],[3.9625,45.4352],[3.9204,45.4247],[3.8985,45.4098],[3.8996,45.4061],[3.8892,45.3936],[3.8943,45.3842],[3.8909,45.3707],[3.8974,45.3571],[3.8921,45.3541],[3.8706,45.3556],[3.8542,45.3599],[3.8465,45.3703],[3.8379,45.3657],[3.8363,45.3831],[3.8223,45.3801],[3.8202,45.3854],[3.8052,45.392],[3.7914,45.3848],[3.7855,45.3698],[3.7904,45.3637],[3.7899,45.3542],[3.78,45.3548],[3.776,45.3488],[3.7572,45.3573],[3.7559,45.3539],[3.7416,45.3528],[3.7302,45.3614],[3.6998,45.3595],[3.6971,45.3654],[3.7066,45.3694],[3.7078,45.3753],[3.6885,45.3734],[3.6903,45.378],[3.6805,45.3839],[3.6744,45.3805],[3.6702,45.3835],[3.6631,45.3615],[3.6456,45.3594],[3.6444,45.3509],[3.6279,45.3391],[3.6191,45.3377],[3.587,45.3612],[3.5848,45.3681],[3.588,45.3753],[3.5703,45.4021],[3.5568,45.3916],[3.5527,45.3976],[3.5318,45.4014],[3.5299,45.3985],[3.5245,45.406],[3.5218,45.4021],[3.5062,45.4117],[3.5013,45.4276],[3.4795,45.4209],[3.4765,45.4153],[3.4693,45.4133],[3.4636,45.4019],[3.4223,45.399],[3.4056,45.4034],[3.4028,45.4],[3.3904,45.4035],[3.38,45.4001],[3.356,45.4227],[3.3409,45.4214],[3.3431,45.4162],[3.3341,45.4079],[3.334,45.3982],[3.3272,45.3971],[3.3236,45.4068],[3.3108,45.4182],[3.2987,45.4203],[3.29,45.4007],[3.2535,45.3887],[3.2362,45.3946],[3.2216,45.3814],[3.2187,45.3695],[3.2115,45.3672],[3.209,45.3713],[3.2021,45.371],[3.1926,45.367],[3.1945,45.3627],[3.1812,45.3644],[3.175,45.3556],[3.1806,45.3512],[3.1035,45.3544],[3.0906,45.3468],[3.0871,45.3386],[3.0714,45.3375],[3.0606,45.3308],[3.0667,45.3198],[3.0533,45.3035],[3.0218,45.2952],[3.0183,45.2871],[2.9992,45.2906],[2.9692,45.3071],[2.9486,45.3091],[2.926,45.3423],[2.9204,45.3622],[2.9227,45.3681],[2.9142,45.3662],[2.9008,45.3708],[2.8994,45.377],[2.8861,45.383],[2.8747,45.381],[2.8735,45.3754],[2.8676,45.3762],[2.8577,45.3822],[2.8524,45.3923],[2.8292,45.39],[2.8219,45.3997],[2.8137,45.4014],[2.8026,45.3927],[2.7858,45.3894],[2.7852,45.3846],[2.7615,45.3859],[2.7422,45.3932],[2.7145,45.3815],[2.7013,45.3914],[2.7033,45.399],[2.6942,45.3983],[2.69,45.4053],[2.6809,45.4074],[2.6799,45.4227],[2.6897,45.4302],[2.6885,45.4377],[2.6778,45.4399],[2.662,45.4342],[2.6477,45.4437],[2.6245,45.4439],[2.6235,45.4663],[2.6179,45.47],[2.6166,45.463],[2.6033,45.4498],[2.5867,45.4497],[2.5642,45.4655],[2.5362,45.4569],[2.544,45.479],[2.5197,45.4832],[2.5084,45.4785],[2.5139,45.4928],[2.5079,45.5044],[2.5204,45.521],[2.5119,45.5252],[2.5191,45.5302],[2.5148,45.5392],[2.5171,45.552],[2.5004,45.5536],[2.49,45.5613],[2.4914,45.568],[2.4814,45.571],[2.4612,45.5964],[2.4802,45.6112],[2.4834,45.6393],[2.4885,45.6426],[2.4929,45.6376],[2.4959,45.641],[2.5168,45.6391],[2.5281,45.6586],[2.5188,45.6594],[2.5132,45.6679],[2.5129,45.6713],[2.5287,45.6822],[2.5235,45.6868],[2.5263,45.6919],[2.519,45.6978],[2.5233,45.711],[2.5156,45.7129],[2.5088,45.7241],[2.4921,45.7377],[2.4818,45.7357],[2.4713,45.7276],[2.4726,45.719],[2.4641,45.7184],[2.4545,45.7081],[2.4436,45.7076],[2.4359,45.6993],[2.4105,45.7095],[2.3826,45.7078],[2.3859,45.8066],[2.3291,45.9639],[2.2483,46.0338],[2.2067,46.0863],[2.1827,46.1256],[2.1587,46.1693],[2.115,46.2174],[2.0735,46.2654],[2.0473,46.3703],[1.8113,46.5363],[1.6278,46.615],[1.453,46.6936],[1.2695,46.7548],[1.0226,46.8456],[1.0168,46.8559],[1.0224,46.8633],[1.0342,46.9083],[1.0361,46.9404],[1.064,46.9558],[1.0599,46.972],[1.0505,46.9806],[1.0559,46.9826],[1.0564,46.9964],[1.0736,47.0027],[1.0699,47.0063],[1.0841,47.021],[1.1103,47.0292],[1.1156,47.0244],[1.1323,47.0277],[1.174,47.0413],[1.183,47.0405],[1.1988,47.028],[1.2231,47.0242],[1.2322,47.0141],[1.2537,47.0222],[1.2772,47.0398],[1.2695,47.0496],[1.2857,47.0577],[1.2938,47.0723],[1.3122,47.0721],[1.317,47.085],[1.31,47.0951],[1.3181,47.1041],[1.3431,47.1006],[1.3557,47.1085],[1.3657,47.1227],[1.3637,47.1351],[1.3512,47.1524],[1.3465,47.1691],[1.3267,47.1862]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_CO","Couleur":0,"name":"102_FR","LONG":4247004,"LAT":2116676,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":42.152,"Long":9.1083},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.4023,41.8587],[9.4023,41.8587],[9.4023,41.8566],[9.4022,41.8551],[9.4022,41.8546],[9.4022,41.8451],[9.4022,41.8412],[9.402,41.8144],[9.402,41.813],[9.4017,41.7737],[9.4017,41.7735],[9.4014,41.7177],[9.392,41.7053],[9.3774,41.686],[9.3727,41.6797],[9.3724,41.6793],[9.3757,41.6743],[9.379,41.6694],[9.3801,41.6678],[9.382,41.665],[9.3852,41.6603],[9.387,41.6575],[9.3872,41.6573],[9.3886,41.6552],[9.3849,41.653],[9.3829,41.6518],[9.3813,41.651],[9.3715,41.6453],[9.3622,41.6398],[9.3615,41.6394],[9.3463,41.6306],[9.3462,41.6305],[9.3262,41.6189],[9.3253,41.6184],[9.3198,41.6152],[9.3166,41.6173],[9.316,41.6177],[9.3046,41.6254],[9.2967,41.6109],[9.2965,41.6104],[9.2858,41.5908],[9.3181,41.6049],[9.319,41.6047],[9.328,41.6029],[9.3309,41.6023],[9.3356,41.6014],[9.336,41.6013],[9.3644,41.5958],[9.3616,41.591],[9.3614,41.5905],[9.3589,41.5863],[9.3586,41.5857],[9.3583,41.5853],[9.3583,41.5852],[9.3538,41.5775],[9.35,41.5709],[9.3497,41.5704],[9.3442,41.5608],[9.3432,41.5591],[9.3418,41.5586],[9.3418,41.5585],[9.3311,41.5541],[9.309,41.545],[9.3083,41.5447],[9.2967,41.5399],[9.2962,41.5397],[9.2773,41.532],[9.2772,41.5319],[9.2731,41.5302],[9.2753,41.5228],[9.2754,41.5227],[9.2795,41.5092],[9.2796,41.5089],[9.2825,41.4995],[9.2838,41.495],[9.2852,41.4907],[9.2865,41.4864],[9.2873,41.4838],[9.2845,41.4809],[9.28,41.4762],[9.2781,41.4743],[9.2768,41.4729],[9.2751,41.4711],[9.2726,41.4685],[9.2715,41.4674],[9.2689,41.4646],[9.2279,41.422],[9.2254,41.4194],[9.2205,41.4142],[9.2194,41.4131],[9.218,41.4116],[9.216,41.4095],[9.2362,41.4157],[9.2371,41.416],[9.2389,41.4166],[9.2391,41.4166],[9.2644,41.4244],[9.265,41.4246],[9.2656,41.4248],[9.2655,41.4246],[9.2639,41.4227],[9.2639,41.4227],[9.2618,41.4201],[9.2616,41.4199],[9.2597,41.4176],[9.2546,41.4115],[9.2536,41.4103],[9.2497,41.4056],[9.2496,41.4055],[9.246,41.4011],[9.2456,41.4006],[9.2222,41.3725],[9.2186,41.3681],[9.218,41.368],[9.2167,41.368],[9.2158,41.3679],[9.2122,41.3677],[9.199,41.3669],[9.1967,41.3668],[9.1959,41.3667],[9.1957,41.3667],[9.1923,41.3665],[9.1869,41.3662],[9.1841,41.366],[9.1807,41.3658],[9.1805,41.3658],[9.1796,41.3671],[9.1789,41.3682],[9.1782,41.3692],[9.1672,41.3856],[9.1646,41.3896],[9.1646,41.3896],[9.1606,41.3898],[9.1602,41.3898],[9.1562,41.39],[9.1548,41.3901],[9.1543,41.3901],[9.1509,41.3903],[9.1495,41.3903],[9.1379,41.3909],[9.1341,41.3911],[9.1312,41.3912],[9.101,41.3927],[9.1001,41.3927],[9.0961,41.3929],[9.0947,41.393],[9.0945,41.393],[9.0947,41.3933],[9.0952,41.3941],[9.1021,41.4062],[9.118,41.434],[9.1203,41.4379],[9.1218,41.4405],[9.1224,41.4415],[9.116,41.4414],[9.1078,41.4414],[9.1051,41.4414],[9.0792,41.4411],[9.076,41.4425],[9.0742,41.4433],[9.074,41.4434],[9.0739,41.4434],[9.0729,41.4438],[9.0725,41.444],[9.0723,41.4441],[9.0718,41.4443],[9.0712,41.4446],[9.0702,41.445],[9.07,41.4451],[9.0695,41.4453],[9.0689,41.4456],[9.0421,41.4571],[9.042,41.4571],[9.0384,41.4587],[9.0278,41.4632],[9.0248,41.4645],[9.0196,41.4667],[9.0181,41.4674],[9.009,41.4713],[8.9891,41.4798],[8.9887,41.48],[8.9645,41.4904],[8.9612,41.4918],[8.9601,41.4922],[8.9594,41.4926],[8.9483,41.4973],[8.8511,41.539],[8.8509,41.5391],[8.8467,41.5409],[8.8434,41.5424],[8.8318,41.5473],[8.8316,41.5474],[8.816,41.5541],[8.8154,41.5544],[8.8093,41.557],[8.8021,41.5917],[8.795,41.6255],[8.8106,41.6341],[8.8162,41.6372],[8.9135,41.691],[8.9135,41.691],[8.8836,41.6935],[8.8835,41.6935],[8.8753,41.6942],[8.8736,41.6943],[8.8514,41.6962],[8.8495,41.6963],[8.8434,41.6968],[8.8428,41.6973],[8.8339,41.7028],[8.8303,41.7051],[8.8216,41.7106],[8.8195,41.7119],[8.7844,41.734],[8.7842,41.7341],[8.7725,41.7415],[8.7706,41.741],[8.7695,41.7406],[8.7694,41.7406],[8.7687,41.7404],[8.7681,41.7402],[8.7578,41.7371],[8.7533,41.7357],[8.751,41.735],[8.7505,41.7349],[8.7415,41.7322],[8.7413,41.7321],[8.7304,41.7288],[8.7261,41.7275],[8.7252,41.7272],[8.7072,41.7218],[8.7075,41.7355],[8.7075,41.7358],[8.7075,41.7363],[8.7075,41.7363],[8.7079,41.7574],[8.7079,41.7575],[8.7086,41.7963],[8.7198,41.799],[8.721,41.7993],[8.7388,41.8035],[8.7409,41.804],[8.7414,41.8041],[8.7414,41.8041],[8.762,41.809],[8.7633,41.8093],[8.7637,41.8094],[8.7653,41.8098],[8.7676,41.8104],[8.7713,41.8112],[8.7731,41.8158],[8.7772,41.8262],[8.7801,41.8336],[8.7805,41.8346],[8.7864,41.8494],[8.7864,41.8496],[8.7893,41.857],[8.7909,41.8609],[8.7932,41.8667],[8.8025,41.8904],[8.7791,41.9253],[8.7706,41.9274],[8.7556,41.9309],[8.7459,41.9333],[8.7409,41.9286],[8.7396,41.9274],[8.7186,41.9079],[8.7186,41.9079],[8.7169,41.9078],[8.7091,41.9072],[8.6771,41.9047],[8.6753,41.9046],[8.6162,41.9001],[8.6106,41.8997],[8.6106,41.8997],[8.6128,41.9057],[8.6187,41.922],[8.6197,41.9247],[8.6209,41.9279],[8.6223,41.9319],[8.6234,41.9348],[8.6175,41.9399],[8.6173,41.94],[8.6061,41.9495],[8.6033,41.9518],[8.5985,41.9559],[8.5924,41.9611],[8.5919,41.9615],[8.5917,41.9617],[8.5911,41.9622],[8.6241,41.9658],[8.6386,41.9674],[8.6394,41.9674],[8.6427,41.9678],[8.6435,41.9679],[8.6482,41.9684],[8.6494,41.9692],[8.6537,41.9721],[8.6675,41.9815],[8.6675,41.9815],[8.6684,41.9821],[8.6635,41.9927],[8.6633,41.9932],[8.6583,42.0041],[8.6568,42.0074],[8.6559,42.0092],[8.6575,42.0099],[8.6772,42.0186],[8.6958,42.0269],[8.696,42.027],[8.7237,42.0392],[8.7305,42.0422],[8.747,42.0495],[8.7457,42.0514],[8.7443,42.0532],[8.7441,42.0534],[8.7435,42.0543],[8.7377,42.0621],[8.735,42.0657],[8.7251,42.079],[8.7012,42.1112],[8.6862,42.1092],[8.6861,42.1092],[8.6855,42.1091],[8.6843,42.1089],[8.672,42.1073],[8.6715,42.1072],[8.6657,42.1065],[8.6648,42.1063],[8.6512,42.1149],[8.6511,42.1149],[8.6493,42.1161],[8.6417,42.1209],[8.6382,42.1231],[8.5905,42.1531],[8.5816,42.1587],[8.5628,42.1706],[8.5628,42.1706],[8.5611,42.1716],[8.5708,42.1769],[8.5718,42.1775],[8.5824,42.1833],[8.5814,42.1853],[8.5814,42.1854],[8.5797,42.189],[8.5785,42.1916],[8.5784,42.1919],[8.578,42.1928],[8.5778,42.1933],[8.5773,42.1943],[8.5771,42.1947],[8.5771,42.1948],[8.5722,42.2054],[8.5701,42.2099],[8.5694,42.2115],[8.5687,42.2132],[8.5612,42.2295],[8.5601,42.2319],[8.5583,42.2357],[8.5723,42.2387],[8.5732,42.2389],[8.5736,42.239],[8.6118,42.2471],[8.686,42.2628],[8.6889,42.2634],[8.6899,42.2707],[8.69,42.271],[8.6904,42.2741],[8.6906,42.2749],[8.6828,42.282],[8.6769,42.2873],[8.674,42.29],[8.6737,42.2903],[8.6733,42.2907],[8.6726,42.2913],[8.6682,42.2953],[8.6666,42.2968],[8.6605,42.3023],[8.6299,42.3057],[8.6296,42.3057],[8.6139,42.3074],[8.6085,42.308],[8.6051,42.3084],[8.607,42.3103],[8.6282,42.332],[8.6277,42.3327],[8.6275,42.3329],[8.6273,42.3332],[8.6266,42.3341],[8.6266,42.3342],[8.6221,42.34],[8.6177,42.3458],[8.6149,42.3496],[8.6133,42.3492],[8.6101,42.3483],[8.6093,42.3481],[8.6091,42.3481],[8.5848,42.3416],[8.5749,42.339],[8.5745,42.3389],[8.5706,42.3379],[8.5674,42.337],[8.553,42.3332],[8.5528,42.3338],[8.5461,42.3678],[8.5457,42.3698],[8.5451,42.3728],[8.5448,42.3742],[8.5446,42.3752],[8.5512,42.3737],[8.552,42.3735],[8.5596,42.3717],[8.56,42.3716],[8.5637,42.3707],[8.5684,42.3696],[8.5684,42.3696],[8.5692,42.3694],[8.5732,42.3808],[8.5734,42.3814],[8.5734,42.3814],[8.5734,42.3814],[8.579,42.3822],[8.5849,42.3831],[8.5852,42.3831],[8.5859,42.3832],[8.5893,42.3837],[8.5897,42.3838],[8.6015,42.3855],[8.6043,42.3859],[8.6091,42.3866],[8.609,42.3871],[8.6088,42.389],[8.6086,42.3907],[8.6073,42.4015],[8.6071,42.4031],[8.6066,42.4068],[8.6062,42.4107],[8.6061,42.4113],[8.6058,42.4136],[8.6057,42.4148],[8.6056,42.4152],[8.6056,42.4155],[8.6055,42.4163],[8.6066,42.4162],[8.607,42.4162],[8.6102,42.4162],[8.6114,42.4161],[8.6125,42.4161],[8.6267,42.4158],[8.6442,42.4153],[8.6445,42.4153],[8.6516,42.4152],[8.6534,42.4151],[8.6551,42.4151],[8.6554,42.4157],[8.6557,42.4165],[8.6563,42.4178],[8.6572,42.4197],[8.6613,42.4284],[8.6616,42.429],[8.6624,42.4308],[8.6638,42.4337],[8.6677,42.4422],[8.6794,42.4673],[8.678,42.4728],[8.6779,42.4732],[8.6771,42.4762],[8.6667,42.5156],[8.6793,42.5178],[8.6795,42.5179],[8.6797,42.5179],[8.6799,42.5179],[8.6954,42.5207],[8.7083,42.5229],[8.7102,42.5233],[8.7176,42.5246],[8.7198,42.525],[8.7201,42.5262],[8.7211,42.5312],[8.727,42.5616],[8.7623,42.5576],[8.7631,42.5575],[8.7656,42.5572],[8.7767,42.556],[8.7981,42.5828],[8.7985,42.5833],[8.802,42.5877],[8.8022,42.588],[8.8026,42.5884],[8.8104,42.5982],[8.8283,42.6026],[8.8285,42.6027],[8.841,42.6058],[8.8435,42.6064],[8.8486,42.6077],[8.8534,42.6089],[8.8538,42.609],[8.8739,42.614],[8.8755,42.6144],[8.8758,42.6144],[8.9234,42.6263],[8.9487,42.6326],[8.9533,42.6337],[8.9537,42.6338],[8.9548,42.6341],[8.9592,42.6352],[8.9656,42.6368],[8.9667,42.637],[8.9682,42.6374],[8.9685,42.6375],[8.9722,42.6384],[8.9757,42.6393],[8.9775,42.6397],[9.0278,42.6522],[9.0281,42.6523],[9.0368,42.6545],[9.0375,42.6546],[9.0532,42.6585],[9.0541,42.6588],[9.0546,42.6589],[9.0572,42.6595],[9.0593,42.6601],[9.0594,42.6606],[9.0598,42.6662],[9.0599,42.6664],[9.0599,42.667],[9.0599,42.6672],[9.0603,42.6715],[9.0603,42.6717],[9.0608,42.677],[9.0608,42.677],[9.0622,42.6939],[9.0823,42.708],[9.0824,42.7081],[9.0918,42.7147],[9.0924,42.7151],[9.0933,42.7157],[9.0937,42.7161],[9.1058,42.7246],[9.1058,42.7246],[9.1058,42.7246],[9.1111,42.725],[9.1161,42.7255],[9.118,42.7257],[9.1774,42.7312],[9.1796,42.7314],[9.2204,42.7353],[9.2222,42.7354],[9.2222,42.7354],[9.2236,42.7341],[9.2242,42.7336],[9.2387,42.7201],[9.2393,42.7195],[9.2593,42.7008],[9.2597,42.7004],[9.2768,42.6845],[9.2832,42.6784],[9.2875,42.6745],[9.2994,42.678],[9.3007,42.6783],[9.3017,42.6786],[9.3059,42.6848],[9.3218,42.7077],[9.3218,42.7078],[9.3293,42.7186],[9.3295,42.7189],[9.3298,42.7193],[9.3337,42.725],[9.3349,42.7267],[9.3438,42.7397],[9.3437,42.7474],[9.3437,42.7476],[9.3433,42.7646],[9.3428,42.7875],[9.3427,42.7924],[9.3269,42.8118],[9.3267,42.812],[9.3264,42.8124],[9.3259,42.8131],[9.325,42.8142],[9.3203,42.82],[9.3137,42.8281],[9.3122,42.83],[9.3107,42.8317],[9.3103,42.8323],[9.3094,42.8334],[9.3094,42.8334],[9.31,42.8342],[9.3161,42.8419],[9.3178,42.844],[9.3215,42.8487],[9.3245,42.8525],[9.3332,42.8635],[9.3293,42.8731],[9.3293,42.8732],[9.3291,42.8738],[9.329,42.874],[9.3287,42.8748],[9.3286,42.875],[9.3284,42.8754],[9.3281,42.8763],[9.3279,42.8767],[9.3278,42.8769],[9.3277,42.8771],[9.3274,42.8779],[9.3211,42.8935],[9.3209,42.8939],[9.3209,42.8939],[9.3293,42.9002],[9.3309,42.9015],[9.3426,42.9102],[9.343,42.9105],[9.3441,42.9113],[9.3457,42.9126],[9.3549,42.9195],[9.3595,42.9229],[9.3588,42.926],[9.3587,42.9266],[9.3562,42.9385],[9.3561,42.9389],[9.3538,42.9498],[9.3537,42.95],[9.3514,42.9609],[9.3501,42.9669],[9.3493,42.9707],[9.3492,42.9712],[9.3487,42.9734],[9.3436,42.9977],[9.4021,43.0065],[9.4032,43.0066],[9.4152,43.0084],[9.4162,43.0086],[9.4233,43.0096],[9.427,43.0102],[9.4273,43.01],[9.4283,43.0091],[9.4285,43.009],[9.4389,43.0005],[9.4444,42.996],[9.4498,42.9917],[9.4511,42.9906],[9.4541,42.9882],[9.4541,42.9882],[9.4564,42.9766],[9.4624,42.9458],[9.4625,42.9453],[9.4626,42.9446],[9.4628,42.9435],[9.4643,42.936],[9.4651,42.9321],[9.4651,42.9319],[9.4652,42.9317],[9.4698,42.908],[9.4701,42.9063],[9.4706,42.9039],[9.4713,42.9002],[9.4739,42.8872],[9.4743,42.8853],[9.4751,42.881],[9.4758,42.8776],[9.4768,42.8725],[9.4792,42.8602],[9.4829,42.841],[9.4841,42.8352],[9.4857,42.8269],[9.4868,42.8214],[9.487,42.8204],[9.4915,42.7975],[9.4911,42.7963],[9.4907,42.7951],[9.4902,42.7936],[9.49,42.7928],[9.4717,42.7344],[9.4492,42.6622],[9.4921,42.609],[9.499,42.6005],[9.4995,42.5998],[9.5275,42.565],[9.531,42.5244],[9.5311,42.523],[9.5321,42.5115],[9.5323,42.5097],[9.5355,42.472],[9.5355,42.4716],[9.5356,42.4704],[9.5383,42.4399],[9.5392,42.4286],[9.5401,42.4182],[9.5401,42.4179],[9.5488,42.3174],[9.5488,42.3169],[9.5503,42.2994],[9.5544,42.2515],[9.5546,42.2496],[9.5546,42.2492],[9.5591,42.1967],[9.5591,42.1967],[9.5592,42.1954],[9.555,42.1544],[9.5549,42.1529],[9.5539,42.1434],[9.5499,42.104],[9.5481,42.102],[9.4823,42.0303],[9.4773,42.0249],[9.4733,42.0206],[9.4633,42.0097],[9.4575,42.0034],[9.4541,41.9997],[9.4527,41.9981],[9.4138,41.9557],[9.4138,41.9557],[9.4138,41.9557],[9.4123,41.9431],[9.4119,41.9403],[9.4118,41.9387],[9.408,41.9069],[9.4078,41.9051],[9.4078,41.9049],[9.4023,41.8587]]]]}},{"type":"Feature","properties":{"NUTS_ID":"FR_C16","Couleur":1,"name":"13_FR","Lat":43.2707,"Long":1.6372},"geometry":{"type":"MultiPolygon","coordinates":[[[[4.1636,43.6901],[4.1942,43.6545],[4.1907,43.6475],[4.1935,43.6417],[4.1688,43.6091],[4.1493,43.5977],[4.1502,43.5856],[4.1248,43.5886],[4.0988,43.5853],[4.0851,43.5921],[4.0747,43.5886],[4.081,43.5899],[4.0954,43.5815],[4.1087,43.5684],[4.101,43.5544],[4.0507,43.5574],[4.007,43.5517],[3.8942,43.5109],[3.8496,43.4854],[3.7967,43.441],[3.7249,43.4158],[3.7256,43.4012],[3.6916,43.3916],[3.6649,43.3932],[3.6431,43.3831],[3.5667,43.3262],[3.5095,43.2717],[3.4672,43.2768],[3.4303,43.2902],[3.4001,43.2873],[3.3435,43.2703],[3.2821,43.2395],[3.2406,43.2128],[3.1791,43.1671],[3.144,43.1326],[3.1292,43.1138],[3.1324,43.1106],[3.1223,43.1077],[3.1035,43.0838],[3.0657,43.0224],[3.0657,43.0135],[3.0509,42.9862],[3.0393,42.9417],[3.0405,42.9297],[3.0542,42.9258],[3.0607,42.9174],[3.0435,42.8382],[3.0379,42.7546],[3.0407,42.7167],[3.0348,42.6603],[3.0496,42.5501],[3.0579,42.5363],[3.0825,42.5319],[3.0859,42.5241],[3.1065,42.5259],[3.1156,42.5189],[3.1176,42.5232],[3.1419,42.5158],[3.123,42.5057],[3.1295,42.4995],[3.1354,42.5003],[3.1329,42.495],[3.1277,42.4882],[3.1327,42.4857],[3.1297,42.4825],[3.1548,42.4767],[3.155,42.4702],[3.1624,42.465],[3.1573,42.4594],[3.1663,42.456],[3.1599,42.4519],[3.1693,42.4476],[3.1667,42.4401],[3.1778,42.4395],[3.1748,42.4354],[3.1448,42.433],[3.1211,42.4373],[3.1102,42.4355],[3.0986,42.4251],[3.086,42.4258],[3.054,42.45],[3.0402,42.4735],[3.0313,42.4747],[3.0131,42.4664],[2.9887,42.4742],[2.9803,42.4675],[2.9671,42.4655],[2.947,42.4821],[2.9317,42.4747],[2.9245,42.4586],[2.9183,42.4562],[2.8823,42.4604],[2.8702,42.4677],[2.8633,42.4638],[2.8613,42.4553],[2.8395,42.4593],[2.8272,42.4393],[2.8153,42.4387],[2.8044,42.4304],[2.7992,42.4185],[2.7839,42.4177],[2.7771,42.4118],[2.77,42.4119],[2.7522,42.4257],[2.7163,42.4213],[2.6931,42.4064],[2.672,42.4035],[2.6705,42.387],[2.6517,42.3877],[2.6613,42.3771],[2.6608,42.3661],[2.6749,42.3571],[2.6753,42.3423],[2.6715,42.3408],[2.6099,42.3469],[2.5768,42.3581],[2.5542,42.3539],[2.5543,42.3458],[2.5421,42.3339],[2.5262,42.3334],[2.5001,42.3432],[2.4833,42.3398],[2.4541,42.3699],[2.4357,42.3751],[2.432,42.3939],[2.4107,42.3922],[2.3874,42.4003],[2.3584,42.4038],[2.3457,42.4094],[2.3441,42.4167],[2.3248,42.4175],[2.3125,42.4285],[2.2909,42.4229],[2.2568,42.4387],[2.2461,42.4289],[2.2242,42.4259],[2.2066,42.4174],[2.1804,42.4182],[2.17,42.4231],[2.1481,42.4204],[2.1286,42.4126],[2.1216,42.3972],[2.1147,42.3946],[2.1167,42.3833],[2.0893,42.3739],[2.0846,42.3619],[2.0727,42.3655],[2.0583,42.3586],[2.0235,42.3558],[2.0153,42.3474],[1.9859,42.3621],[1.9646,42.3822],[1.9607,42.404],[1.9548,42.4115],[1.9585,42.4234],[1.9407,42.4304],[1.9428,42.445],[1.9366,42.4544],[1.9156,42.4462],[1.8995,42.4502],[1.8907,42.4481],[1.8843,42.4499],[1.8791,42.4607],[1.8643,42.4666],[1.8597,42.4625],[1.8542,42.4641],[1.8474,42.4679],[1.8433,42.4772],[1.8235,42.4866],[1.8169,42.4831],[1.8048,42.4902],[1.7918,42.4855],[1.7629,42.4875],[1.7472,42.4954],[1.731,42.4924],[1.7258,42.5044],[1.7254,42.5149],[1.7213,42.5172],[1.7348,42.5337],[1.7349,42.549],[1.739,42.5557],[1.7505,42.5642],[1.7696,42.5648],[1.7861,42.5737],[1.7816,42.5826],[1.7673,42.5804],[1.7273,42.5885],[1.7262,42.6003],[1.7382,42.6116],[1.7358,42.6155],[1.7138,42.6145],[1.6992,42.6227],[1.6834,42.6249],[1.664,42.619],[1.6374,42.6303],[1.6004,42.6256],[1.5943,42.6324],[1.58,42.6372],[1.5747,42.6478],[1.5493,42.6558],[1.5186,42.6453],[1.5004,42.6453],[1.4935,42.6533],[1.4791,42.6517],[1.477,42.6408],[1.468,42.6309],[1.4766,42.6131],[1.4569,42.6023],[1.4426,42.6037],[1.4332,42.607],[1.4305,42.6174],[1.4204,42.6249],[1.4136,42.6556],[1.4058,42.6567],[1.3968,42.6681],[1.3872,42.6688],[1.3871,42.6891],[1.3772,42.6945],[1.3648,42.6947],[1.3508,42.703],[1.3572,42.7197],[1.3402,42.7194],[1.3328,42.7247],[1.3092,42.7176],[1.2947,42.7195],[1.2781,42.7141],[1.2759,42.7182],[1.268,42.7184],[1.2526,42.7145],[1.2472,42.7227],[1.2288,42.7277],[1.2163,42.72],[1.1891,42.7174],[1.1732,42.7081],[1.1661,42.7089],[1.1331,42.7284],[1.135,42.7357],[1.1298,42.7452],[1.1326,42.7505],[1.1281,42.7557],[1.1193,42.7634],[1.1093,42.7657],[1.1085,42.7719],[1.0873,42.7784],[1.0788,42.7883],[1.0733,42.7826],[1.0478,42.781],[1.0389,42.7868],[1.0056,42.7908],[0.9841,42.7867],[0.9601,42.8059],[0.9391,42.7967],[0.9332,42.7896],[0.9263,42.7893],[0.8851,42.8132],[0.8708,42.8157],[0.8582,42.8257],[0.8332,42.8283],[0.8008,42.8407],[0.7789,42.836],[0.7355,42.8488],[0.7346,42.8543],[0.7092,42.8615],[0.6916,42.8552],[0.6779,42.8553],[0.6782,42.8478],[0.659,42.8379],[0.6621,42.8288],[0.67,42.8243],[0.6648,42.8146],[0.6702,42.8019],[0.6591,42.7976],[0.645,42.783],[0.6669,42.7753],[0.6503,42.7653],[0.6425,42.7538],[0.6634,42.7497],[0.6701,42.7311],[0.6802,42.7232],[0.6731,42.718],[0.6825,42.7089],[0.674,42.6994],[0.6763,42.691],[0.6601,42.691],[0.6187,42.6956],[0.597,42.7055],[0.5873,42.6945],[0.5262,42.7025],[0.5187,42.6919],[0.4989,42.692],[0.4778,42.7],[0.4605,42.6929],[0.422,42.6905],[0.3952,42.6995],[0.393,42.7132],[0.3742,42.7146],[0.3601,42.7244],[0.3455,42.7107],[0.3251,42.705],[0.3215,42.6842],[0.313,42.6839],[0.2951,42.6734],[0.2636,42.6932],[0.2685,42.7001],[0.2599,42.716],[0.2268,42.7173],[0.2059,42.7297],[0.1757,42.737],[0.1623,42.7285],[0.1617,42.7232],[0.1366,42.7224],[0.1315,42.7147],[0.1169,42.7112],[0.1065,42.7101],[0.0901,42.7171],[0.0779,42.7148],[0.0701,42.7035],[0.0583,42.6976],[0.0157,42.7018],[0.0145,42.6942],[0.0002,42.6853],[-0.0167,42.6851],[-0.0491,42.6943],[-0.0558,42.6923],[-0.0638,42.6979],[-0.0633,42.7103],[-0.0685,42.7181],[-0.1065,42.7206],[-0.1118,42.7264],[-0.1094,42.7346],[-0.1177,42.7385],[-0.1229,42.7516],[-0.1385,42.7667],[-0.1498,42.7692],[-0.147,42.7761],[-0.1542,42.7807],[-0.1543,42.7928],[-0.1601,42.798],[-0.1779,42.7853],[-0.1893,42.7878],[-0.1983,42.7956],[-0.2154,42.7967],[-0.2199,42.8027],[-0.2374,42.8077],[-0.2389,42.8181],[-0.2431,42.8206],[-0.255,42.8193],[-0.2756,42.8289],[-0.2769,42.8355],[-0.3063,42.8415],[-0.3133,42.8494],[-0.3246,42.8347],[-0.3469,42.8378],[-0.3646,42.8164],[-0.3822,42.8079],[-0.3836,42.801],[-0.3948,42.799],[-0.4089,42.8077],[-0.4439,42.7961],[-0.4518,42.8035],[-0.4933,42.8171],[-0.5013,42.8278],[-0.5053,42.8274],[-0.5251,42.8122],[-0.5234,42.7973],[-0.5303,42.7914],[-0.5438,42.7932],[-0.5518,42.7776],[-0.5706,42.783],[-0.5648,42.7999],[-0.5692,42.8069],[-0.6005,42.8024],[-0.6018,42.8318],[-0.6198,42.838],[-0.6362,42.8533],[-0.656,42.8587],[-0.6661,42.8746],[-0.6788,42.8845],[-0.6985,42.8789],[-0.7318,42.8961],[-0.7364,42.913],[-0.7245,42.9202],[-0.7337,42.9308],[-0.7347,42.9399],[-0.7309,42.9452],[-0.6957,43.2642],[-0.6957,43.4608],[-0.6301,43.5591],[-0.4204,43.6377],[-0.0206,43.6771],[0.3792,43.7229],[0.6217,43.8147],[0.897,43.8671],[1.1723,43.9065],[1.3951,43.9065],[1.6579,43.9954],[1.9653,44.0507],[2.162,44.0507],[2.5355,43.9655],[2.6601,43.8999],[2.7387,43.8934],[2.8829,43.9065],[3.0926,43.8737],[3.4323,43.8629],[3.4624,43.8719],[3.4831,43.8918],[3.5021,43.8917],[3.5026,43.8973],[3.5132,43.8962],[3.5185,43.892],[3.5164,43.8887],[3.5227,43.8886],[3.5227,43.8662],[3.5282,43.8546],[3.5525,43.8516],[3.5588,43.8566],[3.5789,43.8436],[3.5814,43.848],[3.6009,43.8495],[3.5989,43.8549],[3.5755,43.8656],[3.6873,43.8534],[3.7488,43.8556],[3.8219,43.8534],[3.8516,43.8679],[3.8569,43.8772],[3.898,43.8778],[3.9121,43.8883],[3.9176,43.8871],[3.9176,43.8686],[3.9253,43.8566],[3.9556,43.8538],[3.9582,43.844],[3.9795,43.8427],[3.9722,43.8373],[3.978,43.8295],[3.962,43.8171],[3.9601,43.806],[3.9743,43.8015],[4.0013,43.8131],[4.0186,43.8071],[4.0494,43.789],[4.0538,43.7832],[4.0526,43.773],[4.0791,43.7541],[4.12,43.727],[4.152,43.7057],[4.1636,43.6901]]]]}},{"type":"Feature","properties":{"NUTS_ID":"ES_C4","Couleur":4,"name":"03_ES","LONG":3327370,"LAT":2257604,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":42.7907,"Long":-2.4972},"geometry":{"type":"MultiPolygon","coordinates":[[[[-3.0864,42.6277],[-3.0902,42.6156],[-3.0985,42.6145],[-3.114,42.6187],[-3.1358,42.6301],[-3.1607,42.6488],[-3.1814,42.6736],[-3.2126,42.7089],[-3.2364,42.7421],[-3.2551,42.7701],[-3.281,42.8001],[-3.2903,42.8364],[-3.2826,42.8755],[-3.2868,42.8851],[-3.2764,42.887],[-3.2773,42.9015],[-3.2486,42.9121],[-3.2458,42.9238],[-3.2354,42.933],[-3.2356,42.9438],[-3.2248,42.9496],[-3.2116,42.9443],[-3.1808,42.9445],[-3.1448,42.9346],[-3.1509,42.9191],[-3.1416,42.9132],[-3.1329,42.9134],[-3.1266,42.904],[-3.1084,42.9061],[-3.1047,42.9101],[-3.0921,42.8987],[-3.0189,42.9085],[-3.0054,42.9267],[-2.9977,42.9262],[-2.9814,42.9396],[-2.9961,42.9528],[-3.0175,42.9537],[-3.0204,42.9609],[-3.0415,42.9699],[-3.0447,42.9741],[-3.037,42.9822],[-3.0606,42.9982],[-3.0603,43.0035],[-3.0771,43.0085],[-3.089,43.0016],[-3.1244,43.0077],[-3.1448,43.0068],[-3.1778,43.0219],[-3.1703,43.029],[-3.1419,43.0298],[-3.1477,43.0344],[-3.1403,43.0671],[-3.1582,43.074],[-3.134,43.0972],[-3.1415,43.1106],[-3.1521,43.1041],[-3.1759,43.113],[-3.1818,43.1208],[-3.1615,43.1431],[-3.1668,43.1469],[-3.1619,43.1542],[-3.1414,43.1615],[-3.1483,43.1739],[-3.158,43.178],[-3.1681,43.1785],[-3.187,43.1692],[-3.1995,43.1712],[-3.2079,43.1794],[-3.2241,43.1701],[-3.2535,43.1985],[-3.2572,43.1951],[-3.2781,43.1944],[-3.2781,43.1895],[-3.2975,43.1826],[-3.3103,43.1721],[-3.342,43.1668],[-3.3507,43.1543],[-3.3711,43.1514],[-3.3871,43.1417],[-3.4177,43.1334],[-3.4448,43.1315],[-3.4713,43.1367],[-3.4926,43.1338],[-3.5437,43.1481],[-3.5856,43.1544],[-3.6036,43.1496],[-3.6125,43.1695],[-3.6502,43.1809],[-3.6582,43.1776],[-3.6553,43.1711],[-3.6668,43.1628],[-3.668,43.1576],[-3.6767,43.155],[-3.6838,43.1362],[-3.7038,43.1234],[-3.7047,43.1162],[-3.7291,43.1044],[-3.7549,43.1005],[-3.7598,43.0921],[-3.757,43.085],[-3.7646,43.081],[-3.7758,43.0825],[-3.7903,43.0781],[-3.8102,43.0866],[-3.8233,43.0805],[-3.847,43.0843],[-3.8507,43.077],[-3.8347,43.0646],[-3.8338,43.0593],[-3.8498,43.0483],[-3.8492,43.041],[-3.8911,43.0416],[-3.9093,43.016],[-3.9455,43.0057],[-3.9563,42.9974],[-3.9717,42.9749],[-3.991,42.931],[-3.9729,42.9116],[-3.9434,42.9092],[-3.9297,42.9146],[-3.9376,42.9048],[-3.9336,42.8995],[-3.9264,42.9044],[-3.9234,42.9156],[-3.9115,42.9233],[-3.8916,42.9252],[-3.8874,42.9487],[-3.8702,42.9496],[-3.8671,42.9548],[-3.8396,42.9397],[-3.8299,42.9276],[-3.8336,42.9179],[-3.8521,42.9189],[-3.859,42.9036],[-3.8686,42.899],[-3.8914,42.9028],[-3.9071,42.913],[-3.9106,42.9109],[-3.8987,42.9036],[-3.893,42.8873],[-3.9028,42.8862],[-3.9103,42.8919],[-3.9244,42.8892],[-3.9025,42.8849],[-3.8975,42.8802],[-3.9148,42.866],[-3.9149,42.86],[-3.8993,42.8599],[-3.8798,42.8513],[-3.8685,42.8567],[-3.8739,42.8631],[-3.8741,42.8751],[-3.8638,42.8898],[-3.8368,42.8787],[-3.8254,42.8686],[-3.8338,42.8521],[-3.8165,42.8359],[-3.8197,42.8278],[-3.8161,42.8105],[-3.8233,42.7988],[-3.8634,42.7864],[-3.8945,42.8045],[-3.9005,42.7892],[-3.9097,42.7864],[-3.911,42.7683],[-3.9265,42.7701],[-3.9306,42.7744],[-3.9488,42.7675],[-3.9466,42.7619],[-3.9789,42.758],[-3.9816,42.7683],[-3.9997,42.7689],[-3.9965,42.7989],[-4.0036,42.8314],[-4.0111,42.8303],[-4.0208,42.8193],[-4.0142,42.8063],[-4.0329,42.8012],[-4.0299,42.7883],[-4.0438,42.7887],[-4.0494,42.7812],[-4.0459,42.7666],[-4.0814,42.7614],[-4.0854,42.7721],[-4.0941,42.7733],[-4.0997,42.7845],[-4.0985,42.7911],[-4.1227,42.7945],[-4.1499,42.7893],[-4.1737,42.8085],[-4.1839,42.812],[-4.1832,42.8217],[-4.1655,42.8282],[-4.1581,42.8376],[-4.1405,42.8289],[-4.1261,42.8566],[-4.1453,42.8622],[-4.149,42.8657],[-4.1443,42.8686],[-4.1499,42.8711],[-4.1676,42.8595],[-4.1812,42.8586],[-4.1997,42.8445],[-4.2143,42.8471],[-4.2247,42.8567],[-4.2235,42.875],[-4.2308,42.9032],[-4.2226,42.9109],[-4.2367,42.9171],[-4.2403,42.9565],[-4.2622,42.9652],[-4.3485,42.9725],[-4.3731,42.9956],[-4.3744,43.006],[-4.3862,43.016],[-4.3981,43.0348],[-4.4319,43.0456],[-4.4425,43.0558],[-4.4625,43.0595],[-4.4712,43.0516],[-4.4757,43.0386],[-4.4959,43.0383],[-4.521,43.0473],[-4.5585,43.0195],[-4.5743,43.0269],[-4.5906,43.0258],[-4.6061,43.0357],[-4.6239,43.0712],[-4.6419,43.0919],[-4.6322,43.1707],[-4.6212,43.197],[-4.6073,43.2717],[-4.5866,43.3159],[-4.5327,43.3684],[-4.4955,43.3975],[-4.4875,43.3928],[-4.4693,43.3913],[-4.4436,43.3975],[-4.4315,43.3947],[-4.4182,43.398],[-4.3976,43.3967],[-4.3806,43.3905],[-4.3698,43.3923],[-4.3562,43.403],[-4.3408,43.406],[-4.3333,43.392],[-4.282,43.3885],[-4.2333,43.4004],[-4.2216,43.3953],[-4.2082,43.4013],[-4.2004,43.3991],[-4.1799,43.4044],[-4.1746,43.401],[-4.1527,43.411],[-4.1346,43.4113],[-4.1059,43.4215],[-4.0814,43.4382],[-4.0817,43.4335],[-4.0768,43.4309],[-4.0549,43.4338],[-4.0471,43.4386],[-4.0471,43.4451],[-4.0423,43.4421],[-4.0439,43.437],[-4.0342,43.4353],[-4.0312,43.4369],[-4.0341,43.4404],[-4.0238,43.4413],[-4.0205,43.4477],[-4.0149,43.448],[-4.0024,43.4395],[-3.9871,43.4458],[-3.9821,43.4412],[-3.9586,43.4543],[-3.9449,43.4693],[-3.9329,43.4678],[-3.9163,43.4745],[-3.8624,43.4757],[-3.8419,43.484],[-3.8387,43.4788],[-3.8323,43.4864],[-3.8122,43.4943],[-3.7785,43.4859],[-3.788,43.4794],[-3.7758,43.4692],[-3.7663,43.4712],[-3.7634,43.4665],[-3.8031,43.4608],[-3.8156,43.4497],[-3.8221,43.4515],[-3.8184,43.4535],[-3.8255,43.4515],[-3.8202,43.448],[-3.8325,43.4437],[-3.8208,43.4418],[-3.834,43.4412],[-3.83,43.437],[-3.8203,43.4373],[-3.8366,43.4316],[-3.82,43.4309],[-3.8046,43.4243],[-3.8218,43.4139],[-3.8157,43.4024],[-3.8087,43.4083],[-3.8074,43.4155],[-3.7982,43.4142],[-3.779,43.4214],[-3.7913,43.4321],[-3.7787,43.4335],[-3.7709,43.4456],[-3.7757,43.4488],[-3.7557,43.4477],[-3.755,43.4413],[-3.7625,43.4341],[-3.7573,43.4305],[-3.7428,43.4316],[-3.751,43.4368],[-3.7452,43.4479],[-3.7473,43.453],[-3.7727,43.4586],[-3.7327,43.4592],[-3.7252,43.4625],[-3.7267,43.4695],[-3.7229,43.474],[-3.7055,43.4793],[-3.6876,43.4753],[-3.6552,43.4925],[-3.6448,43.4984],[-3.619,43.4969],[-3.5909,43.5138],[-3.5799,43.5123],[-3.5823,43.5104],[-3.5785,43.5064],[-3.5495,43.509],[-3.5398,43.5013],[-3.5425,43.4932],[-3.5301,43.4906],[-3.5237,43.4955],[-3.5164,43.4936],[-3.5147,43.4812],[-3.5077,43.4761],[-3.4721,43.4671],[-3.4354,43.4647],[-3.4271,43.4575],[-3.4259,43.4439],[-3.4327,43.4396],[-3.4604,43.439],[-3.4651,43.4446],[-3.4635,43.4368],[-3.4841,43.4327],[-3.4917,43.4244],[-3.4822,43.432],[-3.462,43.4322],[-3.4647,43.4038],[-3.4602,43.4034],[-3.4512,43.4359],[-3.4369,43.4195],[-3.4238,43.413],[-3.4089,43.4187],[-3.4093,43.4156],[-3.3715,43.4171],[-3.3649,43.4119],[-3.3443,43.4165],[-3.3375,43.4138],[-3.3266,43.4159],[-3.3258,43.4063],[-3.3218,43.4035],[-3.3158,43.4026],[-3.3111,43.4092],[-3.3043,43.4097],[-3.2238,43.3945],[-3.2213,43.391],[-3.2268,43.3887],[-3.2251,43.3851],[-3.2149,43.385],[-3.2182,43.3829],[-3.2133,43.3762],[-3.1985,43.3736],[-3.1942,43.3642],[-3.1847,43.3654],[-3.1821,43.3588],[-3.1716,43.3588],[-3.1618,43.351],[-3.1533,43.3532],[-3.1292,43.3544],[-3.1226,43.3497],[-3.1146,43.3506],[-3.1104,43.3625],[-3.0839,43.3782],[-3.1028,43.3634],[-3.0935,43.3629],[-3.0808,43.3531],[-3.0474,43.3388],[-3.0322,43.347],[-3.0325,43.3421],[-3.0391,43.3413],[-3.0341,43.3376],[-3.0439,43.3392],[-3.0176,43.323],[-3.0105,43.3378],[-3.0279,43.342],[-3.0147,43.341],[-3.0131,43.3479],[-3.0379,43.3736],[-2.9931,43.3907],[-2.9739,43.4045],[-2.9705,43.4123],[-2.9602,43.4159],[-2.9542,43.4112],[-2.9461,43.4121],[-2.9466,43.4179],[-2.9533,43.4179],[-2.9555,43.4221],[-2.9463,43.4352],[-2.904,43.4383],[-2.9005,43.4337],[-2.8801,43.4366],[-2.8676,43.4315],[-2.8444,43.4321],[-2.8236,43.4343],[-2.807,43.4306],[-2.7919,43.4418],[-2.7611,43.4497],[-2.7518,43.4567],[-2.738,43.4292],[-2.7207,43.4263],[-2.7192,43.4207],[-2.7234,43.4182],[-2.7006,43.4154],[-2.6962,43.4056],[-2.686,43.405],[-2.6785,43.4122],[-2.6525,43.4111],[-2.6457,43.4159],[-2.6365,43.4117],[-2.6353,43.4022],[-2.6277,43.3951],[-2.6188,43.3918],[-2.6011,43.3929],[-2.5831,43.3856],[-2.5627,43.3909],[-2.545,43.3733],[-2.5096,43.3776],[-2.5004,43.3656],[-2.4895,43.3642],[-2.4733,43.3515],[-2.4597,43.3353],[-2.438,43.3339],[-2.424,43.3305],[-2.4191,43.326],[-2.4214,43.3223],[-2.4128,43.3211],[-2.4,43.3217],[-2.3774,43.3081],[-2.3561,43.3031],[-2.3542,43.2989],[-2.346,43.3],[-2.3458,43.3033],[-2.3242,43.2966],[-2.2851,43.2947],[-2.2621,43.2992],[-2.2603,43.3033],[-2.2465,43.3013],[-2.2284,43.3109],[-2.206,43.3039],[-2.2014,43.3116],[-2.203,43.3015],[-2.1901,43.2923],[-2.1837,43.2946],[-2.178,43.2878],[-2.1542,43.2903],[-2.1574,43.2854],[-2.1516,43.2938],[-2.1299,43.2878],[-2.1077,43.3016],[-2.0228,43.3222],[-2.0084,43.324],[-2.005,43.3184],[-1.9918,43.316],[-1.986,43.3206],[-1.9935,43.3234],[-1.9919,43.3265],[-1.9728,43.3267],[-1.9703,43.3344],[-1.9621,43.3381],[-1.9485,43.3319],[-1.9343,43.3357],[-1.9236,43.3321],[-1.927,43.3357],[-1.8834,43.3494],[-1.8665,43.3714],[-1.8039,43.3877],[-1.7904,43.396],[-1.7907,43.3872],[-1.7983,43.3806],[-1.7899,43.3651],[-1.7806,43.3606],[-1.7893,43.3533],[-1.786,43.3505],[-1.7719,43.3424],[-1.7573,43.3437],[-1.7506,43.3318],[-1.7375,43.3301],[-1.7418,43.3166],[-1.7289,43.2961],[-1.7134,43.3],[-1.6945,43.3121],[-1.6859,43.3093],[-1.6681,43.3148],[-1.6447,43.3067],[-1.6253,43.3067],[-1.6215,43.3001],[-1.6301,43.285],[-1.6219,43.2633],[-1.6088,43.252],[-1.596,43.2546],[-1.5748,43.2504],[-1.5564,43.2794],[-1.5642,43.2888],[-1.5356,43.2949],[-1.5061,43.2933],[-1.4928,43.2818],[-1.4826,43.2831],[-1.4689,43.2735],[-1.4402,43.2673],[-1.427,43.2671],[-1.4137,43.2737],[-1.3897,43.2594],[-1.3823,43.25],[-1.378,43.2321],[-1.3846,43.2213],[-1.3829,43.1996],[-1.3867,43.1942],[-1.3815,43.1897],[-1.4024,43.1777],[-1.4023,43.156],[-1.416,43.1498],[-1.4101,43.1429],[-1.4149,43.1357],[-1.4142,43.1283],[-1.4239,43.1248],[-1.4274,43.1168],[-1.4436,43.1117],[-1.4409,43.1077],[-1.4679,43.0954],[-1.4735,43.0866],[-1.4413,43.0463],[-1.3537,43.028],[-1.3426,43.0544],[-1.3444,43.0732],[-1.34,43.0811],[-1.3463,43.0906],[-1.3447,43.0945],[-1.3327,43.1076],[-1.3197,43.1128],[-1.2731,43.1188],[-1.2705,43.117],[-1.2997,43.0924],[-1.3091,43.0712],[-1.2702,43.0553],[-1.2636,43.0442],[-1.2479,43.0428],[-1.2293,43.0557],[-1.2127,43.0517],[-1.1813,43.0322],[-1.1745,43.0373],[-1.147,43.0258],[-1.1418,43.0075],[-1.1148,43.0239],[-1.0984,43.0134],[-1.0833,43.0106],[-1.0866,43.0028],[-1.0721,42.9979],[-1.0122,42.9926],[-0.9964,42.9749],[-0.9452,42.9534],[-0.9258,42.9541],[-0.9086,42.9645],[-0.8995,42.9617],[-0.8955,42.9552],[-0.864,42.9508],[-0.8097,42.9514],[-0.7838,42.9645],[-0.7676,42.969],[-0.752,42.9671],[-0.7436,42.9506],[-0.7309,42.9452],[-0.7347,42.9399],[-0.7337,42.9308],[-0.7245,42.9202],[-0.7441,42.9192],[-0.7535,42.9245],[-0.7832,42.9217],[-0.8011,42.9078],[-0.8191,42.9006],[-0.8159,42.8852],[-0.8185,42.8693],[-0.8373,42.8615],[-0.8413,42.8529],[-0.8568,42.847],[-0.8514,42.8076],[-0.8604,42.8022],[-0.86,42.7985],[-0.8499,42.7921],[-0.8475,42.7859],[-0.8595,42.7687],[-0.8733,42.759],[-0.8905,42.7628],[-0.9005,42.7604],[-0.9011,42.7427],[-0.923,42.744],[-0.9248,42.7389],[-0.9359,42.7342],[-0.9487,42.7114],[-0.9587,42.7116],[-0.9692,42.7037],[-1.028,42.7],[-1.029,42.6948],[-1.0392,42.6916],[-1.0325,42.6756],[-1.0396,42.6642],[-1.0386,42.6483],[-1.0519,42.6426],[-1.1514,42.6481],[-1.1571,42.6109],[-1.1719,42.617],[-1.1788,42.6151],[-1.1798,42.6106],[-1.158,42.5991],[-1.1707,42.5968],[-1.2016,42.577],[-1.2028,42.5496],[-1.2183,42.5491],[-1.2262,42.5422],[-1.2648,42.5568],[-1.2881,42.5228],[-1.2935,42.5109],[-1.2875,42.5085],[-1.2867,42.4985],[-1.2751,42.4957],[-1.2728,42.4819],[-1.2814,42.4644],[-1.2898,42.4573],[-1.3152,42.4492],[-1.3415,42.4239],[-1.3429,42.4081],[-1.3597,42.3776],[-1.3506,42.37],[-1.3367,42.3724],[-1.3291,42.3554],[-1.3375,42.3455],[-1.3589,42.3335],[-1.3991,42.2913],[-1.3899,42.2785],[-1.3914,42.2721],[-1.3998,42.2564],[-1.3999,42.2455],[-1.4164,42.222],[-1.4175,42.2123],[-1.4134,42.2022],[-1.3952,42.1906],[-1.3918,42.1807],[-1.3984,42.1564],[-1.3928,42.1496],[-1.3989,42.1262],[-1.3668,42.1069],[-1.3652,42.0931],[-1.3523,42.0731],[-1.3106,42.0723],[-1.3127,42.065],[-1.3033,42.0518],[-1.3081,42.0464],[-1.3048,42.0429],[-1.3395,42.018],[-1.366,41.9828],[-1.3743,41.962],[-1.386,41.957],[-1.3801,41.9504],[-1.3822,41.9433],[-1.4035,41.9351],[-1.4107,41.9189],[-1.4218,41.9131],[-1.4533,41.9157],[-1.4776,41.9249],[-1.5018,41.9243],[-1.5061,41.9158],[-1.5233,41.9099],[-1.5676,41.9161],[-1.5962,41.9271],[-1.6148,41.9505],[-1.6541,41.9653],[-1.6597,41.9618],[-1.6755,41.9667],[-1.6862,41.9535],[-1.7152,41.9569],[-1.7414,41.9684],[-1.7669,41.9958],[-1.7914,41.9896],[-1.8103,41.998],[-1.8337,41.9951],[-1.8472,42.008],[-1.8513,41.9981],[-1.844,41.9873],[-1.8652,41.9776],[-1.8565,41.9664],[-1.8776,41.9524],[-1.9067,41.9456],[-1.9047,41.9433],[-1.915,41.9338],[-1.9406,41.9254],[-1.9549,41.9274],[-1.9613,41.9203],[-1.9841,41.9201],[-1.9983,41.9307],[-2.0013,41.9385],[-2.0131,41.9408],[-2.0283,41.9534],[-2.0364,41.9394],[-2.0488,41.9505],[-2.1025,41.9556],[-2.1161,41.9636],[-2.1241,41.9953],[-2.1121,41.997],[-2.1076,42.0028],[-2.1152,42.0114],[-2.117,42.0215],[-2.1289,42.0262],[-2.1548,42.047],[-2.1619,42.0667],[-2.1272,42.0804],[-2.1273,42.0972],[-2.1572,42.1048],[-2.2089,42.1046],[-2.2241,42.0981],[-2.2378,42.1022],[-2.2589,42.0873],[-2.2696,42.0885],[-2.2818,42.1084],[-2.2826,42.1188],[-2.2789,42.1224],[-2.2822,42.1317],[-2.3191,42.1452],[-2.3482,42.1467],[-2.3879,42.1425],[-2.3972,42.1369],[-2.4413,42.1365],[-2.4586,42.1153],[-2.4718,42.1143],[-2.4844,42.1063],[-2.4959,42.1129],[-2.5147,42.1145],[-2.5227,42.0829],[-2.5148,42.0742],[-2.5149,42.0688],[-2.5325,42.0552],[-2.5491,42.0515],[-2.5513,42.0388],[-2.5799,41.9962],[-2.6266,42.0065],[-2.6598,42.0054],[-2.6736,41.9981],[-2.6872,42.0014],[-2.7052,42.0151],[-2.7239,42.0155],[-2.7462,42.0087],[-2.7576,42.0326],[-2.7084,42.0863],[-2.7104,42.0963],[-2.706,42.1035],[-2.7347,42.1249],[-2.7464,42.1239],[-2.7512,42.1178],[-2.7707,42.1249],[-2.7916,42.1087],[-2.7902,42.0942],[-2.8034,42.0805],[-2.795,42.0635],[-2.7983,42.0473],[-2.805,42.0459],[-2.8127,42.0366],[-2.8237,42.041],[-2.8446,42.0345],[-2.8568,42.0288],[-2.8624,42.0192],[-2.8838,42.0095],[-2.8895,42.0104],[-2.8912,42.017],[-2.9136,42.0228],[-2.9152,42.039],[-2.9325,42.0809],[-2.9312,42.0868],[-2.9407,42.0892],[-2.9777,42.0839],[-2.9932,42.0875],[-3.0039,42.0833],[-3.0242,42.0887],[-3.0344,42.0859],[-3.0592,42.1271],[-3.0737,42.1358],[-3.0857,42.1342],[-3.0898,42.1593],[-3.1144,42.1773],[-3.1153,42.1882],[-3.1286,42.1966],[-3.128,42.2016],[-3.1038,42.2137],[-3.0994,42.2223],[-3.1021,42.2333],[-3.0886,42.2457],[-3.0977,42.2631],[-3.0896,42.273],[-3.0962,42.279],[-3.0959,42.2874],[-3.1066,42.3118],[-3.0959,42.3269],[-3.1107,42.3386],[-3.1097,42.3514],[-3.0637,42.3561],[-3.0633,42.3628],[-3.0848,42.3854],[-3.1053,42.3863],[-3.0958,42.4052],[-3.1014,42.4168],[-3.0904,42.4223],[-3.0782,42.4157],[-3.0827,42.3974],[-3.0658,42.3744],[-3.0569,42.3703],[-3.0532,42.3734],[-3.064,42.4043],[-3.0574,42.4171],[-3.0633,42.4249],[-3.046,42.4451],[-3.0642,42.4709],[-3.0733,42.4765],[-3.0823,42.4745],[-3.0904,42.4779],[-3.0947,42.488],[-3.0794,42.499],[-3.0726,42.5289],[-3.0893,42.5382],[-3.0999,42.5361],[-3.1075,42.5287],[-3.1254,42.5331],[-3.1343,42.542],[-3.1048,42.5539],[-3.0824,42.574],[-3.0862,42.5822],[-3.0599,42.5892],[-3.0652,42.5941],[-3.0604,42.6025],[-3.0705,42.6214],[-3.0864,42.6277]],[[-3.2495,43.2596],[-3.267,43.2669],[-3.3046,43.2586],[-3.3056,43.2525],[-3.2927,43.241],[-3.2968,43.2219],[-3.2926,43.2191],[-3.2979,43.2066],[-3.2871,43.2001],[-3.2652,43.2057],[-3.2714,43.2175],[-3.2675,43.2244],[-3.2698,43.232],[-3.2522,43.2466],[-3.2495,43.2596]],[[-2.9298,42.6112],[-2.9452,42.6039],[-2.9396,42.5944],[-2.9227,42.6008],[-2.9298,42.6112]]]]}},{"type":"Feature","properties":{"NUTS_ID":"ES_C3","Couleur":3,"name":"02_ES","LONG":3178049,"LAT":2154894,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":41.9191,"Long":-5.0193},"geometry":{"type":"MultiPolygon","coordinates":[[[[-4.6061,43.0357],[-4.5906,43.0258],[-4.5743,43.0269],[-4.5585,43.0195],[-4.521,43.0473],[-4.4959,43.0383],[-4.4757,43.0386],[-4.4712,43.0516],[-4.4625,43.0595],[-4.4425,43.0558],[-4.4319,43.0456],[-4.3981,43.0348],[-4.3862,43.016],[-4.3744,43.006],[-4.3731,42.9956],[-4.3485,42.9725],[-4.2622,42.9652],[-4.2403,42.9565],[-4.2367,42.9171],[-4.2226,42.9109],[-4.2308,42.9032],[-4.2235,42.875],[-4.2247,42.8567],[-4.2143,42.8471],[-4.1997,42.8445],[-4.1812,42.8586],[-4.1676,42.8595],[-4.1499,42.8711],[-4.1443,42.8686],[-4.149,42.8657],[-4.1453,42.8622],[-4.1261,42.8566],[-4.1405,42.8289],[-4.1581,42.8376],[-4.1655,42.8282],[-4.1832,42.8217],[-4.1839,42.812],[-4.1737,42.8085],[-4.1499,42.7893],[-4.1227,42.7945],[-4.0985,42.7911],[-4.0997,42.7845],[-4.0941,42.7733],[-4.0854,42.7721],[-4.0814,42.7614],[-4.0459,42.7666],[-4.0494,42.7812],[-4.0438,42.7887],[-4.0299,42.7883],[-4.0329,42.8012],[-4.0142,42.8063],[-4.0208,42.8193],[-4.0111,42.8303],[-4.0036,42.8314],[-3.9965,42.7989],[-3.9997,42.7689],[-3.9816,42.7683],[-3.9789,42.758],[-3.9466,42.7619],[-3.9488,42.7675],[-3.9306,42.7744],[-3.9265,42.7701],[-3.911,42.7683],[-3.9097,42.7864],[-3.9005,42.7892],[-3.8945,42.8045],[-3.8634,42.7864],[-3.8233,42.7988],[-3.8161,42.8105],[-3.8197,42.8278],[-3.8165,42.8359],[-3.8338,42.8521],[-3.8254,42.8686],[-3.8368,42.8787],[-3.8638,42.8898],[-3.8741,42.8751],[-3.8739,42.8631],[-3.8685,42.8567],[-3.8798,42.8513],[-3.8993,42.8599],[-3.9149,42.86],[-3.9148,42.866],[-3.8975,42.8802],[-3.9025,42.8849],[-3.9244,42.8892],[-3.9103,42.8919],[-3.9028,42.8862],[-3.893,42.8873],[-3.8987,42.9036],[-3.9106,42.9109],[-3.9071,42.913],[-3.8914,42.9028],[-3.8686,42.899],[-3.859,42.9036],[-3.8521,42.9189],[-3.8336,42.9179],[-3.8299,42.9276],[-3.8396,42.9397],[-3.8671,42.9548],[-3.8702,42.9496],[-3.8874,42.9487],[-3.8916,42.9252],[-3.9115,42.9233],[-3.9234,42.9156],[-3.9264,42.9044],[-3.9336,42.8995],[-3.9376,42.9048],[-3.9297,42.9146],[-3.9434,42.9092],[-3.9729,42.9116],[-3.991,42.931],[-3.9717,42.9749],[-3.9563,42.9974],[-3.9455,43.0057],[-3.9093,43.016],[-3.8911,43.0416],[-3.8492,43.041],[-3.8498,43.0483],[-3.8338,43.0593],[-3.8347,43.0646],[-3.8507,43.077],[-3.847,43.0843],[-3.8233,43.0805],[-3.8102,43.0866],[-3.7903,43.0781],[-3.7758,43.0825],[-3.7646,43.081],[-3.757,43.085],[-3.7598,43.0921],[-3.7549,43.1005],[-3.7291,43.1044],[-3.7047,43.1162],[-3.7038,43.1234],[-3.6838,43.1362],[-3.6767,43.155],[-3.668,43.1576],[-3.6668,43.1628],[-3.6553,43.1711],[-3.6582,43.1776],[-3.6502,43.1809],[-3.6125,43.1695],[-3.6036,43.1496],[-3.5856,43.1544],[-3.5437,43.1481],[-3.4926,43.1338],[-3.4713,43.1367],[-3.4448,43.1315],[-3.4177,43.1334],[-3.3871,43.1417],[-3.3711,43.1514],[-3.3507,43.1543],[-3.342,43.1668],[-3.3103,43.1721],[-3.2975,43.1826],[-3.2781,43.1895],[-3.2781,43.1944],[-3.2572,43.1951],[-3.2535,43.1985],[-3.2241,43.1701],[-3.2079,43.1794],[-3.1995,43.1712],[-3.187,43.1692],[-3.1681,43.1785],[-3.158,43.178],[-3.1483,43.1739],[-3.1414,43.1615],[-3.1619,43.1542],[-3.1668,43.1469],[-3.1615,43.1431],[-3.1818,43.1208],[-3.1759,43.113],[-3.1521,43.1041],[-3.1415,43.1106],[-3.134,43.0972],[-3.1582,43.074],[-3.1403,43.0671],[-3.1477,43.0344],[-3.1419,43.0298],[-3.1703,43.029],[-3.1778,43.0219],[-3.1448,43.0068],[-3.1244,43.0077],[-3.089,43.0016],[-3.0771,43.0085],[-3.0603,43.0035],[-3.0606,42.9982],[-3.037,42.9822],[-3.0447,42.9741],[-3.0415,42.9699],[-3.0204,42.9609],[-3.0175,42.9537],[-2.9961,42.9528],[-2.9814,42.9396],[-2.9977,42.9262],[-3.0054,42.9267],[-3.0189,42.9085],[-3.0921,42.8987],[-3.1047,42.9101],[-3.1084,42.9061],[-3.1266,42.904],[-3.1329,42.9134],[-3.1416,42.9132],[-3.1509,42.9191],[-3.1448,42.9346],[-3.1808,42.9445],[-3.2116,42.9443],[-3.2248,42.9496],[-3.2356,42.9438],[-3.2354,42.933],[-3.2458,42.9238],[-3.2486,42.9121],[-3.2773,42.9015],[-3.2764,42.887],[-3.2868,42.8851],[-3.2826,42.8755],[-3.2903,42.8364],[-3.281,42.8001],[-3.2551,42.7701],[-3.2364,42.7421],[-3.2126,42.7089],[-3.1814,42.6736],[-3.1607,42.6488],[-3.1358,42.6301],[-3.114,42.6187],[-3.0985,42.6145],[-3.0902,42.6156],[-3.0864,42.6277],[-3.0705,42.6214],[-3.0604,42.6025],[-3.0652,42.5941],[-3.0599,42.5892],[-3.0862,42.5822],[-3.0824,42.574],[-3.1048,42.5539],[-3.1343,42.542],[-3.1254,42.5331],[-3.1075,42.5287],[-3.0999,42.5361],[-3.0893,42.5382],[-3.0726,42.5289],[-3.0794,42.499],[-3.0947,42.488],[-3.0904,42.4779],[-3.0823,42.4745],[-3.0733,42.4765],[-3.0642,42.4709],[-3.046,42.4451],[-3.0633,42.4249],[-3.0574,42.4171],[-3.064,42.4043],[-3.0532,42.3734],[-3.0569,42.3703],[-3.0658,42.3744],[-3.0827,42.3974],[-3.0782,42.4157],[-3.0904,42.4223],[-3.1014,42.4168],[-3.0958,42.4052],[-3.1053,42.3863],[-3.0848,42.3854],[-3.0633,42.3628],[-3.0637,42.3561],[-3.1097,42.3514],[-3.1107,42.3386],[-3.0959,42.3269],[-3.1066,42.3118],[-3.0959,42.2874],[-3.0962,42.279],[-3.0896,42.273],[-3.0977,42.2631],[-3.0886,42.2457],[-3.1021,42.2333],[-3.0994,42.2223],[-3.1038,42.2137],[-3.128,42.2016],[-3.1286,42.1966],[-3.1153,42.1882],[-3.1144,42.1773],[-3.0898,42.1593],[-3.0857,42.1342],[-3.0737,42.1358],[-3.0592,42.1271],[-3.0344,42.0859],[-3.0242,42.0887],[-3.0039,42.0833],[-2.9932,42.0875],[-2.9777,42.0839],[-2.9407,42.0892],[-2.9312,42.0868],[-2.9325,42.0809],[-2.9152,42.039],[-2.9136,42.0228],[-2.8912,42.017],[-2.8895,42.0104],[-2.8838,42.0095],[-2.8624,42.0192],[-2.8568,42.0288],[-2.8446,42.0345],[-2.8237,42.041],[-2.8127,42.0366],[-2.805,42.0459],[-2.7983,42.0473],[-2.795,42.0635],[-2.8034,42.0805],[-2.7902,42.0942],[-2.7916,42.1087],[-2.7707,42.1249],[-2.7512,42.1178],[-2.7464,42.1239],[-2.7347,42.1249],[-2.706,42.1035],[-2.7104,42.0963],[-2.7084,42.0863],[-2.7576,42.0326],[-2.7462,42.0087],[-2.7239,42.0155],[-2.5073,41.8383],[-2.4886,41.689],[-2.4699,41.5117],[-2.4559,41.367],[-2.5259,41.2504],[-2.6892,41.1524],[-2.7767,41.0462],[-2.8397,40.9926],[-2.919,40.9902],[-2.961,40.8804],[-2.9814,40.8867],[-2.9793,40.8938],[-2.9888,40.9081],[-2.9747,40.921],[-3.021,40.9089],[-3.0304,40.9107],[-3.043,40.9115],[-3.162,40.9324],[-3.2476,40.9104],[-3.2827,40.928],[-3.3112,40.9302],[-3.3705,40.9126],[-3.4337,40.9376],[-3.435,40.9461],[-3.4167,40.9773],[-3.4182,40.9876],[-3.3946,41.0003],[-3.3997,41.0093],[-3.4221,41.026],[-3.429,41.0399],[-3.4383,41.0426],[-3.4275,41.0658],[-3.4279,41.0836],[-3.4478,41.0815],[-3.4737,41.0955],[-3.4884,41.0943],[-3.4922,41.1135],[-3.4996,41.1237],[-3.5406,41.1505],[-3.5366,41.1604],[-3.5398,41.165],[-3.5575,41.1645],[-3.5691,41.1594],[-3.5835,41.1611],[-3.5917,41.1543],[-3.6003,41.1553],[-3.6137,41.1491],[-3.6319,41.1339],[-3.6358,41.1242],[-3.645,41.1197],[-3.6507,41.1073],[-3.6758,41.0872],[-3.7017,41.0802],[-3.7393,41.0539],[-3.7498,41.0351],[-3.7819,41.0002],[-3.815,40.9863],[-3.8601,40.9788],[-3.8694,40.9715],[-3.8788,40.9755],[-3.8951,40.967],[-3.9286,41.0406],[-4.0252,41.1327],[-4.148,41.2205],[-4.2731,41.2314],[-4.2073,41.0384],[-4.2599,41.0208],[-4.2665,40.9111],[-4.238,40.8716],[-4.238,40.8365],[-4.2446,40.797],[-4.249,40.7465],[-4.2402,40.6983],[-4.2576,40.6534],[-4.2441,40.6024],[-4.2621,40.6056],[-4.2725,40.6291],[-4.29,40.628],[-4.2901,40.6084],[-4.2786,40.6035],[-4.2897,40.5645],[-4.323,40.5511],[-4.3286,40.5348],[-4.3211,40.5317],[-4.328,40.5079],[-4.3235,40.5021],[-4.3241,40.4799],[-4.3174,40.4646],[-4.3193,40.459],[-4.327,40.459],[-4.3209,40.4515],[-4.3327,40.4488],[-4.3325,40.4412],[-4.341,40.438],[-4.3341,40.4254],[-4.3239,40.4241],[-4.3264,40.4136],[-4.3209,40.4107],[-4.3341,40.4089],[-4.3521,40.4135],[-4.3769,40.4074],[-4.4026,40.4114],[-4.4219,40.4064],[-4.4426,40.3857],[-4.4398,40.3503],[-4.4607,40.3404],[-4.4537,40.333],[-4.4555,40.3199],[-4.4856,40.3211],[-4.5044,40.3151],[-4.5268,40.3383],[-4.5264,40.3449],[-4.5465,40.3421],[-4.5291,40.2928],[-4.5555,40.2771],[-4.5564,40.2646],[-4.5692,40.2572],[-4.5659,40.2397],[-4.5592,40.2346],[-4.5608,40.2228],[-4.5657,40.2181],[-4.579,40.2174],[-4.6169,40.2002],[-4.654,40.1983],[-4.6628,40.2061],[-4.6738,40.2097],[-4.6793,40.207],[-4.6873,40.212],[-4.6897,40.2293],[-4.6866,40.2358],[-4.6937,40.2411],[-4.6872,40.2496],[-4.7029,40.2614],[-4.6942,40.2664],[-4.6982,40.2822],[-4.7137,40.2808],[-4.7122,40.276],[-4.7286,40.2706],[-4.7427,40.2753],[-4.7616,40.2609],[-4.8035,40.2753],[-4.8113,40.264],[-4.81,40.2594],[-4.8183,40.2548],[-4.8077,40.2354],[-4.8217,40.2303],[-4.8216,40.2225],[-4.8354,40.2125],[-4.8627,40.2051],[-4.8753,40.1978],[-4.8784,40.1903],[-4.8852,40.1909],[-4.9247,40.17],[-4.9181,40.1527],[-4.9255,40.1361],[-4.9563,40.1334],[-4.9594,40.1305],[-4.9554,40.1262],[-4.959,40.1261],[-4.9546,40.1212],[-5.0134,40.1111],[-5.0067,40.13],[-5.0171,40.1459],[-5.0186,40.1591],[-5.0339,40.1567],[-5.0421,40.1511],[-5.0661,40.1513],[-5.0783,40.1412],[-5.0774,40.1365],[-5.0855,40.1351],[-5.0878,40.1244],[-5.1012,40.1273],[-5.1054,40.1188],[-5.1401,40.0972],[-5.1414,40.0918],[-5.1547,40.0929],[-5.1724,40.0848],[-5.1834,40.0881],[-5.1923,40.0836],[-5.2046,40.0841],[-5.2114,40.0917],[-5.2105,40.1054],[-5.2164,40.108],[-5.2608,40.108],[-5.2672,40.1111],[-5.3159,40.1071],[-5.336,40.1159],[-5.3371,40.1243],[-5.346,40.1297],[-5.3563,40.1517],[-5.368,40.1641],[-5.3645,40.1787],[-5.3683,40.1992],[-5.3641,40.2027],[-5.3697,40.2184],[-5.3588,40.2274],[-5.3451,40.265],[-5.395,40.2505],[-5.4118,40.2553],[-5.4299,40.2523],[-5.4398,40.2337],[-5.4681,40.2242],[-5.471,40.2079],[-5.531,40.1948],[-5.5482,40.1973],[-5.5944,40.2164],[-5.6101,40.2155],[-5.6189,40.2239],[-5.6137,40.2333],[-5.622,40.2459],[-5.6492,40.2498],[-5.66,40.2578],[-5.6567,40.2704],[-5.6927,40.2921],[-5.6996,40.2889],[-5.7376,40.2942],[-5.765,40.2808],[-5.7932,40.2867],[-5.8028,40.2977],[-5.7933,40.3003],[-5.782,40.3125],[-5.795,40.3513],[-5.7997,40.3537],[-5.8218,40.3485],[-5.8472,40.3281],[-5.8537,40.3315],[-5.85,40.3382],[-5.855,40.3384],[-5.8741,40.3267],[-5.8843,40.3266],[-5.8935,40.3187],[-5.8962,40.3053],[-5.914,40.2871],[-5.9172,40.2777],[-5.9685,40.2896],[-6.0062,40.3062],[-6.0196,40.3227],[-6.0161,40.3403],[-6.0522,40.3416],[-6.1058,40.3568],[-6.0973,40.3564],[-6.0925,40.3618],[-6.0822,40.3635],[-6.0813,40.3731],[-6.0864,40.3781],[-6.0722,40.387],[-6.0852,40.3905],[-6.065,40.3964],[-6.0985,40.4136],[-6.1159,40.4147],[-6.1189,40.4193],[-6.1295,40.4208],[-6.1162,40.4416],[-6.1471,40.4362],[-6.156,40.4479],[-6.1545,40.4546],[-6.1805,40.4622],[-6.1987,40.4815],[-6.2347,40.4867],[-6.24,40.4859],[-6.2551,40.47],[-6.2638,40.4716],[-6.2754,40.4586],[-6.3447,40.4428],[-6.346,40.4371],[-6.3646,40.4226],[-6.3659,40.4174],[-6.3615,40.4154],[-6.3703,40.4025],[-6.4189,40.3993],[-6.4397,40.3816],[-6.4384,40.3728],[-6.4676,40.3724],[-6.5363,40.3473],[-6.5605,40.3291],[-6.5648,40.3147],[-6.5568,40.3065],[-6.5596,40.2958],[-6.5562,40.2908],[-6.5871,40.2708],[-6.6347,40.2647],[-6.64,40.269],[-6.6718,40.2633],[-6.6778,40.2581],[-6.6778,40.251],[-6.6902,40.2427],[-6.7033,40.2511],[-6.7116,40.267],[-6.7183,40.2693],[-6.7515,40.2503],[-6.7557,40.239],[-6.7836,40.2494],[-6.8022,40.2496],[-6.8002,40.2421],[-6.8068,40.2416],[-6.8213,40.2447],[-6.8228,40.2483],[-6.8346,40.2476],[-6.84,40.2556],[-6.8469,40.2545],[-6.8651,40.2707],[-6.8613,40.2996],[-6.8184,40.3258],[-6.7942,40.3289],[-6.7905,40.3347],[-6.7935,40.3561],[-6.781,40.3647],[-6.8348,40.4082],[-6.8497,40.4526],[-6.8354,40.4755],[-6.8174,40.4904],[-6.8148,40.5017],[-6.7951,40.512],[-6.8049,40.5361],[-6.8009,40.5507],[-6.8449,40.5659],[-6.8378,40.5798],[-6.8373,40.5948],[-6.8157,40.6176],[-6.7939,40.6617],[-6.8055,40.6687],[-6.8026,40.6804],[-6.8134,40.7086],[-6.811,40.7174],[-6.8247,40.7297],[-6.8312,40.7527],[-6.8259,40.7679],[-6.828,40.7773],[-6.817,40.8012],[-6.8244,40.8262],[-6.821,40.8365],[-6.8261,40.8433],[-6.8022,40.8451],[-6.8003,40.8483],[-6.8088,40.8821],[-6.8301,40.8849],[-6.8485,40.9009],[-6.849,40.9246],[-6.8602,40.949],[-6.8871,40.9718],[-6.9086,40.999],[-6.9216,41.0034],[-6.9314,41.0177],[-6.9299,41.0295],[-6.9159,41.0389],[-6.866,41.0269],[-6.8361,41.0283],[-6.8084,41.0365],[-6.8092,41.044],[-6.7799,41.0675],[-6.7734,41.0748],[-6.7709,41.0861],[-6.7538,41.1033],[-6.7703,41.1245],[-6.7674,41.1353],[-6.752,41.1408],[-6.7307,41.1624],[-6.7019,41.18],[-6.6966,41.1864],[-6.699,41.193],[-6.6909,41.1954],[-6.6898,41.2052],[-6.692,41.2084],[-6.6804,41.2186],[-6.6528,41.2357],[-6.6473,41.2478],[-6.63,41.2427],[-6.6089,41.2498],[-6.5991,41.2443],[-6.5914,41.2555],[-6.5861,41.2518],[-6.5849,41.2419],[-6.5713,41.2391],[-6.552,41.2453],[-6.5467,41.2582],[-6.5218,41.276],[-6.5099,41.2638],[-6.4812,41.273],[-6.4788,41.277],[-6.4918,41.2857],[-6.4797,41.2944],[-6.4692,41.3011],[-6.4516,41.2984],[-6.4381,41.3053],[-6.4393,41.3123],[-6.4348,41.3193],[-6.4187,41.3268],[-6.4272,41.3343],[-6.4168,41.3475],[-6.3872,41.3533],[-6.3769,41.3612],[-6.3871,41.3634],[-6.394,41.3709],[-6.3899,41.3854],[-6.3667,41.394],[-6.364,41.3857],[-6.3527,41.3783],[-6.3183,41.3861],[-6.3184,41.3983],[-6.3327,41.4055],[-6.3328,41.4115],[-6.328,41.4158],[-6.3141,41.417],[-6.2997,41.4294],[-6.295,41.4357],[-6.3058,41.4495],[-6.2874,41.4654],[-6.2851,41.4784],[-6.2624,41.4865],[-6.2682,41.4936],[-6.2667,41.4973],[-6.2571,41.4965],[-6.2505,41.5007],[-6.2559,41.5139],[-6.2363,41.5224],[-6.2175,41.5432],[-6.2112,41.5605],[-6.1894,41.575],[-6.2009,41.5944],[-6.2352,41.6072],[-6.2535,41.6331],[-6.2883,41.6565],[-6.3429,41.6734],[-6.3606,41.6775],[-6.375,41.6738],[-6.406,41.6811],[-6.4252,41.6792],[-6.443,41.6849],[-6.4523,41.6811],[-6.4577,41.6669],[-6.4994,41.6572],[-6.5121,41.6613],[-6.5277,41.675],[-6.5482,41.6856],[-6.5546,41.7004],[-6.5442,41.6988],[-6.5429,41.7038],[-6.5499,41.7108],[-6.5499,41.7184],[-6.5552,41.7209],[-6.558,41.7381],[-6.569,41.7435],[-6.565,41.7515],[-6.5553,41.7571],[-6.5554,41.7666],[-6.5451,41.7796],[-6.5473,41.795],[-6.5428,41.8053],[-6.5376,41.8071],[-6.5383,41.8128],[-6.5333,41.8144],[-6.5288,41.8308],[-6.5321,41.8352],[-6.5223,41.8543],[-6.5259,41.8596],[-6.5158,41.8713],[-6.5179,41.8754],[-6.5712,41.8836],[-6.5611,41.896],[-6.5458,41.9359],[-6.5491,41.9445],[-6.5832,41.9654],[-6.5885,41.9678],[-6.5994,41.9482],[-6.6087,41.9484],[-6.6212,41.94],[-6.6356,41.9422],[-6.6993,41.9333],[-6.7506,41.9434],[-6.7687,41.9839],[-6.8115,41.9925],[-6.8102,41.9702],[-6.8211,41.9463],[-6.8301,41.9439],[-6.848,41.9424],[-6.8696,41.9475],[-6.8925,41.9398],[-6.9329,41.9467],[-6.9417,41.9443],[-6.9578,41.9693],[-6.9835,41.9729],[-6.9911,41.9883],[-6.9795,42.0002],[-6.9628,42.0292],[-6.9731,42.0391],[-6.9748,42.0552],[-7.0118,42.0524],[-7.031,42.0633],[-7.0332,42.0746],[-7.02,42.0831],[-7.0027,42.0842],[-7.0027,42.0967],[-6.9903,42.1011],[-6.9898,42.1213],[-6.9564,42.1295],[-6.949,42.1357],[-6.9445,42.1417],[-6.9435,42.1723],[-6.9148,42.1894],[-6.9011,42.1896],[-6.8888,42.2018],[-6.8933,42.2072],[-6.8869,42.2143],[-6.8699,42.2237],[-6.8436,42.2283],[-6.8023,42.2185],[-6.7967,42.209],[-6.7871,42.2157],[-6.8032,42.2387],[-6.7959,42.2423],[-6.7915,42.2521],[-6.7843,42.2536],[-6.767,42.2574],[-6.765,42.2727],[-6.7411,42.2986],[-6.7432,42.3033],[-6.734,42.318],[-6.7407,42.3284],[-6.7339,42.3591],[-6.7578,42.3675],[-6.7665,42.365],[-6.7689,42.373],[-6.7786,42.381],[-6.7959,42.382],[-6.8022,42.3863],[-6.8208,42.3856],[-6.8235,42.3919],[-6.8415,42.4029],[-6.8435,42.4058],[-6.8313,42.4083],[-6.8289,42.4168],[-6.8209,42.4214],[-6.8248,42.4259],[-6.8143,42.4273],[-6.8218,42.4333],[-6.8228,42.4529],[-6.8114,42.4612],[-6.8084,42.469],[-6.8255,42.4857],[-6.8228,42.4908],[-6.8371,42.4957],[-6.841,42.4889],[-6.8606,42.4889],[-6.8768,42.4992],[-6.9165,42.5084],[-6.925,42.5194],[-6.9322,42.5205],[-6.9605,42.5175],[-6.9735,42.494],[-6.9785,42.4932],[-7.0044,42.5039],[-7.0287,42.4978],[-7.0326,42.5043],[-7.0457,42.5078],[-7.077,42.5082],[-7.071,42.5112],[-7.0598,42.5293],[-7.0613,42.5371],[-7.0709,42.5379],[-7.0559,42.5597],[-7.0547,42.5716],[-7.0341,42.5841],[-7.0501,42.5973],[-7.0455,42.6041],[-7.047,42.6327],[-7.0178,42.6452],[-7.0043,42.6428],[-7.01,42.6498],[-7.0215,42.6519],[-7.0126,42.6578],[-7.0174,42.6611],[-7.0155,42.6646],[-7.0318,42.6755],[-7.0342,42.6843],[-7.0452,42.6947],[-7.0277,42.7114],[-7.0199,42.7102],[-7.0216,42.7143],[-7.0109,42.7236],[-6.9902,42.7266],[-6.9837,42.7187],[-6.9729,42.725],[-6.9691,42.7293],[-6.9728,42.7379],[-6.9667,42.7387],[-6.9678,42.7475],[-6.9595,42.755],[-6.9469,42.7415],[-6.9362,42.7407],[-6.9015,42.7612],[-6.8908,42.7772],[-6.8674,42.7871],[-6.864,42.7954],[-6.8692,42.8008],[-6.8416,42.8244],[-6.8413,42.8323],[-6.8482,42.8334],[-6.8595,42.8485],[-6.8713,42.8738],[-6.8337,42.882],[-6.8404,42.878],[-6.8354,42.8736],[-6.8167,42.8686],[-6.8149,42.8708],[-6.8277,42.8799],[-6.8331,42.8978],[-6.848,42.9143],[-6.8242,42.915],[-6.8358,42.9163],[-6.8418,42.9281],[-6.8346,42.9409],[-6.8361,42.9577],[-6.8731,42.9885],[-6.9103,42.9901],[-6.9406,43.0113],[-6.9465,43.0324],[-6.9571,43.0367],[-6.9579,43.0291],[-6.9644,43.0265],[-6.956,42.9961],[-6.9641,42.9953],[-6.9619,42.9907],[-6.9751,42.9962],[-6.9796,43.0047],[-6.9838,43.004],[-6.9861,43.0126],[-6.9971,43.0194],[-6.9969,43.0277],[-6.9865,43.0295],[-6.9819,43.0413],[-6.9758,43.0318],[-6.969,43.0327],[-6.962,43.052],[-6.9686,43.0566],[-6.9661,43.0613],[-6.956,43.0635],[-6.9518,43.0761],[-6.9372,43.084],[-6.9233,43.0818],[-6.9156,43.0734],[-6.894,43.0917],[-6.8713,43.0911],[-6.8627,43.1029],[-6.8276,43.1231],[-6.8233,43.1436],[-6.8367,43.1573],[-6.8392,43.1663],[-6.8559,43.1722],[-6.8618,43.1822],[-6.8717,43.1798],[-6.8682,43.19],[-6.8746,43.1868],[-6.877,43.1747],[-6.8862,43.1667],[-6.8821,43.1605],[-6.8854,43.1567],[-6.9021,43.155],[-6.9194,43.1409],[-6.9373,43.1393],[-6.9415,43.1318],[-6.9573,43.1354],[-6.9615,43.1456],[-6.9734,43.1495],[-6.9807,43.1665],[-6.9651,43.187],[-6.971,43.2042],[-6.9863,43.2021],[-6.9927,43.2086],[-7.0014,43.2072],[-7.0096,43.2228],[-7.017,43.222],[-7.02,43.2132],[-7.0341,43.2281],[-7.0465,43.2312],[-7.0616,43.244],[-7.0715,43.2711],[-7.0664,43.2796],[-7.0652,43.2991],[-7.0597,43.3053],[-7.0739,43.3056],[-7.0819,43.3001],[-7.1009,43.3037],[-7.1157,43.3265],[-7.1307,43.3302],[-7.1327,43.3477],[-7.1282,43.3555],[-7.1315,43.3628],[-7.1275,43.3725],[-7.139,43.3833],[-7.1595,43.3746],[-7.1718,43.3833],[-7.1767,43.3825],[-7.177,43.3913],[-7.1824,43.3924],[-7.1685,43.4035],[-7.169,43.4088],[-7.1768,43.4146],[-7.1726,43.4181],[-7.1729,43.4303],[-7.142,43.4307],[-7.1294,43.4237],[-7.1127,43.4252],[-7.1093,43.4289],[-7.1028,43.4269],[-7.1003,43.4289],[-7.1045,43.4333],[-7.0971,43.4328],[-7.0992,43.4404],[-7.0879,43.4458],[-7.0903,43.4539],[-7.0693,43.47],[-7.0482,43.477],[-7.0449,43.4952],[-7.0476,43.5072],[-7.0403,43.524],[-7.0301,43.5349],[-7.0318,43.5445],[-7.0214,43.5492],[-7.0289,43.5569],[-7.0222,43.5596],[-6.997,43.5543],[-6.9736,43.5571],[-6.9693,43.5616],[-6.9566,43.5626],[-6.9461,43.5751],[-6.9363,43.5697],[-6.9181,43.5722],[-6.9111,43.5667],[-6.8901,43.5698],[-6.8749,43.5625],[-6.8667,43.57],[-6.8669,43.5669],[-6.8552,43.5682],[-6.8497,43.5639],[-6.8334,43.5672],[-6.8124,43.5547],[-6.7837,43.5564],[-6.7826,43.5653],[-6.7671,43.5689],[-6.7603,43.5619],[-6.7451,43.566],[-6.7248,43.5563],[-6.7104,43.5634],[-6.6787,43.5595],[-6.6588,43.5671],[-6.6322,43.5676],[-6.6278,43.5728],[-6.6147,43.5616],[-6.6028,43.5652],[-6.6036,43.5569],[-6.5984,43.5538],[-6.5751,43.5575],[-6.5585,43.553],[-6.543,43.5542],[-6.5335,43.5451],[-6.5234,43.5507],[-6.5128,43.5472],[-6.4982,43.5518],[-6.4885,43.5491],[-6.4818,43.5533],[-6.4754,43.5497],[-6.4718,43.5517],[-6.4753,43.5613],[-6.4697,43.5706],[-6.4301,43.5528],[-6.4212,43.5535],[-6.4155,43.5587],[-6.4037,43.5561],[-6.3966,43.5601],[-6.3737,43.5555],[-6.3694,43.5511],[-6.3446,43.5541],[-6.3245,43.5625],[-6.3028,43.5633],[-6.2949,43.5704],[-6.2559,43.5776],[-6.2464,43.5833],[-6.2425,43.5897],[-6.2452,43.5951],[-6.2269,43.589],[-6.2207,43.5792],[-6.2094,43.5851],[-6.2028,43.5724],[-6.1943,43.5756],[-6.1936,43.5804],[-6.1883,43.5795],[-6.1922,43.5696],[-6.1874,43.5635],[-6.1702,43.5692],[-6.1533,43.5675],[-6.1461,43.5635],[-6.1354,43.5644],[-6.1325,43.5582],[-6.1168,43.5551],[-6.1036,43.5606],[-6.0925,43.5579],[-6.0894,43.5625],[-6.0646,43.5655],[-6.0276,43.5862],[-6.0172,43.5876],[-6.0175,43.5824],[-5.9953,43.5744],[-5.9869,43.58],[-5.9603,43.5784],[-5.9474,43.5841],[-5.9398,43.5933],[-5.9459,43.5984],[-5.9337,43.6012],[-5.9268,43.5983],[-5.9128,43.6082],[-5.916,43.6117],[-5.911,43.6164],[-5.9162,43.6198],[-5.9138,43.6242],[-5.8812,43.6234],[-5.8774,43.6294],[-5.8593,43.6358],[-5.8588,43.655],[-5.8399,43.661],[-5.8417,43.656],[-5.8352,43.6533],[-5.8358,43.6454],[-5.8301,43.6401],[-5.8107,43.6423],[-5.8101,43.6327],[-5.7943,43.6362],[-5.7916,43.6303],[-5.7812,43.6285],[-5.7919,43.6141],[-5.7708,43.608],[-5.7678,43.6048],[-5.7706,43.6012],[-5.7572,43.5845],[-5.7471,43.5844],[-5.735,43.5738],[-5.7099,43.5688],[-5.6981,43.5754],[-5.7011,43.569],[-5.6961,43.5672],[-5.6764,43.5712],[-5.6943,43.5662],[-5.6924,43.5614],[-5.7015,43.5659],[-5.702,43.5579],[-5.6953,43.5494],[-5.6865,43.5597],[-5.6837,43.5575],[-5.6958,43.5439],[-5.6812,43.5454],[-5.6794,43.5415],[-5.6646,43.544],[-5.6638,43.5497],[-5.6584,43.5436],[-5.6493,43.5425],[-5.6383,43.5519],[-5.6287,43.5501],[-5.6185,43.5574],[-5.6093,43.5497],[-5.5962,43.5476],[-5.5481,43.5502],[-5.5315,43.5461],[-5.517,43.5531],[-5.5083,43.5488],[-5.4985,43.5504],[-5.4945,43.5448],[-5.4676,43.5528],[-5.4317,43.5514],[-5.4088,43.5562],[-5.3966,43.5503],[-5.3988,43.5443],[-5.3883,43.5407],[-5.3868,43.5305],[-5.3856,43.5365],[-5.3752,43.5365],[-5.3718,43.5403],[-5.3537,43.5323],[-5.3482,43.5355],[-5.2957,43.5363],[-5.2664,43.5197],[-5.2693,43.5095],[-5.2656,43.5059],[-5.2478,43.5008],[-5.2147,43.4743],[-5.1905,43.4786],[-5.1684,43.4763],[-5.145,43.4779],[-5.129,43.4852],[-5.1213,43.4842],[-5.1157,43.4768],[-5.0865,43.4762],[-5.0724,43.4661],[-5.062,43.4669],[-5.0667,43.4698],[-5.0361,43.4607],[-4.9391,43.4588],[-4.9284,43.4632],[-4.9267,43.4584],[-4.9022,43.4527],[-4.902,43.4492],[-4.8856,43.4485],[-4.8711,43.4403],[-4.8614,43.4434],[-4.8511,43.4411],[-4.8417,43.4469],[-4.8361,43.4388],[-4.7696,43.4304],[-4.7492,43.4232],[-4.7444,43.4163],[-4.7236,43.4171],[-4.7115,43.4096],[-4.6782,43.4097],[-4.6531,43.4014],[-4.6203,43.3998],[-4.6194,43.3959],[-4.5813,43.4],[-4.5778,43.3949],[-4.56,43.3912],[-4.5578,43.3982],[-4.5345,43.4006],[-4.5123,43.3932],[-4.4955,43.3975],[-4.5327,43.3684],[-4.5866,43.3159],[-4.6073,43.2717],[-4.6212,43.197],[-4.6322,43.1707],[-4.6419,43.0919],[-4.6239,43.0712],[-4.6061,43.0357]]],[[[-2.9298,42.6112],[-2.9396,42.5944],[-2.9452,42.6039],[-2.9345,42.614],[-2.9298,42.6112]]],[[[-3.2495,43.2596],[-3.2522,43.2466],[-3.2698,43.232],[-3.2675,43.2244],[-3.2714,43.2175],[-3.2652,43.2057],[-3.2871,43.2001],[-3.2979,43.2066],[-3.2926,43.2191],[-3.2968,43.2219],[-3.2927,43.241],[-3.3056,43.2525],[-3.3046,43.2586],[-3.267,43.2669],[-3.2495,43.2596]]]]}},{"type":"Feature","properties":{"NUTS_ID":"ES_C10","Couleur":7,"name":"09_ES","LONG":3120911,"LAT":1729661,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":37.7628,"Long":-3.1419},"geometry":{"type":"MultiPolygon","coordinates":[[[[-2.5726,38.4877],[-2.4221,38.4763],[-2.317,38.4763],[-2.1705,38.4874],[-2.0543,38.515],[-1.941,38.5399],[-1.7944,38.5509],[-1.6285,38.5509],[-1.5179,38.5509],[-1.3161,38.5399],[-1.1944,38.5122],[-1.0562,38.4542],[-0.9373,38.385],[-0.8405,38.291],[-0.8018,38.2689],[-0.752,38.2081],[-0.6856,38.1417],[-0.6525,38.0892],[-0.6505,38.0547],[-0.6499,38.0295],[-0.6523,38.0102],[-0.6479,37.9997],[-0.653,37.9975],[-0.657,37.9844],[-0.687,37.9644],[-0.6808,37.9686],[-0.681,37.9743],[-0.6869,37.9758],[-0.6962,37.97],[-0.7054,37.941],[-0.7183,37.9351],[-0.7224,37.9207],[-0.7192,37.9122],[-0.7289,37.9138],[-0.7403,37.9092],[-0.7501,37.8987],[-0.7539,37.872],[-0.7611,37.8651],[-0.7621,37.847],[-0.7581,37.8167],[-0.7481,37.7907],[-0.7548,37.788],[-0.775,37.8184],[-0.7843,37.8192],[-0.7964,37.8104],[-0.8036,37.7977],[-0.8003,37.7836],[-0.8041,37.777],[-0.8273,37.7558],[-0.845,37.7489],[-0.86,37.719],[-0.8253,37.6753],[-0.8052,37.6592],[-0.7534,37.6417],[-0.7452,37.6338],[-0.728,37.6346],[-0.7223,37.6429],[-0.7223,37.6545],[-0.7247,37.6598],[-0.7399,37.6592],[-0.7331,37.6621],[-0.7324,37.6667],[-0.7443,37.7073],[-0.7392,37.7375],[-0.7453,37.7479],[-0.7419,37.7433],[-0.7336,37.7468],[-0.742,37.7488],[-0.757,37.782],[-0.7467,37.7813],[-0.7417,37.7757],[-0.7453,37.7591],[-0.7282,37.747],[-0.7329,37.7469],[-0.7326,37.7382],[-0.7381,37.7365],[-0.7408,37.7099],[-0.7265,37.6691],[-0.7072,37.6391],[-0.6972,37.6331],[-0.6886,37.6356],[-0.6921,37.6312],[-0.7017,37.6306],[-0.7208,37.6059],[-0.7827,37.5945],[-0.7915,37.588],[-0.8069,37.585],[-0.8195,37.5752],[-0.8402,37.5776],[-0.8415,37.5853],[-0.8508,37.5877],[-0.8532,37.5817],[-0.8709,37.5761],[-0.8785,37.578],[-0.8791,37.5698],[-0.8948,37.5681],[-0.9159,37.5597],[-0.9197,37.5546],[-0.9379,37.5602],[-0.9512,37.5586],[-0.9623,37.5613],[-0.9451,37.5711],[-0.975,37.5769],[-0.9788,37.5824],[-0.9711,37.5945],[-0.9911,37.6014],[-0.9945,37.6007],[-0.9932,37.5959],[-0.9832,37.5841],[-0.9891,37.5814],[-0.999,37.5874],[-0.9988,37.5845],[-1.0073,37.5856],[-1.015,37.5741],[-1.0743,37.5833],[-1.0929,37.5711],[-1.1088,37.5692],[-1.127,37.5522],[-1.107,37.5358],[-1.111,37.5342],[-1.1197,37.5343],[-1.1265,37.5397],[-1.1653,37.5416],[-1.1742,37.5501],[-1.1688,37.5579],[-1.1776,37.5651],[-1.2016,37.5736],[-1.2259,37.5734],[-1.2276,37.5766],[-1.2463,37.5764],[-1.2582,37.5662],[-1.2537,37.5609],[-1.2568,37.5579],[-1.3253,37.5624],[-1.3323,37.5564],[-1.3546,37.5502],[-1.3726,37.5325],[-1.39,37.525],[-1.4023,37.5073],[-1.4276,37.5034],[-1.4599,37.4865],[-1.4814,37.4527],[-1.4842,37.4357],[-1.4768,37.4335],[-1.4773,37.429],[-1.4875,37.4222],[-1.497,37.4222],[-1.5021,37.4318],[-1.5185,37.432],[-1.548,37.4113],[-1.56,37.4111],[-1.5589,37.4047],[-1.5712,37.4081],[-1.5799,37.4005],[-1.5907,37.4021],[-1.6041,37.3948],[-1.6123,37.3843],[-1.6255,37.3805],[-1.6259,37.3742],[-1.63,37.3752],[-1.6445,37.3714],[-1.6532,37.3544],[-1.6656,37.3581],[-1.677,37.3528],[-1.6887,37.3394],[-1.7076,37.3042],[-1.7588,37.2629],[-1.7739,37.2397],[-1.7928,37.2318],[-1.8031,37.221],[-1.8207,37.1822],[-1.8229,37.1518],[-1.8331,37.1189],[-1.8446,37.1084],[-1.8485,37.0973],[-1.8496,37.0683],[-1.8653,37.0423],[-1.877,37.0342],[-1.8776,37.0148],[-1.8878,37.0076],[-1.8895,36.9955],[-1.9002,36.9884],[-1.9004,36.9807],[-1.8937,36.9736],[-1.8998,36.9776],[-1.8957,36.9485],[-1.9031,36.9444],[-1.9067,36.936],[-1.916,36.934],[-1.9252,36.938],[-1.9408,36.9361],[-1.9528,36.9239],[-1.9671,36.899],[-1.982,36.9025],[-1.9951,36.8854],[-2.0036,36.8815],[-2.0012,36.8728],[-2.006,36.8608],[-1.9955,36.8503],[-1.9997,36.8401],[-2.009,36.8342],[-2.025,36.835],[-2.0413,36.8229],[-2.0412,36.819],[-2.0605,36.809],[-2.0636,36.7756],[-2.0864,36.7641],[-2.1061,36.7627],[-2.1096,36.7556],[-2.1066,36.752],[-2.1206,36.7477],[-2.1215,36.7419],[-2.1166,36.739],[-2.1243,36.7318],[-2.1511,36.7311],[-2.1841,36.7202],[-2.1922,36.7216],[-2.2023,36.7304],[-2.25,36.785],[-2.2913,36.8194],[-2.3198,36.8342],[-2.3619,36.8419],[-2.4037,36.8265],[-2.4258,36.8107],[-2.4734,36.8369],[-2.4767,36.8346],[-2.4641,36.8257],[-2.482,36.8359],[-2.5022,36.8248],[-2.5252,36.8245],[-2.5331,36.8187],[-2.562,36.8166],[-2.5994,36.7755],[-2.6136,36.7363],[-2.6218,36.725],[-2.6505,36.6998],[-2.7006,36.6827],[-2.7245,36.6851],[-2.7711,36.6808],[-2.7863,36.6931],[-2.7975,36.6955],[-2.7877,36.6964],[-2.8145,36.706],[-2.8331,36.704],[-2.849,36.6952],[-2.8576,36.6985],[-2.8959,36.7363],[-2.9237,36.7515],[-2.9444,36.7497],[-2.9771,36.7381],[-2.9917,36.7439],[-3.0079,36.7417],[-3.0219,36.7474],[-3.0198,36.7408],[-3.0315,36.7472],[-3.1287,36.7509],[-3.1452,36.7448],[-3.1671,36.7447],[-3.1868,36.7503],[-3.2027,36.7501],[-3.2121,36.7452],[-3.2499,36.7547],[-3.3049,36.7379],[-3.3176,36.7418],[-3.3384,36.7384],[-3.3645,36.7145],[-3.4028,36.7072],[-3.4204,36.6941],[-3.4606,36.6962],[-3.4681,36.6932],[-3.4821,36.6976],[-3.5155,36.7217],[-3.5271,36.7248],[-3.5296,36.722],[-3.5221,36.7175],[-3.5353,36.7224],[-3.5542,36.715],[-3.5802,36.7235],[-3.6021,36.7445],[-3.6214,36.7412],[-3.6579,36.7465],[-3.678,36.7299],[-3.719,36.7324],[-3.7268,36.7288],[-3.7295,36.7192],[-3.7356,36.7201],[-3.7356,36.7278],[-3.7479,36.7371],[-3.7544,36.7387],[-3.7646,36.729],[-3.7775,36.7379],[-3.7823,36.7645],[-3.7663,36.7862],[-3.771,36.7966],[-3.7682,36.802],[-3.7865,36.8124],[-3.7906,36.8207],[-3.7953,36.821],[-3.7961,36.8316],[-3.8152,36.8419],[-3.8153,36.8469],[-3.8272,36.8555],[-3.8423,36.8582],[-3.8676,36.8507],[-3.8913,36.8666],[-3.9186,36.8681],[-3.9295,36.8829],[-3.9708,36.8921],[-3.9992,36.8898],[-4.0356,36.9049],[-4.0457,36.9029],[-4.0538,36.915],[-4.092,36.9333],[-4.0992,36.9423],[-4.0999,36.9527],[-4.1113,36.9497],[-4.1667,36.9571],[-4.188,36.9774],[-4.2154,36.9918],[-4.2234,37.0124],[-4.2314,37.017],[-4.2519,37.023],[-4.2725,37.0149],[-4.2701,37.0271],[-4.2809,37.0559],[-4.2871,37.1195],[-4.3276,37.1844],[-4.3323,37.1915],[-4.3227,37.2045],[-4.3451,37.2141],[-4.372,37.2154],[-4.3826,37.2316],[-4.385,37.2383],[-4.3775,37.2418],[-4.3799,37.2483],[-4.3761,37.2572],[-4.3808,37.2634],[-4.3783,37.2725],[-4.3834,37.2774],[-4.4066,37.2742],[-4.418,37.2824],[-4.433,37.2739],[-4.445,37.2776],[-4.457,37.2585],[-4.4684,37.2572],[-4.4619,37.2552],[-4.4642,37.2521],[-4.4717,37.2516],[-4.4771,37.2574],[-4.4852,37.2525],[-4.4776,37.2448],[-4.4814,37.2381],[-4.4912,37.2386],[-4.4923,37.227],[-4.4994,37.2235],[-4.4994,37.2304],[-4.509,37.2219],[-4.5395,37.2113],[-4.5447,37.2174],[-4.5612,37.2193],[-4.5755,37.2093],[-4.6023,37.2093],[-4.6044,37.2147],[-4.5963,37.2251],[-4.6045,37.2378],[-4.6144,37.2432],[-4.6138,37.2551],[-4.631,37.2542],[-4.6446,37.2467],[-4.6534,37.2559],[-4.654,37.2719],[-4.6621,37.2838],[-4.6811,37.2901],[-4.6761,37.2909],[-4.6786,37.2971],[-4.6753,37.3018],[-4.6606,37.2945],[-4.6658,37.2993],[-4.659,37.3051],[-4.6717,37.3105],[-4.6787,37.3084],[-4.6841,37.3154],[-4.6797,37.3177],[-4.682,37.3233],[-4.6696,37.319],[-4.6681,37.3236],[-4.6794,37.3296],[-4.6716,37.3315],[-4.6719,37.335],[-4.6793,37.3366],[-4.6863,37.3307],[-4.6871,37.3414],[-4.7036,37.3453],[-4.704,37.3508],[-4.7144,37.3532],[-4.7172,37.3584],[-4.7249,37.3535],[-4.7226,37.3465],[-4.733,37.3428],[-4.7261,37.3419],[-4.729,37.3355],[-4.7488,37.3309],[-4.7675,37.3378],[-4.7801,37.3354],[-4.7823,37.3285],[-4.8222,37.3582],[-4.8236,37.3688],[-4.8148,37.3726],[-4.8147,37.3776],[-4.8261,37.3791],[-4.831,37.3904],[-4.8498,37.4107],[-4.8377,37.4233],[-4.841,37.4364],[-4.8848,37.438],[-4.8754,37.4505],[-4.9041,37.4674],[-4.9102,37.4798],[-4.9045,37.4895],[-4.9152,37.4842],[-4.9162,37.4927],[-4.9078,37.495],[-4.9061,37.4999],[-4.9246,37.5004],[-4.9313,37.506],[-4.9276,37.5125],[-4.935,37.512],[-4.934,37.5199],[-4.949,37.522],[-5.0026,37.4691],[-5.0855,37.4442],[-5.2196,37.4581],[-5.2597,37.5037],[-5.2735,37.5783],[-5.2746,37.6253],[-5.2998,37.6229],[-5.3234,37.6143],[-5.3436,37.5937],[-5.3438,37.5874],[-5.3519,37.5843],[-5.3584,37.5857],[-5.36,37.6055],[-5.3813,37.6109],[-5.3982,37.6275],[-5.4017,37.6365],[-5.4114,37.6411],[-5.4137,37.6476],[-5.3996,37.6495],[-5.3937,37.6561],[-5.3973,37.6624],[-5.4064,37.6587],[-5.4131,37.6657],[-5.412,37.6835],[-5.4037,37.6931],[-5.3859,37.6967],[-5.3842,37.6814],[-5.3764,37.6776],[-5.3628,37.6972],[-5.3435,37.7057],[-5.3369,37.7057],[-5.3272,37.6917],[-5.3191,37.7016],[-5.3077,37.6993],[-5.311,37.7092],[-5.3041,37.7218],[-5.3049,37.731],[-5.3129,37.7529],[-5.3187,37.7583],[-5.31,37.7668],[-5.3101,37.7743],[-5.3288,37.778],[-5.331,37.7857],[-5.3501,37.7948],[-5.3419,37.8231],[-5.345,37.8279],[-5.3398,37.8336],[-5.3505,37.8423],[-5.3994,37.8635],[-5.4054,37.8626],[-5.411,37.8714],[-5.4148,37.8695],[-5.4165,37.8853],[-5.421,37.8905],[-5.4138,37.9015],[-5.4211,37.9293],[-5.4157,37.9437],[-5.4741,37.9752],[-5.4819,37.9898],[-5.4907,37.9931],[-5.4943,37.9989],[-5.4891,38.029],[-5.4952,38.0419],[-5.5238,38.066],[-5.5269,38.0752],[-5.5396,38.0822],[-5.5388,38.0939],[-5.5574,38.108],[-5.5817,38.1155],[-5.581,38.1281],[-5.5848,38.1318],[-5.5857,38.1404],[-5.5759,38.1497],[-5.5602,38.1486],[-5.5507,38.1606],[-5.539,38.1617],[-5.5358,38.1687],[-5.5405,38.17],[-5.54,38.181],[-5.5438,38.1849],[-5.5391,38.1868],[-5.5388,38.2007],[-5.5205,38.2076],[-5.5244,38.2227],[-5.5226,38.2384],[-5.5238,38.2493],[-5.5301,38.2552],[-5.526,38.2642],[-5.5376,38.2731],[-5.5375,38.2796],[-5.5412,38.2781],[-5.5445,38.2824],[-5.5418,38.286],[-5.5526,38.3035],[-5.5513,38.311],[-5.5561,38.3183],[-5.5757,38.3292],[-5.567,38.3626],[-5.5593,38.3669],[-5.5662,38.3676],[-5.5632,38.372],[-5.5668,38.3773],[-5.5851,38.3859],[-5.5843,38.401],[-5.569,38.4326],[-5.5193,38.4635],[-5.5131,38.4641],[-5.504,38.4567],[-5.4912,38.4665],[-5.4836,38.4658],[-5.4788,38.4851],[-5.469,38.4851],[-5.4583,38.4995],[-5.4506,38.4983],[-5.4449,38.505],[-5.4347,38.5044],[-5.4279,38.5147],[-5.419,38.5126],[-5.4166,38.5204],[-5.4094,38.5216],[-5.4161,38.5303],[-5.4035,38.5363],[-5.407,38.5437],[-5.3977,38.5466],[-5.3899,38.5397],[-5.3837,38.5399],[-5.3929,38.5528],[-5.3836,38.556],[-5.3899,38.5622],[-5.3861,38.5669],[-5.3757,38.5683],[-5.3697,38.5777],[-5.3718,38.5836],[-5.3566,38.5855],[-5.3358,38.5786],[-5.3086,38.5777],[-5.306,38.5821],[-5.3103,38.5936],[-5.2923,38.6109],[-5.2784,38.6127],[-5.2681,38.6227],[-5.2545,38.6258],[-5.2536,38.6335],[-5.2445,38.6329],[-5.2475,38.6399],[-5.2398,38.6367],[-5.2367,38.6424],[-5.223,38.6484],[-5.2238,38.6568],[-5.2148,38.6486],[-5.2085,38.6677],[-5.2,38.6566],[-5.1969,38.6674],[-5.1843,38.6598],[-5.1791,38.6658],[-5.1875,38.6704],[-5.1858,38.6742],[-5.1681,38.6774],[-5.1674,38.6808],[-5.1846,38.7197],[-5.1715,38.7176],[-5.1667,38.7117],[-5.1528,38.7164],[-5.119,38.7162],[-5.0992,38.7077],[-5.047,38.7291],[-5.0247,38.7265],[-5.0045,38.7119],[-4.9992,38.6942],[-4.9694,38.6866],[-4.9333,38.6815],[-4.9188,38.6861],[-4.877,38.6861],[-4.8689,38.681],[-4.8682,38.6477],[-4.8641,38.6402],[-4.8675,38.6317],[-4.8602,38.614],[-4.8352,38.6076],[-4.8212,38.5965],[-4.7876,38.5971],[-4.7358,38.5757],[-4.7062,38.5713],[-4.7006,38.5605],[-4.7047,38.5539],[-4.6795,38.5467],[-4.6665,38.5479],[-4.6326,38.5246],[-4.6228,38.5238],[-4.619,38.5083],[-4.6097,38.4961],[-4.5941,38.4867],[-4.5885,38.4864],[-4.5845,38.4933],[-4.5766,38.4935],[-4.5718,38.4875],[-4.5658,38.4908],[-4.5592,38.4769],[-4.5415,38.4819],[-4.5353,38.47],[-4.5234,38.4631],[-4.5127,38.4639],[-4.5002,38.4451],[-4.4713,38.426],[-4.453,38.4009],[-4.4352,38.4023],[-4.4295,38.396],[-4.4161,38.3939],[-4.4065,38.3832],[-4.3887,38.3859],[-4.3299,38.3627],[-4.3206,38.3624],[-4.3175,38.357],[-4.2963,38.3502],[-4.2874,38.3428],[-4.2772,38.3482],[-4.2689,38.3472],[-4.2787,38.3775],[-4.2768,38.3902],[-4.2578,38.4016],[-4.2232,38.3975],[-4.1751,38.3845],[-4.1553,38.3821],[-4.1449,38.3865],[-4.1286,38.3795],[-4.1115,38.3824],[-4.0864,38.3767],[-4.0583,38.3789],[-4.001,38.3678],[-3.9164,38.3688],[-3.8742,38.3771],[-3.8599,38.3734],[-3.8306,38.3929],[-3.8301,38.4128],[-3.7856,38.4253],[-3.7649,38.4244],[-3.7391,38.4138],[-3.73,38.4244],[-3.6993,38.4129],[-3.647,38.4042],[-3.6205,38.394],[-3.5982,38.3985],[-3.5859,38.4056],[-3.5831,38.4515],[-3.5674,38.4521],[-3.5438,38.4463],[-3.5352,38.4394],[-3.5334,38.4151],[-3.5243,38.4091],[-3.4855,38.4041],[-3.4726,38.398],[-3.4517,38.4003],[-3.4332,38.4081],[-3.4248,38.4068],[-3.4104,38.4236],[-3.3767,38.4396],[-3.3804,38.4554],[-3.375,38.4753],[-3.3265,38.4822],[-3.3053,38.4793],[-3.28,38.4604],[-3.18,38.45],[-3.1383,38.4386],[-3.1302,38.4388],[-3.065,38.4783],[-3.0025,38.4083],[-2.9922,38.4286],[-2.9963,38.4436],[-2.9935,38.4501],[-2.9769,38.4549],[-2.9636,38.4715],[-2.9566,38.4686],[-2.9384,38.4748],[-2.9058,38.4699],[-2.8815,38.4527],[-2.8848,38.4577],[-2.8778,38.4569],[-2.8792,38.4637],[-2.8702,38.4652],[-2.8609,38.4752],[-2.8507,38.4746],[-2.8543,38.479],[-2.8382,38.4844],[-2.8311,38.4765],[-2.8308,38.4875],[-2.8233,38.485],[-2.825,38.4878],[-2.813,38.4913],[-2.8066,38.5031],[-2.7937,38.502],[-2.7932,38.5086],[-2.7858,38.5116],[-2.7874,38.5156],[-2.7806,38.5094],[-2.78,38.5161],[-2.7702,38.5207],[-2.7738,38.5283],[-2.7621,38.5328],[-2.739,38.5223],[-2.7281,38.5119],[-2.7025,38.5011],[-2.6797,38.4969],[-2.6186,38.5126],[-2.5937,38.5113],[-2.5666,38.4905],[-2.5726,38.4877]]]]}},{"type":"Feature","properties":{"NUTS_ID":"ES_C5","Couleur":9,"name":"04_ES","LONG":3430537,"LAT":2108778,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":41.4618,"Long":-0.9174},"geometry":{"type":"MultiPolygon","coordinates":[[[[-2.961,40.8804],[-2.919,40.9902],[-2.8397,40.9926],[-2.7767,41.0462],[-2.6892,41.1524],[-2.5259,41.2504],[-2.4559,41.367],[-2.4699,41.5117],[-2.4886,41.689],[-2.5073,41.8383],[-2.7239,42.0155],[-2.7052,42.0151],[-2.6872,42.0014],[-2.6736,41.9981],[-2.6598,42.0054],[-2.6266,42.0065],[-2.5799,41.9962],[-2.5513,42.0388],[-2.5491,42.0515],[-2.5325,42.0552],[-2.5149,42.0688],[-2.5148,42.0742],[-2.5227,42.0829],[-2.5147,42.1145],[-2.4959,42.1129],[-2.4844,42.1063],[-2.4718,42.1143],[-2.4586,42.1153],[-2.4413,42.1365],[-2.3972,42.1369],[-2.3879,42.1425],[-2.3482,42.1467],[-2.3191,42.1452],[-2.2822,42.1317],[-2.2789,42.1224],[-2.2826,42.1188],[-2.2818,42.1084],[-2.2696,42.0885],[-2.2589,42.0873],[-2.2378,42.1022],[-2.2241,42.0981],[-2.2089,42.1046],[-2.1572,42.1048],[-2.1273,42.0972],[-2.1272,42.0804],[-2.1619,42.0667],[-2.1548,42.047],[-2.1289,42.0262],[-2.117,42.0215],[-2.1152,42.0114],[-2.1076,42.0028],[-2.1121,41.997],[-2.1241,41.9953],[-2.1161,41.9636],[-2.1025,41.9556],[-2.0488,41.9505],[-2.0364,41.9394],[-2.0283,41.9534],[-2.0131,41.9408],[-2.0013,41.9385],[-1.9983,41.9307],[-1.9841,41.9201],[-1.9613,41.9203],[-1.9549,41.9274],[-1.9406,41.9254],[-1.915,41.9338],[-1.9047,41.9433],[-1.9067,41.9456],[-1.8776,41.9524],[-1.8565,41.9664],[-1.8652,41.9776],[-1.844,41.9873],[-1.8513,41.9981],[-1.8472,42.008],[-1.8337,41.9951],[-1.8103,41.998],[-1.7914,41.9896],[-1.7669,41.9958],[-1.7414,41.9684],[-1.7152,41.9569],[-1.6862,41.9535],[-1.6755,41.9667],[-1.6597,41.9618],[-1.6541,41.9653],[-1.6148,41.9505],[-1.5962,41.9271],[-1.5676,41.9161],[-1.5233,41.9099],[-1.5061,41.9158],[-1.5018,41.9243],[-1.4776,41.9249],[-1.4533,41.9157],[-1.4218,41.9131],[-1.4107,41.9189],[-1.4035,41.9351],[-1.3822,41.9433],[-1.3801,41.9504],[-1.386,41.957],[-1.3743,41.962],[-1.366,41.9828],[-1.3395,42.018],[-1.3048,42.0429],[-1.3081,42.0464],[-1.3033,42.0518],[-1.3127,42.065],[-1.3106,42.0723],[-1.3523,42.0731],[-1.3652,42.0931],[-1.3668,42.1069],[-1.3989,42.1262],[-1.3928,42.1496],[-1.3984,42.1564],[-1.3918,42.1807],[-1.3952,42.1906],[-1.4134,42.2022],[-1.4175,42.2123],[-1.4164,42.222],[-1.3999,42.2455],[-1.3998,42.2564],[-1.3914,42.2721],[-1.3899,42.2785],[-1.3991,42.2913],[-1.3589,42.3335],[-1.3375,42.3455],[-1.3291,42.3554],[-1.3367,42.3724],[-1.3506,42.37],[-1.3597,42.3776],[-1.3429,42.4081],[-1.3415,42.4239],[-1.3152,42.4492],[-1.2898,42.4573],[-1.2814,42.4644],[-1.2728,42.4819],[-1.2751,42.4957],[-1.2867,42.4985],[-1.2875,42.5085],[-1.2935,42.5109],[-1.2881,42.5228],[-1.2648,42.5568],[-1.2262,42.5422],[-1.2183,42.5491],[-1.2028,42.5496],[-1.2016,42.577],[-1.1707,42.5968],[-1.158,42.5991],[-1.1798,42.6106],[-1.1788,42.6151],[-1.1719,42.617],[-1.1571,42.6109],[-1.1514,42.6481],[-1.0519,42.6426],[-1.0386,42.6483],[-1.0396,42.6642],[-1.0325,42.6756],[-1.0392,42.6916],[-1.029,42.6948],[-1.028,42.7],[-0.9692,42.7037],[-0.9587,42.7116],[-0.9487,42.7114],[-0.9359,42.7342],[-0.9248,42.7389],[-0.923,42.744],[-0.9011,42.7427],[-0.9005,42.7604],[-0.8905,42.7628],[-0.8733,42.759],[-0.8595,42.7687],[-0.8475,42.7859],[-0.8499,42.7921],[-0.86,42.7985],[-0.8604,42.8022],[-0.8514,42.8076],[-0.8568,42.847],[-0.8413,42.8529],[-0.8373,42.8615],[-0.8185,42.8693],[-0.8159,42.8852],[-0.8191,42.9006],[-0.8011,42.9078],[-0.7832,42.9217],[-0.7535,42.9245],[-0.7441,42.9192],[-0.7245,42.9202],[-0.7364,42.913],[-0.7318,42.8961],[-0.6985,42.8789],[-0.6788,42.8845],[-0.6661,42.8746],[-0.656,42.8587],[-0.6362,42.8533],[-0.6198,42.838],[-0.6018,42.8318],[-0.6005,42.8024],[-0.5692,42.8069],[-0.5648,42.7999],[-0.5706,42.783],[-0.5518,42.7776],[-0.5438,42.7932],[-0.5303,42.7914],[-0.5234,42.7973],[-0.5251,42.8122],[-0.5053,42.8274],[-0.5013,42.8278],[-0.4933,42.8171],[-0.4518,42.8035],[-0.4439,42.7961],[-0.4089,42.8077],[-0.3948,42.799],[-0.3836,42.801],[-0.3822,42.8079],[-0.3646,42.8164],[-0.3469,42.8378],[-0.3246,42.8347],[-0.3133,42.8494],[-0.3063,42.8415],[-0.2769,42.8355],[-0.2756,42.8289],[-0.255,42.8193],[-0.2431,42.8206],[-0.2389,42.8181],[-0.2374,42.8077],[-0.2199,42.8027],[-0.2154,42.7967],[-0.1983,42.7956],[-0.1893,42.7878],[-0.1779,42.7853],[-0.1601,42.798],[-0.1543,42.7928],[-0.1542,42.7807],[-0.147,42.7761],[-0.1498,42.7692],[-0.1385,42.7667],[-0.1229,42.7516],[-0.1177,42.7385],[-0.1094,42.7346],[-0.1118,42.7264],[-0.1065,42.7206],[-0.0685,42.7181],[-0.0633,42.7103],[-0.0638,42.6979],[-0.0558,42.6923],[-0.0491,42.6943],[-0.0167,42.6851],[0.0002,42.6853],[0.0145,42.6942],[0.0157,42.7018],[0.0583,42.6976],[0.0701,42.7035],[0.0779,42.7148],[0.0901,42.7171],[0.1065,42.7101],[0.1169,42.7112],[0.1315,42.7147],[0.1366,42.7224],[0.1617,42.7232],[0.1623,42.7285],[0.1757,42.737],[0.2059,42.7297],[0.2268,42.7173],[0.2599,42.716],[0.2685,42.7001],[0.2636,42.6932],[0.2951,42.6734],[0.313,42.6839],[0.3215,42.6842],[0.3251,42.705],[0.3455,42.7107],[0.3601,42.7244],[0.3742,42.7146],[0.393,42.7132],[0.3952,42.6995],[0.422,42.6905],[0.4605,42.6929],[0.4778,42.7],[0.4989,42.692],[0.5187,42.6919],[0.5262,42.7025],[0.5873,42.6945],[0.597,42.7055],[0.6187,42.6956],[0.6601,42.691],[0.6734,42.679],[0.6804,42.666],[0.6957,42.6585],[0.7014,42.6425],[0.6987,42.6288],[0.7065,42.6218],[0.7383,42.6123],[0.7451,42.6151],[0.7679,42.6098],[0.7606,42.5921],[0.7587,42.5722],[0.7497,42.5603],[0.7499,42.5528],[0.741,42.5439],[0.7504,42.5348],[0.7364,42.539],[0.7211,42.5245],[0.7238,42.5206],[0.7203,42.5131],[0.729,42.5125],[0.7397,42.5051],[0.7332,42.5043],[0.7297,42.4972],[0.7134,42.4872],[0.7006,42.4959],[0.698,42.4864],[0.6905,42.4876],[0.7086,42.4594],[0.7059,42.4504],[0.7102,42.4364],[0.7263,42.4269],[0.7359,42.414],[0.7346,42.4078],[0.726,42.4052],[0.7378,42.3981],[0.7462,42.3848],[0.7233,42.3656],[0.7462,42.3568],[0.7642,42.3568],[0.7714,42.3506],[0.7544,42.3466],[0.7404,42.3368],[0.7437,42.3263],[0.7647,42.3225],[0.7552,42.3134],[0.7567,42.3093],[0.7449,42.3012],[0.7341,42.2497],[0.7142,42.2227],[0.7176,42.2195],[0.7084,42.2043],[0.7095,42.1973],[0.6986,42.1727],[0.714,42.1634],[0.6959,42.152],[0.6969,42.1286],[0.7025,42.1199],[0.6996,42.1069],[0.6857,42.0928],[0.6689,42.0611],[0.6712,42.047],[0.6568,42.0404],[0.6563,42.0304],[0.6518,42.0262],[0.657,42.0148],[0.6635,42.0152],[0.6629,42.0122],[0.6568,42.0009],[0.6467,41.9967],[0.642,41.9821],[0.6386,41.9946],[0.618,41.9889],[0.6095,41.9681],[0.6036,41.9654],[0.6044,41.9606],[0.5925,41.9688],[0.587,41.9668],[0.5619,41.9382],[0.5625,41.9327],[0.6075,41.9193],[0.5947,41.9174],[0.601,41.9085],[0.5928,41.8844],[0.6083,41.8782],[0.6072,41.8718],[0.5801,41.8634],[0.5801,41.8509],[0.5574,41.8542],[0.5525,41.8493],[0.5535,41.8351],[0.5441,41.8211],[0.5155,41.8223],[0.5022,41.8144],[0.4952,41.8045],[0.4833,41.8015],[0.4739,41.7872],[0.4697,41.7656],[0.3987,41.7578],[0.3955,41.732],[0.3848,41.7403],[0.3728,41.7239],[0.3693,41.7247],[0.3687,41.7142],[0.3421,41.6965],[0.3288,41.682],[0.3263,41.6622],[0.333,41.6596],[0.3495,41.6362],[0.358,41.6317],[0.3459,41.6219],[0.3497,41.5995],[0.4021,41.5927],[0.4285,41.6024],[0.4359,41.5849],[0.4302,41.5779],[0.4304,41.5652],[0.4462,41.5429],[0.4175,41.5169],[0.3968,41.4903],[0.3709,41.4846],[0.3474,41.4877],[0.3421,41.484],[0.3447,41.4622],[0.3554,41.4527],[0.3477,41.442],[0.344,41.4178],[0.335,41.4082],[0.32,41.3949],[0.36,41.3705],[0.373,41.3535],[0.3668,41.3418],[0.3593,41.342],[0.3489,41.3277],[0.3684,41.3186],[0.3667,41.3013],[0.3857,41.2788],[0.3738,41.2493],[0.3814,41.2364],[0.3647,41.2387],[0.3609,41.2255],[0.3404,41.2311],[0.3322,41.223],[0.3225,41.2252],[0.306,41.1857],[0.305,41.1718],[0.3006,41.1669],[0.3034,41.1644],[0.2731,41.1488],[0.253,41.1501],[0.2562,41.1437],[0.2489,41.1306],[0.214,41.1373],[0.2199,41.1324],[0.2013,41.1268],[0.209,41.1169],[0.201,41.1027],[0.2013,41.0847],[0.2201,41.0829],[0.2166,41.0772],[0.2204,41.0714],[0.2189,41.0614],[0.2288,41.0587],[0.2305,41.0546],[0.2176,41.0442],[0.2208,41.0417],[0.2332,41.0471],[0.232,41.0353],[0.2424,41.0349],[0.2462,41.0412],[0.2579,41.0294],[0.28,41.0198],[0.262,41.0193],[0.2587,41.0146],[0.2748,41.0063],[0.2687,40.998],[0.2812,40.9872],[0.2824,40.9732],[0.2936,40.9706],[0.2843,40.9647],[0.2812,40.9515],[0.2756,40.9507],[0.2714,40.9442],[0.2743,40.9366],[0.2539,40.9197],[0.2543,40.912],[0.2486,40.9097],[0.2535,40.9063],[0.2501,40.896],[0.2461,40.8872],[0.239,40.8847],[0.2555,40.8745],[0.2559,40.8474],[0.2783,40.821],[0.2647,40.8133],[0.2578,40.8002],[0.2336,40.787],[0.2348,40.7767],[0.2293,40.7682],[0.2121,40.7675],[0.2016,40.7576],[0.1963,40.7586],[0.1902,40.7503],[0.1753,40.7549],[0.1754,40.7411],[0.1592,40.7506],[0.1708,40.7328],[0.1639,40.7236],[0.144,40.7183],[0.1239,40.7208],[0.1126,40.7271],[0.0727,40.7143],[0.0422,40.691],[0.0265,40.695],[0.0246,40.7073],[0.0284,40.7132],[0.0162,40.7233],[0.0161,40.7282],[-0.0177,40.7312],[-0.0314,40.7224],[-0.0646,40.7274],[-0.0545,40.6607],[-0.078,40.5805],[-0.1015,40.5252],[-0.1596,40.4837],[-0.2481,40.4678],[-0.2728,40.4737],[-0.2769,40.4759],[-0.2971,40.4669],[-0.3326,40.4591],[-0.3451,40.4436],[-0.3328,40.4255],[-0.3146,40.4158],[-0.3015,40.3977],[-0.2833,40.3834],[-0.2817,40.3657],[-0.2891,40.3681],[-0.298,40.3617],[-0.3045,40.3627],[-0.3324,40.3415],[-0.3406,40.34],[-0.3414,40.3279],[-0.3491,40.3266],[-0.3529,40.3134],[-0.3684,40.3121],[-0.3703,40.3043],[-0.3901,40.3056],[-0.3899,40.2999],[-0.4004,40.2949],[-0.3828,40.2783],[-0.3839,40.2645],[-0.4518,40.2353],[-0.4713,40.2384],[-0.4945,40.2287],[-0.527,40.2379],[-0.5441,40.2517],[-0.559,40.2101],[-0.5578,40.2008],[-0.5721,40.1815],[-0.5705,40.1554],[-0.5795,40.1473],[-0.5801,40.1372],[-0.5862,40.1316],[-0.5908,40.1337],[-0.6074,40.128],[-0.6287,40.1021],[-0.6135,40.07],[-0.623,40.0694],[-0.6231,40.0752],[-0.6272,40.0762],[-0.6458,40.0677],[-0.6641,40.0514],[-0.6818,40.0444],[-0.7028,40.0466],[-0.7188,40.0387],[-0.7307,40.0425],[-0.7475,40.0379],[-0.7536,40.0466],[-0.7622,40.0413],[-0.7672,40.01],[-0.7859,39.9922],[-0.8031,39.9906],[-0.8163,39.9824],[-0.8377,39.9768],[-0.8414,39.969],[-0.8357,39.96],[-0.8462,39.9477],[-0.8398,39.9421],[-0.8328,39.911],[-0.8049,39.8924],[-0.7976,39.8811],[-0.8287,39.8712],[-0.8635,39.8474],[-0.874,39.8484],[-0.895,39.8568],[-0.9127,39.8731],[-0.9081,39.886],[-0.9002,39.8918],[-0.9096,39.8986],[-0.9138,39.918],[-0.9076,39.928],[-0.9034,39.9262],[-0.9026,39.9319],[-0.9204,39.9644],[-0.9318,39.9561],[-0.9492,39.9673],[-0.9893,39.9818],[-1.0257,39.9746],[-1.0727,39.9795],[-1.0859,39.9763],[-1.0921,39.9678],[-1.105,39.975],[-1.1073,39.9701],[-1.1146,39.9728],[-1.1238,39.966],[-1.1217,39.9609],[-1.131,39.9708],[-1.1424,39.9719],[-1.1473,39.9886],[-1.1633,39.9998],[-1.1652,40.0101],[-1.1462,40.0168],[-1.134,40.0158],[-1.0842,40.0362],[-1.0717,40.0516],[-1.0727,40.0599],[-1.1118,40.0928],[-1.1334,40.0974],[-1.1476,40.1143],[-1.2064,40.1102],[-1.2216,40.1157],[-1.2449,40.1162],[-1.2506,40.1239],[-1.2458,40.1281],[-1.2488,40.1356],[-1.2443,40.146],[-1.2524,40.1433],[-1.2843,40.1715],[-1.2967,40.1992],[-1.2931,40.2069],[-1.2982,40.2117],[-1.3007,40.2064],[-1.315,40.2014],[-1.323,40.1849],[-1.3166,40.1497],[-1.3546,40.1295],[-1.3617,40.1297],[-1.3636,40.1386],[-1.3768,40.1403],[-1.3935,40.1344],[-1.4117,40.1408],[-1.4318,40.1393],[-1.4488,40.1454],[-1.4423,40.1576],[-1.4392,40.197],[-1.4744,40.1851],[-1.5109,40.2037],[-1.5225,40.2019],[-1.5315,40.1929],[-1.5404,40.1914],[-1.5697,40.2116],[-1.5926,40.2363],[-1.6087,40.2428],[-1.6589,40.282],[-1.6656,40.2946],[-1.6903,40.3097],[-1.7004,40.3071],[-1.7106,40.2921],[-1.7107,40.2804],[-1.7193,40.2771],[-1.7269,40.2883],[-1.7294,40.3029],[-1.7201,40.3185],[-1.7068,40.3136],[-1.6972,40.3166],[-1.6977,40.3213],[-1.7495,40.3587],[-1.7778,40.3919],[-1.7891,40.3917],[-1.7901,40.3975],[-1.8063,40.3982],[-1.8237,40.4108],[-1.8367,40.4277],[-1.8443,40.419],[-1.8564,40.4288],[-1.8575,40.442],[-1.8651,40.455],[-1.8608,40.4648],[-1.8732,40.4734],[-1.878,40.4916],[-1.8878,40.5057],[-1.8814,40.5175],[-1.8902,40.5306],[-1.9095,40.5417],[-1.9045,40.5465],[-1.915,40.5682],[-1.9165,40.5828],[-1.9264,40.5941],[-1.9541,40.6002],[-1.9649,40.6114],[-1.9681,40.6086],[-1.9654,40.5926],[-1.9855,40.5854],[-2.0358,40.6016],[-2.0574,40.6183],[-2.0575,40.6241],[-2.0836,40.6347],[-2.0912,40.6464],[-2.1569,40.6587],[-2.1692,40.6302],[-2.1898,40.6303],[-2.2138,40.6192],[-2.2257,40.6194],[-2.2746,40.6448],[-2.28,40.6338],[-2.2904,40.6303],[-2.2949,40.6222],[-2.286,40.5922],[-2.2922,40.579],[-2.2977,40.5729],[-2.3082,40.574],[-2.3314,40.5672],[-2.3434,40.5694],[-2.3598,40.5807],[-2.3544,40.5927],[-2.3726,40.6072],[-2.3987,40.6138],[-2.4125,40.6021],[-2.4173,40.5839],[-2.3832,40.5536],[-2.38,40.5436],[-2.3835,40.5409],[-2.4118,40.5256],[-2.4267,40.5408],[-2.4486,40.5246],[-2.4626,40.5233],[-2.496,40.5088],[-2.5136,40.5158],[-2.5272,40.5443],[-2.5387,40.534],[-2.5463,40.519],[-2.5405,40.5074],[-2.5287,40.4984],[-2.5367,40.4923],[-2.5787,40.5074],[-2.571,40.548],[-2.5502,40.5842],[-2.4761,40.6698],[-2.5565,40.6844],[-2.4256,40.7531],[-2.6078,40.9265],[-2.667,40.955],[-2.7087,40.9791],[-2.8491,40.9616],[-2.8913,40.944],[-2.9237,40.9347],[-2.938,40.9347],[-2.9435,40.9089],[-2.9489,40.8892],[-2.9594,40.8761],[-2.961,40.8804]]]]}},{"type":"Feature","properties":{"NUTS_ID":"ES_C7","Couleur":7,"name":"06_ES","LONG":3159735,"LAT":2038563,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":40.5858,"Long":-3.502},"geometry":{"type":"MultiPolygon","coordinates":[[[[-2.8085,40.327],[-2.8026,40.2641],[-2.8238,40.2032],[-2.8631,40.2001],[-2.8737,40.1736],[-2.9115,40.1571],[-2.947,40.1696],[-2.9595,40.183],[-2.9811,40.194],[-2.9982,40.2091],[-3.0044,40.2092],[-3.0211,40.1875],[-3.0181,40.1762],[-3.0123,40.174],[-3.0155,40.1532],[-3.0638,40.1683],[-3.0678,40.1576],[-3.0787,40.1567],[-3.0882,40.1628],[-3.0979,40.1535],[-3.094,40.1497],[-3.0969,40.1425],[-3.0749,40.131],[-3.073,40.1249],[-3.0568,40.1137],[-3.0533,40.0991],[-3.0589,40.0921],[-3.0887,40.0705],[-3.1179,40.0617],[-3.1614,40.0652],[-3.163,40.0838],[-3.1681,40.086],[-3.1664,40.0913],[-3.175,40.091],[-3.179,40.0851],[-3.1894,40.0827],[-3.1906,40.077],[-3.2061,40.0633],[-3.2015,40.0603],[-3.2089,40.0626],[-3.244,40.0536],[-3.2464,40.0579],[-3.2553,40.058],[-3.2579,40.0508],[-3.265,40.0572],[-3.2669,40.0532],[-3.2738,40.0549],[-3.2727,40.0495],[-3.2768,40.0475],[-3.2855,40.0527],[-3.3029,40.0537],[-3.3117,40.0687],[-3.3358,40.0817],[-3.377,40.0752],[-3.3797,40.0669],[-3.3746,40.0585],[-3.3759,40.0505],[-3.3854,40.0519],[-3.3929,40.0469],[-3.3942,40.0355],[-3.404,40.0349],[-3.425,40.0471],[-3.4297,40.0388],[-3.4457,40.0374],[-3.4469,40.0482],[-3.4524,40.0502],[-3.4687,40.0412],[-3.4721,40.0412],[-3.4721,40.0461],[-3.4831,40.0463],[-3.4879,40.0415],[-3.4903,40.0479],[-3.5153,40.0433],[-3.5221,40.0259],[-3.5199,40.0209],[-3.59,40.0134],[-3.5946,40.0019],[-3.6382,39.9888],[-3.6311,39.9689],[-3.635,39.9662],[-3.662,39.9662],[-3.6776,39.9611],[-3.6978,39.947],[-3.7114,39.9551],[-3.7449,39.9407],[-3.7459,39.9335],[-3.756,39.9217],[-3.7787,39.9114],[-3.8062,39.8878],[-3.8039,39.8846],[-3.8147,39.8859],[-3.8344,39.8998],[-3.8697,39.9047],[-3.8764,39.911],[-3.8693,39.9167],[-3.8761,39.9284],[-3.8391,39.9422],[-3.8371,39.9303],[-3.8327,39.9298],[-3.8249,39.9468],[-3.8183,39.9467],[-3.8073,39.9549],[-3.8024,39.9527],[-3.8011,39.9465],[-3.787,39.9466],[-3.7887,39.9542],[-3.7699,39.9588],[-3.7649,39.9664],[-3.759,39.9579],[-3.7698,39.9543],[-3.77,39.949],[-3.7553,39.9501],[-3.7514,39.9567],[-3.7613,39.971],[-3.7409,39.9616],[-3.7261,39.9665],[-3.7242,39.9703],[-3.7285,39.9731],[-3.7313,39.9697],[-3.7407,39.9707],[-3.7463,39.9808],[-3.7408,39.9829],[-3.7348,39.9771],[-3.735,39.9852],[-3.7274,39.9898],[-3.7229,39.9878],[-3.7236,39.9968],[-3.7157,40.0034],[-3.6964,40.0209],[-3.6871,40.0217],[-3.6798,40.0158],[-3.6604,40.0331],[-3.648,40.0342],[-3.6456,40.04],[-3.6365,40.0442],[-3.6368,40.052],[-3.6203,40.0566],[-3.6247,40.0634],[-3.6173,40.0687],[-3.6282,40.0765],[-3.6095,40.0836],[-3.6041,40.0941],[-3.6112,40.0945],[-3.6144,40.0996],[-3.6065,40.109],[-3.6559,40.1251],[-3.6656,40.1356],[-3.667,40.1436],[-3.6837,40.1325],[-3.7045,40.1376],[-3.7207,40.148],[-3.7451,40.1327],[-3.7719,40.1396],[-3.7843,40.1627],[-3.8061,40.1775],[-3.8103,40.1691],[-3.8174,40.1714],[-3.8351,40.1613],[-3.8522,40.169],[-3.8535,40.1798],[-3.8763,40.1911],[-3.8778,40.1883],[-3.9109,40.19],[-3.9314,40.204],[-3.9384,40.2035],[-3.9497,40.1892],[-3.9509,40.1967],[-3.9562,40.1986],[-3.953,40.2124],[-3.9925,40.2098],[-4.026,40.2362],[-4.0238,40.2491],[-4.0517,40.2511],[-4.0713,40.2648],[-4.0805,40.2665],[-4.0878,40.2533],[-4.1043,40.2418],[-4.133,40.2482],[-4.1451,40.2452],[-4.1507,40.2494],[-4.1441,40.2643],[-4.1638,40.27],[-4.1779,40.2923],[-4.1906,40.297],[-4.2039,40.2872],[-4.2038,40.269],[-4.2177,40.2728],[-4.2265,40.2699],[-4.2317,40.2768],[-4.2459,40.2737],[-4.2577,40.2596],[-4.2692,40.235],[-4.2858,40.2287],[-4.2959,40.2191],[-4.3063,40.2217],[-4.3079,40.2335],[-4.3216,40.2252],[-4.3354,40.2388],[-4.3483,40.2366],[-4.3452,40.2534],[-4.3586,40.2747],[-4.3576,40.3097],[-4.3812,40.3184],[-4.3881,40.3013],[-4.3838,40.2997],[-4.3841,40.2892],[-4.3983,40.2844],[-4.4296,40.2588],[-4.4357,40.2593],[-4.4375,40.2377],[-4.4475,40.2332],[-4.4799,40.2302],[-4.5098,40.2194],[-4.5168,40.215],[-4.5189,40.2034],[-4.5285,40.2006],[-4.5752,40.2071],[-4.5727,40.2131],[-4.579,40.2174],[-4.5657,40.2181],[-4.5608,40.2228],[-4.5592,40.2346],[-4.5659,40.2397],[-4.5692,40.2572],[-4.5564,40.2646],[-4.5555,40.2771],[-4.5291,40.2928],[-4.5465,40.3421],[-4.5264,40.3449],[-4.5268,40.3383],[-4.5044,40.3151],[-4.4856,40.3211],[-4.4555,40.3199],[-4.4537,40.333],[-4.4607,40.3404],[-4.4398,40.3503],[-4.4426,40.3857],[-4.4219,40.4064],[-4.4026,40.4114],[-4.3769,40.4074],[-4.3521,40.4135],[-4.3341,40.4089],[-4.3209,40.4107],[-4.3264,40.4136],[-4.3239,40.4241],[-4.3341,40.4254],[-4.341,40.438],[-4.3325,40.4412],[-4.3327,40.4488],[-4.3209,40.4515],[-4.327,40.459],[-4.3193,40.459],[-4.3174,40.4646],[-4.3241,40.4799],[-4.3235,40.5021],[-4.328,40.5079],[-4.3211,40.5317],[-4.3286,40.5348],[-4.323,40.5511],[-4.2897,40.5645],[-4.2786,40.6035],[-4.2901,40.6084],[-4.29,40.628],[-4.2725,40.6291],[-4.2621,40.6056],[-4.2441,40.6024],[-4.2576,40.6534],[-4.2402,40.6983],[-4.249,40.7465],[-4.2446,40.797],[-4.238,40.8365],[-4.238,40.8716],[-4.2665,40.9111],[-4.2599,41.0208],[-4.2073,41.0384],[-4.2533,41.159],[-4.2731,41.2314],[-4.148,41.2205],[-4.0252,41.1327],[-3.9286,41.0406],[-3.8951,40.967],[-3.8788,40.9755],[-3.8694,40.9715],[-3.8601,40.9788],[-3.815,40.9863],[-3.7819,41.0002],[-3.7498,41.0351],[-3.7393,41.0539],[-3.7017,41.0802],[-3.6758,41.0872],[-3.6507,41.1073],[-3.645,41.1197],[-3.6358,41.1242],[-3.6319,41.1339],[-3.6137,41.1491],[-3.6003,41.1553],[-3.5917,41.1543],[-3.5835,41.1611],[-3.5691,41.1594],[-3.5575,41.1645],[-3.5398,41.165],[-3.5366,41.1604],[-3.5406,41.1505],[-3.4996,41.1237],[-3.4922,41.1135],[-3.4884,41.0943],[-3.4737,41.0955],[-3.4478,41.0815],[-3.4279,41.0836],[-3.4275,41.0658],[-3.4383,41.0426],[-3.429,41.0399],[-3.4221,41.026],[-3.3997,41.0093],[-3.3946,41.0003],[-3.4182,40.9876],[-3.4167,40.9773],[-3.435,40.9461],[-3.4337,40.9376],[-3.3705,40.9126],[-3.3112,40.9302],[-3.2827,40.928],[-3.2476,40.9104],[-3.162,40.9324],[-3.043,40.9115],[-3.0304,40.9107],[-3.021,40.9089],[-2.9747,40.921],[-2.9888,40.9081],[-2.9793,40.8938],[-2.9814,40.8867],[-2.961,40.8804],[-2.9594,40.8761],[-2.9489,40.8892],[-2.9435,40.9089],[-2.938,40.9347],[-2.9237,40.9347],[-2.8913,40.944],[-2.8491,40.9616],[-2.7087,40.9791],[-2.667,40.955],[-2.6078,40.9265],[-2.4256,40.7531],[-2.5565,40.6844],[-2.4761,40.6698],[-2.5502,40.5842],[-2.7737,40.4142],[-2.7697,40.4098],[-2.7833,40.4062],[-2.7825,40.3982],[-2.7914,40.3893],[-2.7882,40.3812],[-2.7936,40.3774],[-2.8179,40.3475],[-2.8152,40.342],[-2.8104,40.3432],[-2.8167,40.3347],[-2.8085,40.327]]]]}},{"type":"Feature","properties":{"NUTS_ID":"ES_C1","Couleur":1,"name":"01_ES","LONG":2866091,"LAT":2357643,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":42.7567,"Long":-7.9102},"geometry":{"type":"MultiPolygon","coordinates":[[[[-7.6997,43.7351],[-7.6812,43.7304],[-7.6729,43.7468],[-7.6534,43.7456],[-7.6468,43.7515],[-7.6371,43.7529],[-7.63,43.7465],[-7.6356,43.7389],[-7.6262,43.7254],[-7.6286,43.721],[-7.6136,43.7146],[-7.6063,43.7176],[-7.6135,43.704],[-7.6101,43.6995],[-7.6068,43.7033],[-7.6037,43.7012],[-7.6125,43.6892],[-7.6139,43.6791],[-7.6079,43.6735],[-7.5962,43.6737],[-7.597,43.6629],[-7.5939,43.6665],[-7.5963,43.6837],[-7.5779,43.6943],[-7.5869,43.7072],[-7.5854,43.711],[-7.5599,43.7104],[-7.5508,43.719],[-7.5541,43.73],[-7.5331,43.7291],[-7.5246,43.7359],[-7.5142,43.723],[-7.4915,43.7275],[-7.4675,43.7233],[-7.48,43.7114],[-7.4686,43.7028],[-7.4443,43.6986],[-7.4458,43.6945],[-7.4362,43.7013],[-7.4366,43.694],[-7.4156,43.6911],[-7.3938,43.6804],[-7.3572,43.6716],[-7.355,43.6564],[-7.3496,43.6485],[-7.3409,43.6451],[-7.3433,43.6423],[-7.3331,43.6281],[-7.3104,43.6171],[-7.3068,43.6073],[-7.293,43.5953],[-7.2991,43.593],[-7.2833,43.5914],[-7.2452,43.5746],[-7.2584,43.5652],[-7.2585,43.5602],[-7.2698,43.5612],[-7.2524,43.5563],[-7.2615,43.5507],[-7.2556,43.5472],[-7.2428,43.5516],[-7.2456,43.5652],[-7.2361,43.5688],[-7.2027,43.5617],[-7.1787,43.5621],[-7.1703,43.5557],[-7.1565,43.5537],[-7.1187,43.5544],[-7.1148,43.5621],[-7.0712,43.5525],[-7.0666,43.5536],[-7.0662,43.5586],[-7.056,43.5575],[-7.0467,43.5518],[-7.0367,43.5518],[-7.0364,43.5453],[-7.0318,43.5445],[-7.0301,43.5349],[-7.0403,43.524],[-7.0476,43.5072],[-7.0449,43.4952],[-7.0482,43.477],[-7.0693,43.47],[-7.0903,43.4539],[-7.0879,43.4458],[-7.0992,43.4404],[-7.0971,43.4328],[-7.1045,43.4333],[-7.1003,43.4289],[-7.1028,43.4269],[-7.1093,43.4289],[-7.1127,43.4252],[-7.1294,43.4237],[-7.142,43.4307],[-7.1729,43.4303],[-7.1726,43.4181],[-7.1768,43.4146],[-7.169,43.4088],[-7.1685,43.4035],[-7.1824,43.3924],[-7.177,43.3913],[-7.1767,43.3825],[-7.1718,43.3833],[-7.1595,43.3746],[-7.139,43.3833],[-7.1275,43.3725],[-7.1315,43.3628],[-7.1282,43.3555],[-7.1327,43.3477],[-7.1307,43.3302],[-7.1157,43.3265],[-7.1009,43.3037],[-7.0819,43.3001],[-7.0739,43.3056],[-7.0597,43.3053],[-7.0652,43.2991],[-7.0664,43.2796],[-7.0715,43.2711],[-7.0616,43.244],[-7.0465,43.2312],[-7.0341,43.2281],[-7.02,43.2132],[-7.017,43.222],[-7.0096,43.2228],[-7.0014,43.2072],[-6.9927,43.2086],[-6.9863,43.2021],[-6.971,43.2042],[-6.9651,43.187],[-6.9807,43.1665],[-6.9734,43.1495],[-6.9615,43.1456],[-6.9573,43.1354],[-6.9415,43.1318],[-6.9373,43.1393],[-6.9194,43.1409],[-6.9021,43.155],[-6.8854,43.1567],[-6.8821,43.1605],[-6.8862,43.1667],[-6.877,43.1747],[-6.8746,43.1868],[-6.8682,43.19],[-6.8717,43.1798],[-6.8618,43.1822],[-6.8559,43.1722],[-6.8392,43.1663],[-6.8367,43.1573],[-6.8233,43.1436],[-6.8276,43.1231],[-6.8627,43.1029],[-6.8713,43.0911],[-6.894,43.0917],[-6.9156,43.0734],[-6.9233,43.0818],[-6.9372,43.084],[-6.9518,43.0761],[-6.956,43.0635],[-6.9661,43.0613],[-6.9686,43.0566],[-6.962,43.052],[-6.969,43.0327],[-6.9758,43.0318],[-6.9819,43.0413],[-6.9865,43.0295],[-6.9969,43.0277],[-6.9971,43.0194],[-6.9861,43.0126],[-6.9838,43.004],[-6.9796,43.0047],[-6.9751,42.9962],[-6.9619,42.9907],[-6.9641,42.9953],[-6.956,42.9961],[-6.9644,43.0265],[-6.9579,43.0291],[-6.9571,43.0367],[-6.9465,43.0324],[-6.9406,43.0113],[-6.9103,42.9901],[-6.8731,42.9885],[-6.8361,42.9577],[-6.8346,42.9409],[-6.8418,42.9281],[-6.8358,42.9163],[-6.8242,42.915],[-6.848,42.9143],[-6.8331,42.8978],[-6.8277,42.8799],[-6.8149,42.8708],[-6.8167,42.8686],[-6.8354,42.8736],[-6.8404,42.878],[-6.8337,42.882],[-6.8713,42.8738],[-6.8595,42.8485],[-6.8482,42.8334],[-6.8413,42.8323],[-6.8416,42.8244],[-6.8692,42.8008],[-6.864,42.7954],[-6.8674,42.7871],[-6.8908,42.7772],[-6.9015,42.7612],[-6.9362,42.7407],[-6.9469,42.7415],[-6.9595,42.755],[-6.9678,42.7475],[-6.9667,42.7387],[-6.9728,42.7379],[-6.9691,42.7293],[-6.9729,42.725],[-6.9837,42.7187],[-6.9902,42.7266],[-7.0109,42.7236],[-7.0216,42.7143],[-7.0199,42.7102],[-7.0277,42.7114],[-7.0452,42.6947],[-7.0342,42.6843],[-7.0318,42.6755],[-7.0155,42.6646],[-7.0174,42.6611],[-7.0126,42.6578],[-7.0215,42.6519],[-7.01,42.6498],[-7.0043,42.6428],[-7.0178,42.6452],[-7.047,42.6327],[-7.0455,42.6041],[-7.0501,42.5973],[-7.0341,42.5841],[-7.0547,42.5716],[-7.0559,42.5597],[-7.0709,42.5379],[-7.0613,42.5371],[-7.0598,42.5293],[-7.071,42.5112],[-7.077,42.5082],[-7.0457,42.5078],[-7.0326,42.5043],[-7.0287,42.4978],[-7.0044,42.5039],[-6.9785,42.4932],[-6.9735,42.494],[-6.9605,42.5175],[-6.9322,42.5205],[-6.925,42.5194],[-6.9165,42.5084],[-6.8768,42.4992],[-6.8606,42.4889],[-6.841,42.4889],[-6.8371,42.4957],[-6.8228,42.4908],[-6.8255,42.4857],[-6.8084,42.469],[-6.8114,42.4612],[-6.8228,42.4529],[-6.8218,42.4333],[-6.8143,42.4273],[-6.8248,42.4259],[-6.8209,42.4214],[-6.8289,42.4168],[-6.8313,42.4083],[-6.8435,42.4058],[-6.8415,42.4029],[-6.8235,42.3919],[-6.8208,42.3856],[-6.8022,42.3863],[-6.7959,42.382],[-6.7786,42.381],[-6.7689,42.373],[-6.7665,42.365],[-6.7578,42.3675],[-6.7339,42.3591],[-6.7407,42.3284],[-6.734,42.318],[-6.7432,42.3033],[-6.7411,42.2986],[-6.765,42.2727],[-6.767,42.2574],[-6.7843,42.2536],[-6.7915,42.2521],[-6.7959,42.2423],[-6.8032,42.2387],[-6.7871,42.2157],[-6.7967,42.209],[-6.8023,42.2185],[-6.8436,42.2283],[-6.8699,42.2237],[-6.8869,42.2143],[-6.8933,42.2072],[-6.8888,42.2018],[-6.9011,42.1896],[-6.9148,42.1894],[-6.9435,42.1723],[-6.9445,42.1417],[-6.949,42.1357],[-6.9564,42.1295],[-6.9898,42.1213],[-6.9903,42.1011],[-7.0027,42.0967],[-7.0027,42.0842],[-7.02,42.0831],[-7.0332,42.0746],[-7.031,42.0633],[-7.0118,42.0524],[-6.9748,42.0552],[-6.9731,42.0391],[-6.9628,42.0292],[-6.9795,42.0002],[-6.9911,41.9883],[-6.9835,41.9729],[-6.9995,41.9625],[-7.0062,41.9505],[-7.0457,41.9535],[-7.0521,41.9493],[-7.0665,41.9491],[-7.0768,41.9522],[-7.0875,41.9739],[-7.1198,41.9869],[-7.1413,41.9909],[-7.1515,41.9865],[-7.1579,41.9764],[-7.1771,41.98],[-7.1866,41.9699],[-7.1816,41.9517],[-7.1877,41.9429],[-7.1735,41.9196],[-7.1818,41.9137],[-7.1847,41.8983],[-7.1973,41.8801],[-7.2085,41.8805],[-7.2312,41.8689],[-7.2461,41.8688],[-7.2833,41.8526],[-7.3009,41.8519],[-7.3158,41.8429],[-7.3394,41.8451],[-7.3562,41.8401],[-7.3638,41.8527],[-7.3673,41.8517],[-7.39,41.8423],[-7.3968,41.8267],[-7.4273,41.8075],[-7.4292,41.8121],[-7.4241,41.8167],[-7.4302,41.8232],[-7.425,41.8292],[-7.4441,41.8398],[-7.449,41.853],[-7.4454,41.8577],[-7.4528,41.8652],[-7.485,41.8613],[-7.491,41.8714],[-7.5021,41.8697],[-7.5131,41.8622],[-7.5054,41.8505],[-7.5223,41.8418],[-7.5741,41.8299],[-7.599,41.8332],[-7.6136,41.8293],[-7.6123,41.8464],[-7.6003,41.8614],[-7.6023,41.8666],[-7.5847,41.8757],[-7.5862,41.882],[-7.6076,41.8794],[-7.616,41.8848],[-7.6257,41.8802],[-7.6538,41.8814],[-7.6686,41.8936],[-7.6779,41.8936],[-7.7011,41.9081],[-7.7346,41.8947],[-7.7452,41.8934],[-7.7639,41.8993],[-7.7783,41.8873],[-7.7923,41.8833],[-7.8449,41.8816],[-7.842,41.8698],[-7.8456,41.864],[-7.8648,41.86],[-7.8765,41.8495],[-7.8808,41.8557],[-7.8919,41.86],[-7.8843,41.8814],[-7.8871,41.9078],[-7.8834,41.9187],[-7.8853,41.9255],[-7.8926,41.9273],[-7.9071,41.926],[-7.9095,41.907],[-7.9221,41.8795],[-7.9482,41.871],[-7.9709,41.8762],[-7.9808,41.8724],[-7.9887,41.8677],[-7.9945,41.8526],[-8.005,41.8468],[-8.0132,41.8288],[-8.037,41.8305],[-8.0519,41.8206],[-8.0575,41.8162],[-8.0869,41.8131],[-8.0938,41.809],[-8.1056,41.8126],[-8.1299,41.809],[-8.1651,41.8183],[-8.1617,41.8607],[-8.1661,41.8621],[-8.1706,41.8791],[-8.1997,41.874],[-8.1975,41.8799],[-8.2164,41.9048],[-8.217,41.9137],[-8.1966,41.9405],[-8.1752,41.9551],[-8.1767,41.9589],[-8.1696,41.9633],[-8.1631,41.9756],[-8.1634,41.9827],[-8.1406,41.9888],[-8.1276,42.0054],[-8.1148,42.0046],[-8.0854,42.017],[-8.0843,42.0474],[-8.0969,42.0718],[-8.1185,42.0821],[-8.1377,42.0761],[-8.1491,42.0799],[-8.1714,42.0677],[-8.1823,42.0669],[-8.1873,42.0746],[-8.1843,42.0786],[-8.1932,42.1278],[-8.1888,42.1358],[-8.199,42.1544],[-8.2075,42.1409],[-8.2231,42.1334],[-8.2463,42.1392],[-8.2562,42.1352],[-8.2592,42.121],[-8.2743,42.1233],[-8.3002,42.1056],[-8.3224,42.102],[-8.3254,42.0902],[-8.3319,42.0842],[-8.3635,42.0903],[-8.381,42.0773],[-8.3902,42.0754],[-8.3934,42.0805],[-8.4044,42.0805],[-8.4283,42.0723],[-8.4433,42.083],[-8.5235,42.0785],[-8.5289,42.074],[-8.5255,42.0645],[-8.5567,42.0514],[-8.5944,42.0552],[-8.637,42.0471],[-8.6583,42.0296],[-8.6635,42.0022],[-8.6804,41.9901],[-8.7183,41.9783],[-8.7441,41.9653],[-8.748,41.9597],[-8.7482,41.9419],[-8.7572,41.9335],[-8.8257,41.9035],[-8.8336,41.8984],[-8.8391,41.8864],[-8.8632,41.8721],[-8.8734,41.8704],[-8.8822,41.8822],[-8.8811,41.8921],[-8.8743,41.8999],[-8.8806,41.903],[-8.8773,41.9104],[-8.8842,41.9182],[-8.8877,41.9772],[-8.8839,41.9954],[-8.8769,42.0027],[-8.8858,42.0147],[-8.8832,42.0393],[-8.8957,42.0672],[-8.8918,42.0825],[-8.8988,42.1036],[-8.898,42.1119],[-8.8806,42.111],[-8.8688,42.115],[-8.8513,42.1281],[-8.8457,42.1257],[-8.8489,42.1209],[-8.8426,42.1164],[-8.8274,42.114],[-8.8238,42.1178],[-8.8273,42.1224],[-8.8193,42.1288],[-8.8205,42.1415],[-8.8296,42.148],[-8.8489,42.1498],[-8.8502,42.1568],[-8.8386,42.1583],[-8.8321,42.1531],[-8.8211,42.1573],[-8.8149,42.1723],[-8.8163,42.1875],[-8.7797,42.2039],[-8.7762,42.2123],[-8.7784,42.2181],[-8.771,42.225],[-8.7577,42.2237],[-8.7501,42.2318],[-8.7466,42.2299],[-8.752,42.2295],[-8.7509,42.2253],[-8.7409,42.2259],[-8.726,42.2431],[-8.7079,42.2435],[-8.7029,42.2599],[-8.6907,42.2571],[-8.6771,42.2643],[-8.668,42.2794],[-8.6472,42.2898],[-8.63,42.2851],[-8.6265,42.2884],[-8.6108,42.2875],[-8.6209,42.2905],[-8.6145,42.298],[-8.623,42.3095],[-8.6124,42.3266],[-8.6161,42.3304],[-8.6119,42.3456],[-8.6289,42.3512],[-8.6431,42.3391],[-8.6361,42.3264],[-8.66,42.3156],[-8.6618,42.3099],[-8.6516,42.2977],[-8.6579,42.292],[-8.6778,42.2903],[-8.6898,42.28],[-8.7015,42.282],[-8.7127,42.2754],[-8.7174,42.2887],[-8.7209,42.2851],[-8.7316,42.2869],[-8.7404,42.2713],[-8.7586,42.2622],[-8.763,42.2589],[-8.7838,42.2633],[-8.7928,42.2464],[-8.8139,42.2594],[-8.8287,42.2509],[-8.8389,42.2583],[-8.8562,42.2614],[-8.8638,42.2464],[-8.8709,42.2539],[-8.8633,42.2675],[-8.8647,42.2781],[-8.8567,42.3092],[-8.848,42.2993],[-8.8474,42.2927],[-8.8381,42.2902],[-8.8314,42.2782],[-8.8237,42.2751],[-8.816,42.278],[-8.8232,42.2868],[-8.8183,42.3138],[-8.8245,42.32],[-8.8278,42.3336],[-8.8343,42.3342],[-8.8366,42.3408],[-8.8005,42.3392],[-8.7995,42.3317],[-8.7864,42.3271],[-8.7529,42.3438],[-8.7458,42.366],[-8.7314,42.3752],[-8.7258,42.3852],[-8.7072,42.3976],[-8.6948,42.3943],[-8.6913,42.4005],[-8.6969,42.3999],[-8.6555,42.4244],[-8.6538,42.4314],[-8.6571,42.432],[-8.6563,42.4259],[-8.6812,42.4207],[-8.69,42.44],[-8.7035,42.4336],[-8.7146,42.4212],[-8.7412,42.4136],[-8.7491,42.403],[-8.7576,42.4021],[-8.761,42.3952],[-8.7705,42.3944],[-8.7748,42.3878],[-8.7817,42.3955],[-8.8147,42.4007],[-8.8232,42.3974],[-8.8268,42.3868],[-8.8333,42.3888],[-8.8388,42.3841],[-8.8494,42.397],[-8.8582,42.397],[-8.8652,42.4109],[-8.8808,42.4143],[-8.8726,42.4388],[-8.8853,42.4569],[-8.8978,42.4608],[-8.9148,42.4615],[-8.9242,42.4511],[-8.9339,42.4528],[-8.9424,42.4623],[-8.9364,42.4694],[-8.9371,42.4779],[-8.9072,42.4761],[-8.8835,42.488],[-8.8855,42.4925],[-8.8905,42.4905],[-8.8911,42.4947],[-8.8712,42.5016],[-8.858,42.4923],[-8.8608,42.4832],[-8.8562,42.4724],[-8.8725,42.462],[-8.869,42.448],[-8.8586,42.451],[-8.8478,42.4607],[-8.842,42.4548],[-8.8319,42.4588],[-8.8202,42.4517],[-8.8212,42.4675],[-8.8337,42.4701],[-8.8269,42.4744],[-8.8312,42.4849],[-8.8249,42.495],[-8.8101,42.4928],[-8.804,42.5],[-8.8171,42.5024],[-8.8174,42.5195],[-8.8131,42.528],[-8.8281,42.5199],[-8.8259,42.5388],[-8.837,42.5512],[-8.836,42.5582],[-8.8298,42.5603],[-8.825,42.552],[-8.8189,42.5595],[-8.8312,42.5644],[-8.8311,42.5751],[-8.8263,42.5786],[-8.8076,42.5763],[-8.8019,42.5828],[-8.7961,42.5796],[-8.799,42.5842],[-8.7908,42.5859],[-8.7845,42.593],[-8.772,42.5935],[-8.7662,42.6016],[-8.7776,42.6147],[-8.7753,42.6197],[-8.7425,42.6478],[-8.7387,42.661],[-8.729,42.6667],[-8.7241,42.6782],[-8.7285,42.6836],[-8.7267,42.6883],[-8.7318,42.684],[-8.7275,42.6775],[-8.7428,42.665],[-8.7491,42.6516],[-8.7562,42.6473],[-8.7702,42.6529],[-8.7746,42.6449],[-8.7957,42.6369],[-8.8192,42.6452],[-8.8142,42.6651],[-8.8291,42.6664],[-8.8447,42.687],[-8.8399,42.6608],[-8.845,42.6656],[-8.852,42.6653],[-8.8605,42.6459],[-8.8563,42.6406],[-8.8375,42.6341],[-8.8401,42.6289],[-8.8519,42.6304],[-8.8586,42.6265],[-8.8619,42.6153],[-8.8562,42.6064],[-8.886,42.616],[-8.8879,42.6208],[-8.874,42.6294],[-8.8784,42.6369],[-8.8997,42.6408],[-8.8978,42.6444],[-8.9026,42.6423],[-8.9022,42.6333],[-8.9066,42.6317],[-8.9375,42.6081],[-8.9324,42.5986],[-8.9203,42.5943],[-8.92,42.587],[-8.9508,42.5848],[-8.9582,42.5813],[-8.9626,42.5686],[-8.9777,42.5687],[-8.9911,42.5634],[-8.9832,42.5441],[-8.9891,42.5358],[-9.0104,42.5253],[-9.0059,42.5139],[-9.0163,42.5228],[-9.0235,42.5169],[-9.0336,42.5212],[-9.0423,42.5172],[-9.0447,42.5241],[-9.0414,42.5236],[-9.0412,42.5363],[-9.03,42.5479],[-9.036,42.5612],[-9.0577,42.5772],[-9.0754,42.5717],[-9.0752,42.5671],[-9.0913,42.5745],[-9.0912,42.5782],[-9.0812,42.5793],[-9.0765,42.5844],[-9.0761,42.5901],[-9.0814,42.5935],[-9.0791,42.5979],[-9.065,42.5998],[-9.0594,42.6111],[-9.0627,42.6195],[-9.0542,42.6212],[-9.0401,42.6379],[-9.0371,42.648],[-9.0424,42.6546],[-9.0417,42.6692],[-9.0311,42.6762],[-9.0282,42.6912],[-9.031,42.6976],[-9.0234,42.7085],[-9.0108,42.7105],[-9.0084,42.7273],[-8.9958,42.728],[-8.9875,42.7425],[-8.9714,42.7405],[-8.9583,42.7461],[-8.9516,42.7525],[-8.9523,42.7588],[-8.946,42.7593],[-8.9406,42.7664],[-8.9407,42.7738],[-8.9164,42.7903],[-8.9098,42.7912],[-8.8906,42.78],[-8.8916,42.7887],[-8.9002,42.7924],[-8.8955,42.7967],[-8.9002,42.8032],[-8.8965,42.8159],[-8.887,42.813],[-8.8776,42.817],[-8.8758,42.8284],[-8.8798,42.8273],[-8.881,42.8181],[-8.8883,42.8165],[-8.8964,42.8221],[-8.8966,42.8271],[-8.9044,42.828],[-8.8994,42.8259],[-8.9054,42.8195],[-8.9073,42.8029],[-8.9233,42.7974],[-8.9312,42.8023],[-8.9312,42.8073],[-8.9455,42.7981],[-8.9535,42.7815],[-8.9636,42.7785],[-8.9676,42.782],[-8.9658,42.787],[-8.9749,42.7913],[-8.9819,42.7783],[-9.0139,42.7832],[-9.0157,42.7904],[-9.0117,42.7959],[-9.0204,42.8006],[-9.0424,42.7873],[-9.0638,42.7869],[-9.0646,42.7819],[-9.048,42.7693],[-9.0547,42.7668],[-9.0579,42.7596],[-9.0764,42.7571],[-9.0805,42.7523],[-9.076,42.7455],[-9.0785,42.7387],[-9.0892,42.7383],[-9.0911,42.7467],[-9.1007,42.7553],[-9.1133,42.7529],[-9.1138,42.761],[-9.1403,42.7962],[-9.1471,42.7946],[-9.1511,42.7993],[-9.1472,42.804],[-9.1297,42.8044],[-9.1135,42.8101],[-9.1056,42.8231],[-9.1099,42.8407],[-9.1206,42.8474],[-9.1306,42.8445],[-9.1478,42.8672],[-9.1475,42.8831],[-9.1406,42.8826],[-9.1387,42.8897],[-9.1431,42.8964],[-9.1342,42.8977],[-9.1254,42.9054],[-9.1332,42.9107],[-9.1617,42.913],[-9.1735,42.9438],[-9.1848,42.9463],[-9.1908,42.9573],[-9.1925,42.9449],[-9.1839,42.9305],[-9.1865,42.9252],[-9.1831,42.916],[-9.2092,42.9164],[-9.2081,42.9279],[-9.2145,42.9289],[-9.2185,42.9401],[-9.2322,42.941],[-9.233,42.9268],[-9.2507,42.9255],[-9.263,42.9189],[-9.2596,42.9031],[-9.2697,42.8804],[-9.2734,42.8801],[-9.2819,42.8929],[-9.2752,42.9104],[-9.2832,42.9202],[-9.298,42.923],[-9.2887,42.9436],[-9.2817,42.9441],[-9.284,42.9555],[-9.2697,42.9634],[-9.2605,42.9759],[-9.2629,42.9825],[-9.2569,43.0021],[-9.2639,43.0111],[-9.2764,43.0108],[-9.2834,43.0364],[-9.2877,43.0446],[-9.2986,43.0493],[-9.2986,43.056],[-9.2928,43.0581],[-9.2863,43.047],[-9.2772,43.0441],[-9.2626,43.0484],[-9.2489,43.0721],[-9.2549,43.0916],[-9.2464,43.092],[-9.2441,43.0848],[-9.2373,43.0911],[-9.2212,43.0885],[-9.2232,43.0992],[-9.2192,43.1026],[-9.2226,43.1081],[-9.2196,43.1138],[-9.2132,43.1019],[-9.1981,43.1037],[-9.1942,43.0911],[-9.1851,43.091],[-9.1816,43.0954],[-9.1833,43.1033],[-9.1671,43.1043],[-9.1582,43.1274],[-9.1644,43.1276],[-9.1675,43.1324],[-9.1629,43.1471],[-9.1655,43.1528],[-9.1711,43.1372],[-9.1782,43.138],[-9.1788,43.1292],[-9.184,43.1235],[-9.1932,43.123],[-9.2043,43.1289],[-9.2039,43.1413],[-9.2136,43.1509],[-9.214,43.1615],[-9.1994,43.1543],[-9.1961,43.1624],[-9.1905,43.1595],[-9.1805,43.1674],[-9.1783,43.1843],[-9.1737,43.1881],[-9.1658,43.1832],[-9.1542,43.1842],[-9.1496,43.187],[-9.1497,43.1955],[-9.1353,43.1907],[-9.1305,43.1967],[-9.1147,43.1939],[-9.1111,43.1856],[-9.0899,43.1893],[-9.0889,43.1835],[-9.0803,43.1813],[-9.077,43.1859],[-9.0598,43.1845],[-9.0413,43.1934],[-9.0343,43.2128],[-9.021,43.2147],[-9.0131,43.2242],[-9.0129,43.233],[-9.004,43.2305],[-9.002,43.218],[-8.9932,43.2162],[-8.9807,43.2292],[-8.9715,43.2239],[-8.9534,43.2307],[-8.9397,43.2268],[-8.9383,43.2347],[-8.9522,43.2479],[-8.9516,43.2632],[-8.9767,43.2622],[-8.9907,43.2746],[-8.9839,43.2822],[-8.9566,43.2937],[-8.9368,43.2893],[-8.9291,43.2829],[-8.9279,43.292],[-8.9057,43.2946],[-8.911,43.303],[-8.9065,43.3062],[-8.9119,43.3146],[-8.9107,43.3213],[-8.8843,43.3199],[-8.8753,43.3124],[-8.8703,43.3228],[-8.8585,43.3165],[-8.8464,43.319],[-8.849,43.3369],[-8.8391,43.3467],[-8.8311,43.3437],[-8.8252,43.3285],[-8.8065,43.3238],[-8.8028,43.3133],[-8.7754,43.2998],[-8.7626,43.3022],[-8.748,43.2938],[-8.7267,43.2972],[-8.7225,43.2913],[-8.7107,43.2895],[-8.635,43.3083],[-8.6241,43.3151],[-8.6108,43.3146],[-8.6075,43.322],[-8.6042,43.3175],[-8.5912,43.3215],[-8.5899,43.3155],[-8.5812,43.3174],[-8.5568,43.3106],[-8.534,43.3152],[-8.5174,43.3281],[-8.5039,43.3307],[-8.5062,43.3333],[-8.4941,43.3503],[-8.4986,43.3549],[-8.4937,43.3599],[-8.4869,43.3607],[-8.4874,43.3532],[-8.4748,43.3531],[-8.4583,43.3606],[-8.4573,43.3694],[-8.4397,43.3816],[-8.4221,43.3778],[-8.4178,43.3711],[-8.4091,43.3689],[-8.4038,43.3751],[-8.4117,43.3843],[-8.4017,43.3894],[-8.3915,43.3854],[-8.3939,43.3788],[-8.3865,43.3655],[-8.3982,43.3687],[-8.4039,43.3613],[-8.3869,43.3533],[-8.3828,43.3443],[-8.3851,43.3393],[-8.3603,43.3417],[-8.347,43.3482],[-8.3474,43.3636],[-8.3393,43.368],[-8.344,43.3719],[-8.3378,43.3715],[-8.3375,43.3783],[-8.3438,43.3834],[-8.3551,43.3813],[-8.3492,43.3866],[-8.3516,43.39],[-8.347,43.3911],[-8.35,43.3966],[-8.3061,43.4047],[-8.2988,43.3999],[-8.2961,43.3854],[-8.2866,43.3828],[-8.275,43.3865],[-8.2636,43.3811],[-8.259,43.369],[-8.2499,43.3645],[-8.2547,43.3543],[-8.252,43.3498],[-8.2281,43.3405],[-8.2244,43.3335],[-8.2098,43.3276],[-8.213,43.3405],[-8.2025,43.3364],[-8.2109,43.3498],[-8.2202,43.3533],[-8.2085,43.3614],[-8.2085,43.3648],[-8.2183,43.3676],[-8.2147,43.3777],[-8.2206,43.3918],[-8.2125,43.3966],[-8.2129,43.4028],[-8.2054,43.4094],[-8.189,43.4136],[-8.1753,43.4122],[-8.1745,43.4205],[-8.1978,43.4266],[-8.203,43.4208],[-8.2142,43.4195],[-8.2229,43.4266],[-8.2366,43.4286],[-8.2427,43.4257],[-8.2434,43.4213],[-8.239,43.4197],[-8.2438,43.4176],[-8.257,43.4213],[-8.2786,43.4369],[-8.2959,43.4354],[-8.2985,43.4402],[-8.3168,43.4448],[-8.304,43.4483],[-8.3128,43.4518],[-8.3112,43.4551],[-8.2988,43.4545],[-8.2703,43.4639],[-8.2706,43.4579],[-8.2667,43.4559],[-8.2549,43.4665],[-8.2491,43.4614],[-8.2357,43.4627],[-8.2266,43.4581],[-8.203,43.46],[-8.182,43.4721],[-8.1861,43.4751],[-8.1815,43.4807],[-8.1779,43.478],[-8.1706,43.4825],[-8.1598,43.5069],[-8.1513,43.5151],[-8.1728,43.5133],[-8.165,43.5092],[-8.1732,43.5051],[-8.1724,43.4973],[-8.1984,43.4873],[-8.1924,43.4806],[-8.2063,43.4765],[-8.2106,43.4834],[-8.2194,43.4831],[-8.219,43.4775],[-8.2261,43.4783],[-8.2333,43.4714],[-8.2366,43.4764],[-8.2306,43.4782],[-8.2314,43.4813],[-8.2483,43.4775],[-8.249,43.4846],[-8.2429,43.4908],[-8.247,43.4933],[-8.2598,43.4866],[-8.2587,43.4787],[-8.2676,43.4673],[-8.2791,43.4681],[-8.2872,43.4618],[-8.2997,43.4607],[-8.3022,43.4656],[-8.3161,43.4705],[-8.338,43.4588],[-8.3476,43.463],[-8.3388,43.4752],[-8.3246,43.4838],[-8.3199,43.4938],[-8.3196,43.5022],[-8.3305,43.507],[-8.3281,43.5183],[-8.3202,43.5254],[-8.3125,43.5276],[-8.3049,43.5244],[-8.2969,43.5314],[-8.3027,43.5464],[-8.3118,43.5454],[-8.314,43.555],[-8.3237,43.5548],[-8.3257,43.5598],[-8.3217,43.5651],[-8.3077,43.5685],[-8.3036,43.56],[-8.296,43.556],[-8.2824,43.5602],[-8.2723,43.5546],[-8.2579,43.5588],[-8.2159,43.5816],[-8.2198,43.5858],[-8.2159,43.5923],[-8.2018,43.5966],[-8.2007,43.6035],[-8.1917,43.6021],[-8.1908,43.6075],[-8.1969,43.6117],[-8.1901,43.612],[-8.1881,43.6211],[-8.1808,43.6211],[-8.181,43.6146],[-8.1708,43.612],[-8.1506,43.6166],[-8.1397,43.6334],[-8.1269,43.6344],[-8.1226,43.6438],[-8.1191,43.6396],[-8.1092,43.641],[-8.1128,43.6458],[-8.1091,43.6488],[-8.1044,43.6457],[-8.1028,43.6527],[-8.0942,43.6541],[-8.0929,43.6664],[-8.0868,43.6612],[-8.0873,43.6541],[-8.0819,43.6516],[-8.0843,43.6449],[-8.067,43.6436],[-8.0699,43.651],[-8.0542,43.6485],[-8.0517,43.6521],[-8.0558,43.6595],[-8.0756,43.6598],[-8.0713,43.6612],[-8.0706,43.6737],[-8.0749,43.6821],[-8.0662,43.6823],[-8.0623,43.704],[-8.0495,43.7109],[-8.0314,43.7136],[-8.0004,43.7049],[-7.9606,43.7228],[-7.9474,43.733],[-7.9507,43.7414],[-7.929,43.7395],[-7.9224,43.743],[-7.9044,43.7691],[-7.8887,43.763],[-7.8779,43.7654],[-7.868,43.7734],[-7.8592,43.7593],[-7.8668,43.7441],[-7.8641,43.7355],[-7.869,43.7379],[-7.8717,43.7333],[-7.8555,43.7246],[-7.8497,43.7106],[-7.863,43.7108],[-7.8743,43.7171],[-7.876,43.7233],[-7.8772,43.7185],[-7.8697,43.7076],[-7.8796,43.7],[-7.8815,43.6932],[-7.8773,43.6876],[-7.8903,43.6897],[-7.8899,43.6832],[-7.8711,43.6802],[-7.8713,43.6731],[-7.8768,43.6714],[-7.8816,43.6771],[-7.8879,43.6773],[-7.9034,43.6707],[-7.896,43.6663],[-7.8748,43.663],[-7.8494,43.6714],[-7.8438,43.6684],[-7.844,43.6754],[-7.8589,43.6833],[-7.857,43.6864],[-7.8664,43.697],[-7.8632,43.7004],[-7.8556,43.7053],[-7.833,43.7037],[-7.8294,43.7014],[-7.839,43.699],[-7.8352,43.6943],[-7.8068,43.6945],[-7.8255,43.7008],[-7.8297,43.7089],[-7.8245,43.7154],[-7.8065,43.7156],[-7.8147,43.7224],[-7.8133,43.7263],[-7.7975,43.7222],[-7.7934,43.7257],[-7.7974,43.7304],[-7.7923,43.7358],[-7.7764,43.7331],[-7.7499,43.7466],[-7.7235,43.7493],[-7.7217,43.7561],[-7.7147,43.7562],[-7.7169,43.7644],[-7.6871,43.7759],[-7.6869,43.7884],[-7.6768,43.787],[-7.6615,43.7766],[-7.6648,43.7717],[-7.6748,43.7703],[-7.675,43.7617],[-7.6885,43.756],[-7.6917,43.7493],[-7.6867,43.7429],[-7.6997,43.7351]]],[[[-8.872,42.5241],[-8.8824,42.5295],[-8.8821,42.5339],[-8.8711,42.5322],[-8.88,42.5412],[-8.8692,42.5574],[-8.8741,42.5633],[-8.8815,42.5577],[-8.892,42.5683],[-8.8766,42.5751],[-8.8709,42.5641],[-8.8617,42.5679],[-8.8551,42.5648],[-8.8601,42.5626],[-8.8586,42.5568],[-8.8623,42.5536],[-8.8582,42.5459],[-8.8668,42.542],[-8.8662,42.5257],[-8.872,42.5241]]],[[[-8.9454,42.3547],[-8.9476,42.3662],[-8.9398,42.3675],[-8.9457,42.38],[-8.9411,42.3869],[-8.9345,42.3878],[-8.9319,42.3976],[-8.9256,42.3946],[-8.9208,42.3995],[-8.9367,42.357],[-8.9454,42.3547]]],[[[-8.9128,42.2115],[-8.9171,42.2143],[-8.9088,42.2185],[-8.9062,42.2365],[-8.9178,42.2511],[-8.9026,42.2436],[-8.9009,42.2317],[-8.8954,42.2275],[-8.9016,42.2253],[-8.9024,42.2156],[-8.9128,42.2115]]],[[[-9.0098,42.4634],[-9.0156,42.4654],[-9.0201,42.4746],[-9.0154,42.4843],[-8.9994,42.4692],[-9.0098,42.4634]]]]}},{"type":"Feature","properties":{"NUTS_ID":"ES_C6","Couleur":6,"name":"05_ES","LONG":3615614,"LAT":2116875,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":41.7983,"Long":1.5288},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.2204,41.0714],[0.2166,41.0772],[0.2201,41.0829],[0.2013,41.0847],[0.201,41.1027],[0.209,41.1169],[0.2013,41.1268],[0.2199,41.1324],[0.214,41.1373],[0.2489,41.1306],[0.2562,41.1437],[0.253,41.1501],[0.2731,41.1488],[0.3034,41.1644],[0.3006,41.1669],[0.305,41.1718],[0.306,41.1857],[0.3225,41.2252],[0.3322,41.223],[0.3404,41.2311],[0.3609,41.2255],[0.3647,41.2387],[0.3814,41.2364],[0.3738,41.2493],[0.3857,41.2788],[0.3667,41.3013],[0.3684,41.3186],[0.3489,41.3277],[0.3593,41.342],[0.3668,41.3418],[0.373,41.3535],[0.36,41.3705],[0.32,41.3949],[0.335,41.4082],[0.344,41.4178],[0.3477,41.442],[0.3554,41.4527],[0.3447,41.4622],[0.3421,41.484],[0.3474,41.4877],[0.3709,41.4846],[0.3968,41.4903],[0.4175,41.5169],[0.4462,41.5429],[0.4304,41.5652],[0.4302,41.5779],[0.4359,41.5849],[0.4285,41.6024],[0.4021,41.5927],[0.3497,41.5995],[0.3459,41.6219],[0.358,41.6317],[0.3495,41.6362],[0.333,41.6596],[0.3263,41.6622],[0.3288,41.682],[0.3421,41.6965],[0.3687,41.7142],[0.3693,41.7247],[0.3728,41.7239],[0.3848,41.7403],[0.3955,41.732],[0.3987,41.7578],[0.4697,41.7656],[0.4739,41.7872],[0.4833,41.8015],[0.4952,41.8045],[0.5022,41.8144],[0.5155,41.8223],[0.5441,41.8211],[0.5535,41.8351],[0.5525,41.8493],[0.5574,41.8542],[0.5801,41.8509],[0.5801,41.8634],[0.6072,41.8718],[0.6083,41.8782],[0.5928,41.8844],[0.601,41.9085],[0.5947,41.9174],[0.6075,41.9193],[0.5625,41.9327],[0.5619,41.9382],[0.587,41.9668],[0.5925,41.9688],[0.6044,41.9606],[0.6036,41.9654],[0.6095,41.9681],[0.618,41.9889],[0.6386,41.9946],[0.642,41.9821],[0.6467,41.9967],[0.6568,42.0009],[0.6629,42.0122],[0.6635,42.0152],[0.657,42.0148],[0.6518,42.0262],[0.6563,42.0304],[0.6568,42.0404],[0.6712,42.047],[0.6689,42.0611],[0.6857,42.0928],[0.6996,42.1069],[0.7025,42.1199],[0.6969,42.1286],[0.6959,42.152],[0.714,42.1634],[0.6986,42.1727],[0.7095,42.1973],[0.7084,42.2043],[0.7176,42.2195],[0.7142,42.2227],[0.7341,42.2497],[0.7449,42.3012],[0.7567,42.3093],[0.7552,42.3134],[0.7647,42.3225],[0.7437,42.3263],[0.7404,42.3368],[0.7544,42.3466],[0.7714,42.3506],[0.7642,42.3568],[0.7462,42.3568],[0.7233,42.3656],[0.7462,42.3848],[0.7378,42.3981],[0.726,42.4052],[0.7346,42.4078],[0.7359,42.414],[0.7263,42.4269],[0.7102,42.4364],[0.7059,42.4504],[0.7086,42.4594],[0.6905,42.4876],[0.698,42.4864],[0.7006,42.4959],[0.7134,42.4872],[0.7297,42.4972],[0.7332,42.5043],[0.7397,42.5051],[0.729,42.5125],[0.7203,42.5131],[0.7238,42.5206],[0.7211,42.5245],[0.7364,42.539],[0.7504,42.5348],[0.741,42.5439],[0.7499,42.5528],[0.7497,42.5603],[0.7587,42.5722],[0.7606,42.5921],[0.7679,42.6098],[0.7451,42.6151],[0.7383,42.6123],[0.7065,42.6218],[0.6987,42.6288],[0.7014,42.6425],[0.6957,42.6585],[0.6804,42.666],[0.6734,42.679],[0.6601,42.691],[0.6763,42.691],[0.674,42.6994],[0.6825,42.7089],[0.6731,42.718],[0.6802,42.7232],[0.6701,42.7311],[0.6634,42.7497],[0.6425,42.7538],[0.6503,42.7653],[0.6669,42.7753],[0.645,42.783],[0.6591,42.7976],[0.6702,42.8019],[0.6648,42.8146],[0.67,42.8243],[0.6621,42.8288],[0.659,42.8379],[0.6782,42.8478],[0.6779,42.8553],[0.6916,42.8552],[0.7092,42.8615],[0.7346,42.8543],[0.7355,42.8488],[0.7789,42.836],[0.8008,42.8407],[0.8332,42.8283],[0.8582,42.8257],[0.8708,42.8157],[0.8851,42.8132],[0.9263,42.7893],[0.9332,42.7896],[0.9391,42.7967],[0.9601,42.8059],[0.9841,42.7867],[1.0056,42.7908],[1.0389,42.7868],[1.0478,42.781],[1.0733,42.7826],[1.0788,42.7883],[1.0873,42.7784],[1.1085,42.7719],[1.1093,42.7657],[1.1193,42.7634],[1.1281,42.7557],[1.1326,42.7505],[1.1298,42.7452],[1.135,42.7357],[1.1331,42.7284],[1.1661,42.7089],[1.1732,42.7081],[1.1891,42.7174],[1.2163,42.72],[1.2288,42.7277],[1.2472,42.7227],[1.2526,42.7145],[1.268,42.7184],[1.2759,42.7182],[1.2781,42.7141],[1.2947,42.7195],[1.3092,42.7176],[1.3328,42.7247],[1.3402,42.7194],[1.3572,42.7197],[1.3508,42.703],[1.3648,42.6947],[1.3772,42.6945],[1.3871,42.6891],[1.3872,42.6688],[1.3968,42.6681],[1.4058,42.6567],[1.4136,42.6556],[1.4204,42.6249],[1.4305,42.6174],[1.4332,42.607],[1.4426,42.6037],[1.4404,42.5944],[1.4276,42.5875],[1.4264,42.5827],[1.4449,42.5682],[1.4241,42.5571],[1.4135,42.5361],[1.4383,42.5434],[1.4505,42.5399],[1.4683,42.51],[1.4433,42.4952],[1.4255,42.4932],[1.4189,42.4828],[1.4334,42.4819],[1.4411,42.4754],[1.4405,42.4636],[1.4474,42.4601],[1.4411,42.4555],[1.4467,42.4438],[1.4425,42.4447],[1.4551,42.4361],[1.5171,42.4287],[1.5505,42.4324],[1.5528,42.4434],[1.5601,42.449],[1.5561,42.4541],[1.561,42.4587],[1.5674,42.4589],[1.5791,42.4497],[1.5854,42.4603],[1.5973,42.4663],[1.6297,42.4641],[1.6361,42.4681],[1.6569,42.4682],[1.6624,42.4745],[1.6621,42.4936],[1.6699,42.5042],[1.6798,42.4945],[1.7035,42.4898],[1.7258,42.5044],[1.731,42.4924],[1.7472,42.4954],[1.7629,42.4875],[1.7918,42.4855],[1.8048,42.4902],[1.8169,42.4831],[1.8235,42.4866],[1.8433,42.4772],[1.8474,42.4679],[1.8542,42.4641],[1.8597,42.4625],[1.8643,42.4666],[1.8791,42.4607],[1.8843,42.4499],[1.8907,42.4481],[1.8995,42.4502],[1.9156,42.4462],[1.9366,42.4544],[1.9428,42.445],[1.9407,42.4304],[1.9585,42.4234],[1.9548,42.4115],[1.9607,42.404],[1.9646,42.3822],[1.9859,42.3621],[2.0153,42.3474],[2.0235,42.3558],[2.0583,42.3586],[2.0727,42.3655],[2.0846,42.3619],[2.0893,42.3739],[2.1167,42.3833],[2.1147,42.3946],[2.1216,42.3972],[2.1286,42.4126],[2.1481,42.4204],[2.17,42.4231],[2.1804,42.4182],[2.2066,42.4174],[2.2242,42.4259],[2.2461,42.4289],[2.2568,42.4387],[2.2909,42.4229],[2.3125,42.4285],[2.3248,42.4175],[2.3441,42.4167],[2.3457,42.4094],[2.3584,42.4038],[2.3874,42.4003],[2.4107,42.3922],[2.432,42.3939],[2.4357,42.3751],[2.4541,42.3699],[2.4833,42.3398],[2.5001,42.3432],[2.5262,42.3334],[2.5421,42.3339],[2.5543,42.3458],[2.5542,42.3539],[2.5768,42.3581],[2.6099,42.3469],[2.6715,42.3408],[2.6753,42.3423],[2.6749,42.3571],[2.6608,42.3661],[2.6613,42.3771],[2.6517,42.3877],[2.6705,42.387],[2.672,42.4035],[2.6931,42.4064],[2.7163,42.4213],[2.7522,42.4257],[2.77,42.4119],[2.7771,42.4118],[2.7839,42.4177],[2.7992,42.4185],[2.8044,42.4304],[2.8153,42.4387],[2.8272,42.4393],[2.8395,42.4593],[2.8613,42.4553],[2.8633,42.4638],[2.8702,42.4677],[2.8823,42.4604],[2.9183,42.4562],[2.9245,42.4586],[2.9317,42.4747],[2.947,42.4821],[2.9671,42.4655],[2.9803,42.4675],[2.9887,42.4742],[3.0131,42.4664],[3.0313,42.4747],[3.0402,42.4735],[3.054,42.45],[3.086,42.4258],[3.0986,42.4251],[3.1102,42.4355],[3.1211,42.4373],[3.1448,42.433],[3.1748,42.4354],[3.1608,42.4281],[3.1694,42.4234],[3.171,42.4157],[3.1597,42.4083],[3.1666,42.4013],[3.153,42.394],[3.1595,42.389],[3.1671,42.3894],[3.1552,42.3787],[3.1659,42.3693],[3.163,42.3605],[3.1858,42.3519],[3.1858,42.3436],[3.1965,42.335],[3.2033,42.3367],[3.203,42.3418],[3.1999,42.3408],[3.2038,42.3472],[3.2102,42.3439],[3.216,42.3492],[3.2295,42.3514],[3.2384,42.349],[3.2412,42.3353],[3.2512,42.3316],[3.2544,42.3352],[3.2601,42.3335],[3.2615,42.3404],[3.2656,42.3408],[3.2796,42.3368],[3.2812,42.332],[3.3081,42.3268],[3.3092,42.321],[3.3118,42.3202],[3.3111,42.3248],[3.3223,42.3194],[3.3187,42.3144],[3.3029,42.3109],[3.2998,42.3041],[3.2898,42.3061],[3.292,42.2951],[3.2865,42.2933],[3.296,42.2898],[3.2989,42.2844],[3.2877,42.2825],[3.2809,42.2887],[3.2763,42.2872],[3.2769,42.2799],[3.287,42.2711],[3.2878,42.2652],[3.2815,42.2538],[3.2552,42.2512],[3.2549,42.244],[3.2667,42.2433],[3.2647,42.2377],[3.2495,42.2404],[3.2437,42.2496],[3.2373,42.2475],[3.2296,42.2515],[3.2294,42.2405],[3.2191,42.2323],[3.1966,42.2471],[3.1822,42.2454],[3.1806,42.2585],[3.1668,42.2647],[3.1473,42.2574],[3.1267,42.2379],[3.1115,42.2022],[3.1171,42.146],[3.1242,42.128],[3.1356,42.1265],[3.1378,42.1157],[3.1526,42.1197],[3.1769,42.1116],[3.17,42.1051],[3.1837,42.1037],[3.1984,42.078],[3.2105,42.069],[3.2099,42.0617],[3.2138,42.0594],[3.2113,42.054],[3.2031,42.0541],[3.1981,42.0483],[3.1952,42.0221],[3.2,41.9951],[3.2108,41.9756],[3.2315,41.9695],[3.2337,41.9503],[3.2155,41.9378],[3.2204,41.9349],[3.2181,41.9275],[3.2167,41.9182],[3.2074,41.9172],[3.2103,41.9041],[3.2032,41.8917],[3.1955,41.8939],[3.1913,41.8883],[3.1827,41.8873],[3.178,41.8688],[3.1724,41.8637],[3.159,41.8595],[3.1519,41.8621],[3.1428,41.8565],[3.145,41.8496],[3.1294,41.841],[3.1212,41.8411],[3.1284,41.8429],[3.1235,41.8479],[3.1042,41.8457],[3.0723,41.8198],[3.0601,41.7921],[3.0458,41.7886],[3.0444,41.7789],[3.0316,41.7804],[3.0324,41.7716],[3.0114,41.7722],[2.9716,41.7532],[2.9538,41.731],[2.935,41.7204],[2.9352,41.7152],[2.9123,41.7078],[2.9042,41.7106],[2.888,41.7013],[2.8826,41.7043],[2.8661,41.6987],[2.8556,41.7002],[2.8196,41.6888],[2.8062,41.6762],[2.7931,41.6736],[2.7785,41.6488],[2.745,41.6424],[2.7167,41.6282],[2.5627,41.5782],[2.5555,41.5793],[2.495,41.5527],[2.4684,41.5459],[2.3786,41.4946],[2.3078,41.4761],[2.2674,41.4594],[2.2527,41.448],[2.2239,41.4085],[2.199,41.388],[2.1741,41.3433],[2.1752,41.3533],[2.1867,41.3669],[2.1851,41.3809],[2.1831,41.3744],[2.1821,41.3783],[2.1779,41.3739],[2.182,41.3704],[2.1767,41.3727],[2.181,41.3658],[2.1721,41.3622],[2.1755,41.3587],[2.1706,41.36],[2.1541,41.3431],[2.151,41.3465],[2.1486,41.3319],[2.1603,41.342],[2.1509,41.3218],[2.1394,41.3067],[2.1196,41.2921],[2.0319,41.2677],[1.9445,41.2638],[1.9218,41.26],[1.8537,41.2344],[1.8153,41.236],[1.7827,41.2233],[1.7437,41.2182],[1.7298,41.2057],[1.7363,41.2121],[1.7307,41.2155],[1.6773,41.1991],[1.6453,41.1956],[1.5267,41.1808],[1.47,41.1669],[1.4075,41.141],[1.3947,41.1319],[1.3799,41.1342],[1.3441,41.1249],[1.3142,41.1297],[1.2961,41.1271],[1.2706,41.1131],[1.2568,41.1127],[1.2323,41.095],[1.2492,41.1087],[1.2399,41.1089],[1.2422,41.1062],[1.2364,41.1069],[1.2369,41.1032],[1.2315,41.1063],[1.2328,41.1021],[1.231,41.1065],[1.2182,41.1055],[1.2122,41.1014],[1.2171,41.0947],[1.214,41.0932],[1.2159,41.0958],[1.211,41.1009],[1.1914,41.0869],[1.179,41.0681],[1.1817,41.0643],[1.1703,41.0546],[1.1607,41.0559],[1.1583,41.0639],[1.1478,41.0653],[1.1442,41.0718],[1.129,41.0753],[1.0842,41.0637],[1.0714,41.0665],[1.0623,41.0608],[1.0629,41.0655],[1.059,41.0638],[1.0618,41.0626],[1.0467,41.0631],[1.0039,41.043],[0.9893,41.0416],[0.9665,41.0284],[0.9391,41.0044],[0.933,40.9917],[0.9121,40.9849],[0.876,40.9522],[0.8624,40.9469],[0.8578,40.9347],[0.827,40.9082],[0.8267,40.903],[0.8012,40.8812],[0.7924,40.8667],[0.7692,40.8572],[0.7627,40.8466],[0.7523,40.8465],[0.7452,40.8389],[0.7418,40.8237],[0.7352,40.8239],[0.7327,40.8187],[0.7082,40.8109],[0.6997,40.8038],[0.7107,40.7858],[0.7311,40.7691],[0.7602,40.7628],[0.7848,40.7697],[0.7729,40.779],[0.7313,40.7879],[0.7496,40.7925],[0.7706,40.791],[0.8339,40.7319],[0.8545,40.7299],[0.8435,40.7286],[0.8637,40.7215],[0.8742,40.734],[0.8864,40.7195],[0.8733,40.6975],[0.8538,40.6824],[0.7788,40.653],[0.7501,40.635],[0.7081,40.5849],[0.6928,40.5715],[0.6746,40.5619],[0.6499,40.5551],[0.6288,40.554],[0.613,40.5572],[0.5994,40.5681],[0.5979,40.5745],[0.6051,40.578],[0.6118,40.5768],[0.6185,40.5722],[0.6163,40.5791],[0.617,40.5865],[0.6335,40.5817],[0.6542,40.5856],[0.6605,40.5919],[0.6723,40.593],[0.6877,40.5899],[0.6894,40.602],[0.688,40.5901],[0.7037,40.5898],[0.7114,40.5921],[0.746,40.6362],[0.7258,40.6398],[0.6992,40.6373],[0.6826,40.6354],[0.6633,40.6265],[0.6538,40.6267],[0.6463,40.6238],[0.6266,40.6217],[0.6063,40.6228],[0.5982,40.6204],[0.5609,40.5845],[0.5383,40.5675],[0.533,40.5539],[0.5224,40.5426],[0.5152,40.5229],[0.438,40.5471],[0.4343,40.5647],[0.4367,40.5726],[0.444,40.5782],[0.4286,40.581],[0.4047,40.5948],[0.4028,40.602],[0.3885,40.6067],[0.338,40.6088],[0.3159,40.614],[0.2985,40.626],[0.2924,40.6233],[0.2831,40.6272],[0.266,40.6448],[0.2694,40.6481],[0.2677,40.6582],[0.2919,40.6886],[0.2625,40.7059],[0.2366,40.7017],[0.2267,40.7171],[0.2253,40.7327],[0.1974,40.7242],[0.1911,40.7312],[0.1823,40.7283],[0.1708,40.7328],[0.1592,40.7506],[0.1754,40.7411],[0.1753,40.7549],[0.1902,40.7503],[0.1963,40.7586],[0.2016,40.7576],[0.2121,40.7675],[0.2293,40.7682],[0.2348,40.7767],[0.2336,40.787],[0.2578,40.8002],[0.2647,40.8133],[0.2783,40.821],[0.2559,40.8474],[0.2555,40.8745],[0.239,40.8847],[0.2461,40.8872],[0.2501,40.896],[0.2535,40.9063],[0.2486,40.9097],[0.2543,40.912],[0.2539,40.9197],[0.2743,40.9366],[0.2714,40.9442],[0.2756,40.9507],[0.2812,40.9515],[0.2843,40.9647],[0.2936,40.9706],[0.2824,40.9732],[0.2812,40.9872],[0.2687,40.998],[0.2748,41.0063],[0.2587,41.0146],[0.262,41.0193],[0.28,41.0198],[0.2579,41.0294],[0.2462,41.0412],[0.2424,41.0349],[0.232,41.0353],[0.2332,41.0471],[0.2208,41.0417],[0.2176,41.0442],[0.2305,41.0546],[0.2288,41.0587],[0.2189,41.0614],[0.2204,41.0714]]]]}},{"type":"Feature","properties":{"NUTS_ID":"ES_C8","Couleur":4,"name":"07_ES","LONG":3015109,"LAT":1926025,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":39.2448,"Long":-5.1506},"geometry":{"type":"MultiPolygon","coordinates":[[[[-2.7621,38.5328],[-2.7738,38.5283],[-2.7702,38.5207],[-2.78,38.5161],[-2.7806,38.5094],[-2.7874,38.5156],[-2.7858,38.5116],[-2.7932,38.5086],[-2.7937,38.502],[-2.8066,38.5031],[-2.813,38.4913],[-2.825,38.4878],[-2.8233,38.485],[-2.8308,38.4875],[-2.8311,38.4765],[-2.8382,38.4844],[-2.8543,38.479],[-2.8507,38.4746],[-2.8609,38.4752],[-2.8702,38.4652],[-2.8792,38.4637],[-2.8778,38.4569],[-2.8848,38.4577],[-2.8815,38.4527],[-2.9058,38.4699],[-2.9384,38.4748],[-2.9566,38.4686],[-2.9636,38.4715],[-2.9769,38.4549],[-2.9935,38.4501],[-2.9963,38.4436],[-2.9922,38.4286],[-3.0025,38.4083],[-3.065,38.4783],[-3.1302,38.4388],[-3.1383,38.4386],[-3.18,38.45],[-3.28,38.4604],[-3.3053,38.4793],[-3.3265,38.4822],[-3.375,38.4753],[-3.3804,38.4554],[-3.3767,38.4396],[-3.4104,38.4236],[-3.4248,38.4068],[-3.4332,38.4081],[-3.4517,38.4003],[-3.4726,38.398],[-3.4855,38.4041],[-3.5243,38.4091],[-3.5334,38.4151],[-3.5352,38.4394],[-3.5438,38.4463],[-3.5674,38.4521],[-3.5831,38.4515],[-3.5859,38.4056],[-3.5982,38.3985],[-3.6205,38.394],[-3.647,38.4042],[-3.6993,38.4129],[-3.73,38.4244],[-3.7391,38.4138],[-3.7649,38.4244],[-3.7856,38.4253],[-3.8301,38.4128],[-3.8306,38.3929],[-3.8599,38.3734],[-3.8742,38.3771],[-3.9164,38.3688],[-4.001,38.3678],[-4.0583,38.3789],[-4.0864,38.3767],[-4.1115,38.3824],[-4.1286,38.3795],[-4.1449,38.3865],[-4.1553,38.3821],[-4.1751,38.3845],[-4.2232,38.3975],[-4.2578,38.4016],[-4.2768,38.3902],[-4.2787,38.3775],[-4.2689,38.3472],[-4.2772,38.3482],[-4.2874,38.3428],[-4.2963,38.3502],[-4.3175,38.357],[-4.3206,38.3624],[-4.3299,38.3627],[-4.3887,38.3859],[-4.4065,38.3832],[-4.4161,38.3939],[-4.4295,38.396],[-4.4352,38.4023],[-4.453,38.4009],[-4.4713,38.426],[-4.5002,38.4451],[-4.5127,38.4639],[-4.5234,38.4631],[-4.5353,38.47],[-4.5415,38.4819],[-4.5592,38.4769],[-4.5658,38.4908],[-4.5718,38.4875],[-4.5766,38.4935],[-4.5845,38.4933],[-4.5885,38.4864],[-4.5941,38.4867],[-4.6097,38.4961],[-4.619,38.5083],[-4.6228,38.5238],[-4.6326,38.5246],[-4.6665,38.5479],[-4.6795,38.5467],[-4.7047,38.5539],[-4.7006,38.5605],[-4.7062,38.5713],[-4.7358,38.5757],[-4.7876,38.5971],[-4.8212,38.5965],[-4.8352,38.6076],[-4.8602,38.614],[-4.8675,38.6317],[-4.8641,38.6402],[-4.8682,38.6477],[-4.8689,38.681],[-4.877,38.6861],[-4.9188,38.6861],[-4.9333,38.6815],[-4.9694,38.6866],[-4.9992,38.6942],[-5.0045,38.7119],[-5.0247,38.7265],[-5.047,38.7291],[-5.0992,38.7077],[-5.119,38.7162],[-5.1528,38.7164],[-5.1667,38.7117],[-5.1715,38.7176],[-5.1846,38.7197],[-5.1674,38.6808],[-5.1681,38.6774],[-5.1858,38.6742],[-5.1875,38.6704],[-5.1791,38.6658],[-5.1843,38.6598],[-5.1969,38.6674],[-5.2,38.6566],[-5.2085,38.6677],[-5.2148,38.6486],[-5.2238,38.6568],[-5.223,38.6484],[-5.2367,38.6424],[-5.2398,38.6367],[-5.2475,38.6399],[-5.2445,38.6329],[-5.2536,38.6335],[-5.2545,38.6258],[-5.2681,38.6227],[-5.2784,38.6127],[-5.2923,38.6109],[-5.3103,38.5936],[-5.306,38.5821],[-5.3086,38.5777],[-5.3358,38.5786],[-5.3566,38.5855],[-5.3718,38.5836],[-5.3697,38.5777],[-5.3757,38.5683],[-5.3861,38.5669],[-5.3899,38.5622],[-5.3836,38.556],[-5.3929,38.5528],[-5.3837,38.5399],[-5.3899,38.5397],[-5.3977,38.5466],[-5.407,38.5437],[-5.4035,38.5363],[-5.4161,38.5303],[-5.4094,38.5216],[-5.4166,38.5204],[-5.419,38.5126],[-5.4279,38.5147],[-5.4347,38.5044],[-5.4449,38.505],[-5.4506,38.4983],[-5.4583,38.4995],[-5.469,38.4851],[-5.4788,38.4851],[-5.4836,38.4658],[-5.4912,38.4665],[-5.504,38.4567],[-5.5131,38.4641],[-5.5193,38.4635],[-5.569,38.4326],[-5.5843,38.401],[-5.5851,38.3859],[-5.5668,38.3773],[-5.5632,38.372],[-5.5662,38.3676],[-5.5593,38.3669],[-5.567,38.3626],[-5.5757,38.3292],[-5.5561,38.3183],[-5.5513,38.311],[-5.5526,38.3035],[-5.5418,38.286],[-5.5445,38.2824],[-5.5412,38.2781],[-5.5375,38.2796],[-5.5376,38.2731],[-5.526,38.2642],[-5.5301,38.2552],[-5.5238,38.2493],[-5.5226,38.2384],[-5.5244,38.2227],[-5.5205,38.2076],[-5.5388,38.2007],[-5.5391,38.1868],[-5.5438,38.1849],[-5.54,38.181],[-5.5405,38.17],[-5.5358,38.1687],[-5.539,38.1617],[-5.5507,38.1606],[-5.5602,38.1486],[-5.5759,38.1497],[-5.5857,38.1404],[-5.5848,38.1318],[-5.6326,38.1386],[-5.6671,38.1091],[-5.6694,38.1018],[-5.6937,38.0838],[-5.7121,38.0823],[-5.735,38.0863],[-5.7342,38.1095],[-5.7402,38.1301],[-5.7309,38.1372],[-5.7155,38.1339],[-5.6953,38.1498],[-5.7058,38.1694],[-5.7021,38.1673],[-5.6951,38.1711],[-5.6843,38.1571],[-5.6887,38.1819],[-5.699,38.181],[-5.6948,38.1866],[-5.7136,38.1859],[-5.7282,38.1975],[-5.7421,38.1939],[-5.7573,38.1806],[-5.7818,38.1859],[-5.7995,38.1746],[-5.8032,38.1783],[-5.8107,38.1737],[-5.8224,38.1758],[-5.8232,38.1699],[-5.8379,38.1745],[-5.8516,38.172],[-5.8563,38.1617],[-5.8774,38.1558],[-5.877,38.1379],[-5.8807,38.1323],[-5.913,38.1227],[-5.9264,38.1051],[-5.9294,38.0897],[-5.9109,38.0782],[-5.9081,38.0683],[-5.9193,38.0498],[-5.9343,38.0469],[-5.937,38.0405],[-5.9328,38.0308],[-5.9538,37.9954],[-5.961,37.9998],[-5.9936,37.9996],[-6.0063,37.9915],[-6.0172,37.9912],[-6.0308,37.9976],[-6.0462,37.9974],[-6.0779,37.9847],[-6.1154,37.9818],[-6.1431,37.9656],[-6.1491,37.9664],[-6.1539,37.9577],[-6.1679,37.9559],[-6.1803,37.9411],[-6.1961,37.9488],[-6.1942,37.9548],[-6.2016,37.9621],[-6.2333,37.958],[-6.2452,37.9623],[-6.252,37.9714],[-6.3034,37.9783],[-6.3294,37.9983],[-6.3528,38.0075],[-6.3592,38.0167],[-6.3588,38.0312],[-6.3673,38.049],[-6.3902,38.0485],[-6.414,38.0586],[-6.4444,38.0597],[-6.4525,38.056],[-6.4437,38.047],[-6.4697,38.0312],[-6.4731,38.0185],[-6.4655,38.0111],[-6.4766,38.0079],[-6.4918,38.0095],[-6.4951,38.0192],[-6.5249,38.0216],[-6.5458,38.0282],[-6.5653,38.027],[-6.5722,38.0203],[-6.5837,38.0213],[-6.5873,38.0268],[-6.5806,38.0528],[-6.6229,38.0967],[-6.6421,38.0976],[-6.6494,38.0901],[-6.6531,38.0965],[-6.6604,38.0924],[-6.6899,38.0985],[-6.6927,38.0948],[-6.7076,38.0965],[-6.7155,38.0927],[-6.7198,38.1007],[-6.7242,38.097],[-6.7295,38.0996],[-6.7352,38.094],[-6.7305,38.0925],[-6.7321,38.0901],[-6.7583,38.0928],[-6.7611,38.0979],[-6.7702,38.0995],[-6.765,38.1061],[-6.7737,38.1047],[-6.7701,38.1122],[-6.7892,38.1092],[-6.8,38.1149],[-6.8079,38.1112],[-6.8159,38.1202],[-6.8092,38.1348],[-6.7996,38.1439],[-6.7929,38.1664],[-6.7952,38.1786],[-6.8225,38.1739],[-6.8486,38.1773],[-6.9026,38.2019],[-6.9225,38.2003],[-6.9317,38.2084],[-6.9385,38.2076],[-6.9374,38.2205],[-6.9465,38.2119],[-6.9498,38.2124],[-6.9475,38.2174],[-6.9563,38.217],[-6.9719,38.2024],[-6.9815,38.2115],[-6.9954,38.2039],[-7.0113,38.2046],[-7.0102,38.1964],[-7.0167,38.1974],[-7.0227,38.1855],[-7.0287,38.1827],[-7.0433,38.1873],[-7.0511,38.1796],[-7.0565,38.1802],[-7.058,38.1867],[-7.0665,38.1866],[-7.0662,38.1794],[-7.0851,38.1693],[-7.0894,38.1786],[-7.0971,38.1791],[-7.108,38.1881],[-7.1174,38.2139],[-7.143,38.2405],[-7.1433,38.262],[-7.1489,38.2686],[-7.1529,38.2677],[-7.1517,38.2761],[-7.1664,38.2806],[-7.1756,38.2887],[-7.2019,38.3286],[-7.2679,38.3911],[-7.2806,38.4204],[-7.2998,38.4254],[-7.3166,38.4399],[-7.336,38.435],[-7.3312,38.444],[-7.3154,38.4494],[-7.3142,38.4607],[-7.3015,38.4659],[-7.2956,38.4785],[-7.3001,38.4837],[-7.3136,38.4748],[-7.3227,38.4787],[-7.3157,38.4958],[-7.3142,38.5133],[-7.3022,38.5272],[-7.3035,38.5441],[-7.2906,38.5569],[-7.2861,38.5738],[-7.2752,38.5761],[-7.2638,38.5885],[-7.2572,38.6121],[-7.2444,38.623],[-7.2498,38.6291],[-7.2651,38.6286],[-7.2698,38.6389],[-7.2642,38.6838],[-7.2669,38.6902],[-7.2645,38.7038],[-7.2532,38.7177],[-7.2554,38.726],[-7.2031,38.751],[-7.1915,38.7686],[-7.161,38.7808],[-7.1549,38.7939],[-7.1323,38.8117],[-7.1158,38.817],[-7.095,38.8154],[-7.0852,38.8244],[-7.0684,38.8539],[-7.0394,38.8648],[-7.0332,38.8792],[-7.0402,38.8839],[-7.0423,38.8992],[-7.0521,38.9072],[-7.027,38.924],[-7.0205,38.9402],[-6.9835,38.9808],[-6.9641,39.0124],[-6.9514,39.0241],[-6.968,39.0399],[-6.9594,39.0548],[-6.9816,39.0885],[-7.0299,39.1165],[-7.053,39.118],[-7.1003,39.1051],[-7.1059,39.0994],[-7.1439,39.1093],[-7.1496,39.1225],[-7.1362,39.1452],[-7.1404,39.1505],[-7.1333,39.1605],[-7.1347,39.1712],[-7.1494,39.1726],[-7.1677,39.1814],[-7.2082,39.1874],[-7.2414,39.2086],[-7.2402,39.2189],[-7.2453,39.2259],[-7.2418,39.2414],[-7.2479,39.2536],[-7.2315,39.2784],[-7.2675,39.3015],[-7.2745,39.3141],[-7.3106,39.341],[-7.3065,39.356],[-7.3123,39.3708],[-7.3236,39.382],[-7.3023,39.4134],[-7.3024,39.4223],[-7.309,39.4316],[-7.3056,39.4459],[-7.2947,39.456],[-7.2966,39.459],[-7.3247,39.4759],[-7.3439,39.4787],[-7.3472,39.488],[-7.3619,39.4822],[-7.3681,39.4885],[-7.3813,39.4919],[-7.3784,39.4969],[-7.39,39.5037],[-7.3912,39.5299],[-7.4005,39.534],[-7.406,39.5311],[-7.4298,39.5346],[-7.4456,39.5481],[-7.4607,39.5725],[-7.4952,39.586],[-7.5001,39.5993],[-7.5074,39.6061],[-7.5099,39.6183],[-7.5277,39.6332],[-7.5256,39.6416],[-7.5304,39.6568],[-7.5429,39.6628],[-7.5313,39.6679],[-7.4529,39.6633],[-7.4034,39.6469],[-7.3748,39.6514],[-7.3338,39.6412],[-7.2932,39.6558],[-7.2871,39.6615],[-7.2642,39.6659],[-7.2486,39.6674],[-7.2165,39.6605],[-7.2031,39.6626],[-7.1467,39.653],[-7.1262,39.6641],[-7.0923,39.6638],[-7.0693,39.6577],[-7.0154,39.6709],[-6.9994,39.7143],[-6.9869,39.7278],[-6.993,39.7321],[-6.9927,39.7406],[-6.9861,39.7647],[-6.9768,39.7728],[-6.984,39.791],[-6.9896,39.7946],[-6.9862,39.8107],[-6.9811,39.8204],[-6.9761,39.8194],[-6.9704,39.8254],[-6.9487,39.8278],[-6.9453,39.8348],[-6.935,39.8388],[-6.9366,39.8434],[-6.9289,39.855],[-6.9142,39.8592],[-6.9041,39.8708],[-6.903,39.8868],[-6.9069,39.89],[-6.9002,39.9007],[-6.9031,39.9053],[-6.9006,39.9109],[-6.907,39.9245],[-6.8858,39.9405],[-6.8887,39.9632],[-6.8798,39.9719],[-6.8857,39.9805],[-6.8741,39.9952],[-6.8745,40.0066],[-6.8642,40.0119],[-6.8769,40.0179],[-6.8749,40.0237],[-6.8821,40.0337],[-6.881,40.0412],[-6.8968,40.0516],[-6.8925,40.0602],[-6.9055,40.0619],[-6.9094,40.0667],[-6.9164,40.0652],[-6.9224,40.0875],[-6.9327,40.0965],[-6.934,40.1031],[-6.9439,40.1046],[-6.9417,40.1129],[-6.9531,40.1142],[-6.9607,40.1094],[-6.963,40.1148],[-6.986,40.1192],[-6.9942,40.113],[-6.9934,40.1187],[-7.012,40.1269],[-7.0088,40.1314],[-7.0197,40.1451],[-7.013,40.1511],[-7.0199,40.1693],[-7.0157,40.1781],[-7.0289,40.1854],[-7.0196,40.1984],[-7.0122,40.2265],[-6.9974,40.236],[-6.9782,40.2409],[-6.9723,40.2367],[-6.9646,40.2376],[-6.9513,40.2574],[-6.9256,40.2588],[-6.9079,40.255],[-6.8755,40.2607],[-6.8651,40.2707],[-6.8469,40.2545],[-6.84,40.2556],[-6.8346,40.2476],[-6.8228,40.2483],[-6.8213,40.2447],[-6.8068,40.2416],[-6.8002,40.2421],[-6.8022,40.2496],[-6.7836,40.2494],[-6.7557,40.239],[-6.7515,40.2503],[-6.7183,40.2693],[-6.7116,40.267],[-6.7033,40.2511],[-6.6902,40.2427],[-6.6778,40.251],[-6.6778,40.2581],[-6.6718,40.2633],[-6.64,40.269],[-6.6347,40.2647],[-6.5871,40.2708],[-6.5562,40.2908],[-6.5596,40.2958],[-6.5568,40.3065],[-6.5648,40.3147],[-6.5605,40.3291],[-6.5363,40.3473],[-6.4676,40.3724],[-6.4384,40.3728],[-6.4397,40.3816],[-6.4189,40.3993],[-6.3703,40.4025],[-6.3615,40.4154],[-6.3659,40.4174],[-6.3646,40.4226],[-6.346,40.4371],[-6.3447,40.4428],[-6.2754,40.4586],[-6.2638,40.4716],[-6.2551,40.47],[-6.24,40.4859],[-6.2347,40.4867],[-6.1987,40.4815],[-6.1805,40.4622],[-6.1545,40.4546],[-6.156,40.4479],[-6.1471,40.4362],[-6.1162,40.4416],[-6.1295,40.4208],[-6.1189,40.4193],[-6.1159,40.4147],[-6.0985,40.4136],[-6.065,40.3964],[-6.0852,40.3905],[-6.0722,40.387],[-6.0864,40.3781],[-6.0813,40.3731],[-6.0822,40.3635],[-6.0925,40.3618],[-6.0973,40.3564],[-6.1058,40.3568],[-6.0522,40.3416],[-6.0161,40.3403],[-6.0196,40.3227],[-6.0062,40.3062],[-5.9685,40.2896],[-5.9172,40.2777],[-5.914,40.2871],[-5.8962,40.3053],[-5.8935,40.3187],[-5.8843,40.3266],[-5.8741,40.3267],[-5.855,40.3384],[-5.85,40.3382],[-5.8537,40.3315],[-5.8472,40.3281],[-5.8218,40.3485],[-5.7997,40.3537],[-5.795,40.3513],[-5.782,40.3125],[-5.7933,40.3003],[-5.8028,40.2977],[-5.7932,40.2867],[-5.765,40.2808],[-5.7376,40.2942],[-5.6996,40.2889],[-5.6927,40.2921],[-5.6567,40.2704],[-5.66,40.2578],[-5.6492,40.2498],[-5.622,40.2459],[-5.6137,40.2333],[-5.6189,40.2239],[-5.6101,40.2155],[-5.5944,40.2164],[-5.5482,40.1973],[-5.531,40.1948],[-5.471,40.2079],[-5.4681,40.2242],[-5.4398,40.2337],[-5.4299,40.2523],[-5.4118,40.2553],[-5.395,40.2505],[-5.3451,40.265],[-5.3588,40.2274],[-5.3697,40.2184],[-5.3641,40.2027],[-5.3683,40.1992],[-5.3645,40.1787],[-5.368,40.1641],[-5.3563,40.1517],[-5.346,40.1297],[-5.3371,40.1243],[-5.336,40.1159],[-5.3159,40.1071],[-5.2672,40.1111],[-5.2608,40.108],[-5.2164,40.108],[-5.2105,40.1054],[-5.2114,40.0917],[-5.2046,40.0841],[-5.1923,40.0836],[-5.1834,40.0881],[-5.1724,40.0848],[-5.1547,40.0929],[-5.1414,40.0918],[-5.1401,40.0972],[-5.1054,40.1188],[-5.1012,40.1273],[-5.0878,40.1244],[-5.0855,40.1351],[-5.0774,40.1365],[-5.0783,40.1412],[-5.0661,40.1513],[-5.0421,40.1511],[-5.0339,40.1567],[-5.0186,40.1591],[-5.0171,40.1459],[-5.0067,40.13],[-5.0134,40.1111],[-4.9546,40.1212],[-4.959,40.1261],[-4.9554,40.1262],[-4.9594,40.1305],[-4.9563,40.1334],[-4.9255,40.1361],[-4.9181,40.1527],[-4.9247,40.17],[-4.8852,40.1909],[-4.8784,40.1903],[-4.8753,40.1978],[-4.8627,40.2051],[-4.8354,40.2125],[-4.8216,40.2225],[-4.8217,40.2303],[-4.8077,40.2354],[-4.8183,40.2548],[-4.81,40.2594],[-4.8113,40.264],[-4.8035,40.2753],[-4.7616,40.2609],[-4.7427,40.2753],[-4.7286,40.2706],[-4.7122,40.276],[-4.7137,40.2808],[-4.6982,40.2822],[-4.6942,40.2664],[-4.7029,40.2614],[-4.6872,40.2496],[-4.6937,40.2411],[-4.6866,40.2358],[-4.6897,40.2293],[-4.6873,40.212],[-4.6793,40.207],[-4.6738,40.2097],[-4.6628,40.2061],[-4.654,40.1983],[-4.6169,40.2002],[-4.579,40.2174],[-4.5727,40.2131],[-4.5752,40.2071],[-4.5285,40.2006],[-4.5189,40.2034],[-4.5168,40.215],[-4.5098,40.2194],[-4.4799,40.2302],[-4.4475,40.2332],[-4.4375,40.2377],[-4.4357,40.2593],[-4.4296,40.2588],[-4.3983,40.2844],[-4.3841,40.2892],[-4.3838,40.2997],[-4.3881,40.3013],[-4.3812,40.3184],[-4.3576,40.3097],[-4.3586,40.2747],[-4.3452,40.2534],[-4.3483,40.2366],[-4.3354,40.2388],[-4.3216,40.2252],[-4.3079,40.2335],[-4.3063,40.2217],[-4.2959,40.2191],[-4.2858,40.2287],[-4.2692,40.235],[-4.2577,40.2596],[-4.2459,40.2737],[-4.2317,40.2768],[-4.2265,40.2699],[-4.2177,40.2728],[-4.2038,40.269],[-4.2039,40.2872],[-4.1906,40.297],[-4.1779,40.2923],[-4.1638,40.27],[-4.1441,40.2643],[-4.1507,40.2494],[-4.1451,40.2452],[-4.133,40.2482],[-4.1043,40.2418],[-4.0878,40.2533],[-4.0805,40.2665],[-4.0713,40.2648],[-4.0517,40.2511],[-4.0238,40.2491],[-4.026,40.2362],[-3.9925,40.2098],[-3.953,40.2124],[-3.9562,40.1986],[-3.9509,40.1967],[-3.9497,40.1892],[-3.9384,40.2035],[-3.9314,40.204],[-3.9109,40.19],[-3.8778,40.1883],[-3.8763,40.1911],[-3.8535,40.1798],[-3.8522,40.169],[-3.8351,40.1613],[-3.8174,40.1714],[-3.8103,40.1691],[-3.8061,40.1775],[-3.7843,40.1627],[-3.7719,40.1396],[-3.7451,40.1327],[-3.7207,40.148],[-3.7045,40.1376],[-3.6837,40.1325],[-3.667,40.1436],[-3.6656,40.1356],[-3.6559,40.1251],[-3.6065,40.109],[-3.6144,40.0996],[-3.6112,40.0945],[-3.6041,40.0941],[-3.6095,40.0836],[-3.6282,40.0765],[-3.6173,40.0687],[-3.6247,40.0634],[-3.6203,40.0566],[-3.6368,40.052],[-3.6365,40.0442],[-3.6456,40.04],[-3.648,40.0342],[-3.6604,40.0331],[-3.6798,40.0158],[-3.6871,40.0217],[-3.6964,40.0209],[-3.7157,40.0034],[-3.7236,39.9968],[-3.7229,39.9878],[-3.7274,39.9898],[-3.735,39.9852],[-3.7348,39.9771],[-3.7408,39.9829],[-3.7463,39.9808],[-3.7407,39.9707],[-3.7313,39.9697],[-3.7285,39.9731],[-3.7242,39.9703],[-3.7261,39.9665],[-3.7409,39.9616],[-3.7613,39.971],[-3.7514,39.9567],[-3.7553,39.9501],[-3.77,39.949],[-3.7698,39.9543],[-3.759,39.9579],[-3.7649,39.9664],[-3.7699,39.9588],[-3.7887,39.9542],[-3.787,39.9466],[-3.8011,39.9465],[-3.8024,39.9527],[-3.8073,39.9549],[-3.8183,39.9467],[-3.8249,39.9468],[-3.8327,39.9298],[-3.8371,39.9303],[-3.8391,39.9422],[-3.8761,39.9284],[-3.8693,39.9167],[-3.8764,39.911],[-3.8697,39.9047],[-3.8344,39.8998],[-3.8147,39.8859],[-3.8039,39.8846],[-3.8062,39.8878],[-3.7787,39.9114],[-3.756,39.9217],[-3.7459,39.9335],[-3.7449,39.9407],[-3.7114,39.9551],[-3.6978,39.947],[-3.6776,39.9611],[-3.662,39.9662],[-3.635,39.9662],[-3.6311,39.9689],[-3.6382,39.9888],[-3.5946,40.0019],[-3.59,40.0134],[-3.5199,40.0209],[-3.5221,40.0259],[-3.5153,40.0433],[-3.4903,40.0479],[-3.4879,40.0415],[-3.4831,40.0463],[-3.4721,40.0461],[-3.4721,40.0412],[-3.4687,40.0412],[-3.4524,40.0502],[-3.4469,40.0482],[-3.4457,40.0374],[-3.4297,40.0388],[-3.425,40.0471],[-3.404,40.0349],[-3.3942,40.0355],[-3.3929,40.0469],[-3.3854,40.0519],[-3.3759,40.0505],[-3.3746,40.0585],[-3.3797,40.0669],[-3.377,40.0752],[-3.3358,40.0817],[-3.3117,40.0687],[-3.3029,40.0537],[-3.2855,40.0527],[-3.2768,40.0475],[-3.2727,40.0495],[-3.2738,40.0549],[-3.2669,40.0532],[-3.265,40.0572],[-3.2579,40.0508],[-3.2553,40.058],[-3.2464,40.0579],[-3.244,40.0536],[-3.2089,40.0626],[-3.2015,40.0603],[-3.2061,40.0633],[-3.1906,40.077],[-3.1894,40.0827],[-3.179,40.0851],[-3.175,40.091],[-3.1664,40.0913],[-3.1681,40.086],[-3.163,40.0838],[-3.1614,40.0652],[-3.1702,40.0482],[-3.1655,40.0282],[-3.1505,40.0108],[-3.1426,39.985],[-3.0966,39.987],[-3.0971,39.9335],[-3.1004,39.9217],[-3.1069,39.9165],[-3.1069,39.9032],[-3.1133,39.8995],[-3.1129,39.8943],[-3.1272,39.8747],[-3.1121,39.875],[-3.0963,39.8691],[-3.0763,39.8557],[-3.0597,39.8375],[-3.0518,39.8126],[-3.0377,39.7902],[-3.0405,39.7876],[-3.0155,39.7648],[-2.9978,39.7189],[-2.9767,39.7029],[-2.9775,39.6967],[-2.9699,39.6897],[-2.9544,39.6867],[-2.9496,39.6766],[-2.9193,39.6463],[-2.9082,39.6424],[-2.9179,39.6231],[-2.9137,39.6138],[-2.9255,39.6018],[-2.9205,39.5819],[-2.9206,39.5592],[-2.9275,39.5496],[-2.9291,39.5299],[-2.9351,39.5256],[-2.9313,39.5186],[-2.9359,39.5113],[-2.9314,39.4715],[-2.9318,39.4529],[-2.9145,39.4474],[-2.9052,39.4277],[-2.9022,39.4271],[-2.9036,39.434],[-2.9001,39.425],[-2.8897,39.422],[-2.8859,39.4056],[-2.8699,39.3905],[-2.8706,39.3844],[-2.8861,39.3849],[-2.8966,39.3668],[-2.8869,39.3537],[-2.8824,39.3509],[-2.8647,39.3569],[-2.8599,39.349],[-2.8487,39.3488],[-2.8341,39.3535],[-2.8094,39.3799],[-2.8038,39.3811],[-2.7983,39.3913],[-2.7908,39.3936],[-2.7931,39.3978],[-2.7778,39.3954],[-2.7721,39.3696],[-2.7422,39.3182],[-2.736,39.2957],[-2.7241,39.2798],[-2.7225,39.2664],[-2.7324,39.2531],[-2.7598,39.2304],[-2.7811,39.1972],[-2.8069,39.1779],[-2.8249,39.151],[-2.8427,39.1345],[-2.8336,39.1209],[-2.8342,39.1123],[-2.8273,39.0984],[-2.8225,39.0927],[-2.8155,39.0941],[-2.805,39.079],[-2.8099,39.0239],[-2.8323,39.0233],[-2.8446,38.9864],[-2.871,38.9656],[-2.8802,38.9532],[-2.8829,38.9385],[-2.8762,38.9255],[-2.8577,38.9274],[-2.8358,38.906],[-2.7925,38.9056],[-2.7906,38.8916],[-2.7623,38.8808],[-2.7615,38.8697],[-2.7564,38.8678],[-2.7511,38.8484],[-2.7527,38.8148],[-2.7503,38.8071],[-2.7345,38.7953],[-2.7322,38.7819],[-2.7116,38.786],[-2.6921,38.7808],[-2.6746,38.7616],[-2.6435,38.7464],[-2.6379,38.7347],[-2.6467,38.7155],[-2.6555,38.6715],[-2.6689,38.6493],[-2.6825,38.6441],[-2.6998,38.6254],[-2.7149,38.6249],[-2.7282,38.6161],[-2.7637,38.6279],[-2.7501,38.6156],[-2.7569,38.5851],[-2.7655,38.5739],[-2.7563,38.5544],[-2.7468,38.5468],[-2.7552,38.5376],[-2.7642,38.5355],[-2.7621,38.5328]]]]}},{"type":"Feature","properties":{"NUTS_ID":"ES_C9","Couleur":9,"name":"08_ES","LONG":2916775,"LAT":1714007,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":37.1824,"Long":-5.831},"geometry":{"type":"MultiPolygon","coordinates":[[[[-4.6534,37.2559],[-4.6446,37.2467],[-4.631,37.2542],[-4.6138,37.2551],[-4.6144,37.2432],[-4.6045,37.2378],[-4.5963,37.2251],[-4.6044,37.2147],[-4.6023,37.2093],[-4.5755,37.2093],[-4.5612,37.2193],[-4.5447,37.2174],[-4.5395,37.2113],[-4.509,37.2219],[-4.4994,37.2304],[-4.4994,37.2235],[-4.4923,37.227],[-4.4912,37.2386],[-4.4814,37.2381],[-4.4776,37.2448],[-4.4852,37.2525],[-4.4771,37.2574],[-4.4717,37.2516],[-4.4642,37.2521],[-4.4619,37.2552],[-4.4684,37.2572],[-4.457,37.2585],[-4.445,37.2776],[-4.433,37.2739],[-4.418,37.2824],[-4.4066,37.2742],[-4.3834,37.2774],[-4.3783,37.2725],[-4.3808,37.2634],[-4.3761,37.2572],[-4.3799,37.2483],[-4.3775,37.2418],[-4.385,37.2383],[-4.3826,37.2316],[-4.372,37.2154],[-4.3451,37.2141],[-4.3227,37.2045],[-4.3323,37.1915],[-4.3276,37.1844],[-4.2871,37.1195],[-4.2809,37.0559],[-4.2701,37.0271],[-4.2725,37.0149],[-4.2519,37.023],[-4.2314,37.017],[-4.2234,37.0124],[-4.2154,36.9918],[-4.188,36.9774],[-4.1667,36.9571],[-4.1113,36.9497],[-4.0999,36.9527],[-4.0992,36.9423],[-4.092,36.9333],[-4.0538,36.915],[-4.0457,36.9029],[-4.0356,36.9049],[-3.9992,36.8898],[-3.9708,36.8921],[-3.9295,36.8829],[-3.9186,36.8681],[-3.8913,36.8666],[-3.8676,36.8507],[-3.8423,36.8582],[-3.8272,36.8555],[-3.8153,36.8469],[-3.8152,36.8419],[-3.7961,36.8316],[-3.7953,36.821],[-3.7906,36.8207],[-3.7865,36.8124],[-3.7682,36.802],[-3.771,36.7966],[-3.7663,36.7862],[-3.7823,36.7645],[-3.7775,36.7379],[-3.7926,36.7464],[-3.8355,36.7541],[-3.8624,36.7518],[-3.88,36.7417],[-3.9107,36.7422],[-3.9573,36.7261],[-4.005,36.7411],[-4.0744,36.7484],[-4.1085,36.7254],[-4.1805,36.7148],[-4.2494,36.7101],[-4.2901,36.7144],[-4.3397,36.7126],[-4.3909,36.7223],[-4.406,36.719],[-4.4144,36.7121],[-4.4138,36.7184],[-4.4182,36.7172],[-4.4233,36.712],[-4.4175,36.7089],[-4.4311,36.7047],[-4.4547,36.6641],[-4.4815,36.6397],[-4.5095,36.5994],[-4.541,36.5788],[-4.5582,36.5805],[-4.5832,36.5742],[-4.6026,36.5631],[-4.6382,36.5071],[-4.6762,36.5036],[-4.6948,36.4902],[-4.7321,36.4865],[-4.7569,36.4857],[-4.8588,36.5074],[-4.9132,36.5054],[-4.936,36.4994],[-4.9524,36.4833],[-4.9512,36.4883],[-4.9759,36.478],[-5.0056,36.4596],[-5.0334,36.4612],[-5.0592,36.4501],[-5.0813,36.4505],[-5.1083,36.4337],[-5.1387,36.4269],[-5.1599,36.4134],[-5.1726,36.4161],[-5.1843,36.4091],[-5.2109,36.3806],[-5.2194,36.3763],[-5.2315,36.3557],[-5.246,36.3131],[-5.2524,36.3113],[-5.2691,36.2993],[-5.2959,36.2461],[-5.3057,36.2436],[-5.3171,36.2292],[-5.3356,36.1769],[-5.3392,36.152],[-5.3515,36.1526],[-5.3645,36.1668],[-5.3818,36.1694],[-5.379,36.1746],[-5.3842,36.1799],[-5.4098,36.1815],[-5.4308,36.1722],[-5.445,36.1554],[-5.4473,36.1408],[-5.4432,36.1288],[-5.436,36.1395],[-5.4407,36.1321],[-5.4377,36.1305],[-5.4436,36.1275],[-5.4413,36.124],[-5.4316,36.128],[-5.4365,36.1192],[-5.4352,36.122],[-5.4426,36.1196],[-5.4311,36.1056],[-5.4402,36.1027],[-5.4435,36.0891],[-5.4271,36.0832],[-5.4255,36.0771],[-5.4297,36.0709],[-5.465,36.0502],[-5.487,36.0542],[-5.5167,36.0375],[-5.5747,36.0152],[-5.6055,36.0099],[-5.6111,36.0001],[-5.61,36.0112],[-5.6173,36.0208],[-5.6521,36.0529],[-5.6888,36.0673],[-5.7088,36.059],[-5.7203,36.0601],[-5.7506,36.0711],[-5.7764,36.0878],[-5.7836,36.0877],[-5.7886,36.0807],[-5.7973,36.0783],[-5.8063,36.0894],[-5.8132,36.0888],[-5.8184,36.1008],[-5.8251,36.1036],[-5.8648,36.1496],[-5.915,36.1848],[-5.9323,36.1866],[-5.9255,36.1793],[-5.9448,36.1866],[-5.9805,36.177],[-6.0198,36.1862],[-6.0342,36.181],[-6.0404,36.1924],[-6.0534,36.203],[-6.1028,36.2841],[-6.116,36.2945],[-6.1419,36.2954],[-6.1512,36.3066],[-6.1823,36.3686],[-6.2114,36.3875],[-6.2188,36.3926],[-6.2191,36.4032],[-6.2345,36.4363],[-6.2474,36.4478],[-6.2475,36.4422],[-6.2595,36.4734],[-6.287,36.5163],[-6.2895,36.5241],[-6.2967,36.5288],[-6.3053,36.5276],[-6.3086,36.5326],[-6.3051,36.5368],[-6.291,36.538],[-6.2858,36.5432],[-6.2827,36.5431],[-6.2921,36.5335],[-6.29,36.5308],[-6.2844,36.5346],[-6.2831,36.5337],[-6.2872,36.5309],[-6.2856,36.5296],[-6.2805,36.5307],[-6.2754,36.5351],[-6.2701,36.5324],[-6.2796,36.5282],[-6.2788,36.5243],[-6.2763,36.5244],[-6.2694,36.5093],[-6.2629,36.508],[-6.2618,36.501],[-6.2592,36.4993],[-6.2544,36.5006],[-6.2625,36.496],[-6.2622,36.4916],[-6.2667,36.4897],[-6.2573,36.4727],[-6.2511,36.4671],[-6.229,36.4627],[-6.2278,36.4664],[-6.2197,36.4663],[-6.2126,36.4701],[-6.2113,36.473],[-6.2133,36.4813],[-6.207,36.4802],[-6.1937,36.4868],[-6.1908,36.4925],[-6.1927,36.4984],[-6.1812,36.5075],[-6.1715,36.512],[-6.1733,36.5214],[-6.1965,36.5266],[-6.1985,36.5254],[-6.1964,36.5221],[-6.2006,36.5197],[-6.2079,36.5096],[-6.2189,36.51],[-6.232,36.5038],[-6.2457,36.509],[-6.2503,36.5145],[-6.2435,36.517],[-6.2437,36.5185],[-6.256,36.5206],[-6.2573,36.524],[-6.256,36.5292],[-6.2411,36.5284],[-6.2292,36.5251],[-6.2332,36.5279],[-6.2335,36.5337],[-6.2259,36.5521],[-6.2238,36.5625],[-6.2259,36.5743],[-6.2315,36.5816],[-6.2394,36.5743],[-6.2329,36.5849],[-6.2362,36.5848],[-6.2494,36.5723],[-6.2377,36.5838],[-6.2388,36.5849],[-6.2453,36.5855],[-6.25,36.5834],[-6.2513,36.5794],[-6.2537,36.5789],[-6.2526,36.5814],[-6.2578,36.5813],[-6.2566,36.5782],[-6.266,36.5799],[-6.2802,36.6038],[-6.2889,36.612],[-6.299,36.6175],[-6.3054,36.6184],[-6.3197,36.612],[-6.3229,36.6128],[-6.3146,36.6167],[-6.3135,36.6201],[-6.3153,36.6227],[-6.3294,36.6246],[-6.3352,36.6211],[-6.3262,36.6104],[-6.3367,36.6207],[-6.3357,36.6246],[-6.3383,36.6255],[-6.3479,36.6252],[-6.3548,36.6221],[-6.3569,36.6179],[-6.36,36.6167],[-6.3877,36.6286],[-6.3953,36.6358],[-6.393,36.6411],[-6.3989,36.6587],[-6.4048,36.6625],[-6.4401,36.7209],[-6.4397,36.7301],[-6.4429,36.7378],[-6.4396,36.741],[-6.4353,36.7425],[-6.4298,36.7484],[-6.4259,36.7439],[-6.4205,36.7456],[-6.4133,36.7525],[-6.4093,36.7612],[-6.3993,36.7612],[-6.3895,36.766],[-6.3534,36.7896],[-6.3443,36.7927],[-6.3424,36.7944],[-6.3456,36.7988],[-6.371,36.7951],[-6.3979,36.8087],[-6.4483,36.9063],[-6.4929,36.9535],[-6.5219,36.9772],[-6.5925,37.0205],[-6.711,37.0814],[-6.7982,37.1222],[-6.8657,37.1456],[-6.8937,37.1615],[-6.9106,37.1531],[-6.9332,37.1655],[-6.9478,37.1663],[-6.9452,37.1683],[-7.0211,37.201],[-7.0519,37.2084],[-7.0619,37.2043],[-7.0703,37.2086],[-7.0745,37.205],[-7.1526,37.2075],[-7.2849,37.2007],[-7.3305,37.1921],[-7.3328,37.1851],[-7.3654,37.1716],[-7.3814,37.1717],[-7.3938,37.1771],[-7.4019,37.1748],[-7.408,37.1848],[-7.4134,37.2246],[-7.4191,37.2377],[-7.4339,37.2497],[-7.422,37.2733],[-7.4339,37.2893],[-7.4422,37.3109],[-7.4392,37.3267],[-7.4454,37.3443],[-7.4369,37.3597],[-7.44,37.3891],[-7.4453,37.3976],[-7.4629,37.4098],[-7.4457,37.4193],[-7.4574,37.4287],[-7.4566,37.4519],[-7.4697,37.4714],[-7.4643,37.4879],[-7.4846,37.4983],[-7.4932,37.5226],[-7.5127,37.5263],[-7.5127,37.5379],[-7.5228,37.5567],[-7.5127,37.5602],[-7.507,37.5572],[-7.5076,37.5666],[-7.5142,37.566],[-7.5157,37.5699],[-7.5015,37.5784],[-7.4966,37.5941],[-7.5038,37.6048],[-7.4891,37.6037],[-7.4805,37.6177],[-7.4825,37.6238],[-7.4707,37.6247],[-7.4713,37.6347],[-7.4638,37.6422],[-7.4674,37.6493],[-7.4546,37.6463],[-7.456,37.6619],[-7.4442,37.6648],[-7.4526,37.6779],[-7.4437,37.6886],[-7.4477,37.6979],[-7.4393,37.7012],[-7.4363,37.718],[-7.4264,37.7338],[-7.4286,37.7406],[-7.4184,37.745],[-7.4212,37.7592],[-7.4132,37.76],[-7.4084,37.7674],[-7.3969,37.7643],[-7.366,37.7928],[-7.3242,37.8158],[-7.3203,37.8237],[-7.3006,37.843],[-7.2976,37.8568],[-7.2836,37.8691],[-7.2796,37.8768],[-7.2823,37.8975],[-7.2738,37.8992],[-7.2738,37.9048],[-7.2552,37.9232],[-7.258,37.9327],[-7.2486,37.9545],[-7.2521,37.96],[-7.25,37.9667],[-7.2637,37.9787],[-7.247,37.9908],[-7.2264,37.9886],[-7.2061,37.9977],[-7.2023,38.0035],[-7.1871,38.003],[-7.1837,37.9971],[-7.1775,37.9983],[-7.1732,37.9933],[-7.1561,37.9939],[-7.1455,38.0028],[-7.1369,37.9992],[-7.1225,38.0041],[-7.1292,38.0108],[-7.1282,38.0299],[-7.1163,38.0319],[-7.1084,38.041],[-7.0989,38.0439],[-7.0754,38.0324],[-7.0754,38.0324],[-7.0754,38.0324],[-7.0672,38.0335],[-7.0594,38.0175],[-7.052,38.0189],[-7.0447,38.0143],[-7.0243,38.0251],[-7.0025,38.0227],[-6.9992,38.0351],[-7.0026,38.0439],[-6.9902,38.0555],[-6.9874,38.104],[-6.9778,38.1044],[-6.9709,38.1106],[-6.9714,38.1173],[-6.9577,38.1373],[-6.961,38.1421],[-6.9523,38.1524],[-6.9689,38.16],[-6.969,38.1662],[-6.9567,38.1833],[-6.9351,38.2004],[-6.9317,38.2084],[-6.9225,38.2003],[-6.9026,38.2019],[-6.8486,38.1773],[-6.8225,38.1739],[-6.7952,38.1786],[-6.7929,38.1664],[-6.7996,38.1439],[-6.8092,38.1348],[-6.8159,38.1202],[-6.8079,38.1112],[-6.8,38.1149],[-6.7892,38.1092],[-6.7701,38.1122],[-6.7737,38.1047],[-6.765,38.1061],[-6.7702,38.0995],[-6.7611,38.0979],[-6.7583,38.0928],[-6.7321,38.0901],[-6.7305,38.0925],[-6.7352,38.094],[-6.7295,38.0996],[-6.7242,38.097],[-6.7198,38.1007],[-6.7155,38.0927],[-6.7076,38.0965],[-6.6927,38.0948],[-6.6899,38.0985],[-6.6604,38.0924],[-6.6531,38.0965],[-6.6494,38.0901],[-6.6421,38.0976],[-6.6229,38.0967],[-6.5806,38.0528],[-6.5873,38.0268],[-6.5837,38.0213],[-6.5722,38.0203],[-6.5653,38.027],[-6.5458,38.0282],[-6.5249,38.0216],[-6.4951,38.0192],[-6.4918,38.0095],[-6.4766,38.0079],[-6.4655,38.0111],[-6.4731,38.0185],[-6.4697,38.0312],[-6.4437,38.047],[-6.4525,38.056],[-6.4444,38.0597],[-6.414,38.0586],[-6.3902,38.0485],[-6.3673,38.049],[-6.3588,38.0312],[-6.3592,38.0167],[-6.3528,38.0075],[-6.3294,37.9983],[-6.3034,37.9783],[-6.252,37.9714],[-6.2452,37.9623],[-6.2333,37.958],[-6.2016,37.9621],[-6.1942,37.9548],[-6.1961,37.9488],[-6.1803,37.9411],[-6.1679,37.9559],[-6.1539,37.9577],[-6.1491,37.9664],[-6.1431,37.9656],[-6.1154,37.9818],[-6.0779,37.9847],[-6.0462,37.9974],[-6.0308,37.9976],[-6.0172,37.9912],[-6.0063,37.9915],[-5.9936,37.9996],[-5.961,37.9998],[-5.9538,37.9954],[-5.9328,38.0308],[-5.937,38.0405],[-5.9343,38.0469],[-5.9193,38.0498],[-5.9081,38.0683],[-5.9109,38.0782],[-5.9294,38.0897],[-5.9264,38.1051],[-5.913,38.1227],[-5.8807,38.1323],[-5.877,38.1379],[-5.8774,38.1558],[-5.8563,38.1617],[-5.8516,38.172],[-5.8379,38.1745],[-5.8232,38.1699],[-5.8224,38.1758],[-5.8107,38.1737],[-5.8032,38.1783],[-5.7995,38.1746],[-5.7818,38.1859],[-5.7573,38.1806],[-5.7421,38.1939],[-5.7282,38.1975],[-5.7136,38.1859],[-5.6948,38.1866],[-5.699,38.181],[-5.6887,38.1819],[-5.6843,38.1571],[-5.6951,38.1711],[-5.7021,38.1673],[-5.7058,38.1694],[-5.6953,38.1498],[-5.7155,38.1339],[-5.7309,38.1372],[-5.7402,38.1301],[-5.7342,38.1095],[-5.735,38.0863],[-5.7121,38.0823],[-5.6937,38.0838],[-5.6694,38.1018],[-5.6671,38.1091],[-5.6326,38.1386],[-5.5848,38.1318],[-5.581,38.1281],[-5.5817,38.1155],[-5.5574,38.108],[-5.5388,38.0939],[-5.5396,38.0822],[-5.5269,38.0752],[-5.5238,38.066],[-5.4952,38.0419],[-5.4891,38.029],[-5.4943,37.9989],[-5.4907,37.9931],[-5.4819,37.9898],[-5.4741,37.9752],[-5.4157,37.9437],[-5.4211,37.9293],[-5.4138,37.9015],[-5.421,37.8905],[-5.4165,37.8853],[-5.4148,37.8695],[-5.411,37.8714],[-5.4054,37.8626],[-5.3994,37.8635],[-5.3505,37.8423],[-5.3398,37.8336],[-5.345,37.8279],[-5.3419,37.8231],[-5.3501,37.7948],[-5.331,37.7857],[-5.3288,37.778],[-5.3101,37.7743],[-5.31,37.7668],[-5.3187,37.7583],[-5.3129,37.7529],[-5.3049,37.731],[-5.3041,37.7218],[-5.311,37.7092],[-5.3077,37.6993],[-5.3191,37.7016],[-5.3272,37.6917],[-5.3369,37.7057],[-5.3435,37.7057],[-5.3628,37.6972],[-5.3764,37.6776],[-5.3842,37.6814],[-5.3859,37.6967],[-5.4037,37.6931],[-5.412,37.6835],[-5.4131,37.6657],[-5.4064,37.6587],[-5.3973,37.6624],[-5.3937,37.6561],[-5.3996,37.6495],[-5.4137,37.6476],[-5.4114,37.6411],[-5.4017,37.6365],[-5.3982,37.6275],[-5.3813,37.6109],[-5.36,37.6055],[-5.3584,37.5857],[-5.3519,37.5843],[-5.3438,37.5874],[-5.3436,37.5937],[-5.3234,37.6143],[-5.2998,37.6229],[-5.2746,37.6253],[-5.2735,37.5783],[-5.2597,37.5037],[-5.2196,37.4581],[-5.0855,37.4442],[-5.0026,37.4691],[-4.949,37.522],[-4.934,37.5199],[-4.935,37.512],[-4.9276,37.5125],[-4.9313,37.506],[-4.9246,37.5004],[-4.9061,37.4999],[-4.9078,37.495],[-4.9162,37.4927],[-4.9152,37.4842],[-4.9045,37.4895],[-4.9102,37.4798],[-4.9041,37.4674],[-4.8754,37.4505],[-4.8848,37.438],[-4.841,37.4364],[-4.8377,37.4233],[-4.8498,37.4107],[-4.831,37.3904],[-4.8261,37.3791],[-4.8147,37.3776],[-4.8148,37.3726],[-4.8236,37.3688],[-4.8222,37.3582],[-4.7823,37.3285],[-4.7801,37.3354],[-4.7675,37.3378],[-4.7488,37.3309],[-4.729,37.3355],[-4.7261,37.3419],[-4.733,37.3428],[-4.7226,37.3465],[-4.7249,37.3535],[-4.7172,37.3584],[-4.7144,37.3532],[-4.704,37.3508],[-4.7036,37.3453],[-4.6871,37.3414],[-4.6863,37.3307],[-4.6793,37.3366],[-4.6719,37.335],[-4.6716,37.3315],[-4.6794,37.3296],[-4.6681,37.3236],[-4.6696,37.319],[-4.682,37.3233],[-4.6797,37.3177],[-4.6841,37.3154],[-4.6787,37.3084],[-4.6717,37.3105],[-4.659,37.3051],[-4.6658,37.2993],[-4.6606,37.2945],[-4.6753,37.3018],[-4.6786,37.2971],[-4.6761,37.2909],[-4.6811,37.2901],[-4.6621,37.2838],[-4.654,37.2719],[-4.6534,37.2559]]]]}},{"type":"Feature","properties":{"NUTS_ID":"ES_C11","Couleur":1,"name":"10_ES","LONG":3355847,"LAT":1860692,"layer":"Différence","path":"MultiPolygon?crs=EPSG:4326&field=NUTS_ID:string(0,0)&field=Couleur:integer(0,0)&field=name:string(0,0)&field=LONG:integer(0,0)&field=LAT:integer(0,0)&uid={94143fbe-87eb-46a8-8209-728b54143a73}","Lat":39.4727,"Long":-1.0578},"geometry":{"type":"MultiPolygon","coordinates":[[[[3.1442,39.9211],[3.1277,39.9176],[3.1276,39.9176],[3.0932,39.9104],[3.093,39.9104],[3.0852,39.9088],[3.0842,39.9061],[3.084,39.9053],[3.0838,39.9049],[3.0838,39.9048],[3.0837,39.9045],[3.0836,39.9044],[3.0836,39.9041],[3.0834,39.9037],[3.0783,39.8887],[3.1055,39.8575],[3.1076,39.8582],[3.1103,39.859],[3.1191,39.8618],[3.1206,39.8623],[3.1233,39.8631],[3.126,39.864],[3.135,39.8668],[3.1649,39.8762],[3.1661,39.8766],[3.1664,39.8767],[3.1686,39.8774],[3.171,39.8781],[3.1722,39.8785],[3.1741,39.8791],[3.1743,39.8791],[3.2008,39.8875],[3.2023,39.8879],[3.2042,39.8885],[3.1904,39.8628],[3.1902,39.8624],[3.1793,39.842],[3.1786,39.8407],[3.1751,39.8402],[3.1658,39.8387],[3.1609,39.8379],[3.1578,39.8374],[3.1562,39.8372],[3.1428,39.8351],[3.1426,39.8351],[3.1199,39.8315],[3.1449,39.7738],[3.2543,39.7296],[3.255,39.7299],[3.2625,39.7335],[3.2639,39.7342],[3.264,39.7343],[3.2907,39.7471],[3.3353,39.7685],[3.3737,39.7684],[3.3763,39.7677],[3.3767,39.7675],[3.3869,39.7646],[3.3887,39.7641],[3.4045,39.7595],[3.4064,39.7589],[3.4085,39.7583],[3.4102,39.7578],[3.4545,39.7449],[3.4572,39.7441],[3.459,39.7413],[3.461,39.7381],[3.4613,39.7378],[3.4716,39.7217],[3.472,39.721],[3.476,39.7148],[3.4773,39.7128],[3.4765,39.7125],[3.4761,39.7124],[3.4729,39.7111],[3.4722,39.7109],[3.4563,39.7048],[3.4559,39.7033],[3.4558,39.7033],[3.455,39.7002],[3.4548,39.6997],[3.4458,39.6679],[3.4428,39.6574],[3.4428,39.6573],[3.4386,39.6426],[3.4384,39.6419],[3.4382,39.6413],[3.4378,39.6398],[3.4365,39.6353],[3.4363,39.6345],[3.423,39.6354],[3.4134,39.636],[3.4121,39.6361],[3.4051,39.6366],[3.3862,39.5927],[3.3855,39.5909],[3.379,39.5757],[3.3789,39.5755],[3.3767,39.5704],[3.3764,39.5698],[3.3754,39.5674],[3.3746,39.5655],[3.3742,39.5647],[3.371,39.5573],[3.3683,39.5508],[3.3593,39.5444],[3.3004,39.5027],[3.2962,39.4997],[3.295,39.4949],[3.294,39.4909],[3.2938,39.4902],[3.2937,39.4901],[3.2923,39.4846],[3.2919,39.4828],[3.2779,39.4283],[3.2768,39.4241],[3.2764,39.4226],[3.2759,39.4203],[3.2758,39.4199],[3.2747,39.416],[3.2747,39.416],[3.2739,39.4149],[3.2736,39.4146],[3.2451,39.3788],[3.2443,39.3778],[3.2434,39.3767],[3.2433,39.3765],[3.2346,39.3655],[3.2342,39.3651],[3.2333,39.3639],[3.2331,39.3637],[3.2323,39.3626],[3.2311,39.3612],[3.2294,39.3591],[3.1912,39.3432],[3.1893,39.3425],[3.1528,39.3273],[3.1421,39.3229],[3.1255,39.316],[3.1248,39.3158],[3.1235,39.3152],[3.1183,39.313],[3.1183,39.313],[3.1176,39.3124],[3.1175,39.3123],[3.1157,39.3106],[3.1157,39.3106],[3.1069,39.3024],[3.1068,39.3023],[3.105,39.3007],[3.1047,39.3004],[3.1044,39.3001],[3.1042,39.2999],[3.0966,39.2928],[3.0958,39.292],[3.0925,39.289],[3.0913,39.2878],[3.0699,39.2679],[3.0685,39.2666],[3.0304,39.2891],[3.0294,39.2897],[3.0176,39.2968],[3.0175,39.2969],[2.9859,39.316],[2.9861,39.3173],[2.9865,39.319],[2.9867,39.3199],[2.9869,39.3212],[2.9869,39.3213],[2.9878,39.3257],[2.9878,39.3258],[2.9887,39.3306],[2.9901,39.3378],[2.9568,39.3628],[2.9556,39.3628],[2.9434,39.3628],[2.9272,39.3629],[2.927,39.3629],[2.8902,39.3629],[2.8901,39.3629],[2.8757,39.3629],[2.8757,39.3629],[2.8748,39.3629],[2.8701,39.363],[2.8695,39.363],[2.8659,39.363],[2.8649,39.363],[2.8631,39.363],[2.8608,39.363],[2.8606,39.363],[2.8601,39.363],[2.838,39.363],[2.8352,39.363],[2.8343,39.363],[2.8343,39.363],[2.8121,39.3631],[2.799,39.3631],[2.7948,39.3631],[2.7872,39.3631],[2.7604,39.3887],[2.7588,39.3901],[2.7441,39.4042],[2.7436,39.4047],[2.7434,39.4048],[2.7415,39.4066],[2.7416,39.4071],[2.7428,39.4142],[2.7453,39.4299],[2.7456,39.4315],[2.7458,39.4327],[2.746,39.4341],[2.7468,39.4392],[2.7469,39.4397],[2.7469,39.4398],[2.7471,39.4407],[2.7471,39.4413],[2.7465,39.4422],[2.7464,39.4423],[2.7458,39.4431],[2.7439,39.4457],[2.7434,39.4465],[2.7431,39.4469],[2.7346,39.4585],[2.7338,39.4595],[2.7336,39.4598],[2.7335,39.4599],[2.7291,39.4659],[2.7291,39.4659],[2.7283,39.4671],[2.7276,39.468],[2.7269,39.4689],[2.7264,39.4697],[2.726,39.4702],[2.7218,39.4758],[2.7246,39.4785],[2.7255,39.4793],[2.7259,39.4797],[2.7259,39.4797],[2.7266,39.4803],[2.7359,39.4892],[2.7422,39.4952],[2.748,39.5007],[2.7484,39.501],[2.7489,39.5016],[2.7493,39.5019],[2.7507,39.5033],[2.7509,39.5034],[2.7512,39.5038],[2.7508,39.5041],[2.7153,39.5319],[2.7129,39.5338],[2.712,39.5346],[2.7099,39.5362],[2.7095,39.5365],[2.7053,39.5398],[2.7044,39.5405],[2.6977,39.5457],[2.6951,39.5478],[2.6893,39.5523],[2.6679,39.5596],[2.6669,39.56],[2.6551,39.5641],[2.6413,39.5688],[2.6391,39.5678],[2.6381,39.5674],[2.6376,39.5672],[2.6282,39.563],[2.6281,39.5629],[2.6015,39.5511],[2.601,39.5509],[2.6001,39.5505],[2.5996,39.5503],[2.596,39.5487],[2.5419,39.5246],[2.5382,39.523],[2.5382,39.523],[2.5382,39.5227],[2.5378,39.521],[2.5368,39.5172],[2.5366,39.5164],[2.5341,39.506],[2.5338,39.505],[2.5336,39.5038],[2.5275,39.4791],[2.5266,39.4755],[2.524,39.4648],[2.5231,39.461],[2.5221,39.4571],[2.522,39.4564],[2.5216,39.4566],[2.5192,39.4577],[2.5189,39.4579],[2.5188,39.4579],[2.5003,39.4668],[2.4873,39.473],[2.4816,39.4758],[2.4777,39.4776],[2.4772,39.4791],[2.472,39.4933],[2.4651,39.5125],[2.4649,39.5129],[2.4647,39.5134],[2.4647,39.5136],[2.4584,39.5309],[2.4584,39.531],[2.4582,39.5314],[2.4582,39.5315],[2.4579,39.5322],[2.4578,39.5324],[2.4575,39.5334],[2.4572,39.534],[2.4449,39.5347],[2.4436,39.5347],[2.4279,39.5355],[2.4234,39.5357],[2.4231,39.5358],[2.4055,39.5367],[2.4006,39.5324],[2.3871,39.5208],[2.3636,39.5314],[2.363,39.5331],[2.3546,39.5577],[2.3542,39.5586],[2.3524,39.564],[2.3505,39.5694],[2.3493,39.573],[2.3452,39.585],[2.3452,39.585],[2.3444,39.5872],[2.3444,39.5872],[2.3918,39.6168],[2.3925,39.6173],[2.3945,39.6185],[2.3985,39.621],[2.4161,39.632],[2.4214,39.6353],[2.4271,39.6389],[2.4288,39.6399],[2.4324,39.6421],[2.4325,39.6422],[2.4944,39.6809],[2.4946,39.681],[2.4962,39.682],[2.4967,39.6823],[2.5044,39.6871],[2.5082,39.6895],[2.5272,39.7014],[2.5303,39.7022],[2.5871,39.7172],[2.5887,39.7187],[2.5887,39.7188],[2.6157,39.7435],[2.617,39.7447],[2.6234,39.7506],[2.6264,39.7534],[2.6278,39.7546],[2.6284,39.7552],[2.6292,39.7559],[2.6378,39.7638],[2.641,39.7667],[2.6541,39.7787],[2.6687,39.7922],[2.6712,39.7936],[2.6719,39.794],[2.6737,39.795],[2.6746,39.7956],[2.6765,39.7966],[2.68,39.7987],[2.6801,39.7987],[2.6992,39.8098],[2.7012,39.811],[2.7785,39.8557],[2.7785,39.8557],[2.7785,39.8557],[2.7816,39.856],[2.8019,39.8578],[2.8095,39.8585],[2.8097,39.8585],[2.823,39.8598],[2.8248,39.8599],[2.8278,39.8602],[2.8421,39.8615],[2.845,39.8618],[2.8678,39.8767],[2.8686,39.8773],[2.8694,39.8778],[2.8882,39.89],[2.8886,39.8903],[2.8908,39.8917],[2.8961,39.8952],[2.9004,39.8965],[2.9046,39.8978],[2.9072,39.8986],[2.9378,39.9078],[2.9381,39.9079],[2.9588,39.9141],[2.9603,39.9146],[3.0278,39.935],[3.0301,39.9348],[3.0343,39.9345],[3.0376,39.9343],[3.0396,39.9341],[3.0516,39.9332],[3.0518,39.9332],[3.0524,39.9332],[3.054,39.9331],[3.0547,39.933],[3.0587,39.9327],[3.0611,39.9326],[3.0603,39.9241],[3.0598,39.9195],[3.0676,39.9226],[3.0882,39.9307],[3.089,39.931],[3.0896,39.9313],[3.0999,39.9354],[3.0999,39.9354],[3.1465,39.9538],[3.1466,39.9538],[3.1499,39.9551],[3.156,39.9576],[3.1633,39.9581],[3.1706,39.9586],[3.1721,39.9587],[3.1796,39.9592],[3.1796,39.9592],[3.2107,39.9614],[3.2116,39.9614],[3.2146,39.9617],[3.1816,39.9406],[3.1805,39.9399],[3.1643,39.9296],[3.1637,39.9292],[3.1592,39.9264],[3.1586,39.926],[3.1561,39.9244],[3.1555,39.924],[3.1549,39.9237],[3.1541,39.9231],[3.1541,39.9231],[3.1473,39.9217],[3.1442,39.9211]]],[[[2.9765,39.1574],[2.9579,39.1268],[2.9561,39.1265],[2.954,39.1262],[2.947,39.1252],[2.9456,39.1259],[2.9444,39.1266],[2.943,39.1273],[2.9252,39.1369],[2.9211,39.1391],[2.9146,39.1426],[2.914,39.1429],[2.9146,39.1434],[2.9238,39.1509],[2.9252,39.1497],[2.9256,39.1494],[2.9257,39.1494],[2.9264,39.1488],[2.9288,39.1466],[2.9302,39.1454],[2.9317,39.1441],[2.9333,39.1445],[2.9372,39.1457],[2.949,39.1492],[2.9496,39.1494],[2.9498,39.152],[2.9499,39.1542],[2.9499,39.1546],[2.95,39.1564],[2.9504,39.1645],[2.9504,39.165],[2.9504,39.1656],[2.9522,39.165],[2.9535,39.1646],[2.9554,39.164],[2.9559,39.1638],[2.9567,39.1636],[2.9696,39.1595],[2.9744,39.158],[2.9765,39.1574]]],[[[2.3074,39.5738],[2.3036,39.5728],[2.3041,39.5738],[2.3059,39.5773],[2.3072,39.5797],[2.3077,39.5808],[2.3109,39.5827],[2.3126,39.5837],[2.3143,39.5848],[2.3156,39.5856],[2.3162,39.586],[2.3318,39.5954],[2.3323,39.5958],[2.3329,39.5961],[2.3332,39.5963],[2.3359,39.5979],[2.337,39.5986],[2.3366,39.5975],[2.3338,39.5888],[2.3338,39.5888],[2.3183,39.5765],[2.3088,39.5741],[2.3074,39.5738]]],[[[4.2547,39.9923],[4.2551,39.9914],[4.2553,39.9911],[4.2574,39.9872],[4.2591,39.9839],[4.2604,39.9815],[4.2616,39.9793],[4.2732,39.9576],[4.2735,39.957],[4.2737,39.9567],[4.2753,39.9537],[4.2766,39.9513],[4.2781,39.9485],[4.2786,39.9476],[4.279,39.9468],[4.279,39.9468],[4.2792,39.9465],[4.28,39.945],[4.2809,39.9432],[4.281,39.9431],[4.3054,39.8974],[4.3069,39.8946],[4.309,39.8908],[4.309,39.8907],[4.3092,39.8904],[4.3095,39.8899],[4.3104,39.8881],[4.3108,39.8875],[4.3119,39.8853],[4.3116,39.8848],[4.3115,39.8845],[4.3103,39.8819],[4.3089,39.8791],[4.3089,39.8791],[4.3075,39.8762],[4.3072,39.8755],[4.3063,39.8737],[4.3062,39.8736],[4.3058,39.8726],[4.3056,39.8723],[4.3041,39.8692],[4.304,39.869],[4.3019,39.8646],[4.3016,39.864],[4.294,39.8482],[4.2752,39.8094],[4.2213,39.8273],[4.2194,39.8279],[4.2186,39.8282],[4.2157,39.8292],[4.2026,39.8335],[4.171,39.8479],[4.1702,39.8483],[4.1691,39.8487],[4.1671,39.8497],[4.1601,39.8529],[4.1593,39.8532],[4.1593,39.8532],[4.1587,39.8535],[4.1357,39.864],[4.1341,39.8647],[4.1326,39.8654],[4.1286,39.8672],[4.0848,39.8872],[4.0829,39.888],[4.0119,39.9203],[4.0118,39.9204],[4.0045,39.9237],[4.0026,39.9246],[4.0006,39.9255],[4,39.9257],[3.9899,39.9303],[3.9883,39.9311],[3.9772,39.9305],[3.9738,39.9303],[3.9137,39.9269],[3.9132,39.9269],[3.9028,39.9263],[3.9023,39.9263],[3.8972,39.926],[3.89,39.9256],[3.8495,39.9234],[3.8477,39.9233],[3.8396,39.9228],[3.8388,39.9228],[3.8244,39.922],[3.8239,39.922],[3.8247,39.9394],[3.8248,39.9412],[3.8248,39.9414],[3.8248,39.9415],[3.8249,39.945],[3.8252,39.9497],[3.8253,39.9526],[3.8253,39.9538],[3.8272,39.9925],[3.8141,39.9956],[3.8118,39.9961],[3.8104,39.9964],[3.8043,39.9979],[3.801,39.9986],[3.8001,39.9988],[3.7967,39.9996],[3.7947,40.0001],[3.7911,40.0153],[3.7909,40.0163],[3.7909,40.0163],[3.7911,40.0166],[3.7913,40.0167],[3.7916,40.017],[3.7946,40.0202],[3.7951,40.0207],[3.8074,40.0336],[3.8076,40.0338],[3.8214,40.0482],[3.8215,40.0483],[3.8257,40.0528],[3.8277,40.0528],[3.8291,40.0528],[3.8389,40.0531],[3.8686,40.0537],[3.8719,40.0538],[3.88,40.054],[3.8819,40.054],[3.8828,40.0541],[3.8835,40.0541],[3.9057,40.0546],[3.9061,40.0546],[3.9196,40.0549],[3.9198,40.0549],[3.9675,40.056],[3.9888,40.0565],[3.99,40.0565],[4.0127,40.0571],[4.0136,40.0571],[4.0158,40.0571],[4.016,40.0571],[4.0411,40.0577],[4.0415,40.0577],[4.0565,40.0581],[4.0623,40.0582],[4.0628,40.0582],[4.064,40.0582],[4.0674,40.0583],[4.0681,40.0583],[4.0703,40.0584],[4.073,40.0584],[4.0932,40.0589],[4.0944,40.0589],[4.1198,40.0595],[4.125,40.0596],[4.133,40.0598],[4.1334,40.0598],[4.1384,40.0599],[4.1385,40.0599],[4.1728,40.0607],[4.1725,40.06],[4.166,40.045],[4.1655,40.0438],[4.161,40.0336],[4.201,39.998],[4.2034,39.9959],[4.205,39.9944],[4.2062,39.9934],[4.2266,39.9929],[4.2547,39.9923]]],[[[1.5257,38.9729],[1.4889,38.928],[1.4888,38.9279],[1.4886,38.9276],[1.4884,38.9274],[1.4877,38.9265],[1.4868,38.9254],[1.4866,38.9252],[1.4851,38.9234],[1.4839,38.9218],[1.4834,38.9212],[1.4787,38.9155],[1.4787,38.9155],[1.4766,38.913],[1.474,38.9133],[1.4634,38.9143],[1.4631,38.9143],[1.4526,38.9154],[1.4455,38.9161],[1.4394,38.9167],[1.4386,38.9159],[1.4366,38.9142],[1.4358,38.9135],[1.4353,38.913],[1.435,38.9128],[1.4347,38.9126],[1.4255,38.9045],[1.4178,38.8978],[1.4169,38.897],[1.41,38.8909],[1.4057,38.8345],[1.4055,38.8316],[1.3711,38.8303],[1.3711,38.8303],[1.3425,38.8711],[1.3269,38.873],[1.297,38.8766],[1.296,38.8767],[1.2935,38.877],[1.2726,38.8795],[1.2543,38.8621],[1.2478,38.8559],[1.2469,38.8569],[1.2462,38.8577],[1.2363,38.8698],[1.2342,38.8723],[1.2242,38.8844],[1.224,38.8846],[1.2165,38.8938],[1.2165,38.8938],[1.2135,38.8974],[1.2135,38.8974],[1.2135,38.8999],[1.2136,38.9029],[1.2136,38.9036],[1.2148,38.9565],[1.2148,38.9587],[1.2287,38.9746],[1.2294,38.9745],[1.2559,38.9727],[1.2765,38.9712],[1.2783,38.9711],[1.2938,38.97],[1.2943,38.97],[1.3021,38.9695],[1.3003,38.9783],[1.3003,38.9784],[1.2984,38.9871],[1.2946,39.0051],[1.2945,39.0057],[1.2927,39.0142],[1.2923,39.0161],[1.2897,39.0283],[1.2933,39.0307],[1.2943,39.0314],[1.2945,39.0315],[1.2958,39.0324],[1.2962,39.0327],[1.3077,39.0404],[1.3092,39.0414],[1.3096,39.0416],[1.3128,39.0438],[1.3241,39.0513],[1.3265,39.0529],[1.3445,39.0649],[1.3459,39.0658],[1.3592,39.0747],[1.3614,39.0748],[1.3621,39.0749],[1.3845,39.0759],[1.3847,39.0759],[1.389,39.0761],[1.3971,39.0765],[1.399,39.0765],[1.4007,39.0766],[1.401,39.0766],[1.4082,39.077],[1.4156,39.0773],[1.4167,39.0773],[1.4362,39.0843],[1.4432,39.0867],[1.4485,39.0886],[1.4524,39.09],[1.4837,39.101],[1.4846,39.1013],[1.4914,39.1038],[1.4922,39.1041],[1.5065,39.1091],[1.5071,39.1093],[1.5118,39.111],[1.5153,39.1122],[1.5195,39.1137],[1.5199,39.1138],[1.5219,39.1145],[1.5328,39.1184],[1.5333,39.1182],[1.5343,39.1179],[1.5358,39.1173],[1.5363,39.1171],[1.537,39.1168],[1.5417,39.115],[1.5422,39.1148],[1.5912,39.0959],[1.5949,39.0945],[1.5993,39.0928],[1.5997,39.0926],[1.6039,39.091],[1.6039,39.0898],[1.6042,39.0794],[1.6043,39.0761],[1.6053,39.0451],[1.6053,39.0448],[1.6058,39.0296],[1.5968,39.0238],[1.5959,39.0232],[1.5948,39.0225],[1.5946,39.0223],[1.5342,38.9833],[1.5342,38.9833],[1.5326,38.9813],[1.5308,38.9792],[1.53,38.9782],[1.5299,38.978],[1.5297,38.9778],[1.5257,38.9729]]],[[[1.4791,38.7095],[1.5254,38.6749],[1.5262,38.6743],[1.5263,38.6742],[1.5275,38.6733],[1.5283,38.6737],[1.5287,38.6739],[1.5335,38.676],[1.5339,38.6761],[1.5466,38.6816],[1.5693,38.6915],[1.571,38.6884],[1.5714,38.6875],[1.5717,38.6869],[1.5844,38.6628],[1.5839,38.6628],[1.524,38.653],[1.4471,38.685],[1.4345,38.6761],[1.4296,38.6727],[1.3852,38.6413],[1.3855,38.6569],[1.3855,38.6598],[1.3857,38.6711],[1.3857,38.6726],[1.3861,38.6929],[1.3861,38.6931],[1.3864,38.7106],[1.3864,38.7106],[1.3864,38.7116],[1.3864,38.7118],[1.3866,38.7218],[1.4003,38.7288],[1.4008,38.729],[1.4315,38.7447],[1.4455,38.7344],[1.4458,38.7342],[1.4512,38.7303],[1.4512,38.7303],[1.4512,38.7303],[1.4514,38.7301],[1.4524,38.7294],[1.4526,38.7292],[1.4541,38.7281],[1.4586,38.7248],[1.4598,38.7238],[1.4785,38.7099],[1.4791,38.7095]]],[[[-0.7976,39.8811],[-0.8049,39.8924],[-0.8328,39.911],[-0.8398,39.9421],[-0.8462,39.9477],[-0.8357,39.96],[-0.8414,39.969],[-0.8377,39.9768],[-0.8163,39.9824],[-0.8031,39.9906],[-0.7859,39.9922],[-0.7672,40.01],[-0.7622,40.0413],[-0.7536,40.0466],[-0.7475,40.0379],[-0.7307,40.0425],[-0.7188,40.0387],[-0.7028,40.0466],[-0.6818,40.0444],[-0.6641,40.0514],[-0.6458,40.0677],[-0.6272,40.0762],[-0.6231,40.0752],[-0.623,40.0694],[-0.6135,40.07],[-0.6287,40.1021],[-0.6074,40.128],[-0.5908,40.1337],[-0.5862,40.1316],[-0.5801,40.1372],[-0.5795,40.1473],[-0.5705,40.1554],[-0.5721,40.1815],[-0.5578,40.2008],[-0.559,40.2101],[-0.5441,40.2517],[-0.527,40.2379],[-0.4945,40.2287],[-0.4713,40.2384],[-0.4518,40.2353],[-0.3839,40.2645],[-0.3828,40.2783],[-0.4004,40.2949],[-0.3899,40.2999],[-0.3901,40.3056],[-0.3703,40.3043],[-0.3684,40.3121],[-0.3529,40.3134],[-0.3491,40.3266],[-0.3414,40.3279],[-0.3406,40.34],[-0.3324,40.3415],[-0.3045,40.3627],[-0.298,40.3617],[-0.2891,40.3681],[-0.2817,40.3657],[-0.2833,40.3834],[-0.3015,40.3977],[-0.3146,40.4158],[-0.3328,40.4255],[-0.3451,40.4436],[-0.3326,40.4591],[-0.2971,40.4669],[-0.2769,40.4759],[-0.2728,40.4737],[-0.2481,40.4678],[-0.1596,40.4837],[-0.1015,40.5252],[-0.078,40.5805],[-0.0545,40.6607],[-0.0646,40.7274],[-0.0314,40.7224],[-0.0177,40.7312],[0.0161,40.7282],[0.0162,40.7233],[0.0284,40.7132],[0.0246,40.7073],[0.0265,40.695],[0.0422,40.691],[0.0727,40.7143],[0.1126,40.7271],[0.1239,40.7208],[0.144,40.7183],[0.1639,40.7236],[0.1708,40.7328],[0.1823,40.7283],[0.1911,40.7312],[0.1974,40.7242],[0.2253,40.7327],[0.2267,40.7171],[0.2366,40.7017],[0.2625,40.7059],[0.2919,40.6886],[0.2677,40.6582],[0.2694,40.6481],[0.266,40.6448],[0.2831,40.6272],[0.2924,40.6233],[0.2985,40.626],[0.3159,40.614],[0.338,40.6088],[0.3885,40.6067],[0.4028,40.602],[0.4047,40.5948],[0.4286,40.581],[0.444,40.5782],[0.4367,40.5726],[0.4343,40.5647],[0.438,40.5471],[0.5152,40.5229],[0.5061,40.5047],[0.4777,40.4685],[0.4779,40.4586],[0.4752,40.4655],[0.4667,40.4603],[0.4472,40.4378],[0.4356,40.4163],[0.4173,40.3996],[0.4036,40.3634],[0.4087,40.3575],[0.4029,40.3538],[0.4062,40.3562],[0.3997,40.3579],[0.3864,40.3402],[0.3664,40.3258],[0.3542,40.3121],[0.3506,40.2996],[0.3356,40.2916],[0.3299,40.2793],[0.2787,40.2442],[0.264,40.2083],[0.2305,40.1979],[0.1908,40.171],[0.1576,40.1179],[0.1479,40.0972],[0.1477,40.0828],[0.1373,40.0819],[0.1321,40.0716],[0.1206,40.0624],[0.106,40.0565],[0.0828,40.0566],[0.0645,40.0458],[0.0496,40.0358],[0.0392,40.0154],[0.0234,39.9838],[0.0216,39.9746],[0.0283,39.9688],[0.0172,39.9744],[0.0162,39.9703],[0.0241,39.968],[0.0096,39.967],[-0.0071,39.9141],[-0.0839,39.8563],[-0.1885,39.722],[-0.2089,39.6633],[-0.2081,39.6432],[-0.2098,39.6519],[-0.2157,39.6553],[-0.2201,39.6498],[-0.2142,39.6469],[-0.2382,39.6358],[-0.2607,39.6133],[-0.2809,39.5625],[-0.308,39.5349],[-0.318,39.5175],[-0.3235,39.4846],[-0.3212,39.4578],[-0.3171,39.4519],[-0.3019,39.4491],[-0.3021,39.4404],[-0.303,39.4488],[-0.318,39.4514],[-0.3292,39.4619],[-0.3313,39.4589],[-0.3204,39.4498],[-0.3255,39.4496],[-0.3249,39.4461],[-0.3189,39.4441],[-0.3317,39.4434],[-0.3358,39.4246],[-0.3157,39.3601],[-0.292,39.3093],[-0.2983,39.3096],[-0.2917,39.3077],[-0.2221,39.1887],[-0.2156,39.186],[-0.2198,39.1804],[-0.2341,39.1804],[-0.2382,39.1764],[-0.2396,39.1477],[-0.2036,39.066],[-0.1559,38.997],[-0.1485,38.9966],[-0.1608,38.9923],[-0.1516,38.9948],[-0.1428,38.9783],[-0.1189,38.954],[-0.0376,38.8864],[-0.0151,38.8721],[0.0139,38.864],[0.0366,38.8599],[0.0547,38.8632],[0.0936,38.8545],[0.1221,38.8347],[0.1474,38.8315],[0.1708,38.8151],[0.1906,38.8083],[0.1989,38.8024],[0.1831,38.7973],[0.1837,38.7864],[0.2067,38.7621],[0.2231,38.7629],[0.2242,38.7486],[0.2317,38.7439],[0.2326,38.7355],[0.2313,38.7313],[0.2261,38.7333],[0.215,38.7279],[0.2135,38.7314],[0.2043,38.732],[0.1972,38.7281],[0.1987,38.7251],[0.1823,38.7209],[0.1558,38.698],[0.1553,38.6868],[0.1499,38.6796],[0.1459,38.6877],[0.1297,38.6869],[0.1155,38.6752],[0.0986,38.6724],[0.0752,38.6473],[0.074,38.6409],[0.083,38.6315],[0.0735,38.6321],[0.0705,38.6394],[0.0552,38.6419],[0.0355,38.6362],[0.0307,38.6259],[0.0102,38.6328],[-0.0166,38.6265],[-0.0316,38.6162],[-0.0595,38.5858],[-0.0638,38.5712],[-0.0489,38.5636],[-0.0682,38.5473],[-0.0979,38.5234],[-0.1088,38.5288],[-0.1093,38.5331],[-0.1497,38.5358],[-0.174,38.5156],[-0.2228,38.5085],[-0.2375,38.4994],[-0.3014,38.4819],[-0.3573,38.4486],[-0.3755,38.442],[-0.3866,38.4317],[-0.3908,38.416],[-0.4012,38.4121],[-0.4057,38.3983],[-0.4091,38.3587],[-0.4026,38.3528],[-0.4299,38.3533],[-0.4344,38.3599],[-0.4438,38.3627],[-0.475,38.347],[-0.4778,38.337],[-0.4864,38.3307],[-0.4792,38.3383],[-0.4805,38.3425],[-0.4899,38.3353],[-0.5032,38.335],[-0.5137,38.3188],[-0.5199,38.2976],[-0.5151,38.2403],[-0.507,38.2154],[-0.5099,38.202],[-0.5164,38.1952],[-0.5326,38.1893],[-0.5919,38.189],[-0.6125,38.1754],[-0.6369,38.1359],[-0.6505,38.0547],[-0.6525,38.0892],[-0.6856,38.1417],[-0.752,38.2081],[-0.8018,38.2689],[-0.8405,38.291],[-0.9373,38.385],[-1.0562,38.4542],[-1.1944,38.5122],[-1.3161,38.5399],[-1.5179,38.5509],[-1.6285,38.5509],[-1.7944,38.5509],[-1.941,38.5399],[-2.0543,38.515],[-2.1705,38.4874],[-2.317,38.4763],[-2.4221,38.4763],[-2.5726,38.4877],[-2.5666,38.4905],[-2.5937,38.5113],[-2.6186,38.5126],[-2.6797,38.4969],[-2.7025,38.5011],[-2.7281,38.5119],[-2.739,38.5223],[-2.7621,38.5328],[-2.7642,38.5355],[-2.7552,38.5376],[-2.7468,38.5468],[-2.7563,38.5544],[-2.7655,38.5739],[-2.7569,38.5851],[-2.7501,38.6156],[-2.7637,38.6279],[-2.7282,38.6161],[-2.7149,38.6249],[-2.6998,38.6254],[-2.6825,38.6441],[-2.6689,38.6493],[-2.6555,38.6715],[-2.6467,38.7155],[-2.6379,38.7347],[-2.6435,38.7464],[-2.6746,38.7616],[-2.6921,38.7808],[-2.7116,38.786],[-2.7322,38.7819],[-2.7345,38.7953],[-2.7503,38.8071],[-2.7527,38.8148],[-2.7511,38.8484],[-2.7564,38.8678],[-2.7615,38.8697],[-2.7623,38.8808],[-2.7906,38.8916],[-2.7925,38.9056],[-2.8358,38.906],[-2.8577,38.9274],[-2.8762,38.9255],[-2.8829,38.9385],[-2.8802,38.9532],[-2.871,38.9656],[-2.8446,38.9864],[-2.8323,39.0233],[-2.8099,39.0239],[-2.805,39.079],[-2.8155,39.0941],[-2.8225,39.0927],[-2.8273,39.0984],[-2.8342,39.1123],[-2.8336,39.1209],[-2.8427,39.1345],[-2.8249,39.151],[-2.8069,39.1779],[-2.7811,39.1972],[-2.7598,39.2304],[-2.7324,39.2531],[-2.7225,39.2664],[-2.7241,39.2798],[-2.736,39.2957],[-2.7422,39.3182],[-2.7721,39.3696],[-2.7778,39.3954],[-2.7931,39.3978],[-2.7908,39.3936],[-2.7983,39.3913],[-2.8038,39.3811],[-2.8094,39.3799],[-2.8341,39.3535],[-2.8487,39.3488],[-2.8599,39.349],[-2.8647,39.3569],[-2.8824,39.3509],[-2.8869,39.3537],[-2.8966,39.3668],[-2.8861,39.3849],[-2.8706,39.3844],[-2.8699,39.3905],[-2.8859,39.4056],[-2.8897,39.422],[-2.9001,39.425],[-2.9036,39.434],[-2.9022,39.4271],[-2.9052,39.4277],[-2.9145,39.4474],[-2.9318,39.4529],[-2.9314,39.4715],[-2.9359,39.5113],[-2.9313,39.5186],[-2.9351,39.5256],[-2.9291,39.5299],[-2.9275,39.5496],[-2.9206,39.5592],[-2.9205,39.5819],[-2.9255,39.6018],[-2.9137,39.6138],[-2.9179,39.6231],[-2.9082,39.6424],[-2.9193,39.6463],[-2.9496,39.6766],[-2.9544,39.6867],[-2.9699,39.6897],[-2.9775,39.6967],[-2.9767,39.7029],[-2.9978,39.7189],[-3.0155,39.7648],[-3.0405,39.7876],[-3.0377,39.7902],[-3.0518,39.8126],[-3.0597,39.8375],[-3.0763,39.8557],[-3.0963,39.8691],[-3.1121,39.875],[-3.1272,39.8747],[-3.1129,39.8943],[-3.1133,39.8995],[-3.1069,39.9032],[-3.1069,39.9165],[-3.1004,39.9217],[-3.0971,39.9335],[-3.0966,39.987],[-3.1426,39.985],[-3.1505,40.0108],[-3.1655,40.0282],[-3.1702,40.0482],[-3.1614,40.0652],[-3.1179,40.0617],[-3.0887,40.0705],[-3.0589,40.0921],[-3.0533,40.0991],[-3.0568,40.1137],[-3.073,40.1249],[-3.0749,40.131],[-3.0969,40.1425],[-3.094,40.1497],[-3.0979,40.1535],[-3.0882,40.1628],[-3.0787,40.1567],[-3.0678,40.1576],[-3.0638,40.1683],[-3.0155,40.1532],[-3.0123,40.174],[-3.0181,40.1762],[-3.0211,40.1875],[-3.0044,40.2092],[-2.9982,40.2091],[-2.9811,40.194],[-2.9595,40.183],[-2.947,40.1696],[-2.9115,40.1571],[-2.8737,40.1736],[-2.8631,40.2001],[-2.8238,40.2032],[-2.8026,40.2641],[-2.8085,40.327],[-2.8167,40.3347],[-2.8104,40.3432],[-2.8152,40.342],[-2.8179,40.3475],[-2.7936,40.3774],[-2.7882,40.3812],[-2.7914,40.3893],[-2.7825,40.3982],[-2.7833,40.4062],[-2.7697,40.4098],[-2.7737,40.4142],[-2.5502,40.5842],[-2.571,40.548],[-2.5787,40.5074],[-2.5367,40.4923],[-2.5287,40.4984],[-2.5405,40.5074],[-2.5463,40.519],[-2.5387,40.534],[-2.5272,40.5443],[-2.5136,40.5158],[-2.496,40.5088],[-2.4626,40.5233],[-2.4486,40.5246],[-2.4267,40.5408],[-2.4118,40.5256],[-2.3835,40.5409],[-2.38,40.5436],[-2.3832,40.5536],[-2.4173,40.5839],[-2.4125,40.6021],[-2.3987,40.6138],[-2.3726,40.6072],[-2.3544,40.5927],[-2.3598,40.5807],[-2.3434,40.5694],[-2.3314,40.5672],[-2.3082,40.574],[-2.2977,40.5729],[-2.2922,40.579],[-2.286,40.5922],[-2.2949,40.6222],[-2.2904,40.6303],[-2.28,40.6338],[-2.2746,40.6448],[-2.2257,40.6194],[-2.2138,40.6192],[-2.1898,40.6303],[-2.1692,40.6302],[-2.1569,40.6587],[-2.0912,40.6464],[-2.0836,40.6347],[-2.0575,40.6241],[-2.0574,40.6183],[-2.0358,40.6016],[-1.9855,40.5854],[-1.9654,40.5926],[-1.9681,40.6086],[-1.9649,40.6114],[-1.9541,40.6002],[-1.9264,40.5941],[-1.9165,40.5828],[-1.915,40.5682],[-1.9045,40.5465],[-1.9095,40.5417],[-1.8902,40.5306],[-1.8814,40.5175],[-1.8878,40.5057],[-1.878,40.4916],[-1.8732,40.4734],[-1.8608,40.4648],[-1.8651,40.455],[-1.8575,40.442],[-1.8564,40.4288],[-1.8443,40.419],[-1.8367,40.4277],[-1.8237,40.4108],[-1.8063,40.3982],[-1.7901,40.3975],[-1.7891,40.3917],[-1.7778,40.3919],[-1.7495,40.3587],[-1.6977,40.3213],[-1.6972,40.3166],[-1.7068,40.3136],[-1.7201,40.3185],[-1.7294,40.3029],[-1.7269,40.2883],[-1.7193,40.2771],[-1.7107,40.2804],[-1.7106,40.2921],[-1.7004,40.3071],[-1.6903,40.3097],[-1.6656,40.2946],[-1.6589,40.282],[-1.6087,40.2428],[-1.5926,40.2363],[-1.5697,40.2116],[-1.5404,40.1914],[-1.5315,40.1929],[-1.5225,40.2019],[-1.5109,40.2037],[-1.4744,40.1851],[-1.4392,40.197],[-1.4423,40.1576],[-1.4488,40.1454],[-1.4318,40.1393],[-1.4117,40.1408],[-1.3935,40.1344],[-1.3768,40.1403],[-1.3636,40.1386],[-1.3617,40.1297],[-1.3546,40.1295],[-1.3166,40.1497],[-1.323,40.1849],[-1.315,40.2014],[-1.3007,40.2064],[-1.2982,40.2117],[-1.2931,40.2069],[-1.2967,40.1992],[-1.2843,40.1715],[-1.2524,40.1433],[-1.2443,40.146],[-1.2488,40.1356],[-1.2458,40.1281],[-1.2506,40.1239],[-1.2449,40.1162],[-1.2216,40.1157],[-1.2064,40.1102],[-1.1476,40.1143],[-1.1334,40.0974],[-1.1118,40.0928],[-1.0727,40.0599],[-1.0717,40.0516],[-1.0842,40.0362],[-1.134,40.0158],[-1.1462,40.0168],[-1.1652,40.0101],[-1.1633,39.9998],[-1.1473,39.9886],[-1.1424,39.9719],[-1.131,39.9708],[-1.1217,39.9609],[-1.1238,39.966],[-1.1146,39.9728],[-1.1073,39.9701],[-1.105,39.975],[-1.0921,39.9678],[-1.0859,39.9763],[-1.0727,39.9795],[-1.0257,39.9746],[-0.9893,39.9818],[-0.9492,39.9673],[-0.9318,39.9561],[-0.9204,39.9644],[-0.9026,39.9319],[-0.9034,39.9262],[-0.9076,39.928],[-0.9138,39.918],[-0.9096,39.8986],[-0.9002,39.8918],[-0.9081,39.886],[-0.9127,39.8731],[-0.895,39.8568],[-0.874,39.8484],[-0.8635,39.8474],[-0.8287,39.8712],[-0.7976,39.8811]]]]}}]} \ No newline at end of file diff --git a/man/mapLayout_no_interactive.Rd b/man/mapLayout_no_interactive.Rd new file mode 100644 index 00000000..174e214a --- /dev/null +++ b/man/mapLayout_no_interactive.Rd @@ -0,0 +1,39 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/map_layout.R +\name{mapLayout_no_interactive} +\alias{mapLayout_no_interactive} +\title{Build a `mapLayout` object with gesojson file} +\usage{ +mapLayout_no_interactive(path_geojson_file, opts = simOptions()) +} +\arguments{ +\item{path_geojson_file}{`character` path of geojson file} + +\item{opts}{list of simulation parameters returned by +the function \code{\link[antaresRead]{setSimulationPath}}} +} +\value{ +Object of class "mapLayout" +} +\description{ +This function creates a 'mapLayout' object from a study and an external +'geojson' file. + +This function should be used only once per study. + +The result should then be saved in an external file and be reused. +} +\note{ +The 'geojson' file must contain zones compatible with the study. +} +\examples{ +\dontrun{ +# set informations to your study ("input" mode is enough) +setSimulationPath(path = "path/my_study", simulation = "input") + +path_geojson <- "path/my_geosjonfile.geojson" + +mapLayout_no_interactive(path_geojson_file = path_geojson) + +} +} diff --git a/tests/testthat/test-map_layout.R b/tests/testthat/test-map_layout.R new file mode 100644 index 00000000..41cf5eda --- /dev/null +++ b/tests/testthat/test-map_layout.R @@ -0,0 +1,101 @@ + +test_that("build objet 'mapLayout' no interactive", { + skip_if_not_installed("antaresEditObject", + minimum_version = "0.3.0") + + # create study ---- + # create study with areas/links according to geojson file test + suppressWarnings( + antaresEditObject::createStudy(path = tempdir(), + study_name = "zonal_test", + antares_version = "8.2.0") + ) + + lapply(c("21_FR", "24_FR", "23_FR", "16_FR"), + antaresEditObject::createArea) + + antaresEditObject::createLink(from = "21_FR", + to = "24_FR") + + # read geojson ---- + path_geojson_test <- system.file("mapLayout/filter_zonal.geojson", + package = "antaresViz") + + geo_file <- sf::st_read(path_geojson_test) + + # error case ---- + # bad areas name + bad_area_name <- geo_file + bad_area_name$name <- sample(c("titi", "toto"), + size = length(bad_area_name$name), + replace = TRUE) + + bad_area_name <- geojsonio::geojson_write(input = bad_area_name) + + testthat::expect_error( + mapLayout_no_interactive(path_geojson_file = bad_area_name$path), + regexp = "study must have areas according to geojson file" + ) + + # bad structure geojson file + bad_struct_file <- geo_file + bad_struct_file <- bad_struct_file[, setdiff(names(bad_struct_file), "name")] + + bad_struct_file <- geojsonio::geojson_write(input = bad_struct_file) + + testthat::expect_error( + mapLayout_no_interactive(path_geojson_file = bad_struct_file$path), + regexp = "geosjon file must have key 'name'" + ) + + # no "Long" "Lat" key + bad_struct_file <- geo_file + bad_struct_file <- bad_struct_file[, setdiff(names(bad_struct_file), + c("Lat", "Long"))] + + bad_struct_file <- geojsonio::geojson_write(input = bad_struct_file) + + testthat::expect_error( + mapLayout_no_interactive(path_geojson_file = bad_struct_file$path), + regexp = "geosjon file must have key \\{'Lat;'Long'\\}" + ) + + # remove file + file.remove(bad_struct_file$path) + + # good case ---- + # build "mapLayout" object + obj_mapLayout <- mapLayout_no_interactive(path_geojson_file = path_geojson_test) + + # tests + testthat::expect_s3_class(obj_mapLayout, 'mapLayout') + testthat::expect_true(all( + c("coords", "links", "map", "all_coords") %in% + names(obj_mapLayout))) + + # delete study ---- + unlink(file.path(tempdir(), "zonal_test"), recursive = TRUE) + + # # @examples + # # commented code if you want to test to plot this "mapLayout" + # + # # run from ui if it don't work + # runSimulation("zonal_testsim", + # path_solver = "D:/AppliRTE/bin/antares-8.2-solver.exe") + # + # # read only one simulation + # opts_zonal <- setSimulationPath(file.path(tempdir(), + # "zonal_test")) + # + # mydata <- readAntares(areas = obj_mapLayout$coords$area, + # links = obj_mapLayout$links$link, + # timeStep = "daily", + # select = "nostat", + # opts = simOptions()) + # + # # viz + # myOption <- plotMapOptions(areaChartColors = c("yellow", "violetred"), + # linkDefaultCol = "green") + # plotMap(x = mydata, mapLayout = obj_mapLayout, + # options = myOption) +}) diff --git a/tests/testthat/test-plotMap.R b/tests/testthat/test-plotMap.R index 45254c9b..bc6a0573 100644 --- a/tests/testthat/test-plotMap.R +++ b/tests/testthat/test-plotMap.R @@ -2,7 +2,7 @@ context("plotMap") test_that("plotMap, no interactive", { - dta <- readAntares(areas = "all", links = "all", showProgress = FALSE) + dta <- readAntares(areas = "all", links = "all", showProgress = FALSE, opts = opts) testClass <- function(obj){ class(obj)[1] == 'combineWidgets' } @@ -23,7 +23,7 @@ test_that("plotMap, no interactive", { test_that("plotMap, no interactive return error", { - dta <- readAntares(areas = "all", links = "all", showProgress = FALSE) + dta <- readAntares(areas = "all", links = "all", showProgress = FALSE, opts = opts) load(system.file("mapLayout/ml.rda", package = "antaresViz")) expect_error(plotMap(x = dta, mapLayout = ml , interactive = FALSE, compare = "areas")) @@ -32,7 +32,7 @@ test_that("plotMap, no interactive return error", { }) test_that("plotMap, interactive", { - dta <- readAntares(areas = "all", links = "all", showProgress = FALSE) + dta <- readAntares(areas = "all", links = "all", showProgress = FALSE, opts = opts) load(system.file("mapLayout/ml.rda", package = "antaresViz")) VV <- plotMap(x = dta, mapLayout = ml, .runApp = FALSE, interactive = TRUE) VV$init() @@ -40,7 +40,7 @@ test_that("plotMap, interactive", { }) test_that("plotMap, no interactive, x and refStudy are antaresDataList", { - dta <- readAntares(areas = "all", links = "all", showProgress = FALSE) + dta <- readAntares(areas = "all", links = "all", showProgress = FALSE, opts = opts) load(system.file("mapLayout/ml.rda", package = "antaresViz")) resPlotMap <- plotMap(x = dta, mapLayout = ml, @@ -67,7 +67,7 @@ test_that("plotMap, no interactive, x and refStudy are antaresDataList", { htmlPlotMap = resPlotMap) expect_equal(valToValid, 0) # edit myData - data2 <- readAntares(areas = "all", links = "all", showProgress = FALSE) + data2 <- readAntares(areas = "all", links = "all", showProgress = FALSE, opts = opts) data2$areas[ , LOAD := as.double(LOAD)][area=="c", LOAD := as.double(LOAD +2500.0)] resPlotMap2 <- plotMap(x = data2, refStudy = dta, @@ -84,7 +84,7 @@ test_that("plotMap, no interactive, x and refStudy are antaresDataList", { }) test_that("plotMap, no interactive, x is a list of antaresDataList and refStudy an antaresDataList", { - data1 <- readAntares(areas = "all", links = "all", showProgress = FALSE) + data1 <- readAntares(areas = "all", links = "all", showProgress = FALSE, opts = opts) dataList <- list(data1, data1, data1) load(system.file("mapLayout/ml.rda", package = "antaresViz")) resPlotMap <- plotMap(x = dataList, @@ -114,8 +114,8 @@ test_that("plotMap, no interactive, x is a list of antaresDataList and refStudy idWidget = 2) expect_equal(valToValid, 0) # edit myData - data2 <- readAntares(areas = "all", links = "all", showProgress = FALSE) - data1 <- readAntares(areas = "all", links = "all", showProgress = FALSE) + data2 <- readAntares(areas = "all", links = "all", showProgress = FALSE, opts = opts) + data1 <- readAntares(areas = "all", links = "all", showProgress = FALSE, opts = opts) data2$areas[ , LOAD := as.double(LOAD)][area=="c", LOAD := as.double(LOAD +2500.0)] dataList2 <- list(data1, data2, data1) expect_equal(dataList2[[2]]$areas[area=="c", LOAD], dataList2[[1]]$areas[area=="c", LOAD] + 2500)