Download this notebook from github.
XSAR example
open a dataset with xsar.open_dataset
[1]:
import xsar
import os
import numpy as np
[2]:
# get test file. You can replace with an path to other SAFE
filename = xsar.get_test_file('S1A_IW_GRDH_1SDV_20170907T103020_20170907T103045_018268_01EB76_Z010.SAFE')
Open a dataset with a xsar.Sentinel1Meta object
A xsar.Sentinel1Meta object handles all attributes and methods that can’t be embdeded in a xarray.Dataset
object. It can also replace a filename in xarray.open_dataset
[3]:
sar_meta = xsar.Sentinel1Meta(filename)
sar_meta
[3]:
<Sentinel1Meta single object>
If holoviews extension is loaded, the <Sentinel1Meta objet>
have a nice representation. (matplolib
is also a valid extension)
[4]:
import holoviews as hv
hv.extension('bokeh')
sar_meta
[4]:
<Sentinel1Meta single object>
sar_meta
object is an xsar.Sentinel1Meta object that can be given to xarray.open_dataset
or xsar.Sentinel1Dataset , as if it was a filename:
[5]:
sar_ds = xsar.Sentinel1Dataset(sar_meta)
sar_ds
[5]:
full dataset coverage
SENTINEL1_DS:S1A_IW_GRDH_1SDV_20170907T103020_20170907T103045_018268_01EB76_Z010.SAFE:IW | |||||
---|---|---|---|---|---|
|
Open a dataset at lower resolution
resolution
keyword can be used to open a dataset at lower resolution.
It might be:
a dict
{'line': 20, 'sample': 20}
: 20*20 pixels. so if sensor resolution is 10m, the final resolution will be 100ma string like
'200m'
: Sensor resolution will be automatically used to compute the window size
Then we can instantiate a xsar.Sentinel1Dataset, with the given resolution. Note that the above pixel size has changed.
[6]:
sar_ds = xsar.Sentinel1Dataset(sar_meta, resolution='200m')
sar_ds
[6]:
full dataset coverage
SENTINEL1_DS:S1A_IW_GRDH_1SDV_20170907T103020_20170907T103045_018268_01EB76_Z010.SAFE:IW | |||||
---|---|---|---|---|---|
|
Extract a sub image of 10*10km around a lon/lat point
Convert (lon,lat) to (line, sample)
we can use sar_meta.ll2coords to convert (lon,lat) to (line, sample):
[7]:
# from a shapely object
point_lonlat = sar_meta.footprint.centroid
point_coords = sar_meta.ll2coords(point_lonlat.x, point_lonlat.y)
point_coords
[7]:
(8421.566059451885, 12589.902956209495)
The result is floating, because it is the position inside the pixel. If real indexes from existing dataset is needed, you’ll have to use sar_ds.ll2coords Result will be the nearest (line, sample) in the dataset
[8]:
point_coords = sar_ds.ll2coords(point_lonlat.x, point_lonlat.y)
point_coords
[8]:
(8429.5, 12589.5)
Extract the sub-image
[9]:
box_size = 10000 # 10km
dist = {'line' : int(np.round(box_size / 2 / sar_meta.pixel_line_m)), 'sample': int(np.round(box_size / 2 / sar_meta.pixel_sample_m))}
dist
[9]:
{'line': 500, 'sample': 500}
The xarray/dask dataset is available as a property : sar_ds.dataset. This attribute can be set to a new values, so the attributes like pixel spacing and coverage are correctly recomputed:
[10]:
# select 10*10 km around point_coords
sar_ds.dataset = sar_ds.dataset.sel(line=slice(point_coords[0] - dist['line'], point_coords[0] + dist['line']), sample=slice(point_coords[1] - dist['sample'], point_coords[1] + dist['sample']))
sar_ds
[10]:
dataset slice
SENTINEL1_DS:S1A_IW_GRDH_1SDV_20170907T103020_20170907T103045_018268_01EB76_Z010.SAFE:IW | |||||
---|---|---|---|---|---|
|
[11]:
sar_ds.dataset
[11]:
<xarray.Dataset> Dimensions: (pol: 2, line: 838, sample: 1259) Coordinates: * pol (pol) object 'VV' 'VH' * line (line) float64 9.5 29.5 49.5 ... 1.673e+04 1.675e+04 * sample (sample) float64 9.5 29.5 49.5 ... 2.515e+04 2.517e+04 spatial_ref int64 0 Data variables: (12/21) digital_number (pol, line, sample) uint16 dask.array<chunksize=(1, 838, 1259), meta=np.ndarray> time (line) timedelta64[ns] 17416 days 10:30:20.95128985... sampleSpacing float64 200.0 lineSpacing float64 200.0 ground_heading (line, sample) float32 dask.array<chunksize=(838, 1259), meta=np.ndarray> land_mask (line, sample) int8 dask.array<chunksize=(838, 1259), meta=np.ndarray> ... ... sigma0_raw (pol, line, sample) float64 dask.array<chunksize=(1, 838, 1259), meta=np.ndarray> nesz (pol, line, sample) float64 dask.array<chunksize=(1, 838, 1259), meta=np.ndarray> gamma0_raw (pol, line, sample) float64 dask.array<chunksize=(1, 838, 1259), meta=np.ndarray> negz (pol, line, sample) float64 dask.array<chunksize=(1, 838, 1259), meta=np.ndarray> sigma0 (pol, line, sample) float64 dask.array<chunksize=(1, 838, 1259), meta=np.ndarray> gamma0 (pol, line, sample) float64 dask.array<chunksize=(1, 838, 1259), meta=np.ndarray> Attributes: (12/17) name: SENTINEL1_DS:/tmp/S1A_IW_GRDH_1SDV_20170907T103020_201... short_name: SENTINEL1_DS:S1A_IW_GRDH_1SDV_20170907T103020_20170907... product: GRDH safe: S1A_IW_GRDH_1SDV_20170907T103020_20170907T103045_01826... swath: IW multidataset: False ... ... footprint: POLYGON ((-67.84221143971432 20.72564283093837, -70.22... coverage: 170km * 251km (line * sample ) pixel_line_m: <xarray.DataArray 'azimuthPixelSpacing' ()>\narray(10.... pixel_sample_m: <xarray.DataArray 'groundRangePixelSpacing' ()>\narray... orbit_pass: Descending platform_heading: -167.7668824808032
- pol: 2
- line: 838
- sample: 1259
- pol(pol)object'VV' 'VH'
- comment :
- ordered polarizations (copol, crosspol)
array(['VV', 'VH'], dtype=object)
- line(line)float649.5 29.5 ... 1.673e+04 1.675e+04
- axis :
- Y
- units :
- 1
- comment :
- azimuth direction, in pixels from full resolution tiff
array([9.50000e+00, 2.95000e+01, 4.95000e+01, ..., 1.67095e+04, 1.67295e+04, 1.67495e+04])
- sample(sample)float649.5 29.5 ... 2.515e+04 2.517e+04
- axis :
- X
- units :
- 1
- comment :
- cross track direction, in pixels from full resolution tiff
array([9.50000e+00, 2.95000e+01, 4.95000e+01, ..., 2.51295e+04, 2.51495e+04, 2.51695e+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': '53d92972-92ea-4877-8476-68ad7665882b', 'info': None, 'row': 0, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-67.84328603405898, 20.724952704627565, 0]}}, {'type': 'Feature', 'properties': {'id': '1ca5d000-055a-49af-9318-f3b57fa5ae1c', 'info': None, 'row': 0, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-67.9620035951606, 20.746845396951407, 0]}}, {'type': 'Feature', 'properties': {'id': '1fe6cd13-a9f1-47f1-ba67-496b81ac177f', 'info': None, 'row': 0, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.08075522667988, 20.76865615165783, 0]}}, {'type': 'Feature', 'properties': {'id': '320a911e-c845-497e-9526-57f06e40ee66', 'info': None, 'row': 0, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.19954085083577, 20.79038485329369, 0]}}, {'type': 'Feature', 'properties': {'id': '35ecbfb6-4db9-4ebd-9f91-2459894fdaec', 'info': None, 'row': 0, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.31836038859531, 20.812031386616745, 0]}}, {'type': 'Feature', 'properties': {'id': '8ad809e2-6bc6-4377-a612-d79cd96056b1', 'info': None, 'row': 0, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.43721376007977, 20.833595636671472, 0]}}, {'type': 'Feature', 'properties': {'id': '001f35a1-0d77-4339-afc0-fbd4f42788ba', 'info': None, 'row': 0, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.5561008846928, 20.855077488813336, 0]}}, {'type': 'Feature', 'properties': {'id': '9f459fa1-cf5b-4037-aada-a7e38a0f8a01', 'info': None, 'row': 0, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.67502168112595, 20.87647682871046, 0]}}, {'type': 'Feature', 'properties': {'id': '1064ada1-4842-4990-b2d3-2bcfb6c6a610', 'info': None, 'row': 0, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-68.79397606733042, 20.89779354233932, 0]}}, {'type': 'Feature', 'properties': {'id': '10dd85b4-fd54-4ea9-8014-0fe5f2c4ca2d', 'info': None, 'row': 0, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-68.91296396049644, 20.91902751598212, 0]}}, {'type': 'Feature', 'properties': {'id': '8b9c7739-ea05-43cb-a1c0-b16fdb679170', 'info': None, 'row': 0, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.03198527705486, 20.94017863622827, 0]}}, {'type': 'Feature', 'properties': {'id': '41e10d6f-63e6-4319-be34-9b1b36dff602', 'info': None, 'row': 0, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.15103993269716, 20.961246789979263, 0]}}, {'type': 'Feature', 'properties': {'id': 'd8c08b6b-f5b6-4215-ab40-222b6096483b', 'info': None, 'row': 0, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.27012784240254, 20.98223186445463, 0]}}, {'type': 'Feature', 'properties': {'id': 'f7ae309b-1e65-4afe-a1bc-7322f373c0bd', 'info': None, 'row': 0, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.3892489204601, 21.003133747197268, 0]}}, {'type': 'Feature', 'properties': {'id': 'e7abba4e-0e9e-45ec-863b-68a25cc16bf1', 'info': None, 'row': 0, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.50840308047555, 21.023952326075776, 0]}}, {'type': 'Feature', 'properties': {'id': '80dd5a83-597c-4fb6-939b-a53d40002d25', 'info': None, 'row': 0, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.62759023536088, 21.044687489284136, 0]}}, {'type': 'Feature', 'properties': {'id': '81ed98c4-bc4d-4648-bc66-58242d1e6854', 'info': None, 'row': 0, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.74681029731194, 21.065339125339193, 0]}}, {'type': 'Feature', 'properties': {'id': 'b109efbe-2a75-49ee-be22-2d0908e22862', 'info': None, 'row': 0, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-69.86606317779137, 21.085907123079384, 0]}}, {'type': 'Feature', 'properties': {'id': '93f19892-da0b-442a-8c0a-ac920d7448bf', 'info': None, 'row': 0, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-69.98534878754491, 21.106391371669208, 0]}}, {'type': 'Feature', 'properties': {'id': '9b27de0a-9114-4756-99d7-9b75d1d360a9', 'info': None, 'row': 0, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.10466703533064, 21.126791764136637, 0]}}, {'type': 'Feature', 'properties': {'id': '979279f7-befb-4a18-9d97-72ad0af81ba3', 'info': None, 'row': 42, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-67.85915747780005, 20.649335507861487, 0]}}, {'type': 'Feature', 'properties': {'id': '4f881911-cd9d-47ab-af95-7e21ddad99d6', 'info': None, 'row': 42, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-67.97781536846266, 20.671233262677713, 0]}}, {'type': 'Feature', 'properties': {'id': '831cd18a-c03b-4e7b-ad13-5c2d3d496a5d', 'info': None, 'row': 42, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.09650718520373, 20.693049405413234, 0]}}, {'type': 'Feature', 'properties': {'id': '7f62a4e0-7946-46db-87c2-0dba4cea4aee', 'info': None, 'row': 42, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.21523285118172, 20.714783820858226, 0]}}, {'type': 'Feature', 'properties': {'id': 'f86a780d-fd2d-48a2-ab26-7c3d783b6099', 'info': None, 'row': 42, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.3339922883048, 20.736436394010944, 0]}}, {'type': 'Feature', 'properties': {'id': '6ce0d901-b03c-4b58-99cf-7b53eab041e2', 'info': None, 'row': 42, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.45278541764276, 20.75800701015478, 0]}}, {'type': 'Feature', 'properties': {'id': '0446ba20-e993-4630-b3ae-098ad6712311', 'info': None, 'row': 42, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.57161215955723, 20.779495554882732, 0]}}, {'type': 'Feature', 'properties': {'id': 'f3cbf468-fa79-49aa-aef7-14e7cf09d5ff', 'info': None, 'row': 42, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.69047243370649, 20.80090191409902, 0]}}, {'type': 'Feature', 'properties': {'id': '72bc4b9a-2cba-4f30-a5b8-815da260c385', 'info': None, 'row': 42, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-68.8093661590158, 20.822225974014493, 0]}}, {'type': 'Feature', 'properties': {'id': '8df8b5e8-be62-4cc0-8305-4943a864f1fc', 'info': None, 'row': 42, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-68.928293253655, 20.84346762114361, 0]}}, {'type': 'Feature', 'properties': {'id': 'b8a16636-4aca-4434-9857-7b45b9fd3d76', 'info': None, 'row': 42, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.04725363503889, 20.864626742305752, 0]}}, {'type': 'Feature', 'properties': {'id': '079159e6-a77d-4cb2-a471-c10a7c767fa9', 'info': None, 'row': 42, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.16624721984633, 20.885703224629832, 0]}}, {'type': 'Feature', 'properties': {'id': 'a537c939-b76e-4e43-be7f-a0863119c99e', 'info': None, 'row': 42, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.28527392404771, 20.906696955560438, 0]}}, {'type': 'Feature', 'properties': {'id': '4f1944cf-eb1f-4b01-9628-a307ee366bbd', 'info': None, 'row': 42, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.40433366292756, 20.927607822863163, 0]}}, {'type': 'Feature', 'properties': {'id': 'e2ef2e66-d6a8-45c8-bca5-03a2e98df7a6', 'info': None, 'row': 42, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.52342635109252, 20.948435714627145, 0]}}, {'type': 'Feature', 'properties': {'id': '517ecb2f-12b4-48c7-b4c2-96a4d8ef13af', 'info': None, 'row': 42, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.64255190246176, 20.969180519264874, 0]}}, {'type': 'Feature', 'properties': {'id': '170b6015-6e21-465c-8141-63f60101aa14', 'info': None, 'row': 42, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.7617102302447, 20.989842125509682, 0]}}, {'type': 'Feature', 'properties': {'id': '6ca3cce1-b917-4d05-b596-5be8da967dd4', 'info': None, 'row': 42, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-69.8809012469225, 21.010420422414207, 0]}}, {'type': 'Feature', 'properties': {'id': '0496a730-4f98-45f1-b373-1e094edc6b76', 'info': None, 'row': 42, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.00012486426048, 21.030915299354184, 0]}}, {'type': 'Feature', 'properties': {'id': '91342448-5c39-424a-8754-bf976e0f912e', 'info': None, 'row': 42, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.11938099203553, 21.05132664955081, 0]}}, {'type': 'Feature', 'properties': {'id': '4451ba1e-1930-49d7-ad01-0aca7ed4b2a2', 'info': None, 'row': 84, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-67.87502892154113, 20.57371831109541, 0]}}, {'type': 'Feature', 'properties': {'id': '5bc4150e-dbca-42e3-8be4-1756be741267', 'info': None, 'row': 84, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-67.99362714176472, 20.595621128404023, 0]}}, {'type': 'Feature', 'properties': {'id': '04344c98-663c-4304-bcd3-941b52853b7c', 'info': None, 'row': 84, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.11225914372754, 20.61744265916863, 0]}}, {'type': 'Feature', 'properties': {'id': '8160d857-57d9-47e0-b66b-7f2cc71bfe32', 'info': None, 'row': 84, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.23092485152767, 20.639182788422755, 0]}}, {'type': 'Feature', 'properties': {'id': 'dcd3e237-c61d-4423-bb8e-333e97c2d483', 'info': None, 'row': 84, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.34962418801426, 20.66084140140515, 0]}}, {'type': 'Feature', 'properties': {'id': '22c1f265-4b88-44e2-8299-1c023966f37e', 'info': None, 'row': 84, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.46835707520576, 20.682418383638087, 0]}}, {'type': 'Feature', 'properties': {'id': '49219bb7-095d-420e-9425-f459ac1106a1', 'info': None, 'row': 84, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.58712343442166, 20.70391362095213, 0]}}, {'type': 'Feature', 'properties': {'id': '89b113de-59a9-49b8-80bc-12d7b35086ba', 'info': None, 'row': 84, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.70592318628701, 20.72532699948758, 0]}}, {'type': 'Feature', 'properties': {'id': '07e3127f-d2db-454a-a7e8-cf2f6ef041c1', 'info': None, 'row': 84, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-68.82475625070117, 20.74665840568967, 0]}}, {'type': 'Feature', 'properties': {'id': 'aa362e63-a757-4827-a799-cdb126ce436d', 'info': None, 'row': 84, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-68.94362254681357, 20.767907726305104, 0]}}, {'type': 'Feature', 'properties': {'id': '219a4807-a3a1-49be-9708-5973db52a2c1', 'info': None, 'row': 84, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.06252199302295, 20.78907484838323, 0]}}, {'type': 'Feature', 'properties': {'id': 'd0dbf03c-77a5-47b6-97ac-aa07bd6c99ec', 'info': None, 'row': 84, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.18145450699552, 20.81015965928039, 0]}}, {'type': 'Feature', 'properties': {'id': '3320217b-4bad-4701-8782-d4d3a5e1b270', 'info': None, 'row': 84, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.30042000569289, 20.831162046666257, 0]}}, {'type': 'Feature', 'properties': {'id': '7411caaf-7df0-49bf-913e-2c5e7b2bde2b', 'info': None, 'row': 84, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.41941840539502, 20.85208189852906, 0]}}, {'type': 'Feature', 'properties': {'id': 'f1a95878-e289-48fc-82ac-6fda888b6d8d', 'info': None, 'row': 84, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.5384496217095, 20.872919103178514, 0]}}, {'type': 'Feature', 'properties': {'id': '7cad6f47-db45-4ab4-ac6f-6d694b9c3399', 'info': None, 'row': 84, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.65751356956268, 20.89367354924561, 0]}}, {'type': 'Feature', 'properties': {'id': '7ef5bafa-8020-4fd9-8a02-a5519d2149bf', 'info': None, 'row': 84, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.77661016317747, 20.914345125680168, 0]}}, {'type': 'Feature', 'properties': {'id': '0aa82af3-5293-4a17-9b04-77c10bb9b4ff', 'info': None, 'row': 84, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-69.89573931605362, 20.93493372174903, 0]}}, {'type': 'Feature', 'properties': {'id': '62af0984-dc37-4c1f-a70e-c7f7650d7978', 'info': None, 'row': 84, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.01490094097606, 20.955439227039154, 0]}}, {'type': 'Feature', 'properties': {'id': '9f6c5260-0278-430b-8845-ed0e8c857771', 'info': None, 'row': 84, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.13409494874044, 20.975861534964984, 0]}}, {'type': 'Feature', 'properties': {'id': '21af3298-b78c-4471-93cf-9453d162522e', 'info': None, 'row': 126, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-67.89089290159872, 20.49809969669772, 0]}}, {'type': 'Feature', 'properties': {'id': '684ff10a-90b6-4722-985a-3b9f8d5d4d9b', 'info': None, 'row': 126, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.0094318328243, 20.52000760440173, 0]}}, {'type': 'Feature', 'properties': {'id': '27bb332c-4aa0-4912-87c4-ed0c1b65dc06', 'info': None, 'row': 126, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.12800440188359, 20.54183455063163, 0]}}, {'type': 'Feature', 'properties': {'id': '011260d7-4a59-4f67-b5aa-2548697716b4', 'info': None, 'row': 126, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.24661053380177, 20.563580420661523, 0]}}, {'type': 'Feature', 'properties': {'id': '139302c7-e516-40aa-b456-a50f964c4b28', 'info': None, 'row': 126, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.36525015236657, 20.585245099969814, 0]}}, {'type': 'Feature', 'properties': {'id': '8dce360d-ab1b-4688-9636-87cb6ed74d24', 'info': None, 'row': 126, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.48392318054324, 20.606828474316902, 0]}}, {'type': 'Feature', 'properties': {'id': 'b7fbad27-d544-4348-9bc1-b36bf3883b2b', 'info': None, 'row': 126, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.60262954060427, 20.628330429769594, 0]}}, {'type': 'Feature', 'properties': {'id': 'b7f3cb88-2936-4c4e-9e76-f20ee6ed3972', 'info': None, 'row': 126, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.72136915413289, 20.64975085270237, 0]}}, {'type': 'Feature', 'properties': {'id': '98adbc47-3100-4b87-b8ec-5f59cc20940d', 'info': None, 'row': 126, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-68.84014194199129, 20.671089629792405, 0]}}, {'type': 'Feature', 'properties': {'id': '5004073a-7a39-446b-ae3c-c72342751c78', 'info': None, 'row': 126, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-68.9589478242965, 20.692346648016205, 0]}}, {'type': 'Feature', 'properties': {'id': 'a915ba0b-768d-4e71-9242-40ec92858906', 'info': None, 'row': 126, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.07778672041978, 20.713521794650692, 0]}}, {'type': 'Feature', 'properties': {'id': '3c5a645f-fc8d-4fb9-b21f-5b2d8ef8b478', 'info': None, 'row': 126, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.19665854900515, 20.734614957277696, 0]}}, {'type': 'Feature', 'properties': {'id': '01ffbb4b-aa94-43b3-8c2b-eee33375ffd1', 'info': None, 'row': 126, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.31556322799754, 20.755626023790263, 0]}}, {'type': 'Feature', 'properties': {'id': 'd1458f9e-4377-4bfe-87a4-0c6d55994931', 'info': None, 'row': 126, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.43450067466627, 20.77655488239798, 0]}}, {'type': 'Feature', 'properties': {'id': 'ea72f494-c2df-4eda-ac20-72f09dc8b62b', 'info': None, 'row': 126, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.55347080561403, 20.79740142162987, 0]}}, {'type': 'Feature', 'properties': {'id': '6c8182f2-29d7-462c-8ae0-389559d671a2', 'info': None, 'row': 126, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.67247353676785, 20.81816553033409, 0]}}, {'type': 'Feature', 'properties': {'id': '4d2980e7-d665-4578-90fa-6d93eb4b6ff4', 'info': None, 'row': 126, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.79150878335636, 20.838847097675373, 0]}}, {'type': 'Feature', 'properties': {'id': '66390ccd-4f08-43c1-86d7-c5575a803a10', 'info': None, 'row': 126, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-69.91057645988865, 20.859446013132995, 0]}}, {'type': 'Feature', 'properties': {'id': '4a9ad1dd-e193-46aa-a933-c0f6d8739450', 'info': None, 'row': 126, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.02967648016097, 20.879962166503578, 0]}}, {'type': 'Feature', 'properties': {'id': '13b8e0cc-6d6e-4639-b811-1dae8be8941d', 'info': None, 'row': 126, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.14880875598493, 20.90039545139416, 0]}}, {'type': 'Feature', 'properties': {'id': 'e2827995-7f99-406d-8cb5-361fd0a8cb11', 'info': None, 'row': 168, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-67.90675218337253, 20.42248018992089, 0]}}, {'type': 'Feature', 'properties': {'id': '4eb59eef-dc54-46e6-97d0-954f3afb3de7', 'info': None, 'row': 168, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.02523206571188, 20.44439320558484, 0]}}, {'type': 'Feature', 'properties': {'id': '7fda8097-55ff-4fc6-a773-c84a2a1dd1a8', 'info': None, 'row': 168, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.14374544225235, 20.466225584550727, 0]}}, {'type': 'Feature', 'properties': {'id': 'abbb4837-dccc-49d0-958b-f2595f0fcde7', 'info': None, 'row': 168, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.26229223893849, 20.48797721233151, 0]}}, {'type': 'Feature', 'properties': {'id': '8f563917-b7ef-4c11-9fd5-d73648125131', 'info': None, 'row': 168, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.38087238049502, 20.509647974644693, 0]}}, {'type': 'Feature', 'properties': {'id': '7ece3e97-097e-470f-96fa-341271f646ca', 'info': None, 'row': 168, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.49948579083286, 20.531237757488327, 0]}}, {'type': 'Feature', 'properties': {'id': '33cbc9f7-4e4f-4f65-9405-6828eb1d1afc', 'info': None, 'row': 168, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.61813239317436, 20.552746447164658, 0]}}, {'type': 'Feature', 'properties': {'id': 'de7524eb-ce2e-43ae-bbea-8395f6c11ce9', 'info': None, 'row': 168, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.7368121100556, 20.57417393028109, 0]}}, {'type': 'Feature', 'properties': {'id': 'eead3e07-7d05-432f-903d-6b1bc90ca151', 'info': None, 'row': 168, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-68.85552486329446, 20.59552009374528, 0]}}, {'type': 'Feature', 'properties': {'id': '02da8bc6-7478-491d-8e80-27dc1136d00c', 'info': None, 'row': 168, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-68.97427057396811, 20.616784824761936, 0]}}, {'type': 'Feature', 'properties': {'id': '799fbf69-469b-428c-b6c9-f48b06f2c32a', 'info': None, 'row': 168, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.09304916241304, 20.637968010834076, 0]}}, {'type': 'Feature', 'properties': {'id': 'de91bfac-7b40-4c11-a3e9-bf93ef42a764', 'info': None, 'row': 168, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.21186054824503, 20.659069539767756, 0]}}, {'type': 'Feature', 'properties': {'id': '3a2718d5-a699-450e-9156-a62880c627e3', 'info': None, 'row': 168, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.33070465038759, 20.680089299678393, 0]}}, {'type': 'Feature', 'properties': {'id': '329a43b8-e167-4e39-8794-d652237d7ce6', 'info': None, 'row': 168, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.44958138709531, 20.70102717899607, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3166789-2035-4401-8424-f78bebb31eb4', 'info': None, 'row': 168, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.56849067596242, 20.721883066468326, 0]}}, {'type': 'Feature', 'properties': {'id': '396da36d-6424-494c-93fa-6418cdfcc26a', 'info': None, 'row': 168, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.6874324339126, 20.742656851159644, 0]}}, {'type': 'Feature', 'properties': {'id': '126235b9-9d18-41ac-ae7f-a8a028fd6bf9', 'info': None, 'row': 168, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.80640657717515, 20.7633484224487, 0]}}, {'type': 'Feature', 'properties': {'id': 'd3f35776-ead3-4376-94a9-94e7a2d1c6a9', 'info': None, 'row': 168, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-69.92541302126281, 20.78395767002608, 0]}}, {'type': 'Feature', 'properties': {'id': '5bdebd21-6213-4e5f-a840-1056fdba4f5e', 'info': None, 'row': 168, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.0444516809779, 20.804484483897053, 0]}}, {'type': 'Feature', 'properties': {'id': '4ad61e8a-f4ff-4813-9768-a15909671bb4', 'info': None, 'row': 168, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.16352246914619, 20.824928757860917, 0]}}, {'type': 'Feature', 'properties': {'id': '2229e2e2-08c4-4db5-94fe-f20dcaa53d5f', 'info': None, 'row': 210, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-67.92260889071632, 20.34686019001003, 0]}}, {'type': 'Feature', 'properties': {'id': '4fc2ff41-9dcc-448b-b8c4-58c515e9ed7d', 'info': None, 'row': 210, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.04102985775035, 20.36877832338997, 0]}}, {'type': 'Feature', 'properties': {'id': '63033366-70d2-4287-ab4c-cb3e9b91574a', 'info': None, 'row': 210, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.15948417550251, 20.39061614468525, 0]}}, {'type': 'Feature', 'properties': {'id': '83ac6e8e-d763-4c38-b87e-1744b5c06fb8', 'info': None, 'row': 210, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.27797177084067, 20.41237353964826, 0]}}, {'type': 'Feature', 'properties': {'id': 'b45605e8-b3c9-4148-b876-64be33c127f4', 'info': None, 'row': 210, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.39649256942319, 20.43405039423481, 0]}}, {'type': 'Feature', 'properties': {'id': '2188c737-3769-4a08-8fff-3548f90f589c', 'info': None, 'row': 210, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.51504649610112, 20.45564659467945, 0]}}, {'type': 'Feature', 'properties': {'id': '953e0782-17c1-4a59-9acd-fbed73c9b10e', 'info': None, 'row': 210, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.6336334750417, 20.47716202751881, 0]}}, {'type': 'Feature', 'properties': {'id': '134932ef-5ee6-46b1-8aa4-f814f574414c', 'info': None, 'row': 210, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.75225342973029, 20.498596579592448, 0]}}, {'type': 'Feature', 'properties': {'id': 'dc2f11a2-ba48-457a-ab6e-80e8b6e688b5', 'info': None, 'row': 210, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-68.87090628293846, 20.51995013803799, 0]}}, {'type': 'Feature', 'properties': {'id': '45e26238-2f06-49cf-88cc-0d06fef2b914', 'info': None, 'row': 210, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-68.98959195670207, 20.541222590287997, 0]}}, {'type': 'Feature', 'properties': {'id': '5af52340-8c7c-4b93-9f99-2cfb2a4454a7', 'info': None, 'row': 210, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.10831037232164, 20.562413824071243, 0]}}, {'type': 'Feature', 'properties': {'id': '8e6d39f0-01c8-431a-8c03-6a310ef6a1be', 'info': None, 'row': 210, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.22706145038288, 20.583523727417564, 0]}}, {'type': 'Feature', 'properties': {'id': 'fc7672ad-357d-4a5d-abd4-a59653141a4d', 'info': None, 'row': 210, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.34584511078499, 20.60455218866414, 0]}}, {'type': 'Feature', 'properties': {'id': 'c684a3bb-ffe2-42a9-b726-a74b42b6db57', 'info': None, 'row': 210, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.46466127276405, 20.625499096460775, 0]}}, {'type': 'Feature', 'properties': {'id': 'e30daa71-e53e-45a2-9f03-3131fb50080a', 'info': None, 'row': 210, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.58350985490117, 20.646364339772628, 0]}}, {'type': 'Feature', 'properties': {'id': '37ecb7ef-bb37-4f26-9de6-4274085a2606', 'info': None, 'row': 210, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.70239077511174, 20.66714780787955, 0]}}, {'type': 'Feature', 'properties': {'id': 'b344e756-6fb2-47b9-b145-66b03402f8b4', 'info': None, 'row': 210, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.82130395062127, 20.687849390373312, 0]}}, {'type': 'Feature', 'properties': {'id': '63267d3a-541b-4600-b754-74874850e459', 'info': None, 'row': 210, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-69.9402492979427, 20.708468977155178, 0]}}, {'type': 'Feature', 'properties': {'id': 'd4146070-a2df-40e5-9e83-16d58254bb39', 'info': None, 'row': 210, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.0592267328828, 20.72900645843872, 0]}}, {'type': 'Feature', 'properties': {'id': '38f4fd4a-1226-4af7-8cd9-0321ff6cb96d', 'info': None, 'row': 210, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.17823616928158, 20.749461728215454, 0]}}, {'type': 'Feature', 'properties': {'id': '1003aa6e-6960-4032-9451-3254824d548c', 'info': None, 'row': 252, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-67.93845625777273, 20.271238400960037, 0]}}, {'type': 'Feature', 'properties': {'id': '10e00ecd-7417-4ec8-b8bb-2918fa3a7ab6', 'info': None, 'row': 252, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.05681879414621, 20.293161687451875, 0]}}, {'type': 'Feature', 'properties': {'id': 'bef56fe6-d078-40ae-8a89-1df959d48521', 'info': None, 'row': 252, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.17521453829758, 20.31500498588236, 0]}}, {'type': 'Feature', 'properties': {'id': '7da0e082-c742-4483-9661-eb9032b814dc', 'info': None, 'row': 252, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.29364341803245, 20.336768182245418, 0]}}, {'type': 'Feature', 'properties': {'id': '81232113-4160-41b3-b6ad-23cb35559494', 'info': None, 'row': 252, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.41210535993051, 20.358451162732297, 0]}}, {'type': 'Feature', 'properties': {'id': 'd664dff7-b8f1-47f2-b595-8b761e2a7008', 'info': None, 'row': 252, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.53060028976287, 20.380053813809816, 0]}}, {'type': 'Feature', 'properties': {'id': '3a644185-cfb0-4966-a2a8-12b7645ff0d9', 'info': None, 'row': 252, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.64912813262379, 20.401576022245184, 0]}}, {'type': 'Feature', 'properties': {'id': '5ab9a764-3205-4a95-b46e-73ac08484a24', 'info': None, 'row': 252, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.76768881293495, 20.42301767510734, 0]}}, {'type': 'Feature', 'properties': {'id': 'd12fcce1-d06d-4e85-849c-61ed2b609adb', 'info': None, 'row': 252, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-68.88628225441404, 20.444378659762016, 0]}}, {'type': 'Feature', 'properties': {'id': 'b570ebde-32f2-459e-830a-1aaba96d1d89', 'info': None, 'row': 252, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-69.0049083800507, 20.465658863868327, 0]}}, {'type': 'Feature', 'properties': {'id': '58800c3a-3c3d-473e-a47f-939c0544dd0e', 'info': None, 'row': 252, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.12356711210494, 20.486858175379577, 0]}}, {'type': 'Feature', 'properties': {'id': '70a63653-9f47-44c0-8f2d-11bb56e6132b', 'info': None, 'row': 252, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.2422583721257, 20.507976482547782, 0]}}, {'type': 'Feature', 'properties': {'id': '778d1f8c-50ad-423e-b2cc-e1e443534c6f', 'info': None, 'row': 252, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.3609820809777, 20.529013673929686, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb750b12-e170-464f-90d4-561bd9b5e8e1', 'info': None, 'row': 252, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.47973815886449, 20.54996963839198, 0]}}, {'type': 'Feature', 'properties': {'id': '6125c610-eef6-472f-bfda-b4be59c99972', 'info': None, 'row': 252, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.59852652533718, 20.570844265114154, 0]}}, {'type': 'Feature', 'properties': {'id': '43b6063e-5ac1-448e-91ee-cee53a5fdae6', 'info': None, 'row': 252, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.71734709928508, 20.59163744358804, 0]}}, {'type': 'Feature', 'properties': {'id': '589f97ef-699c-417b-af89-f88b34e3e9c8', 'info': None, 'row': 252, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.83619979891355, 20.612349063615397, 0]}}, {'type': 'Feature', 'properties': {'id': '0e318e7a-1f4e-4e9c-b0f2-0a8e70a59285', 'info': None, 'row': 252, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-69.95508454172362, 20.632979015305857, 0]}}, {'type': 'Feature', 'properties': {'id': 'e6b43154-1ace-4487-b2a3-4c74f5b0eed9', 'info': None, 'row': 252, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.07400124452022, 20.653527189080044, 0]}}, {'type': 'Feature', 'properties': {'id': '86b4c1d8-cae1-4fb8-b157-fbec4f9147f0', 'info': None, 'row': 252, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.19294982215769, 20.67399347912156, 0]}}, {'type': 'Feature', 'properties': {'id': 'ea7b85d4-6e34-4d7e-80bc-03c84e8906af', 'info': None, 'row': 294, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-67.95430362482917, 20.195616611910054, 0]}}, {'type': 'Feature', 'properties': {'id': '24003f0d-244b-497e-844f-a52412d22cd1', 'info': None, 'row': 294, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.07260773054207, 20.217545051513774, 0]}}, {'type': 'Feature', 'properties': {'id': '82510194-d574-4dc6-8dff-39165d1ed1e9', 'info': None, 'row': 294, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.19094490109266, 20.239393827079475, 0]}}, {'type': 'Feature', 'properties': {'id': '337880b1-7efc-4714-870b-00be1974cdaf', 'info': None, 'row': 294, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.30931506522424, 20.261162824842582, 0]}}, {'type': 'Feature', 'properties': {'id': '7a414e24-3a2a-4989-a2df-df3b72af84cc', 'info': None, 'row': 294, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.4277181504378, 20.28285193122979, 0]}}, {'type': 'Feature', 'properties': {'id': '0178ac93-2d6c-4dc8-bf3a-a27ff3e79ea8', 'info': None, 'row': 294, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.54615408342465, 20.304461032940182, 0]}}, {'type': 'Feature', 'properties': {'id': '282a89e3-f48e-4c77-8d03-adeb932e696b', 'info': None, 'row': 294, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.66462279020588, 20.32599001697156, 0]}}, {'type': 'Feature', 'properties': {'id': 'f0276ffe-0e1a-4ec2-9b32-e8bbb1d3eba8', 'info': None, 'row': 294, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.78312419613961, 20.34743877062223, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc8fd564-4fb0-40ac-a70b-5f02040c0efa', 'info': None, 'row': 294, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-68.9016582258896, 20.36880718148605, 0]}}, {'type': 'Feature', 'properties': {'id': 'f11ef1b5-c6df-437b-a881-48cbfab1f74c', 'info': None, 'row': 294, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-69.02022480339929, 20.390095137448665, 0]}}, {'type': 'Feature', 'properties': {'id': 'd2b179e9-6474-46d4-9e9a-f1cf8525ec80', 'info': None, 'row': 294, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.13882385188822, 20.41130252668792, 0]}}, {'type': 'Feature', 'properties': {'id': 'aceed12b-2e06-4df1-b966-0369723b8402', 'info': None, 'row': 294, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.25745529386852, 20.432429237678, 0]}}, {'type': 'Feature', 'properties': {'id': 'ab329a11-6084-4ade-99b3-aabf3ca20662', 'info': None, 'row': 294, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.3761190511704, 20.45347515919523, 0]}}, {'type': 'Feature', 'properties': {'id': '729e2fac-d5d3-4469-9df8-bcfaa96c67d7', 'info': None, 'row': 294, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.49481504496494, 20.474440180323185, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba4a6fe1-2e89-48cf-9e77-610ecc77816a', 'info': None, 'row': 294, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.6135431957732, 20.49532419045568, 0]}}, {'type': 'Feature', 'properties': {'id': '852d516d-3f8c-48cd-8b55-455dfcef2e01', 'info': None, 'row': 294, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.73230342345842, 20.51612707929653, 0]}}, {'type': 'Feature', 'properties': {'id': '04b16dab-0630-4586-9e46-397505848173', 'info': None, 'row': 294, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.85109564720587, 20.536848736857493, 0]}}, {'type': 'Feature', 'properties': {'id': 'a478c276-1e91-467c-90af-30988fe4a02f', 'info': None, 'row': 294, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-69.96991978550454, 20.55748905345654, 0]}}, {'type': 'Feature', 'properties': {'id': '25b1de6d-74c5-4e39-a2e6-6fac6a1b4f37', 'info': None, 'row': 294, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.08877575615762, 20.578047919721357, 0]}}, {'type': 'Feature', 'properties': {'id': '11301abf-23d2-4e97-955a-2be78b0cdd3c', 'info': None, 'row': 294, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.20766347503383, 20.598525230027658, 0]}}, {'type': 'Feature', 'properties': {'id': '37ab65b4-ab7f-4cb2-98bc-ad2475db3091', 'info': None, 'row': 336, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-67.97014148455463, 20.119992648273172, 0]}}, {'type': 'Feature', 'properties': {'id': '8022a7c2-db56-4e6f-8b82-2821db16a022', 'info': None, 'row': 336, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.08838770913441, 20.141926274813123, 0]}}, {'type': 'Feature', 'properties': {'id': 'aa8e4e17-732d-4ee9-b5fb-691c39c22c85', 'info': None, 'row': 336, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.20666678416512, 20.163780547374827, 0]}}, {'type': 'Feature', 'properties': {'id': '4d94fd25-438c-4f6e-b19f-13b8dea23174', 'info': None, 'row': 336, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.32497873014387, 20.18555536929213, 0]}}, {'type': 'Feature', 'properties': {'id': '24f7ac15-6732-4a7c-b83c-9d2d6c8aca46', 'info': None, 'row': 336, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.44332347873542, 20.207250627780144, 0]}}, {'type': 'Feature', 'properties': {'id': 'de67d54c-f591-4f82-a185-084b268f1a61', 'info': None, 'row': 336, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.56170093769767, 20.228866206099426, 0]}}, {'type': 'Feature', 'properties': {'id': 'dab67f45-773e-4001-8966-92a93c38c94a', 'info': None, 'row': 336, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.68011101983936, 20.250401988903214, 0]}}, {'type': 'Feature', 'properties': {'id': '4ed944c1-baff-4b4b-9aa3-2ffbc8dc390f', 'info': None, 'row': 336, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.79855365047258, 20.27185786356653, 0]}}, {'type': 'Feature', 'properties': {'id': '50bcf877-47ee-4780-a613-b41d525b0e0d', 'info': None, 'row': 336, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-68.91702876374505, 20.293233719478224, 0]}}, {'type': 'Feature', 'properties': {'id': '5e6e98a2-5639-4970-b236-b5acf30e1528', 'info': None, 'row': 336, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-69.03553629506398, 20.314529446646873, 0]}}, {'type': 'Feature', 'properties': {'id': '2ebbf059-d145-4e95-9d94-71e5d6afb49a', 'info': None, 'row': 336, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.15407617431093, 20.33574493448111, 0]}}, {'type': 'Feature', 'properties': {'id': 'ae125e6f-399c-4e44-bcb8-c4bb20ec0739', 'info': None, 'row': 336, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.27264832251798, 20.356880071215944, 0]}}, {'type': 'Feature', 'properties': {'id': 'de87dd44-313a-4da9-b141-3d75cf98209d', 'info': None, 'row': 336, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.39125265299955, 20.377934744144248, 0]}}, {'type': 'Feature', 'properties': {'id': 'ec00331c-62a7-4e46-b3c8-49462a2e1ece', 'info': None, 'row': 336, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.50988907651973, 20.39890884055638, 0]}}, {'type': 'Feature', 'properties': {'id': '4e5c9f7e-f19a-4b65-9717-5f7a4a653e1e', 'info': None, 'row': 336, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.62855750884896, 20.419802249078103, 0]}}, {'type': 'Feature', 'properties': {'id': '6168728c-be34-4774-a0a3-3f8b5116ee71', 'info': None, 'row': 336, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.74725787797752, 20.44061486091553, 0]}}, {'type': 'Feature', 'properties': {'id': 'f1892147-edb8-42e0-b011-d52be13a8244', 'info': None, 'row': 336, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.86599012726693, 20.461346570359893, 0]}}, {'type': 'Feature', 'properties': {'id': '74afae3c-250f-464c-ba61-a7077639d081', 'info': None, 'row': 336, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-69.98475420990567, 20.481997273767345, 0]}}, {'type': 'Feature', 'properties': {'id': '15cc241c-f3f1-48f9-b2e1-cf9e636df9e5', 'info': None, 'row': 336, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.10355006917196, 20.502566866106566, 0]}}, {'type': 'Feature', 'properties': {'id': '2b10f67c-2fbe-4b2d-9f77-ee9cc1990f3c', 'info': None, 'row': 336, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.22237759686983, 20.523055237467926, 0]}}, {'type': 'Feature', 'properties': {'id': 'fb0ebf20-bf3e-417c-9d26-7103cfd0484f', 'info': None, 'row': 378, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-67.98597723538124, 20.044368202273382, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4b1a25e-e40c-4cf3-8859-b6ff86c678d1', 'info': None, 'row': 378, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.10416570072306, 20.066307023252417, 0]}}, {'type': 'Feature', 'properties': {'id': '16407aa9-a1a6-49d0-9e0c-99aff4ee8f85', 'info': None, 'row': 378, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.22238678628095, 20.088166797215603, 0]}}, {'type': 'Feature', 'properties': {'id': '26f7224c-07ef-4c13-b9db-712ad0df2a2e', 'info': None, 'row': 378, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.34064062445044, 20.10994744833439, 0]}}, {'type': 'Feature', 'properties': {'id': '6724d7e9-27bb-4839-bb63-901973717153', 'info': None, 'row': 378, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.45892715177926, 20.131648864734952, 0]}}, {'type': 'Feature', 'properties': {'id': '1cae88f4-a29d-4634-83c1-9bc2296d3fb1', 'info': None, 'row': 378, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.57724625268808, 20.153270925425083, 0]}}, {'type': 'Feature', 'properties': {'id': '5b947c1a-5f9d-4ce6-a348-04a36b7bd8c1', 'info': None, 'row': 378, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.69559782363696, 20.174813512142222, 0]}}, {'type': 'Feature', 'properties': {'id': 'b4eca6e6-144b-4a54-ab9e-d6aa43dd1425', 'info': None, 'row': 378, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.813981789674, 20.19627651230428, 0]}}, {'type': 'Feature', 'properties': {'id': '23a271be-8b9b-40f2-bbef-f7ce0386d92c', 'info': None, 'row': 378, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-68.93239809632479, 20.21765981744261, 0]}}, {'type': 'Feature', 'properties': {'id': '33d60c9d-bff2-4bf7-806a-fd7b5ac1c308', 'info': None, 'row': 378, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-69.05084669279151, 20.238963320109423, 0]}}, {'type': 'Feature', 'properties': {'id': '454e10b1-a540-4cb8-8233-a014ef3207a5', 'info': None, 'row': 378, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.16932751688275, 20.26018691116731, 0]}}, {'type': 'Feature', 'properties': {'id': 'e51104ab-ded0-4300-b29d-c5f40990fc55', 'info': None, 'row': 378, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.28784048760855, 20.281330478509783, 0]}}, {'type': 'Feature', 'properties': {'id': 'da5ccc75-e0e0-4f8c-b33b-6a7225d094b3', 'info': None, 'row': 378, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.40638550766442, 20.30239390756851, 0]}}, {'type': 'Feature', 'properties': {'id': 'c1faf45f-95ed-42b4-95f7-af9b1fe3ea77', 'info': None, 'row': 378, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.5249624748844, 20.323377083394742, 0]}}, {'type': 'Feature', 'properties': {'id': '922c9113-bda1-4377-9ce2-a59909a82e94', 'info': None, 'row': 378, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.64357129901937, 20.344279893628293, 0]}}, {'type': 'Feature', 'properties': {'id': 'fce0e13c-ce0c-4852-b8ea-de21565b4bc6', 'info': None, 'row': 378, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.76221191777329, 20.36510223126377, 0]}}, {'type': 'Feature', 'properties': {'id': 'dc5ccda1-4c1d-4f8d-9ce1-dcfba6b277d2', 'info': None, 'row': 378, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.88088430382945, 20.385843995774586, 0]}}, {'type': 'Feature', 'properties': {'id': '7b18ef81-5fc2-4e07-a1ab-86420d30996a', 'info': None, 'row': 378, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-69.99958845255347, 20.406505090848224, 0]}}, {'type': 'Feature', 'properties': {'id': '731470b7-ddd4-4798-87b2-252be25cc73a', 'info': None, 'row': 378, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.11832433812812, 20.42708541671134, 0]}}, {'type': 'Feature', 'properties': {'id': 'd6aa16d5-2e44-4dea-9fb1-2890c2d58537', 'info': None, 'row': 378, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.23709182272965, 20.447584858175762, 0]}}, {'type': 'Feature', 'properties': {'id': 'b5650baf-b9f1-4b51-9d91-ef97783a4450', 'info': None, 'row': 420, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-68.00180825187223, 19.96874266005856, 0]}}, {'type': 'Feature', 'properties': {'id': '92402e79-1276-4e46-be60-205a90acd8cc', 'info': None, 'row': 420, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.1199391440469, 19.990686675086856, 0]}}, {'type': 'Feature', 'properties': {'id': '644f79d2-e821-476d-b57c-8bb7fbbdf444', 'info': None, 'row': 420, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.23810254422408, 20.012551971610684, 0]}}, {'type': 'Feature', 'properties': {'id': 'b930e864-07df-472e-8f3e-f928e43e3965', 'info': None, 'row': 420, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.35629854936151, 20.034338467270604, 0]}}, {'type': 'Feature', 'properties': {'id': '2788c18a-68ac-4ea1-b008-d77332216142', 'info': None, 'row': 420, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.47452709398695, 20.056046049901294, 0]}}, {'type': 'Feature', 'properties': {'id': '78922da1-b32b-4a17-80a9-50eac11385b7', 'info': None, 'row': 420, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.59278807084812, 20.077674600117735, 0]}}, {'type': 'Feature', 'properties': {'id': '3f8410e1-136c-415c-9b27-fdb17a745dd5', 'info': None, 'row': 420, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.71108138375412, 20.099224001062097, 0]}}, {'type': 'Feature', 'properties': {'id': 'a73d73fb-2f66-4809-b7c8-bfa2b0e865d3', 'info': None, 'row': 420, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.82940696026486, 20.120694140657474, 0]}}, {'type': 'Feature', 'properties': {'id': '791ad71f-0ed8-4270-a700-1cb704ec21f1', 'info': None, 'row': 420, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-68.94776474402582, 20.14208491013873, 0]}}, {'type': 'Feature', 'properties': {'id': 'ccf86550-af03-4099-a681-029cc0e3fa32', 'info': None, 'row': 420, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-69.06615468042622, 20.163396201418667, 0]}}, {'type': 'Feature', 'properties': {'id': '2dc1f451-305a-4999-9459-a61c3b0473e8', 'info': None, 'row': 420, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.18457670439244, 20.184627904898175, 0]}}, {'type': 'Feature', 'properties': {'id': 'e77eb33f-392b-4776-bd35-8c0ead90a5c1', 'info': None, 'row': 420, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.3030307351904, 20.205779908577913, 0]}}, {'type': 'Feature', 'properties': {'id': 'cebd1590-03f2-460a-93ff-98cd0b0a3f56', 'info': None, 'row': 420, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.42151667984828, 20.22685209872113, 0]}}, {'type': 'Feature', 'properties': {'id': '3d1a2347-d6b2-45f4-ab37-742fea84cfb0', 'info': None, 'row': 420, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.54003444404019, 20.24784436181933, 0]}}, {'type': 'Feature', 'properties': {'id': '02033064-f310-46bc-9b66-a9fa20357837', 'info': None, 'row': 420, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.6585839468684, 20.26875658719602, 0]}}, {'type': 'Feature', 'properties': {'id': '62bdf7f4-c8af-437a-a28e-1f06d8639a72', 'info': None, 'row': 420, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.77716513383758, 20.289588669229012, 0]}}, {'type': 'Feature', 'properties': {'id': 'e761f52f-bb61-49b8-9bc2-f0cb32764f81', 'info': None, 'row': 420, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.8957779803638, 20.310340507864414, 0]}}, {'type': 'Feature', 'properties': {'id': 'f0df19d3-093f-4b5f-a97e-006a55164a10', 'info': None, 'row': 420, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-70.01442247634672, 20.331012005824906, 0]}}, {'type': 'Feature', 'properties': {'id': '0867ebb4-4c72-409c-9162-2b8f758e0e11', 'info': None, 'row': 420, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.13309858061353, 20.351603060672588, 0]}}, {'type': 'Feature', 'properties': {'id': '9fd30227-f723-4fed-b31e-fc6556282e42', 'info': None, 'row': 420, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.25180613111083, 20.372113553054913, 0]}}, {'type': 'Feature', 'properties': {'id': '9a1d614d-72c1-477f-82fc-60cfa01a7da1', 'info': None, 'row': 462, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-68.01763275279248, 19.893115609191362, 0]}}, {'type': 'Feature', 'properties': {'id': 'd40dbd57-40b9-4631-af30-929f699fcaaf', 'info': None, 'row': 462, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.13570632787761, 19.915064817732432, 0]}}, {'type': 'Feature', 'properties': {'id': '65ee3787-c2bb-42d9-b9a4-4ec7e633a5a4', 'info': None, 'row': 462, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.25381246117705, 19.936935665936915, 0]}}, {'type': 'Feature', 'properties': {'id': '758c7318-af0d-4801-9e4c-a43d6755276c', 'info': None, 'row': 462, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.37195101144113, 19.958728027248995, 0]}}, {'type': 'Feature', 'properties': {'id': 'ecf8c6e6-c521-47e9-ac90-0162ca83cd41', 'info': None, 'row': 462, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.49012190167755, 19.980441787556792, 0]}}, {'type': 'Feature', 'properties': {'id': '648071f3-9685-41aa-a1f9-141f8085414a', 'info': None, 'row': 462, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.6083250765386, 20.00207683714715, 0]}}, {'type': 'Feature', 'properties': {'id': '1db48605-ebe9-4d18-a08b-cd522000481e', 'info': None, 'row': 462, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.72656047979625, 20.02363306651307, 0]}}, {'type': 'Feature', 'properties': {'id': '712b9d19-cbe9-4884-b27d-ea0873890b12', 'info': None, 'row': 462, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.84482804534217, 20.045110364719058, 0]}}, {'type': 'Feature', 'properties': {'id': '9348f599-2d7a-4b36-a6d2-f0e1b58b691c', 'info': None, 'row': 462, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-68.96312769669575, 20.066508619346855, 0]}}, {'type': 'Feature', 'properties': {'id': '8ab7b48d-2c7a-4591-9c96-923c92ac92ab', 'info': None, 'row': 462, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-69.08145935120056, 20.08782771728921, 0]}}, {'type': 'Feature', 'properties': {'id': 'db5fe457-5615-4933-b9fe-53985d0f4c18', 'info': None, 'row': 462, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.19982292602462, 20.10906754584894, 0]}}, {'type': 'Feature', 'properties': {'id': 'd95be23e-3fbf-4c72-8775-57e4b48a05e3', 'info': None, 'row': 462, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.31821834382464, 20.130227993751273, 0]}}, {'type': 'Feature', 'properties': {'id': 'e3484be9-955c-4d6d-87bc-ec8a27c64183', 'info': None, 'row': 462, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.43664553653844, 20.151308951796942, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3b094db-4ca0-40f1-89bf-a767fa7bc7ce', 'info': None, 'row': 462, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.55510444626486, 20.172310312981388, 0]}}, {'type': 'Feature', 'properties': {'id': 'e7ed4374-82fb-4d98-ac5f-73229b61a8f5', 'info': None, 'row': 462, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.67359502261178, 20.19323197198589, 0]}}, {'type': 'Feature', 'properties': {'id': '2d599af8-0555-488e-aaeb-b335db6c3eb3', 'info': None, 'row': 462, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.79211721625157, 20.214073824013703, 0]}}, {'type': 'Feature', 'properties': {'id': '86b0d15f-4172-4b76-8fde-eb8fc5b3ce61', 'info': None, 'row': 462, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.91067096874058, 20.2348357630022, 0]}}, {'type': 'Feature', 'properties': {'id': '7899ecc5-f467-41f5-8c7e-28d3c23b12de', 'info': None, 'row': 462, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-70.02925619894411, 20.255517679291856, 0]}}, {'type': 'Feature', 'properties': {'id': '8a7f7dbb-1b39-448c-b126-c27bd68d0bda', 'info': None, 'row': 462, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.14787278666896, 20.27611945687691, 0]}}, {'type': 'Feature', 'properties': {'id': 'a8f6305f-894d-4bf7-b0f0-211219134b93', 'info': None, 'row': 462, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.26652055306094, 20.296640973773762, 0]}}, {'type': 'Feature', 'properties': {'id': '64b462a7-a54e-455c-addd-a638279e9490', 'info': None, 'row': 504, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-68.03345699115131, 19.817488506713925, 0]}}, {'type': 'Feature', 'properties': {'id': '753b4cd3-41ca-4014-aab8-72f92ba270af', 'info': None, 'row': 504, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.1514732687312, 19.83944291081149, 0]}}, {'type': 'Feature', 'properties': {'id': '6136fc7b-0ee7-4ef2-ab3d-7a3d7c67b5a7', 'info': None, 'row': 504, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.26952214602683, 19.861319311101813, 0]}}, {'type': 'Feature', 'properties': {'id': '24e29a68-14c0-46b4-9586-e1f297be616c', 'info': None, 'row': 504, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.3876032541981, 19.883117538807372, 0]}}, {'type': 'Feature', 'properties': {'id': '01c45e84-d28b-4796-a557-51b991bbf623', 'info': None, 'row': 504, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.50571650560504, 19.904837478025875, 0]}}, {'type': 'Feature', 'properties': {'id': '3ea910f2-b2cc-4ce4-837e-de7f336a7185', 'info': None, 'row': 504, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.62386189467274, 19.926479028320454, 0]}}, {'type': 'Feature', 'properties': {'id': '6217e9c7-e3b5-4af0-bbd2-5f7df5a9732e', 'info': None, 'row': 504, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.74203940327644, 19.948042087194914, 0]}}, {'type': 'Feature', 'properties': {'id': '639a9069-35f3-4e3e-9274-201a724fde38', 'info': None, 'row': 504, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.86024897115328, 19.96952654476948, 0]}}, {'type': 'Feature', 'properties': {'id': 'd6f82b84-edc2-46d9-aa29-c0710277169b', 'info': None, 'row': 504, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-68.9784905024548, 19.99093228511334, 0]}}, {'type': 'Feature', 'properties': {'id': '139a03ed-df56-4ad6-86d8-9012d9ba259e', 'info': None, 'row': 504, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-69.09676388780014, 20.01225919033899, 0]}}, {'type': 'Feature', 'properties': {'id': 'f6ee65c1-ae7b-4f93-bd06-68c797cbebbc', 'info': None, 'row': 504, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.21506902771442, 20.033507144850418, 0]}}, {'type': 'Feature', 'properties': {'id': 'c4d76c62-f5a2-41bd-9201-afb2e9248697', 'info': None, 'row': 504, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.3334058485949, 20.054676038156792, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc39dcc6-2461-4052-ae3b-cb872e945338', 'info': None, 'row': 504, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.45177430667727, 20.075765765483848, 0]}}, {'type': 'Feature', 'properties': {'id': '25c68afd-d212-4d10-b7ec-8c3b5784bb7d', 'info': None, 'row': 504, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.5701743791199, 20.096776226086703, 0]}}, {'type': 'Feature', 'properties': {'id': 'fbf23512-22e5-439b-b521-0f9b4b900320', 'info': None, 'row': 504, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.68860604446738, 20.117707319727895, 0]}}, {'type': 'Feature', 'properties': {'id': 'a845b620-3c94-4522-a81e-599c6d291b33', 'info': None, 'row': 504, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.80706925752781, 20.138558942258204, 0]}}, {'type': 'Feature', 'properties': {'id': 'f977f30b-65d0-4fff-b7bf-200c23e87bfa', 'info': None, 'row': 504, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.92556392620497, 20.15933098164783, 0]}}, {'type': 'Feature', 'properties': {'id': '8e4f2c19-9f55-49b7-a691-416830f3b7d8', 'info': None, 'row': 504, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-70.04408990013566, 20.18002331617443, 0]}}, {'type': 'Feature', 'properties': {'id': '9a085745-1481-477f-8d2d-5a6d264f4124', 'info': None, 'row': 504, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.16264698315543, 20.20063581679466, 0]}}, {'type': 'Feature', 'properties': {'id': 'b8dac7a3-044b-4464-a85f-94c979c59046', 'info': None, 'row': 504, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.28123498239434, 20.221168359370843, 0]}}, {'type': 'Feature', 'properties': {'id': '699cfece-df65-4d2f-a35b-38a34cf9b539', 'info': None, 'row': 546, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-68.04927018173403, 19.74185923263626, 0]}}, {'type': 'Feature', 'properties': {'id': '24a0f70b-1a02-4dc6-8595-16145c780ba8', 'info': None, 'row': 546, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.1672299858544, 19.763818918283512, 0]}}, {'type': 'Feature', 'properties': {'id': 'f42bc173-8873-49fa-b6b2-feeeac2fc150', 'info': None, 'row': 546, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.28522206468622, 19.78570088770876, 0]}}, {'type': 'Feature', 'properties': {'id': 'd73bca33-f502-45a6-9de0-400e45266056', 'info': None, 'row': 546, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.40324626853271, 19.807505013000466, 0]}}, {'type': 'Feature', 'properties': {'id': '1f9e7adb-4ffc-455f-af53-0a285abff6f4', 'info': None, 'row': 546, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.52130253580755, 19.829231183035585, 0]}}, {'type': 'Feature', 'properties': {'id': 'fc0a3e45-ae1f-47bc-9201-dcea0e5e3ae3', 'info': None, 'row': 546, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.63939082101304, 19.850879290009445, 0]}}, {'type': 'Feature', 'properties': {'id': '2efc8f9d-f658-42d5-890d-91dd3bd29a94', 'info': None, 'row': 546, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.75751106588133, 19.872449224129188, 0]}}, {'type': 'Feature', 'properties': {'id': '004165ac-6910-4ee7-8078-771f1771589e', 'info': None, 'row': 546, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.87566319553287, 19.893940872965395, 0]}}, {'type': 'Feature', 'properties': {'id': 'f5b0df4d-8f0f-441d-b0ce-d9edd73234c7', 'info': None, 'row': 546, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-68.99384712665575, 19.915354122989374, 0]}}, {'type': 'Feature', 'properties': {'id': 'd24b82b1-cef0-4f8a-86b3-93edb6444c7a', 'info': None, 'row': 546, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-69.11206277873762, 19.936688861622862, 0]}}, {'type': 'Feature', 'properties': {'id': '544c4ba7-aa15-45c2-bdcb-30a4cfe35b2d', 'info': None, 'row': 546, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.23031008259831, 19.95794497875444, 0]}}, {'type': 'Feature', 'properties': {'id': '20fc9900-9643-46ef-90e9-3aa5c28735e5', 'info': None, 'row': 546, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.3485889830883, 19.979122367177016, 0]}}, {'type': 'Feature', 'properties': {'id': '2e421fa3-037f-448f-87f3-cd7293eb4390', 'info': None, 'row': 546, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.46689943500174, 20.000220921807, 0]}}, {'type': 'Feature', 'properties': {'id': 'ac9ee9cc-8811-403d-a375-f9eefcbe29d9', 'info': None, 'row': 546, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.58524139311464, 20.021240537881123, 0]}}, {'type': 'Feature', 'properties': {'id': 'aa48b5f7-3c46-49af-b5ae-f8349799654d', 'info': None, 'row': 546, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.70361479889048, 20.0421811086093, 0]}}, {'type': 'Feature', 'properties': {'id': '134eab8c-81de-4183-8c64-de81d966f30f', 'info': None, 'row': 546, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.82201956785383, 20.06304252300376, 0]}}, {'type': 'Feature', 'properties': {'id': 'a20700b2-6b6d-49ab-8c6b-ac1d7b5450a5', 'info': None, 'row': 546, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.94045558297225, 20.083824664815904, 0]}}, {'type': 'Feature', 'properties': {'id': '4f8003cb-2c85-4540-a738-f9635ad76ba1', 'info': None, 'row': 546, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-70.05892270063534, 20.1045274136992, 0]}}, {'type': 'Feature', 'properties': {'id': '28fce62e-b698-486b-bfc7-c36a404ceb67', 'info': None, 'row': 546, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.17742077700989, 20.125150649885057, 0]}}, {'type': 'Feature', 'properties': {'id': '6f053658-19e3-476c-91b1-e3c2322c1f45', 'info': None, 'row': 546, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.29594972239352, 20.145694267151615, 0]}}, {'type': 'Feature', 'properties': {'id': '30a08caf-5441-4779-a943-596e9f095fb3', 'info': None, 'row': 588, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-68.06508337231679, 19.666229958558592, 0]}}, {'type': 'Feature', 'properties': {'id': '6493d780-a5e8-4a78-85e6-a804702576cd', 'info': None, 'row': 588, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.18298670297763, 19.688194925755532, 0]}}, {'type': 'Feature', 'properties': {'id': 'd265a5a4-1c80-49fb-a336-a4e2a39290ae', 'info': None, 'row': 588, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.30092198334563, 19.710082464315715, 0]}}, {'type': 'Feature', 'properties': {'id': '6f194531-ee68-4c56-85dc-cdd1c91cdfa1', 'info': None, 'row': 588, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.41888928286731, 19.731892487193566, 0]}}, {'type': 'Feature', 'properties': {'id': '56fdfa31-a86a-49e1-9f1f-bbe2a476d6fd', 'info': None, 'row': 588, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.53688856601005, 19.7536248880453, 0]}}, {'type': 'Feature', 'properties': {'id': '6e0480df-391c-447a-9b6a-e96ef390cbf9', 'info': None, 'row': 588, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.65491974735336, 19.77527955169844, 0]}}, {'type': 'Feature', 'properties': {'id': '8cd05798-5990-4eb0-822d-a2971e6d2a90', 'info': None, 'row': 588, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.77298272848623, 19.796856361063465, 0]}}, {'type': 'Feature', 'properties': {'id': 'b7f98832-16d1-476f-adeb-7d3a0364dccd', 'info': None, 'row': 588, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.89107741991248, 19.81835520116131, 0]}}, {'type': 'Feature', 'properties': {'id': 'ab69deff-c533-45d6-81f0-367157876ec8', 'info': None, 'row': 588, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-69.00920375085671, 19.839775960865403, 0]}}, {'type': 'Feature', 'properties': {'id': 'b8f868bb-aa85-4243-9591-c2d0e8414ad7', 'info': None, 'row': 588, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-69.12736166967511, 19.861118532906733, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba6bb1f1-b0bf-4e84-bb7f-5f084cf962b7', 'info': None, 'row': 588, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.2455511374822, 19.882382812658467, 0]}}, {'type': 'Feature', 'properties': {'id': '392330e6-ccd9-47b8-855d-9cc7a97a692e', 'info': None, 'row': 588, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.36377211758172, 19.903568696197247, 0]}}, {'type': 'Feature', 'properties': {'id': '89d173e3-a626-4cab-94b7-8efea1fd6c06', 'info': None, 'row': 588, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.48202456332622, 19.924676078130148, 0]}}, {'type': 'Feature', 'properties': {'id': 'b7ad38e4-2d0f-4477-a7ba-1bac7c1b7e39', 'info': None, 'row': 588, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.6003084071094, 19.94570484967554, 0]}}, {'type': 'Feature', 'properties': {'id': '870c2fbd-d738-41bd-9213-914624e6191b', 'info': None, 'row': 588, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.71862355331358, 19.966654897490702, 0]}}, {'type': 'Feature', 'properties': {'id': '1a5ff2ce-506c-4c82-883f-c09049842200', 'info': None, 'row': 588, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.83696987817984, 19.987526103749317, 0]}}, {'type': 'Feature', 'properties': {'id': '49cea3b2-94b2-423e-9a6b-8a3c94d5d7c3', 'info': None, 'row': 588, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.95534723973952, 20.00831834798397, 0]}}, {'type': 'Feature', 'properties': {'id': '3dd4cef0-ebe8-4fa1-a2a8-b20f648d70d1', 'info': None, 'row': 588, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-70.07375550113501, 20.029031511223963, 0]}}, {'type': 'Feature', 'properties': {'id': '06e30e29-fc63-4c66-bbfe-50fa75b766f7', 'info': None, 'row': 588, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.19219457086436, 20.049665482975453, 0]}}, {'type': 'Feature', 'properties': {'id': '1850fb20-b25f-44da-955e-f00a61c521cd', 'info': None, 'row': 588, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.31066446239268, 20.070220174932395, 0]}}, {'type': 'Feature', 'properties': {'id': '4888616a-7b08-44d5-953e-e2ff3ee57667', 'info': None, 'row': 630, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-68.08088978216789, 19.59059933833138, 0]}}, {'type': 'Feature', 'properties': {'id': '07c07576-7121-4675-8ab9-6432d7390fc4', 'info': None, 'row': 630, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.19873689650723, 19.612569591939543, 0]}}, {'type': 'Feature', 'properties': {'id': '15a80a7d-423e-4811-98d0-b674b7443a6c', 'info': None, 'row': 630, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.3166158200744, 19.634462738319346, 0]}}, {'type': 'Feature', 'properties': {'id': '8758a595-fd72-45ee-b908-59877f011814', 'info': None, 'row': 630, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.43452663927746, 19.65627869360381, 0]}}, {'type': 'Feature', 'properties': {'id': 'bca2b3f4-9b7e-41c9-82ab-383d5a8846be', 'info': None, 'row': 630, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.55246930186004, 19.67801734839679, 0]}}, {'type': 'Feature', 'properties': {'id': 'e2567f7f-c43f-4bb1-8834-8688e8730f50', 'info': None, 'row': 630, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.67044371000921, 19.699678585321188, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5a87f7c-fe22-46b8-a199-5c5b4b9dbc82', 'info': None, 'row': 630, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.78844976856018, 19.721262287974938, 0]}}, {'type': 'Feature', 'properties': {'id': '4ca6314d-39e7-48b2-9be6-4d63ef52b4b2', 'info': None, 'row': 630, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.90648740361326, 19.742768344302412, 0]}}, {'type': 'Feature', 'properties': {'id': '76b9390c-be97-495e-b3f7-d0d837ad6ab0', 'info': None, 'row': 630, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-69.02455656302273, 19.76419664660372, 0]}}, {'type': 'Feature', 'properties': {'id': 'f6d79d62-389c-4c07-96f9-2c980dcab788', 'info': None, 'row': 630, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-69.14265720725341, 19.785547089804712, 0]}}, {'type': 'Feature', 'properties': {'id': '9c965cef-efe0-4572-9beb-0d1cdf1d96b4', 'info': None, 'row': 630, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.2607892967875, 19.806819569147216, 0]}}, {'type': 'Feature', 'properties': {'id': 'c2008fe9-eb1d-48b2-af9e-155177238bc9', 'info': None, 'row': 630, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.3789527804341, 19.82801397809549, 0]}}, {'type': 'Feature', 'properties': {'id': '5ce8ebf2-b561-48e1-a3df-c84649233795', 'info': None, 'row': 630, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.49714758741763, 19.849130206967416, 0]}}, {'type': 'Feature', 'properties': {'id': 'bf10063c-ed04-45cc-a01e-87bd0ff32d13', 'info': None, 'row': 630, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.6153736249079, 19.870168142566772, 0]}}, {'type': 'Feature', 'properties': {'id': 'd4f125e1-54e7-458b-92cb-bc6d9982fd67', 'info': None, 'row': 630, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.73363078163759, 19.891127668902786, 0]}}, {'type': 'Feature', 'properties': {'id': '3702147c-653b-48ca-b77a-7da65041f6c0', 'info': None, 'row': 630, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.85191893737753, 19.91200866892591, 0]}}, {'type': 'Feature', 'properties': {'id': '8b339d01-9b9d-4300-b4ea-7c5dca7774e6', 'info': None, 'row': 630, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.97023797727323, 19.932811027074262, 0]}}, {'type': 'Feature', 'properties': {'id': '0c55107c-ef8a-4b5b-adca-5bb9223b0143', 'info': None, 'row': 630, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-70.0885878093554, 19.953534632310355, 0]}}, {'type': 'Feature', 'properties': {'id': 'f77edc76-6cf3-4161-8da7-04a5c1f072ad', 'info': None, 'row': 630, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.20696838290439, 19.974179381226623, 0]}}, {'type': 'Feature', 'properties': {'id': '1e2090e3-1e32-4943-a1e0-986f3b09ae2e', 'info': None, 'row': 630, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.32537970346058, 19.994745184020985, 0]}}, {'type': 'Feature', 'properties': {'id': '55483c25-d73e-40ae-ac24-26457b0e5f0c', 'info': None, 'row': 672, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-68.0966921339027, 19.514967912463757, 0]}}, {'type': 'Feature', 'properties': {'id': '3712a501-800b-4d4b-9a02-5efdbdf13b3f', 'info': None, 'row': 672, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.21448318581196, 19.53694345539267, 0]}}, {'type': 'Feature', 'properties': {'id': 'af0172e4-b49a-4861-8920-0326d89c63a7', 'info': None, 'row': 672, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.33230601690366, 19.55884223274401, 0]}}, {'type': 'Feature', 'properties': {'id': '055eaf0d-25aa-41fc-bcc0-aea42355a57f', 'info': None, 'row': 672, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.45016060954636, 19.580664141274358, 0]}}, {'type': 'Feature', 'properties': {'id': 'af2f9653-9a60-430b-93c9-5f4dda4d9a8e', 'info': None, 'row': 672, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.56804686915841, 19.60240906384816, 0]}}, {'type': 'Feature', 'properties': {'id': 'e0549ebe-50f0-4f04-bbcc-bef0c2d7ace8', 'info': None, 'row': 672, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.68596470201085, 19.62407688397375, 0]}}, {'type': 'Feature', 'properties': {'id': '73e0f7ea-4505-4219-9471-740e66254455', 'info': None, 'row': 672, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.80391404215274, 19.64566749071482, 0]}}, {'type': 'Feature', 'properties': {'id': '48c08986-7932-42e5-ad9b-efc1cc098d5c', 'info': None, 'row': 672, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.92189484936254, 19.667180778214703, 0]}}, {'type': 'Feature', 'properties': {'id': '218eedf6-094a-4bd7-be4a-eafa6a8a81a4', 'info': None, 'row': 672, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-69.03990709377106, 19.688616642813365, 0]}}, {'type': 'Feature', 'properties': {'id': 'b6f74162-3da8-493d-8fab-f5963e70ab9d', 'info': None, 'row': 672, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-69.1579507379212, 19.709974979767647, 0]}}, {'type': 'Feature', 'properties': {'id': 'de1ea99f-1a3d-4257-80c6-a0c68236ad7c', 'info': None, 'row': 672, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.27602572315374, 19.731255680827008, 0]}}, {'type': 'Feature', 'properties': {'id': 'f258267e-7c61-4b70-96f5-06984191e28f', 'info': None, 'row': 672, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.39413196406457, 19.752458633314642, 0]}}, {'type': 'Feature', 'properties': {'id': '444969c0-af2e-4563-84bf-5c2f9b9dc476', 'info': None, 'row': 672, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.51226935217261, 19.773583720877355, 0]}}, {'type': 'Feature', 'properties': {'id': '9521792b-08fb-4fe3-be21-84e7c99bde53', 'info': None, 'row': 672, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.6304377677231, 19.794630825667227, 0]}}, {'type': 'Feature', 'properties': {'id': '805f7c0e-35b3-4511-8f00-220089815054', 'info': None, 'row': 672, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.74863709662542, 19.81559983138223, 0]}}, {'type': 'Feature', 'properties': {'id': '30f42e1d-56da-468c-be37-8416e78ef566', 'info': None, 'row': 672, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.86686724780287, 19.836490626307175, 0]}}, {'type': 'Feature', 'properties': {'id': 'fe35fd5a-95fa-4dcf-aaf9-0b1b0db7bdf6', 'info': None, 'row': 672, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-69.98512816466615, 19.85730310524645, 0]}}, {'type': 'Feature', 'properties': {'id': 'b55813f6-70e6-4ef4-97ea-45ed705ced73', 'info': None, 'row': 672, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-70.10341982295765, 19.878037169020217, 0]}}, {'type': 'Feature', 'properties': {'id': '241f98f0-be92-446f-bbd2-bd7f93fd1922', 'info': None, 'row': 672, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.22174220582806, 19.89869271999741, 0]}}, {'type': 'Feature', 'properties': {'id': '069d406c-0cc9-4374-8fe6-cb23fe9d83cc', 'info': None, 'row': 672, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.34009524440688, 19.91926965526239, 0]}}, {'type': 'Feature', 'properties': {'id': 'd0b07bb2-345b-4dac-ac64-8708da0a99bd', 'info': None, 'row': 714, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-68.11249205379204, 19.43933590604052, 0]}}, {'type': 'Feature', 'properties': {'id': '1b57f47f-3999-4f9b-b5da-6246099cb7d2', 'info': None, 'row': 714, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.23022720204379, 19.46131674908299, 0]}}, {'type': 'Feature', 'properties': {'id': '74f81ae3-1a65-4620-87d0-131371dbbc5c', 'info': None, 'row': 714, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.34799407694676, 19.48322116381661, 0]}}, {'type': 'Feature', 'properties': {'id': '24023165-1b59-4af6-a462-b141d4f60096', 'info': None, 'row': 714, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.46579256303502, 19.505049028802855, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5b3d717-62f2-4d60-b985-2dd7a7f66224', 'info': None, 'row': 714, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.58362254719287, 19.526800223584974, 0]}}, {'type': 'Feature', 'properties': {'id': '8a5b5077-2c66-4d53-9d1d-012caac770ac', 'info': None, 'row': 714, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.70148395385691, 19.548474635130635, 0]}}, {'type': 'Feature', 'properties': {'id': '14d43a7c-5cce-4e80-b0de-169fbf903ce5', 'info': None, 'row': 714, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.81937674401215, 19.570072157511493, 0]}}, {'type': 'Feature', 'properties': {'id': 'e85a7bba-6ed6-4134-a528-28129109c7be', 'info': None, 'row': 714, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.93730089687085, 19.591592688435806, 0]}}, {'type': 'Feature', 'properties': {'id': '8746c1a3-a24c-4a82-9e6f-76a58a4fcdb1', 'info': None, 'row': 714, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-69.05525638730003, 19.61303612508835, 0]}}, {'type': 'Feature', 'properties': {'id': '0c7ce9dd-0502-4944-a411-0a93a7478b51', 'info': None, 'row': 714, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-69.17324316749465, 19.63440236083365, 0]}}, {'type': 'Feature', 'properties': {'id': '784c0848-54fc-407c-9685-2c19376ad8f2', 'info': None, 'row': 714, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.29126115772972, 19.655691283630798, 0]}}, {'type': 'Feature', 'properties': {'id': 'e12cb299-2ad2-4a63-8339-37d4a19b8e5a', 'info': None, 'row': 714, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.40931024802327, 19.676902776443594, 0]}}, {'type': 'Feature', 'properties': {'id': '5af5765f-1570-45a4-8c28-aff1584dd148', 'info': None, 'row': 714, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.52739031002005, 19.698036719468544, 0]}}, {'type': 'Feature', 'properties': {'id': '409d0eb5-9991-42a9-8712-ffe186b76946', 'info': None, 'row': 714, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.64550121623328, 19.71909299362117, 0]}}, {'type': 'Feature', 'properties': {'id': '6244abe1-ea46-4beb-b6e7-72e1b48997aa', 'info': None, 'row': 714, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.76364286186349, 19.740071484396925, 0]}}, {'type': 'Feature', 'properties': {'id': '63df9170-5540-4878-94db-973f56df7e28', 'info': None, 'row': 714, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.88181518267297, 19.760972084943578, 0]}}, {'type': 'Feature', 'properties': {'id': '7b99cc94-70ff-4a0c-b489-2060a2c8e0d4', 'info': None, 'row': 714, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-70.00001816078743, 19.781794696935783, 0]}}, {'type': 'Feature', 'properties': {'id': 'e395a01e-b17f-47e9-b080-327a6a069eaa', 'info': None, 'row': 714, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-70.11825180877518, 19.80253922762323, 0]}}, {'type': 'Feature', 'properties': {'id': 'c90bf1e2-99c1-4a0c-a53d-5163aba260a0', 'info': None, 'row': 714, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.2365161208964, 19.823205581223878, 0]}}, {'type': 'Feature', 'properties': {'id': '34fe9b65-d41e-448b-bb34-3b4d7ebaa03b', 'info': None, 'row': 714, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.35481097775276, 19.843793645943347, 0]}}, {'type': 'Feature', 'properties': {'id': '09cba0ed-928c-454f-8267-f6a98d69ec52', 'info': None, 'row': 756, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-68.12828373842386, 19.363701933610393, 0]}}, {'type': 'Feature', 'properties': {'id': 'cf3e82cb-d01f-446f-a20f-9848e8032f8b', 'info': None, 'row': 756, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.24596352068944, 19.38568811331542, 0]}}, {'type': 'Feature', 'properties': {'id': '4f47d0a9-986a-49b1-afb1-bc8a069a9e52', 'info': None, 'row': 756, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.36367490092798, 19.407598187140852, 0]}}, {'type': 'Feature', 'properties': {'id': '98fbd7a5-b8a7-4279-b7a2-31d848bb77a1', 'info': None, 'row': 756, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.4814176868528, 19.42943201945339, 0]}}, {'type': 'Feature', 'properties': {'id': 'ee88acab-8ced-4325-b5ca-76502c72ecc7', 'info': None, 'row': 756, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.5991918273807, 19.45118950143726, 0]}}, {'type': 'Feature', 'properties': {'id': '805a6d31-f71c-44b8-a0e6-bcf9bb6592c4', 'info': None, 'row': 756, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.71699731279998, 19.472870532235564, 0]}}, {'type': 'Feature', 'properties': {'id': '402aa223-278f-40d9-944d-06926f11a350', 'info': None, 'row': 756, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.83483412331825, 19.49447500937776, 0]}}, {'type': 'Feature', 'properties': {'id': '71c9fa44-3114-4f05-b0d7-e1ee0eb24caa', 'info': None, 'row': 756, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.95270220934361, 19.516002825217008, 0]}}, {'type': 'Feature', 'properties': {'id': '579cbd7b-48e3-497c-8dbe-9a8b02b80a59', 'info': None, 'row': 756, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-69.07060149108092, 19.537453866963197, 0]}}, {'type': 'Feature', 'properties': {'id': 'b130fe66-a9d3-40fa-84cf-157fa2ad93d4', 'info': None, 'row': 756, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-69.18853186829693, 19.55882801855936, 0]}}, {'type': 'Feature', 'properties': {'id': '17d848e9-a30d-41c4-ad8d-ff6488d500bd', 'info': None, 'row': 756, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.30649323368435, 19.58012516316519, 0]}}, {'type': 'Feature', 'properties': {'id': '9f16fb59-4125-4a83-abae-c352fc60c7b8', 'info': None, 'row': 756, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.42448548531274, 19.60134518541854, 0]}}, {'type': 'Feature', 'properties': {'id': '7a8b4066-683e-48ae-bc7f-cc7d902cc772', 'info': None, 'row': 756, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.54250853533725, 19.622487972972447, 0]}}, {'type': 'Feature', 'properties': {'id': '23de23b5-a466-44a0-858f-a3491891292a', 'info': None, 'row': 756, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.66056231353285, 19.64355341707112, 0]}}, {'type': 'Feature', 'properties': {'id': '78ddcb96-2872-41d7-b194-a61bb4774c7c', 'info': None, 'row': 756, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.77864676541624, 19.66454141214849, 0]}}, {'type': 'Feature', 'properties': {'id': '7cbf2d4d-3334-4696-97f2-851698b11f14', 'info': None, 'row': 756, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.89676184575406, 19.685451854618883, 0]}}, {'type': 'Feature', 'properties': {'id': 'e8caa62a-80e2-4657-b50d-ff6a9b31c911', 'info': None, 'row': 756, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-70.01490750918201, 19.706284641188354, 0]}}, {'type': 'Feature', 'properties': {'id': 'b48b59b7-4868-4ac5-9f8a-58fedf4eb3d7', 'info': None, 'row': 756, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-70.13308370050197, 19.727039667154227, 0]}}, {'type': 'Feature', 'properties': {'id': 'e6977251-d00a-47bd-b594-155722ac21e6', 'info': None, 'row': 756, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.25129034800545, 19.747716825283256, 0]}}, {'type': 'Feature', 'properties': {'id': '0f6bea2f-1e0b-49d9-937e-aaca89d8e97f', 'info': None, 'row': 756, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.36952736264496, 19.76831600924331, 0]}}, {'type': 'Feature', 'properties': {'id': 'd6e3a5e8-6051-4330-ab81-592a3b3d7eb9', 'info': None, 'row': 798, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-68.1440754230557, 19.288067961180264, 0]}}, {'type': 'Feature', 'properties': {'id': '452b4e6c-df35-4cfd-b0c2-51da6882d0b4', 'info': None, 'row': 798, 'col': 63}, 'geometry': {'type': 'Point', 'coordinates': [-68.2616998393351, 19.31005947754785, 0]}}, {'type': 'Feature', 'properties': {'id': '38b21aff-23c3-413a-ae0a-6390e2ea6fc7', 'info': None, 'row': 798, 'col': 126}, 'geometry': {'type': 'Point', 'coordinates': [-68.37935572490922, 19.331975210465085, 0]}}, {'type': 'Feature', 'properties': {'id': '74d89813-3444-4e03-925a-ed48f67ec1a3', 'info': None, 'row': 798, 'col': 189}, 'geometry': {'type': 'Point', 'coordinates': [-68.49704281067058, 19.35381501010393, 0]}}, {'type': 'Feature', 'properties': {'id': '9437ae50-eeec-4a6f-a100-5f7186fb4db5', 'info': None, 'row': 798, 'col': 252}, 'geometry': {'type': 'Point', 'coordinates': [-68.61476110756848, 19.37557877928954, 0]}}, {'type': 'Feature', 'properties': {'id': '92c1c1a9-a58e-47a6-9130-b6b02fbffd9c', 'info': None, 'row': 798, 'col': 315}, 'geometry': {'type': 'Point', 'coordinates': [-68.73251067174309, 19.397266429340497, 0]}}, {'type': 'Feature', 'properties': {'id': '26480a9e-74eb-46f6-89e2-65a46082329e', 'info': None, 'row': 798, 'col': 378}, 'geometry': {'type': 'Point', 'coordinates': [-68.85029150262434, 19.418877861244017, 0]}}, {'type': 'Feature', 'properties': {'id': 'c3de40e4-2e46-4fa3-9996-5c618194f184', 'info': None, 'row': 798, 'col': 441}, 'geometry': {'type': 'Point', 'coordinates': [-68.96810352181636, 19.440412961998202, 0]}}, {'type': 'Feature', 'properties': {'id': '9898d68a-6c8a-4d3b-8865-d145fb9771be', 'info': None, 'row': 798, 'col': 504}, 'geometry': {'type': 'Point', 'coordinates': [-69.08594659486177, 19.461871608838035, 0]}}, {'type': 'Feature', 'properties': {'id': 'eecb4a7b-ebb6-418a-a09f-f0bd3b30dd74', 'info': None, 'row': 798, 'col': 567}, 'geometry': {'type': 'Point', 'coordinates': [-69.20382056909922, 19.48325367628507, 0]}}, {'type': 'Feature', 'properties': {'id': '7840e43c-47d8-4f39-9ea4-2dfbc547b9ec', 'info': None, 'row': 798, 'col': 630}, 'geometry': {'type': 'Point', 'coordinates': [-69.32172530963896, 19.50455904269958, 0]}}, {'type': 'Feature', 'properties': {'id': 'b767d3c3-44af-489c-bec7-3123cff91365', 'info': None, 'row': 798, 'col': 693}, 'geometry': {'type': 'Point', 'coordinates': [-69.43966072260221, 19.52578759439349, 0]}}, {'type': 'Feature', 'properties': {'id': 'dec62ab9-9fae-4bf6-87e3-e7bcc3df5d7f', 'info': None, 'row': 798, 'col': 756}, 'geometry': {'type': 'Point', 'coordinates': [-69.55762676065446, 19.54693922647635, 0]}}, {'type': 'Feature', 'properties': {'id': '044b9d3b-8082-4e4a-9b23-933f79bbeddb', 'info': None, 'row': 798, 'col': 819}, 'geometry': {'type': 'Point', 'coordinates': [-69.67562341083243, 19.56801384052108, 0]}}, {'type': 'Feature', 'properties': {'id': '1e4d298a-b8b5-49c6-b948-8dab886e1d8b', 'info': None, 'row': 798, 'col': 882}, 'geometry': {'type': 'Point', 'coordinates': [-69.79365066896905, 19.589011339900058, 0]}}, {'type': 'Feature', 'properties': {'id': '092dd906-1481-42cf-a301-bcbf74ec7f2a', 'info': None, 'row': 798, 'col': 945}, 'geometry': {'type': 'Point', 'coordinates': [-69.91170850883515, 19.609931624294195, 0]}}, {'type': 'Feature', 'properties': {'id': 'dc109c3a-ca2a-4929-801a-d27ba184ca72', 'info': None, 'row': 798, 'col': 1008}, 'geometry': {'type': 'Point', 'coordinates': [-70.02979685757659, 19.63077458544092, 0]}}, {'type': 'Feature', 'properties': {'id': '9aa16f93-6e5e-46fc-8c26-b3e656a25193', 'info': None, 'row': 798, 'col': 1071}, 'geometry': {'type': 'Point', 'coordinates': [-70.14791559222877, 19.651540106685218, 0]}}, {'type': 'Feature', 'properties': {'id': 'b196e15e-d0ba-4717-aa6d-b338339f3433', 'info': None, 'row': 798, 'col': 1134}, 'geometry': {'type': 'Point', 'coordinates': [-70.26606457511456, 19.672228069342633, 0]}}, {'type': 'Feature', 'properties': {'id': '6742ef68-595a-44b6-99c4-5c26a1d9c019', 'info': None, 'row': 798, 'col': 1197}, 'geometry': {'type': 'Point', 'coordinates': [-70.38424374753711, 19.692838372543278, 0]}}]}
array(0)
- digital_number(pol, line, sample)uint16dask.array<chunksize=(1, 838, 1259), meta=np.ndarray>
- comment :
- denoised digital number, resampled at "200m" with rasterio.enums.Resampling.rms
- history :
- digital_number: measurement/s1a-iw-grd-v*-20170907t103020-20170907t103045-018268-01eb76-00*.tiff
Array Chunk Bytes 4.02 MiB 2.01 MiB Shape (2, 838, 1259) (1, 838, 1259) Count 4 Tasks 2 Chunks Type uint16 numpy.ndarray - time(line)timedelta64[ns]17416 days 10:30:20.951289856 .....
- description :
- azimuth times interpolated along line dimension at the middle of range dimension
array([1504780220951289856, 1504780220981091072, 1504780221010892544, 1504780221040693760, 1504780221070494976, 1504780221100296448, 1504780221130097664, 1504780221159899136, 1504780221189700352, 1504780221219501824, 1504780221249303040, 1504780221279104512, 1504780221308905728, 1504780221338706944, 1504780221368508416, 1504780221398309632, 1504780221428111104, 1504780221457912320, 1504780221487713792, 1504780221517515008, 1504780221547316480, 1504780221577117696, 1504780221606918912, 1504780221636720384, 1504780221666521600, 1504780221696323072, 1504780221726124288, 1504780221755925760, 1504780221785726976, 1504780221815528192, 1504780221845329664, 1504780221875130880, 1504780221904932352, 1504780221934733568, 1504780221964535040, 1504780221994336256, 1504780222024137728, 1504780222053938944, 1504780222083740160, 1504780222113541632, 1504780222143342848, 1504780222173144320, 1504780222202945536, 1504780222232747008, 1504780222262548224, 1504780222292349696, 1504780222322150912, 1504780222351952128, 1504780222381753600, 1504780222411554816, 1504780222441356288, 1504780222471157504, 1504780222500958976, 1504780222530760192, 1504780222560561408, 1504780222590362880, 1504780222620164096, 1504780222649965568, 1504780222679766784, 1504780222709568256, ... 1504780244196334336, 1504780244226135552, 1504780244255937024, 1504780244285738240, 1504780244315539712, 1504780244345340928, 1504780244375142400, 1504780244404943616, 1504780244434745088, 1504780244464546304, 1504780244494347776, 1504780244524148992, 1504780244553950464, 1504780244583751680, 1504780244613553152, 1504780244643354368, 1504780244673155840, 1504780244702957056, 1504780244732758272, 1504780244762559744, 1504780244792360960, 1504780244822162432, 1504780244851963648, 1504780244881765120, 1504780244911566336, 1504780244941367808, 1504780244971169024, 1504780245000970496, 1504780245030771712, 1504780245060573184, 1504780245090374400, 1504780245120175616, 1504780245149977088, 1504780245179778304, 1504780245209579776, 1504780245239380992, 1504780245269182464, 1504780245298983680, 1504780245328784896, 1504780245358586368, 1504780245388387584, 1504780245418189056, 1504780245447990272, 1504780245477791744, 1504780245507592960, 1504780245537394176, 1504780245567195648, 1504780245596996864, 1504780245626798336, 1504780245656599552, 1504780245686401024, 1504780245716202240, 1504780245746003456, 1504780245775804928, 1504780245805606144, 1504780245835407616, 1504780245865208832, 1504780245895010304], dtype='timedelta64[ns]')
- sampleSpacing()float64200.0
- units :
- m
- referential :
- ground
array(200.)
- lineSpacing()float64200.0
- units :
- m
array(200.)
- ground_heading(line, sample)float32dask.array<chunksize=(838, 1259), meta=np.ndarray>
- comment :
- at ground level, computed from lon/lat in line direction
Array Chunk Bytes 4.02 MiB 4.02 MiB Shape (838, 1259) (838, 1259) Count 4 Tasks 1 Chunks Type float32 numpy.ndarray - land_mask(line, sample)int8dask.array<chunksize=(838, 1259), meta=np.ndarray>
- history :
- land_mask: cartopy.feature.NaturalEarthFeature land
Array Chunk Bytes 1.01 MiB 1.01 MiB Shape (838, 1259) (838, 1259) Count 3 Tasks 1 Chunks Type int8 numpy.ndarray - altitude(line, sample)float64dask.array<chunksize=(838, 1259), meta=np.ndarray>
- history :
- height: annotation/s1a.xml: - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/line - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/pixel - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/height
Array Chunk Bytes 8.05 MiB 8.05 MiB Shape (838, 1259) (838, 1259) Count 4 Tasks 1 Chunks Type float64 numpy.ndarray - azimuth_time(line, sample)datetime64[ns]dask.array<chunksize=(838, 1259), meta=np.ndarray>
- history :
- azimuthTime: annotation/s1a.xml: - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/line - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/pixel - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/azimuthTime
Array Chunk Bytes 8.05 MiB 8.05 MiB Shape (838, 1259) (838, 1259) Count 4 Tasks 1 Chunks Type datetime64[ns] numpy.ndarray - slant_range_time(line, sample)float64dask.array<chunksize=(838, 1259), meta=np.ndarray>
- history :
- slantRangeTime: annotation/s1a.xml: - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/line - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/pixel - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/slantRangeTime
Array Chunk Bytes 8.05 MiB 8.05 MiB Shape (838, 1259) (838, 1259) Count 4 Tasks 1 Chunks Type float64 numpy.ndarray - incidence(line, sample)float64dask.array<chunksize=(838, 1259), meta=np.ndarray>
- history :
- incidenceAngle: annotation/s1a.xml: - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/line - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/pixel - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/incidenceAngle
Array Chunk Bytes 8.05 MiB 8.05 MiB Shape (838, 1259) (838, 1259) Count 4 Tasks 1 Chunks Type float64 numpy.ndarray - elevation(line, sample)float64dask.array<chunksize=(838, 1259), meta=np.ndarray>
- history :
- elevationAngle: annotation/s1a.xml: - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/line - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/pixel - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/elevationAngle
Array Chunk Bytes 8.05 MiB 8.05 MiB Shape (838, 1259) (838, 1259) Count 4 Tasks 1 Chunks Type float64 numpy.ndarray - longitude(line, sample)float64dask.array<chunksize=(838, 1259), meta=np.ndarray>
- history :
- longitude: annotation/s1a.xml: - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/line - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/pixel - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/longitude
Array Chunk Bytes 8.05 MiB 8.05 MiB Shape (838, 1259) (838, 1259) Count 4 Tasks 1 Chunks Type float64 numpy.ndarray - latitude(line, sample)float64dask.array<chunksize=(838, 1259), meta=np.ndarray>
- history :
- latitude: annotation/s1a.xml: - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/line - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/pixel - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/latitude
Array Chunk Bytes 8.05 MiB 8.05 MiB Shape (838, 1259) (838, 1259) Count 4 Tasks 1 Chunks Type float64 numpy.ndarray - velocity(line)float647.597e+03 7.597e+03 ... 7.598e+03
array([7597.45201368, 7597.45223869, 7597.4524637 , 7597.4526887 , 7597.45291371, 7597.45313872, 7597.45336373, 7597.45358874, 7597.45381375, 7597.45403876, 7597.45426377, 7597.45448878, 7597.45471379, 7597.4549388 , 7597.45516381, 7597.45538882, 7597.45561383, 7597.45583884, 7597.45606385, 7597.45628886, 7597.45651387, 7597.45673888, 7597.45696389, 7597.4571889 , 7597.45741391, 7597.45763892, 7597.45786393, 7597.45808894, 7597.45831395, 7597.45853896, 7597.45876397, 7597.45898898, 7597.45921399, 7597.459439 , 7597.45966401, 7597.45988902, 7597.46011403, 7597.46033904, 7597.46056405, 7597.46078906, 7597.46101407, 7597.46123908, 7597.46146409, 7597.4616891 , 7597.4619141 , 7597.46213912, 7597.46236412, 7597.46258913, 7597.46281414, 7597.46303915, 7597.46326416, 7597.46348917, 7597.46371418, 7597.46393919, 7597.4641642 , 7597.46438921, 7597.46461422, 7597.46483923, 7597.46506424, 7597.46528925, 7597.46551426, 7597.46573927, 7597.46596428, 7597.46618929, 7597.4664143 , 7597.46663931, 7597.46686432, 7597.46708933, 7597.46731434, 7597.46753935, 7597.46776436, 7597.46798937, 7597.46821438, 7597.46843939, 7597.4686644 , 7597.46888941, 7597.46911442, 7597.46933943, 7597.46956444, 7597.46978945, ... 7597.61071709, 7597.61091607, 7597.61111506, 7597.61131404, 7597.61151302, 7597.611712 , 7597.61191099, 7597.61210997, 7597.61230895, 7597.61250793, 7597.61270692, 7597.6129059 , 7597.61310488, 7597.61330386, 7597.61350285, 7597.61370183, 7597.61390081, 7597.61409979, 7597.61429878, 7597.61449776, 7597.61469674, 7597.61489572, 7597.61509471, 7597.61529369, 7597.61549267, 7597.61569165, 7597.61589064, 7597.61608962, 7597.6162886 , 7597.61648758, 7597.61667789, 7597.61686357, 7597.61704926, 7597.61723494, 7597.61742063, 7597.61760631, 7597.617792 , 7597.61797768, 7597.61816337, 7597.61834905, 7597.61853474, 7597.61872042, 7597.61890611, 7597.61909179, 7597.61927748, 7597.61946316, 7597.61964885, 7597.61983453, 7597.62002022, 7597.6202059 , 7597.62039159, 7597.62057727, 7597.62076296, 7597.62094864, 7597.62113433, 7597.62132001, 7597.6215057 , 7597.62169138, 7597.62187706, 7597.62206275, 7597.62224843, 7597.62243412, 7597.6226198 , 7597.62280549, 7597.62299117, 7597.62317686, 7597.62336254, 7597.62354823, 7597.62373391, 7597.6239196 , 7597.62410528, 7597.62429097, 7597.62447665, 7597.62466234, 7597.62484802, 7597.62503371, 7597.62521939, 7597.62540508])
- range_ground_spacing(sample)float6410.0 10.0 10.0 ... 10.0 10.0 10.0
array([10., 10., 10., ..., 10., 10., 10.])
- sigma0_raw(pol, line, sample)float64dask.array<chunksize=(1, 838, 1259), meta=np.ndarray>
- history :
- sigma0_raw: sigma0_lut: annotation/calibration/calibration.xml: - //calibration/calibrationVectorList/calibrationVector/line - //calibration/calibrationVectorList/calibrationVector[1]/pixel - //calibration/calibrationVectorList/calibrationVector/sigmaNought
- references :
- https://sentinel.esa.int/web/sentinel/radiometric-calibration-of-level-1-products
Array Chunk Bytes 16.10 MiB 8.05 MiB Shape (2, 838, 1259) (1, 838, 1259) Count 28 Tasks 2 Chunks Type float64 numpy.ndarray - nesz(pol, line, sample)float64dask.array<chunksize=(1, 838, 1259), meta=np.ndarray>
- history :
- nesz: noise_lut: noise_lut_azi: annotation/calibration/noise.xml: - /noise/noiseAzimuthVectorList/noiseAzimuthVector/line - /noise/noiseAzimuthVectorList/noiseAzimuthVector/firstAzimuthLine - /noise/noiseAzimuthVectorList/noiseAzimuthVector/lastAzimuthLine - /noise/noiseAzimuthVectorList/noiseAzimuthVector/firstRangeSample - /noise/noiseAzimuthVectorList/noiseAzimuthVector/lastRangeSample - /noise/noiseAzimuthVectorList/noiseAzimuthVector/noiseAzimuthLut - /noise/noiseAzimuthVectorList/noiseAzimuthVector/swath noise_lut_range: annotation/calibration/noise.xml: - /noise/noiseRangeVectorList/noiseRangeVector/line | /noise/noiseVectorList/noiseVector/line - /noise/noiseRangeVectorList/noiseRangeVector/pixel | /noise/noiseVectorList/noiseVector/pixel - /noise/noiseRangeVectorList/noiseRangeVector/noiseRangeLut | /noise/noiseVectorList/noiseVector/noiseLut sigma0_lut: annotation/calibration/calibration.xml: - //calibration/calibrationVectorList/calibrationVector/line - //calibration/calibrationVectorList/calibrationVector[1]/pixel - //calibration/calibrationVectorList/calibrationVector/sigmaNought
Array Chunk Bytes 16.10 MiB 8.05 MiB Shape (2, 838, 1259) (1, 838, 1259) Count 39 Tasks 2 Chunks Type float64 numpy.ndarray - gamma0_raw(pol, line, sample)float64dask.array<chunksize=(1, 838, 1259), meta=np.ndarray>
- history :
- gamma0_raw: gamma0_lut: annotation/calibration/calibration.xml: - //calibration/calibrationVectorList/calibrationVector/line - //calibration/calibrationVectorList/calibrationVector[1]/pixel - //calibration/calibrationVectorList/calibrationVector/gamma
- references :
- https://sentinel.esa.int/web/sentinel/radiometric-calibration-of-level-1-products
Array Chunk Bytes 16.10 MiB 8.05 MiB Shape (2, 838, 1259) (1, 838, 1259) Count 28 Tasks 2 Chunks Type float64 numpy.ndarray - negz(pol, line, sample)float64dask.array<chunksize=(1, 838, 1259), meta=np.ndarray>
- history :
- negz: gamma0_lut: annotation/calibration/calibration.xml: - //calibration/calibrationVectorList/calibrationVector/line - //calibration/calibrationVectorList/calibrationVector[1]/pixel - //calibration/calibrationVectorList/calibrationVector/gamma noise_lut: noise_lut_azi: annotation/calibration/noise.xml: - /noise/noiseAzimuthVectorList/noiseAzimuthVector/line - /noise/noiseAzimuthVectorList/noiseAzimuthVector/firstAzimuthLine - /noise/noiseAzimuthVectorList/noiseAzimuthVector/lastAzimuthLine - /noise/noiseAzimuthVectorList/noiseAzimuthVector/firstRangeSample - /noise/noiseAzimuthVectorList/noiseAzimuthVector/lastRangeSample - /noise/noiseAzimuthVectorList/noiseAzimuthVector/noiseAzimuthLut - /noise/noiseAzimuthVectorList/noiseAzimuthVector/swath noise_lut_range: annotation/calibration/noise.xml: - /noise/noiseRangeVectorList/noiseRangeVector/line | /noise/noiseVectorList/noiseVector/line - /noise/noiseRangeVectorList/noiseRangeVector/pixel | /noise/noiseVectorList/noiseVector/pixel - /noise/noiseRangeVectorList/noiseRangeVector/noiseRangeLut | /noise/noiseVectorList/noiseVector/noiseLut
Array Chunk Bytes 16.10 MiB 8.05 MiB Shape (2, 838, 1259) (1, 838, 1259) Count 39 Tasks 2 Chunks Type float64 numpy.ndarray - sigma0(pol, line, sample)float64dask.array<chunksize=(1, 838, 1259), meta=np.ndarray>
- history :
- sigma0: nesz: noise_lut: noise_lut_azi: annotation/calibration/noise.xml: - /noise/noiseAzimuthVectorList/noiseAzimuthVector/line - /noise/noiseAzimuthVectorList/noiseAzimuthVector/firstAzimuthLine - /noise/noiseAzimuthVectorList/noiseAzimuthVector/lastAzimuthLine - /noise/noiseAzimuthVectorList/noiseAzimuthVector/firstRangeSample - /noise/noiseAzimuthVectorList/noiseAzimuthVector/lastRangeSample - /noise/noiseAzimuthVectorList/noiseAzimuthVector/noiseAzimuthLut - /noise/noiseAzimuthVectorList/noiseAzimuthVector/swath noise_lut_range: annotation/calibration/noise.xml: - /noise/noiseRangeVectorList/noiseRangeVector/line | /noise/noiseVectorList/noiseVector/line - /noise/noiseRangeVectorList/noiseRangeVector/pixel | /noise/noiseVectorList/noiseVector/pixel - /noise/noiseRangeVectorList/noiseRangeVector/noiseRangeLut | /noise/noiseVectorList/noiseVector/noiseLut sigma0_lut: annotation/calibration/calibration.xml: - //calibration/calibrationVectorList/calibrationVector/line - //calibration/calibrationVectorList/calibrationVector[1]/pixel - //calibration/calibrationVectorList/calibrationVector/sigmaNought sigma0_raw: sigma0_lut: annotation/calibration/calibration.xml: - //calibration/calibrationVectorList/calibrationVector/line - //calibration/calibrationVectorList/calibrationVector[1]/pixel - //calibration/calibrationVectorList/calibrationVector/sigmaNought
- comment :
- not clipped, some values can be <0
Array Chunk Bytes 16.10 MiB 8.05 MiB Shape (2, 838, 1259) (1, 838, 1259) Count 55 Tasks 2 Chunks Type float64 numpy.ndarray - gamma0(pol, line, sample)float64dask.array<chunksize=(1, 838, 1259), meta=np.ndarray>
- history :
- gamma0: gamma0_raw: gamma0_lut: annotation/calibration/calibration.xml: - //calibration/calibrationVectorList/calibrationVector/line - //calibration/calibrationVectorList/calibrationVector[1]/pixel - //calibration/calibrationVectorList/calibrationVector/gamma negz: gamma0_lut: annotation/calibration/calibration.xml: - //calibration/calibrationVectorList/calibrationVector/line - //calibration/calibrationVectorList/calibrationVector[1]/pixel - //calibration/calibrationVectorList/calibrationVector/gamma noise_lut: noise_lut_azi: annotation/calibration/noise.xml: - /noise/noiseAzimuthVectorList/noiseAzimuthVector/line - /noise/noiseAzimuthVectorList/noiseAzimuthVector/firstAzimuthLine - /noise/noiseAzimuthVectorList/noiseAzimuthVector/lastAzimuthLine - /noise/noiseAzimuthVectorList/noiseAzimuthVector/firstRangeSample - /noise/noiseAzimuthVectorList/noiseAzimuthVector/lastRangeSample - /noise/noiseAzimuthVectorList/noiseAzimuthVector/noiseAzimuthLut - /noise/noiseAzimuthVectorList/noiseAzimuthVector/swath noise_lut_range: annotation/calibration/noise.xml: - /noise/noiseRangeVectorList/noiseRangeVector/line | /noise/noiseVectorList/noiseVector/line - /noise/noiseRangeVectorList/noiseRangeVector/pixel | /noise/noiseVectorList/noiseVector/pixel - /noise/noiseRangeVectorList/noiseRangeVector/noiseRangeLut | /noise/noiseVectorList/noiseVector/noiseLut
- comment :
- not clipped, some values can be <0
Array Chunk Bytes 16.10 MiB 8.05 MiB Shape (2, 838, 1259) (1, 838, 1259) Count 55 Tasks 2 Chunks Type float64 numpy.ndarray
- name :
- SENTINEL1_DS:/tmp/S1A_IW_GRDH_1SDV_20170907T103020_20170907T103045_018268_01EB76_Z010.SAFE:IW
- short_name :
- SENTINEL1_DS:S1A_IW_GRDH_1SDV_20170907T103020_20170907T103045_018268_01EB76_Z010.SAFE:IW
- product :
- GRDH
- safe :
- S1A_IW_GRDH_1SDV_20170907T103020_20170907T103045_018268_01EB76_Z010.SAFE
- swath :
- IW
- multidataset :
- False
- ipf :
- 2.84
- platform :
- SENTINEL-1A
- pols :
- VV VH
- start_date :
- 2017-09-07 10:30:20.936409
- stop_date :
- 2017-09-07 10:30:45.935264
- footprint :
- POLYGON ((-67.84221143971432 20.72564283093837, -70.22162571215458 21.14758369556577, -70.51434171237564 19.64044158236074, -68.15836401927538 19.21519321274318, -67.84221143971432 20.72564283093837))
- coverage :
- 170km * 251km (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 :
- -167.7668824808032