Download this notebook from github.
[1]:
import xarray as xr
import xsar
import numpy as np
import os
Raster masks from vector masks
Sentinel 1 example
xsar.Sentinel1Dataset.dataset has a land_mask
variable by default, rasterized from cartopy.feature.NaturalEarthFeature(‘physical’, ‘land’, ‘10m’)
Mask sigma0 over land
Replacing sigma0
values with nan
over ocean can be done with xarray.where
[2]:
ds = xsar.open_dataset(xsar.get_test_file('S1B_IW_GRDH_1SDV_20181013T062322_20181013T062347_013130_018428_Z010.SAFE'), resolution='1000m')
# apply land_mask. The final transpose is done to preserve dimensions ordering
ds['sigma0_land'] = xr.where(ds['land_mask'], ds['sigma0'], np.nan).transpose(*ds['sigma0'].dims)
ds['sigma0_land']
/home/datawork-cersat-public/cache/project/mpc-sentinel1/workspace/mamba/envs/testgeoviewsnumpy/lib/python3.11/site-packages/numpy/_core/numeric.py:452: RuntimeWarning: invalid value encountered in cast
multiarray.copyto(res, fill_value, casting='unsafe')
[2]:
<xarray.DataArray 'sigma0_land' (pol: 2, line: 166, sample: 265)> Size: 704kB dask.array<transpose, shape=(2, 166, 265), dtype=float64, chunksize=(1, 166, 265), chunktype=numpy.ndarray> Coordinates: * line (line) float64 1kB 49.5 149.5 249.5 ... 1.645e+04 1.655e+04 * sample (sample) float64 2kB 49.5 149.5 249.5 ... 2.635e+04 2.645e+04 * pol (pol) object 16B 'VV' 'VH' spatial_ref int64 8B 0
- pol: 2
- line: 166
- sample: 265
- dask.array<chunksize=(1, 166, 265), meta=np.ndarray>
Array Chunk Bytes 687.34 kiB 343.67 kiB Shape (2, 166, 265) (1, 166, 265) Dask graph 2 chunks in 50 graph layers Data type float64 numpy.ndarray - line(line)float6449.5 149.5 ... 1.645e+04 1.655e+04
array([ 49.5, 149.5, 249.5, 349.5, 449.5, 549.5, 649.5, 749.5, 849.5, 949.5, 1049.5, 1149.5, 1249.5, 1349.5, 1449.5, 1549.5, 1649.5, 1749.5, 1849.5, 1949.5, 2049.5, 2149.5, 2249.5, 2349.5, 2449.5, 2549.5, 2649.5, 2749.5, 2849.5, 2949.5, 3049.5, 3149.5, 3249.5, 3349.5, 3449.5, 3549.5, 3649.5, 3749.5, 3849.5, 3949.5, 4049.5, 4149.5, 4249.5, 4349.5, 4449.5, 4549.5, 4649.5, 4749.5, 4849.5, 4949.5, 5049.5, 5149.5, 5249.5, 5349.5, 5449.5, 5549.5, 5649.5, 5749.5, 5849.5, 5949.5, 6049.5, 6149.5, 6249.5, 6349.5, 6449.5, 6549.5, 6649.5, 6749.5, 6849.5, 6949.5, 7049.5, 7149.5, 7249.5, 7349.5, 7449.5, 7549.5, 7649.5, 7749.5, 7849.5, 7949.5, 8049.5, 8149.5, 8249.5, 8349.5, 8449.5, 8549.5, 8649.5, 8749.5, 8849.5, 8949.5, 9049.5, 9149.5, 9249.5, 9349.5, 9449.5, 9549.5, 9649.5, 9749.5, 9849.5, 9949.5, 10049.5, 10149.5, 10249.5, 10349.5, 10449.5, 10549.5, 10649.5, 10749.5, 10849.5, 10949.5, 11049.5, 11149.5, 11249.5, 11349.5, 11449.5, 11549.5, 11649.5, 11749.5, 11849.5, 11949.5, 12049.5, 12149.5, 12249.5, 12349.5, 12449.5, 12549.5, 12649.5, 12749.5, 12849.5, 12949.5, 13049.5, 13149.5, 13249.5, 13349.5, 13449.5, 13549.5, 13649.5, 13749.5, 13849.5, 13949.5, 14049.5, 14149.5, 14249.5, 14349.5, 14449.5, 14549.5, 14649.5, 14749.5, 14849.5, 14949.5, 15049.5, 15149.5, 15249.5, 15349.5, 15449.5, 15549.5, 15649.5, 15749.5, 15849.5, 15949.5, 16049.5, 16149.5, 16249.5, 16349.5, 16449.5, 16549.5])
- sample(sample)float6449.5 149.5 ... 2.635e+04 2.645e+04
array([ 49.5, 149.5, 249.5, ..., 26249.5, 26349.5, 26449.5])
- pol(pol)object'VV' 'VH'
array(['VV', 'VH'], dtype=object)
- spatial_ref()int640
- crs_wkt :
- GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AXIS["Latitude",NORTH],AXIS["Longitude",EAST],AUTHORITY["EPSG","4326"]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- WGS 84
- horizontal_datum_name :
- World Geodetic System 1984
- grid_mapping_name :
- latitude_longitude
- spatial_ref :
- GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AXIS["Latitude",NORTH],AXIS["Longitude",EAST],AUTHORITY["EPSG","4326"]]
- gcps :
- {"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {"id": "4c898adc-8da4-4a20-b517-ae7a2e633eae", "info": null, "row": 0, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.3791335604073207, 48.81458522432979, 0]}}, {"type": "Feature", "properties": {"id": "985c8327-6227-4371-bc72-e108d1a7c51c", "info": null, "row": 0, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.5661967494132216, 48.838966951196916, 0]}}, {"type": "Feature", "properties": {"id": "911126a2-3a99-46f0-a5b7-16f8ed610ea2", "info": null, "row": 0, "col": 28}, "geometry": {"type": "Point", "coordinates": [-1.7534397755465054, 48.86304598904519, 0]}}, {"type": "Feature", "properties": {"id": "4e7f7556-8238-47a4-a013-ae139e456cf1", "info": null, "row": 0, "col": 42}, "geometry": {"type": "Point", "coordinates": [-1.9408607219541152, 48.886821800332086, 0]}}, {"type": "Feature", "properties": {"id": "8e4740f0-4124-4def-a6ff-40f9526b9540", "info": null, "row": 0, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.128457654589013, 48.91029385276869, 0]}}, {"type": "Feature", "properties": {"id": "f59d22a6-f0a2-4e64-b228-fb688d3255ec", "info": null, "row": 0, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.316228623365014, 48.933461619516315, 0]}}, {"type": "Feature", "properties": {"id": "8d50b3e7-22d9-47bd-92f4-bf4556861ddb", "info": null, "row": 0, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.5041716625967134, 48.956324579285464, 0]}}, {"type": "Feature", "properties": {"id": "ad95e0d8-854e-425e-a6e9-87b3d5c6742a", "info": null, "row": 0, "col": 98}, "geometry": {"type": "Point", "coordinates": [-2.692284791155159, 48.978882216397054, 0]}}, {"type": "Feature", "properties": {"id": "aa4b1994-3667-4a76-8f10-8eca2c4492f2", "info": null, "row": 0, "col": 112}, "geometry": {"type": "Point", "coordinates": [-2.8805660125663457, 49.00113402083601, 0]}}, {"type": "Feature", "properties": {"id": "2ba42c02-123d-47ec-bea6-5ff547e3da26", "info": null, "row": 0, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.069013315149831, 49.02307948830917, 0]}}, {"type": "Feature", "properties": {"id": "b53ad5be-4546-4924-8f23-4655233da91e", "info": null, "row": 0, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.2576246722161346, 49.044718120309184, 0]}}, {"type": "Feature", "properties": {"id": "03187160-75d9-466c-8ed7-ca4d00848067", "info": null, "row": 0, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.4463980422998866, 49.066049424181124, 0]}}, {"type": "Feature", "properties": {"id": "e0d22e6c-3eac-4b35-9ec3-49d6a78c813c", "info": null, "row": 0, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.6353313693908347, 49.0870729131874, 0]}}, {"type": "Feature", "properties": {"id": "df2a558f-3a6f-4002-bf2b-088287e50ba3", "info": null, "row": 0, "col": 182}, "geometry": {"type": "Point", "coordinates": [-3.824422583129099, 49.10778810656684, 0]}}, {"type": "Feature", "properties": {"id": "af89ac7d-e63e-4f03-afc5-7c835d3efe65", "info": null, "row": 0, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.013669598947961, 49.128194529587276, 0]}}, {"type": "Feature", "properties": {"id": "2e61ac63-91a1-49d8-8213-9e01189efd4c", "info": null, "row": 0, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.203070318174499, 49.148291713592734, 0]}}, {"type": "Feature", "properties": {"id": "11f425b2-4d14-491d-814c-fa800b0dea50", "info": null, "row": 0, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.392622628131894, 49.168079196050776, 0]}}, {"type": "Feature", "properties": {"id": "9a364662-93b3-4756-a2da-c68415d78d2f", "info": null, "row": 0, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.582324402323607, 49.18755652060777, 0]}}, {"type": "Feature", "properties": {"id": "f65f1816-9252-453c-9fa8-add366d896e2", "info": null, "row": 0, "col": 252}, "geometry": {"type": "Point", "coordinates": [-4.772173500819663, 49.20672323716343, 0]}}, {"type": "Feature", "properties": {"id": "181d2ef3-7967-4f32-9e35-72728b19a2bf", "info": null, "row": 9, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.4037835336820381, 48.73392017604085, 0]}}, {"type": "Feature", "properties": {"id": "262efb81-505a-4a5c-b47f-47f2c2ef8eb8", "info": null, "row": 9, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.5905513653366739, 48.75829086528781, 0]}}, {"type": "Feature", "properties": {"id": "6a6237a9-fb61-4f8f-b1c8-5402b00802b1", "info": null, "row": 9, "col": 28}, "geometry": {"type": "Point", "coordinates": [-1.7774981532994907, 48.78235970617871, 0]}}, {"type": "Feature", "properties": {"id": "aea43954-7da5-4636-8507-14308954818b", "info": null, "row": 9, "col": 42}, "geometry": {"type": "Point", "coordinates": [-1.9646219954754662, 48.80612616396866, 0]}}, {"type": "Feature", "properties": {"id": "903a61da-3cf6-4479-b9f3-64c2aa85a88f", "info": null, "row": 9, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.151920972603736, 48.82958970910595, 0]}}, {"type": "Feature", "properties": {"id": "933c83ee-60fc-477f-ab17-4beab04277d4", "info": null, "row": 9, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.3393931494239504, 48.852749817430826, 0]}}, {"type": "Feature", "properties": {"id": "e9bf1580-85bd-4e27-8c29-982266e03340", "info": null, "row": 9, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.5270365751300847, 48.87560597027667, 0]}}, {"type": "Feature", "properties": {"id": "ced8d16d-898a-4327-b0bb-890ec3b01848", "info": null, "row": 9, "col": 98}, "geometry": {"type": "Point", "coordinates": [-2.7148492835397047, 48.89815765453328, 0]}}, {"type": "Feature", "properties": {"id": "e389f2f5-c7dc-4805-920b-100ae7b72802", "info": null, "row": 9, "col": 112}, "geometry": {"type": "Point", "coordinates": [-2.902829293204231, 48.92040436270209, 0]}}, {"type": "Feature", "properties": {"id": "136c0584-decc-4704-b8ab-877648c3aec4", "info": null, "row": 9, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.0909746075564466, 48.94234559295523, 0]}}, {"type": "Feature", "properties": {"id": "755e68fd-3d47-4294-92fb-d756df4560a9", "info": null, "row": 9, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.279283215113794, 48.963980849200276, 0]}}, {"type": "Feature", "properties": {"id": "078dd16a-b8a8-4bc4-84ef-4e27b6576f38", "info": null, "row": 9, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.4677530897145097, 48.98530964114718, 0]}}, {"type": "Feature", "properties": {"id": "2cd9f40d-5b45-4293-9ec8-8738573886f3", "info": null, "row": 9, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.656382190749517, 49.00633148437322, 0]}}, {"type": "Feature", "properties": {"id": "45bdc8fd-edcf-4277-baea-d352b7dafaea", "info": null, "row": 9, "col": 182}, "geometry": {"type": "Point", "coordinates": [-3.8451684633570595, 49.027045900382134, 0]}}, {"type": "Feature", "properties": {"id": "5a3e12a7-fd03-4da0-8a41-86ae2fcd9eb5", "info": null, "row": 9, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.034109838564787, 49.04745241665646, 0]}}, {"type": "Feature", "properties": {"id": "bf17a56b-21df-4036-83f3-bf5df71a93b7", "info": null, "row": 9, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.2232042333907245, 49.06755056670483, 0]}}, {"type": "Feature", "properties": {"id": "b9eb26b7-fdfb-4526-9070-ec78b19ea7c5", "info": null, "row": 9, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.412449550948521, 49.087339890109504, 0]}}, {"type": "Feature", "properties": {"id": "41a1efcd-7320-45d8-b332-0811151f2742", "info": null, "row": 9, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.601843680638753, 49.1068199325823, 0]}}, {"type": "Feature", "properties": {"id": "f8f2a515-9e3e-40c9-8f37-ce3d057d157e", "info": null, "row": 9, "col": 252}, "geometry": {"type": "Point", "coordinates": [-4.791384498548551, 49.1259902460404, 0]}}, {"type": "Feature", "properties": {"id": "b131a469-5ea8-4e9f-a20b-a0b561e3e2cf", "info": null, "row": 18, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.4284335069567555, 48.653255127751905, 0]}}, {"type": "Feature", "properties": {"id": "ac262339-eeb4-4461-9006-c4b2437c4a44", "info": null, "row": 18, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.6149059812601256, 48.677614779378715, 0]}}, {"type": "Feature", "properties": {"id": "9eb7af0a-ffed-4c0e-98c0-3436a19580b1", "info": null, "row": 18, "col": 28}, "geometry": {"type": "Point", "coordinates": [-1.8015565310524757, 48.70167342331222, 0]}}, {"type": "Feature", "properties": {"id": "e44cb6e4-fc41-4010-8c0a-56f1ffee4fca", "info": null, "row": 18, "col": 42}, "geometry": {"type": "Point", "coordinates": [-1.9883832689968166, 48.72543052760524, 0]}}, {"type": "Feature", "properties": {"id": "c402f18f-a3ed-408a-b130-0531e8226ca4", "info": null, "row": 18, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.1753842906184584, 48.748885565443224, 0]}}, {"type": "Feature", "properties": {"id": "a65c7c8b-9231-47e7-8b27-0c5976ab4150", "info": null, "row": 18, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.3625576754828863, 48.77203801534533, 0]}}, {"type": "Feature", "properties": {"id": "f4aeade1-a8da-46a6-ad45-0a34e26d1c01", "info": null, "row": 18, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.549901487663456, 48.794887361267875, 0]}}, {"type": "Feature", "properties": {"id": "fd3f1385-667d-4839-ba32-c0e0c227f5d1", "info": null, "row": 18, "col": 98}, "geometry": {"type": "Point", "coordinates": [-2.737413775924249, 48.81743309266951, 0]}}, {"type": "Feature", "properties": {"id": "177c16ed-8549-4e76-a693-d822529f7265", "info": null, "row": 18, "col": 112}, "geometry": {"type": "Point", "coordinates": [-2.9250925738421163, 48.839674704568154, 0]}}, {"type": "Feature", "properties": {"id": "4dee110a-1796-467d-85d9-547972859eb1", "info": null, "row": 18, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.1129358999630625, 48.86161169760127, 0]}}, {"type": "Feature", "properties": {"id": "88fc11c8-82ea-41d1-8d4d-9dabb61f6625", "info": null, "row": 18, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.3009417580114517, 48.88324357809135, 0]}}, {"type": "Feature", "properties": {"id": "2cf68136-09c3-416d-92be-d3af86f912f8", "info": null, "row": 18, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.489108137129132, 48.904569858113234, 0]}}, {"type": "Feature", "properties": {"id": "0b83fe98-9435-41e4-b752-1975df77bba5", "info": null, "row": 18, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.6774330121081995, 48.925590055559056, 0]}}, {"type": "Feature", "properties": {"id": "0534bae5-e3da-46c9-8998-7b500e8f003e", "info": null, "row": 18, "col": 182}, "geometry": {"type": "Point", "coordinates": [-3.86591434358502, 48.946303694197425, 0]}}, {"type": "Feature", "properties": {"id": "3b071b87-791a-4f4d-82f2-95f201cb2df4", "info": null, "row": 18, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.054550078181613, 48.966710303725634, 0]}}, {"type": "Feature", "properties": {"id": "3918647d-3154-4f33-a3bc-29fb6b0bdc4a", "info": null, "row": 18, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.243338148606949, 48.98680941981692, 0]}}, {"type": "Feature", "properties": {"id": "cda93a36-d9e6-4ace-ab13-9e61f18642dd", "info": null, "row": 18, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.432276473765148, 49.00660058416822, 0]}}, {"type": "Feature", "properties": {"id": "387413ac-7128-4594-8c5f-ded19bdf4c02", "info": null, "row": 18, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.621362958953899, 49.02608334455681, 0]}}, {"type": "Feature", "properties": {"id": "1a13c35d-ab0f-40a1-8540-fad95d02bf45", "info": null, "row": 18, "col": 252}, "geometry": {"type": "Point", "coordinates": [-4.810595496277437, 49.04525725491735, 0]}}, {"type": "Feature", "properties": {"id": "afc15970-9caf-4035-8346-c6494bcecc8c", "info": null, "row": 27, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.4533554537485516, 48.57263128738011, 0]}}, {"type": "Feature", "properties": {"id": "ebbd722a-4368-4c9e-a0b7-6a29abdd53a2", "info": null, "row": 27, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.639535447993687, 48.596979541209194, 0]}}, {"type": "Feature", "properties": {"id": "265274d4-4d71-4fcd-bcc5-c0189e2c02b5", "info": null, "row": 27, "col": 28}, "geometry": {"type": "Point", "coordinates": [-1.8258925962551578, 48.62102761549997, 0]}}, {"type": "Feature", "properties": {"id": "6b53e690-c6a3-441b-ac5a-6db065f737d0", "info": null, "row": 27, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.012425030571956, 48.644774981941225, 0]}}, {"type": "Feature", "properties": {"id": "0c52d6f2-2189-400c-98fa-dfbe759bd8f1", "info": null, "row": 27, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.1991308652136223, 48.66822111717876, 0]}}, {"type": "Feature", "properties": {"id": "905f3765-8121-4416-bacb-2f59aa10d948", "info": null, "row": 27, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.3860081979919223, 48.691365503039336, 0]}}, {"type": "Feature", "properties": {"id": "9992ffc4-20eb-49c7-ab1f-1dead3b20f30", "info": null, "row": 27, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.5730551108315094, 48.7142076266519, 0]}}, {"type": "Feature", "properties": {"id": "7be31f30-5122-4ae0-95e4-1311c96f7519", "info": null, "row": 27, "col": 98}, "geometry": {"type": "Point", "coordinates": [-2.760269670032871, 48.73674698052664, 0]}}, {"type": "Feature", "properties": {"id": "5b48c0b8-baf3-4cd6-a34a-bacffd3178aa", "info": null, "row": 27, "col": 112}, "geometry": {"type": "Point", "coordinates": [-2.947649926457774, 48.758983062622974, 0]}}, {"type": "Feature", "properties": {"id": "58ad8df4-75a8-4ae6-8c59-812217f8c7f9", "info": null, "row": 27, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.1351939157369033, 48.78091537641879, 0]}}, {"type": "Feature", "properties": {"id": "d714035a-f260-498d-80ac-5996a24b2625", "info": null, "row": 27, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.322899658521578, 48.80254343098334, 0]}}, {"type": "Feature", "properties": {"id": "35648576-c797-4826-8432-142530451f56", "info": null, "row": 27, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.510765160759146, 48.82386674105091, 0]}}, {"type": "Feature", "properties": {"id": "19076c10-e7e9-4f35-a5c6-b6bcd5e26fbb", "info": null, "row": 27, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.6987884139573306, 48.84488482709119, 0]}}, {"type": "Feature", "properties": {"id": "57aa2315-aa4d-4c66-ad53-3eb69d59d68c", "info": null, "row": 27, "col": 182}, "geometry": {"type": "Point", "coordinates": [-3.886967395406028, 48.86559721537303, 0]}}, {"type": "Feature", "properties": {"id": "4ebadd6d-2487-4d07-af05-30ef407b979e", "info": null, "row": 27, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.075300068342979, 48.88600343802057, 0]}}, {"type": "Feature", "properties": {"id": "d29fbf02-17f7-4966-906c-635552b7bdca", "info": null, "row": 27, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.2637843820756185, 48.90610303306391, 0]}}, {"type": "Feature", "properties": {"id": "e2469775-94e7-43be-ab16-a28c0469334b", "info": null, "row": 27, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.452418272105131, 48.925895544489315, 0]}}, {"type": "Feature", "properties": {"id": "faa3be42-d9f7-47ef-9c2b-dd05160d2eea", "info": null, "row": 27, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.641199660334968, 48.94538052229779, 0]}}, {"type": "Feature", "properties": {"id": "c40020a1-e253-4a87-bf1b-a4b685247a02", "info": null, "row": 27, "col": 252}, "geometry": {"type": "Point", "coordinates": [-4.830126455486331, 48.9645575225831, 0]}}, {"type": "Feature", "properties": {"id": "f4f69513-4497-49f7-8d65-58dec6ba8613", "info": null, "row": 36, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.478333545207412, 48.492015953736534, 0]}}, {"type": "Feature", "properties": {"id": "80946ee5-0c10-45cd-9738-71a1305baf54", "info": null, "row": 36, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.6642216533663332, 48.516352735414884, 0]}}, {"type": "Feature", "properties": {"id": "2d5cf4e5-4daf-4128-80de-688fd29c2ae2", "info": null, "row": 36, "col": 28}, "geometry": {"type": "Point", "coordinates": [-1.8502859856766787, 48.54039016312787, 0]}}, {"type": "Feature", "properties": {"id": "8c234c19-981d-4a36-948e-6b3081bd7030", "info": null, "row": 36, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.0365246945067246, 48.56412771237334, 0]}}, {"type": "Feature", "properties": {"id": "bfd33306-85b3-4950-88e2-6135f38cde7c", "info": null, "row": 36, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.2229359136873232, 48.5875648634067, 0]}}, {"type": "Feature", "properties": {"id": "ffd4b9b1-3f90-4de3-a7ed-ba2090d62ba5", "info": null, "row": 36, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.409517759982614, 48.61070110149211, 0]}}, {"type": "Feature", "properties": {"id": "2d325d92-1179-453c-8c38-65365ba3ab24", "info": null, "row": 36, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.596268333782058, 48.633535917044625, 0]}}, {"type": "Feature", "properties": {"id": "8c8b7b48-524f-46da-808b-579c5be21dd5", "info": null, "row": 36, "col": 98}, "geometry": {"type": "Point", "coordinates": [-2.7831857194571876, 48.65606880572564, 0]}}, {"type": "Feature", "properties": {"id": "129adba6-dd98-4422-a980-8915d0839a74", "info": null, "row": 36, "col": 112}, "geometry": {"type": "Point", "coordinates": [-2.970267985621122, 48.678299268523745, 0]}}, {"type": "Feature", "properties": {"id": "27a8d8b8-2137-45f9-86e3-17c4f1722dfc", "info": null, "row": 36, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.1575131853962035, 48.7002268118347, 0]}}, {"type": "Feature", "properties": {"id": "b41da58d-0059-4960-b17e-02a075964228", "info": null, "row": 36, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.3449193567157804, 48.72185094754306, 0]}}, {"type": "Feature", "properties": {"id": "52aa81b2-f244-4310-8339-f25233b68dec", "info": null, "row": 36, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.532484522642741, 48.74317119310339, 0]}}, {"type": "Feature", "properties": {"id": "8530f62a-52cb-4715-8bcb-af14324b3f0b", "info": null, "row": 36, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.720206691671783, 48.764187071617094, 0]}}, {"type": "Feature", "properties": {"id": "8c4e11c5-d21d-41ce-b60a-f47c40afe8e5", "info": null, "row": 36, "col": 182}, "geometry": {"type": "Point", "coordinates": [-3.908083857984851, 48.78489811190185, 0]}}, {"type": "Feature", "properties": {"id": "1cb5dbca-cf07-45fd-8f15-8393c19ee142", "info": null, "row": 36, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.096114001646248, 48.80530384855248, 0]}}, {"type": "Feature", "properties": {"id": "3c5a9ac8-4502-44b5-9d62-eaa1cd7b5b0d", "info": null, "row": 36, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.284295088749216, 48.82540382199558, 0]}}, {"type": "Feature", "properties": {"id": "541f184a-33cb-419d-97ab-84e5bd88dd69", "info": null, "row": 36, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.4726250715585145, 48.84519757854285, 0]}}, {"type": "Feature", "properties": {"id": "b307bdf9-5032-4f9b-9726-bac142cb4737", "info": null, "row": 36, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.661101888729647, 48.86468467045169, 0]}}, {"type": "Feature", "properties": {"id": "a27eef05-3b07-4cf6-9ddd-f01f5a4701da", "info": null, "row": 36, "col": 252}, "geometry": {"type": "Point", "coordinates": [-4.849723465724611, 48.88386465600417, 0]}}, {"type": "Feature", "properties": {"id": "6ac035f8-2155-4d53-8ae9-dae6676d5d3a", "info": null, "row": 45, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.503221060683413, 48.41139285613031, 0]}}, {"type": "Feature", "properties": {"id": "fcd0413f-155b-455a-b756-79697884582b", "info": null, "row": 45, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.6888181883730733, 48.43571825502709, 0]}}, {"type": "Feature", "properties": {"id": "b57caddd-212a-425c-98fd-853d06ff2618", "info": null, "row": 45, "col": 28}, "geometry": {"type": "Point", "coordinates": [-1.8745906732650994, 48.459745131883494, 0]}}, {"type": "Feature", "properties": {"id": "99d4a01a-cfbd-45a1-8ab5-db2282d7a19f", "info": null, "row": 45, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.0605366822725553, 48.4834729649792, 0]}}, {"type": "Feature", "properties": {"id": "e46632be-3096-426d-8823-c789dd21eca9", "info": null, "row": 45, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.246654363779188, 48.50690123728892, 0]}}, {"type": "Feature", "properties": {"id": "4f3a1a95-6a20-44a8-88f4-69e1183b5e51", "info": null, "row": 45, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.432941849122237, 48.53002943673602, 0]}}, {"type": "Feature", "properties": {"id": "f71e8fc1-86f4-4c16-9398-20cef462a203", "info": null, "row": 45, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.619397253297764, 48.55285705633695, 0]}}, {"type": "Feature", "properties": {"id": "89dc3cc8-440e-40f2-bcd4-48d655f27218", "info": null, "row": 45, "col": 98}, "geometry": {"type": "Point", "coordinates": [-2.8060186753301397, 48.57538359429873, 0]}}, {"type": "Feature", "properties": {"id": "f7a59e96-5b00-4175-95b2-fbdf5110781b", "info": null, "row": 45, "col": 112}, "geometry": {"type": "Point", "coordinates": [-2.992804198542971, 48.597608554101676, 0]}}, {"type": "Feature", "properties": {"id": "8beb027f-d70f-494a-ac4c-efc15a03bacf", "info": null, "row": 45, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.179751890836424, 48.61953144458071, 0]}}, {"type": "Feature", "properties": {"id": "7963a63f-bef1-4ba9-9404-29774ed8faee", "info": null, "row": 45, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.366859804996805, 48.64115178000813, 0]}}, {"type": "Feature", "properties": {"id": "823f96de-824d-4d5c-b2a1-064c856c8e84", "info": null, "row": 45, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.554125979021208, 48.662469080175775, 0]}}, {"type": "Feature", "properties": {"id": "0180e447-61ea-492d-b588-51fa2b91f6d4", "info": null, "row": 45, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.7415484364243166, 48.68348287047237, 0]}}, {"type": "Feature", "properties": {"id": "0df20495-f32c-43ad-88fa-df243afad761", "info": null, "row": 45, "col": 182}, "geometry": {"type": "Point", "coordinates": [-3.9291251864972248, 48.704192681953415, 0]}}, {"type": "Feature", "properties": {"id": "b2dd9df8-0839-458f-865d-896da1eba26e", "info": null, "row": 45, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.116854224505071, 48.72459805140232, 0]}}, {"type": "Feature", "properties": {"id": "12a91cd9-0884-4695-8198-f911de90a5e5", "info": null, "row": 45, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.304733531835649, 48.74469852138529, 0]}}, {"type": "Feature", "properties": {"id": "28f39df4-680d-4ac1-abac-c4a3719a6cbb", "info": null, "row": 45, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.492761076143875, 48.76449364030473, 0]}}, {"type": "Feature", "properties": {"id": "05218a7b-1a13-43ce-8ae4-d041e72f779d", "info": null, "row": 45, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.68093481157309, 48.783982962460016, 0]}}, {"type": "Feature", "properties": {"id": "399825d8-08ba-4a3a-9d4d-d509f1c913c6", "info": null, "row": 45, "col": 252}, "geometry": {"type": "Point", "coordinates": [-4.869252679173364, 48.80316604812666, 0]}}, {"type": "Feature", "properties": {"id": "e1be4f28-e8f9-4cdb-aaa5-e6a3c01cbffe", "info": null, "row": 54, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.5280490262038318, 48.33076465404038, 0]}}, {"type": "Feature", "properties": {"id": "ce025e9c-e740-4eb4-ad28-26a62d2d27e4", "info": null, "row": 54, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.7133557688298529, 48.3550787289121, 0]}}, {"type": "Feature", "properties": {"id": "49723ead-3918-4c8a-8a85-da9cc1a9cf00", "info": null, "row": 54, "col": 28}, "geometry": {"type": "Point", "coordinates": [-1.898837043073747, 48.379095117844635, 0]}}, {"type": "Feature", "properties": {"id": "3afffbaf-dc2a-4b1d-a92f-c652859f91c2", "info": null, "row": 54, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.0844910265903005, 48.40281330122415, 0]}}, {"type": "Feature", "properties": {"id": "e079a26a-4b4d-423f-975a-1b74b98390ca", "info": null, "row": 54, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.270315879023327, 48.42623276415932, 0]}}, {"type": "Feature", "properties": {"id": "73deb75c-641c-4d85-bde6-ea4e1f526b42", "info": null, "row": 54, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.4563097434039762, 48.44935299672109, 0]}}, {"type": "Feature", "properties": {"id": "2fe44da1-2b15-4108-8a05-b3717d9e5472", "info": null, "row": 54, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.6424707467982964, 48.47217349407707, 0]}}, {"type": "Feature", "properties": {"id": "91a5a95e-0ea3-4b64-b094-85cbd7eb9c6a", "info": null, "row": 54, "col": 98}, "geometry": {"type": "Point", "coordinates": [-2.8287970006361722, 48.49469375658188, 0]}}, {"type": "Feature", "properties": {"id": "ec94c695-2e75-45dc-8719-5939b146afcc", "info": null, "row": 54, "col": 112}, "geometry": {"type": "Point", "coordinates": [-3.015286600952453, 48.51691328985409, 0]}}, {"type": "Feature", "properties": {"id": "ff177bd8-5aa8-4cc7-a230-ec13512c8126", "info": null, "row": 54, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.201937628640895, 48.538831604853115, 0]}}, {"type": "Feature", "properties": {"id": "df286909-0cd3-4862-be50-03a3040fc932", "info": null, "row": 54, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.3887481497437517, 48.56044821795793, 0]}}, {"type": "Feature", "properties": {"id": "91eeabf4-1700-4ae7-b957-32eb500179a3", "info": null, "row": 54, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.5757162157581828, 48.58176265104578, 0]}}, {"type": "Feature", "properties": {"id": "762f2be6-6926-4c0f-b270-01ed2a813ac4", "info": null, "row": 54, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.7628398639256444, 48.6027744315663, 0]}}, {"type": "Feature", "properties": {"id": "f5043f00-b718-409c-b98b-e0e11ff235f7", "info": null, "row": 54, "col": 182}, "geometry": {"type": "Point", "coordinates": [-3.9501171174741985, 48.623483092608325, 0]}}, {"type": "Feature", "properties": {"id": "df21b5e5-9ea7-4b3f-87ee-d504d030a428", "info": null, "row": 54, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.1375459858009735, 48.64388817295844, 0]}}, {"type": "Feature", "properties": {"id": "c24dcc3e-8e7c-4b71-92b5-8650b5b26459", "info": null, "row": 54, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.3251244646078675, 48.663989217153485, 0]}}, {"type": "Feature", "properties": {"id": "0b98a0e2-6a01-4891-9114-c32971e3e39d", "info": null, "row": 54, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.512850536036997, 48.68378577553231, 0]}}, {"type": "Feature", "properties": {"id": "948b851e-822d-462d-a98d-30fa4b7723b7", "info": null, "row": 54, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.700722168888375, 48.703277404295264, 0]}}, {"type": "Feature", "properties": {"id": "bfef2793-efb8-4a9a-93f2-378b97997371", "info": null, "row": 54, "col": 252}, "geometry": {"type": "Point", "coordinates": [-4.888737319042264, 48.72246366558324, 0]}}, {"type": "Feature", "properties": {"id": "93df26f6-a920-4d1c-88d6-80d567a64c28", "info": null, "row": 63, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.5528565612545324, 48.250136190486344, 0]}}, {"type": "Feature", "properties": {"id": "273345a0-6648-4f18-93e7-b456d8c15be8", "info": null, "row": 63, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.737873731776692, 48.274438963093615, 0]}}, {"type": "Feature", "properties": {"id": "fac1babc-d009-4b4f-98a8-6a3895aff098", "info": null, "row": 63, "col": 28}, "geometry": {"type": "Point", "coordinates": [-1.9230646280890102, 48.29844488654256, 0]}}, {"type": "Feature", "properties": {"id": "75be998e-1022-4c68-a7f2-e7d4e7936345", "info": null, "row": 63, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.108427436955674, 48.322153443035106, 0]}}, {"type": "Feature", "properties": {"id": "5a5b6fe7-82eb-47c8-bb42-8dc42229e2c2", "info": null, "row": 63, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.293960327833535, 48.34556411955768, 0]}}, {"type": "Feature", "properties": {"id": "a8b21e70-17ee-4a10-8bc8-ee727e2f9071", "info": null, "row": 63, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.4796614541699737, 48.36867640810333, 0]}}, {"type": "Feature", "properties": {"id": "8891e386-909c-43e8-9c73-f38388e86da4", "info": null, "row": 63, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.6655289539726073, 48.39148980579241, 0]}}, {"type": "Feature", "properties": {"id": "808d703d-710c-4409-a4f0-c44271780153", "info": null, "row": 63, "col": 98}, "geometry": {"type": "Point", "coordinates": [-2.851560950076607, 48.41400381495165, 0]}}, {"type": "Feature", "properties": {"id": "beb68d98-b250-4bc1-917b-045b7527b377", "info": null, "row": 63, "col": 112}, "geometry": {"type": "Point", "coordinates": [-3.037755550336041, 48.436217943182086, 0]}}, {"type": "Feature", "properties": {"id": "20f39838-ed3a-40e5-b99b-2cffad8731b4", "info": null, "row": 63, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.2241108478367284, 48.45813170342828, 0]}}, {"type": "Feature", "properties": {"id": "c73f8c5b-697b-424e-8197-93db66a175f7", "info": null, "row": 63, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.410624921151156, 48.479744614050745, 0]}}, {"type": "Feature", "properties": {"id": "62a26cf5-691a-4814-9862-361427f878cb", "info": null, "row": 63, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.597295834615219, 48.50105619889903, 0]}}, {"type": "Feature", "properties": {"id": "88e78869-5610-42ef-9793-b5b68af274a7", "info": null, "row": 63, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.7841216385918224, 48.52206598738121, 0]}}, {"type": "Feature", "properties": {"id": "9efcacf5-7b5a-444c-b285-4bd0d7695b83", "info": null, "row": 63, "col": 182}, "geometry": {"type": "Point", "coordinates": [-3.971100369690783, 48.54277351452644, 0]}}, {"type": "Feature", "properties": {"id": "f1c843b2-a6e3-4474-a5ac-6daf3a62f239", "info": null, "row": 63, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.158230050931787, 48.56317832104002, 0]}}, {"type": "Feature", "properties": {"id": "6c0ba10a-a5b1-4ebf-bad6-a0014f2c3950", "info": null, "row": 63, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.345508691863395, 48.58327995335281, 0]}}, {"type": "Feature", "properties": {"id": "fbfece22-95fe-4add-a842-515c83fc86a6", "info": null, "row": 63, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.532934288684622, 48.60307796367014, 0]}}, {"type": "Feature", "properties": {"id": "60148366-e0e2-421d-bf26-57a8b9f0eb56", "info": null, "row": 63, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.720504824451578, 48.62257191002938, 0]}}, {"type": "Feature", "properties": {"id": "3efff743-6247-4fb5-b695-ae326ce4770f", "info": null, "row": 63, "col": 252}, "geometry": {"type": "Point", "coordinates": [-4.9082182694917496, 48.64176135637695, 0]}}, {"type": "Feature", "properties": {"id": "40d66fc4-2f06-42ba-b864-5d278909385d", "info": null, "row": 72, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.577630446119815, 48.16950729628552, 0]}}, {"type": "Feature", "properties": {"id": "be452101-d357-4df2-b2d5-4c489e4d5067", "info": null, "row": 72, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.762359383530688, 48.19379880246937, 0]}}, {"type": "Feature", "properties": {"id": "d0a60bac-723f-4a82-b899-c1e2731e4a97", "info": null, "row": 72, "col": 28}, "geometry": {"type": "Point", "coordinates": [-1.9472612734445829, 48.21779429739517, 0]}}, {"type": "Feature", "properties": {"id": "2b9ef715-ad50-4f1e-b0b3-069a49a51c90", "info": null, "row": 72, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.1323343090465534, 48.24149326460186, 0]}}, {"type": "Feature", "properties": {"id": "62e04e80-8be0-4fc1-9eec-294c5bd6a903", "info": null, "row": 72, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.3175766672231535, 48.26489519253146, 0]}}, {"type": "Feature", "properties": {"id": "bd4295ca-81f2-4b6c-878d-d946e62e75a8", "info": null, "row": 72, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.5029865097335735, 48.28799957472798, 0]}}, {"type": "Feature", "properties": {"id": "e20ffa30-c57c-4822-b107-1939a56686e6", "info": null, "row": 72, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.688561983668434, 48.310805909937514, 0]}}, {"type": "Feature", "properties": {"id": "f7cef3dd-0bd9-4432-8905-dcb3a88935b9", "info": null, "row": 72, "col": 98}, "geometry": {"type": "Point", "coordinates": [-2.874301221620761, 48.33331370216997, 0]}}, {"type": "Feature", "properties": {"id": "946e846f-c404-42e9-a4bf-91eec1d27485", "info": null, "row": 72, "col": 112}, "geometry": {"type": "Point", "coordinates": [-3.0602023417946285, 48.35552246075217, 0]}}, {"type": "Feature", "properties": {"id": "a8a572e4-804b-4687-884c-cebd78d099e4", "info": null, "row": 72, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.2462634481477473, 48.37743170038445, 0]}}, {"type": "Feature", "properties": {"id": "cfa0a32f-b1cc-4451-a128-e970cacfb432", "info": null, "row": 72, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.432482630587549, 48.39904094120263, 0]}}, {"type": "Feature", "properties": {"id": "b2a5d1b5-5501-4f7f-a549-e52418dc8069", "info": null, "row": 72, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.618857965199415, 48.42034970884232, 0]}}, {"type": "Feature", "properties": {"id": "444751ac-3e18-4ec4-a234-51ed687af910", "info": null, "row": 72, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.8053875144706977, 48.44135753450122, 0]}}, {"type": "Feature", "properties": {"id": "bd175c9c-aa28-4241-adc7-ebd53de9a58c", "info": null, "row": 72, "col": 182}, "geometry": {"type": "Point", "coordinates": [-3.9920693274784895, 48.462063954995685, 0]}}, {"type": "Feature", "properties": {"id": "ade90a80-333d-43f7-af89-d4ce3c86d515", "info": null, "row": 72, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.178901440025987, 48.48246851281064, 0]}}, {"type": "Feature", "properties": {"id": "88d0d6e3-a88b-4c38-b229-e911d37bf3a6", "info": null, "row": 72, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.365881874738486, 48.502570756144536, 0]}}, {"type": "Feature", "properties": {"id": "76e8f2cc-ae30-4438-8755-2902d3f6e772", "info": null, "row": 72, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.553008641163192, 48.52237023895428, 0]}}, {"type": "Feature", "properties": {"id": "6947d12b-a42a-40e2-bfbd-108e86e36512", "info": null, "row": 72, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.740279735952527, 48.541866521008686, 0]}}, {"type": "Feature", "properties": {"id": "8471a33e-e140-451c-b099-2a50eb3cdf70", "info": null, "row": 72, "col": 252}, "geometry": {"type": "Point", "coordinates": [-4.927693143250436, 48.561059167961275, 0]}}, {"type": "Feature", "properties": {"id": "e163eb68-66a9-4ac1-a453-0421f4760a82", "info": null, "row": 81, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.6022713406025415, 48.08886180670029, 0]}}, {"type": "Feature", "properties": {"id": "76747320-c8a3-4ca4-a648-4dbd7ed3a02f", "info": null, "row": 81, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.786712673064862, 48.11314231010825, 0]}}, {"type": "Feature", "properties": {"id": "b1b34989-cbe2-46c3-a4f2-a354db35211a", "info": null, "row": 81, "col": 28}, "geometry": {"type": "Point", "coordinates": [-1.9713261756158698, 48.13712763698509, 0]}}, {"type": "Feature", "properties": {"id": "90428220-cc9d-49cb-ba8c-470272917ac6", "info": null, "row": 81, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.1561100490967364, 48.160817272421795, 0]}}, {"type": "Feature", "properties": {"id": "a187a4b4-f5bf-44c6-9cd8-42c075a910bc", "info": null, "row": 81, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.3410624788992713, 48.184210706502505, 0]}}, {"type": "Feature", "properties": {"id": "b610fc6d-3a87-45b1-8b95-becfc4744171", "info": null, "row": 81, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.5261816360298353, 48.207307434483646, 0]}}, {"type": "Feature", "properties": {"id": "f05a77bd-d9d6-4eac-8e65-acd61b63bd32", "info": null, "row": 81, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.711465677475985, 48.23010695687733, 0]}}, {"type": "Feature", "properties": {"id": "b7a103d9-2632-4dea-9078-0beb43e7383e", "info": null, "row": 81, "col": 98}, "geometry": {"type": "Point", "coordinates": [-2.8969127462983604, 48.252608779498615, 0]}}, {"type": "Feature", "properties": {"id": "57a0695d-9564-428a-aabd-1cc63d719177", "info": null, "row": 81, "col": 112}, "geometry": {"type": "Point", "coordinates": [-3.082520971672023, 48.27481241350662, 0]}}, {"type": "Feature", "properties": {"id": "964dfd13-887d-4e06-ae39-658e049ef437", "info": null, "row": 81, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.2682884689721123, 48.29671737545073, 0]}}, {"type": "Feature", "properties": {"id": "2a868bbf-a771-4dcd-adda-4391d77a7cb9", "info": null, "row": 81, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.4542133399222683, 48.3183231873241, 0]}}, {"type": "Feature", "properties": {"id": "cdcb7b7d-6bde-46ca-a887-608e584f20ec", "info": null, "row": 81, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.640293672783452, 48.33962937662079, 0]}}, {"type": "Feature", "properties": {"id": "15dbb6e8-a64b-4668-88df-def865c62ea7", "info": null, "row": 81, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.8265275425456515, 48.360635476392105, 0]}}, {"type": "Feature", "properties": {"id": "a858c1ce-1d72-4a93-aa95-e8c4f978e696", "info": null, "row": 81, "col": 182}, "geometry": {"type": "Point", "coordinates": [-4.012913011089145, 48.38134102529823, 0]}}, {"type": "Feature", "properties": {"id": "69d1a80c-b3df-4d23-a2f3-4ca551c9e9fb", "info": null, "row": 81, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.199448127298754, 48.40174556765387, 0]}}, {"type": "Feature", "properties": {"id": "7954042b-f821-41f0-a6b2-40d9df377cfd", "info": null, "row": 81, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.386130927140606, 48.42184865346945, 0]}}, {"type": "Feature", "properties": {"id": "a342c8d6-8d43-42fd-b3f2-01d815ffaa9f", "info": null, "row": 81, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.57295943374379, 48.441649838492715, 0]}}, {"type": "Feature", "properties": {"id": "4eb1b4fa-c8b9-4c29-ba75-e750bca2a233", "info": null, "row": 81, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.759931657564518, 48.46114868425873, 0]}}, {"type": "Feature", "properties": {"id": "b2a0c8ff-ea78-4d12-9903-372980a0005c", "info": null, "row": 81, "col": 252}, "geometry": {"type": "Point", "coordinates": [-4.947045596749968, 48.480344758159404, 0]}}, {"type": "Feature", "properties": {"id": "9e83a581-fc90-46bd-a653-27e024fb31c6", "info": null, "row": 90, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.6261715660203757, 48.008123891725816, 0]}}, {"type": "Feature", "properties": {"id": "514c9c89-a237-4408-adf4-3bbb9c0a84af", "info": null, "row": 90, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.810328791987907, 48.03239486070158, 0]}}, {"type": "Feature", "properties": {"id": "7198729a-2cf0-431b-bb26-ce04b76ed66f", "info": null, "row": 90, "col": 28}, "geometry": {"type": "Point", "coordinates": [-1.9946573547973039, 48.05637147019957, 0]}}, {"type": "Feature", "properties": {"id": "ab808b07-65ef-46d9-bdfd-e8d11bce347d", "info": null, "row": 90, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.179155469825379, 48.080053208060676, 0]}}, {"type": "Feature", "properties": {"id": "e0edcbb4-8956-46b7-a722-09c9139b7f15", "info": null, "row": 90, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.363821336959326, 48.103439567049435, 0]}}, {"type": "Feature", "properties": {"id": "51e6b765-d52b-4e13-a26d-6eec8ae09b76", "info": null, "row": 90, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.548653141662023, 48.1265300450346, 0]}}, {"type": "Feature", "properties": {"id": "9fa6c969-cf14-4341-981f-e4751ed1809f", "info": null, "row": 90, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.7336490553510284, 48.14932414507523, 0]}}, {"type": "Feature", "properties": {"id": "93b4c25d-2a6d-4385-aeda-c5dc84b37e36", "info": null, "row": 90, "col": 98}, "geometry": {"type": "Point", "coordinates": [-2.9188072355074848, 48.17182137547097, 0]}}, {"type": "Feature", "properties": {"id": "0b103410-4962-4443-9b7f-86aa8309df18", "info": null, "row": 90, "col": 112}, "geometry": {"type": "Point", "coordinates": [-3.104125825735917, 48.194021249806184, 0]}}, {"type": "Feature", "properties": {"id": "234ccae7-07f2-4105-bd47-308deb97a91c", "info": null, "row": 90, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.2896029558671662, 48.2159232869989, 0]}}, {"type": "Feature", "properties": {"id": "237459ea-7d87-4267-9c6a-108a599618ba", "info": null, "row": 90, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.4752367421213863, 48.23752701135649, 0]}}, {"type": "Feature", "properties": {"id": "2bb3f4db-1f0c-45fe-8f79-2bc822e8ec31", "info": null, "row": 90, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.6610252873082096, 48.25883195263455, 0]}}, {"type": "Feature", "properties": {"id": "4c927052-3330-4b58-90d7-f139d59690c7", "info": null, "row": 90, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.846966681026503, 48.279837646094414, 0]}}, {"type": "Feature", "properties": {"id": "dba60539-53e7-4b6b-84a0-9d89914fb900", "info": null, "row": 90, "col": 182}, "geometry": {"type": "Point", "coordinates": [-4.0330589998305255, 48.30054363255553, 0]}}, {"type": "Feature", "properties": {"id": "ae1eeeb0-3e21-46c0-a113-15653d833dd2", "info": null, "row": 90, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.21930030734705, 48.32094945844167, 0]}}, {"type": "Feature", "properties": {"id": "2b448fe3-2af9-4601-83c9-b47f8638ca6a", "info": null, "row": 90, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.4056886543538365, 48.34105467582232, 0]}}, {"type": "Feature", "properties": {"id": "0600aa8f-5eb2-4c88-86e4-aeae9e1c391f", "info": null, "row": 90, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.592222078863424, 48.36085884245469, 0]}}, {"type": "Feature", "properties": {"id": "d7e64f3b-fb2c-49af-8ec9-0f93969e0c25", "info": null, "row": 90, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.77889860629129, 48.38036152183423, 0]}}, {"type": "Feature", "properties": {"id": "b9c197b5-8820-4531-afe4-b92f498c17c2", "info": null, "row": 90, "col": 252}, "geometry": {"type": "Point", "coordinates": [-4.965716249828073, 48.399562283265034, 0]}}, {"type": "Feature", "properties": {"id": "f257eea5-2744-4d97-b604-796e184d1ae5", "info": null, "row": 99, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.6500717914382097, 47.927385976751346, 0]}}, {"type": "Feature", "properties": {"id": "a5e0d32f-d84d-4f84-8f7a-6c4155035c27", "info": null, "row": 99, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.8339449109109522, 47.951647411294914, 0]}}, {"type": "Feature", "properties": {"id": "6d495d64-18ca-4c0b-8444-cd9e4074dd23", "info": null, "row": 99, "col": 28}, "geometry": {"type": "Point", "coordinates": [-2.017988533978738, 47.97561530341405, 0]}}, {"type": "Feature", "properties": {"id": "d320e13b-8dad-435e-a4c0-59055ba510c0", "info": null, "row": 99, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.202200890554022, 47.999289143699556, 0]}}, {"type": "Feature", "properties": {"id": "37c48ecb-4acd-454a-aeed-b08d7acbdc38", "info": null, "row": 99, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.38658019501938, 48.02266842759637, 0]}}, {"type": "Feature", "properties": {"id": "2c53e76f-ffaa-4da1-9e09-c0ce6af40e88", "info": null, "row": 99, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.57112464729421, 48.045752655585545, 0]}}, {"type": "Feature", "properties": {"id": "90362e2f-f566-4428-960a-8ec0c923fd70", "info": null, "row": 99, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.7558324332260717, 48.06854133327312, 0]}}, {"type": "Feature", "properties": {"id": "c9ff53bb-016d-4e6a-9488-03749c9040ca", "info": null, "row": 99, "col": 98}, "geometry": {"type": "Point", "coordinates": [-2.940701724716609, 48.09103397144332, 0]}}, {"type": "Feature", "properties": {"id": "9ae85e2c-2da8-4a64-bfc7-e4c819b9b6ab", "info": null, "row": 99, "col": 112}, "geometry": {"type": "Point", "coordinates": [-3.1257306797998115, 48.11323008610574, 0]}}, {"type": "Feature", "properties": {"id": "fbebe33f-364c-48d7-bee2-06b4de90b1ef", "info": null, "row": 99, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.310917442762219, 48.13512919854706, 0]}}, {"type": "Feature", "properties": {"id": "294ad6ad-31ae-46d4-ae30-5466d8f9b93c", "info": null, "row": 99, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.496260144320504, 48.156730835388885, 0]}}, {"type": "Feature", "properties": {"id": "0cb3404b-948e-42d4-843d-e6ef1913450e", "info": null, "row": 99, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.6817569018329666, 48.17803452864832, 0]}}, {"type": "Feature", "properties": {"id": "11150b88-b640-4343-98f1-4b56538760b4", "info": null, "row": 99, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.867405819507354, 48.199039815796716, 0]}}, {"type": "Feature", "properties": {"id": "c70f0109-b893-4c3b-a903-405b8758f761", "info": null, "row": 99, "col": 182}, "geometry": {"type": "Point", "coordinates": [-4.053204988571907, 48.21974623981284, 0]}}, {"type": "Feature", "properties": {"id": "a641a2ec-aa9d-4c6c-90a7-5d65b9fab428", "info": null, "row": 99, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.239152487395346, 48.24015334922946, 0]}}, {"type": "Feature", "properties": {"id": "cdd6d893-8c86-415a-8f13-dfb1ab7765df", "info": null, "row": 99, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.425246381567069, 48.26026069817517, 0]}}, {"type": "Feature", "properties": {"id": "8e02264e-85d4-4293-8f9d-397420f3130b", "info": null, "row": 99, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.611484723983057, 48.28006784641666, 0]}}, {"type": "Feature", "properties": {"id": "596a6916-6690-4188-a29b-69db85b0d002", "info": null, "row": 99, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.797865555018062, 48.29957435940973, 0]}}, {"type": "Feature", "properties": {"id": "3d288412-e3cf-4cd5-99ab-136b1dcc5b01", "info": null, "row": 99, "col": 252}, "geometry": {"type": "Point", "coordinates": [-4.984386902906177, 48.31877980837068, 0]}}, {"type": "Feature", "properties": {"id": "6b9c4ba9-2791-44de-b942-873033d4d049", "info": null, "row": 108, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.673942902248327, 47.84664987639568, 0]}}, {"type": "Feature", "properties": {"id": "5fd67f13-e0f0-45b1-914a-f749a5f417b0", "info": null, "row": 108, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.8575341517555741, 47.87090183742014, 0]}}, {"type": "Feature", "properties": {"id": "a44c3d09-45dc-4cb1-adb4-19a36471e198", "info": null, "row": 108, "col": 28}, "geometry": {"type": "Point", "coordinates": [-2.0412950979378337, 47.89486107107784, 0]}}, {"type": "Feature", "properties": {"id": "142a1f47-1d4c-4ccc-876a-b7ab7536999b", "info": null, "row": 108, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.2252239834537075, 47.918527070391875, 0]}}, {"type": "Feature", "properties": {"id": "3ebf37ef-510c-4fd9-b43c-c31f83f5420d", "info": null, "row": 108, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.4093190355474303, 47.94189933320149, 0]}}, {"type": "Feature", "properties": {"id": "1fb23714-062f-4041-8814-458e4baf4a71", "info": null, "row": 108, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.593578467124266, 47.96497736234504, 0]}}, {"type": "Feature", "properties": {"id": "9eed7a0e-d935-40c6-a719-a51ffa5e9779", "info": null, "row": 108, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.77800047714495, 47.98776066574887, 0]}}, {"type": "Feature", "properties": {"id": "b59f0f7f-a6ff-4a86-b51d-20b06aed15c3", "info": null, "row": 108, "col": 98}, "geometry": {"type": "Point", "coordinates": [-2.9625832507518366, 48.01024875648035, 0]}}, {"type": "Feature", "properties": {"id": "c4df7603-8269-4f8c-b1e8-b8188d479712", "info": null, "row": 108, "col": 112}, "geometry": {"type": "Point", "coordinates": [-3.147324959345206, 48.032441152794355, 0]}}, {"type": "Feature", "properties": {"id": "9a170f7d-539b-4e0b-9aba-55d70de5035b", "info": null, "row": 108, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.3322237607008764, 48.05433737818436, 0]}}, {"type": "Feature", "properties": {"id": "55504bb2-988f-4530-bbcc-4e1040a942ad", "info": null, "row": 108, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.517277799145311, 48.075936961439666, 0]}}, {"type": "Feature", "properties": {"id": "59e29cb2-139d-4bd4-84ca-b7fbb768cdd6", "info": null, "row": 108, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.70248520576507, 48.09723943670548, 0]}}, {"type": "Feature", "properties": {"id": "72d5c6c4-4f16-4cd5-a2ba-e48fd7d3c28c", "info": null, "row": 108, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.887844098612983, 48.11824434354117, 0]}}, {"type": "Feature", "properties": {"id": "88d88eee-6cf2-481e-8fac-ee79e4fd5ab7", "info": null, "row": 108, "col": 182}, "geometry": {"type": "Point", "coordinates": [-4.073352582878117, 48.13895122697303, 0]}}, {"type": "Feature", "properties": {"id": "53ac0cb8-c354-4376-b748-3900b608dde9", "info": null, "row": 108, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.259008751004541, 48.159359637540454, 0]}}, {"type": "Feature", "properties": {"id": "23543483-03e8-46e8-a5eb-2f52fbee944f", "info": null, "row": 108, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.444810682769728, 48.17946913133727, 0]}}, {"type": "Feature", "properties": {"id": "377713e2-428d-4f5b-a839-b09ca3f811be", "info": null, "row": 108, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.630756445366806, 48.19927927005335, 0]}}, {"type": "Feature", "properties": {"id": "3a1ec260-8f28-43f5-b20d-57c60ba5e81b", "info": null, "row": 108, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.816844093570461, 48.21878962102479, 0]}}, {"type": "Feature", "properties": {"id": "0263c766-ba3c-44cb-80ab-48e28357f89d", "info": null, "row": 108, "col": 252}, "geometry": {"type": "Point", "coordinates": [-5.003071670106751, 48.23799975730388, 0]}}, {"type": "Feature", "properties": {"id": "5c5aa40b-4c21-4bda-90fe-a5661e783142", "info": null, "row": 117, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.6978117090247398, 47.76591391964293, 0]}}, {"type": "Feature", "properties": {"id": "dff1fca0-1bbf-4a8a-a66b-1890e7501629", "info": null, "row": 117, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.8811212655580187, 47.79015641196875, 0]}}, {"type": "Feature", "properties": {"id": "dd48c825-fbd1-439f-a01a-e715bca38db2", "info": null, "row": 117, "col": 28}, "geometry": {"type": "Point", "coordinates": [-2.0645997139296948, 47.814106991827536, 0]}}, {"type": "Feature", "properties": {"id": "2a262562-40b6-46ce-8bd8-0e7d02902687", "info": null, "row": 117, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.2482453094029, 47.837765154649574, 0]}}, {"type": "Feature", "properties": {"id": "c4bb4005-3662-40ed-9f45-a4db29db8e5a", "info": null, "row": 117, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.4320562919542428, 47.86113040064576, 0]}}, {"type": "Feature", "properties": {"id": "541f692b-c5bc-4d95-a3a8-c800f3f0f536", "info": null, "row": 117, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.6160308873584697, 47.884202234991534, 0]}}, {"type": "Feature", "properties": {"id": "8018e2b6-c444-4c47-994e-7b428358689d", "info": null, "row": 117, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.8001673075852818, 47.90698016791568, 0]}}, {"type": "Feature", "properties": {"id": "1bb06bb2-d738-4bff-a898-139ba1f3b652", "info": null, "row": 117, "col": 98}, "geometry": {"type": "Point", "coordinates": [-2.984463750924381, 47.929463714752714, 0]}}, {"type": "Feature", "properties": {"id": "e28a0c3a-5275-4c8d-852f-012da769dac3", "info": null, "row": 117, "col": 112}, "geometry": {"type": "Point", "coordinates": [-3.1689184020582024, 47.951652395988575, 0]}}, {"type": "Feature", "properties": {"id": "312164db-e057-4648-a1e4-0675ebc39c10", "info": null, "row": 117, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.3535294321753586, 47.973545737310715, 0]}}, {"type": "Feature", "properties": {"id": "ed73aa6b-e628-4496-9158-620f9105e99d", "info": null, "row": 117, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.5382949991419346, 47.99514326966455, 0]}}, {"type": "Feature", "properties": {"id": "7f503716-04c6-4433-af78-f4b1aba9a3f1", "info": null, "row": 117, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.723213247707827, 48.01644452931284, 0]}}, {"type": "Feature", "properties": {"id": "c7359b17-e461-42ae-8c72-eef9b8e3f58a", "info": null, "row": 117, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.9082823097105006, 48.037449057893284, 0]}}, {"type": "Feature", "properties": {"id": "031e371b-8ef4-4f49-92f0-56eed8a0618f", "info": null, "row": 117, "col": 182}, "geometry": {"type": "Point", "coordinates": [-4.093500304243413, 48.05815640247086, 0]}}, {"type": "Feature", "properties": {"id": "1f38ff97-a20b-47aa-9620-c8696c8fe41c", "info": null, "row": 117, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.27886533777323, 48.078566115583484, 0]}}, {"type": "Feature", "properties": {"id": "95b0723d-84de-49ea-a606-165b98fc64ff", "info": null, "row": 117, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.464375504216156, 48.09867775528283, 0]}}, {"type": "Feature", "properties": {"id": "3039c0fb-900b-4bad-9a15-276f7467ebc0", "info": null, "row": 117, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.650028885016059, 48.118490885175106, 0]}}, {"type": "Feature", "properties": {"id": "8f5b3be2-5714-4d19-9dac-ae2d46babf1b", "info": null, "row": 117, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.835823549303307, 48.138005074470314, 0]}}, {"type": "Feature", "properties": {"id": "11647935-7d9d-471a-b64f-6b0fe658f8d7", "info": null, "row": 117, "col": 252}, "geometry": {"type": "Point", "coordinates": [-5.021757554252266, 48.15721989805078, 0]}}, {"type": "Feature", "properties": {"id": "3c3a8ea2-f752-4317-82d8-db78373fa23e", "info": null, "row": 126, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.7214936464822073, 47.68515737765187, 0]}}, {"type": "Feature", "properties": {"id": "a314fc44-e78e-4940-a799-cc71f0a7f26e", "info": null, "row": 126, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.904522794765718, 47.709390679115565, 0]}}, {"type": "Feature", "properties": {"id": "d594aa61-4867-4ea7-afc8-1ad4abd5469c", "info": null, "row": 126, "col": 28}, "geometry": {"type": "Point", "coordinates": [-2.087720083171386, 47.73333288693639, 0]}}, {"type": "Feature", "properties": {"id": "fae3fd96-c9b0-4333-ae90-99871c261004", "info": null, "row": 126, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.2710837749670003, 47.75698349812514, 0]}}, {"type": "Feature", "properties": {"id": "80803ddc-8935-4906-b598-f84addbcfef6", "info": null, "row": 126, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.45461211884472, 47.78034201454289, 0]}}, {"type": "Feature", "properties": {"id": "70fc9eff-1537-4e2c-9be8-6e484e5c75bb", "info": null, "row": 126, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.638303349924607, 47.80340794306947, 0]}}, {"type": "Feature", "properties": {"id": "e91e30e8-7cad-4e6d-ba7d-f819690cd823", "info": null, "row": 126, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.8221556900788842, 47.82618079567881, 0]}}, {"type": "Feature", "properties": {"id": "f655b44b-f777-43fd-8063-6ffb231eeea5", "info": null, "row": 126, "col": 98}, "geometry": {"type": "Point", "coordinates": [-3.0061673479930806, 47.84866008947949, 0]}}, {"type": "Feature", "properties": {"id": "865b7bee-9409-4bde-bd3b-85f2bc3f7975", "info": null, "row": 126, "col": 112}, "geometry": {"type": "Point", "coordinates": [-3.190336519182874, 47.87084534675014, 0]}}, {"type": "Feature", "properties": {"id": "d961cd72-e297-4ac0-901e-4e60a95b09df", "info": null, "row": 126, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.3746613860593215, 47.89273609498093, 0]}}, {"type": "Feature", "properties": {"id": "30885b57-25f5-47a5-a1bb-9bac3726516e", "info": null, "row": 126, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.559140118059287, 47.91433186692261, 0]}}, {"type": "Feature", "properties": {"id": "32064c2a-7406-45c5-9469-dce5564e2915", "info": null, "row": 126, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.7437708718175617, 47.9356322006396, 0]}}, {"type": "Feature", "properties": {"id": "d4ee6cb8-c5d2-4c14-920a-baacc59c8a74", "info": null, "row": 126, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.9285517913425823, 47.95663663956263, 0]}}, {"type": "Feature", "properties": {"id": "fcc2dd94-7cb1-4e08-bf80-72779ca40e63", "info": null, "row": 126, "col": 182}, "geometry": {"type": "Point", "coordinates": [-4.113481008162056, 47.97734473253662, 0]}}, {"type": "Feature", "properties": {"id": "a3249ec5-0c9e-4746-81be-7111ebf1a769", "info": null, "row": 126, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.298556641421699, 47.99775603386288, 0]}}, {"type": "Feature", "properties": {"id": "a396f7b9-0343-4394-9c98-30a4a478a6b7", "info": null, "row": 126, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.4837767979464065, 48.01787010333673, 0]}}, {"type": "Feature", "properties": {"id": "8668b058-824c-4956-b597-c147462b91ab", "info": null, "row": 126, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.669139572304953, 48.03768650628579, 0]}}, {"type": "Feature", "properties": {"id": "254f8262-abdc-45c1-9a9c-5fa8cc7f6523", "info": null, "row": 126, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.854643046955939, 48.057204813616416, 0]}}, {"type": "Feature", "properties": {"id": "d02594b2-ea4b-4e54-b849-68fc72f17312", "info": null, "row": 126, "col": 252}, "geometry": {"type": "Point", "coordinates": [-5.040285292590823, 48.07642460187998, 0]}}, {"type": "Feature", "properties": {"id": "586060ac-da3e-47dd-95e1-a5fcb799060a", "info": null, "row": 135, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.7450959201571132, 47.60439206002039, 0]}}, {"type": "Feature", "properties": {"id": "16d96201-d934-4349-ae3b-0c85814d621d", "info": null, "row": 135, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.927845207878352, 47.62861628906571, 0]}}, {"type": "Feature", "properties": {"id": "0a2d627f-9bcf-4ef3-8bd7-acbb0be9e61b", "info": null, "row": 135, "col": 28}, "geometry": {"type": "Point", "coordinates": [-2.1107619066511187, 47.65255024496539, 0]}}, {"type": "Feature", "properties": {"id": "8878ece0-d739-4215-b406-7767e780fca7", "info": null, "row": 135, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.293844285786901, 47.67619342595824, 0]}}, {"type": "Feature", "properties": {"id": "cefcc225-07cf-4ab2-812f-1fa413ea7964", "info": null, "row": 135, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.4770906009810063, 47.69954533524796, 0]}}, {"type": "Feature", "properties": {"id": "6aff8e98-858c-4c65-8f02-798299b8903a", "info": null, "row": 135, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.6604990951964336, 47.72260548114908, 0]}}, {"type": "Feature", "properties": {"id": "8436b4e6-bce5-4f24-90ea-93d30f8f10f2", "info": null, "row": 135, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.844067998883627, 47.74537337714306, 0]}}, {"type": "Feature", "properties": {"id": "92cfe264-dfc3-49b2-a5fb-57658d44a1ab", "info": null, "row": 135, "col": 98}, "geometry": {"type": "Point", "coordinates": [-3.0277955299509487, 47.76784854190233, 0]}}, {"type": "Feature", "properties": {"id": "e7203ecd-29f3-45ae-acc5-00471be67b1c", "info": null, "row": 135, "col": 112}, "geometry": {"type": "Point", "coordinates": [-3.21167989370333, 47.79003049931139, 0]}}, {"type": "Feature", "properties": {"id": "b44b80ed-b430-4c6d-9b8f-d16880c2295e", "info": null, "row": 135, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.3957192828405116, 47.811918778496306, 0]}}, {"type": "Feature", "properties": {"id": "fa6be2bd-2c17-4fc1-a73c-7e23956a093d", "info": null, "row": 135, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.5799118775308, 47.83351291386357, 0]}}, {"type": "Feature", "properties": {"id": "a65ef8c8-b97d-44ef-9691-6607ff35604f", "info": null, "row": 135, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.7642558455357236, 47.8548124451447, 0]}}, {"type": "Feature", "properties": {"id": "452acf02-8d32-4f1f-b22b-1305801797e5", "info": null, "row": 135, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.948749342346768, 47.87581691744171, 0]}}, {"type": "Feature", "properties": {"id": "038c66b8-df5a-46c1-93bd-d747014a09f7", "info": null, "row": 135, "col": 182}, "geometry": {"type": "Point", "coordinates": [-4.133390511299161, 47.89652588126923, 0]}}, {"type": "Feature", "properties": {"id": "0964c03e-fe45-48f2-81c7-7f18d93e8dba", "info": null, "row": 135, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.3181774836449085, 47.91693889259167, 0]}}, {"type": "Feature", "properties": {"id": "ef1af842-fb5d-4de0-ae48-297817ad920c", "info": null, "row": 135, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.503108378593215, 47.937055512856816, 0]}}, {"type": "Feature", "properties": {"id": "43a53337-5112-47b3-9465-9f7188bfecc2", "info": null, "row": 135, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.688181303357812, 47.95687530903041, 0]}}, {"type": "Feature", "properties": {"id": "2a630c5b-a554-4cfc-98f5-436e72b42bdf", "info": null, "row": 135, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.873394353287527, 47.97639785363962, 0]}}, {"type": "Feature", "properties": {"id": "2fe4bb7e-c29c-46e2-906c-cad2d2504b28", "info": null, "row": 135, "col": 252}, "geometry": {"type": "Point", "coordinates": [-5.058745612193922, 47.995622724836174, 0]}}, {"type": "Feature", "properties": {"id": "dbd07a04-0ac8-482b-9299-140b8ea6f7a8", "info": null, "row": 144, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.7686737618571347, 47.52362612645668, 0]}}, {"type": "Feature", "properties": {"id": "dc1bc90e-fa7a-45b8-807c-cbf1183a00bf", "info": null, "row": 144, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.9511452291477887, 47.54784144579221, 0]}}, {"type": "Feature", "properties": {"id": "13b93b8b-2733-4f88-9a6f-4b8c1b3593bf", "info": null, "row": 144, "col": 28}, "geometry": {"type": "Point", "coordinates": [-2.1337833269813573, 47.571767299951475, 0]}}, {"type": "Feature", "properties": {"id": "14f5e790-6091-4e81-836b-8487dcc26a50", "info": null, "row": 144, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.316586336386615, 47.59540318941832, 0]}}, {"type": "Feature", "properties": {"id": "ec8d68ad-cd03-4462-9d73-3ac6460f1918", "info": null, "row": 144, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.499552524991273, 47.61874861962247, 0]}}, {"type": "Feature", "properties": {"id": "8f928b64-095c-4f81-b565-78a59725ea55", "info": null, "row": 144, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.6826801478891884, 47.64180310108242, 0]}}, {"type": "Feature", "properties": {"id": "89f5bf9c-8ec6-4bad-810f-bc6e37ccc49b", "info": null, "row": 144, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.8659674478475132, 47.66456614945898, 0]}}, {"type": "Feature", "properties": {"id": "e1e4c148-52be-4ab8-a388-dbfcaddc14aa", "info": null, "row": 144, "col": 98}, "geometry": {"type": "Point", "coordinates": [-3.049412655267087, 47.6870372855773, 0]}}, {"type": "Feature", "properties": {"id": "b06beb21-04fc-4ea2-a24d-54d415eaa0f6", "info": null, "row": 144, "col": 112}, "geometry": {"type": "Point", "coordinates": [-3.2330139881124405, 47.70921603544606, 0]}}, {"type": "Feature", "properties": {"id": "40daa632-33ea-4d17-bee7-a0e1a07f0b65", "info": null, "row": 144, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.416769651902285, 47.73110193028538, 0]}}, {"type": "Feature", "properties": {"id": "a243f89b-d354-4b8d-acbe-d2916426e902", "info": null, "row": 144, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.6006778397759116, 47.752694506564126, 0]}}, {"type": "Feature", "properties": {"id": "756df3ad-d546-4781-9475-29c2417a8dc6", "info": null, "row": 144, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.7847367326109644, 47.773993306043096, 0]}}, {"type": "Feature", "properties": {"id": "c2a1a1af-5862-48d4-8645-a130de228bb8", "info": null, "row": 144, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.9689444991537752, 47.79499787581938, 0]}}, {"type": "Feature", "properties": {"id": "3a4962e5-4ab4-4c3a-af67-315cc4d407c4", "info": null, "row": 144, "col": 182}, "geometry": {"type": "Point", "coordinates": [-4.153299296127404, 47.815707768367155, 0]}}, {"type": "Feature", "properties": {"id": "705cdb8b-327d-4329-8d18-b18db2df6314", "info": null, "row": 144, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.3377992682997775, 47.83612254157394, 0]}}, {"type": "Feature", "properties": {"id": "8b47d07a-f1da-444f-8e31-318bec6a9fbf", "info": null, "row": 144, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.522442548520431, 47.85624175877339, 0]}}, {"type": "Feature", "properties": {"id": "974b3290-5c5f-4698-99c4-10a22a87edcb", "info": null, "row": 144, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.707227257765675, 47.876064988779234, 0]}}, {"type": "Feature", "properties": {"id": "3c2625bb-b325-4a89-9e34-6bff08460089", "info": null, "row": 144, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.892151505268855, 47.89559180592821, 0]}}, {"type": "Feature", "properties": {"id": "971b5015-eb8c-4cd6-9757-58cc240ff1d3", "info": null, "row": 144, "col": 252}, "geometry": {"type": "Point", "coordinates": [-5.077213388849831, 47.914821790143264, 0]}}, {"type": "Feature", "properties": {"id": "c28fb967-bd41-4aee-93b4-37e282c92dce", "info": null, "row": 153, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.7922246598839182, 47.44285951364061, 0]}}, {"type": "Feature", "properties": {"id": "8a1e5a28-8857-4cd3-af87-5cdb9f8a3e5f", "info": null, "row": 153, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.9744205566088393, 47.467066102701956, 0]}}, {"type": "Feature", "properties": {"id": "c6500f4b-15c2-4a92-bb45-1d550308d770", "info": null, "row": 153, "col": 28}, "geometry": {"type": "Point", "coordinates": [-2.15678224664206, 47.4909840207407, 0]}}, {"type": "Feature", "properties": {"id": "eece1fb8-da28-4556-ac28-6f2b1ebf9ce8", "info": null, "row": 153, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.3393080289864976, 47.514612771607226, 0]}}, {"type": "Feature", "properties": {"id": "8678189c-0f66-4f29-84c7-f51a21496cbb", "info": null, "row": 153, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.5219961886382665, 47.53795186393152, 0]}}, {"type": "Feature", "properties": {"id": "027a469d-5523-46aa-bb63-840513fb149a", "info": null, "row": 153, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.7048449975508166, 47.56100081128436, 0]}}, {"type": "Feature", "properties": {"id": "908f0446-c8c1-4b3d-bded-c001df8cab4e", "info": null, "row": 153, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.8878527149308297, 47.583759132246826, 0]}}, {"type": "Feature", "properties": {"id": "c25e4b9e-a19f-4681-9472-03ea1b5a945d", "info": null, "row": 153, "col": 98}, "geometry": {"type": "Point", "coordinates": [-3.0710175872773924, 47.60622635044617, 0]}}, {"type": "Feature", "properties": {"id": "ae4942d5-7612-44f8-9401-e0302e8ee138", "info": null, "row": 153, "col": 112}, "geometry": {"type": "Point", "coordinates": [-3.2543378483800645, 47.62840199458692, 0]}}, {"type": "Feature", "properties": {"id": "79be56a8-dac3-43dd-9566-62974555fec6", "info": null, "row": 153, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.437811719366943, 47.65028559848843, 0]}}, {"type": "Feature", "properties": {"id": "a07c61db-8d2b-4c9a-a195-130867079d08", "info": null, "row": 153, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.6214374088180743, 47.67187670113036, 0]}}, {"type": "Feature", "properties": {"id": "8cb3bfd2-92d4-4b4d-977b-39a010c295f6", "info": null, "row": 153, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.805213112921116, 47.693174846702355, 0]}}, {"type": "Feature", "properties": {"id": "f40ad777-7f04-490e-8296-e5092b5799f7", "info": null, "row": 153, "col": 168}, "geometry": {"type": "Point", "coordinates": [-3.9891370156311825, 47.71417958465344, 0]}}, {"type": "Feature", "properties": {"id": "b0456907-e10a-4ab3-aacd-b35b9aa40965", "info": null, "row": 153, "col": 182}, "geometry": {"type": "Point", "coordinates": [-4.173207288801949, 47.73489046973709, 0]}}, {"type": "Feature", "properties": {"id": "254323fc-7d04-4c6f-902c-895fbdeba09b", "info": null, "row": 153, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.357422092271804, 47.75530706205068, 0]}}, {"type": "Feature", "properties": {"id": "5b85804b-5676-42f8-888f-13e675d9fa52", "info": null, "row": 153, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.541779573915758, 47.77542892707117, 0]}}, {"type": "Feature", "properties": {"id": "cf032d3d-fcd9-48ca-b539-c94fb3b44a73", "info": null, "row": 153, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.726277869705223, 47.79525563569153, 0]}}, {"type": "Feature", "properties": {"id": "b6f6ae55-357e-4b2e-9c7c-f584c0a0e57b", "info": null, "row": 153, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.9109151038545695, 47.8147867642665, 0]}}, {"type": "Feature", "properties": {"id": "bcc68f24-1645-4cef-913a-26eca09baee7", "info": null, "row": 153, "col": 252}, "geometry": {"type": "Point", "coordinates": [-5.095689389171456, 47.83402189467844, 0]}}, {"type": "Feature", "properties": {"id": "31f12b52-f384-4ec5-82f4-ddaf8a0888dc", "info": null, "row": 162, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.8158170682150208, 47.3620993690196, 0]}}, {"type": "Feature", "properties": {"id": "328e343e-3a1e-4fb9-9789-e12d05549a2f", "info": null, "row": 162, "col": 14}, "geometry": {"type": "Point", "coordinates": [-1.9977376607415975, 47.3862971420743, 0]}}, {"type": "Feature", "properties": {"id": "3dc6c28e-0372-4f94-95ea-54d73a92d46c", "info": null, "row": 162, "col": 28}, "geometry": {"type": "Point", "coordinates": [-2.179823220755912, 47.41020703930058, 0]}}, {"type": "Feature", "properties": {"id": "a4b14329-c2b5-4f20-95c1-051ce567e372", "info": null, "row": 162, "col": 42}, "geometry": {"type": "Point", "coordinates": [-2.36207206415568, 47.433828567725186, 0]}}, {"type": "Feature", "properties": {"id": "52e27815-9013-47ef-870d-ea1cb965ac25", "info": null, "row": 162, "col": 56}, "geometry": {"type": "Point", "coordinates": [-2.5444824923649003, 47.45716123901307, 0]}}, {"type": "Feature", "properties": {"id": "0850681f-ce83-41bf-81fa-aa1e893c70f5", "info": null, "row": 162, "col": 70}, "geometry": {"type": "Point", "coordinates": [-2.7270527933695776, 47.480204569642495, 0]}}, {"type": "Feature", "properties": {"id": "e18877d9-9d04-4c94-bdad-3e8679395679", "info": null, "row": 162, "col": 84}, "geometry": {"type": "Point", "coordinates": [-2.9097812420840574, 47.50295808098735, 0]}}, {"type": "Feature", "properties": {"id": "0f387810-79d6-4186-92c8-1a52051e7c65", "info": null, "row": 162, "col": 98}, "geometry": {"type": "Point", "coordinates": [-3.0926661004553884, 47.525421299364396, 0]}}, {"type": "Feature", "properties": {"id": "c7d047b9-814a-4d47-9429-c876829b8b63", "info": null, "row": 162, "col": 112}, "geometry": {"type": "Point", "coordinates": [-3.2757056175188115, 47.547593756074164, 0]}}, {"type": "Feature", "properties": {"id": "f359f76f-07b4-4ce5-8e5b-e65a1ce95333", "info": null, "row": 162, "col": 126}, "geometry": {"type": "Point", "coordinates": [-3.458898029494221, 47.56947498744671, 0]}}, {"type": "Feature", "properties": {"id": "913706b9-dda1-48f2-9dc3-bfe3a1d2994d", "info": null, "row": 162, "col": 140}, "geometry": {"type": "Point", "coordinates": [-3.642241559938738, 47.59106453489362, 0]}}, {"type": "Feature", "properties": {"id": "b017e9d0-e514-44c9-aa7a-08e3d3cd6af1", "info": null, "row": 162, "col": 154}, "geometry": {"type": "Point", "coordinates": [-3.8257344199327763, 47.61236194496286, 0]}}, {"type": "Feature", "properties": {"id": "eed91bd8-d90d-4e37-8610-4a11997ef368", "info": null, "row": 162, "col": 168}, "geometry": {"type": "Point", "coordinates": [-4.009374808262483, 47.6333667693922, 0]}}, {"type": "Feature", "properties": {"id": "3996bf70-c83b-4966-9baf-a310e3acc78a", "info": null, "row": 162, "col": 182}, "geometry": {"type": "Point", "coordinates": [-4.193160911567447, 47.65407856515726, 0]}}, {"type": "Feature", "properties": {"id": "6d0a5d49-9451-4b3c-ac3f-046db53f049f", "info": null, "row": 162, "col": 196}, "geometry": {"type": "Point", "coordinates": [-4.377090904439516, 47.67449689451351, 0]}}, {"type": "Feature", "properties": {"id": "8a80387a-a55f-4cb4-a8c2-d3866e416960", "info": null, "row": 162, "col": 210}, "geometry": {"type": "Point", "coordinates": [-4.561162949485906, 47.69462132503397, 0]}}, {"type": "Feature", "properties": {"id": "eb1ef436-2a0c-4413-95fd-4b149e593a31", "info": null, "row": 162, "col": 224}, "geometry": {"type": "Point", "coordinates": [-4.745375197401577, 47.714451429647916, 0]}}, {"type": "Feature", "properties": {"id": "6173c97c-5dcd-4bab-85fe-4d129062be28", "info": null, "row": 162, "col": 238}, "geometry": {"type": "Point", "coordinates": [-4.929725787133191, 47.73398678668913, 0]}}, {"type": "Feature", "properties": {"id": "18f2170a-c917-4396-9184-703f9b65fc98", "info": null, "row": 162, "col": 252}, "geometry": {"type": "Point", "coordinates": [-5.114212846255222, 47.75322697996506, 0]}}]}
array(0)
- linePandasIndex
PandasIndex(Index([ 49.5, 149.5, 249.5, 349.5, 449.5, 549.5, 649.5, 749.5, 849.5, 949.5, ... 15649.5, 15749.5, 15849.5, 15949.5, 16049.5, 16149.5, 16249.5, 16349.5, 16449.5, 16549.5], dtype='float64', name='line', length=166))
- samplePandasIndex
PandasIndex(Index([ 49.5, 149.5, 249.5, 349.5, 449.5, 549.5, 649.5, 749.5, 849.5, 949.5, ... 25549.5, 25649.5, 25749.5, 25849.5, 25949.5, 26049.5, 26149.5, 26249.5, 26349.5, 26449.5], dtype='float64', name='sample', length=265))
- polPandasIndex
PandasIndex(Index(['VV', 'VH'], dtype='object', name='pol'))
Adding masks
Masks can be added with xsar.BaseMeta.set_mask_feature, providing a shapefile or a cartopy.feature.Feature object.
For a default mask for all SAFE, use classmethod xsar.BaseMeta.set_mask_feature
Here, we add a ocean_mask
dataset variable:
[3]:
xsar.Sentinel1Meta.set_mask_feature('ocean', os.path.join(xsar.get_test_file('water-polygons-split-4326'), 'water_polygons.shp'))
s1meta = xsar.Sentinel1Meta(xsar.get_test_file('S1B_IW_GRDH_1SDV_20181013T062322_20181013T062347_013130_018428_Z010.SAFE'))
ds = xsar.open_dataset(s1meta, resolution='200m')
ds['sigma0_ocean'] = xr.where(ds['ocean_mask'], ds['sigma0'], np.nan).transpose(*ds['sigma0'].dims)
ds[['sigma0_ocean','ocean_mask']]
/home/datawork-cersat-public/cache/project/mpc-sentinel1/workspace/mamba/envs/testgeoviewsnumpy/lib/python3.11/site-packages/numpy/_core/numeric.py:452: RuntimeWarning: invalid value encountered in cast
multiarray.copyto(res, fill_value, casting='unsafe')
[3]:
<xarray.Dataset> Size: 19MB Dimensions: (pol: 2, line: 834, sample: 1329) Coordinates: * line (line) float64 7kB 9.5 29.5 49.5 ... 1.665e+04 1.667e+04 * sample (sample) float64 11kB 9.5 29.5 49.5 ... 2.655e+04 2.657e+04 * pol (pol) object 16B 'VV' 'VH' spatial_ref int64 8B 0 Data variables: sigma0_ocean (pol, line, sample) float64 18MB dask.array<chunksize=(1, 834, 1329), meta=np.ndarray> ocean_mask (line, sample) int8 1MB dask.array<chunksize=(834, 1329), meta=np.ndarray> Attributes: (12/15) name: SENTINEL1_DS:/home1/scratch/agrouaze/xsardatasync/xsar... short_name: SENTINEL1_DS:S1B_IW_GRDH_1SDV_20181013T062322_20181013... product: GRDH safe: S1B_IW_GRDH_1SDV_20181013T062322_20181013T062347_01313... swath: IW multidataset: False ... ... start_date: 2018-10-13 06:23:22.317102 stop_date: 2018-10-13 06:23:47.315227 footprint: POLYGON ((-1.371244242212007 48.8181227490355, -4.9521... coverage: 168km * 265km (line * sample ) orbit_pass: Descending platform_heading: -165.3526446468305
- pol: 2
- line: 834
- sample: 1329
- line(line)float649.5 29.5 ... 1.665e+04 1.667e+04
array([9.50000e+00, 2.95000e+01, 4.95000e+01, ..., 1.66295e+04, 1.66495e+04, 1.66695e+04])
- sample(sample)float649.5 29.5 ... 2.655e+04 2.657e+04
array([9.50000e+00, 2.95000e+01, 4.95000e+01, ..., 2.65295e+04, 2.65495e+04, 2.65695e+04])
- pol(pol)object'VV' 'VH'
array(['VV', 'VH'], dtype=object)
- spatial_ref()int640
- crs_wkt :
- GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AXIS["Latitude",NORTH],AXIS["Longitude",EAST],AUTHORITY["EPSG","4326"]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- WGS 84
- horizontal_datum_name :
- World Geodetic System 1984
- grid_mapping_name :
- latitude_longitude
- spatial_ref :
- GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AXIS["Latitude",NORTH],AXIS["Longitude",EAST],AUTHORITY["EPSG","4326"]]
- gcps :
- {"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {"id": "0b395aa5-8750-482c-88ae-e8418eb2e984", "info": null, "row": 0, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.3726933850234446, 48.81747300277281, 0]}}, {"type": "Feature", "properties": {"id": "6e5d146a-59de-4eee-ae60-5e571dbf6bdd", "info": null, "row": 0, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.5517405170318435, 48.840829807114964, 0]}}, {"type": "Feature", "properties": {"id": "fc9ecf89-99ab-42a3-bd07-d41a135b682e", "info": null, "row": 0, "col": 134}, "geometry": {"type": "Point", "coordinates": [-1.7309530212849835, 48.86390864798673, 0]}}, {"type": "Feature", "properties": {"id": "c58f1785-7887-4556-a663-3f46302f8518", "info": null, "row": 0, "col": 201}, "geometry": {"type": "Point", "coordinates": [-1.9103292064557305, 48.88670904995115, 0]}}, {"type": "Feature", "properties": {"id": "dcd27664-4fa6-4994-802f-db68a7ba38f3", "info": null, "row": 0, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.089867366399879, 48.90923054201339, 0]}}, {"type": "Feature", "properties": {"id": "4d66123b-20a7-4d13-a64e-dd20fd8a6ef5", "info": null, "row": 0, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.269565781233776, 48.93147265779983, 0]}}, {"type": "Feature", "properties": {"id": "799919e1-b7cd-4d94-8bd0-d7f1c31fba4d", "info": null, "row": 0, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.449422717761297, 48.95343493564829, 0]}}, {"type": "Feature", "properties": {"id": "831e6aa1-0a4b-48ce-a064-f56da12050eb", "info": null, "row": 0, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.6294364296222112, 48.97511691866065, 0]}}, {"type": "Feature", "properties": {"id": "94323a34-90d0-4162-a269-1488e6b7284e", "info": null, "row": 0, "col": 536}, "geometry": {"type": "Point", "coordinates": [-2.8096051573667498, 48.996518154746546, 0]}}, {"type": "Feature", "properties": {"id": "2d087e0c-cae7-4bec-8e92-bb325ecc4079", "info": null, "row": 0, "col": 603}, "geometry": {"type": "Point", "coordinates": [-2.9899271285523468, 49.01763819666874, 0]}}, {"type": "Feature", "properties": {"id": "d2d7668b-fca2-4c08-8af7-85ae068079f5", "info": null, "row": 0, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.1704005578905283, 49.03847660209437, 0]}}, {"type": "Feature", "properties": {"id": "d5773745-cb2b-4f25-814b-6cb09448e651", "info": null, "row": 0, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.3510236474327644, 49.059032933649604, 0]}}, {"type": "Feature", "properties": {"id": "9bbcaaf7-aa3c-4b3e-ab5c-bc8164c82438", "info": null, "row": 0, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.5317945867674156, 49.079306758974056, 0]}}, {"type": "Feature", "properties": {"id": "62cc0786-80f8-4042-90db-0da964a87f10", "info": null, "row": 0, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.7127115531978614, 49.099297650772144, 0]}}, {"type": "Feature", "properties": {"id": "b95751e3-0dd6-4b3e-b745-7d8e6a4b9182", "info": null, "row": 0, "col": 938}, "geometry": {"type": "Point", "coordinates": [-3.893772711881988, 49.1190051868588, 0]}}, {"type": "Feature", "properties": {"id": "e691f682-a695-4662-827a-369b5f76ec27", "info": null, "row": 0, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.0749762159293645, 49.13842895020007, 0]}}, {"type": "Feature", "properties": {"id": "f37461d5-1222-4e8e-83ba-cede6cfbfab7", "info": null, "row": 0, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.256320206476453, 49.157568528951074, 0]}}, {"type": "Feature", "properties": {"id": "292270cb-23a8-43be-b553-6efde417a7d5", "info": null, "row": 0, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.437802812786144, 49.176423516496385, 0]}}, {"type": "Feature", "properties": {"id": "20282bf4-fcff-440e-9131-5560372744d5", "info": null, "row": 0, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.619422152446251, 49.19499351149996, 0]}}, {"type": "Feature", "properties": {"id": "e8cdf163-aff4-4643-9e76-074f9f4f7a1c", "info": null, "row": 0, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-4.8011762074431905, 49.213278387384285, 0]}}, {"type": "Feature", "properties": {"id": "bad77f70-fc1f-4151-bbf4-20cebf6cef49", "info": null, "row": 42, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.3957079010371878, 48.74218592052035, 0]}}, {"type": "Feature", "properties": {"id": "fe7a2e8d-abcd-4759-97b6-351e2f93aa35", "info": null, "row": 42, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.5744912336604102, 48.76553281395599, 0]}}, {"type": "Feature", "properties": {"id": "73f467ab-52f2-4fe2-badc-fd8583f8ab4c", "info": null, "row": 42, "col": 134}, "geometry": {"type": "Point", "coordinates": [-1.7534391822477688, 48.788602464243354, 0]}}, {"type": "Feature", "properties": {"id": "1986021a-f545-4e25-b4d4-5f68d3153912", "info": null, "row": 42, "col": 201}, "geometry": {"type": "Point", "coordinates": [-1.932550067633465, 48.811394398258116, 0]}}, {"type": "Feature", "properties": {"id": "bb9d15a9-3e40-40fd-81b2-094d15b19ad6", "info": null, "row": 42, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.1118221958555905, 48.83390814726981, 0]}}, {"type": "Feature", "properties": {"id": "433bace9-dc5c-4873-bd67-aba5a4e6a088", "info": null, "row": 42, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.2912538592421345, 48.85614324712252, 0]}}, {"type": "Feature", "properties": {"id": "25939b00-4055-4dc9-b5d2-905fc7d3144b", "info": null, "row": 42, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.470843336848572, 48.87809923832689, 0]}}, {"type": "Feature", "properties": {"id": "447fd5a7-292e-4c92-bd40-b5482c2f684d", "info": null, "row": 42, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.6505888946169014, 48.89977566611434, 0]}}, {"type": "Feature", "properties": {"id": "629abb15-2be1-4351-ba94-c49aa7c990e7", "info": null, "row": 42, "col": 536}, "geometry": {"type": "Point", "coordinates": [-2.830488785459866, 48.92117208048212, 0]}}, {"type": "Feature", "properties": {"id": "2bbb784e-343a-4ae2-ad06-71d5cdae775e", "info": null, "row": 42, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.0105412493652155, 48.94228803623973, 0]}}, {"type": "Feature", "properties": {"id": "d3f06eb7-601e-4457-a10e-0792ff7076a3", "info": null, "row": 42, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.190744513547963, 48.963123093060844, 0]}}, {"type": "Feature", "properties": {"id": "a81ffb59-f2e0-4a98-bc49-e22136084565", "info": null, "row": 42, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.3710967926393147, 48.98367681553834, 0]}}, {"type": "Feature", "properties": {"id": "523a56fa-fda3-4690-bc19-6d55d8a6ca69", "info": null, "row": 42, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.5515962888847987, 49.00394877323886, 0]}}, {"type": "Feature", "properties": {"id": "7a9735b3-bdb5-4e6e-bdc2-33b35bdc8ba6", "info": null, "row": 42, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.7322411923224084, 49.02393854075419, 0]}}, {"type": "Feature", "properties": {"id": "08c4fbf5-b76a-44e3-9013-c903bd54f10b", "info": null, "row": 42, "col": 938}, "geometry": {"type": "Point", "coordinates": [-3.913029680921242, 49.043645697746825, 0]}}, {"type": "Feature", "properties": {"id": "d704bf27-2896-47e7-b76c-b97e4ff254a8", "info": null, "row": 42, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.093959920678475, 49.06306982899057, 0]}}, {"type": "Feature", "properties": {"id": "3f9df219-bf54-4462-aadb-9cc79e843d06", "info": null, "row": 42, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.275030065695414, 49.082210524408474, 0]}}, {"type": "Feature", "properties": {"id": "72dcf3b1-682f-41fb-8d45-be1e7c1d5ce5", "info": null, "row": 42, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.456238258280481, 49.1010673791136, 0]}}, {"type": "Feature", "properties": {"id": "a0c3f200-9f45-4a04-9049-51adfb00ef0f", "info": null, "row": 42, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.6375826291547195, 49.119639993459536, 0]}}, {"type": "Feature", "properties": {"id": "38fd9059-7b81-44e3-8a33-320a7d776183", "info": null, "row": 42, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-4.819061174029152, 49.13792824180827, 0]}}, {"type": "Feature", "properties": {"id": "20ab965b-4c80-4b72-93bf-c5e401bff42b", "info": null, "row": 84, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.4187224170509312, 48.666898838267905, 0]}}, {"type": "Feature", "properties": {"id": "7cca778f-a764-4ddf-b25c-54d785119356", "info": null, "row": 84, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.5972419502889774, 48.69023582079702, 0]}}, {"type": "Feature", "properties": {"id": "f5b22bd5-9121-4b93-a89d-3bffebb8b476", "info": null, "row": 84, "col": 134}, "geometry": {"type": "Point", "coordinates": [-1.7759253432105544, 48.713296280499975, 0]}}, {"type": "Feature", "properties": {"id": "6fde832a-fd3c-4e33-8fe7-5d304bcbbd67", "info": null, "row": 84, "col": 201}, "geometry": {"type": "Point", "coordinates": [-1.9547709288111998, 48.736079746565096, 0]}}, {"type": "Feature", "properties": {"id": "f5ac8312-7632-4213-92b0-d43b7c548e7a", "info": null, "row": 84, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.133777025311303, 48.75858575252624, 0]}}, {"type": "Feature", "properties": {"id": "25b7fc7d-91b3-48a6-b6ce-c9244a59d39a", "info": null, "row": 84, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.3129419372504922, 48.78081383644521, 0]}}, {"type": "Feature", "properties": {"id": "53c1bf89-1157-41e1-a7ec-2605721b2934", "info": null, "row": 84, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.4922639559358477, 48.80276354100548, 0]}}, {"type": "Feature", "properties": {"id": "98bd2500-d63b-4256-a49f-5fcf2bdeaba7", "info": null, "row": 84, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.6717413596115915, 48.82443441356803, 0]}}, {"type": "Feature", "properties": {"id": "b16419c4-6824-469d-9224-04816a52189d", "info": null, "row": 84, "col": 536}, "geometry": {"type": "Point", "coordinates": [-2.8513724135529834, 48.845826006217706, 0]}}, {"type": "Feature", "properties": {"id": "df7b6c4c-b705-4b4b-a62b-99f39c831b7b", "info": null, "row": 84, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.031155370178085, 48.86693787581072, 0]}}, {"type": "Feature", "properties": {"id": "db055b80-2d03-49a2-92eb-a8d0e73bb897", "info": null, "row": 84, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.211088469205398, 48.887769584027325, 0]}}, {"type": "Feature", "properties": {"id": "7781828d-1953-4e0c-9c10-cb41fd0c51c6", "info": null, "row": 84, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.391169937845866, 48.90832069742705, 0]}}, {"type": "Feature", "properties": {"id": "8a99e72d-575a-479d-a785-04dad2f5d84a", "info": null, "row": 84, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.5713979910021827, 48.92859078750366, 0]}}, {"type": "Feature", "properties": {"id": "e6ee70c6-7c68-40fc-9051-bc3b2de911f7", "info": null, "row": 84, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.751770831446956, 48.94857943073625, 0]}}, {"type": "Feature", "properties": {"id": "ac39ff7a-10f8-489e-b728-3a2986020d16", "info": null, "row": 84, "col": 938}, "geometry": {"type": "Point", "coordinates": [-3.9322866499604965, 48.968286208634865, 0]}}, {"type": "Feature", "properties": {"id": "f050f210-3520-4fd3-856f-3ec1d373b0cc", "info": null, "row": 84, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.112943625427585, 48.98771070778107, 0]}}, {"type": "Feature", "properties": {"id": "b075e898-d483-4cf0-96f6-1f93eaf9ea34", "info": null, "row": 84, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.293739924914377, 49.00685251986589, 0]}}, {"type": "Feature", "properties": {"id": "eb72bba6-7fab-4b30-a772-039221682b4d", "info": null, "row": 84, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.47467370377482, 49.02571124173082, 0]}}, {"type": "Feature", "properties": {"id": "c6bfe4aa-7f90-4edc-b003-d2ab47cb392b", "info": null, "row": 84, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.655743105863189, 49.04428647541911, 0]}}, {"type": "Feature", "properties": {"id": "1e5b76b5-38ff-428d-a46c-94b7e742c7ef", "info": null, "row": 84, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-4.836946140615115, 49.06257809623226, 0]}}, {"type": "Feature", "properties": {"id": "641b6cca-fb98-4f5e-88c5-64c3d50729c4", "info": null, "row": 126, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.4419286418826571, 48.59164081869914, 0]}}, {"type": "Feature", "properties": {"id": "8412c58c-f6cf-4622-9070-709ad2576f6e", "info": null, "row": 126, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.6201863194271078, 48.614967647820855, 0]}}, {"type": "Feature", "properties": {"id": "91741522-219a-4491-8c54-cc4a5c357cdd", "info": null, "row": 126, "col": 134}, "geometry": {"type": "Point", "coordinates": [-1.798607073736978, 48.63801866628251, 0]}}, {"type": "Feature", "properties": {"id": "55b8535a-2791-41cf-8a77-bf5e6fdfe7f2", "info": null, "row": 126, "col": 201}, "geometry": {"type": "Point", "coordinates": [-1.9771892529015995, 48.66079340611704, 0]}}, {"type": "Feature", "properties": {"id": "f9db017e-9ff8-4964-94dc-b218e3a9f285", "info": null, "row": 126, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.1559311898475433, 48.683291403583326, 0]}}, {"type": "Feature", "properties": {"id": "74dd63ef-e02f-4395-9abd-bbb7275eae3e", "info": null, "row": 126, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.3348312035161185, 48.705512199362964, 0]}}, {"type": "Feature", "properties": {"id": "9a10a646-8f13-4b6d-94a1-1c9c94d51aef", "info": null, "row": 126, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.5138875993770005, 48.727455338665166, 0]}}, {"type": "Feature", "properties": {"id": "c22474b5-cdc4-4e4a-8c2f-de7894589812", "info": null, "row": 126, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.693098669649597, 48.74912037129161, 0]}}, {"type": "Feature", "properties": {"id": "bde1076d-9bcb-4d7e-aeef-fc68eaad5ee5", "info": null, "row": 126, "col": 536}, "geometry": {"type": "Point", "coordinates": [-2.872462693438278, 48.7705068516897, 0]}}, {"type": "Feature", "properties": {"id": "95c9ca5d-6227-4ef4-8ceb-342671693905", "info": null, "row": 126, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.051977936877509, 48.791614339006045, 0]}}, {"type": "Feature", "properties": {"id": "ac460640-4dc3-4cab-afd7-4f8931d6eab7", "info": null, "row": 126, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.2316426533168543, 48.81244239714374, 0]}}, {"type": "Feature", "properties": {"id": "c5254c4f-8874-4d9e-89b0-1e6ea5c523b4", "info": null, "row": 126, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.4114550835359423, 48.83299059482169, 0]}}, {"type": "Feature", "properties": {"id": "edd3af85-de0a-4c59-b4f0-f346ce0414f7", "info": null, "row": 126, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.5914134559633246, 48.853258505632745, 0]}}, {"type": "Feature", "properties": {"id": "9daae0da-e6ad-449b-bc2a-a179abf6321f", "info": null, "row": 126, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.7715159868716777, 48.87324570809783, 0]}}, {"type": "Feature", "properties": {"id": "8b0352ce-df17-4814-9cff-4d8eb012de54", "info": null, "row": 126, "col": 938}, "geometry": {"type": "Point", "coordinates": [-3.951760880530409, 48.89295178571398, 0]}}, {"type": "Feature", "properties": {"id": "c82eaed6-3992-491d-8ef1-68a8552c30d0", "info": null, "row": 126, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.132146329315454, 48.91237632699694, 0]}}, {"type": "Feature", "properties": {"id": "66b1f0a1-d12e-4f0d-94b8-a945361087f0", "info": null, "row": 126, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.312670513797189, 48.93151892552088, 0]}}, {"type": "Feature", "properties": {"id": "295a6d43-6644-4037-a5ca-5bf462011f60", "info": null, "row": 126, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.493331602855582, 48.95037917996079, 0]}}, {"type": "Feature", "properties": {"id": "ac436e94-7859-4ce3-97c6-bf2ef4ebcabd", "info": null, "row": 126, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.674127753898788, 48.96895669414487, 0]}}, {"type": "Feature", "properties": {"id": "30612010-100d-43fe-86ca-426c832d2a31", "info": null, "row": 126, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-4.855056990443428, 48.987251344402985, 0]}}, {"type": "Feature", "properties": {"id": "345be70c-6c8f-41f4-aabd-9d6fb233bd90", "info": null, "row": 168, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.465249308860479, 48.51640014833699, 0]}}, {"type": "Feature", "properties": {"id": "03bde27f-3c1e-483a-8a74-48a722868857", "info": null, "row": 168, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.6432462910139123, 48.539716679288404, 0]}}, {"type": "Feature", "properties": {"id": "982c19db-84be-45a3-b4bc-7ae647e29453", "info": null, "row": 168, "col": 134}, "geometry": {"type": "Point", "coordinates": [-1.821405551113177, 48.56275810687711, 0]}}, {"type": "Feature", "properties": {"id": "2dd31670-1c9e-4d7e-8b33-f505aaeecbac", "info": null, "row": 168, "col": 201}, "geometry": {"type": "Point", "coordinates": [-1.999725454091955, 48.58552396629812, 0]}}, {"type": "Feature", "properties": {"id": "e64a9dea-cea5-44d1-9974-a629f5df4501", "info": null, "row": 168, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.17820434908965, 48.6080137968104, 0]}}, {"type": "Feature", "properties": {"id": "7c8fe11c-fb33-4f96-b1e6-1a1728388928", "info": null, "row": 168, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.356840570756616, 48.63022714195534, 0]}}, {"type": "Feature", "properties": {"id": "1d0007ed-e9de-42f9-a5ad-eb8ed65650da", "info": null, "row": 168, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.5356324398659034, 48.65216354967862, 0]}}, {"type": "Feature", "properties": {"id": "24638f9c-b47c-4c1a-a342-df700bf7d277", "info": null, "row": 168, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.7145782636107976, 48.673822572408234, 0]}}, {"type": "Feature", "properties": {"id": "da3cb9e2-98f0-427f-82d8-8acd021cf793", "info": null, "row": 168, "col": 536}, "geometry": {"type": "Point", "coordinates": [-2.8936763358002726, 48.6952037671184, 0]}}, {"type": "Feature", "properties": {"id": "3ca95889-5bfe-4003-b6c6-134665a96601", "info": null, "row": 168, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.0729249370529357, 48.716306695391545, 0]}}, {"type": "Feature", "properties": {"id": "b18fff7b-c362-4373-9538-407385311f63", "info": null, "row": 168, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.252322335022538, 48.73713092348276, 0]}}, {"type": "Feature", "properties": {"id": "7712d0ae-67eb-4658-b082-cb141293a567", "info": null, "row": 168, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.431866784647744, 48.75767602238523, 0]}}, {"type": "Feature", "properties": {"id": "e258a9b8-43fd-4c50-8b6b-c9a392fb3209", "info": null, "row": 168, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.6115565284015383, 48.77794156789373, 0]}}, {"type": "Feature", "properties": {"id": "11b4ea00-29c7-4c92-b1ac-8575cde6ea8a", "info": null, "row": 168, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.791389796513614, 48.79792714066318, 0]}}, {"type": "Feature", "properties": {"id": "012bd9c3-54c4-42db-ba0f-d926eb078f3a", "info": null, "row": 168, "col": 938}, "geometry": {"type": "Point", "coordinates": [-3.971364807147141, 48.81763232626081, 0]}}, {"type": "Feature", "properties": {"id": "15d2391b-369e-437f-9b67-d0238f50bfd3", "info": null, "row": 168, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.151479766529504, 48.83705671521199, 0]}}, {"type": "Feature", "properties": {"id": "cf0b165f-8356-48da-8d03-d5f9efe32df0", "info": null, "row": 168, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.331732869057283, 48.856199903042864, 0]}}, {"type": "Feature", "properties": {"id": "cb54f6ba-f1d0-4a4a-bcb3-d2ed5227f83e", "info": null, "row": 168, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.512122297423296, 48.875061490324626, 0]}}, {"type": "Feature", "properties": {"id": "dc9f8141-1826-41a9-b580-afa658f04de5", "info": null, "row": 168, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.692646222840699, 48.893641082727264, 0]}}, {"type": "Feature", "properties": {"id": "3091fb2e-bc44-4d90-a942-f3b55993cee5", "info": null, "row": 168, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-4.873302683119837, 48.911938557662076, 0]}}, {"type": "Feature", "properties": {"id": "4a4c4177-236e-40ee-ab69-c0a1e8f2794a", "info": null, "row": 210, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.4885361044806251, 48.441156574476274, 0]}}, {"type": "Feature", "properties": {"id": "06ca8c5f-71db-4736-b87d-56173499df57", "info": null, "row": 210, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.666272713761153, 48.464462839079694, 0]}}, {"type": "Feature", "properties": {"id": "48f67879-a448-49b6-8e40-184d6bb05bc2", "info": null, "row": 210, "col": 134}, "geometry": {"type": "Point", "coordinates": [-1.8441708239764358, 48.48749470983539, 0]}}, {"type": "Feature", "properties": {"id": "b0fba735-b0db-4f99-a495-f9f272f7b8c5", "info": null, "row": 210, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.022228814959198, 48.51025172475517, 0]}}, {"type": "Feature", "properties": {"id": "3c0c769b-ac55-4dd5-b233-4356f32e0c82", "info": null, "row": 210, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.200445050371303, 48.53273342579753, 0]}}, {"type": "Feature", "properties": {"id": "bb411331-61e3-4c09-8c1f-8b5b5b50be74", "info": null, "row": 210, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.3788178790891643, 48.55493935910013, 0]}}, {"type": "Feature", "properties": {"id": "89fb08a4-598c-45f7-b9c8-0ebb97f1e4bb", "info": null, "row": 210, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.5573456358784066, 48.576869075112306, 0]}}, {"type": "Feature", "properties": {"id": "c816a382-f113-4f96-ac9d-92c9bfee8901", "info": null, "row": 210, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.7360266417410735, 48.59852212868197, 0]}}, {"type": "Feature", "properties": {"id": "2b7a2f3c-a4a4-45a7-b30e-ccae1296e344", "info": null, "row": 210, "col": 536}, "geometry": {"type": "Point", "coordinates": [-2.914859204150821, 48.61989807912611, 0]}}, {"type": "Feature", "properties": {"id": "36749391-a295-4e77-8e99-5074d8fcfff4", "info": null, "row": 210, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.0938416172792937, 48.640996490298676, 0]}}, {"type": "Feature", "properties": {"id": "dc8ba377-6c53-4f8f-973b-e676a7b8e102", "info": null, "row": 210, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.272972162248503, 48.66181693065948, 0]}}, {"type": "Feature", "properties": {"id": "2cd1f820-b883-4c07-a78c-30b9d59ed29f", "info": null, "row": 210, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.4522491074035226, 48.68235897334374, 0]}}, {"type": "Feature", "properties": {"id": "62cfbdcc-130b-4002-af02-3be4aff3627c", "info": null, "row": 210, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.6316707085818027, 48.70262219622885, 0]}}, {"type": "Feature", "properties": {"id": "99933fac-fd80-4fab-b259-2aaa56783504", "info": null, "row": 210, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.811235209353005, 48.72260618199596, 0]}}, {"type": "Feature", "properties": {"id": "d127ca20-5e2d-411e-8a27-badd06d0abb1", "info": null, "row": 210, "col": 938}, "geometry": {"type": "Point", "coordinates": [-3.9909408412111658, 48.74231051818445, 0]}}, {"type": "Feature", "properties": {"id": "4ef48c10-3d1c-4188-97af-e148361f8231", "info": null, "row": 210, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.170785823718644, 48.76173479724004, 0]}}, {"type": "Feature", "properties": {"id": "8d771cb4-ee1e-4d8d-b6bb-d924a79af0dd", "info": null, "row": 210, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.350768364621937, 48.780878616558944, 0]}}, {"type": "Feature", "properties": {"id": "d7067e66-b7b8-4210-a7d9-1981e667f8fd", "info": null, "row": 210, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.530886659986432, 48.7997415785336, 0]}}, {"type": "Feature", "properties": {"id": "3f6f226e-4e40-4cb1-8a30-e2404cd1b83a", "info": null, "row": 210, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.711138894424473, 48.81832329060706, 0]}}, {"type": "Feature", "properties": {"id": "d8f2414e-5e3c-4492-bc59-7256de663dd4", "info": null, "row": 210, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-4.891523119665167, 48.8366236312101, 0]}}, {"type": "Feature", "properties": {"id": "4d270e62-0802-4865-b654-e6b75f0437c2", "info": null, "row": 252, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.511716614116343, 48.365903889637366, 0]}}, {"type": "Feature", "properties": {"id": "17a1bc93-366b-44d1-a4e7-78f8918bfcbe", "info": null, "row": 252, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.6891938625635563, 48.38919998774885, 0]}}, {"type": "Feature", "properties": {"id": "4de7d72f-c283-4768-8a51-bb4ec9e0a4b4", "info": null, "row": 252, "col": 134}, "geometry": {"type": "Point", "coordinates": [-1.8668319033680525, 48.412222408486656, 0]}}, {"type": "Feature", "properties": {"id": "d55342d6-d92f-4983-9e48-9742eb354b6d", "info": null, "row": 252, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.044629125157363, 48.43497069159546, 0]}}, {"type": "Feature", "properties": {"id": "7a96e694-19bd-4f60-b214-4ea6d6b23105", "info": null, "row": 252, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.2225839008115336, 48.45744438079045, 0]}}, {"type": "Feature", "properties": {"id": "2d0f1e53-3873-4f4e-a230-7b8366399779", "info": null, "row": 252, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.400694588779529, 48.47964302397835, 0]}}, {"type": "Feature", "properties": {"id": "8c70d42a-f320-4910-8fc7-21c8a76aecb1", "info": null, "row": 252, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.5789595337063447, 48.501566173381995, 0]}}, {"type": "Feature", "properties": {"id": "750e61ef-e394-44dc-b1c9-3d442541392c", "info": null, "row": 252, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.7573770667467197, 48.52321338562112, 0]}}, {"type": "Feature", "properties": {"id": "81f2abdd-f4b0-4deb-a132-7bcd10dca5e6", "info": null, "row": 252, "col": 536}, "geometry": {"type": "Point", "coordinates": [-2.9359455057757953, 48.544584221778315, 0]}}, {"type": "Feature", "properties": {"id": "7759d8d9-31fd-4495-92fb-4094e6ed650a", "info": null, "row": 252, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.1146631555965048, 48.565678247463296, 0]}}, {"type": "Feature", "properties": {"id": "7385e0d8-91ad-4f73-bf76-e7480290284a", "info": null, "row": 252, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.293528308176043, 48.58649503287864, 0]}}, {"type": "Feature", "properties": {"id": "9e0fe5a2-b782-4f7f-b95c-60ecdb706d09", "info": null, "row": 252, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.4725392429041952, 48.607034152886385, 0]}}, {"type": "Feature", "properties": {"id": "1ae90660-ff47-415a-bdd4-d26b557eb0c0", "info": null, "row": 252, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.6516942268491923, 48.627295187072505, 0]}}, {"type": "Feature", "properties": {"id": "54a6a399-18f9-45b1-a921-2359eeb54b81", "info": null, "row": 252, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.8309915149844103, 48.647277719805835, 0]}}, {"type": "Feature", "properties": {"id": "53279307-d1b1-4c66-9242-36353b3a0e39", "info": null, "row": 252, "col": 938}, "geometry": {"type": "Point", "coordinates": [-4.010429350368418, 48.66698134029056, 0]}}, {"type": "Feature", "properties": {"id": "9a27dfd4-763b-4dbf-95c8-35dbcacc3c9e", "info": null, "row": 252, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.1900059642778995, 48.686405642612286, 0]}}, {"type": "Feature", "properties": {"id": "4482b472-4fa8-493d-aa86-9f28abed9551", "info": null, "row": 252, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.3697195763147, 48.70555022578066, 0]}}, {"type": "Feature", "properties": {"id": "4bd5b8c8-3363-40af-a022-b946cf4ed733", "info": null, "row": 252, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.5495683945351955, 48.724414693773895, 0]}}, {"type": "Feature", "properties": {"id": "103f64eb-a5b2-4231-88bf-2c22c9439c0d", "info": null, "row": 252, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.729550615677551, 48.74299865559256, 0]}}, {"type": "Feature", "properties": {"id": "845af153-c595-4830-8db7-c3486e38bd19", "info": null, "row": 252, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-4.909664304212976, 48.761301990492456, 0]}}, {"type": "Feature", "properties": {"id": "180cdc6e-5b43-4dab-92f7-d9048c1b62c6", "info": null, "row": 294, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.5348971237520599, 48.29065120479846, 0]}}, {"type": "Feature", "properties": {"id": "fbced7f2-7ed2-481c-8464-46fab09fe1e8", "info": null, "row": 294, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.7121150113659596, 48.313937136418026, 0]}}, {"type": "Feature", "properties": {"id": "16fc5a84-675e-402e-8c73-ccbf99a841cc", "info": null, "row": 294, "col": 134}, "geometry": {"type": "Point", "coordinates": [-1.889492982759669, 48.33695010713791, 0]}}, {"type": "Feature", "properties": {"id": "2c2fe6e0-5506-4c40-95f8-9071c2f0d162", "info": null, "row": 294, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.0670294353555283, 48.359689658435755, 0]}}, {"type": "Feature", "properties": {"id": "c96f8646-a47a-4dfb-b7a1-d0a9dbf722ed", "info": null, "row": 294, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.244722751251763, 48.38215533578335, 0]}}, {"type": "Feature", "properties": {"id": "ecc67128-28f0-4c1a-8ae8-89b735999f44", "info": null, "row": 294, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.4225712984698933, 48.40434668885658, 0]}}, {"type": "Feature", "properties": {"id": "4908b795-b84f-4aa1-a23d-5e13e7d493c8", "info": null, "row": 294, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.6005734315342823, 48.42626327165168, 0]}}, {"type": "Feature", "properties": {"id": "6aa6c5b2-dc9b-4cec-83bc-df754db228e6", "info": null, "row": 294, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.778727491752366, 48.44790464256025, 0]}}, {"type": "Feature", "properties": {"id": "e7a442ff-a385-4a51-8bb0-ef914adbfd34", "info": null, "row": 294, "col": 536}, "geometry": {"type": "Point", "coordinates": [-2.9570318074007704, 48.469270364430514, 0]}}, {"type": "Feature", "properties": {"id": "c1824278-8b60-4415-af21-1e26cbd3a14b", "info": null, "row": 294, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.1354846939137158, 48.49036000462793, 0]}}, {"type": "Feature", "properties": {"id": "25942269-75bb-45f1-b666-a4ba5842c1ac", "info": null, "row": 294, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.3140844541035834, 48.51117313509779, 0]}}, {"type": "Feature", "properties": {"id": "ec27ecb0-18c4-41bd-8aaf-400400c2ca6e", "info": null, "row": 294, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.4928293784048674, 48.53170933242903, 0]}}, {"type": "Feature", "properties": {"id": "9a8a7ab6-659a-405a-8d8d-798a6b324605", "info": null, "row": 294, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.6717177451165814, 48.55196817791615, 0]}}, {"type": "Feature", "properties": {"id": "34219341-bdd7-4ba1-82e7-e7d317e6ea48", "info": null, "row": 294, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.850747820615816, 48.57194925761572, 0]}}, {"type": "Feature", "properties": {"id": "0fe908f6-4531-4d5f-9c9f-f79817458cfb", "info": null, "row": 294, "col": 938}, "geometry": {"type": "Point", "coordinates": [-4.02991785952567, 48.591652162396684, 0]}}, {"type": "Feature", "properties": {"id": "353539b0-76f0-49ad-ae8b-5b2c699de490", "info": null, "row": 294, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.209226104837155, 48.611076487984526, 0]}}, {"type": "Feature", "properties": {"id": "91deddf7-a7b1-4df5-80e9-7b55b21e84a7", "info": null, "row": 294, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.388670788007463, 48.630221835002374, 0]}}, {"type": "Feature", "properties": {"id": "6cbf86e0-2dc2-433c-bfeb-30747d3fef9d", "info": null, "row": 294, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.568250129083959, 48.649087809014176, 0]}}, {"type": "Feature", "properties": {"id": "c3e3f440-6279-4c25-b81d-b197909858e0", "info": null, "row": 294, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.74796233693063, 48.66767402057804, 0]}}, {"type": "Feature", "properties": {"id": "e92b1ae0-088f-4892-a0a0-e60073af4f5d", "info": null, "row": 294, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-4.927805488760786, 48.6859803497748, 0]}}, {"type": "Feature", "properties": {"id": "cf5bd66e-475f-451f-b7ea-2880a58c2806", "info": null, "row": 336, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.5580343197739535, 48.21539796495774, 0]}}, {"type": "Feature", "properties": {"id": "337503b1-58e1-4bc1-a1b3-bb67b688025f", "info": null, "row": 336, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.7349944916063391, 48.238673774093876, 0]}}, {"type": "Feature", "properties": {"id": "61e4a1dc-74bb-4646-a414-56c8d2e24bc0", "info": null, "row": 336, "col": 134}, "geometry": {"type": "Point", "coordinates": [-1.9121140773941334, 48.261677340185074, 0]}}, {"type": "Feature", "properties": {"id": "4f9cc03a-af96-4b7b-899b-b29cfc03b4a8", "info": null, "row": 336, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.089391480254863, 48.284408205889434, 0]}}, {"type": "Feature", "properties": {"id": "a1bb8ac9-aa54-4110-b67a-bcff26291e1e", "info": null, "row": 336, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.2668250887435253, 48.30686591794609, 0]}}, {"type": "Feature", "properties": {"id": "7574004b-8cbe-4862-b6a9-cca0c6c1aac2", "info": null, "row": 336, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.4444132780048724, 48.32905002736767, 0]}}, {"type": "Feature", "properties": {"id": "53437774-5fba-4146-9265-b001d61845cf", "info": null, "row": 336, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.622154410271144, 48.35096008954172, 0]}}, {"type": "Feature", "properties": {"id": "44de7c6b-52ee-41db-bbcf-635c67dc2d60", "info": null, "row": 336, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.8000468350718575, 48.37259566429265, 0]}}, {"type": "Feature", "properties": {"id": "dc3119bc-5af9-4348-90cc-ef3730b560d9", "info": null, "row": 336, "col": 536}, "geometry": {"type": "Point", "coordinates": [-2.978088889359663, 48.39395631593254, 0]}}, {"type": "Feature", "properties": {"id": "ea803a36-5e67-420c-a74e-fb1e3e3b2213", "info": null, "row": 336, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.1562788976473883, 48.41504161331216, 0]}}, {"type": "Feature", "properties": {"id": "1057019e-2288-487e-97c3-ff5c6715a523", "info": null, "row": 336, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.334615172185134, 48.435851129876006, 0]}}, {"type": "Feature", "properties": {"id": "a88aa837-95a5-4f81-93d0-b9c13e88d04d", "info": null, "row": 336, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.5130960131678712, 48.45638444371945, 0]}}, {"type": "Feature", "properties": {"id": "e8194bb3-0047-4780-9af6-3ddbfe97a6e4", "info": null, "row": 336, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.69171970894762, 48.47664113764516, 0]}}, {"type": "Feature", "properties": {"id": "708d88d7-0f42-4ebb-91e6-8110a57949fb", "info": null, "row": 336, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.870484536222035, 48.49662079921508, 0]}}, {"type": "Feature", "properties": {"id": "0e512661-f76a-4236-9fc8-2372d0de0558", "info": null, "row": 336, "col": 938}, "geometry": {"type": "Point", "coordinates": [-4.049388760181625, 48.51632302079674, 0]}}, {"type": "Feature", "properties": {"id": "9ef3577b-1749-4811-a88c-8fd4841a84d2", "info": null, "row": 336, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.228430634613957, 48.5357473996041, 0]}}, {"type": "Feature", "properties": {"id": "2708a8fb-435e-41c7-9201-a082857ac679", "info": null, "row": 336, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.407608401986248, 48.55489353773555, 0]}}, {"type": "Feature", "properties": {"id": "827df7c9-34fb-436d-acd4-63a73121198c", "info": null, "row": 336, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.586920293554129, 48.57376104221443, 0]}}, {"type": "Feature", "properties": {"id": "2c42dca6-92eb-4b6f-a3e6-5b71bafac874", "info": null, "row": 336, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.766364529571817, 48.59234952503939, 0]}}, {"type": "Feature", "properties": {"id": "980a6738-3040-4c03-bc3e-0e13df667765", "info": null, "row": 336, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-4.945939199270296, 48.6106588670092, 0]}}, {"type": "Feature", "properties": {"id": "7b4aeb4d-8f20-40fa-9cb9-faf1b51e6063", "info": null, "row": 378, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.5811642968602093, 48.14014463261673, 0]}}, {"type": "Feature", "properties": {"id": "d5128f04-b19c-4cd4-9b0d-b06e3e779ccb", "info": null, "row": 378, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.757867027086382, 48.163410326604186, 0]}}, {"type": "Feature", "properties": {"id": "3231815f-0b4f-4631-bdbf-48e86263cbf4", "info": null, "row": 378, "col": 134}, "geometry": {"type": "Point", "coordinates": [-1.9347285079024064, 48.18640449563156, 0]}}, {"type": "Feature", "properties": {"id": "c1fc75b2-d2e8-4253-84bd-236d5d129b85", "info": null, "row": 378, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.1117471476043925, 48.20912668344535, 0]}}, {"type": "Feature", "properties": {"id": "11f6818b-dcf8-402a-82df-1eb7c2e356a9", "info": null, "row": 378, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.288921340743875, 48.23157643797047, 0]}}, {"type": "Feature", "properties": {"id": "e93eac2e-4059-4a37-a0ae-097b093c7023", "info": null, "row": 378, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.4662494691806214, 48.25375331148426, 0]}}, {"type": "Feature", "properties": {"id": "68356b2f-8be9-4415-9c62-dbb8b8e82de1", "info": null, "row": 378, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.643729902492826, 48.2756568607018, 0]}}, {"type": "Feature", "properties": {"id": "fb87422b-a1dd-46f0-b7a1-85fb88b6b524", "info": null, "row": 378, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.821360998110324, 48.297286646823935, 0]}}, {"type": "Feature", "properties": {"id": "2b54c4bd-7740-46f5-8f3e-5296a64dc5e4", "info": null, "row": 378, "col": 536}, "geometry": {"type": "Point", "coordinates": [-2.9991411013742075, 48.31864223557621, 0]}}, {"type": "Feature", "properties": {"id": "2595ffe1-8358-44b9-b184-bc38b4429a4c", "info": null, "row": 378, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.1770685456171375, 48.339723197249675, 0]}}, {"type": "Feature", "properties": {"id": "e2a9a27c-e932-4a68-b11a-6259c99d2ec4", "info": null, "row": 378, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.3551416522923536, 48.3605291067474, 0]}}, {"type": "Feature", "properties": {"id": "12ec24ef-c8f9-4a6b-8943-c0f79ce48948", "info": null, "row": 378, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.5333587311412624, 48.38105954363449, 0]}}, {"type": "Feature", "properties": {"id": "debb3395-9f2f-4588-a348-87d73fc1f9de", "info": null, "row": 378, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.711718080372599, 48.401314092188386, 0]}}, {"type": "Feature", "properties": {"id": "d2c62d48-e29c-4fa7-ad7c-05606139d54c", "info": null, "row": 378, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.890217986824057, 48.421292341446005, 0]}}, {"type": "Feature", "properties": {"id": "79937096-7bdf-4c81-bde3-0b0524bc4818", "info": null, "row": 378, "col": 938}, "geometry": {"type": "Point", "coordinates": [-4.068856726087362, 48.44099388524578, 0]}}, {"type": "Feature", "properties": {"id": "3f9d93f7-5d16-4d97-8f3c-475349dfcd02", "info": null, "row": 378, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.247632562593683, 48.4604183222649, 0]}}, {"type": "Feature", "properties": {"id": "addb672d-3640-455b-a8b9-6138d0af16c9", "info": null, "row": 378, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.426543749679367, 48.47956525605399, 0]}}, {"type": "Feature", "properties": {"id": "f0143c85-ad2a-4821-9dc3-ad16c17311a1", "info": null, "row": 378, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.605588529677863, 48.498434295074645, 0]}}, {"type": "Feature", "properties": {"id": "c710e400-bd5f-47b4-b70a-764a06666f85", "info": null, "row": 378, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.784765134111021, 48.51702505274672, 0]}}, {"type": "Feature", "properties": {"id": "8f3d0a6d-039a-46ad-9464-f55d80d11759", "info": null, "row": 378, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-4.964071664106755, 48.53533741056895, 0]}}, {"type": "Feature", "properties": {"id": "492100fa-f983-4c1a-84e1-26560402c498", "info": null, "row": 420, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.6039088409861886, 48.064843188151066, 0]}}, {"type": "Feature", "properties": {"id": "a03f9c29-2f4b-429c-8793-4b993625f3f3", "info": null, "row": 420, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.780355873626281, 48.08809949884625, 0]}}, {"type": "Feature", "properties": {"id": "391c5c45-c359-45ed-9a97-c45c80a6394c", "info": null, "row": 420, "col": 134}, "geometry": {"type": "Point", "coordinates": [-1.9569609688576834, 48.11108499416125, 0]}}, {"type": "Feature", "properties": {"id": "741f1001-b726-40b3-842d-2c5ebd0eb163", "info": null, "row": 420, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.1337225433720697, 48.133799219491465, 0]}}, {"type": "Feature", "properties": {"id": "90bf65cf-d8a8-4100-8af4-d9336c465ab0", "info": null, "row": 420, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.3106390005328903, 48.15624172443583, 0]}}, {"type": "Feature", "properties": {"id": "154d26b6-6a52-4ec0-8bb6-897c85676f12", "info": null, "row": 420, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.487708731375353, 48.178412062961655, 0]}}, {"type": "Feature", "properties": {"id": "f1f2426d-1a24-408f-8775-832287e47688", "info": null, "row": 420, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.664930114974481, 48.20030979348227, 0]}}, {"type": "Feature", "properties": {"id": "9040b9f8-13c4-4f34-8bab-7001e675b1e8", "info": null, "row": 420, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.8423015185438727, 48.22193447889888, 0]}}, {"type": "Feature", "properties": {"id": "f563539a-4778-4813-b118-48fc8750edb0", "info": null, "row": 420, "col": 536}, "geometry": {"type": "Point", "coordinates": [-3.0198212974671286, 48.243285686634295, 0]}}, {"type": "Feature", "properties": {"id": "a4dcd11b-4549-4123-9514-aaa12f1263b8", "info": null, "row": 420, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.1974877953547636, 48.26436298866948, 0]}}, {"type": "Feature", "properties": {"id": "a2ff2634-6139-4110-bf55-d23db78f62f3", "info": null, "row": 420, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.3752993441535604, 48.28516596158629, 0]}}, {"type": "Feature", "properties": {"id": "801181a0-eab7-4f31-a4f7-c3f0b4adc89a", "info": null, "row": 420, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.5532542642976135, 48.30569418661455, 0]}}, {"type": "Feature", "properties": {"id": "92c6e97e-2de0-4ae9-92de-c0f981978065", "info": null, "row": 420, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.7313508648734994, 48.32594724967956, 0]}}, {"type": "Feature", "properties": {"id": "70a61142-c112-4052-af6e-f5688c96a014", "info": null, "row": 420, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.9095874437699645, 48.34592474144707, 0]}}, {"type": "Feature", "properties": {"id": "0841aae1-fdb4-42f7-9eea-90081a3b36a3", "info": null, "row": 420, "col": 938}, "geometry": {"type": "Point", "coordinates": [-4.087962287792585, 48.365626257363246, 0]}}, {"type": "Feature", "properties": {"id": "133686f0-41ad-4532-ba46-7fa59edd6545", "info": null, "row": 420, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.266473672740087, 48.38505139769014, 0]}}, {"type": "Feature", "properties": {"id": "8f78485d-99ef-488a-bc6d-bbfe1981b10a", "info": null, "row": 420, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.445119863461738, 48.40419976753881, 0]}}, {"type": "Feature", "properties": {"id": "b26e1f29-f7a8-4cb6-96b5-57ec67b7576b", "info": null, "row": 420, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.623899113941374, 48.42307097690531, 0]}}, {"type": "Feature", "properties": {"id": "7acf723d-5ebc-484d-b858-7557c8e7f1b3", "info": null, "row": 420, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.802809667480644, 48.44166464071656, 0]}}, {"type": "Feature", "properties": {"id": "c00df08a-5694-419d-9540-52f556ac848e", "info": null, "row": 420, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-4.981849637571072, 48.45998064125312, 0]}}, {"type": "Feature", "properties": {"id": "931cfa1d-0e6f-49d5-abfd-afdca212decb", "info": null, "row": 462, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.6262232924134203, 47.98948805685617, 0]}}, {"type": "Feature", "properties": {"id": "04367bf7-97a3-4541-98ed-ac4c6496ec7b", "info": null, "row": 462, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.8024165735654647, 48.01273580091496, 0]}}, {"type": "Feature", "properties": {"id": "c9e7f267-d657-4ad5-af66-99bf1f66cd24", "info": null, "row": 462, "col": 134}, "geometry": {"type": "Point", "coordinates": [-1.9787672018230953, 48.03571342968309, 0]}}, {"type": "Feature", "properties": {"id": "22e22763-87b3-4790-8285-ade63532ff76", "info": null, "row": 462, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.1552736058632727, 48.05842049083019, 0]}}, {"type": "Feature", "properties": {"id": "3ad6dd7d-437d-4a04-bf0e-10524a41ff7c", "info": null, "row": 462, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.3319342010029596, 48.08085653617414, 0]}}, {"type": "Feature", "properties": {"id": "ec95dda7-0a0a-405f-aedf-0945e2f73966", "info": null, "row": 462, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.5087473901983204, 48.10302112184668, 0]}}, {"type": "Feature", "properties": {"id": "9345c484-ad77-4fc5-91f7-dd5e66406495", "info": null, "row": 462, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.6857115644212963, 48.12491380837312, 0]}}, {"type": "Feature", "properties": {"id": "e39006b9-744e-40bd-ac9d-a78c39a9e5cf", "info": null, "row": 462, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.8628251027709295, 48.14653416071647, 0]}}, {"type": "Feature", "properties": {"id": "c3aff3b1-6066-4452-bc11-db1ec97a353a", "info": null, "row": 462, "col": 536}, "geometry": {"type": "Point", "coordinates": [-3.0400863725190423, 48.16788174831353, 0]}}, {"type": "Feature", "properties": {"id": "40ad7619-898c-40ac-be55-4200357fcb98", "info": null, "row": 462, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.2174937291809784, 48.188956145113615, 0]}}, {"type": "Feature", "properties": {"id": "8f1c381b-d6de-473b-8188-e196496998c7", "info": null, "row": 462, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.3950455166369737, 48.2097569296232, 0]}}, {"type": "Feature", "properties": {"id": "fa840df1-d676-4875-8c79-ae0e1fb36b45", "info": null, "row": 462, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.5727400672928846, 48.23028368495433, 0]}}, {"type": "Feature", "properties": {"id": "c254c3e7-ce99-47c9-9f95-a2c934bac866", "info": null, "row": 462, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.750575702252569, 48.25053599887336, 0]}}, {"type": "Feature", "properties": {"id": "5187744e-d044-4445-9f4b-2e900344f534", "info": null, "row": 462, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.9285507314723986, 48.27051346384655, 0]}}, {"type": "Feature", "properties": {"id": "8d5f0929-bd7f-42a4-8c68-2b71213bf04e", "info": null, "row": 462, "col": 938}, "geometry": {"type": "Point", "coordinates": [-4.1066634538785936, 48.29021567708047, 0]}}, {"type": "Feature", "properties": {"id": "82a85807-64c5-4c58-8024-6f4f4f3513d1", "info": null, "row": 462, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.2849121574452775, 48.309642240557835, 0]}}, {"type": "Feature", "properties": {"id": "0d3a5f6e-8752-4a8b-88a7-5da564c50bce", "info": null, "row": 462, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.463295119253018, 48.328792761070765, 0]}}, {"type": "Feature", "properties": {"id": "4c4fa2f6-610d-484f-b0d7-3fa3b2ba9e96", "info": null, "row": 462, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.6418106055749595, 48.34766685025713, 0]}}, {"type": "Feature", "properties": {"id": "56090295-4f05-4e01-a653-af2637b88fa3", "info": null, "row": 462, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.820456872064061, 48.366264124646854, 0]}}, {"type": "Feature", "properties": {"id": "74caaac5-91bc-4f0e-aaba-650c138f6cc2", "info": null, "row": 462, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-4.9992320450961945, 48.38458446739354, 0]}}, {"type": "Feature", "properties": {"id": "70f0d175-d597-44c0-9c9e-9a639076712c", "info": null, "row": 504, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.6485351548657252, 47.914133086415774, 0]}}, {"type": "Feature", "properties": {"id": "c76745b6-a623-4f1f-a95c-39e22ffae1cd", "info": null, "row": 504, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.8244748743179002, 47.93737226902251, 0]}}, {"type": "Feature", "properties": {"id": "be90841e-f534-4b67-aa8f-32a045ce131c", "info": null, "row": 504, "col": 134}, "geometry": {"type": "Point", "coordinates": [-2.0005712275503087, 47.960342036268166, 0]}}, {"type": "Feature", "properties": {"id": "87be8720-4e39-46fc-831e-5335b28961ca", "info": null, "row": 504, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.176822655083373, 47.983041938071416, 0]}}, {"type": "Feature", "properties": {"id": "da54d408-2fed-469f-bf7e-0cb71eed8cd9", "info": null, "row": 504, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.35322758405736, 48.005471528446215, 0]}}, {"type": "Feature", "properties": {"id": "510d057e-2e23-41f5-9c53-e4340e4781fb", "info": null, "row": 504, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.529784429231599, 48.027630365668294, 0]}}, {"type": "Feature", "properties": {"id": "0851c04c-3400-42cb-8448-c3e81d2f054c", "info": null, "row": 504, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.706491593369031, 48.04951801235668, 0]}}, {"type": "Feature", "properties": {"id": "bfa53672-da52-4980-b524-66bc3baa7464", "info": null, "row": 504, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.883347467358982, 48.0711340355199, 0]}}, {"type": "Feature", "properties": {"id": "230a7ab1-ab0a-40d0-81f5-d7e34c93dc78", "info": null, "row": 504, "col": 536}, "geometry": {"type": "Point", "coordinates": [-3.0603504302756104, 48.09247800659415, 0]}}, {"type": "Feature", "properties": {"id": "75aa11d9-60a9-467b-86a2-99165192a7ba", "info": null, "row": 504, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.2374988494609735, 48.113549501484, 0]}}, {"type": "Feature", "properties": {"id": "fe51c4fc-c30d-431e-a9fa-defab922e117", "info": null, "row": 504, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.414791080657091, 48.13434810060861, 0]}}, {"type": "Feature", "properties": {"id": "f078feb1-c78e-4bfa-8013-6d52f23cd5ea", "info": null, "row": 504, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.5922254681752652, 48.15487338895138, 0]}}, {"type": "Feature", "properties": {"id": "4d597940-d065-469e-abaf-b8b37cc71d29", "info": null, "row": 504, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.7698003450748656, 48.1751249561098, 0]}}, {"type": "Feature", "properties": {"id": "633b196c-b7ce-4ec8-9dbc-d60fb0639d8f", "info": null, "row": 504, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.9475140333221, 48.19510239634144, 0]}}, {"type": "Feature", "properties": {"id": "bf425944-baf4-4e6a-9835-92e68dc70dcc", "info": null, "row": 504, "col": 938}, "geometry": {"type": "Point", "coordinates": [-4.1253648439097015, 48.214805308604916, 0]}}, {"type": "Feature", "properties": {"id": "f098452c-588c-43b8-8b0f-4bff337dac98", "info": null, "row": 504, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.303351076936454, 48.23423329659587, 0]}}, {"type": "Feature", "properties": {"id": "87c23cee-308c-478f-b6ba-78a4e4be39cf", "info": null, "row": 504, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.481471021666597, 48.25338596878039, 0]}}, {"type": "Feature", "properties": {"id": "93e86c25-1cdb-460d-810e-12940ce5a6ed", "info": null, "row": 504, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.659722956617521, 48.27226293843155, 0]}}, {"type": "Feature", "properties": {"id": "41d381f4-40c2-4650-9dad-897e06b71bb4", "info": null, "row": 504, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.838105149750065, 48.290863823676176, 0]}}, {"type": "Feature", "properties": {"id": "bbf71354-8eb3-4b7f-9d00-33dd38893d86", "info": null, "row": 504, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-5.01661574028024, 48.3091885085353, 0]}}, {"type": "Feature", "properties": {"id": "fa8e0f03-1d78-423c-864c-760fdbef2fcc", "info": null, "row": 546, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.670820217928924, 47.838779781037026, 0]}}, {"type": "Feature", "properties": {"id": "370980b1-3d06-472c-a188-024fa35dfbdd", "info": null, "row": 546, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.8465083402453455, 47.862010455856534, 0]}}, {"type": "Feature", "properties": {"id": "39a2684b-48a0-4a03-9149-8167abc8a9d1", "info": null, "row": 546, "col": 134}, "geometry": {"type": "Point", "coordinates": [-2.0223524053794186, 47.88497241358904, 0]}}, {"type": "Feature", "properties": {"id": "fe74b00f-d820-4924-9046-2cdbcbc3657e", "info": null, "row": 546, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.198350864226934, 47.90766520614123, 0]}}, {"type": "Feature", "properties": {"id": "a6c3169f-ae78-4aef-8753-a3a576caf1e8", "info": null, "row": 546, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.374502154403632, 47.930088389486734, 0]}}, {"type": "Feature", "properties": {"id": "14d76af8-7d62-422a-aada-42b31498c8b7", "info": null, "row": 546, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.5508047012526887, 47.95224152383348, 0]}}, {"type": "Feature", "properties": {"id": "d480d1d4-c0fb-49df-a649-d5fdb4412109", "info": null, "row": 546, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.727256918231688, 47.97412417370525, 0]}}, {"type": "Feature", "properties": {"id": "3b72946f-53e2-420d-9115-05314f764f91", "info": null, "row": 546, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.903857207035185, 47.99573590798752, 0]}}, {"type": "Feature", "properties": {"id": "9954a3cb-4cb7-41fa-82d8-644957ccf9e2", "info": null, "row": 546, "col": 536}, "geometry": {"type": "Point", "coordinates": [-3.0806039576506263, 48.01707629996493, 0]}}, {"type": "Feature", "properties": {"id": "b7ba403a-7d48-489e-bd5e-95868f98b109", "info": null, "row": 546, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.2574955484382166, 48.03814492736133, 0]}}, {"type": "Feature", "properties": {"id": "6a06cf99-8f03-464a-aa1d-19c1b2c3677a", "info": null, "row": 546, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.4345303462598453, 48.05894137238528, 0]}}, {"type": "Feature", "properties": {"id": "e600971e-80b8-4d15-8c23-bbfb765ca3d8", "info": null, "row": 546, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.6117067066458404, 48.079465221779216, 0]}}, {"type": "Feature", "properties": {"id": "6045c853-5289-46a1-a909-344c8636a165", "info": null, "row": 546, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.7890229739716568, 48.09971606686863, 0]}}, {"type": "Feature", "properties": {"id": "2db033a1-fbe4-4cbd-b36c-9022117aed33", "info": null, "row": 546, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.966477481615129, 48.119693503607834, 0]}}, {"type": "Feature", "properties": {"id": "cfc136cd-cb1a-4f9a-b656-f24860276ed0", "info": null, "row": 546, "col": 938}, "geometry": {"type": "Point", "coordinates": [-4.144068552075221, 48.139397132620495, 0]}}, {"type": "Feature", "properties": {"id": "74472983-54cd-43fc-b270-ae611a2fb1e8", "info": null, "row": 546, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.321794497050138, 48.15882655923518, 0]}}, {"type": "Feature", "properties": {"id": "937155c0-bb59-485f-a180-847d38a99803", "info": null, "row": 546, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.499653617494781, 48.17798139351838, 0]}}, {"type": "Feature", "properties": {"id": "f87b5398-22f1-496f-ae74-01c9361d51b0", "info": null, "row": 546, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.677644203704336, 48.196861250310384, 0]}}, {"type": "Feature", "properties": {"id": "7601f8fe-6cde-4995-bd74-ff08a9733435", "info": null, "row": 546, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.855764535497994, 48.215465749271154, 0]}}, {"type": "Feature", "properties": {"id": "7a5dc826-7d6b-4c5c-b4f7-80ee4e6974c0", "info": null, "row": 546, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-5.034012764474216, 48.23379477523159, 0]}}, {"type": "Feature", "properties": {"id": "f5cb50d5-2bc2-4235-932d-da12b77edf2f", "info": null, "row": 588, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.6931052809921228, 47.763426475658264, 0]}}, {"type": "Feature", "properties": {"id": "1f7c803c-4915-4703-8fef-5085d5c68b9c", "info": null, "row": 588, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.868541806172791, 47.786648642690565, 0]}}, {"type": "Feature", "properties": {"id": "8bff2e22-3814-48c1-a917-0cd67ef8f142", "info": null, "row": 588, "col": 134}, "geometry": {"type": "Point", "coordinates": [-2.0441335832085294, 47.80960279090991, 0]}}, {"type": "Feature", "properties": {"id": "0c9300e1-fe4f-4598-ba0b-022918702283", "info": null, "row": 588, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.219879073370496, 47.83228847421103, 0]}}, {"type": "Feature", "properties": {"id": "43753f4d-6495-4677-9095-31b031657488", "info": null, "row": 588, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.395776724749903, 47.85470525052725, 0]}}, {"type": "Feature", "properties": {"id": "44331905-f22a-4b41-b106-b08553465f6d", "info": null, "row": 588, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.5718249732737775, 47.87685268199866, 0]}}, {"type": "Feature", "properties": {"id": "280fd100-6bcd-47e5-b44c-0afee2a7e865", "info": null, "row": 588, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.7480222430943457, 47.89873033505382, 0]}}, {"type": "Feature", "properties": {"id": "c5acc071-3248-456d-86b8-3be99a43b31e", "info": null, "row": 588, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.924366946711388, 47.92033778045512, 0]}}, {"type": "Feature", "properties": {"id": "9580cf87-b9f0-499f-af3b-7343cb6c89a7", "info": null, "row": 588, "col": 536}, "geometry": {"type": "Point", "coordinates": [-3.1008574850256423, 47.94167459333569, 0]}}, {"type": "Feature", "properties": {"id": "c60d2b9c-bd89-4d07-af17-f7b3f7346f61", "info": null, "row": 588, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.277492247415459, 47.962740353238644, 0]}}, {"type": "Feature", "properties": {"id": "fd1cf754-877d-46f8-8d0d-319fab02924a", "info": null, "row": 588, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.454269611862599, 47.98353464416195, 0]}}, {"type": "Feature", "properties": {"id": "70f5f62e-d138-4789-b305-11a7ec779144", "info": null, "row": 588, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.6311879451164155, 48.00405705460703, 0]}}, {"type": "Feature", "properties": {"id": "d8d6d8c7-87d2-49e3-b53b-8bba4d99838c", "info": null, "row": 588, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.8082456028684475, 48.02430717762747, 0]}}, {"type": "Feature", "properties": {"id": "0008fa94-ad91-4b2c-ad2c-768259177dfe", "info": null, "row": 588, "col": 871}, "geometry": {"type": "Point", "coordinates": [-3.9854409299081572, 48.04428461087423, 0]}}, {"type": "Feature", "properties": {"id": "e19949b3-0936-4718-a1d5-4e52c8b296ab", "info": null, "row": 588, "col": 938}, "geometry": {"type": "Point", "coordinates": [-4.16277226024074, 48.063988956636074, 0]}}, {"type": "Feature", "properties": {"id": "e707daa4-c928-4dd0-9664-192adba5ffc8", "info": null, "row": 588, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.340237917163823, 48.08341982187447, 0]}}, {"type": "Feature", "properties": {"id": "4092c78c-176f-450d-b784-49226d9726e1", "info": null, "row": 588, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.517836213322963, 48.10257681825636, 0]}}, {"type": "Feature", "properties": {"id": "ca47ddc4-6497-43ac-b6a3-7216ba793b7d", "info": null, "row": 588, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.695565450791151, 48.12145956218921, 0]}}, {"type": "Feature", "properties": {"id": "fc9b19f8-3d2b-409e-9af3-20ea36b7fe5d", "info": null, "row": 588, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.873423921245924, 48.140067674866124, 0]}}, {"type": "Feature", "properties": {"id": "d53ff8fa-a8df-4c8c-8ed7-c178002f953a", "info": null, "row": 588, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-5.051409788668193, 48.15840104192787, 0]}}, {"type": "Feature", "properties": {"id": "fea70cb1-f196-4c58-a839-3d31654e1dde", "info": null, "row": 630, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.7152152863887888, 47.68805388254289, 0]}}, {"type": "Feature", "properties": {"id": "1b7ce6ad-8051-43d6-a369-6a973a25ac1e", "info": null, "row": 630, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.8904013629012855, 47.711267790616006, 0]}}, {"type": "Feature", "properties": {"id": "ddf9eacf-5b2c-4da4-a22b-7dc8f4916a79", "info": null, "row": 630, "col": 134}, "geometry": {"type": "Point", "coordinates": [-2.065742046410758, 47.73421438160008, 0]}}, {"type": "Feature", "properties": {"id": "789a9243-e454-4275-81de-80859642794d", "info": null, "row": 630, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.241235804692628, 47.75689321068209, 0]}}, {"type": "Feature", "properties": {"id": "40e0c5ce-ae2d-471a-8fbf-49fca53ab460", "info": null, "row": 630, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.4168810929192905, 47.77930383714532, 0]}}, {"type": "Feature", "properties": {"id": "cd379a83-c989-478a-8502-c8a40b1ea0e9", "info": null, "row": 630, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.592676354612207, 47.80144582452533, 0]}}, {"type": "Feature", "properties": {"id": "21f7b892-a86a-405c-a570-340925e4db74", "info": null, "row": 630, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.7686200219739634, 47.823318740680946, 0]}}, {"type": "Feature", "properties": {"id": "8028886e-6f68-4290-bade-f917aa34ca08", "info": null, "row": 630, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.944710515959865, 47.84492215783028, 0]}}, {"type": "Feature", "properties": {"id": "1b3350d3-b656-4505-94c5-d61228145fc0", "info": null, "row": 630, "col": 536}, "geometry": {"type": "Point", "coordinates": [-3.1209462462866604, 47.86625565257934, 0]}}, {"type": "Feature", "properties": {"id": "ef4c4d3f-56e2-4376-95aa-ea1bf7d2b2e1", "info": null, "row": 630, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.2973256114702343, 47.887318805954294, 0]}}, {"type": "Feature", "properties": {"id": "02ab92a1-49a0-4d2b-97de-f4c08fa0a69a", "info": null, "row": 630, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.4738469989180927, 47.90811120344038, 0]}}, {"type": "Feature", "properties": {"id": "b42fedc7-e148-4910-a548-a3b1ab594bfe", "info": null, "row": 630, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.650508785065356, 47.928632435025264, 0]}}, {"type": "Feature", "properties": {"id": "921f4640-ea8c-4420-8380-1d11063a63ed", "info": null, "row": 630, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.8273093355258467, 47.948882095243604, 0]}}, {"type": "Feature", "properties": {"id": "f904a112-23b0-4ac4-8b4e-c9ba1a5c6ea1", "info": null, "row": 630, "col": 871}, "geometry": {"type": "Point", "coordinates": [-4.0042470052286925, 47.968859783218704, 0]}}, {"type": "Feature", "properties": {"id": "7d59fbba-2fd1-4e6f-b225-8ffc475f4ee7", "info": null, "row": 630, "col": 938}, "geometry": {"type": "Point", "coordinates": [-4.181320138520394, 47.98856510269985, 0]}}, {"type": "Feature", "properties": {"id": "e40b3a6e-1360-469a-82ec-4230de7b206d", "info": null, "row": 630, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.3585270692287255, 48.00799766209479, 0]}}, {"type": "Feature", "properties": {"id": "39106b7c-2acf-4b4a-84fe-4891fe164b8c", "info": null, "row": 630, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.535866120707415, 48.02715707450015, 0]}}, {"type": "Feature", "properties": {"id": "e2336535-d5d3-4f1f-9502-015c45ba6e16", "info": null, "row": 630, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.713335605905627, 48.04604295773468, 0]}}, {"type": "Feature", "properties": {"id": "240a5555-e4ad-40d6-b8f0-ad9974789b5d", "info": null, "row": 630, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.890933827535004, 48.06465493438223, 0]}}, {"type": "Feature", "properties": {"id": "1a07e63b-679b-4ecc-8a83-32ecd13844a8", "info": null, "row": 630, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-5.068658961197885, 48.082992890766135, 0]}}, {"type": "Feature", "properties": {"id": "ba200ea7-dd58-4cdd-bee4-833d874ec4de", "info": null, "row": 672, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.737251536524936, 47.61267316312225, 0]}}, {"type": "Feature", "properties": {"id": "7535340b-52fb-4b42-9a15-a943ca3756a9", "info": null, "row": 672, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.9121876482413893, 47.63587891707235, 0]}}, {"type": "Feature", "properties": {"id": "1830d574-272b-4a9e-b34d-25e53f88aa15", "info": null, "row": 672, "col": 134}, "geometry": {"type": "Point", "coordinates": [-2.0872777415214587, 47.6588180571108, 0]}}, {"type": "Feature", "properties": {"id": "041ae6ee-a4f2-40a9-8ace-03e0833c8f45", "info": null, "row": 672, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.2625202890138554, 47.68149013942372, 0]}}, {"type": "Feature", "properties": {"id": "b262dca9-e81d-4b1c-9400-8e37f83f490d", "info": null, "row": 672, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.437913751542072, 47.70389472438743, 0]}}, {"type": "Feature", "properties": {"id": "13a13dd9-5bd7-4df6-b2f7-31a388ab4cca", "info": null, "row": 672, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.613456578962511, 47.72603137670686, 0]}}, {"type": "Feature", "properties": {"id": "440330e7-d7f8-474f-8007-9d9dad2b72d6", "info": null, "row": 672, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.7891472104140256, 47.747899665471124, 0]}}, {"type": "Feature", "properties": {"id": "93822fe3-92a6-476f-9bc0-f1090b92feaa", "info": null, "row": 672, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.964984074317472, 47.76949916417662, 0]}}, {"type": "Feature", "properties": {"id": "c09e99e6-9b92-416f-984a-beffe15bbfd3", "info": null, "row": 672, "col": 536}, "geometry": {"type": "Point", "coordinates": [-3.140965588321985, 47.79082945074403, 0]}}, {"type": "Feature", "properties": {"id": "1446ab5f-c423-45e6-9452-7844bdc99991", "info": null, "row": 672, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.317090159288641, 47.811890107540925, 0]}}, {"type": "Feature", "properties": {"id": "04f059f9-e3aa-4342-913d-999152b414a7", "info": null, "row": 672, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.4933561833369238, 47.83268072141243, 0]}}, {"type": "Feature", "properties": {"id": "1b023bc8-c2bb-471b-8ca0-d9a6baf79fd6", "info": null, "row": 672, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.6697620459417313, 47.853200883717626, 0]}}, {"type": "Feature", "properties": {"id": "f237b28b-ecfa-4b62-b171-b0b60f77d0d3", "info": null, "row": 672, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.8463061220519297, 47.87345019036814, 0]}}, {"type": "Feature", "properties": {"id": "6ae4f7ff-3347-4f3d-b02f-102d557df8dc", "info": null, "row": 672, "col": 871}, "geometry": {"type": "Point", "coordinates": [-4.022986776200412, 47.89342824186511, 0]}}, {"type": "Feature", "properties": {"id": "bb0929e3-4367-40f7-86d6-4355649be674", "info": null, "row": 672, "col": 938}, "geometry": {"type": "Point", "coordinates": [-4.199802362584175, 47.913134643332164, 0]}}, {"type": "Feature", "properties": {"id": "d114f0a0-1460-400f-b816-ad0412831100", "info": null, "row": 672, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.37675122511064, 47.932569004544646, 0]}}, {"type": "Feature", "properties": {"id": "c759c3c5-73b9-4763-9505-211a44a187da", "info": null, "row": 672, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.553831697427759, 47.951730939957045, 0]}}, {"type": "Feature", "properties": {"id": "d8458352-8678-43ec-8182-a1e41322f855", "info": null, "row": 672, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.731042102980996, 47.970620068733595, 0]}}, {"type": "Feature", "properties": {"id": "7d530e93-8888-4b3d-af8a-386448a8278d", "info": null, "row": 672, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.9083807551688325, 47.98923601478897, 0]}}, {"type": "Feature", "properties": {"id": "dcd34d67-549d-47c7-8952-40d61eebbbb5", "info": null, "row": 672, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-5.085845840894403, 48.007578665075386, 0]}}, {"type": "Feature", "properties": {"id": "7abf5565-9d60-4d24-a3a4-95d7d84e9084", "info": null, "row": 714, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.7592724515602076, 47.53729205509513, 0]}}, {"type": "Feature", "properties": {"id": "6fcc2d21-9c9d-4742-9ed4-a61b9d10c1c6", "info": null, "row": 714, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.9339598233058177, 47.56048975295033, 0]}}, {"type": "Feature", "properties": {"id": "e31e1109-cbf1-4e22-8e61-6a89d5d351a3", "info": null, "row": 714, "col": 134}, "geometry": {"type": "Point", "coordinates": [-2.1088005212613976, 47.583421532806035, 0]}}, {"type": "Feature", "properties": {"id": "c8774df8-cee7-4d95-9cb9-15076cb20e68", "info": null, "row": 714, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.283793026142779, 47.606086952420014, 0]}}, {"type": "Feature", "properties": {"id": "cbabc86d-23b1-4c94-86cf-c85de5cb8e36", "info": null, "row": 714, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.4589358072126974, 47.62848557376123, 0]}}, {"type": "Feature", "properties": {"id": "699e6d0d-521c-42f8-b213-41276982e6d8", "info": null, "row": 714, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.634227323098995, 47.65061696314096, 0]}}, {"type": "Feature", "properties": {"id": "e59863e7-67b3-4cef-baed-64abaf382c26", "info": null, "row": 714, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.8096660220101928, 47.67248069126191, 0]}}, {"type": "Feature", "properties": {"id": "5871fe32-998b-44a4-a463-44196caa775b", "info": null, "row": 714, "col": 469}, "geometry": {"type": "Point", "coordinates": [-2.9852503417059415, 47.69407633323581, 0]}}, {"type": "Feature", "properties": {"id": "a32d03fc-42dd-4712-af8c-92a2429ba8c7", "info": null, "row": 714, "col": 536}, "geometry": {"type": "Point", "coordinates": [-3.160978709418111, 47.71540346859583, 0]}}, {"type": "Feature", "properties": {"id": "d71839c6-b4d2-4135-a51e-09863b190579", "info": null, "row": 714, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.3368495418126547, 47.736461681314985, 0]}}, {"type": "Feature", "properties": {"id": "e44afa8e-7824-4009-8ee5-f438ad098dc7", "info": null, "row": 714, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.5128612450170134, 47.75725055983339, 0]}}, {"type": "Feature", "properties": {"id": "aaee9893-3e4a-40a5-87be-f52993b128b9", "info": null, "row": 714, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.6890122147007096, 47.77776969709153, 0]}}, {"type": "Feature", "properties": {"id": "108fdbb5-5450-4c31-8ded-a9eb79c2b3dd", "info": null, "row": 714, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.8653008361797547, 47.798018690566266, 0]}}, {"type": "Feature", "properties": {"id": "daddcc4b-4f7d-4f0d-8ea5-06a8620d4b93", "info": null, "row": 714, "col": 871}, "geometry": {"type": "Point", "coordinates": [-4.041725484514861, 47.81799714230571, 0]}}, {"type": "Feature", "properties": {"id": "25a1cdf6-ddfa-4e36-b8bf-a53aa93ecad6", "info": null, "row": 714, "col": 938}, "geometry": {"type": "Point", "coordinates": [-4.2182845245815255, 47.83770465896009, 0]}}, {"type": "Feature", "properties": {"id": "5c4df539-f73d-4ee8-9cc9-cb4e4109924e", "info": null, "row": 714, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.394976311108305, 47.857140851809525, 0]}}, {"type": "Feature", "properties": {"id": "11445e6b-6673-4328-9f03-f60b2c82f8ac", "info": null, "row": 714, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.571799188700563, 47.876305336790026, 0]}}, {"type": "Feature", "properties": {"id": "dc843c73-52b7-475c-8d62-6db55117664f", "info": null, "row": 714, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.748751491892596, 47.895197734522995, 0]}}, {"type": "Feature", "properties": {"id": "6cee8e9c-39e4-4a36-b194-c3af36bfd7b5", "info": null, "row": 714, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.92583154529958, 47.91381767035498, 0]}}, {"type": "Feature", "properties": {"id": "bc7adbd2-2627-41de-976b-c1e418bd78a2", "info": null, "row": 714, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-5.103037547607307, 47.93216503196167, 0]}}, {"type": "Feature", "properties": {"id": "436df181-cf03-4b8d-af6e-09c9dd761384", "info": null, "row": 756, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.7812606364548058, 47.46191011765424, 0]}}, {"type": "Feature", "properties": {"id": "f38d29c2-1bfe-4a6d-baaa-553603595946", "info": null, "row": 756, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.9557018824087287, 47.4850999686387, 0]}}, {"type": "Feature", "properties": {"id": "9ec4a00a-577f-41b0-b836-341390207c10", "info": null, "row": 756, "col": 134}, "geometry": {"type": "Point", "coordinates": [-2.1302957353592626, 47.508024582029414, 0]}}, {"type": "Feature", "properties": {"id": "89dd3ae6-4e23-4280-b8cd-84a9e17b8ffe", "info": null, "row": 756, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.3050406909060404, 47.53068351837771, 0]}}, {"type": "Feature", "properties": {"id": "45a0bcb5-598c-4fe6-92d4-4e71dcdeebe8", "info": null, "row": 756, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.479935232701855, 47.553076342311634, 0]}}, {"type": "Feature", "properties": {"id": "8dc15898-1aa9-436b-bfcc-7f62b90cb7ef", "info": null, "row": 756, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.6549778333462832, 47.57520262268142, 0]}}, {"type": "Feature", "properties": {"id": "95f85c4d-46ff-4b52-8258-5a2570182148", "info": null, "row": 756, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.8301669546708803, 47.59706193262118, 0]}}, {"type": "Feature", "properties": {"id": "759f0418-4e7e-4f2c-be7d-5a26b5f9a805", "info": null, "row": 756, "col": 469}, "geometry": {"type": "Point", "coordinates": [-3.0055010477722233, 47.618653849577676, 0]}}, {"type": "Feature", "properties": {"id": "34bb2a9d-3888-40bb-b0a1-db1ca4431b49", "info": null, "row": 756, "col": 536}, "geometry": {"type": "Point", "coordinates": [-3.1809785529872943, 47.63997795533205, 0]}}, {"type": "Feature", "properties": {"id": "0dcef6d9-d841-45aa-8b3e-c06cf9631962", "info": null, "row": 756, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.356597899902368, 47.66103383602643, 0]}}, {"type": "Feature", "properties": {"id": "ec1db204-b0c9-41b0-9d5f-82f961114917", "info": null, "row": 756, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.532357507418892, 47.6818210821975, 0]}}, {"type": "Feature", "properties": {"id": "25057945-23fe-4110-9fb2-d94bc5a52bd8", "info": null, "row": 756, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.7082557838658445, 47.70233928881553, 0]}}, {"type": "Feature", "properties": {"id": "a5282cc5-fe99-4264-85dc-a8128316c6c9", "info": null, "row": 756, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.884291127129209, 47.72258805532443, 0]}}, {"type": "Feature", "properties": {"id": "818860b4-fa8b-4670-9f74-844b8925b3d2", "info": null, "row": 756, "col": 871}, "geometry": {"type": "Point", "coordinates": [-4.060461924769763, 47.74256698568019, 0]}}, {"type": "Feature", "properties": {"id": "8122fffe-7ff1-4780-aaf3-dbe76c1d4c33", "info": null, "row": 756, "col": 938}, "geometry": {"type": "Point", "coordinates": [-4.236766554108736, 47.76227568838464, 0]}}, {"type": "Feature", "properties": {"id": "9e6ebffd-251d-4d9c-a522-505006506686", "info": null, "row": 756, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.413203382278395, 47.7817137765154, 0]}}, {"type": "Feature", "properties": {"id": "e5b54252-4592-43c1-b14a-a0bb927ef0d7", "info": null, "row": 756, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.589770766256981, 47.80088086775403, 0]}}, {"type": "Feature", "properties": {"id": "e52dd367-c3e1-4953-82a5-2d1a0add6bb6", "info": null, "row": 756, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.766467052932277, 47.81977658441745, 0]}}, {"type": "Feature", "properties": {"id": "a40cf058-c0b7-490d-88b5-841dc4c8f14b", "info": null, "row": 756, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.943290579267035, 47.83840055349974, 0]}}, {"type": "Feature", "properties": {"id": "05c2d49c-0d54-4456-b266-3df9d3d95c65", "info": null, "row": 756, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-5.1202395567581656, 47.85675266360192, 0]}}, {"type": "Feature", "properties": {"id": "ff42e570-edc4-4c96-a690-65052aba8179", "info": null, "row": 798, "col": 0}, "geometry": {"type": "Point", "coordinates": [-1.8032488213494045, 47.38652818021336, 0]}}, {"type": "Feature", "properties": {"id": "bbefce5b-3cb6-49e5-be69-d847c1e117e5", "info": null, "row": 798, "col": 67}, "geometry": {"type": "Point", "coordinates": [-1.9774439415116396, 47.40971018432706, 0]}}, {"type": "Feature", "properties": {"id": "be24c13f-f4df-403b-89cf-8bb253feb5d7", "info": null, "row": 798, "col": 134}, "geometry": {"type": "Point", "coordinates": [-2.1517909494571272, 47.43262763125279, 0]}}, {"type": "Feature", "properties": {"id": "4d1b3fcd-afb8-41e2-a124-bea9e1cf7432", "info": null, "row": 798, "col": 201}, "geometry": {"type": "Point", "coordinates": [-2.326288355669302, 47.455280084335406, 0]}}, {"type": "Feature", "properties": {"id": "7b5f3b28-d630-46b1-89f1-7a5a75b4ab29", "info": null, "row": 798, "col": 268}, "geometry": {"type": "Point", "coordinates": [-2.5009346581910123, 47.47766711086204, 0]}}, {"type": "Feature", "properties": {"id": "d379e24f-fde5-40d5-9428-56caec4c9bf9", "info": null, "row": 798, "col": 335}, "geometry": {"type": "Point", "coordinates": [-2.675728343593571, 47.49978828222186, 0]}}, {"type": "Feature", "properties": {"id": "e5753491-22d2-4085-b91e-1eb04f707e02", "info": null, "row": 798, "col": 402}, "geometry": {"type": "Point", "coordinates": [-2.8506678873315696, 47.52164317398045, 0]}}, {"type": "Feature", "properties": {"id": "cba5253a-5f99-444f-ac9f-59dbba5f07bf", "info": null, "row": 798, "col": 469}, "geometry": {"type": "Point", "coordinates": [-3.025751753838504, 47.543231365919546, 0]}}, {"type": "Feature", "properties": {"id": "b3cb5e79-a717-428b-9422-dd810f07f197", "info": null, "row": 798, "col": 536}, "geometry": {"type": "Point", "coordinates": [-3.2009783965564775, 47.564552442068276, 0]}}, {"type": "Feature", "properties": {"id": "20358bc1-8d2c-49a6-84b2-45fcd8814da0", "info": null, "row": 798, "col": 603}, "geometry": {"type": "Point", "coordinates": [-3.376346257992081, 47.585605990737854, 0]}}, {"type": "Feature", "properties": {"id": "fc1c560c-851a-42c6-8f23-d7566f5087a7", "info": null, "row": 798, "col": 670}, "geometry": {"type": "Point", "coordinates": [-3.55185376982077, 47.606391604561644, 0]}}, {"type": "Feature", "properties": {"id": "f3e2cb45-1a26-415d-b526-f26666139b79", "info": null, "row": 798, "col": 737}, "geometry": {"type": "Point", "coordinates": [-3.727499353030979, 47.62690888053954, 0]}}, {"type": "Feature", "properties": {"id": "8616f53d-73d8-466d-8437-31b45de23faa", "info": null, "row": 798, "col": 804}, "geometry": {"type": "Point", "coordinates": [-3.9032814180786626, 47.6471574200826, 0]}}, {"type": "Feature", "properties": {"id": "b020a1f6-2939-471c-b952-68d0623e6996", "info": null, "row": 798, "col": 871}, "geometry": {"type": "Point", "coordinates": [-4.0791983650246655, 47.66713682905467, 0]}}, {"type": "Feature", "properties": {"id": "e5eff83d-db80-4f0e-98bc-9cabbcfa59c6", "info": null, "row": 798, "col": 938}, "geometry": {"type": "Point", "coordinates": [-4.255248583635947, 47.68684671780918, 0]}}, {"type": "Feature", "properties": {"id": "92fd3e45-7c88-48b4-bbb4-97ce283d4b4b", "info": null, "row": 798, "col": 1005}, "geometry": {"type": "Point", "coordinates": [-4.431430453448485, 47.70628670122127, 0]}}, {"type": "Feature", "properties": {"id": "637225fa-58ac-44db-949d-c7728fc9b9f6", "info": null, "row": 798, "col": 1072}, "geometry": {"type": "Point", "coordinates": [-4.607742343813399, 47.72545639871804, 0]}}, {"type": "Feature", "properties": {"id": "f4a0d8c5-7099-4cb1-9b16-b5b867211b4a", "info": null, "row": 798, "col": 1139}, "geometry": {"type": "Point", "coordinates": [-4.784182613971958, 47.7443554343119, 0]}}, {"type": "Feature", "properties": {"id": "714618bc-67d2-4584-b010-0d4430af8bdf", "info": null, "row": 798, "col": 1206}, "geometry": {"type": "Point", "coordinates": [-4.9607496132344915, 47.762983436644504, 0]}}, {"type": "Feature", "properties": {"id": "b71e8589-adc6-45f1-8a8d-574f936f6cc6", "info": null, "row": 798, "col": 1273}, "geometry": {"type": "Point", "coordinates": [-5.137441565909025, 47.78134029524216, 0]}}]}
array(0)
- sigma0_ocean(pol, line, sample)float64dask.array<chunksize=(1, 834, 1329), meta=np.ndarray>
Array Chunk Bytes 16.91 MiB 8.46 MiB Shape (2, 834, 1329) (1, 834, 1329) Dask graph 2 chunks in 50 graph layers Data type float64 numpy.ndarray - ocean_mask(line, sample)int8dask.array<chunksize=(834, 1329), meta=np.ndarray>
- history :
- ocean_mask: /home1/scratch/agrouaze/xsardatasync/xsardata/water-polygons-split-4326/water_polygons.shp
- meaning :
- 0: ocean , 1: land
Array Chunk Bytes 1.06 MiB 1.06 MiB Shape (834, 1329) (834, 1329) Dask graph 1 chunks in 3 graph layers Data type int8 numpy.ndarray
- linePandasIndex
PandasIndex(Index([ 9.5, 29.5, 49.5, 69.5, 89.5, 109.5, 129.5, 149.5, 169.5, 189.5, ... 16489.5, 16509.5, 16529.5, 16549.5, 16569.5, 16589.5, 16609.5, 16629.5, 16649.5, 16669.5], dtype='float64', name='line', length=834))
- samplePandasIndex
PandasIndex(Index([ 9.5, 29.5, 49.5, 69.5, 89.5, 109.5, 129.5, 149.5, 169.5, 189.5, ... 26389.5, 26409.5, 26429.5, 26449.5, 26469.5, 26489.5, 26509.5, 26529.5, 26549.5, 26569.5], dtype='float64', name='sample', length=1329))
- polPandasIndex
PandasIndex(Index(['VV', 'VH'], dtype='object', name='pol'))
- name :
- SENTINEL1_DS:/home1/scratch/agrouaze/xsardatasync/xsardata/S1B_IW_GRDH_1SDV_20181013T062322_20181013T062347_013130_018428_Z010.SAFE:IW
- short_name :
- SENTINEL1_DS:S1B_IW_GRDH_1SDV_20181013T062322_20181013T062347_013130_018428_Z010.SAFE:IW
- product :
- GRDH
- safe :
- S1B_IW_GRDH_1SDV_20181013T062322_20181013T062347_013130_018428_Z010.SAFE
- swath :
- IW
- multidataset :
- False
- ipf :
- 2.91
- platform :
- SENTINEL-1B
- pols :
- VV VH
- start_date :
- 2018-10-13 06:23:22.317102
- stop_date :
- 2018-10-13 06:23:47.315227
- footprint :
- POLYGON ((-1.371244242212007 48.8181227490355, -4.952180073180092 49.22908720976283, -5.299019842440263 47.73223932854375, -1.820918145395446 47.32222709505006, -1.371244242212007 48.8181227490355))
- coverage :
- 168km * 265km (line * sample )
- orbit_pass :
- Descending
- platform_heading :
- -165.3526446468305
Masks are available as a shapely object (lon/lat coordinates), with xsar.BaseMeta.get_mask:
When using this s1meta
object with xsar.Sentinel1Meta.footprint, mask are rasterized over the dataset, and variables postfixed with _mask
are created.
Convert a mask to dataset coordinates
xsar.BaseMeta.ll2coords allow converting lon/lat coordinates on shapely objects.
So it’s possible to plot the vector mask on a raster variable:
[4]:
import holoviews as hv
import geoviews.feature as gf
hv.extension('bokeh')
from holoviews.operation.datashader import datashade,rasterize
# get the shapely polygon of the mask (on the footprint, lon/lat)
land_poly = s1meta.get_mask('ocean')
# convert lon/lat to line/sample
land_poly_coords = s1meta.ll2coords(s1meta.get_mask('ocean'))
# plot masked sigma0, with coastline
(
hv.Image(ds['sigma0_ocean'].sel(pol='VV')).opts(cmap='gray',clim=(0,0.2), colorbar=True,tools=['hover'],title="xsar") \
* hv.Path(land_poly_coords).opts(color='lightgreen',width=800,height=800)
).opts(invert_axes=True)
/home/datawork-cersat-public/cache/project/mpc-sentinel1/workspace/mamba/envs/testgeoviewsnumpy/lib/python3.11/site-packages/dask/dataframe/__init__.py:42: FutureWarning:
Dask dataframe query planning is disabled because dask-expr is not installed.
You can install it with `pip install dask[dataframe]` or `conda install dask`.
This will raise in a future version.
warnings.warn(msg, FutureWarning)
[4]: