Download this notebook from github.
Raster masks from vector masks
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
[1]:
import xarray as xr
import xsar
import numpy as np
import os
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']
[1]:
<xarray.DataArray 'sigma0_land' (pol: 2, line: 166, sample: 265)> dask.array<transpose, shape=(2, 166, 265), dtype=float64, chunksize=(1, 166, 265), chunktype=numpy.ndarray> Coordinates: * pol (pol) object 'VV' 'VH' * line (line) float64 49.5 149.5 249.5 ... 1.645e+04 1.655e+04 * sample (sample) float64 49.5 149.5 249.5 ... 2.635e+04 2.645e+04 spatial_ref int64 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) Count 64 Tasks 2 Chunks Type float64 numpy.ndarray - pol(pol)object'VV' 'VH'
array(['VV', 'VH'], dtype=object)
- 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])
- 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
- 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': '1c46cb4c-34e4-4025-86f8-1eefe02a43ac', 'info': None, 'row': 0, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.379214057853953, 48.81454912692077, 0]}}, {'type': 'Feature', 'properties': {'id': 'b292bb2b-b75f-4b7a-a5b3-59dfe05e6027', 'info': None, 'row': 0, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.5662771440212606, 48.838930744723065, 0]}}, {'type': 'Feature', 'properties': {'id': '7b6bdfb4-0dc0-4cf8-b755-34595d812a79', 'info': None, 'row': 0, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-1.7535200662051666, 48.86300967379876, 0]}}, {'type': 'Feature', 'properties': {'id': '4cc9caaa-d1a0-4051-897a-bcf24970af7e', 'info': None, 'row': 0, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-1.9409409075553916, 48.88678537660847, 0]}}, {'type': 'Feature', 'properties': {'id': '256fd231-7faf-413b-ad02-f288da0ea3f9', 'info': None, 'row': 0, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.128537734028091, 48.910257320866506, 0]}}, {'type': 'Feature', 'properties': {'id': '9930e457-e41e-4c28-ac4d-cff00d22dd07', 'info': None, 'row': 0, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.3163085955404563, 48.93342497973738, 0]}}, {'type': 'Feature', 'properties': {'id': 'f6678244-aa0e-4189-81f1-03f28fada003', 'info': None, 'row': 0, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.5042515264105436, 48.956287831934794, 0]}}, {'type': 'Feature', 'properties': {'id': '1f5a04fe-fcaa-45c9-b715-ab28d7a5cf8d', 'info': None, 'row': 0, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-2.6923645455129264, 48.97884536178284, 0]}}, {'type': 'Feature', 'properties': {'id': '1ae15cb4-9fb8-4d80-9f46-26d0d86d7ba3', 'info': None, 'row': 0, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-2.8806456563772023, 49.00109705926963, 0]}}, {'type': 'Feature', 'properties': {'id': '73e5ec9c-60f1-414c-92d5-8ac5f47ffd3d', 'info': None, 'row': 0, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.0690928473266323, 49.023042420105135, 0]}}, {'type': 'Feature', 'properties': {'id': 'f4572c1e-8caf-469c-a3b6-16da0059d95c', 'info': None, 'row': 0, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.25770409167556, 49.04468094578513, 0]}}, {'type': 'Feature', 'properties': {'id': '53a32cbf-33a9-4d8f-97a7-11fdac6855c5', 'info': None, 'row': 0, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.4464773479625634, 49.0660121436579, 0]}}, {'type': 'Feature', 'properties': {'id': '9adcb6d9-df61-4504-b56b-b8471759c032', 'info': None, 'row': 0, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.635410560181458, 49.08703552698893, 0]}}, {'type': 'Feature', 'properties': {'id': 'c71ae84b-4dba-4eb3-a8c3-8cf785564043', 'info': None, 'row': 0, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-3.8245016579765414, 49.107750615020194, 0]}}, {'type': 'Feature', 'properties': {'id': '19abc3e1-0243-4020-9e8c-b9ed71307a7f', 'info': None, 'row': 0, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.013748556785357, 49.12815693302261, 0]}}, {'type': 'Feature', 'properties': {'id': 'efd3653f-6e7c-4236-a1a0-4b9cea08d829', 'info': None, 'row': 0, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.203149157939329, 49.14825401234333, 0]}}, {'type': 'Feature', 'properties': {'id': '933cdc7d-0a9e-4fc8-8a6d-30dbf4b736f6', 'info': None, 'row': 0, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.392701348766073, 49.16804139045296, 0]}}, {'type': 'Feature', 'properties': {'id': '12b1e7ee-2bd6-4a30-a6c9-e89e5fb2b60a', 'info': None, 'row': 0, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.5824030027735985, 49.18751861100096, 0]}}, {'type': 'Feature', 'properties': {'id': '0787ee81-a58a-47be-bea1-7cd0573d25c7', 'info': None, 'row': 0, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-4.772251980036686, 49.206685223890105, 0]}}, {'type': 'Feature', 'properties': {'id': 'cf3bb0c1-e41a-478e-ae58-d447af363e09', 'info': None, 'row': 9, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.40386392566942, 48.73388407466552, 0]}}, {'type': 'Feature', 'properties': {'id': 'db7244b7-25d7-4e2c-93dd-5b45228d4096', 'info': None, 'row': 9, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.5906316541852483, 48.758254655133484, 0]}}, {'type': 'Feature', 'properties': {'id': '8e1f8cb7-92b2-4a36-98de-5243b260f50b', 'info': None, 'row': 9, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-1.7775783379032633, 48.78232338753852, 0]}}, {'type': 'Feature', 'properties': {'id': '30d80aa7-ee58-4a13-ba39-bdfe0a817448', 'info': None, 'row': 9, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-1.9647020747312283, 48.806089737138926, 0]}}, {'type': 'Feature', 'properties': {'id': 'fed9b8c8-60fb-4490-9f3c-816803781521', 'info': None, 'row': 9, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.1520009454114835, 48.829553174386156, 0]}}, {'type': 'Feature', 'properties': {'id': 'ac89c537-6c02-4ad2-8275-d563f7d04485', 'info': None, 'row': 9, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.339473014687071, 48.852713175123625, 0]}}, {'type': 'Feature', 'properties': {'id': '0c1350eb-dec5-46f0-bf85-43a692a7358e', 'info': None, 'row': 9, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.527116331755447, 48.87556922068794, 0]}}, {'type': 'Feature', 'properties': {'id': '0e58585c-94d5-42b5-8eea-9cb0d0f94f02', 'info': None, 'row': 9, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-2.714928930437724, 48.89812079797202, 0]}}, {'type': 'Feature', 'properties': {'id': '69235277-cc90-4719-9004-f54aae9c78de', 'info': None, 'row': 9, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-2.9029088292889558, 48.92036739948048, 0]}}, {'type': 'Feature', 'properties': {'id': '583cd23d-02a4-4cea-969c-f6c1dbdc38da', 'info': None, 'row': 9, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.0910540317456556, 48.94230852338858, 0]}}, {'type': 'Feature', 'properties': {'id': 'eacc02ac-6faa-4779-97e6-7ad1d1719111', 'info': None, 'row': 9, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.279362526329117, 48.96394367360703, 0]}}, {'type': 'Feature', 'properties': {'id': 'de92e200-21d7-413d-8ad0-1b094e428477', 'info': None, 'row': 9, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.4678322868815585, 48.985272359848906, 0]}}, {'type': 'Feature', 'properties': {'id': 'cda1c2b7-65e1-47dd-a5f2-41654d06b381', 'info': None, 'row': 9, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.6564612727980004, 49.00629409769461, 0]}}, {'type': 'Feature', 'properties': {'id': '84a431fe-57fc-4927-9b12-36879cfa58fc', 'info': None, 'row': 9, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-3.845247429220892, 49.02700840865097, 0]}}, {'type': 'Feature', 'properties': {'id': 'a7c3793b-2c6b-4402-a89e-8d3e9243aac1', 'info': None, 'row': 9, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.034188687182177, 49.04741482020363, 0]}}, {'type': 'Feature', 'properties': {'id': '598447b3-5c74-4861-9f25-8923affe4fba', 'info': None, 'row': 9, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.223282963704255, 49.067512865864295, 0]}}, {'type': 'Feature', 'properties': {'id': 'f2517011-2d59-40c2-ba99-7f3394287542', 'info': None, 'row': 9, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.412528161905239, 49.08730208521828, 0]}}, {'type': 'Feature', 'properties': {'id': 'deca02b4-5fac-49a7-a1d2-046ee75a69ee', 'info': None, 'row': 9, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.601922171190295, 49.106782023980486, 0]}}, {'type': 'Feature', 'properties': {'id': '4dbbee69-a04e-404a-8ced-41ab4f76e2a4', 'info': None, 'row': 9, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-4.791462867651338, 49.12595223407112, 0]}}, {'type': 'Feature', 'properties': {'id': 'edaf3481-dad2-402e-9715-d25e7226b653', 'info': None, 'row': 18, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.4285137934848873, 48.653219022410276, 0]}}, {'type': 'Feature', 'properties': {'id': '753014ab-1708-40fc-8c3e-2c0c23b709e4', 'info': None, 'row': 18, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.6149861643492358, 48.67757856554391, 0]}}, {'type': 'Feature', 'properties': {'id': '40968c8c-b839-4438-ba19-2051fa3d7f54', 'info': None, 'row': 18, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-1.8016366096013599, 48.701637101278294, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba563170-db0a-49cf-99c5-ddda32d85446', 'info': None, 'row': 18, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-1.988463241907065, 48.72539409766939, 0]}}, {'type': 'Feature', 'properties': {'id': 'b0eef9f4-97fa-448e-9143-343c0410a848', 'info': None, 'row': 18, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.1754641567948756, 48.7488490279058, 0]}}, {'type': 'Feature', 'properties': {'id': 'fb366a45-bd28-45d2-9547-5d17a8986860', 'info': None, 'row': 18, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.3626374338336853, 48.772001370509884, 0]}}, {'type': 'Feature', 'properties': {'id': 'd10fab1f-91fa-4dbc-aaf5-8b083ad438e4', 'info': None, 'row': 18, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.5499811371003496, 48.794850609441085, 0]}}, {'type': 'Feature', 'properties': {'id': 'cac9ceba-0475-4306-96f8-579472e090ea', 'info': None, 'row': 18, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-2.7374933153625225, 48.81739623416121, 0]}}, {'type': 'Feature', 'properties': {'id': 'd3ad7a31-04c0-49d0-8196-39b30915d101', 'info': None, 'row': 18, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-2.92517200220071, 48.83963773969134, 0]}}, {'type': 'Feature', 'properties': {'id': 'd2901fb9-a259-41be-90fa-f19943c42cc7', 'info': None, 'row': 18, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.1130152161646785, 48.86157462667204, 0]}}, {'type': 'Feature', 'properties': {'id': 'ee00b754-9085-4269-848e-fda58b2b932a', 'info': None, 'row': 18, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.301020960982674, 48.88320640142892, 0]}}, {'type': 'Feature', 'properties': {'id': 'b0914ed7-6882-405b-9342-5412a3294d68', 'info': None, 'row': 18, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.489187225800554, 48.90453257603992, 0]}}, {'type': 'Feature', 'properties': {'id': 'b10177e8-d9de-46d2-ad92-32a7fdc84b8e', 'info': None, 'row': 18, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.6775119854145424, 48.9255526684003, 0]}}, {'type': 'Feature', 'properties': {'id': 'be31b171-d0e2-4330-a6e2-e597b8ca8aba', 'info': None, 'row': 18, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-3.8659932004652426, 48.94626620228175, 0]}}, {'type': 'Feature', 'properties': {'id': '3c780a28-3841-4dad-b551-d4441a3a6084', 'info': None, 'row': 18, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.0546288175789975, 48.966672707384646, 0]}}, {'type': 'Feature', 'properties': {'id': '06a3339b-1e7b-4ff1-92be-df1d8215b97c', 'info': None, 'row': 18, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.243416769469181, 48.98677171938527, 0]}}, {'type': 'Feature', 'properties': {'id': '43657451-8309-421b-b219-c50cf5193f9d', 'info': None, 'row': 18, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.432354975044407, 49.0065627799836, 0]}}, {'type': 'Feature', 'properties': {'id': '0c47e1f0-205b-4e2c-88d8-bd804ca8aae5', 'info': None, 'row': 18, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.62144133960699, 49.02604543696001, 0]}}, {'type': 'Feature', 'properties': {'id': '83589642-d7c2-42e3-aba2-1665118f61b2', 'info': None, 'row': 18, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-4.8106737552659915, 49.04521924425213, 0]}}, {'type': 'Feature', 'properties': {'id': '76965b88-6c53-4d88-b631-7c0c3b7ff5ed', 'info': None, 'row': 27, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.4534358181348, 48.57259520556308, 0]}}, {'type': 'Feature', 'properties': {'id': '44aa52d7-809d-4398-868a-d3fc2902907d', 'info': None, 'row': 27, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.6396157105551457, 48.59694335093911, 0]}}, {'type': 'Feature', 'properties': {'id': 'ee967413-62d9-407d-aa1f-f9ee1ad10e27', 'info': None, 'row': 27, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-1.8259727558697012, 48.620991317063684, 0]}}, {'type': 'Feature', 'properties': {'id': '2d30445b-63dd-41e5-b351-2169936ffe09', 'info': None, 'row': 27, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.0125050861231424, 48.64473857562926, 0]}}, {'type': 'Feature', 'properties': {'id': '31ad3c71-1a87-48fd-9657-b03851dbcd5e', 'info': None, 'row': 27, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.199210815590717, 48.66818460328522, 0]}}, {'type': 'Feature', 'properties': {'id': '6e305c83-cba0-4b65-82f6-7ee604c99bd8', 'info': None, 'row': 27, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.386088042089758, 48.69132888186188, 0]}}, {'type': 'Feature', 'properties': {'id': '20c0647f-0d06-4496-b7b3-146930f2417b', 'info': None, 'row': 27, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.5731348475503086, 48.71417089849168, 0]}}, {'type': 'Feature', 'properties': {'id': '1e9c9cf1-8230-40d5-8eee-3992598ac642', 'info': None, 'row': 27, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-2.7603492982780784, 48.736710145688235, 0]}}, {'type': 'Feature', 'properties': {'id': 'ab2180a7-2d38-4cb3-8a53-4b7ab76f3a2c', 'info': None, 'row': 27, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-2.9477294451399367, 48.75894612141437, 0]}}, {'type': 'Feature', 'properties': {'id': '2000c679-e092-464b-b6cb-aa7e081b0026', 'info': None, 'row': 27, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.1352733237715964, 48.78087832915129, 0]}}, {'type': 'Feature', 'properties': {'id': '65020971-7742-4e7b-9f21-8b6393ca0a81', 'info': None, 'row': 27, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.322978954829369, 48.80250627797159, 0]}}, {'type': 'Feature', 'properties': {'id': '1f8d4acc-7809-4cbf-b0f5-54bdca777d43', 'info': None, 'row': 27, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.5108443442655854, 48.82382948261282, 0]}}, {'type': 'Feature', 'properties': {'id': '91ea4ae8-6c51-455f-8d97-3af68339dddc', 'info': None, 'row': 27, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.698867483592954, 48.844847463547936, 0]}}, {'type': 'Feature', 'properties': {'id': 'e32d704c-7831-4409-8b30-2a07723e120e', 'info': None, 'row': 27, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-3.887046350106366, 48.865559747048984, 0]}}, {'type': 'Feature', 'properties': {'id': 'e102c693-8634-497c-96a8-4993c62863b2', 'info': None, 'row': 27, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.07537890704856, 48.885965865243335, 0]}}, {'type': 'Feature', 'properties': {'id': '28421e8e-2e0d-4633-88d5-6a4896dbe4f5', 'info': None, 'row': 27, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.263863103731984, 48.906065356164234, 0]}}, {'type': 'Feature', 'properties': {'id': 'ee73ab98-955e-4794-a9d7-e426a362c17e', 'info': None, 'row': 27, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.452496875662853, 48.92585776380109, 0]}}, {'type': 'Feature', 'properties': {'id': '0f404f2a-b9d9-492f-8b43-3e1616baafc1', 'info': None, 'row': 27, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.641278144749724, 48.945342638158074, 0]}}, {'type': 'Feature', 'properties': {'id': '4067b063-0e9a-4309-a0c7-e141fedc4bb8', 'info': None, 'row': 27, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-4.830204819719027, 48.964519535332, 0]}}, {'type': 'Feature', 'properties': {'id': 'ea431a51-9429-4814-ba5c-894210b7d573', 'info': None, 'row': 36, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.4784138053755864, 48.49197986779844, 0]}}, {'type': 'Feature', 'properties': {'id': '384c1acc-824f-424e-ae39-2d0db648fc34', 'info': None, 'row': 36, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.6643018113925827, 48.516316541304384, 0]}}, {'type': 'Feature', 'properties': {'id': '6908c4e3-e843-4f4b-ae6d-9f9a479e378a', 'info': None, 'row': 36, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-1.8503660404455202, 48.54035386113308, 0]}}, {'type': 'Feature', 'properties': {'id': '10a0e54e-e96b-4ad8-9c78-76374e697fa1', 'info': None, 'row': 36, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.0366046449081106, 48.56409130278594, 0]}}, {'type': 'Feature', 'properties': {'id': 'b5a394eb-9023-4383-82cb-62a2ee761b6b', 'info': None, 'row': 36, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.223015758616713, 48.58752834652193, 0]}}, {'type': 'Feature', 'properties': {'id': '3e621e09-fb8f-40fa-8648-5f74138247ce', 'info': None, 'row': 36, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.4095974983408763, 48.61066447760871, 0]}}, {'type': 'Feature', 'properties': {'id': '5c103d82-fa60-4833-b96f-14e3bcd3ed99', 'info': None, 'row': 36, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.5963479644753185, 48.63349918646478, 0]}}, {'type': 'Feature', 'properties': {'id': '405e95ce-18e0-4370-bf00-9dc4d05bfb40', 'info': None, 'row': 36, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-2.78326524139669, 48.65603196875493, 0]}}, {'type': 'Feature', 'properties': {'id': 'a49f74c1-b94e-4175-bcb7-967721fa2f48', 'info': None, 'row': 36, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-2.9703473977231236, 48.678262325471124, 0]}}, {'type': 'Feature', 'properties': {'id': 'f2e42150-3f0a-4a8e-bab6-98f816d5152f', 'info': None, 'row': 36, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.1575924865819185, 48.70018976301241, 0]}}, {'type': 'Feature', 'properties': {'id': '2875903c-b60c-4d09-9bee-d614f2cdd948', 'info': None, 'row': 36, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.3449985459113574, 48.72181379326662, 0]}}, {'type': 'Feature', 'properties': {'id': '4abd9e20-cc0e-4630-a0bc-ddaea7d4aff5', 'info': None, 'row': 36, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.532563598779266, 48.74313393369159, 0]}}, {'type': 'Feature', 'properties': {'id': 'd0b954a2-1f5a-46ce-994a-14fb71a2bd0d', 'info': None, 'row': 36, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.720285653685293, 48.764149707391944, 0]}}, {'type': 'Feature', 'properties': {'id': 'b8348773-573f-4ca3-86b5-3213f218e65a', 'info': None, 'row': 36, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-3.908162704816351, 48.78486064318855, 0]}}, {'type': 'Feature', 'properties': {'id': 'a5ba88c3-f255-43e6-bb6c-925387be5d72', 'info': None, 'row': 36, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.0961927322417235, 48.80526627567942, 0]}}, {'type': 'Feature', 'properties': {'id': '54a06e2d-f9ad-4c69-b1ec-f38ac7759a63', 'info': None, 'row': 36, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.284373702059654, 48.825366145294296, 0]}}, {'type': 'Feature', 'properties': {'id': '4b25e018-a59b-4c33-914c-8510442f7a5e', 'info': None, 'row': 36, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.4727035665399315, 48.84515979834799, 0]}}, {'type': 'Feature', 'properties': {'id': '543ef706-ced7-4c75-8adf-099c49cd6ddd', 'info': None, 'row': 36, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.661180264343155, 48.86464678710101, 0]}}, {'type': 'Feature', 'properties': {'id': 'daf8f53e-12b0-4cfa-bb01-2254ae753098', 'info': None, 'row': 36, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-4.849801720936553, 48.88382666983851, 0]}}, {'type': 'Feature', 'properties': {'id': '58cab1e0-4e3f-46dc-ac6d-b2065b5a7556', 'info': None, 'row': 45, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.5033011335521043, 48.4113567589538, 0]}}, {'type': 'Feature', 'properties': {'id': 'd26f54f1-7bb2-40c7-9119-e75cbdc5c6f7', 'info': None, 'row': 45, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.6888981596382735, 48.43568205004331, 0]}}, {'type': 'Feature', 'properties': {'id': '740b87e5-5a00-4e33-99ca-75f80656a3f5', 'info': None, 'row': 45, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-1.8746705418739793, 48.459708819387316, 0]}}, {'type': 'Feature', 'properties': {'id': 'db357c6d-e5a4-49bb-8cba-d3c036425090', 'info': None, 'row': 45, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.060616447172397, 48.483436545268106, 0]}}, {'type': 'Feature', 'properties': {'id': '2a5d0a39-a33f-4d66-a920-d1b9a95407b2', 'info': None, 'row': 45, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.2467340239181732, 48.5068647106631, 0]}}, {'type': 'Feature', 'properties': {'id': '1cb32c16-f936-4bee-b644-2bc34666f203', 'info': None, 'row': 45, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.4330214034499353, 48.52999280349843, 0]}}, {'type': 'Feature', 'properties': {'id': '5c64f971-cf12-459a-ac17-029075bad4ce', 'info': None, 'row': 45, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.6194767007654605, 48.552820316793344, 0]}}, {'type': 'Feature', 'properties': {'id': 'd8064e87-43df-4b3f-bc68-be5fead469b2', 'info': None, 'row': 45, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-2.8060980148911083, 48.575346748757674, 0]}}, {'type': 'Feature', 'properties': {'id': '09f6ca62-616e-42b4-9f30-ac0b7daae1c1', 'info': None, 'row': 45, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-2.99288342915272, 48.59757160287461, 0]}}, {'type': 'Feature', 'properties': {'id': '1f76ada3-f044-4df1-8e6d-9ddef8841f38', 'info': None, 'row': 45, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.17983101145294, 48.619494387981895, 0]}}, {'type': 'Feature', 'properties': {'id': '69eb980a-8660-4f04-920f-264c3223436f', 'info': None, 'row': 45, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.3669388145807986, 48.64111461835473, 0]}}, {'type': 'Feature', 'properties': {'id': '01b3cdd9-9c16-4d65-926b-2e10d3d0faed', 'info': None, 'row': 45, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.554204876536343, 48.662431813787805, 0]}}, {'type': 'Feature', 'properties': {'id': '0fcb9a6d-65f1-4554-a46b-5090dde97b08', 'info': None, 'row': 45, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.741627220837426, 48.68344549967275, 0]}}, {'type': 'Feature', 'properties': {'id': '3b456119-2788-47e9-b463-38d0eaa5718e', 'info': None, 'row': 45, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-3.9292038567784937, 48.70415520706797, 0]}}, {'type': 'Feature', 'properties': {'id': '8782640f-58e0-4f69-813b-03c1e8f93f11', 'info': None, 'row': 45, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.1169327796282, 48.724560472759784, 0]}}, {'type': 'Feature', 'properties': {'id': '0083276a-9301-41d1-8f00-f67b5e88e07b', 'info': None, 'row': 45, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.30481197077799, 48.74466083931728, 0]}}, {'type': 'Feature', 'properties': {'id': '02d33bc2-c89c-4c15-9fc6-e5e66f491147', 'info': None, 'row': 45, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.492839397886581, 48.76445585514573, 0]}}, {'type': 'Feature', 'properties': {'id': 'a3433627-f077-4297-857f-e10ba136f50e', 'info': None, 'row': 45, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.681013015101275, 48.78394507454744, 0]}}, {'type': 'Feature', 'properties': {'id': '26c25ce0-e3a0-4575-9ab1-0d475798a1d1', 'info': None, 'row': 45, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-4.869330763476339, 48.80312805780081, 0]}}, {'type': 'Feature', 'properties': {'id': '9daf75e5-1f6f-467f-8a90-ffc31b63ad9d', 'info': None, 'row': 54, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.5281289953874784, 48.3307285527954, 0]}}, {'type': 'Feature', 'properties': {'id': 'd701db84-0030-4306-a4cb-a710cf44c592', 'info': None, 'row': 54, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.7134356361287528, 48.35504252014416, 0]}}, {'type': 'Feature', 'properties': {'id': '2e8fb331-3631-451e-8c57-a04886e6ecd1', 'info': None, 'row': 54, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-1.89891680743853, 48.37905880184928, 0]}}, {'type': 'Feature', 'properties': {'id': '387261a9-7dc0-42ae-86c6-eab30cad18fb', 'info': None, 'row': 54, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.084570686971875, 48.40277687829955, 0]}}, {'type': 'Feature', 'properties': {'id': '7639a3a7-2e3d-4186-83a0-b8dcd9555d33', 'info': None, 'row': 54, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.2703954343736403, 48.426196234606365, 0]}}, {'type': 'Feature', 'properties': {'id': 'a9eac4e0-4b25-4e7f-9955-aa7f9793eef6', 'info': None, 'row': 54, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.456389192676484, 48.449316360843426, 0]}}, {'type': 'Feature', 'properties': {'id': 'e7105154-acac-4c85-a651-755f0d48bfcd', 'info': None, 'row': 54, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.642550088948278, 48.47213675218117, 0]}}, {'type': 'Feature', 'properties': {'id': '7b63ffac-1e04-4550-a329-67eee6f4813f', 'info': None, 'row': 54, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-2.828876234620992, 48.49465690897699, 0]}}, {'type': 'Feature', 'properties': {'id': 'c6014ba6-c58b-4dd6-af4c-d1a7fc080f69', 'info': None, 'row': 54, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-3.015365725731801, 48.516876336852356, 0]}}, {'type': 'Feature', 'properties': {'id': '1fb53ca4-d01f-4ee5-bbc2-c472ec13107c', 'info': None, 'row': 54, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.202016643177024, 48.538794546769466, 0]}}, {'type': 'Feature', 'properties': {'id': '90d63bbe-0d7b-4f7f-b333-adba4098197b', 'info': None, 'row': 54, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.3888270530017155, 48.56041105511021, 0]}}, {'type': 'Feature', 'properties': {'id': 'ae0f87d9-22ce-49f3-99a5-c1dcd552b0e5', 'info': None, 'row': 54, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.5757950067060635, 48.58172538375469, 0]}}, {'type': 'Feature', 'properties': {'id': '4d671a69-3f50-4b16-aa77-803486ff8c1d', 'info': None, 'row': 54, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.7629185415347592, 48.602737060155434, 0]}}, {'type': 'Feature', 'properties': {'id': '8b526440-083f-4573-9276-7e1155491770', 'info': None, 'row': 54, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-3.9501956807192826, 48.62344561740416, 0]}}, {'type': 'Feature', 'properties': {'id': '832baa64-2335-4fa1-8ca8-b7f4b1c27662', 'info': None, 'row': 54, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.137624433660334, 48.64385059429034, 0]}}, {'type': 'Feature', 'properties': {'id': '10e29ff0-b5ab-4ac8-bc1c-06899b3e1f3c', 'info': None, 'row': 54, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.3252027960635235, 48.66395153535372, 0]}}, {'type': 'Feature', 'properties': {'id': '6eda1896-239a-4f89-af69-2bd069f5bb21', 'info': None, 'row': 54, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.512928750074813, 48.68374799093597, 0]}}, {'type': 'Feature', 'properties': {'id': '945cf03b-8793-42a1-a5a9-d46ea723df85', 'info': None, 'row': 54, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.700800264498236, 48.70323951724042, 0]}}, {'type': 'Feature', 'properties': {'id': '30bc154b-9a63-4641-9c17-8e252d58ac40', 'info': None, 'row': 54, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-4.888815295218305, 48.72242567641075, 0]}}, {'type': 'Feature', 'properties': {'id': '4b32c098-1dc1-404c-bc9d-d8bb8bd63465', 'info': None, 'row': 63, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.552936396998518, 48.250100084796145, 0]}}, {'type': 'Feature', 'properties': {'id': '867d16a3-a598-4548-8beb-451b83460ca9', 'info': None, 'row': 63, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.7379534665570033, 48.27440275019701, 0]}}, {'type': 'Feature', 'properties': {'id': 'e94af3d7-bb51-41ea-bd60-611eecde4b47', 'info': None, 'row': 63, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-1.923144260888251, 48.29840856673667, 0]}}, {'type': 'Feature', 'properties': {'id': '9a83330d-1410-4e62-bd73-0fe23c4029a6', 'info': None, 'row': 63, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.1085069667545495, 48.322117016619295, 0]}}, {'type': 'Feature', 'properties': {'id': 'b5873203-413e-4207-b4be-a5499ed4c413', 'info': None, 'row': 63, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.2940397536118557, 48.34552758683363, 0]}}, {'type': 'Feature', 'properties': {'id': '7521a68d-74a9-439b-84c6-0655c0d884f0', 'info': None, 'row': 63, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.479740774907348, 48.36863976937519, 0]}}, {'type': 'Feature', 'properties': {'id': '1b7658cb-b44c-457e-9128-7ef01535ff97', 'info': None, 'row': 63, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.6656081686489577, 48.391453061366875, 0]}}, {'type': 'Feature', 'properties': {'id': '5bf60621-35bf-4afa-9f49-11042a4ef898', 'info': None, 'row': 63, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-2.8516400576726038, 48.41396696513792, 0]}}, {'type': 'Feature', 'properties': {'id': 'e0a3d09a-cd3b-432d-b109-a57bb4f20590', 'info': None, 'row': 63, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-3.0378345498334887, 48.436180988292, 0]}}, {'type': 'Feature', 'properties': {'id': 'ff70673f-a0f7-459e-a658-d2a1ca86a6a8', 'info': None, 'row': 63, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.2241897382189246, 48.45809464377634, 0]}}, {'type': 'Feature', 'properties': {'id': 'd78c6919-c121-4335-ba42-432bcf19b93b', 'info': None, 'row': 63, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.4107037014032326, 48.479707449954105, 0]}}, {'type': 'Feature', 'properties': {'id': '0eec797f-719a-4770-9e40-5e41cae9a8f9', 'info': None, 'row': 63, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.5973745037244558, 48.501018930677574, 0]}}, {'type': 'Feature', 'properties': {'id': 'd9b83842-7ba9-4089-90f7-6dfd04e44570', 'info': None, 'row': 63, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.7842001955479283, 48.52202861535753, 0]}}, {'type': 'Feature', 'properties': {'id': '1c7f7426-eee7-4c74-9afe-ab94e44e6f45', 'info': None, 'row': 63, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-3.9711788134861448, 48.54273603902588, 0]}}, {'type': 'Feature', 'properties': {'id': '6c7c9462-b321-4071-9b6b-fd485ffae495', 'info': None, 'row': 63, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.1583083805616905, 48.56314074239072, 0]}}, {'type': 'Feature', 'properties': {'id': 'dc88ad7a-6e47-406b-a06d-f16e5f8ca216', 'info': None, 'row': 63, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.345586906326215, 48.58324227188561, 0]}}, {'type': 'Feature', 'properties': {'id': 'be3d22cc-7e0d-43d0-8485-6c90d2383ff8', 'info': None, 'row': 63, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.533012386982016, 48.603040179718676, 0]}}, {'type': 'Feature', 'properties': {'id': 'b4325dfe-05cb-4c81-a4ad-2a8fe2de97ed', 'info': None, 'row': 63, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.7205828055886885, 48.62253402393009, 0]}}, {'type': 'Feature', 'properties': {'id': 'ff1249f1-2233-4f3f-afc5-8fe47ff9eee7', 'info': None, 'row': 63, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-4.908296132477469, 48.641723368469044, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca1029a1-24ed-45d0-9933-d3d1fdc62678', 'info': None, 'row': 72, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.5777101789457828, 48.1694711865474, 0]}}, {'type': 'Feature', 'properties': {'id': '25b4d455-2557-4caf-86e9-b0e760916295', 'info': None, 'row': 72, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.762439015129698, 48.193762585809765, 0]}}, {'type': 'Feature', 'properties': {'id': '89a7be12-1707-48b3-8b34-f662a3b898f7', 'info': None, 'row': 72, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-1.9473408028012684, 48.217757974111656, 0]}}, {'type': 'Feature', 'properties': {'id': 'c5fce7dd-6b27-4d43-91f5-26c3b0a90db4', 'info': None, 'row': 72, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.132413735143972, 48.241456834994246, 0]}}, {'type': 'Feature', 'properties': {'id': '2db72bde-fd48-4231-afda-21b969c25360', 'info': None, 'row': 72, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.3176559890437507, 48.26485865690197, 0]}}, {'type': 'Feature', 'properties': {'id': '760ab10a-d2bf-49a3-a449-5a2e013c4b3e', 'info': None, 'row': 72, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.5030657262598397, 48.287962933381266, 0]}}, {'type': 'Feature', 'properties': {'id': '891bcd62-7ec6-4817-8072-982bb8767825', 'info': None, 'row': 72, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.6886410938833927, 48.31076916318079, 0]}}, {'type': 'Feature', 'properties': {'id': '372a08a8-b5cb-46bf-868c-b353c73472f0', 'info': None, 'row': 72, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-2.874380224508376, 48.333276850313, 0]}}, {'type': 'Feature', 'properties': {'id': '30781a58-55a6-41f7-a466-01fc18a3dc10', 'info': None, 'row': 72, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-3.060281236340167, 48.35548550410737, 0]}}, {'type': 'Feature', 'properties': {'id': 'ab27bb2e-7ad0-4ff6-8104-02b787b8f303', 'info': None, 'row': 72, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.246342233338121, 48.37739463926689, 0]}}, {'type': 'Feature', 'properties': {'id': '1dddbf0d-bec2-47bd-9e10-30f667ece2ba', 'info': None, 'row': 72, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.4325613054116406, 48.39900377593004, 0]}}, {'type': 'Feature', 'properties': {'id': '21faaa62-a224-4118-ab20-d720337e8275', 'info': None, 'row': 72, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.6189365286483755, 48.42031243973517, 0]}}, {'type': 'Feature', 'properties': {'id': 'd0353a18-7b49-4fbc-ade0-9e463b8f1779', 'info': None, 'row': 72, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.805465965538219, 48.4413201618827, 0]}}, {'type': 'Feature', 'properties': {'id': '70dabf8e-518b-48a7-9674-338e74d84a3a', 'info': None, 'row': 72, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-3.992147665161047, 48.46202647919169, 0]}}, {'type': 'Feature', 'properties': {'id': 'c7a5e041-bc0f-4627-8d8a-bf56f3366699', 'info': None, 'row': 72, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.178979663323046, 48.48243093414989, 0]}}, {'type': 'Feature', 'properties': {'id': '0b61ae33-82cf-4e4f-b1ce-9a2896dff55b', 'info': None, 'row': 72, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.365959982652695, 48.50253307495846, 0]}}, {'type': 'Feature', 'properties': {'id': 'f482e33d-370b-406b-9c8a-2fb46909e39c', 'info': None, 'row': 72, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.553086632700561, 48.52233245557708, 0]}}, {'type': 'Feature', 'properties': {'id': '69c43f7c-97d2-46f9-bbe6-3baec0c423a2', 'info': None, 'row': 72, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.740357610122629, 48.541828635777335, 0]}}, {'type': 'Feature', 'properties': {'id': 'd99c0755-d788-4431-a2d2-f0eb1bb88e77', 'info': None, 'row': 72, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-4.927770899066658, 48.561021181215544, 0]}}, {'type': 'Feature', 'properties': {'id': '23cf2f05-6310-466a-838c-300a5fe6e062', 'info': None, 'row': 81, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.6023504853695638, 48.08882563244171, 0]}}, {'type': 'Feature', 'properties': {'id': '55018ca3-1dc7-4019-9ec6-dd31ccabd4d0', 'info': None, 'row': 81, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.7867917186310383, 48.11310603017427, 0]}}, {'type': 'Feature', 'properties': {'id': '34081813-6e70-4a04-bf71-b5ba3de6ddbe', 'info': None, 'row': 81, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-1.9714051209349652, 48.1370912516622, 0]}}, {'type': 'Feature', 'properties': {'id': 'ce164f1b-b43a-438b-b85e-321f19500967', 'info': None, 'row': 81, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.156188893125717, 48.16078078199952, 0]}}, {'type': 'Feature', 'properties': {'id': 'd82781cd-deff-47c9-943d-5607840d472f', 'info': None, 'row': 81, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.3411412205986544, 48.184174111273485, 0]}}, {'type': 'Feature', 'properties': {'id': '964a39dd-2df2-485f-b337-08fed379fbae', 'info': None, 'row': 81, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.5262602743638065, 48.2072707347436, 0]}}, {'type': 'Feature', 'properties': {'id': '00350ba2-c280-4d33-846c-95e986a8d05e', 'info': None, 'row': 81, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.7115442114124177, 48.23007015292504, 0]}}, {'type': 'Feature', 'properties': {'id': '9db8d399-41b5-4080-9fe8-b66ffa699042', 'info': None, 'row': 81, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-2.8969911748088193, 48.2525718716359, 0]}}, {'type': 'Feature', 'properties': {'id': '8999a2c2-6138-4843-a033-df20d2447c89', 'info': None, 'row': 81, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-3.08259929373179, 48.27477540203829, 0]}}, {'type': 'Feature', 'properties': {'id': '5fd9772c-941f-4682-9b04-23a7873e6b77', 'info': None, 'row': 81, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.268366683560235, 48.296680260684596, 0]}}, {'type': 'Feature', 'properties': {'id': 'bd268df8-942e-48ac-9795-b5c223a34453', 'info': None, 'row': 81, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.454291446021635, 48.318285969570965, 0]}}, {'type': 'Feature', 'properties': {'id': '89e806b8-d42b-4ce5-a814-2107a9c5f2c4', 'info': None, 'row': 81, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.6403716693808854, 48.33959205619444, 0]}}, {'type': 'Feature', 'properties': {'id': '24c02546-f89b-441f-9c44-ed4c6f27e3f3', 'info': None, 'row': 81, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.82660542863199, 48.360598053609294, 0]}}, {'type': 'Feature', 'properties': {'id': '0b4220a8-1e5f-4695-a8d3-d114a05feb54', 'info': None, 'row': 81, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-4.012990785659328, 48.38130350047863, 0]}}, {'type': 'Feature', 'properties': {'id': 'ea8cdd9e-0cfd-4980-989f-4608e282eb6c', 'info': None, 'row': 81, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.199525789351885, 48.40170794112012, 0]}}, {'type': 'Feature', 'properties': {'id': 'dac9fd9f-16b8-4eb4-b6d6-8a078127674f', 'info': None, 'row': 81, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.386208475680009, 48.4218109255471, 0]}}, {'type': 'Feature', 'properties': {'id': '8a31d89a-2bcb-493a-b9ea-6c7866dbae9b', 'info': None, 'row': 81, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.57303686777708, 48.441612009510166, 0]}}, {'type': 'Feature', 'properties': {'id': 'b5852f94-c03e-4006-acd1-67a5491e9594', 'info': None, 'row': 81, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.760008976103699, 48.461110754547335, 0]}}, {'type': 'Feature', 'properties': {'id': '2f077227-e31b-4a0e-9e69-966d6eb7534a', 'info': None, 'row': 81, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-4.947122798811598, 48.48030672805336, 0]}}, {'type': 'Feature', 'properties': {'id': 'b96edba7-f5ee-4082-883b-2f4e99e39781', 'info': None, 'row': 90, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.6262506093449345, 48.008087714038474, 0]}}, {'type': 'Feature', 'properties': {'id': '6f8800f1-dda2-4a2e-8acf-55c075a6f550', 'info': None, 'row': 90, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.8104077358275958, 48.032358577616634, 0]}}, {'type': 'Feature', 'properties': {'id': '435b600a-be49-44c5-8c92-6cd6d7e8eeb9', 'info': None, 'row': 90, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-1.9947361981106086, 48.056335082004395, 0]}}, {'type': 'Feature', 'properties': {'id': 'c2d7891a-4f7a-400e-85a3-1d100f5fa81e', 'info': None, 'row': 90, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.1792342115739753, 48.08001671504569, 0]}}, {'type': 'Feature', 'properties': {'id': 'a0d8de77-062f-402f-8fd6-f4a57cd0e8c9', 'info': None, 'row': 90, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.363899976108427, 48.103402969508124, 0]}}, {'type': 'Feature', 'properties': {'id': '2cb0c858-84a9-4772-8524-eb744827a7eb', 'info': None, 'row': 90, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.548731677180501, 48.12649334326351, 0]}}, {'type': 'Feature', 'properties': {'id': 'c2aa8458-7da4-4084-ba7a-37f386ee4fd8', 'info': None, 'row': 90, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.7337274862114382, 48.149287339373956, 0]}}, {'type': 'Feature', 'properties': {'id': '2cd91135-3434-4580-9036-f2fd910158be', 'info': None, 'row': 90, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-2.9188855606860744, 48.171784466142114, 0]}}, {'type': 'Feature', 'properties': {'id': 'f352a69b-2588-4181-abff-7d65500a0ba9', 'info': None, 'row': 90, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-3.1042040442126564, 48.19398423715535, 0]}}, {'type': 'Feature', 'properties': {'id': '4847274a-aca1-4458-8456-ebcb9eb504cd', 'info': None, 'row': 90, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.2896810666258016, 48.21588617133467, 0]}}, {'type': 'Feature', 'properties': {'id': '8724b25c-5823-4e92-9321-d4edfd50ed7f', 'info': None, 'row': 90, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.4753147441495225, 48.2374897929904, 0]}}, {'type': 'Feature', 'properties': {'id': '9b16cfb8-06b8-402d-afa8-774a0e3007f3', 'info': None, 'row': 90, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.6611031795973985, 48.258794631881116, 0]}}, {'type': 'Feature', 'properties': {'id': 'd586daa1-02f9-4362-b452-256d03ff4e79', 'info': None, 'row': 90, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.8470444625723363, 48.27980022327109, 0]}}, {'type': 'Feature', 'properties': {'id': 'df948f82-4b27-4896-ba6d-2b5b5b6e4273', 'info': None, 'row': 90, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-4.033136669632714, 48.3005061079827, 0]}}, {'type': 'Feature', 'properties': {'id': '6fe5dc26-f435-4753-97c2-d397dd3092a5', 'info': None, 'row': 90, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.2193778644094895, 48.320911832442626, 0]}}, {'type': 'Feature', 'properties': {'id': '2c7ef873-337d-45fc-aa92-bbf330eb6b08', 'info': None, 'row': 90, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.405766097684669, 48.34101694872328, 0]}}, {'type': 'Feature', 'properties': {'id': 'ec57f69b-0782-40d2-a30e-d7625e00a44b', 'info': None, 'row': 90, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.5922994074751, 48.36082101458473, 0]}}, {'type': 'Feature', 'properties': {'id': '516d106b-4f89-4f3a-b30d-fb57e58fc4d8', 'info': None, 'row': 90, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.778975819200676, 48.380323593525326, 0]}}, {'type': 'Feature', 'properties': {'id': '44223ed2-da01-4ecc-b262-ce655f6fc8a2', 'info': None, 'row': 90, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-4.965793346056615, 48.399524254852, 0]}}, {'type': 'Feature', 'properties': {'id': 'e85336e9-e9a5-476f-8585-dc8f3441166c', 'info': None, 'row': 99, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.6501507333203056, 47.927349795635244, 0]}}, {'type': 'Feature', 'properties': {'id': 'a584e081-2e0f-40c9-a4cf-e6115c1dd965', 'info': None, 'row': 99, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.8340237530241534, 47.951611125059, 0]}}, {'type': 'Feature', 'properties': {'id': 'c89b51a5-4210-4651-a6fc-9e8163f30448', 'info': None, 'row': 99, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-2.0180672752862527, 47.9755789123466, 0]}}, {'type': 'Feature', 'properties': {'id': '94b5b36e-6854-4587-8aeb-a36fbfce0a87', 'info': None, 'row': 99, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.202279530022234, 47.999252648091854, 0]}}, {'type': 'Feature', 'properties': {'id': '30ee58a2-f852-44aa-b052-6275d560005a', 'info': None, 'row': 99, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.3866587316181995, 48.022631827742764, 0]}}, {'type': 'Feature', 'properties': {'id': '66b38705-4ece-4eea-9d55-deee2773ab82', 'info': None, 'row': 99, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.5712030799971943, 48.04571595178343, 0]}}, {'type': 'Feature', 'properties': {'id': 'd259e78d-75b6-4c57-a438-c9bfbda47f9e', 'info': None, 'row': 99, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.755910761010459, 48.068504525822874, 0]}}, {'type': 'Feature', 'properties': {'id': '1d05eb83-be3c-4c40-b36c-c06d428d25b0', 'info': None, 'row': 99, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-2.9407799465633295, 48.09099706064835, 0]}}, {'type': 'Feature', 'properties': {'id': '1f2e9369-ef2b-48af-b424-17e07f49d89f', 'info': None, 'row': 99, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-3.125808794693523, 48.11319307227242, 0]}}, {'type': 'Feature', 'properties': {'id': '7b11a0f4-5123-4969-9d2c-e079362266c7', 'info': None, 'row': 99, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.3109954496913683, 48.13509208198475, 0]}}, {'type': 'Feature', 'properties': {'id': 'c218ba05-2715-47bc-9fef-1d0697bfe549', 'info': None, 'row': 99, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.496338042277409, 48.156693616409854, 0]}}, {'type': 'Feature', 'properties': {'id': 'ef17c5f2-d9b4-4d04-a97b-bcb732a51c0c', 'info': None, 'row': 99, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.681834689813912, 48.1779972075678, 0]}}, {'type': 'Feature', 'properties': {'id': 'ead7b7f4-2777-4ec7-a24a-69e4ed4afe6b', 'info': None, 'row': 99, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.8674834965126825, 48.19900239293288, 0]}}, {'type': 'Feature', 'properties': {'id': '1f4a66eb-cc47-4157-b702-5a2ec38ef6d1', 'info': None, 'row': 99, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-4.053282553606101, 48.21970871548677, 0]}}, {'type': 'Feature', 'properties': {'id': '1e9ae29b-9a4b-4e7b-9a45-f346082c0768', 'info': None, 'row': 99, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.239229939467096, 48.24011572376513, 0]}}, {'type': 'Feature', 'properties': {'id': '603c0d7a-4516-46c5-be43-cf281d803db6', 'info': None, 'row': 99, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.42532371968933, 48.260222971899466, 0]}}, {'type': 'Feature', 'properties': {'id': 'dff89589-81bf-4293-8c30-a45c476042f9', 'info': None, 'row': 99, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.6115619471731195, 48.280030019659286, 0]}}, {'type': 'Feature', 'properties': {'id': '905e05af-9f25-41e5-9b53-c866d066d2a2', 'info': None, 'row': 99, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.797942662297651, 48.29953643250331, 0]}}, {'type': 'Feature', 'properties': {'id': '8d66a0a6-c42c-4a34-af0c-46e092692032', 'info': None, 'row': 99, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-4.984463893301631, 48.31874178165065, 0]}}, {'type': 'Feature', 'properties': {'id': 'ee429dae-f2b2-4d62-9843-2174e14abbd4', 'info': None, 'row': 108, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.6740217260316297, 47.846613692960524, 0]}}, {'type': 'Feature', 'properties': {'id': '7a63189f-9ec6-49f4-aad2-95a43265c84e', 'info': None, 'row': 108, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.857612876835839, 47.87086554917882, 0]}}, {'type': 'Feature', 'properties': {'id': '879fa6ec-b205-491d-a399-83fc6744f7fc', 'info': None, 'row': 108, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-2.041373723298184, 47.89482467831823, 0]}}, {'type': 'Feature', 'properties': {'id': 'd9380162-971e-4322-842f-7b1ff927c550', 'info': None, 'row': 108, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.2253025080794053, 47.91849057340466, 0]}}, {'type': 'Feature', 'properties': {'id': '28e83e01-98ca-497d-81e5-a8b59e9f1683', 'info': None, 'row': 108, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.409397458426322, 47.94186273228022, 0]}}, {'type': 'Feature', 'properties': {'id': '5503f998-0dc6-472b-978b-e6d03d6861b9', 'info': None, 'row': 108, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.593656787247004, 47.96494065778613, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc31d253-cc4e-4870-bb38-dcb3fa426c1f', 'info': None, 'row': 108, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.7780786935051167, 47.987723857851634, 0]}}, {'type': 'Feature', 'properties': {'id': '14894f4c-2d12-4929-9d0f-f3137d142d2b', 'info': None, 'row': 108, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-2.9626613623460396, 48.01021184554694, 0]}}, {'type': 'Feature', 'properties': {'id': '817b858e-52d3-43d2-a00b-7aebbb161b71', 'info': None, 'row': 108, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-3.1474029651731827, 48.032404139129795, 0]}}, {'type': 'Feature', 'properties': {'id': 'c5573a99-8eeb-4363-9747-c165c5629fdd', 'info': None, 'row': 108, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.3323016597656085, 48.05430026209653, 0]}}, {'type': 'Feature', 'properties': {'id': '31899e21-7d12-45b0-a709-be535b9ef68c', 'info': None, 'row': 108, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.5173555904531577, 48.07589974323929, 0]}}, {'type': 'Feature', 'properties': {'id': 'e7c59a21-0b5a-4773-bf3e-6589013fffa3', 'info': None, 'row': 108, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.702562888325903, 48.09720211670615, 0]}}, {'type': 'Feature', 'properties': {'id': '1279eb40-7b26-4b46-b9fd-08f288b9189a', 'info': None, 'row': 108, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.8879216714403113, 48.118206922059315, 0]}}, {'type': 'Feature', 'properties': {'id': '0590c844-98da-492d-8f2f-bb1d3e3c5f18', 'info': None, 'row': 108, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-4.073430044989195, 48.13891370432788, 0]}}, {'type': 'Feature', 'properties': {'id': '3b1af6b0-2c6a-42ac-b8b4-cdfd6e75ee5d', 'info': None, 'row': 108, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.2590861014204675, 48.15932201405411, 0]}}, {'type': 'Feature', 'properties': {'id': 'fc977313-86fc-46b3-8b3a-9b82060cb50b', 'info': None, 'row': 108, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.44488792051553, 48.17943140733465, 0]}}, {'type': 'Feature', 'properties': {'id': 'd271426d-b0a7-4fd9-a433-d9a2d39ab86b', 'info': None, 'row': 108, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.630833569471523, 48.19924144586214, 0]}}, {'type': 'Feature', 'properties': {'id': '20a67198-4680-4037-a1c4-d535e69f5d9a', 'info': None, 'row': 108, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.81692110306727, 48.2187516969755, 0]}}, {'type': 'Feature', 'properties': {'id': '6a163984-2e5b-4511-8b4c-b6602a133f19', 'info': None, 'row': 108, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-5.003148564033131, 48.23796173372981, 0]}}, {'type': 'Feature', 'properties': {'id': 'd2ae086d-90a0-4b29-a8b3-8642bfb13a2a', 'info': None, 'row': 117, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.6978904322267228, 47.76587773280255, 0]}}, {'type': 'Feature', 'properties': {'id': '261ccd0a-8e18-4e7c-9041-4d7fe086dff5', 'info': None, 'row': 117, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.8811998897826845, 47.79012012059929, 0]}}, {'type': 'Feature', 'properties': {'id': '7f36b4af-9d69-4819-8ac7-a872b891f88e', 'info': None, 'row': 117, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-2.064678238164252, 47.81407059621763, 0]}}, {'type': 'Feature', 'properties': {'id': 'c47d60e9-90b8-4b02-b636-46c0c6a691b0', 'info': None, 'row': 117, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.2483237326367362, 47.83772865509068, 0]}}, {'type': 'Feature', 'properties': {'id': '4bf77e1f-50e5-4d6e-befe-bcb747cbccc3', 'info': None, 'row': 117, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.4321346131793726, 47.86109379743222, 0]}}, {'type': 'Feature', 'properties': {'id': 'a3ab6642-d7dd-4aee-b8de-40dfd9db2f2f', 'info': None, 'row': 117, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.616109105569755, 47.884165528420496, 0]}}, {'type': 'Feature', 'properties': {'id': 'e64d066e-3831-4968-a7c5-88f0fd3efa2d', 'info': None, 'row': 117, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.8002454217805584, 47.906943358287194, 0]}}, {'type': 'Feature', 'properties': {'id': '608c96e8-6bf8-4575-ae2d-2efb22eb4b4a', 'info': None, 'row': 117, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-2.9845417601045527, 47.929426802369676, 0]}}, {'type': 'Feature', 'properties': {'id': '7dde9363-d328-4855-8809-72567e32e1a3', 'info': None, 'row': 117, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-3.168996305227343, 47.95161538115672, 0]}}, {'type': 'Feature', 'properties': {'id': '4bf9a7e1-ebae-4624-a69a-5e55c27355fd', 'info': None, 'row': 117, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.3536072283408283, 47.97350862033863, 0]}}, {'type': 'Feature', 'properties': {'id': '882722ca-ca33-4680-a0bd-b177aa01f449', 'info': None, 'row': 117, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.5383726873145087, 47.995106050863654, 0]}}, {'type': 'Feature', 'properties': {'id': '80c6ee0c-8b49-434c-81c0-509fbcbdfc3f', 'info': None, 'row': 117, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.723290826901831, 48.0164072089974, 0]}}, {'type': 'Feature', 'properties': {'id': '5ac5a6a4-797f-44a9-bb41-1e7bc244c201', 'info': None, 'row': 117, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.9083597789439337, 48.037411636380384, 0]}}, {'type': 'Feature', 'properties': {'id': 'ed1526cc-6e4b-4b5e-85a1-e5d0e188ac4a', 'info': None, 'row': 117, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-4.09357766253806, 48.058118880080414, 0]}}, {'type': 'Feature', 'properties': {'id': '27fbf723-af0a-4bf9-954b-23eafe066531', 'info': None, 'row': 117, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.278942584154753, 48.078528492638235, 0]}}, {'type': 'Feature', 'properties': {'id': 'a78e2e4a-c8c0-4e2b-8242-09d8f99bf63e', 'info': None, 'row': 117, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.464452637714182, 48.09864003210831, 0]}}, {'type': 'Feature', 'properties': {'id': '505d2db4-f03f-4cfd-964d-7eff62b38989', 'info': None, 'row': 117, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.650105904664265, 48.118453062099626, 0]}}, {'type': 'Feature', 'properties': {'id': 'e2a55206-1171-4d9c-ae5a-cac7f3b48a7a', 'info': None, 'row': 117, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.8359004541395345, 48.137967151825, 0]}}, {'type': 'Feature', 'properties': {'id': '53023b33-18da-48ce-a6d9-ae078d4b573c', 'info': None, 'row': 117, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-5.021834343318693, 48.157181876169524, 0]}}, {'type': 'Feature', 'properties': {'id': '21e771c8-ef3b-4fc0-801d-ded7683b6de9', 'info': None, 'row': 126, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.7215721214865656, 47.68512117119386, 0]}}, {'type': 'Feature', 'properties': {'id': 'f54dce69-f15b-4ef1-89bc-f2d94edccddd', 'info': None, 'row': 126, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.9046011715547648, 47.70935436862706, 0]}}, {'type': 'Feature', 'properties': {'id': '4af89f51-864e-4e73-9d9a-c352a05d4770', 'info': None, 'row': 126, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-2.087798360776982, 47.733296472709675, 0]}}, {'type': 'Feature', 'properties': {'id': '028cbdfd-04d2-4a02-b490-b8137f33db97', 'info': None, 'row': 126, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.271161952419766, 47.75694698045464, 0]}}, {'type': 'Feature', 'properties': {'id': '0dbb13cc-b957-40c8-aef9-7a5b482d01a8', 'info': None, 'row': 126, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.4546901951749205, 47.78030539372537, 0]}}, {'type': 'Feature', 'properties': {'id': 'd32762bc-71ca-4c21-9204-04e64f5a5917', 'info': None, 'row': 126, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.638381324162744, 47.803371219404056, 0]}}, {'type': 'Feature', 'properties': {'id': 'c3ad8434-dcb1-47e7-8ff4-7e0f3f3cec18', 'info': None, 'row': 126, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.8222335612561276, 47.82614396946704, 0]}}, {'type': 'Feature', 'properties': {'id': '6152fece-c7d0-4289-ae0c-8a09f4adcb90', 'info': None, 'row': 126, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-3.0062451151416303, 47.848623161025394, 0]}}, {'type': 'Feature', 'properties': {'id': '1dba5e5d-7f8d-4106-a979-8743148beb2c', 'info': None, 'row': 126, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-3.190414181336288, 47.87080831636024, 0]}}, {'type': 'Feature', 'properties': {'id': '9a16bb14-8461-484a-a6d7-87c09a2259ff', 'info': None, 'row': 126, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.374738942252819, 47.8926989629643, 0]}}, {'type': 'Feature', 'properties': {'id': '7e895904-6ce7-42e8-9fd2-1d1841c19d72', 'info': None, 'row': 126, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.559217567330047, 47.914294633590856, 0]}}, {'type': 'Feature', 'properties': {'id': '19b519e0-b37e-439e-a59b-94edd50dae1c', 'info': None, 'row': 126, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.743848213204996, 47.93559486630695, 0]}}, {'type': 'Feature', 'properties': {'id': 'f3fe8944-bd74-4f78-a27d-38d0b1cb01e8', 'info': None, 'row': 126, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.928629023888584, 47.95659920454589, 0]}}, {'type': 'Feature', 'properties': {'id': '231c12f8-0704-434e-bb80-f739b7645519', 'info': None, 'row': 126, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-4.1135581309112155, 47.9773071971552, 0]}}, {'type': 'Feature', 'properties': {'id': '5a7d35ea-429d-4f14-a21f-72a76be63134', 'info': None, 'row': 126, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.298633653421498, 47.99771839843883, 0]}}, {'type': 'Feature', 'properties': {'id': 'ff7eb6d5-a95f-48a6-b698-50ad02b6101f', 'info': None, 'row': 126, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.4838536982473824, 48.017832368194746, 0]}}, {'type': 'Feature', 'properties': {'id': 'e27dc545-73ee-4cd8-a56e-2c28163a631f', 'info': None, 'row': 126, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.6692163599608705, 48.03764867175313, 0]}}, {'type': 'Feature', 'properties': {'id': '30d549a7-d80e-43f5-b0b4-a5cb43335165', 'info': None, 'row': 126, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.854719721023974, 48.05716688002307, 0]}}, {'type': 'Feature', 'properties': {'id': 'a183a621-85d3-4ba3-b14f-600af049d3ba', 'info': None, 'row': 126, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-5.0403618521318085, 48.07638656955851, 0]}}, {'type': 'Feature', 'properties': {'id': '5af70933-8038-4bb4-965b-ad8fb8521829', 'info': None, 'row': 135, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.74517429523237, 47.604355850298504, 0]}}, {'type': 'Feature', 'properties': {'id': '9a63bb8e-5652-496e-8ada-d444efd71b65', 'info': None, 'row': 135, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.9279234844900683, 47.62857997559237, 0]}}, {'type': 'Feature', 'properties': {'id': '702ecef6-0c88-4ffe-9ce0-5b2c9f19acd4', 'info': None, 'row': 135, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-2.1108400838330668, 47.65251382803325, 0]}}, {'type': 'Feature', 'properties': {'id': '2b6dafa3-1e29-4760-8419-5a397d947ae2', 'info': None, 'row': 135, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.2939223625719167, 47.6761569058622, 0]}}, {'type': 'Feature', 'properties': {'id': '1f11d62c-143c-4e92-aa4b-46c750fc1653', 'info': None, 'row': 135, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.4771685764018407, 47.699508712285194, 0]}}, {'type': 'Feature', 'properties': {'id': 'b2228475-7c9b-448d-89ce-ebbf3f953f3f', 'info': None, 'row': 135, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.660576968286309, 47.722568755619214, 0]}}, {'type': 'Feature', 'properties': {'id': '0ddfe71c-797e-444e-80f8-b48c5105cb94', 'info': None, 'row': 135, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.8441457686766443, 47.74533654934814, 0]}}, {'type': 'Feature', 'properties': {'id': 'af9f3cb8-5d91-4fe8-b2c2-353c5938c7a3', 'info': None, 'row': 135, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-3.027873195482422, 47.76781161214689, 0]}}, {'type': 'Feature', 'properties': {'id': 'd00c4037-8a01-4467-a457-d11894cdd66d', 'info': None, 'row': 135, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-3.211757454010093, 47.789993467902505, 0]}}, {'type': 'Feature', 'properties': {'id': 'e7d81fc1-28b2-40d4-90a8-06da1c9a485d', 'info': None, 'row': 135, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.3957967369612057, 47.81188164574357, 0]}}, {'type': 'Feature', 'properties': {'id': 'f4949e24-a0ad-4776-a0d2-7bbb3943070a', 'info': None, 'row': 135, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.579989224506154, 47.83347568007913, 0]}}, {'type': 'Feature', 'properties': {'id': 'be9f452c-79a7-485b-af7c-ab465ec59f5c', 'info': None, 'row': 135, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.7643330844088165, 47.8547751106433, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc83cc83-c54e-48bc-8b80-82ceb0059aca', 'info': None, 'row': 135, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.9488264721632658, 47.87577948254072, 0]}}, {'type': 'Feature', 'properties': {'id': 'ee51d787-d7f6-4576-8153-01049ca3bfc7', 'info': None, 'row': 135, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-4.1334675311075255, 47.89648834628862, 0]}}, {'type': 'Feature', 'properties': {'id': '8486777d-6529-4f46-a663-082d7101e202', 'info': None, 'row': 135, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.318254392496581, 47.91690125785402, 0]}}, {'type': 'Feature', 'properties': {'id': '12459281-a500-41e5-8bdc-2796e6ea085c', 'info': None, 'row': 135, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.503185175542779, 47.937017778687334, 0]}}, {'type': 'Feature', 'properties': {'id': '3a3c98b9-3d8f-4e8e-b71e-69894bfb1a07', 'info': None, 'row': 135, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.688257987463157, 47.95683747575693, 0]}}, {'type': 'Feature', 'properties': {'id': '22bcf5cf-fa34-4e77-bbed-c592c428c989', 'info': None, 'row': 135, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.873470923610028, 47.9763599215926, 0]}}, {'type': 'Feature', 'properties': {'id': 'e765495c-0f90-4414-8ac9-4d1454c5b1da', 'info': None, 'row': 135, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-5.058822067798681, 47.995584694348736, 0]}}, {'type': 'Feature', 'properties': {'id': '249af5a5-9b99-4a94-ae4e-ae79b63dee5b', 'info': None, 'row': 144, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.7687520091922422, 47.523589912809925, 0]}}, {'type': 'Feature', 'properties': {'id': '97d5a693-df26-43fb-9f39-ab246c6e96b2', 'info': None, 'row': 144, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.9512233801366998, 47.5478051288588, 0]}}, {'type': 'Feature', 'properties': {'id': '8bbae664-f5cb-49a5-a1bc-4a73a1dd428c', 'info': None, 'row': 144, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-2.133861380601548, 47.571730880010165, 0]}}, {'type': 'Feature', 'properties': {'id': 'c1a38bcf-a038-48b9-8ed1-d7c1c9713ab8', 'info': None, 'row': 144, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.316664291621321, 47.595366666751275, 0]}}, {'type': 'Feature', 'properties': {'id': 'eab65a23-9b9b-4d8e-869f-1b915efa8570', 'info': None, 'row': 144, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.4996303808294655, 47.61871199451519, 0]}}, {'type': 'Feature', 'properties': {'id': '8f535c63-988f-4701-9bec-5673df78afca', 'info': None, 'row': 144, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.682757903325378, 47.6417663738237, 0]}}, {'type': 'Feature', 'properties': {'id': '0a8b3846-7d13-4a51-ba72-3d27076b636f', 'info': None, 'row': 144, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.8660451018815123, 47.66452932034084, 0]}}, {'type': 'Feature', 'properties': {'id': '9ebb1cf9-26df-4751-9a72-41c0bd0c4e93', 'info': None, 'row': 144, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-3.0494902069037924, 47.68700035489493, 0]}}, {'type': 'Feature', 'properties': {'id': '441a707b-065c-4d42-9580-aec166a033a5', 'info': None, 'row': 144, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-3.233091436361671, 47.70917900349779, 0]}}, {'type': 'Feature', 'properties': {'id': '575e6674-8f0a-4881-bc48-6105d5c3b982', 'info': None, 'row': 144, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.4168469957786742, 47.731064797372554, 0]}}, {'type': 'Feature', 'properties': {'id': '4e5cd428-52f9-4c6b-87a0-4f3f4ea1781d', 'info': None, 'row': 144, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.6007550782988424, 47.75265727299114, 0]}}, {'type': 'Feature', 'properties': {'id': '754173ae-f1da-4d62-b425-a9d4bf49e936', 'info': None, 'row': 144, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.784813864804536, 47.773955972117356, 0]}}, {'type': 'Feature', 'properties': {'id': '13842266-ec2d-4144-a191-46fddd54f06d', 'info': None, 'row': 144, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.969021524046786, 47.79496044185125, 0]}}, {'type': 'Feature', 'properties': {'id': '66abd41b-3163-43aa-b1b7-828a76d15f93', 'info': None, 'row': 144, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-4.153376212753336, 47.815670234669945, 0]}}, {'type': 'Feature', 'properties': {'id': '11de6088-8d8f-471a-9a44-35ccb3d7d717', 'info': None, 'row': 144, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.337876075696777, 47.836084908463896, 0]}}, {'type': 'Feature', 'properties': {'id': '4bbc63c5-30fa-4514-9f21-1c833e67e5c3', 'info': None, 'row': 144, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.522519245731294, 47.8562040265696, 0]}}, {'type': 'Feature', 'properties': {'id': '4c2f1fd6-6794-480d-b317-b5b23948cfc4', 'info': None, 'row': 144, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.707303843837845, 47.87602715780365, 0]}}, {'type': 'Feature', 'properties': {'id': '6cd0cd16-881a-4c50-ba66-e4f31189a790', 'info': None, 'row': 144, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.8922279792544625, 47.89555387650568, 0]}}, {'type': 'Feature', 'properties': {'id': '62dff4e3-d743-4d3e-9dbc-e2c320ad3f0a', 'info': None, 'row': 144, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-5.077289749805808, 47.91478376260138, 0]}}, {'type': 'Feature', 'properties': {'id': '6f4181ee-aebd-491e-a25f-f058a9144abe', 'info': None, 'row': 153, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.7923028088252366, 47.44282329685296, 0]}}, {'type': 'Feature', 'properties': {'id': 'aa65cd02-ebbc-46c4-98b7-59fb5e01060e', 'info': None, 'row': 153, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.974498608918433, 47.46702978289763, 0]}}, {'type': 'Feature', 'properties': {'id': 'fde55381-04e6-40a6-a732-ef5a65ba0bc0', 'info': None, 'row': 153, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-2.1568602013032736, 47.49094759819954, 0]}}, {'type': 'Feature', 'properties': {'id': 'ef2ed555-cd59-42f5-a4f9-3fd722ac806c', 'info': None, 'row': 153, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.3393858849882414, 47.51457624661245, 0]}}, {'type': 'Feature', 'properties': {'id': 'e43d43e2-750c-41e5-a900-cbdd29b6fa3a', 'info': None, 'row': 153, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.5220739449750202, 47.53791523676965, 0]}}, {'type': 'Feature', 'properties': {'id': '37d76bff-33af-49a2-907a-458d40152110', 'info': None, 'row': 153, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.704922653222464, 47.56096408224515, 0]}}, {'type': 'Feature', 'properties': {'id': 'f68a3c50-4a0b-4f9a-920a-b57d03e182bf', 'info': None, 'row': 153, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.8879302689424406, 47.58372230162321, 0]}}, {'type': 'Feature', 'properties': {'id': '2f5d2bd6-3c34-4bcb-8da5-6ea0d86edf26', 'info': None, 'row': 153, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-3.071095038639031, 47.60618941853424, 0]}}, {'type': 'Feature', 'properties': {'id': 'bc51d58e-718e-4044-9a98-1154bcb893a8', 'info': None, 'row': 153, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-3.254415196106645, 47.62836496168582, 0]}}, {'type': 'Feature', 'properties': {'id': '5b1be6ae-667a-4dae-8b72-ea84fbdc37e3', 'info': None, 'row': 153, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.4378889624781337, 47.65024846490036, 0]}}, {'type': 'Feature', 'properties': {'id': '9e2ba141-a3da-490a-9170-bb58a11d7100', 'info': None, 'row': 153, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.621514546338247, 47.671839467160524, 0]}}, {'type': 'Feature', 'properties': {'id': '51bca8c3-2923-485f-abb2-54e8a7d26f6d', 'info': None, 'row': 153, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.8052901438793234, 47.69313751265892, 0]}}, {'type': 'Feature', 'properties': {'id': '913a4b78-4e13-4eb0-af0b-4c4ac139d766', 'info': None, 'row': 153, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-3.989213939061151, 47.71414215084755, 0]}}, {'type': 'Feature', 'properties': {'id': '25b24b1a-5d29-4086-88bd-96276e876740', 'info': None, 'row': 153, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-4.173284103742063, 47.73485293648277, 0]}}, {'type': 'Feature', 'properties': {'id': '4db65b8d-cab1-4bb5-b5e9-202afab5570a', 'info': None, 'row': 153, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.357498797765099, 47.75526942966488, 0]}}, {'type': 'Feature', 'properties': {'id': 'b1284460-fa10-474e-b005-e241e4251afb', 'info': None, 'row': 153, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.541856169009904, 47.77539119587367, 0]}}, {'type': 'Feature', 'properties': {'id': '7bd9cfe8-41ca-4859-b7a1-a57f319b0ae9', 'info': None, 'row': 153, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.726354353452528, 47.795217806004985, 0]}}, {'type': 'Feature', 'properties': {'id': '0426713a-be19-453f-8699-ff458d7c92db', 'info': None, 'row': 153, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.910991475312031, 47.81474883641635, 0]}}, {'type': 'Feature', 'properties': {'id': 'da3692c2-009d-4b40-b108-45d70c74bc30', 'info': None, 'row': 153, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-5.095765647400871, 47.83398386899295, 0]}}, {'type': 'Feature', 'properties': {'id': 'ff4e8965-1184-4cbe-a0fd-bb7f47fbb45f', 'info': None, 'row': 162, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.815895211102679, 47.3620631634341, 0]}}, {'type': 'Feature', 'properties': {'id': 'dec9e199-b04d-4cf1-b319-2b25891db313', 'info': None, 'row': 162, 'col': 14}, 'geometry': {'type': 'Point', 'coordinates': [-1.997815707307867, 47.386260833551944, 0]}}, {'type': 'Feature', 'properties': {'id': '8fc31159-d70e-4149-a2d4-63eee6dbabb4', 'info': None, 'row': 162, 'col': 28}, 'geometry': {'type': 'Point', 'coordinates': [-2.179901170015012, 47.41017062812458, 0]}}, {'type': 'Feature', 'properties': {'id': '4bb7a863-fe8d-4980-ac5e-1314525c146d', 'info': None, 'row': 162, 'col': 42}, 'geometry': {'type': 'Point', 'coordinates': [-2.3621499151248466, 47.43379205418162, 0]}}, {'type': 'Feature', 'properties': {'id': '3590b046-a9d8-4ad5-a222-0f3cce153551', 'info': None, 'row': 162, 'col': 56}, 'geometry': {'type': 'Point', 'coordinates': [-2.5445602440647237, 47.45712462339094, 0]}}, {'type': 'Feature', 'properties': {'id': '0f4df75d-1343-41a4-ad9d-e830c62d833a', 'info': None, 'row': 162, 'col': 70}, 'geometry': {'type': 'Point', 'coordinates': [-2.7271304448241036, 47.48016785223367, 0]}}, {'type': 'Feature', 'properties': {'id': 'b85b0a5f-4ec6-41bc-8177-310c99b7b4de', 'info': None, 'row': 162, 'col': 84}, 'geometry': {'type': 'Point', 'coordinates': [-2.909858792320807, 47.50292126208658, 0]}}, {'type': 'Feature', 'properties': {'id': '066ab6eb-f4e5-4a5e-a389-13c464d48401', 'info': None, 'row': 162, 'col': 98}, 'geometry': {'type': 'Point', 'coordinates': [-3.092743548505363, 47.525384379269276, 0]}}, {'type': 'Feature', 'properties': {'id': '352b28b9-5112-4f8c-b249-e1d78298146d', 'info': None, 'row': 162, 'col': 112}, 'geometry': {'type': 'Point', 'coordinates': [-3.275782962416522, 47.54755673508513, 0]}}, {'type': 'Feature', 'properties': {'id': '73790387-b25d-4976-950c-42078bb33976', 'info': None, 'row': 162, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-3.458975270277741, 47.56943786586701, 0]}}, {'type': 'Feature', 'properties': {'id': '873fb589-ae95-40f6-b26c-54c55cf4c2f1', 'info': None, 'row': 162, 'col': 140}, 'geometry': {'type': 'Point', 'coordinates': [-3.6423186956497844, 47.59102731302929, 0]}}, {'type': 'Feature', 'properties': {'id': '2dd7e5c3-16bf-441b-8af2-253cc2ce6c54', 'info': None, 'row': 162, 'col': 154}, 'geometry': {'type': 'Point', 'coordinates': [-3.8258114496168005, 47.61232462312277, 0]}}, {'type': 'Feature', 'properties': {'id': 'adca3fd1-6801-43f6-97f1-a4cebccb3678', 'info': None, 'row': 162, 'col': 168}, 'geometry': {'type': 'Point', 'coordinates': [-4.009451730968749, 47.633329347887965, 0]}}, {'type': 'Feature', 'properties': {'id': '339ec9cd-0872-4973-8274-d9ca56ed08b6', 'info': None, 'row': 162, 'col': 182}, 'geometry': {'type': 'Point', 'coordinates': [-4.193237726349102, 47.654041044303284, 0]}}, {'type': 'Feature', 'properties': {'id': '28f8fca7-937c-46c8-bfe0-96c7ede216ee', 'info': None, 'row': 162, 'col': 196}, 'geometry': {'type': 'Point', 'coordinates': [-4.377167610353643, 47.67445927462697, 0]}}, {'type': 'Feature', 'properties': {'id': 'acfb274b-9835-4231-adfd-aed5175a1d88', 'info': None, 'row': 162, 'col': 210}, 'geometry': {'type': 'Point', 'coordinates': [-4.561239545593567, 47.69458360643476, 0]}}, {'type': 'Feature', 'properties': {'id': 'ce48bba9-9c88-4e38-9024-dab7d224d276', 'info': None, 'row': 162, 'col': 224}, 'geometry': {'type': 'Point', 'coordinates': [-4.745451682767867, 47.71441361265866, 0]}}, {'type': 'Feature', 'properties': {'id': '88a6a5fb-9e6c-48da-bfaf-22ae32d73b87', 'info': None, 'row': 162, 'col': 238}, 'geometry': {'type': 'Point', 'coordinates': [-4.929802160827342, 47.73394887163518, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4f6b04a-8903-4887-8a03-e84e1acdaea8', 'info': None, 'row': 162, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-5.114289107350792, 47.75318896717446, 0]}}]}
array(0)
Adding masks
Masks can be added with xsar.Sentinel1Meta.set_mask_feature, providing a shapefile or a cartopy.feature.Feature object.
For a default mask for all SAFE, use classmethod xsar.Sentinel1Meta.set_mask_feature
Here, we add a ocean_mask
dataset variable:
[2]:
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']]
[2]:
<xarray.Dataset> Dimensions: (pol: 2, line: 834, sample: 1329) Coordinates: * pol (pol) object 'VV' 'VH' * line (line) float64 9.5 29.5 49.5 ... 1.663e+04 1.665e+04 1.667e+04 * sample (sample) float64 9.5 29.5 49.5 ... 2.655e+04 2.657e+04 spatial_ref int64 0 Data variables: sigma0_ocean (pol, line, sample) float64 dask.array<chunksize=(1, 834, 1329), meta=np.ndarray> ocean_mask (line, sample) int8 dask.array<chunksize=(834, 1329), meta=np.ndarray> Attributes: (12/17) name: SENTINEL1_DS:/tmp/S1B_IW_GRDH_1SDV_20181013T062322_201... short_name: SENTINEL1_DS:S1B_IW_GRDH_1SDV_20181013T062322_20181013... product: GRDH safe: S1B_IW_GRDH_1SDV_20181013T062322_20181013T062347_01313... swath: IW multidataset: False ... ... footprint: POLYGON ((-1.371244242212007 48.8181227490355, -4.9521... coverage: 168km * 265km (line * sample ) pixel_line_m: <xarray.DataArray 'azimuthPixelSpacing' ()>\narray(10.... pixel_sample_m: <xarray.DataArray 'groundRangePixelSpacing' ()>\narray... orbit_pass: Descending platform_heading: -165.3526446468305
- pol: 2
- line: 834
- sample: 1329
- pol(pol)object'VV' 'VH'
array(['VV', 'VH'], dtype=object)
- 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])
- 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
- 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': 'dbb8d729-77a7-4448-81b8-8572dd13f9d7', 'info': None, 'row': 0, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.372773891844232, 48.81743690571634, 0]}}, {'type': 'Feature', 'properties': {'id': 'f5f9d8fa-8316-4dd8-9c6a-7bcced0ae0d9', 'info': None, 'row': 0, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.5518209280913542, 48.84079360121363, 0]}}, {'type': 'Feature', 'properties': {'id': '81a7d52b-eaf0-410a-ac4a-12c7844d9b61', 'info': None, 'row': 0, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-1.7310333355113972, 48.86387233349447, 0]}}, {'type': 'Feature', 'properties': {'id': '369f61f5-abca-4e17-8dd5-c48462a4df29', 'info': None, 'row': 0, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-1.910409422779044, 48.88667262712487, 0]}}, {'type': 'Feature', 'properties': {'id': '26012740-f602-4fd7-9416-03f363fef940', 'info': None, 'row': 0, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.089947483752318, 48.909194011113016, 0]}}, {'type': 'Feature', 'properties': {'id': '803f0880-c0ce-48cc-b395-a5efceecfa18', 'info': None, 'row': 0, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.2696457985499756, 48.93143601908838, 0]}}, {'type': 'Feature', 'properties': {'id': 'dfd86a30-989a-49d9-b7e2-74b9b4f010da', 'info': None, 'row': 0, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.449502633978377, 48.953398189391784, 0]}}, {'type': 'Feature', 'properties': {'id': 'f2dd908f-5033-4cbd-80d0-eb5c86c24183', 'info': None, 'row': 0, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.6295162436798374, 48.97508006512813, 0]}}, {'type': 'Feature', 'properties': {'id': '4f35f5b9-e35e-43c9-9b8b-0ce0d9337c85', 'info': None, 'row': 0, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-2.809684868207198, 48.996481194210055, 0]}}, {'type': 'Feature', 'properties': {'id': 'c4e3b205-24b5-4712-9f53-e88adc71de21', 'info': None, 'row': 0, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-2.9900067351206006, 49.017601129403346, 0]}}, {'type': 'Feature', 'properties': {'id': '5d831154-3d7c-4b14-9aad-0ebcd65b2318', 'info': None, 'row': 0, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.1704800591343854, 49.03843942837817, 0]}}, {'type': 'Feature', 'properties': {'id': 'c1adaa06-30e2-4caa-aa12-73d8bd4a48c3', 'info': None, 'row': 0, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.351103042302956, 49.05899565376363, 0]}}, {'type': 'Feature', 'properties': {'id': '78763eb1-6a41-4394-8fe1-33d8eade4182', 'info': None, 'row': 0, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.5318738742177196, 49.07926937320238, 0]}}, {'type': 'Feature', 'properties': {'id': 'f85b498c-cd5a-4ae6-b14c-2f14fa3478d8', 'info': None, 'row': 0, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.7127907321851965, 49.09926015940182, 0]}}, {'type': 'Feature', 'properties': {'id': '5749386d-5b48-4f3a-a928-120670dc5ed2', 'info': None, 'row': 0, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-3.893851781366501, 49.11896759017981, 0]}}, {'type': 'Feature', 'properties': {'id': '16642847-0bbc-461c-bcf4-a4a70415248f', 'info': None, 'row': 0, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.0750551748745, 49.13839124850543, 0]}}, {'type': 'Feature', 'properties': {'id': 'f15c56a8-e9a0-4456-acd6-cf2479000fc3', 'info': None, 'row': 0, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.2563990538490275, 49.15753072253673, 0]}}, {'type': 'Feature', 'properties': {'id': '91e1d343-70b1-4c69-84bd-aa5a0d981514', 'info': None, 'row': 0, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.437881547556463, 49.176385605661245, 0]}}, {'type': 'Feature', 'properties': {'id': 'b04b04e1-2aab-4159-97f6-09a36b6e872a', 'info': None, 'row': 0, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.61950077358829, 49.19495549654587, 0]}}, {'type': 'Feature', 'properties': {'id': 'aceefd46-7c41-41b9-a9b5-3d9315fec7e7', 'info': None, 'row': 0, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-4.801254713622799, 49.21324026929254, 0]}}, {'type': 'Feature', 'properties': {'id': '0f09ebe8-4f4b-4c89-9035-308561e148b0', 'info': None, 'row': 42, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.3957883094293422, 48.742149819762005, 0]}}, {'type': 'Feature', 'properties': {'id': '24a530af-1271-4e11-b6e6-bc25ffe7a963', 'info': None, 'row': 42, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.5745715460110883, 48.76549660461955, 0]}}, {'type': 'Feature', 'properties': {'id': '3630f5d3-ff06-43ab-9fc6-97245a64bc78', 'info': None, 'row': 42, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-1.7535193974896204, 48.788566146583584, 0]}}, {'type': 'Feature', 'properties': {'id': '50e07edf-6604-4aee-ada4-6b70c4643dfd', 'info': None, 'row': 42, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-1.9326301847009657, 48.81135797253279, 0]}}, {'type': 'Feature', 'properties': {'id': 'ff232a48-af7b-492c-b686-2438581a444c', 'info': None, 'row': 42, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.1119022136854553, 48.83387161373967, 0]}}, {'type': 'Feature', 'properties': {'id': '39482d01-f852-4623-a911-4bf57c33168c', 'info': None, 'row': 42, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.291333776773501, 48.85610660605137, 0]}}, {'type': 'Feature', 'properties': {'id': '9f5b25f6-cb22-4dbb-824b-0a09fcfa0d68', 'info': None, 'row': 42, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.470923153023083, 48.87806248998152, 0]}}, {'type': 'Feature', 'properties': {'id': '27d5196b-49b2-4221-91b7-9d2d657d4f0d', 'info': None, 'row': 42, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.6506686083787643, 48.89973881076459, 0]}}, {'type': 'Feature', 'properties': {'id': '91276ffb-52d4-4f62-b206-2f0d62184c95', 'info': None, 'row': 42, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-2.8305683957559262, 48.921135118400784, 0]}}, {'type': 'Feature', 'properties': {'id': 'dde56efb-2476-49d8-8dfa-0a88452de5c7', 'info': None, 'row': 42, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.0106207551450503, 48.942250967702606, 0]}}, {'type': 'Feature', 'properties': {'id': '38b097ae-3afc-4c13-8309-e16b027a5b0c', 'info': None, 'row': 42, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.190823913763992, 48.96308591834672, 0]}}, {'type': 'Feature', 'properties': {'id': '0dccbc24-ac07-44c5-86d5-a2e6b6c019d4', 'info': None, 'row': 42, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.3711760862469218, 48.98363953492899, 0]}}, {'type': 'Feature', 'properties': {'id': '54564761-a519-46b3-83ea-d0bf9aa1e32a', 'info': None, 'row': 42, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.551675474842439, 49.00391138701905, 0]}}, {'type': 'Feature', 'properties': {'id': '300b1a50-94ba-4354-bdcf-2931c3265f74', 'info': None, 'row': 42, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.7323202695917086, 49.02390104921165, 0]}}, {'type': 'Feature', 'properties': {'id': 'ad2c2309-f3ea-4ef7-8458-24e8ddcc3a42', 'info': None, 'row': 42, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-3.913108648467083, 49.043608101172225, 0]}}, {'type': 'Feature', 'properties': {'id': '1e89d90c-e4b0-4d79-bc2b-03a19990962d', 'info': None, 'row': 42, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.094038777469064, 49.06303212767756, 0]}}, {'type': 'Feature', 'properties': {'id': 'd848b3ab-fc65-4fdf-9fb2-48102a7b3126', 'info': None, 'row': 42, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.275108810702362, 49.08217271865364, 0]}}, {'type': 'Feature', 'properties': {'id': '5fed47ff-32b1-43e0-9bd3-7155219ef820', 'info': None, 'row': 42, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.456316890478916, 49.10102946921646, 0]}}, {'type': 'Feature', 'properties': {'id': 'b1755069-cd67-43bd-86b3-5d9ae803dd49', 'info': None, 'row': 42, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.637661147523472, 49.11960197972256, 0]}}, {'type': 'Feature', 'properties': {'id': '115579c5-79a6-4030-8631-e99b3505adec', 'info': None, 'row': 42, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-4.819139577240211, 49.13789012521157, 0]}}, {'type': 'Feature', 'properties': {'id': 'e185878d-1c20-468b-98b6-30866d0a2652', 'info': None, 'row': 84, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.4188027270144523, 48.66686273380767, 0]}}, {'type': 'Feature', 'properties': {'id': '6aa3c716-418a-4b1f-be7b-6e467d678a29', 'info': None, 'row': 84, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.5973221639308217, 48.690199608025466, 0]}}, {'type': 'Feature', 'properties': {'id': 'aea5b2b3-4ec6-4c7d-b0d1-1e1d9dc1c03e', 'info': None, 'row': 84, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-1.7760054594678436, 48.71325995967271, 0]}}, {'type': 'Feature', 'properties': {'id': '6545d508-6d17-4c1c-84af-d14ba31e707f', 'info': None, 'row': 84, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-1.9548509466228867, 48.736043317940705, 0]}}, {'type': 'Feature', 'properties': {'id': '90004880-4506-4d95-845a-61d4cd0bc10a', 'info': None, 'row': 84, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.1338569436185924, 48.75854921636632, 0]}}, {'type': 'Feature', 'properties': {'id': 'b1da6d1e-a81a-4b9b-9b7f-b612ffb403e9', 'info': None, 'row': 84, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.3130217549970253, 48.780777193014345, 0]}}, {'type': 'Feature', 'properties': {'id': '34a35706-483d-43d1-af45-6faa38d3079c', 'info': None, 'row': 84, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.492343672067789, 48.802726790571256, 0]}}, {'type': 'Feature', 'properties': {'id': '698483e6-a973-4011-a319-ea3f090a1f7c', 'info': None, 'row': 84, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.671820973077691, 48.82439755640104, 0]}}, {'type': 'Feature', 'properties': {'id': 'd6fb1e15-14b0-4226-9cf6-3a9eebd88618', 'info': None, 'row': 84, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-2.851451923304654, 48.8457890425915, 0]}}, {'type': 'Feature', 'properties': {'id': '64f1a587-8a4f-41f1-a879-6ed872a7c659', 'info': None, 'row': 84, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.0312347751694997, 48.86690080600184, 0]}}, {'type': 'Feature', 'properties': {'id': '8b81afdc-cdc5-464c-bb12-16df92a92b4d', 'info': None, 'row': 84, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.2111677683935986, 48.88773240831528, 0]}}, {'type': 'Feature', 'properties': {'id': '91e94d55-03ac-4493-a36a-fb098841288f', 'info': None, 'row': 84, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.391249130190887, 48.90828341609435, 0]}}, {'type': 'Feature', 'properties': {'id': '987b11de-6681-4396-b45c-d1bff8c1bc51', 'info': None, 'row': 84, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.571477075467158, 48.92855340083572, 0]}}, {'type': 'Feature', 'properties': {'id': '8725e49d-e99f-46e5-8c68-004e8f759a51', 'info': None, 'row': 84, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.751849806998221, 48.94854193902148, 0]}}, {'type': 'Feature', 'properties': {'id': 'c376d20d-ead1-4800-b60f-f12388c01c8d', 'info': None, 'row': 84, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-3.932365515567665, 48.96824861216463, 0]}}, {'type': 'Feature', 'properties': {'id': '09315aae-424e-4de8-ad49-bad9ca4cd6d5', 'info': None, 'row': 84, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.113022380063628, 48.98767300684966, 0]}}, {'type': 'Feature', 'properties': {'id': 'f9bb1cc3-369c-4e56-8864-5184ef21b988', 'info': None, 'row': 84, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.293818567555695, 49.00681471477054, 0]}}, {'type': 'Feature', 'properties': {'id': '83f16d8f-a968-4f7c-9016-7f95f873dff3', 'info': None, 'row': 84, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.474752233401365, 49.02567333277167, 0]}}, {'type': 'Feature', 'properties': {'id': 'febe808e-3c9d-4188-8100-f896088ff43f', 'info': None, 'row': 84, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.655821521458654, 49.04424846289924, 0]}}, {'type': 'Feature', 'properties': {'id': '54a7f797-74d0-421f-89a8-71d5434bcf85', 'info': None, 'row': 84, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-4.837024440857625, 49.06253998113059, 0]}}, {'type': 'Feature', 'properties': {'id': '7fed37f1-6dd7-4c36-9d4c-540df457acea', 'info': None, 'row': 126, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.442009036376349, 48.59160473807262, 0]}}, {'type': 'Feature', 'properties': {'id': 'fe0e70e3-4dc0-4f29-8c0a-725d1a2108bb', 'info': None, 'row': 126, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.6202666191566402, 48.61493145891624, 0]}}, {'type': 'Feature', 'properties': {'id': '71ee320a-f197-4eb3-8dd5-7f373cb53f8b', 'info': None, 'row': 126, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-1.7986872776197056, 48.63798236934871, 0]}}, {'type': 'Feature', 'properties': {'id': '9786b293-6f29-4523-bc16-f36ca92d0770', 'info': None, 'row': 126, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-1.9772693598593545, 48.660757001406395, 0]}}, {'type': 'Feature', 'properties': {'id': '28ea5a93-9c2f-467d-a195-76d0d0336f79', 'info': None, 'row': 126, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.156011198806695, 48.68325489135157, 0]}}, {'type': 'Feature', 'properties': {'id': 'e05b5d42-4fa7-4b34-8d30-4bf923841ca0', 'info': None, 'row': 126, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.334911113407467, 48.7054755798692, 0]}}, {'type': 'Feature', 'properties': {'id': '412a91fc-9d00-4db2-850e-465c5c112794', 'info': None, 'row': 126, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.513967409135614, 48.727418612171796, 0]}}, {'type': 'Feature', 'properties': {'id': '3b7e916e-cbbf-4c6c-bcb7-64b8f35b7236', 'info': None, 'row': 126, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.6931783782146703, 48.74908353806428, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6ed0cf2-a1d2-4f1d-8fec-fc51ed226262', 'info': None, 'row': 126, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-2.8725422997530172, 48.77046991199728, 0]}}, {'type': 'Feature', 'properties': {'id': '2750ac87-eb6b-4173-8107-f2a48339c3fc', 'info': None, 'row': 126, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.052057439889071, 48.791577293120596, 0]}}, {'type': 'Feature', 'properties': {'id': '1cd6eb72-b638-4c43-af5d-4229f5076936', 'info': None, 'row': 126, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.231722051976316, 48.81240524534047, 0]}}, {'type': 'Feature', 'properties': {'id': '93701367-007a-4b95-8661-48aab0c63fdd', 'info': None, 'row': 126, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.411534376798293, 48.832953337378946, 0]}}, {'type': 'Feature', 'properties': {'id': '9fdddb5e-4c0f-4695-ae87-30d03da94459', 'info': None, 'row': 126, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.5914926427874714, 48.853221142831984, 0]}}, {'type': 'Feature', 'properties': {'id': 'fb518710-321d-48c3-80f3-e9b7fc5c293e', 'info': None, 'row': 126, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.7715950662204514, 48.87320824022358, 0]}}, {'type': 'Feature', 'properties': {'id': 'e9163d6f-e228-40b0-901c-0200063bb858', 'info': None, 'row': 126, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-3.951839851370565, 48.89291421305385, 0]}}, {'type': 'Feature', 'properties': {'id': '93ee0f8b-16f8-48cb-9cc1-223585e859d9', 'info': None, 'row': 126, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.13222519061768, 48.91233864984155, 0]}}, {'type': 'Feature', 'properties': {'id': '3be69443-ae6a-4bfb-bb0f-cce45fb935a9', 'info': None, 'row': 126, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.312749264536126, 48.93148114416389, 0]}}, {'type': 'Feature', 'properties': {'id': '42ece453-7bc0-494a-bcbe-51858d5d7aa1', 'info': None, 'row': 126, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.493410242009888, 48.95034129469888, 0]}}, {'type': 'Feature', 'properties': {'id': 'e69ac2a1-cd8c-4515-9c45-8ef320b6f651', 'info': None, 'row': 126, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.67420628045127, 48.968918705277694, 0]}}, {'type': 'Feature', 'properties': {'id': 'af208750-c47d-4b59-8e8a-3745ac4b865c', 'info': None, 'row': 126, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-4.855135403072924, 48.98721325290433, 0]}}, {'type': 'Feature', 'properties': {'id': 'ad581031-0575-4ed5-84a2-95a585894388', 'info': None, 'row': 168, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.4653296060839676, 48.51636406386417, 0]}}, {'type': 'Feature', 'properties': {'id': '5e838ed3-7823-4120-814b-961625ff8277', 'info': None, 'row': 168, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.6433264931772498, 48.53968048679942, 0]}}, {'type': 'Feature', 'properties': {'id': '753dea26-9279-4c49-9557-9d74cb593249', 'info': None, 'row': 168, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-1.8214856571399172, 48.56272180662203, 0]}}, {'type': 'Feature', 'properties': {'id': '1a52c4ad-597c-42ad-b6b5-e4753a56a20e', 'info': None, 'row': 168, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-1.9998054629098967, 48.5854875585304, 0]}}, {'type': 'Feature', 'properties': {'id': '716e7981-33a4-455b-88d9-1792d619e8a2', 'info': None, 'row': 168, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.178284259630945, 48.607977281786816, 0]}}, {'type': 'Feature', 'properties': {'id': '67a9cccf-365a-4c1f-b04f-8895ccf733d9', 'info': None, 'row': 168, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.356920381957696, 48.63019051993603, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6b15e1b-4e78-43d0-bf96-ac7be44bc753', 'info': None, 'row': 168, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.5357121506673486, 48.652126820926924, 0]}}, {'type': 'Feature', 'properties': {'id': 'f89c9e72-a455-4f50-bc1b-7254b80d9516', 'info': None, 'row': 168, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.7146578729572135, 48.67378573719077, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4bb0f2f-d037-451b-9d50-60958ce250f5', 'info': None, 'row': 168, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-2.8937558426401946, 48.69516682570489, 0]}}, {'type': 'Feature', 'properties': {'id': '27561465-954a-4f5c-be4c-676cada9e70d', 'info': None, 'row': 168, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.073004340338785, 48.716269648054954, 0]}}, {'type': 'Feature', 'properties': {'id': '330fbdd5-1035-4b21-8b8e-57f33461562e', 'info': None, 'row': 168, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.2524016337105994, 48.73709377049911, 0]}}, {'type': 'Feature', 'properties': {'id': '320c1660-8294-487f-8639-72e7148d8f98', 'info': None, 'row': 168, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.4319459776981756, 48.7576387640337, 0]}}, {'type': 'Feature', 'properties': {'id': 'b5bd065a-ed8d-4d69-8bdd-3c778d21a597', 'info': None, 'row': 168, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.6116356147783795, 48.77790420445653, 0]}}, {'type': 'Feature', 'properties': {'id': '2f2b6a19-23ad-4290-80d2-27313a34df75', 'info': None, 'row': 168, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.7914687751848053, 48.79788967242563, 0]}}, {'type': 'Feature', 'properties': {'id': '9f6b1147-0f74-41d3-ab11-a69001a131ff', 'info': None, 'row': 168, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-3.971443677084532, 48.817594753511244, 0]}}, {'type': 'Feature', 'properties': {'id': 'dcd43a04-620b-47d2-ba93-c08b9c5e3965', 'info': None, 'row': 168, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.151558526708865, 48.83701903824176, 0]}}, {'type': 'Feature', 'properties': {'id': '82e8a824-ce8f-450e-8acd-adff2717e11e', 'info': None, 'row': 168, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.331811518458333, 48.85616212214633, 0]}}, {'type': 'Feature', 'properties': {'id': 'a0b1eb66-e4e8-485a-9bc5-f47bb572041b', 'info': None, 'row': 168, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.512200835029772, 48.87502360579914, 0]}}, {'type': 'Feature', 'properties': {'id': '6d6c754e-69fb-447d-9a96-51d8c8dd85d7', 'info': None, 'row': 168, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.692724647640477, 48.89360309487315, 0]}}, {'type': 'Feature', 'properties': {'id': 'ea3834a9-426d-4ec2-9295-8ed8f18eeec9', 'info': None, 'row': 168, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-4.8733809937980785, 48.911900467451986, 0]}}, {'type': 'Feature', 'properties': {'id': '3632f38b-764a-42fd-81be-818d16bf105a', 'info': None, 'row': 210, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.488616221127446, 48.441120479017556, 0]}}, {'type': 'Feature', 'properties': {'id': 'e171e1b7-79aa-48a2-9d92-0b8db30a51ca', 'info': None, 'row': 210, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.6663527358543222, 48.46442663594594, 0]}}, {'type': 'Feature', 'properties': {'id': '42b2c00b-1e58-4aa3-8f9a-c52cbc6a8b2c', 'info': None, 'row': 210, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-1.8442507504987027, 48.487458399283184, 0]}}, {'type': 'Feature', 'properties': {'id': '4f3ad32b-db48-4ea0-9308-892c9f1b531d', 'info': None, 'row': 210, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.0223086448926275, 48.51021530704359, 0]}}, {'type': 'Feature', 'properties': {'id': '01b5e680-c682-4284-a44f-1da184084b3b', 'info': None, 'row': 210, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.20052478269804, 48.53269690118818, 0]}}, {'type': 'Feature', 'properties': {'id': '05ad1d0b-9533-418f-8851-9000ff0ee924', 'info': None, 'row': 210, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.378897512791895, 48.55490272785725, 0]}}, {'type': 'Feature', 'properties': {'id': '14601790-fe0e-4cf1-964c-7ac466959eb1', 'info': None, 'row': 210, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.557425169940669, 48.5768323375028, 0]}}, {'type': 'Feature', 'properties': {'id': '28d6526b-2f47-40d3-8f9a-98d06c8db250', 'info': None, 'row': 210, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.7361060751475086, 48.59848528497544, 0]}}, {'type': 'Feature', 'properties': {'id': '6d4cb9eb-b09e-4dd0-8c93-df957880c94b', 'info': None, 'row': 210, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-2.9149385358873965, 48.61986112959483, 0]}}, {'type': 'Feature', 'properties': {'id': '9be6fe88-9b10-415a-bbc6-4b0f9bfa585f', 'info': None, 'row': 210, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.093920846333539, 48.64095943521769, 0]}}, {'type': 'Feature', 'properties': {'id': 'b171549a-aa91-49f8-9928-59febb81804d', 'info': None, 'row': 210, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.2730512876097286, 48.661779770306524, 0]}}, {'type': 'Feature', 'properties': {'id': '67ccb47f-6470-4f9c-b6a7-e1957fd27217', 'info': None, 'row': 210, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.452328128063041, 48.68232170799936, 0]}}, {'type': 'Feature', 'properties': {'id': 'c1306100-e8f3-4aef-a5da-db039d952d54', 'info': None, 'row': 210, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.631749623533127, 48.70258482617632, 0]}}, {'type': 'Feature', 'properties': {'id': '1d1634a2-c1f4-4518-93bc-75cdf28c0045', 'info': None, 'row': 210, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.8113140175920224, 48.72256870752131, 0]}}, {'type': 'Feature', 'properties': {'id': '6735228f-e2bc-43fb-a46e-f779a8254f2e', 'info': None, 'row': 210, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-3.991019541736289, 48.742272939576566, 0]}}, {'type': 'Feature', 'properties': {'id': '06a64aa8-aa1d-4efa-9b80-b6d1c81faad3', 'info': None, 'row': 210, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.170864415530939, 48.76169711479051, 0]}}, {'type': 'Feature', 'properties': {'id': '23c8b23e-23ed-4097-aec4-fa215ee57695', 'info': None, 'row': 210, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.350846846725255, 48.780840830562184, 0]}}, {'type': 'Feature', 'properties': {'id': '3de43b12-48df-4c14-842a-886e1f0be10a', 'info': None, 'row': 210, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.530965031387561, 48.7997036892868, 0]}}, {'type': 'Feature', 'properties': {'id': 'ab785ad6-8d6b-41a6-8366-d6e8d96cf9f1', 'info': None, 'row': 210, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.711217154133362, 48.81828529841019, 0]}}, {'type': 'Feature', 'properties': {'id': '179c4290-9c84-4e28-bb54-41497f11c171', 'info': None, 'row': 210, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-4.8916012663893635, 48.83658553703354, 0]}}, {'type': 'Feature', 'properties': {'id': '91ac6af2-00c9-4050-93e0-b04e0ae262d0', 'info': None, 'row': 252, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.5117966339904552, 48.365867790381415, 0]}}, {'type': 'Feature', 'properties': {'id': '83f5e859-fa32-4611-93ed-88d1ae255338', 'info': None, 'row': 252, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.6892737876215118, 48.389163781083234, 0]}}, {'type': 'Feature', 'properties': {'id': '6685800c-3df0-456f-b81a-b44e7d048c1b', 'info': None, 'row': 252, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-1.866911732595829, 48.41218609466856, 0]}}, {'type': 'Feature', 'properties': {'id': '612e49e8-6dff-41e3-9639-8af48e0df649', 'info': None, 'row': 252, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.04470885754041, 48.43493427088461, 0]}}, {'type': 'Feature', 'properties': {'id': '59b3a0e1-5dd1-4330-be0a-d9c6c49e120f', 'info': None, 'row': 252, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.2226635353355095, 48.4574078534491, 0]}}, {'type': 'Feature', 'properties': {'id': '1c5b0787-84cf-4937-9e71-9e41ce5adef1', 'info': None, 'row': 252, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.400774124430748, 48.479606390271414, 0]}}, {'type': 'Feature', 'properties': {'id': 'ed867376-299c-41b4-a3d9-7445c76687ed', 'info': None, 'row': 252, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.579038969472073, 48.50152943357702, 0]}}, {'type': 'Feature', 'properties': {'id': '204d71b8-a6a2-4a30-a082-e5d5aabf20e0', 'info': None, 'row': 252, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.757456401615416, 48.52317653998835, 0]}}, {'type': 'Feature', 'properties': {'id': '72675561-a7be-42c8-b4d8-79213b7e0c03', 'info': None, 'row': 252, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-2.936024738737331, 48.544547270590684, 0]}}, {'type': 'Feature', 'properties': {'id': '22e5a09a-7b2c-44a4-a2d6-3c0cca68c57c', 'info': None, 'row': 252, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.114742285642389, 48.56564119099647, 0]}}, {'type': 'Feature', 'properties': {'id': '68dc88e9-481e-4424-bdbf-112b8244c543', 'info': None, 'row': 252, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.2936073342996415, 48.58645787141099, 0]}}, {'type': 'Feature', 'properties': {'id': 'dfeb663c-cf3f-4201-a367-45f18439dc68', 'info': None, 'row': 252, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.4726181641009433, 48.60699688669911, 0]}}, {'type': 'Feature', 'properties': {'id': '73c4a33c-8ad4-40c1-b41c-7bbae9ca3688', 'info': None, 'row': 252, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.651773042116789, 48.62725781644947, 0]}}, {'type': 'Feature', 'properties': {'id': '4b3b134f-b864-4528-9178-3afe7b14bc4d', 'info': None, 'row': 252, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.8310702233229894, 48.64724024503372, 0]}}, {'type': 'Feature', 'properties': {'id': 'c3a3ff72-98dc-499b-b92a-5823b22f4282', 'info': None, 'row': 252, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-4.010507950780692, 48.66694376165883, 0]}}, {'type': 'Feature', 'properties': {'id': 'f6857211-fc41-4ee4-93ac-964ec3905783', 'info': None, 'row': 252, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.190084455769288, 48.686367960413115, 0]}}, {'type': 'Feature', 'properties': {'id': 'cdec3c0c-4fe4-4d0d-891c-49767e3409a6', 'info': None, 'row': 252, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.369797957893455, 48.705512440309064, 0]}}, {'type': 'Feature', 'properties': {'id': '79d3d67e-ceac-4b80-a854-2cf7b9a4612a', 'info': None, 'row': 252, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.549646665212557, 48.72437680532764, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3c1ded7-fdbd-4a6a-ba4c-1f590e5543f8', 'info': None, 'row': 252, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.729628774467971, 48.74296066447216, 0]}}, {'type': 'Feature', 'properties': {'id': '9f6fb377-c30a-421c-8f55-1e21e021b8be', 'info': None, 'row': 252, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-4.909742349829752, 48.761263897667085, 0]}}, {'type': 'Feature', 'properties': {'id': '744e6606-faa9-478a-833c-21d43018929f', 'info': None, 'row': 294, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.5349770468534645, 48.29061510174527, 0]}}, {'type': 'Feature', 'properties': {'id': '077a7c02-73ba-4db7-ac96-5f137bf9836d', 'info': None, 'row': 294, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.7121948393887014, 48.313900926220505, 0]}}, {'type': 'Feature', 'properties': {'id': 'fd4ef1c0-5489-4fca-85f2-47efe36c242f', 'info': None, 'row': 294, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-1.8895727146929557, 48.33691379005392, 0]}}, {'type': 'Feature', 'properties': {'id': '8fa78356-b347-4c54-aabb-d24563832cc3', 'info': None, 'row': 294, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.067109070188193, 48.35965323472564, 0]}}, {'type': 'Feature', 'properties': {'id': '667a246d-9263-414a-bd67-c872ea33ba68', 'info': None, 'row': 294, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.24480228797298, 48.38211880571001, 0]}}, {'type': 'Feature', 'properties': {'id': 'd91e7556-7bea-4c38-b6ea-345697fa1497', 'info': None, 'row': 294, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.422650736069602, 48.404310052685574, 0]}}, {'type': 'Feature', 'properties': {'id': 'c1526672-94a9-402b-a798-dceefb946019', 'info': None, 'row': 294, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.6006527690034766, 48.42622652965124, 0]}}, {'type': 'Feature', 'properties': {'id': 'f0adf607-8b77-41a2-95ec-444e2390a95c', 'info': None, 'row': 294, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.7788067280833224, 48.447867795001244, 0]}}, {'type': 'Feature', 'properties': {'id': '4b4a2f81-8077-4f96-9ee8-6a23f45677f2', 'info': None, 'row': 294, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-2.957110941587265, 48.46923341158653, 0]}}, {'type': 'Feature', 'properties': {'id': '43b93247-9966-4daa-bd5d-7f485f0efac7', 'info': None, 'row': 294, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.1355637249512385, 48.49032294677525, 0]}}, {'type': 'Feature', 'properties': {'id': 'dd48d2ea-f28a-4c30-9f7f-57bcdd878f14', 'info': None, 'row': 294, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.314163380989553, 48.51113597251547, 0]}}, {'type': 'Feature', 'properties': {'id': 'a1a5ad97-2e9c-4ab2-964f-e9ce1370e8ff', 'info': None, 'row': 294, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.492908200138845, 48.531672065398844, 0]}}, {'type': 'Feature', 'properties': {'id': '70f962ec-087a-4e10-b10c-2204548439a3', 'info': None, 'row': 294, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.6717964607004507, 48.55193080672262, 0]}}, {'type': 'Feature', 'properties': {'id': 'd6e8251c-5a8f-4026-a8b5-a02ca170733b', 'info': None, 'row': 294, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.8508264290539564, 48.57191178254613, 0]}}, {'type': 'Feature', 'properties': {'id': 'd01de6c3-5867-471c-9aa4-f5c6906fc2f1', 'info': None, 'row': 294, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-4.029996359825095, 48.59161458374108, 0]}}, {'type': 'Feature', 'properties': {'id': '71a12af9-fe12-4669-941e-c90650dabc1b', 'info': None, 'row': 294, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.209304496007636, 48.61103880603573, 0]}}, {'type': 'Feature', 'properties': {'id': '31e700e9-b434-4c5d-8400-05d5e4915c8a', 'info': None, 'row': 294, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.388749069061655, 48.63018405005594, 0]}}, {'type': 'Feature', 'properties': {'id': '2598bd19-cb29-4512-80c9-aee789bf1576', 'info': None, 'row': 294, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.568328299037555, 48.64904992136845, 0]}}, {'type': 'Feature', 'properties': {'id': '6859122c-59e8-4d68-8f2a-ceeb6a4ce068', 'info': None, 'row': 294, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.748040394802578, 48.66763603053412, 0]}}, {'type': 'Feature', 'properties': {'id': 'b23aad8e-b870-4cbc-a4e2-5f5bffc87d75', 'info': None, 'row': 294, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-4.927883433270139, 48.68594225830062, 0]}}, {'type': 'Feature', 'properties': {'id': 'f5423035-d79c-475a-bf07-d1c5de5650de', 'info': None, 'row': 336, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.5581141166377988, 48.21536185773833, 0]}}, {'type': 'Feature', 'properties': {'id': '3034691f-c6af-4ea2-9008-63ace5a15df6', 'info': None, 'row': 336, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.7350741942858015, 48.23863756002657, 0]}}, {'type': 'Feature', 'properties': {'id': 'cce14551-d4dd-430b-83f1-13f8d359baef', 'info': None, 'row': 336, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-1.912193684907416, 48.2616410195291, 0]}}, {'type': 'Feature', 'properties': {'id': 'bd756e34-61e8-432d-ba5b-a575491118a4', 'info': None, 'row': 336, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.0894709916179233, 48.28437177890619, 0]}}, {'type': 'Feature', 'properties': {'id': '0186bdf5-3aa3-48a8-8f35-b583959de967', 'info': None, 'row': 336, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.2669045029709873, 48.30682938489922, 0]}}, {'type': 'Feature', 'properties': {'id': '9fc696ed-2cb0-4e22-aec7-d62a315fae82', 'info': None, 'row': 336, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.4444925941106415, 48.32901338852317, 0]}}, {'type': 'Feature', 'properties': {'id': 'f488f9a9-0dae-4c0a-b1be-ad4f428fbfb1', 'info': None, 'row': 336, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.6222336272688587, 48.35092334516798, 0]}}, {'type': 'Feature', 'properties': {'id': '8cd76ceb-4dec-4b45-899f-46664aeb402c', 'info': None, 'row': 336, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.8001259519752666, 48.37255881466055, 0]}}, {'type': 'Feature', 'properties': {'id': '39cf3895-6ee0-4a70-89ef-a4c5d2c0332e', 'info': None, 'row': 336, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-2.978167905182963, 48.39391936131542, 0]}}, {'type': 'Feature', 'properties': {'id': 'bd54ca0a-c54b-48b6-9a25-e56d9a755b55', 'info': None, 'row': 336, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.1563578114055457, 48.41500455398592, 0]}}, {'type': 'Feature', 'properties': {'id': 'a289bc39-f7d2-415f-8181-731a198c9a03', 'info': None, 'row': 336, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.3346939828941844, 48.435813966119085, 0]}}, {'type': 'Feature', 'properties': {'id': 'e934f3de-23bb-4456-b51b-163d477c50be', 'info': None, 'row': 336, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.513174719845207, 48.45634717581291, 0]}}, {'type': 'Feature', 'properties': {'id': 'f429f2cb-2515-4b28-bf36-91164c3e32bc', 'info': None, 'row': 336, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.6917983106122385, 48.476603765872646, 0]}}, {'type': 'Feature', 'properties': {'id': '47c69a92-6d52-4ea4-9c20-da7240e99c98', 'info': None, 'row': 336, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.870563031894769, 48.496583323862886, 0]}}, {'type': 'Feature', 'properties': {'id': '949adef3-bdd2-43d5-948c-1a8597d11df8', 'info': None, 'row': 336, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-4.04946714888533, 48.51628544215379, 0]}}, {'type': 'Feature', 'properties': {'id': 'a1ce9471-c4d3-4dca-ac5c-374995ced562', 'info': None, 'row': 336, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.228508915373691, 48.53570971796198, 0]}}, {'type': 'Feature', 'properties': {'id': '754528e8-0ff1-4052-9dbb-39e0c6b56dca', 'info': None, 'row': 336, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.407686573829435, 48.5548557533885, 0]}}, {'type': 'Feature', 'properties': {'id': '1f6f082e-380e-4c81-aa49-5dc76a0eabd7', 'info': None, 'row': 336, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.586998355510756, 48.57372315545934, 0]}}, {'type': 'Feature', 'properties': {'id': 'ad741f77-6b80-44d8-9cba-3a9795f86156', 'info': None, 'row': 336, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.766442480674681, 48.59231153617587, 0]}}, {'type': 'Feature', 'properties': {'id': '78b81db4-6727-4210-952c-0eb5e8536868', 'info': None, 'row': 336, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-4.94601703825301, 48.610620777001834, 0]}}, {'type': 'Feature', 'properties': {'id': 'c742c3bf-751d-4d2c-9eab-53735470cc4c', 'info': None, 'row': 378, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.581243997667238, 48.14010852161924, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6b76ce5-f4a6-4aa0-961e-b57122690215', 'info': None, 'row': 378, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.757946633463296, 48.163374109024744, 0]}}, {'type': 'Feature', 'properties': {'id': 'e398d633-0a22-4362-8c73-d9955bbc7e90', 'info': None, 'row': 378, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-1.934808018869304, 48.1863681717298, 0]}}, {'type': 'Feature', 'properties': {'id': '54546c31-ffd7-4caa-a4ee-aedf5a4586ba', 'info': None, 'row': 378, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.1118265621794268, 48.20909025348309, 0]}}, {'type': 'Feature', 'properties': {'id': '16b487d7-ee0d-4dce-9d0d-cf45684a1614', 'info': None, 'row': 378, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.289000657944129, 48.23153990221182, 0]}}, {'type': 'Feature', 'properties': {'id': 'e6b63948-5c89-46c0-a63c-e8dbbd71ed81', 'info': None, 'row': 378, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.4663286880226902, 48.253716670195736, 0]}}, {'type': 'Feature', 'properties': {'id': '4351dc71-b70d-4200-af30-355959a6ae14', 'info': None, 'row': 378, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.643809021993242, 48.27562011415228, 0]}}, {'type': 'Feature', 'properties': {'id': 'b4f4a494-2bdd-4cee-91db-ecc3ff9c6bfb', 'info': None, 'row': 378, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.82144001728591, 48.29724979528481, 0]}}, {'type': 'Feature', 'properties': {'id': '284634ed-c2b7-4a0b-b179-fc948f239d3f', 'info': None, 'row': 378, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-2.9992200192423923, 48.31860527932135, 0]}}, {'type': 'Feature', 'properties': {'id': '8ff26409-2f8c-45b1-a0fc-ed12cfef85ae', 'info': None, 'row': 378, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.17714736119626, 48.33968613655553, 0]}}, {'type': 'Feature', 'properties': {'id': '556e0d99-3982-4658-9ba3-00ab8c9a2958', 'info': None, 'row': 378, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.355220364601951, 48.36049194189293, 0]}}, {'type': 'Feature', 'properties': {'id': 'cdcd4821-f4db-4010-b31b-93ec98995c15', 'info': None, 'row': 378, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.5334373392023406, 48.3810222749013, 0]}}, {'type': 'Feature', 'properties': {'id': 'd1e4eaa9-0c9a-4b79-9a5a-c68ed35c98e2', 'info': None, 'row': 378, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.7117965832078736, 48.401276719860675, 0]}}, {'type': 'Feature', 'properties': {'id': '59f4e7b6-105d-437a-ba03-84076bc919d8', 'info': None, 'row': 378, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.8902963834581725, 48.4212548658106, 0]}}, {'type': 'Feature', 'properties': {'id': 'b8b200d7-5b65-4f3e-8b76-868e94c98797', 'info': None, 'row': 378, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-4.068935015547081, 48.440956306592156, 0]}}, {'type': 'Feature', 'properties': {'id': '6d0e501f-1ab7-43c9-b9e7-f6b38f0bc209', 'info': None, 'row': 378, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.247710743908048, 48.460380640885155, 0]}}, {'type': 'Feature', 'properties': {'id': 'e3980cf3-e2e7-4e45-a429-cad41a99e233', 'info': None, 'row': 378, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.426621821879865, 48.47952747224291, 0]}}, {'type': 'Feature', 'properties': {'id': '231ff766-a9ad-4b37-9b25-c1be0955c2e8', 'info': None, 'row': 378, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.605666491798618, 48.49839640912967, 0]}}, {'type': 'Feature', 'properties': {'id': 'c767c3e9-aba8-4080-8e6f-b95d136df1e0', 'info': None, 'row': 378, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.78484298518902, 48.51698706496792, 0]}}, {'type': 'Feature', 'properties': {'id': 'b1e449d5-ee2e-423a-990a-0c92899d9a68', 'info': None, 'row': 378, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-4.964149402881026, 48.53529932191968, 0]}}, {'type': 'Feature', 'properties': {'id': '040259b6-060b-427e-856c-1e0d99778022', 'info': None, 'row': 420, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.603987960956164, 48.06480701305436, 0]}}, {'type': 'Feature', 'properties': {'id': 'a9ac6949-bfcc-4570-9348-e56f94318464', 'info': None, 'row': 420, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.7804349011077483, 48.08806321835211, 0]}}, {'type': 'Feature', 'properties': {'id': '804b0764-dacf-41d4-8a5f-0be84fbfa161', 'info': None, 'row': 420, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-1.9570399028428018, 48.11104860851922, 0]}}, {'type': 'Feature', 'properties': {'id': '3f1e148d-25c5-45d4-8a49-658a168a1702', 'info': None, 'row': 420, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.1338013828552556, 48.133762728953954, 0]}}, {'type': 'Feature', 'properties': {'id': '5bcfd9cf-398a-4f53-9caf-08927ea629e9', 'info': None, 'row': 420, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.3107177445111686, 48.156205129258204, 0]}}, {'type': 'Feature', 'properties': {'id': 'a84db0cd-194d-4666-a14c-7d107d58a926', 'info': None, 'row': 420, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.4877873788484792, 48.17837536340216, 0]}}, {'type': 'Feature', 'properties': {'id': '509658dd-9456-4082-8bbc-af35dcc86d44', 'info': None, 'row': 420, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.665008664944961, 48.200272989802045, 0]}}, {'type': 'Feature', 'properties': {'id': '758d99bc-b929-4c03-aac1-e9420382f8f7', 'info': None, 'row': 420, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.84237997001697, 48.22189757136196, 0]}}, {'type': 'Feature', 'properties': {'id': '6ec1f0b6-6774-495f-b6c5-2f237805073c', 'info': None, 'row': 420, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-3.0198996494508807, 48.24324867550756, 0]}}, {'type': 'Feature', 'properties': {'id': '8e706b98-0488-45de-9bb3-96bfb9aa6186', 'info': None, 'row': 420, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.197566046860037, 48.264325874222656, 0]}}, {'type': 'Feature', 'properties': {'id': '0d1c29dd-9990-4580-9f3f-2df3e8cc3613', 'info': None, 'row': 420, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.375377494194114, 48.28512874409196, 0]}}, {'type': 'Feature', 'properties': {'id': 'c7148a6d-6123-48a5-84a9-03436ffe7818', 'info': None, 'row': 420, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.553332311890189, 48.30565686634813, 0]}}, {'type': 'Feature', 'properties': {'id': 'fd5b74cf-8d4b-4f0a-8ff4-2652720a1813', 'info': None, 'row': 420, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.7314288090378978, 48.32590982691926, 0]}}, {'type': 'Feature', 'properties': {'id': '89c41b50-dddc-41b8-b00e-ed7bebe84517', 'info': None, 'row': 420, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.9096652835291223, 48.34588721647395, 0]}}, {'type': 'Feature', 'properties': {'id': '65552531-04af-4ebd-9bd9-992c91670180', 'info': None, 'row': 420, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-4.088040022172636, 48.36558863046114, 0]}}, {'type': 'Feature', 'properties': {'id': '750e5fb0-e6f8-47b1-b65c-f93e089e1534', 'info': None, 'row': 420, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.266551300770411, 48.385013669145714, 0]}}, {'type': 'Feature', 'properties': {'id': '992b55be-2ea1-4476-b8ee-261a9a58c67f', 'info': None, 'row': 420, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.445197384175022, 48.40416193764147, 0]}}, {'type': 'Feature', 'properties': {'id': 'f3ebfa11-410a-4fd3-87af-15f66e8490e4', 'info': None, 'row': 420, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.623976526373706, 48.42303304594726, 0]}}, {'type': 'Feature', 'properties': {'id': '51db18d8-d4f1-4d43-9cb6-963a182bbad6', 'info': None, 'row': 420, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.802886970671671, 48.44162660899277, 0]}}, {'type': 'Feature', 'properties': {'id': 'ae1561d8-12b9-4a47-b42d-1f434b5b986e', 'info': None, 'row': 420, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-4.981926830264267, 48.45994250972013, 0]}}, {'type': 'Feature', 'properties': {'id': '17f5ba7b-c9d9-4829-836f-6ae3e0965ce2', 'info': None, 'row': 462, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.6263023177037634, 47.98945187855927, 0]}}, {'type': 'Feature', 'properties': {'id': 'eeca81f6-86c3-42e5-8caa-ce1aa4b5d31f', 'info': None, 'row': 462, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.8024955061022103, 48.01269951747991, 0]}}, {'type': 'Feature', 'properties': {'id': 'bdaa7104-f535-456f-89c3-0c1a948b582a', 'info': None, 'row': 462, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-1.978846040602809, 48.03567704136025, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb1a527d-1552-4c9e-bcf3-f63e9a3897ad', 'info': None, 'row': 462, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.155352349884766, 48.058383997872824, 0]}}, {'type': 'Feature', 'properties': {'id': 'f2b961d4-c295-4924-8ddd-f1739400dcdc', 'info': None, 'row': 462, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.332012849267641, 48.08081993883837, 0]}}, {'type': 'Feature', 'properties': {'id': '581dc0cd-3774-4e19-92dc-9779c3948a25', 'info': None, 'row': 462, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.5088259417103203, 48.102984420391536, 0]}}, {'type': 'Feature', 'properties': {'id': '983cb923-2ead-4c46-963a-7c3c68b6927f', 'info': None, 'row': 462, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.6857900181874887, 48.12487700306052, 0]}}, {'type': 'Feature', 'properties': {'id': '46981afa-b926-45d4-88bd-a0a66981c1f3', 'info': None, 'row': 462, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.862903457800948, 48.14649725181118, 0]}}, {'type': 'Feature', 'properties': {'id': '6fc341d2-b49a-45e1-90ae-2d186a140265', 'info': None, 'row': 462, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-3.0401646278253023, 48.167844736083126, 0]}}, {'type': 'Feature', 'properties': {'id': '093da30c-9cd6-40f0-97b5-962886447332', 'info': None, 'row': 462, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.2175718837787306, 48.18891902982858, 0]}}, {'type': 'Feature', 'properties': {'id': 'a9b50664-2403-4026-9116-ada8edc6c19d', 'info': None, 'row': 462, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.3951235695443787, 48.20971971155677, 0]}}, {'type': 'Feature', 'properties': {'id': '860473f5-3517-4ea9-8510-4e97ff10584c', 'info': None, 'row': 462, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.572818017531098, 48.23024636438262, 0]}}, {'type': 'Feature', 'properties': {'id': 'e24a70ac-a06e-4503-a5d7-50b2f08e46ea', 'info': None, 'row': 462, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.750653548845829, 48.25049857607525, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5412adb-7921-4dd6-806c-dab00d3e5baf', 'info': None, 'row': 462, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.928628473448095, 48.27047593910374, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc26235e-601e-40dd-b3c0-924c8605a366', 'info': None, 'row': 462, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-4.106741090267334, 48.29017805067743, 0]}}, {'type': 'Feature', 'properties': {'id': '505af7c4-f78d-480f-a0b2-0e6bf07ac51b', 'info': None, 'row': 462, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.284989687280934, 48.30960451278183, 0]}}, {'type': 'Feature', 'properties': {'id': '07336c9d-3c8e-425c-895b-02868b50efa4', 'info': None, 'row': 462, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.463372541572796, 48.328754932211844, 0]}}, {'type': 'Feature', 'properties': {'id': '0b8fb127-acf0-4bab-a713-0058a146216a', 'info': None, 'row': 462, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.641887919419482, 48.34762892060806, 0]}}, {'type': 'Feature', 'properties': {'id': '43c19ed5-9c5e-4b72-8e93-dbda1dcec619', 'info': None, 'row': 462, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.820534076477538, 48.366226094503205, 0]}}, {'type': 'Feature', 'properties': {'id': '286ff05b-2512-4e4b-a7b9-b6ae89c2d7e8', 'info': None, 'row': 462, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-4.999309138827857, 48.38454633771064, 0]}}, {'type': 'Feature', 'properties': {'id': '75c9d756-b59c-4949-9685-d83377357d4f', 'info': None, 'row': 504, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.6486140680546462, 47.9140969060075, 0]}}, {'type': 'Feature', 'properties': {'id': 'f47ce5d9-b568-47c1-8b30-a99bf3e31958', 'info': None, 'row': 504, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.824553695771293, 47.93733598377033, 0]}}, {'type': 'Feature', 'properties': {'id': 'a8156669-79c9-493a-89a4-b8e987bb8f4b', 'info': None, 'row': 504, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-2.0006499562836915, 47.960305646422185, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc803dad-ba3c-4295-bb28-04ec4fc390a9', 'info': None, 'row': 504, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.1769012901135416, 47.98300544388445, 0]}}, {'type': 'Feature', 'properties': {'id': 'cef36176-b685-4b10-a475-6484b6737df3', 'info': None, 'row': 504, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.353306124402822, 48.005434930173784, 0]}}, {'type': 'Feature', 'properties': {'id': 'cd90b114-e5c9-4d99-bb6a-b0a531be6012', 'info': None, 'row': 504, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.5298628739127813, 48.027593663568645, 0]}}, {'type': 'Feature', 'properties': {'id': '55d6c7e3-d188-45a3-9a0c-bd486546eb74', 'info': None, 'row': 504, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.7065699414083904, 48.04948120669081, 0]}}, {'type': 'Feature', 'properties': {'id': 'a4fdafe5-bdcf-4ded-b217-b4afa182b0bf', 'info': None, 'row': 504, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.883425717781095, 48.07109712655154, 0]}}, {'type': 'Feature', 'properties': {'id': '34f0eda2-ab5d-484d-b027-d82e3aa46b30', 'info': None, 'row': 504, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-3.0604285821072628, 48.09244099458976, 0]}}, {'type': 'Feature', 'properties': {'id': 'f414d265-14e8-458c-acd8-e79e659b2c69', 'info': None, 'row': 504, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.2375769017312734, 48.113512386712756, 0]}}, {'type': 'Feature', 'properties': {'id': 'e371db0f-7c6a-432a-8284-54e84da79a33', 'info': None, 'row': 504, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.4148690323975845, 48.1343108833424, 0]}}, {'type': 'Feature', 'properties': {'id': 'e0f9bdff-1692-4a6e-983d-f8d2b6b5bd22', 'info': None, 'row': 504, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.5923033184200674, 48.15483606946488, 0]}}, {'type': 'Feature', 'properties': {'id': '50859f99-c958-4fa8-a431-bbaa4715a2ce', 'info': None, 'row': 504, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.769878092860773, 48.17508753468035, 0]}}, {'type': 'Feature', 'properties': {'id': '414f9422-0a0e-4006-8b09-e16d393af699', 'info': None, 'row': 504, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.9475916776886932, 48.19506487324915, 0]}}, {'type': 'Feature', 'properties': {'id': 'bc2982e7-cd65-4e98-8c3a-434392fd4929', 'info': None, 'row': 504, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-4.125442383899432, 48.21476768413261, 0]}}, {'type': 'Feature', 'properties': {'id': '04e21ba0-6d56-429f-b35b-e6a2a5b89500', 'info': None, 'row': 504, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.303428511594721, 48.23419557102906, 0]}}, {'type': 'Feature', 'properties': {'id': '26073b9e-cb72-4519-b1e8-3a9bc69d4d95', 'info': None, 'row': 504, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.4815483500418285, 48.2533481424073, 0]}}, {'type': 'Feature', 'properties': {'id': '8d7370b7-31c7-40c6-983d-18a6ac3b22ad', 'info': None, 'row': 504, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.659800177761281, 48.272225011543114, 0]}}, {'type': 'Feature', 'properties': {'id': 'a03292e2-bebd-4516-902b-7873ce4e3b2c', 'info': None, 'row': 504, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.838182262717241, 48.29082579656602, 0]}}, {'type': 'Feature', 'properties': {'id': 'aca961ce-c19d-4716-b89b-e616be7c6e80', 'info': None, 'row': 504, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-5.016692743831626, 48.30915038215507, 0]}}, {'type': 'Feature', 'properties': {'id': '88188e4f-6104-4ba7-81a5-e84b98723611', 'info': None, 'row': 546, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.6708990372419463, 47.83874359745053, 0]}}, {'type': 'Feature', 'properties': {'id': '36006876-101c-4d22-b6ea-6c85138377c8', 'info': None, 'row': 546, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.8465870675668459, 47.86197416768474, 0]}}, {'type': 'Feature', 'properties': {'id': '7f887879-452e-4787-a7e4-87324ab50381', 'info': None, 'row': 546, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-2.022431039728728, 47.88493602108278, 0]}}, {'type': 'Feature', 'properties': {'id': '3251c1ae-e77d-40c6-a98a-1b0f00adfb9f', 'info': None, 'row': 546, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.1984294046246995, 47.90762870955403, 0]}}, {'type': 'Feature', 'properties': {'id': '21c25250-5c5e-4168-a2d9-b30b1a942907', 'info': None, 'row': 546, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.3745805998722487, 47.930051789074845, 0]}}, {'type': 'Feature', 'properties': {'id': '3455a447-61f5-4d0f-b3c5-08ce8185664e', 'info': None, 'row': 546, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.5508830508165135, 47.95220481985585, 0]}}, {'type': 'Feature', 'properties': {'id': 'c743d09c-3e9b-48e1-a869-766867af5570', 'info': None, 'row': 546, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.7273351709171503, 47.97408736642356, 0]}}, {'type': 'Feature', 'properties': {'id': '84d919d5-6858-4c11-a4df-c6b06c843a36', 'info': None, 'row': 546, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.9039353618708685, 47.995698997666175, 0]}}, {'type': 'Feature', 'properties': {'id': '2f443ab5-49f8-403e-9bf8-fe4be11f3819', 'info': None, 'row': 546, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-3.080682013667366, 48.01703928687105, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4af2dcf-e750-43be-bfba-db8258bcf118', 'info': None, 'row': 546, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.257573504669205, 48.03810781176476, 0]}}, {'type': 'Feature', 'properties': {'id': '90842f58-02c1-4fb1-8b0e-76f021051ab8', 'info': None, 'row': 546, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.434608201740751, 48.058904154558576, 0]}}, {'type': 'Feature', 'properties': {'id': '705f041f-d226-496c-bcbd-4a9c88d4a983', 'info': None, 'row': 546, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.6117844604149347, 48.07942790199766, 0]}}, {'type': 'Feature', 'properties': {'id': '30d038c9-5395-40e3-9520-8a7ce642010c', 'info': None, 'row': 546, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.789100625069928, 48.099678645410215, 0]}}, {'type': 'Feature', 'properties': {'id': '006ca289-5d7c-4a86-bd80-536c1a7a2f13', 'info': None, 'row': 546, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.966555029086385, 48.11965598075328, 0]}}, {'type': 'Feature', 'properties': {'id': '92bc0662-6496-438a-84f1-47171bde3b86', 'info': None, 'row': 546, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-4.144145994966174, 48.13935950865319, 0]}}, {'type': 'Feature', 'properties': {'id': '7bc260e1-de06-4db7-b4be-16202303aa38', 'info': None, 'row': 546, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.321871834410482, 48.158788834441246, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc9d32ab-e0ab-4cd8-ab4e-392ad7730a47', 'info': None, 'row': 546, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.499730848377266, 48.177943568186635, 0]}}, {'type': 'Feature', 'properties': {'id': '896ae57f-b587-4da0-89c8-beccad504b6e', 'info': None, 'row': 546, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.677721327164888, 48.196823324732314, 0]}}, {'type': 'Feature', 'properties': {'id': '5f02efcf-a6ef-4b2d-8522-ea29d6c9a5b5', 'info': None, 'row': 546, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.855841550595878, 48.21542772374095, 0]}}, {'type': 'Feature', 'properties': {'id': '84079c47-8e56-45c0-b593-edfb4e8bb902', 'info': None, 'row': 546, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-5.034089669975773, 48.233756650699696, 0]}}, {'type': 'Feature', 'properties': {'id': '5fc7e290-7ce6-4af3-9d4d-574236af35c3', 'info': None, 'row': 588, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.6931840064292465, 47.763390288893554, 0]}}, {'type': 'Feature', 'properties': {'id': 'b7df884d-c1f4-4f01-b742-35f170036b79', 'info': None, 'row': 588, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.8686204393623989, 47.78661235159916, 0]}}, {'type': 'Feature', 'properties': {'id': '705c69e0-90c8-4db2-9be0-5d67df44e84b', 'info': None, 'row': 588, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-2.0442121231737653, 47.80956639574338, 0]}}, {'type': 'Feature', 'properties': {'id': '333fa02d-ca54-47cd-ac03-4f3307a696b9', 'info': None, 'row': 588, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.219957519135857, 47.83225197522363, 0]}}, {'type': 'Feature', 'properties': {'id': '64c5fbbc-1245-4197-848f-63c4639ea77d', 'info': None, 'row': 588, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.3958550753416747, 47.85466864797591, 0]}}, {'type': 'Feature', 'properties': {'id': '79c176b5-b45b-4d1a-8f07-7135277de0af', 'info': None, 'row': 588, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.571903227720246, 47.87681597614306, 0]}}, {'type': 'Feature', 'properties': {'id': '59b06798-9c6b-48bb-b736-156e118dab66', 'info': None, 'row': 588, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.7481004004259093, 47.8986935261563, 0]}}, {'type': 'Feature', 'properties': {'id': '1e32fa69-c17a-4ace-aecc-eb393284b593', 'info': None, 'row': 588, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.924445005960642, 47.92030086878079, 0]}}, {'type': 'Feature', 'properties': {'id': '290e01fd-5c73-4bf4-b10f-89476fa7a29c', 'info': None, 'row': 588, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-3.100935445227469, 47.941637579152335, 0]}}, {'type': 'Feature', 'properties': {'id': '7743cc2c-eeef-48ef-9a0f-2226c93d8144', 'info': None, 'row': 588, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.2775701076071355, 47.962703236816765, 0]}}, {'type': 'Feature', 'properties': {'id': '2b975e92-7cde-4ad6-9944-09e00c089fe6', 'info': None, 'row': 588, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.4543473710839163, 47.98349742577474, 0]}}, {'type': 'Feature', 'properties': {'id': '0cbe8485-25da-478f-901b-ca2b6e3243ab', 'info': None, 'row': 588, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.631265602409802, 48.00401973453044, 0]}}, {'type': 'Feature', 'properties': {'id': '2b2c7eff-c804-417f-b23c-b1eed7cef9dd', 'info': None, 'row': 588, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.8083231572790837, 48.02426975614008, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6b8a190-ccb1-4d3b-bbb4-e4149bf6ba19', 'info': None, 'row': 588, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-3.985518380484077, 48.044247088257386, 0]}}, {'type': 'Feature', 'properties': {'id': 'ab1e1f59-391c-47f2-95a9-6bc17241afd8', 'info': None, 'row': 588, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-4.162849606032916, 48.06395133317378, 0]}}, {'type': 'Feature', 'properties': {'id': 'a36ed8d4-d396-4822-a59e-f9e5e53b48b0', 'info': None, 'row': 588, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.340315157226242, 48.083382097853445, 0]}}, {'type': 'Feature', 'properties': {'id': '373d91d2-16a5-4c0b-89df-86bf73118445', 'info': None, 'row': 588, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.517913346712704, 48.10253899396597, 0]}}, {'type': 'Feature', 'properties': {'id': 'a2f5a8e3-fbe5-4cb1-ac4b-5db62c72124e', 'info': None, 'row': 588, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.695642476568494, 48.121421637921515, 0]}}, {'type': 'Feature', 'properties': {'id': 'b7ff0f07-c389-434f-bd5d-282493ed123c', 'info': None, 'row': 588, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.8735008384745155, 48.14002965091587, 0]}}, {'type': 'Feature', 'properties': {'id': 'c0f9826e-4554-4eb7-bcb2-3a17d66c19b8', 'info': None, 'row': 588, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-5.051486596119921, 48.15836291924434, 0]}}, {'type': 'Feature', 'properties': {'id': '97032d87-fecf-415f-bd17-5a5403f26c43', 'info': None, 'row': 630, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.7152937702757334, 47.68801767637499, 0]}}, {'type': 'Feature', 'properties': {'id': '8be7d66b-0528-4c4f-b2e4-1e752820a615', 'info': None, 'row': 630, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.8904797552734725, 47.711231480591806, 0]}}, {'type': 'Feature', 'properties': {'id': '70ec5763-f2b9-47af-bcc4-7dcf80720a25', 'info': None, 'row': 630, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-2.0658203463327203, 47.73417796797454, 0]}}, {'type': 'Feature', 'properties': {'id': 'cdc4ef41-7e9a-44d8-9565-1e0435b09d25', 'info': None, 'row': 630, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.2413140112271885, 47.75685669371231, 0]}}, {'type': 'Feature', 'properties': {'id': 'e2c950f0-62a6-4654-b68b-652aef52fdfd', 'info': None, 'row': 630, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.416959205128377, 47.779267217090556, 0]}}, {'type': 'Feature', 'properties': {'id': '23fe8ffc-d6c9-45a2-b23c-0527716ae75b', 'info': None, 'row': 630, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.5927543715573873, 47.80140910164714, 0]}}, {'type': 'Feature', 'properties': {'id': '9be825eb-7f97-436b-9bdf-64fc80720784', 'info': None, 'row': 630, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.768697942716828, 47.823281915243165, 0]}}, {'type': 'Feature', 'properties': {'id': '1b2f6708-b2ae-4013-b7da-cf7c76f301cc', 'info': None, 'row': 630, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.9447883395623475, 47.84488523009915, 0]}}, {'type': 'Feature', 'properties': {'id': '10f811e9-60f0-43c0-b811-569cd69b8a1b', 'info': None, 'row': 630, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-3.121023971811324, 47.86621862282348, 0]}}, {'type': 'Feature', 'properties': {'id': 'aa141fd4-d368-411e-b675-572e938ca8de', 'info': None, 'row': 630, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.2974032379805527, 47.88728167444477, 0]}}, {'type': 'Feature', 'properties': {'id': 'be76f1f7-1b7d-4248-9ef5-fb8c420801d2', 'info': None, 'row': 630, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.4739245254787154, 47.90807397045067, 0]}}, {'type': 'Feature', 'properties': {'id': '194554e2-35da-4160-9414-97d29c53066d', 'info': None, 'row': 630, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.650586210742361, 47.92859510083135, 0]}}, {'type': 'Feature', 'properties': {'id': '28774d32-ae76-4998-859f-ee27159ced4a', 'info': None, 'row': 630, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.827386659386962, 47.94884466012394, 0]}}, {'type': 'Feature', 'properties': {'id': 'f1d5f2ba-5257-47d5-9fee-9e8f8e37f1f1', 'info': None, 'row': 630, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-4.004324226343502, 47.96882224745429, 0]}}, {'type': 'Feature', 'properties': {'id': '0c7b8b18-dde5-4cb7-a851-f021ade33ee9', 'info': None, 'row': 630, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-4.181397255960499, 47.98852746657415, 0]}}, {'type': 'Feature', 'properties': {'id': 'd64f7780-bc30-4f1e-9ac8-f7a4857cfd7c', 'info': None, 'row': 630, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.358604082067907, 48.007959925893815, 0]}}, {'type': 'Feature', 'properties': {'id': '25a813a6-417a-4321-a4b6-2feb33e03a73', 'info': None, 'row': 630, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.535943028021774, 48.02711923851246, 0]}}, {'type': 'Feature', 'properties': {'id': '72ccaf62-0aa4-4263-915d-f69f60fcce9d', 'info': None, 'row': 630, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.713412406773761, 48.04600502225135, 0]}}, {'type': 'Feature', 'properties': {'id': '45df3029-b559-4cf8-a777-2903770836c9', 'info': None, 'row': 630, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.891010521038236, 48.06461689969691, 0]}}, {'type': 'Feature', 'properties': {'id': '53a101e5-e609-4a5a-a7eb-c82ef842c8df', 'info': None, 'row': 630, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-5.068735546126293, 48.08295475782513, 0]}}, {'type': 'Feature', 'properties': {'id': 'c0bfe675-bd3b-4ad2-8330-21b88af0877e', 'info': None, 'row': 672, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.7373299271447191, 47.612636953908066, 0]}}, {'type': 'Feature', 'properties': {'id': '344441d1-4383-437b-9e15-89611d4aa639', 'info': None, 'row': 672, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.9122659471147347, 47.63584260426231, 0]}}, {'type': 'Feature', 'properties': {'id': '9154b0f5-5a78-4556-8d60-460cd7b2c2c0', 'info': None, 'row': 672, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-2.0873559477146824, 47.65878164096023, 0]}}, {'type': 'Feature', 'properties': {'id': '7e3a9f28-5a70-46dc-9867-943379930f0b', 'info': None, 'row': 672, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.2625984015918488, 47.68145362019009, 0]}}, {'type': 'Feature', 'properties': {'id': '38d0befe-08bd-44ca-b798-e9fead600724', 'info': None, 'row': 672, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.4379917695690834, 47.70385810233043, 0]}}, {'type': 'Feature', 'properties': {'id': '3ac05f90-990b-4087-843a-82f90105aea5', 'info': None, 'row': 672, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.613534501502647, 47.72599465208849, 0]}}, {'type': 'Feature', 'properties': {'id': '99c74227-f12a-4f25-9456-7fd6b0a6238d', 'info': None, 'row': 672, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.7892250365316125, 47.74786283855573, 0]}}, {'type': 'Feature', 'properties': {'id': '3828a0ee-65af-4074-97e4-6a2553b263b9', 'info': None, 'row': 672, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.9650618030773495, 47.76946223523092, 0]}}, {'type': 'Feature', 'properties': {'id': 'f7fbc7ae-4c2e-49f5-ac8b-9cfd6af033b5', 'info': None, 'row': 672, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-3.141043218789773, 47.79079242003711, 0]}}, {'type': 'Feature', 'properties': {'id': '9f231c64-ff4b-4040-9900-88de33dba1a3', 'info': None, 'row': 672, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.317167690531009, 47.81185297534436, 0]}}, {'type': 'Feature', 'properties': {'id': '4b7a619f-37e4-455f-9075-16a6cde700b1', 'info': None, 'row': 672, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.493433614421834, 47.8326434880002, 0]}}, {'type': 'Feature', 'properties': {'id': '97011567-37e5-45f6-b907-1947ac567b09', 'info': None, 'row': 672, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.669839375938683, 47.85316354936623, 0]}}, {'type': 'Feature', 'properties': {'id': '64e5572b-917a-4e36-b9e8-bc5f74ea3ff3', 'info': None, 'row': 672, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.846383350032175, 47.87341275535654, 0]}}, {'type': 'Feature', 'properties': {'id': '4478b7c2-73dd-487f-b6b5-c64cddbd730c', 'info': None, 'row': 672, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-4.023063901237144, 47.893390706474776, 0]}}, {'type': 'Feature', 'properties': {'id': '9dd6d04f-2102-41a0-a336-80ace8b1b514', 'info': None, 'row': 672, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-4.199879383752695, 47.91309700784711, 0]}}, {'type': 'Feature', 'properties': {'id': 'daac1974-6d8f-4d75-b898-0abe631be789', 'info': None, 'row': 672, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.376828141488502, 47.93253126925137, 0]}}, {'type': 'Feature', 'properties': {'id': '2ef9d6e7-ee1e-4cbf-a08c-98511d07b2db', 'info': None, 'row': 672, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.553908508094915, 47.951693105144585, 0]}}, {'type': 'Feature', 'properties': {'id': '2f2d437d-a64a-40be-bb60-38957122897b', 'info': None, 'row': 672, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.731118807019963, 47.97058213469352, 0]}}, {'type': 'Feature', 'properties': {'id': '135a72e4-5e38-4648-b1e8-53427640cac3', 'info': None, 'row': 672, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.908457351664921, 47.9891979818154, 0]}}, {'type': 'Feature', 'properties': {'id': 'db7522a9-402f-4819-9e97-fbb34aea10be', 'info': None, 'row': 672, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-5.085922328642828, 48.0075405341134, 0]}}, {'type': 'Feature', 'properties': {'id': 'e0bf4850-e4d3-417a-9732-823fd0dc6f75', 'info': None, 'row': 714, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.759350720760602, 47.53725584214635, 0]}}, {'type': 'Feature', 'properties': {'id': '0cca844c-91ba-4868-8ddd-e02e80827972', 'info': None, 'row': 714, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.9340380028020872, 47.5604534368463, 0]}}, {'type': 'Feature', 'properties': {'id': '79f589b0-322e-4201-8627-c238e4b1eb86', 'info': None, 'row': 714, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-2.1088786100670016, 47.583385113789106, 0]}}, {'type': 'Feature', 'properties': {'id': '24330371-ea08-49c7-ba82-da2687004912', 'info': None, 'row': 714, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.283871023275847, 47.60605043073576, 0]}}, {'type': 'Feature', 'properties': {'id': '2e47e892-3480-4c27-868c-130dc8177ce4', 'info': None, 'row': 714, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.4590137116960378, 47.6284489496584, 0]}}, {'type': 'Feature', 'properties': {'id': '576449b6-ed30-4b25-bb13-b689cd188502', 'info': None, 'row': 714, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.6343051339599306, 47.65058023687141, 0]}}, {'type': 'Feature', 'properties': {'id': 'ff2a3479-8065-4347-b96b-52fbea99ac67', 'info': None, 'row': 714, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.809743738280343, 47.67244386308052, 0]}}, {'type': 'Feature', 'properties': {'id': 'b60e4883-65ed-481a-b71e-dc3dd6402c07', 'info': None, 'row': 714, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-2.985327962421026, 47.694039403400495, 0]}}, {'type': 'Feature', 'properties': {'id': 'f670a8df-cc25-419c-8058-0e0b8f16f394', 'info': None, 'row': 714, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-3.161056233617789, 47.71536643736746, 0]}}, {'type': 'Feature', 'properties': {'id': '618a1c0b-60f0-4736-a48d-446ecd518024', 'info': None, 'row': 714, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.3369269685404306, 47.73642454895736, 0]}}, {'type': 'Feature', 'properties': {'id': 'dbfa7608-e63d-47ff-b9ad-b18a9e3edc6f', 'info': None, 'row': 714, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.512938573320174, 47.75721332661315, 0]}}, {'type': 'Feature', 'properties': {'id': '57a79d10-e1ea-4d89-910c-187534daef58', 'info': None, 'row': 714, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.689089443630296, 47.77773236327823, 0]}}, {'type': 'Feature', 'properties': {'id': '6581c99a-d607-4950-ad5a-449e10ee8511', 'info': None, 'row': 714, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.8653779647905435, 47.7979812564323, 0]}}, {'type': 'Feature', 'properties': {'id': 'c39b39c5-a50a-42bb-8e87-58847bcf8e03', 'info': None, 'row': 714, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-4.04180251186535, 47.817959608126266, 0]}}, {'type': 'Feature', 'properties': {'id': 'af6689d7-b215-409e-831f-317df689ed7e', 'info': None, 'row': 714, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-4.2183614497339175, 47.83766702501315, 0]}}, {'type': 'Feature', 'properties': {'id': 'c3234cb0-4acd-42d4-a014-21fc6f5f36ea', 'info': None, 'row': 714, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.39505313312849, 47.85710311837582, 0]}}, {'type': 'Feature', 'properties': {'id': 'ce9c0a71-4531-4925-aa3d-f8153845295b', 'info': None, 'row': 714, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.571875906658114, 47.87626750415306, 0]}}, {'type': 'Feature', 'properties': {'id': '9983cfb0-4cd6-40f8-ba0c-1d9c6c7a708a', 'info': None, 'row': 714, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.748828104860802, 47.895159802969, 0]}}, {'type': 'Feature', 'properties': {'id': 'a40cdcf5-a131-47c1-a758-2a0c0bf2d8c3', 'info': None, 'row': 714, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.925908052355558, 47.913779640172905, 0]}}, {'type': 'Feature', 'properties': {'id': '1080c66f-3c94-43ca-ac07-e52eb2d935a9', 'info': None, 'row': 714, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-5.10311394754013, 47.93212690408988, 0]}}, {'type': 'Feature', 'properties': {'id': 'a14f9285-21d1-4105-b8fb-40daee1413ce', 'info': None, 'row': 756, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.781338813820997, 47.46187390177396, 0]}}, {'type': 'Feature', 'properties': {'id': 'da4e9d76-329d-4e5e-bd97-b32a5c6f9f58', 'info': None, 'row': 756, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.955779969804302, 47.485063649855135, 0]}}, {'type': 'Feature', 'properties': {'id': '7f15f3bc-9b44-4a8a-90c9-87f86405dc1d', 'info': None, 'row': 756, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-2.130373731803155, 47.50798816058597, 0]}}, {'type': 'Feature', 'properties': {'id': '359b94c3-ccb7-43d3-ab9e-050935fea202', 'info': None, 'row': 756, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.305118595421677, 47.53064699452093, 0]}}, {'type': 'Feature', 'properties': {'id': 'f879593f-1bc2-4b66-b0d2-8e4744509df6', 'info': None, 'row': 756, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.480013044317185, 47.55303971629119, 0]}}, {'type': 'Feature', 'properties': {'id': 'd4a86f9a-e323-448d-b80e-32676a5ad8ce', 'info': None, 'row': 756, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.6550555510936458, 47.575165894750064, 0]}}, {'type': 'Feature', 'properties': {'id': '83861638-4905-47e6-9937-747c29ba46ea', 'info': None, 'row': 756, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.8302445775868033, 47.597025103034674, 0]}}, {'type': 'Feature', 'properties': {'id': '37a52ebe-287c-4fcb-a389-2a6a998ea82e', 'info': None, 'row': 756, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-3.0055785748972457, 47.61861691859476, 0]}}, {'type': 'Feature', 'properties': {'id': '50652cfd-7371-405d-9030-ac902a20d77d', 'info': None, 'row': 756, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-3.181055983365832, 47.639940923214375, 0]}}, {'type': 'Feature', 'properties': {'id': 'ce3871d3-b77a-482f-b5e7-e99ee25aab54', 'info': None, 'row': 756, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.356675232582624, 47.66099670303856, 0]}}, {'type': 'Feature', 'properties': {'id': '741ab19b-ce33-4b5a-9b68-843a27aae369', 'info': None, 'row': 756, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.5324347414528106, 47.681783848606884, 0]}}, {'type': 'Feature', 'properties': {'id': 'de67e40b-e14c-4677-a90e-5949221242f7', 'info': None, 'row': 756, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.7083329183090914, 47.7023019548924, 0]}}, {'type': 'Feature', 'properties': {'id': 'bac5b5b7-8807-45c9-a074-c8f3ea30ae87', 'info': None, 'row': 756, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.884368161041157, 47.72255062134189, 0]}}, {'type': 'Feature', 'properties': {'id': 'a4837825-f18a-4c64-9598-4d3d5ee41a06', 'info': None, 'row': 756, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-4.06053885721349, 47.742529451914095, 0]}}, {'type': 'Feature', 'properties': {'id': '4291df92-8a9f-4c25-9a47-94a24be1ac5d', 'info': None, 'row': 756, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-4.236843384151004, 47.76223805511365, 0]}}, {'type': 'Feature', 'properties': {'id': '26a28887-73d8-45fc-9ca2-cc34141cd3a1', 'info': None, 'row': 756, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.413280108989643, 47.7816760440209, 0]}}, {'type': 'Feature', 'properties': {'id': '38a7663e-fc64-41c3-81d5-f820a0e88fb9', 'info': None, 'row': 756, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.589847388711325, 47.800843036320146, 0]}}, {'type': 'Feature', 'properties': {'id': '59541301-bac3-406a-8de6-c134069c2b72', 'info': None, 'row': 756, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.7665435702075465, 47.819738654331005, 0]}}, {'type': 'Feature', 'properties': {'id': '6ac33082-b769-4bd1-ae70-c20016daf456', 'info': None, 'row': 756, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.943366990444888, 47.83836252505029, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca1354a4-049d-46c4-8d12-7ba6c836dd76', 'info': None, 'row': 756, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-5.120315860633364, 47.85671453772671, 0]}}, {'type': 'Feature', 'properties': {'id': 'd9f6d158-b5a6-4ab0-b9a8-8b32e18bee22', 'info': None, 'row': 798, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-1.8033269068813924, 47.38649196140157, 0]}}, {'type': 'Feature', 'properties': {'id': 'c8afeb41-41f5-4fb6-a5c7-1e06fdf0cfdc', 'info': None, 'row': 798, 'col': 67}, 'geometry': {'type': 'Point', 'coordinates': [-1.9775219368065164, 47.40967386286398, 0]}}, {'type': 'Feature', 'properties': {'id': 'd4520ae8-71d3-48ed-90d5-07fc4394749b', 'info': None, 'row': 798, 'col': 134}, 'geometry': {'type': 'Point', 'coordinates': [-2.151868853539308, 47.43259120738283, 0]}}, {'type': 'Feature', 'properties': {'id': 'd34baaa2-f748-47a7-8065-311e05e09fd5', 'info': None, 'row': 798, 'col': 201}, 'geometry': {'type': 'Point', 'coordinates': [-2.3263661675675067, 47.4552435583061, 0]}}, {'type': 'Feature', 'properties': {'id': '1e9cc725-02ab-48da-9dc1-4bfa3db8f3c5', 'info': None, 'row': 798, 'col': 268}, 'geometry': {'type': 'Point', 'coordinates': [-2.5010123769383337, 47.477630482923985, 0]}}, {'type': 'Feature', 'properties': {'id': 'e567ca14-ca2c-45b1-97f8-4b4e02eb221b', 'info': None, 'row': 798, 'col': 335}, 'geometry': {'type': 'Point', 'coordinates': [-2.6758059682273605, 47.49975155262871, 0]}}, {'type': 'Feature', 'properties': {'id': '2c2ab2ce-b787-466c-8e72-1cea11d486f8', 'info': None, 'row': 798, 'col': 402}, 'geometry': {'type': 'Point', 'coordinates': [-2.850745416893263, 47.52160634298883, 0]}}, {'type': 'Feature', 'properties': {'id': '9da22cd9-2718-4615-9b8b-e534756658e2', 'info': None, 'row': 798, 'col': 469}, 'geometry': {'type': 'Point', 'coordinates': [-3.0258291873734655, 47.54319443378902, 0]}}, {'type': 'Feature', 'properties': {'id': '111d93a2-4bf3-4678-906e-17ce2aafd4ff', 'info': None, 'row': 798, 'col': 536}, 'geometry': {'type': 'Point', 'coordinates': [-3.201055733113875, 47.5645154090613, 0]}}, {'type': 'Feature', 'properties': {'id': 'f958ddfc-5e77-4888-bcbd-62dcd216f520', 'info': None, 'row': 798, 'col': 603}, 'geometry': {'type': 'Point', 'coordinates': [-3.376423496624818, 47.58556885711978, 0]}}, {'type': 'Feature', 'properties': {'id': '35cd363e-ec03-423b-85a9-420b542f4aa2', 'info': None, 'row': 798, 'col': 670}, 'geometry': {'type': 'Point', 'coordinates': [-3.5519309095854483, 47.60635437060062, 0]}}, {'type': 'Feature', 'properties': {'id': '7c71b7d9-7881-41f0-a65f-479fac0a212c', 'info': None, 'row': 798, 'col': 737}, 'geometry': {'type': 'Point', 'coordinates': [-3.7275763929878862, 47.62687154650658, 0]}}, {'type': 'Feature', 'properties': {'id': '2fd71df3-ad7a-415d-af58-1be0857afc36', 'info': None, 'row': 798, 'col': 804}, 'geometry': {'type': 'Point', 'coordinates': [-3.903358357291771, 47.64711998625147, 0]}}, {'type': 'Feature', 'properties': {'id': 'e219c0a6-26b9-4d24-9e37-0fd454c36bce', 'info': None, 'row': 798, 'col': 871}, 'geometry': {'type': 'Point', 'coordinates': [-4.079275202561629, 47.66709929570193, 0]}}, {'type': 'Feature', 'properties': {'id': '5905f83e-dafc-4f0a-a623-3ff7d9e9fa78', 'info': None, 'row': 798, 'col': 938}, 'geometry': {'type': 'Point', 'coordinates': [-4.25532531856809, 47.68680908521414, 0]}}, {'type': 'Feature', 'properties': {'id': '6323092a-6547-4b4a-bc98-42c084654ed0', 'info': None, 'row': 798, 'col': 1005}, 'geometry': {'type': 'Point', 'coordinates': [-4.431507084850796, 47.70624896966597, 0]}}, {'type': 'Feature', 'properties': {'id': '3d1773d9-4224-405e-891a-f7a44ad03e55', 'info': None, 'row': 798, 'col': 1072}, 'geometry': {'type': 'Point', 'coordinates': [-4.607818870764537, 47.72541856848723, 0]}}, {'type': 'Feature', 'properties': {'id': '4e4574d6-b864-467f-b470-9d07090eb5e5', 'info': None, 'row': 798, 'col': 1139}, 'geometry': {'type': 'Point', 'coordinates': [-4.784259035554291, 47.744317505693026, 0]}}, {'type': 'Feature', 'properties': {'id': '3d71db6e-256c-4cb6-b0b2-93641e876697', 'info': None, 'row': 798, 'col': 1206}, 'geometry': {'type': 'Point', 'coordinates': [-4.960825928534218, 47.762945409927674, 0]}}, {'type': 'Feature', 'properties': {'id': '0595deeb-8b69-418b-b668-7f72e09cd61d', 'info': None, 'row': 798, 'col': 1273}, 'geometry': {'type': 'Point', 'coordinates': [-5.137517773726598, 47.78130217136353, 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) Count 64 Tasks 2 Chunks Type float64 numpy.ndarray - ocean_mask(line, sample)int8dask.array<chunksize=(834, 1329), meta=np.ndarray>
- history :
- ocean_mask: /tmp/water-polygons-split-4326/water_polygons.shp
Array Chunk Bytes 1.06 MiB 1.06 MiB Shape (834, 1329) (834, 1329) Count 3 Tasks 1 Chunks Type int8 numpy.ndarray
- name :
- SENTINEL1_DS:/tmp/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 )
- pixel_line_m :
- <xarray.DataArray 'azimuthPixelSpacing' ()> array(10.) Attributes: source: /product/imageAnnotation/imageInformation/azimuthPixelSpacing
- pixel_sample_m :
- <xarray.DataArray 'groundRangePixelSpacing' ()> array(10.) Attributes: source: /product/imageAnnotation/imageInformation/rangePixelSpacing
- orbit_pass :
- Descending
- platform_heading :
- -165.3526446468305
Masks are available as a shapely object (lon/lat coordinates), with xsar.Sentinel1Meta.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.Sentinel1Meta.ll2coords allow converting lon/lat coordinates on shapely objects.
So it’s possible to plot the vector mask on a raster variable:
[3]:
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)
[3]: