Download this notebook from github.
what is specific to TOPS SLC products?
Contrarily to GRD products SLC ones preserve the signal described in time per burst.
It means that a portion of SAR image can be seen up to 4 times by the sensor.
The different bursts are overlapping, and the subswaths are also overlapping.
SLC products also contains the phase information, and digital number in .tiff products are complex values.
How to read a TOPS SLC product with xsar ?
the TOPS (IW and EW) SLC products are distributed by ESA in .SAFE directories containing measurement and annotations per subswath and polarizations.
to open a multi dataset
[1]:
import xsar
import geoviews as gv
import holoviews as hv
import geoviews.feature as gf
hv.extension('bokeh')
path = xsar.get_test_file('S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE')
sub_swath_IDs = xsar.Sentinel1Meta(path).subdatasets
sub_swath_IDs
[1]:
geometry | |
---|---|
SENTINEL1_DS:/tmp/S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW1 | POLYGON ((-67.47144 22.48036, -68.29402 22.627... |
SENTINEL1_DS:/tmp/S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW2 | POLYGON ((-68.28370 22.56667, -69.14890 22.716... |
SENTINEL1_DS:/tmp/S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW3 | POLYGON ((-69.13847 22.65528, -69.90347 22.784... |
[2]:
multids = xsar.Sentinel1Meta(path)
#print(dir(multids.subdatasets))
for subswath in multids.subdatasets.index:
print(subswath)
onesubswath = xsar.Sentinel1Dataset(subswath)
print(onesubswath.get_bursts_polygons()['geometry'])
SENTINEL1_DS:/tmp/S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW1
burst
0 POLYGON ((-67.51030 22.31627, -68.32788 22.462...
1 POLYGON ((-67.54546 22.15003, -68.36202 22.296...
2 POLYGON ((-67.58064 21.98355, -68.39618 22.130...
3 POLYGON ((-67.61584 21.81681, -68.43038 21.963...
4 POLYGON ((-67.65099 21.65019, -68.46453 21.797...
5 POLYGON ((-67.68614 21.48344, -68.49869 21.630...
6 POLYGON ((-67.71973 21.31678, -68.53187 21.463...
7 POLYGON ((-67.75480 21.15015, -68.56597 21.297...
8 POLYGON ((-67.78979 20.98376, -68.59997 21.131...
9 POLYGON ((-67.82474 20.81746, -68.63397 20.964...
Name: geometry, dtype: geometry
SENTINEL1_DS:/tmp/S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW2
burst
0 POLYGON ((-68.32084 22.40319, -69.18158 22.552...
1 POLYGON ((-68.35502 22.23689, -69.21468 22.386...
2 POLYGON ((-68.38922 22.07036, -69.24782 22.220...
3 POLYGON ((-68.42341 21.90382, -69.28095 22.053...
4 POLYGON ((-68.45756 21.73740, -69.31405 21.887...
5 POLYGON ((-68.49178 21.57049, -69.34724 21.720...
6 POLYGON ((-68.52465 21.40395, -69.37954 21.554...
7 POLYGON ((-68.55877 21.23740, -69.41263 21.388...
8 POLYGON ((-68.59282 21.07108, -69.44568 21.221...
9 POLYGON ((-68.62691 20.90451, -69.47877 21.055...
Name: geometry, dtype: geometry
SENTINEL1_DS:/tmp/S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW3
burst
0 POLYGON ((-69.17395 22.49225, -69.93513 22.620...
1 POLYGON ((-69.20712 22.32585, -69.96735 22.454...
2 POLYGON ((-69.24028 22.15942, -69.99957 22.288...
3 POLYGON ((-69.27343 21.99300, -70.03178 22.121...
4 POLYGON ((-69.30655 21.82670, -70.06397 21.955...
5 POLYGON ((-69.33978 21.65979, -70.09628 21.788...
6 POLYGON ((-69.37186 21.49329, -70.12790 21.622...
7 POLYGON ((-69.40496 21.32697, -70.16009 21.456...
8 POLYGON ((-69.43808 21.16053, -70.19231 21.290...
9 POLYGON ((-69.47121 20.99397, -70.22456 21.123...
Name: geometry, dtype: geometry
[3]:
#gv.tile_sources.Wikipedia*gv.Polygons(multids.bursts(only_valid_location=True)['geometry']).opts(width=800,height=450,alpha=0.5)
import pandas as pd
tmp = pd.concat([xsar.Sentinel1Dataset(onesubswath).get_bursts_polygons(only_valid_location=True) for onesubswath in multids.subdatasets.index])
gv.tile_sources.Wikipedia*gv.Polygons(tmp['geometry']).opts(width=800,height=450,alpha=0.5)
[3]:
[4]:
tmp2 = pd.concat([xsar.Sentinel1Dataset(onesubswath).get_bursts_polygons(only_valid_location=False) for onesubswath in multids.subdatasets.index])
gv.tile_sources.Wikipedia*gv.Polygons(tmp2['geometry']).opts(width=800,height=450,alpha=0.2)*gv.Polygons(tmp['geometry']).opts(width=800,height=450,alpha=0.2)
[4]:
to open a specific subswath
to open a subswath one can use xsar.Sentinel1Meta class to get an overview of the meta-data.
[5]:
s1meta = xsar.sentinel1_meta.Sentinel1Meta("SENTINEL1_DS:%s:IW3" % path)
s1meta
[5]:
<Sentinel1Meta single object>
to manipulate the data, the user have to open Sentinel1Dataset
instance.
[6]:
s1ds = xsar.sentinel1_dataset.Sentinel1Dataset("SENTINEL1_DS:%s:IW3" % path)
s1ds
[6]:
full dataset coverage
SENTINEL1_DS:S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW3 | |||||
---|---|---|---|---|---|
|
content of the Sentinel1Dataset python object
a datatree (xarray)
a dataset (xarray)
a s1meta object (class instance)
open the datatree
[7]:
s1ds.datatree
[7]:
<xarray.DatasetView> Dimensions: () Data variables: *empty* Attributes: (12/17) name: SENTINEL1_DS:/tmp/S1A_IW_SLC__1SDV_20170907T102951_201... short_name: SENTINEL1_DS:S1A_IW_SLC__1SDV_20170907T102951_20170907... product: SLC safe: S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_01826... swath: IW multidataset: False ... ... footprint: POLYGON ((-69.13847173718773 22.65528072350044, -69.90... coverage: 187km * 79km (line * sample ) pixel_line_m: <xarray.DataArray 'azimuthPixelSpacing' ()>\narray(13.... pixel_sample_m: <xarray.DataArray 'groundRangePixelSpacing' ()>\narray... orbit_pass: Descending platform_heading: -167.7216262988962
- pol: 2
- line: 15070
- sample: 23768
- pol(pol)object'VV' 'VH'
array(['VV', 'VH'], dtype=object)
- line(line)int640 1 2 3 ... 15066 15067 15068 15069
array([ 0, 1, 2, ..., 15067, 15068, 15069])
- sample(sample)int640 1 2 3 ... 23764 23765 23766 23767
array([ 0, 1, 2, ..., 23765, 23766, 23767])
- digital_number(pol, line, sample)complex64dask.array<chunksize=(1, 5000, 5000), meta=np.ndarray>
- comment :
- denoised digital number, read at full resolution
- history :
- digital_number: measurement/s1a-iw3-slc-v*-20170907t102953-20170907t103021-018268-01eb76-00*.tiff
Array Chunk Bytes 5.34 GiB 190.73 MiB Shape (2, 15070, 23768) (1, 5000, 5000) Count 82 Tasks 40 Chunks Type complex64 numpy.ndarray
<xarray.DatasetView> Dimensions: (pol: 2, line: 15070, sample: 23768) Coordinates: * pol (pol) object 'VV' 'VH' * line (line) int64 0 1 2 3 4 5 ... 15065 15066 15067 15068 15069 * sample (sample) int64 0 1 2 3 4 5 ... 23763 23764 23765 23766 23767 Data variables: digital_number (pol, line, sample) complex64 dask.array<chunksize=(1, 5000, 5000), meta=np.ndarray>
measurement- line: 11
- sample: 21
- line(line)int640 1507 3014 ... 12056 13563 15070
array([ 0, 1507, 3014, 4521, 6028, 7535, 9042, 10549, 12056, 13563, 15070])
- sample(sample)int640 1189 2378 ... 21402 22591 23767
array([ 0, 1189, 2378, 3567, 4756, 5945, 7134, 8323, 9512, 10701, 11890, 13079, 14268, 15457, 16646, 17835, 19024, 20213, 21402, 22591, 23767])
- longitude(line, sample)float64-69.14 -69.18 ... -70.19 -70.23
- history :
- longitude: annotation/s1a.xml: - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/line - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/pixel - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/longitude
array([[-69.13847174, -69.17820821, -69.21776957, -69.25715978, -69.29638266, -69.33544193, -69.37434114, -69.41308376, -69.45167315, -69.49011253, -69.52840506, -69.56655376, -69.6045616 , -69.64243142, -69.68016599, -69.71776802, -69.7552401 , -69.79258478, -69.8298045 , -69.86690167, -69.90347496], [-69.17163005, -69.21131648, -69.25082801, -69.2901686 , -69.32934206, -69.36835209, -69.40720227, -69.44589604, -69.48443675, -69.52282764, -69.56107184, -69.59917239, -69.63713224, -69.67495423, -69.71264114, -69.75019565, -69.78762038, -69.82491784, -69.8620905 , -69.89914074, -69.93566775], [-69.20477895, -69.24441581, -69.28387798, -69.3231694 , -69.3622939 , -69.40125516, -69.44005675, -69.47870212, -69.51719461, -69.55553746, -69.59373378, -69.63178663, -69.66969893, -69.70747354, -69.74511323, -69.78262067, -69.81999847, -69.85724915, -69.89437518, -69.93137893, -69.9678601 ], [-69.23796785, -69.27755553, -69.31696873, -69.35621138, -69.39528729, -69.43420017, -69.47295355, -69.5115509 , ... -69.98205829, -70.01908127, -70.0559803 , -70.09275772, -70.1290157 ], [-69.40368959, -69.44303841, -69.48221373, -69.52121948, -69.56005944, -69.59873728, -69.63725653, -69.67562062, -69.71383286, -69.75189647, -69.78981455, -69.82759012, -69.86522609, -69.90272529, -69.94009047, -69.97732429, -70.01442933, -70.05140811, -70.08826305, -70.12499654, -70.16121117], [-69.43680679, -69.47610921, -69.51523832, -69.55419805, -69.59299217, -69.63162434, -69.6700981 , -69.70841686, -69.74658395, -69.78460257, -69.82247582, -69.8602067 , -69.89779814, -69.93525296, -69.9725739 , -70.00976362, -70.04682471, -70.08375966, -70.12057092, -70.15726085, -70.19343252], [-69.4699421 , -69.50919853, -69.54828184, -69.58719595, -69.62594464, -69.66453155, -69.70296022, -69.74123408, -69.77935641, -69.81733043, -69.85515924, -69.89284584, -69.93039314, -69.96780397, -70.00508107, -70.04222708, -70.0792446 , -70.11613612, -70.15290407, -70.18955082, -70.22567991]])
- latitude(line, sample)float6422.66 22.66 22.67 ... 21.11 21.12
- history :
- latitude: annotation/s1a.xml: - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/line - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/pixel - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/latitude
array([[22.65528072, 22.66206726, 22.66881345, 22.67552011, 22.68218802, 22.68881793, 22.69541058, 22.70196669, 22.70848692, 22.71497196, 22.72142244, 22.72783899, 22.7342222 , 22.74057267, 22.74689096, 22.75317763, 22.75943321, 22.76565821, 22.77185314, 22.7780185 , 22.78408782], [22.48899689, 22.4957899 , 22.50254262, 22.50925586, 22.5159304 , 22.522567 , 22.52916639, 22.53572928, 22.54225636, 22.54874829, 22.55520572, 22.56162926, 22.56801952, 22.57437708, 22.58070251, 22.58699637, 22.59325919, 22.59949148, 22.60569375, 22.61186649, 22.61794315], [22.3227079 , 22.3295074 , 22.33626666, 22.3429865 , 22.34966769, 22.35631099, 22.36291714, 22.36948684, 22.37602077, 22.38251961, 22.38898399, 22.39541454, 22.40181185, 22.40817652, 22.41450911, 22.42081018, 22.42708024, 22.43331983, 22.43952945, 22.44570958, 22.45179361], [22.15616773, 22.16297376, 22.16973961, 22.17646608, 22.18315396, 22.18980401, 22.19641695, 22.20299349, 22.20953432, 22.21604011, 22.22251148, 22.22894908, 22.23535349, 22.2417253 , 22.24806509, 22.25437339, 22.26065074, 22.26689767, 22.27311467, 22.27930224, 22.28539366], ... [21.49020981, 21.49704216, 21.50383454, 21.51058775, 21.51730257, 21.52397977, 21.53062006, 21.53722416, 21.54379275, 21.55032648, 21.55682601, 21.56329195, 21.5697249 , 21.57612544, 21.58249415, 21.58883156, 21.59513822, 21.60141464, 21.60766132, 21.61387874, 21.61999988], [21.32389656, 21.33073555, 21.33753461, 21.34429455, 21.35101617, 21.3577002 , 21.36434738, 21.37095841, 21.37753398, 21.38407475, 21.39058136, 21.39705443, 21.40349456, 21.40990233, 21.41627831, 21.42262304, 21.42893707, 21.43522089, 21.44147503, 21.44769996, 21.45382857], [21.15745466, 21.1643003 , 21.17110607, 21.17787277, 21.18460119, 21.19129208, 21.19794617, 21.20456416, 21.21114674, 21.21769456, 21.22420827, 21.23068849, 21.23713582, 21.24355083, 21.2499341 , 21.25628618, 21.26260759, 21.26889884, 21.27516046, 21.28139291, 21.287529 ], [20.99088492, 20.99773725, 21.00454975, 21.01132324, 21.0180585 , 21.02475627, 21.03141729, 21.03804227, 21.04463188, 21.05118678, 21.05770762, 21.06419502, 21.07064957, 21.07707185, 21.08346244, 21.08982188, 21.09615069, 21.10244941, 21.10871852, 21.11495852, 21.12110211]])
- height(line, sample)float640.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- history :
- height: annotation/s1a.xml: - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/line - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/pixel - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/height
array([[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]])
- azimuthTime(line, sample)datetime64[ns]2017-09-07T10:29:53.785185 ... 2...
- history :
- azimuthTime: annotation/s1a.xml: - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/line - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/pixel - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/azimuthTime
array([['2017-09-07T10:29:53.785185000', '2017-09-07T10:29:53.785194000', '2017-09-07T10:29:53.785204000', '2017-09-07T10:29:53.785213000', '2017-09-07T10:29:53.785222000', '2017-09-07T10:29:53.785231000', '2017-09-07T10:29:53.785241000', '2017-09-07T10:29:53.785250000', '2017-09-07T10:29:53.785259000', '2017-09-07T10:29:53.785268000', '2017-09-07T10:29:53.785278000', '2017-09-07T10:29:53.785287000', '2017-09-07T10:29:53.785296000', '2017-09-07T10:29:53.785305000', '2017-09-07T10:29:53.785315000', '2017-09-07T10:29:53.785324000', '2017-09-07T10:29:53.785333000', '2017-09-07T10:29:53.785342000', '2017-09-07T10:29:53.785352000', '2017-09-07T10:29:53.785361000', '2017-09-07T10:29:53.785370000'], ['2017-09-07T10:29:56.541686000', '2017-09-07T10:29:56.541695000', '2017-09-07T10:29:56.541705000', '2017-09-07T10:29:56.541714000', '2017-09-07T10:29:56.541723000', '2017-09-07T10:29:56.541732000', '2017-09-07T10:29:56.541742000', '2017-09-07T10:29:56.541751000', '2017-09-07T10:29:56.541760000', '2017-09-07T10:29:56.541769000', '2017-09-07T10:29:56.541779000', '2017-09-07T10:29:56.541788000', '2017-09-07T10:29:56.541797000', '2017-09-07T10:29:56.541806000', '2017-09-07T10:29:56.541816000', '2017-09-07T10:29:56.541825000', '2017-09-07T10:29:56.541834000', '2017-09-07T10:29:56.541843000', ... '2017-09-07T10:30:18.612231000', '2017-09-07T10:30:18.612240000', '2017-09-07T10:30:18.612250000', '2017-09-07T10:30:18.612259000', '2017-09-07T10:30:18.612268000', '2017-09-07T10:30:18.612277000', '2017-09-07T10:30:18.612287000', '2017-09-07T10:30:18.612296000', '2017-09-07T10:30:18.612305000', '2017-09-07T10:30:18.612314000', '2017-09-07T10:30:18.612324000', '2017-09-07T10:30:18.612333000', '2017-09-07T10:30:18.612342000', '2017-09-07T10:30:18.612351000', '2017-09-07T10:30:18.612361000', '2017-09-07T10:30:18.612370000', '2017-09-07T10:30:18.612379000'], ['2017-09-07T10:30:21.372806000', '2017-09-07T10:30:21.372816000', '2017-09-07T10:30:21.372825000', '2017-09-07T10:30:21.372834000', '2017-09-07T10:30:21.372843000', '2017-09-07T10:30:21.372853000', '2017-09-07T10:30:21.372862000', '2017-09-07T10:30:21.372871000', '2017-09-07T10:30:21.372880000', '2017-09-07T10:30:21.372889000', '2017-09-07T10:30:21.372899000', '2017-09-07T10:30:21.372908000', '2017-09-07T10:30:21.372917000', '2017-09-07T10:30:21.372926000', '2017-09-07T10:30:21.372936000', '2017-09-07T10:30:21.372945000', '2017-09-07T10:30:21.372954000', '2017-09-07T10:30:21.372963000', '2017-09-07T10:30:21.372973000', '2017-09-07T10:30:21.372982000', '2017-09-07T10:30:21.372991000']], dtype='datetime64[ns]')
- slantRangeTime(line, sample)float640.006012 0.00603 ... 0.006381
- history :
- slantRangeTime: annotation/s1a.xml: - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/line - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/pixel - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/slantRangeTime
array([[0.00601199, 0.00603047, 0.00604895, 0.00606743, 0.00608591, 0.00610438, 0.00612286, 0.00614134, 0.00615982, 0.0061783 , 0.00619678, 0.00621526, 0.00623373, 0.00625221, 0.00627069, 0.00628917, 0.00630765, 0.00632613, 0.0063446 , 0.00636308, 0.00638136], [0.00601199, 0.00603047, 0.00604895, 0.00606743, 0.00608591, 0.00610438, 0.00612286, 0.00614134, 0.00615982, 0.0061783 , 0.00619678, 0.00621526, 0.00623373, 0.00625221, 0.00627069, 0.00628917, 0.00630765, 0.00632613, 0.0063446 , 0.00636308, 0.00638136], [0.00601199, 0.00603047, 0.00604895, 0.00606743, 0.00608591, 0.00610438, 0.00612286, 0.00614134, 0.00615982, 0.0061783 , 0.00619678, 0.00621526, 0.00623373, 0.00625221, 0.00627069, 0.00628917, 0.00630765, 0.00632613, 0.0063446 , 0.00636308, 0.00638136], [0.00601199, 0.00603047, 0.00604895, 0.00606743, 0.00608591, 0.00610438, 0.00612286, 0.00614134, 0.00615982, 0.0061783 , 0.00619678, 0.00621526, 0.00623373, 0.00625221, 0.00627069, 0.00628917, 0.00630765, 0.00632613, 0.0063446 , 0.00636308, 0.00638136], ... [0.00601199, 0.00603047, 0.00604895, 0.00606743, 0.00608591, 0.00610438, 0.00612286, 0.00614134, 0.00615982, 0.0061783 , 0.00619678, 0.00621526, 0.00623373, 0.00625221, 0.00627069, 0.00628917, 0.00630765, 0.00632613, 0.0063446 , 0.00636308, 0.00638136], [0.00601199, 0.00603047, 0.00604895, 0.00606743, 0.00608591, 0.00610438, 0.00612286, 0.00614134, 0.00615982, 0.0061783 , 0.00619678, 0.00621526, 0.00623373, 0.00625221, 0.00627069, 0.00628917, 0.00630765, 0.00632613, 0.0063446 , 0.00636308, 0.00638136], [0.00601199, 0.00603047, 0.00604895, 0.00606743, 0.00608591, 0.00610438, 0.00612286, 0.00614134, 0.00615982, 0.0061783 , 0.00619678, 0.00621526, 0.00623373, 0.00625221, 0.00627069, 0.00628917, 0.00630765, 0.00632613, 0.0063446 , 0.00636308, 0.00638136], [0.00601199, 0.00603047, 0.00604895, 0.00606743, 0.00608591, 0.00610438, 0.00612286, 0.00614134, 0.00615982, 0.0061783 , 0.00619678, 0.00621526, 0.00623373, 0.00625221, 0.00627069, 0.00628917, 0.00630765, 0.00632613, 0.0063446 , 0.00636308, 0.00638136]])
- incidenceAngle(line, sample)float6441.7 41.93 42.16 ... 45.79 45.98
- history :
- incidenceAngle: annotation/s1a.xml: - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/line - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/pixel - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/incidenceAngle
array([[41.69525248, 41.92897975, 42.16034628, 42.38939915, 42.61618398, 42.84074494, 43.06312488, 43.28336533, 43.50150657, 43.7175877 , 43.93164668, 44.14372037, 44.35384457, 44.56205407, 44.76838271, 44.97286337, 45.17552805, 45.37640788, 45.57553317, 45.77293342, 45.96650668], [41.69680236, 41.93051851, 42.16187413, 42.39091629, 42.6176906 , 42.84224125, 43.06461105, 43.28484155, 43.50297301, 43.71904453, 43.93309406, 44.14515846, 44.35527353, 44.56347405, 44.76979385, 44.97426582, 45.17692195, 45.37779336, 45.57691036, 45.77430244, 45.96786776], [41.69832649, 41.93203172, 42.16337662, 42.39240828, 42.61917227, 42.84371279, 43.06607265, 43.28629337, 43.50441523, 43.72047732, 43.93451758, 44.14657287, 44.35667897, 44.56487068, 44.7711818 , 44.97564524, 45.17829297, 45.37915612, 45.57826498, 45.77564905, 45.96920655], [41.69982692, 41.93352142, 42.1648558 , 42.39387712, 42.62063098, 42.84516155, 43.06751163, 43.28772275, 43.50583518, 43.721888 , 43.93591916, 44.14796548, 44.35806277, 44.56624582, 44.77254842, 44.97700347, 45.17964295, 45.38049798, 45.57959884, 45.77697504, 45.97052487], ... [41.70556485, 41.93921854, 42.17051288, 42.39949492, 42.62621021, 42.85070291, 43.07301581, 43.29319041, 43.51126695, 43.7272845 , 43.94128099, 44.15329323, 44.36335701, 44.57150709, 44.77777727, 44.98220041, 45.18480848, 45.38563259, 45.58470302, 45.78204925, 45.97556989], [41.70693187, 41.94057589, 42.17186075, 42.40083347, 42.62753963, 42.85202336, 43.07432745, 43.2944934 , 43.51256144, 43.72857064, 43.94255891, 44.15456308, 44.36461892, 44.57276118, 44.77902368, 44.98343925, 45.18603989, 45.38685667, 45.58591989, 45.78325902, 45.97677274], [41.70827336, 41.94190792, 42.17318349, 42.40214711, 42.62884433, 42.85331928, 43.07561475, 43.29577222, 43.51383193, 43.72983295, 43.94381319, 44.15580945, 44.36585751, 44.57399213, 44.7802471 , 44.98465528, 45.18724863, 45.38805824, 45.5871144 , 45.78444657, 45.97795352], [41.70958915, 41.94321445, 42.17448094, 42.40343565, 42.63012411, 42.85459047, 43.0768775 , 43.29702669, 43.51507826, 43.73107128, 43.94504365, 44.15703217, 44.36707263, 44.57519977, 44.78144738, 44.98584831, 45.18843453, 45.38923713, 45.58828638, 45.78561175, 45.97911207]])
- elevationAngle(line, sample)float6436.83 37.03 37.22 ... 40.24 40.4
- history :
- elevationAngle: annotation/s1a.xml: - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/line - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/pixel - /product/geolocationGrid/geolocationGridPointList/geolocationGridPoint/elevationAngle
array([[36.83386185, 37.03026707, 37.22447963, 37.41654287, 37.60649875, 37.79438792, 37.98024983, 38.1641227 , 38.34604363, 38.52604865, 38.70417271, 38.88044977, 39.05491283, 39.22759397, 39.39852437, 39.56773437, 39.73525346, 39.90111038, 40.06533308, 40.22794878, 40.38723177], [36.83528372, 37.0316791 , 37.22588202, 37.4179358 , 37.6078824 , 37.79576246, 37.98161542, 38.16547951, 38.34739183, 38.52738837, 38.7055041 , 38.88177298, 39.056228 , 39.22890123, 39.39982385, 39.5690262 , 39.73653777, 39.90238728, 40.06660269, 40.22921121, 40.38848721], [36.83668228, 37.03306802, 37.22726148, 37.41930598, 37.60924347, 37.79711459, 37.98295878, 38.16681425, 38.3487181 , 38.52870633, 38.7068139 , 38.88307474, 39.05752187, 39.23018734, 39.40110233, 39.57029717, 39.73780135, 39.9036436 , 40.06785185, 40.23045334, 40.38972248], [36.83805944, 37.0344357 , 37.22861987, 37.42065525, 37.61058379, 37.79844614, 37.98428171, 38.16812872, 38.35002425, 38.53000432, 38.70810385, 38.88435682, 39.05879619, 39.23145404, 39.40236153, 39.57154899, 39.73904592, 39.90488103, 40.06908226, 40.23167683, 40.39093924], ... [36.84332939, 37.03966963, 37.23381848, 37.42581921, 37.61571375, 37.80354273, 37.98934554, 38.17316038, 38.35502432, 38.53497334, 38.71304237, 38.88926535, 39.06367526, 39.23630412, 39.40718312, 39.57634255, 39.7438119 , 39.90961987, 40.07379439, 40.23636267, 40.39559948], [36.84458582, 37.04091754, 37.23505803, 37.42705056, 37.61693705, 37.80475813, 37.99055319, 38.17436041, 38.35621687, 38.53615855, 38.71422036, 38.89043625, 39.06483918, 39.23746119, 39.40833344, 39.57748624, 39.74494906, 39.9107506 , 40.0749188 , 40.23748086, 40.3967116 ], [36.84581917, 37.04214255, 37.23627486, 37.42825937, 37.61813799, 37.80595134, 37.99173881, 38.17553859, 38.35738773, 38.53732221, 38.71537697, 38.89158591, 39.06598201, 39.23859731, 39.40946296, 39.57860927, 39.7460657 , 39.91186096, 40.07602297, 40.23857894, 40.39780376], [36.84702927, 37.0433445 , 37.23746882, 37.42944548, 37.6193164 , 37.8071222 , 37.99290224, 38.17669473, 38.35853672, 38.53846418, 38.71651202, 38.89271418, 39.0671036 , 39.23971234, 39.41057154, 39.57971149, 39.74716168, 39.91295079, 40.07710676, 40.23965677, 40.39887579]])
- footprint :
- POLYGON ((-69.13847173718773 22.65528072350044, -69.9034749598377 22.7840878171622, -70.22567991374513 21.12110211400705, -69.46994209516342 20.99088492496858, -69.13847173718773 22.65528072350044))
- coverage :
- 187km * 79km (line * sample )
- approx_transform :
- |-0.00,-0.00,-69.15| |-0.00, 0.00, 22.66| | 0.00, 0.00, 1.00|
- history :
- annotations
<xarray.DatasetView> Dimensions: (line: 11, sample: 21) Coordinates: * line (line) int64 0 1507 3014 4521 ... 10549 12056 13563 15070 * sample (sample) int64 0 1189 2378 3567 ... 20213 21402 22591 23767 Data variables: longitude (line, sample) float64 -69.14 -69.18 ... -70.19 -70.23 latitude (line, sample) float64 22.66 22.66 22.67 ... 21.11 21.12 height (line, sample) float64 0.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0 azimuthTime (line, sample) datetime64[ns] 2017-09-07T10:29:53.785185 ... slantRangeTime (line, sample) float64 0.006012 0.00603 ... 0.006381 incidenceAngle (line, sample) float64 41.7 41.93 42.16 ... 45.79 45.98 elevationAngle (line, sample) float64 36.83 37.03 37.22 ... 40.24 40.4 Attributes: footprint: POLYGON ((-69.13847173718773 22.65528072350044, -69.90... coverage: 187km * 79km (line * sample ) approx_transform: |-0.00,-0.00,-69.15|\n|-0.00, 0.00, 22.66|\n| 0.00, 0.... history: annotations
geolocation_annotation- burst: 10
- line: 1507
- azimuthTime(burst)datetime64[ns]2017-09-07T10:29:53.785095 ... 2...
- source :
- //product/swathTiming/burstList/burst/azimuthTime
array(['2017-09-07T10:29:53.785095000', '2017-09-07T10:29:56.541596000', '2017-09-07T10:29:59.298097000', '2017-09-07T10:30:02.058709000', '2017-09-07T10:30:04.817266000', '2017-09-07T10:30:07.573767000', '2017-09-07T10:30:10.338490000', '2017-09-07T10:30:13.097046000', '2017-09-07T10:30:15.853547000', '2017-09-07T10:30:18.612104000'], dtype='datetime64[ns]')
- azimuthAnxTime(burst)float642.599e+03 2.602e+03 ... 2.624e+03
- source :
- //product/swathTiming/burstList/burst/azimuthAnxTime
array([2599.271272 , 2602.027773 , 2604.784274 , 2607.54488611, 2610.30344266, 2613.05994366, 2615.82466688, 2618.58322344, 2621.33972444, 2624.09828099])
- sensingTime(burst)datetime64[ns]2017-09-07T10:29:54.937240 ... 2...
- source :
- //product/swathTiming/burstList/burst/sensingTime
array(['2017-09-07T10:29:54.937240000', '2017-09-07T10:29:57.695517000', '2017-09-07T10:30:00.453794000', '2017-09-07T10:30:03.212071000', '2017-09-07T10:30:05.970348000', '2017-09-07T10:30:08.728625000', '2017-09-07T10:30:11.486902000', '2017-09-07T10:30:14.245179000', '2017-09-07T10:30:17.003456000', '2017-09-07T10:30:19.761733000'], dtype='datetime64[ns]')
- byteOffset(burst)int64120875 143394379 ... 1289582411
- source :
- //product/swathTiming/burstList/burst/byteOffset
array([ 120875, 143394379, 286667883, 429941387, 573214891, 716488395, 859761899, 1003035403, 1146308907, 1289582411])
- firstValidSample(burst, line)float64nan nan nan nan ... nan nan nan nan
- source :
- //product/swathTiming/burstList/burst/firstValidSample
array([[nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], ..., [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan]])
- lastValidSample(burst, line)float64nan nan nan nan ... nan nan nan nan
- source :
- //product/swathTiming/burstList/burst/lastValidSample
array([[nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], ..., [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan]])
- linesPerBurst()int641507
- source :
- /product/swathTiming/linesPerBurst
array(1507)
- samplesPerBurst()int6423768
- source :
- /product/swathTiming/samplesPerBurst
array(23768)
- history :
- annotations
<xarray.DatasetView> Dimensions: (burst: 10, line: 1507) Dimensions without coordinates: burst, line Data variables: azimuthTime (burst) datetime64[ns] 2017-09-07T10:29:53.785095 ... 2... azimuthAnxTime (burst) float64 2.599e+03 2.602e+03 ... 2.624e+03 sensingTime (burst) datetime64[ns] 2017-09-07T10:29:54.937240 ... 2... byteOffset (burst) int64 120875 143394379 ... 1146308907 1289582411 firstValidSample (burst, line) float64 nan nan nan nan ... nan nan nan nan lastValidSample (burst, line) float64 nan nan nan nan ... nan nan nan nan linesPerBurst int64 1507 samplesPerBurst int64 23768 Attributes: history: annotations
bursts- azimuthTime: 11
- azimuthTime(azimuthTime)datetime64[ns]2017-09-07T10:29:55.376030 ... 2...
array(['2017-09-07T10:29:55.376030000', '2017-09-07T10:29:58.134307000', '2017-09-07T10:30:00.892584000', '2017-09-07T10:30:03.650861000', '2017-09-07T10:30:06.409138000', '2017-09-07T10:30:09.167415000', '2017-09-07T10:30:11.925692000', '2017-09-07T10:30:14.683969000', '2017-09-07T10:30:17.442246000', '2017-09-07T10:30:20.200523000', '2017-09-07T10:30:22.958800000'], dtype='datetime64[ns]')
- t0(azimuthTime)float640.006012 0.006012 ... 0.006012
- source :
- //product/generalAnnotation/azimuthFmRateList/azimuthFmRate/t0
array([0.00601199, 0.00601199, 0.00601199, 0.00601199, 0.00601199, 0.00601199, 0.00601199, 0.00601199, 0.00601199, 0.00601199, 0.00601199])
- azimuthFmRatePolynomial(azimuthTime)object-2065.192170866245 + 352796.0994...
- source :
- //product/generalAnnotation/azimuthFmRateList/azimuthFmRate/azimuthFmRatePolynomial
array([Polynomial([-2.06519217e+03, 3.52796099e+05, -5.39942942e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-2.06527254e+03, 3.52783086e+05, -5.39907204e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-2.06535254e+03, 3.52770227e+05, -5.39863737e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-2.06543192e+03, 3.52755582e+05, -5.39791294e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-2.06551193e+03, 3.52743396e+05, -5.39777127e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-2.06559156e+03, 3.52729222e+05, -5.39710800e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-2.06567108e+03, 3.52715897e+05, -5.39672808e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-2.06574998e+03, 3.52702110e+05, -5.39621614e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-2.06582883e+03, 3.52688871e+05, -5.39583299e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-2.06590798e+03, 3.52675102e+05, -5.39530174e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-2.06598688e+03, 3.52660969e+05, -5.39474473e+07], domain=[-1, 1], window=[-1, 1])], dtype=object)
- history :
- annotations
<xarray.DatasetView> Dimensions: (azimuthTime: 11) Coordinates: * azimuthTime (azimuthTime) datetime64[ns] 2017-09-07T10:29:55... Data variables: t0 (azimuthTime) float64 0.006012 ... 0.006012 azimuthFmRatePolynomial (azimuthTime) object -2065.192170866245 + 352796... Attributes: history: annotations
FMrate- azimuthTime: 11
- nb_fine_dce: 20
- azimuthTime(azimuthTime)datetime64[ns]2017-09-07T10:29:54.420613 ... 2...
- source :
- //product/dopplerCentroid/dcEstimateList/dcEstimate/azimuthTime
array(['2017-09-07T10:29:54.420613000', '2017-09-07T10:29:57.178890000', '2017-09-07T10:29:59.937167000', '2017-09-07T10:30:02.695444000', '2017-09-07T10:30:05.453721000', '2017-09-07T10:30:08.211997000', '2017-09-07T10:30:10.970274000', '2017-09-07T10:30:13.728551000', '2017-09-07T10:30:16.486828000', '2017-09-07T10:30:19.245105000', '2017-09-07T10:30:22.003382000'], dtype='datetime64[ns]')
- t0(azimuthTime)float640.005332 0.005332 ... 0.005332
- source :
- //product/dopplerCentroid/dcEstimateList/dcEstimate/t0
array([0.00533224, 0.00533224, 0.00533224, 0.00533224, 0.00533224, 0.00533224, 0.00533171, 0.00533171, 0.00533171, 0.00533171, 0.00533171])
- geometryDcPolynomial(azimuthTime)object-2.959929 + 60.73785·x¹ + 31765....
- source :
- //product/dopplerCentroid/dcEstimateList/dcEstimate/geometryDcPolynomial
array([Polynomial([-2.959929e+00, 6.073785e+01, 3.176535e+04], domain=[-1, 1], window=[-1, 1]), Polynomial([-2.960816e+00, -2.834544e+01, 5.435980e+04], domain=[-1, 1], window=[-1, 1]), Polynomial([-3.253490e+00, -1.933437e+02, 1.008380e+05], domain=[-1, 1], window=[-1, 1]), Polynomial([-3.012839e+00, -1.774941e+02, 9.297225e+04], domain=[-1, 1], window=[-1, 1]), Polynomial([-2.287487e+00, -2.230783e+02, 9.299686e+04], domain=[-1, 1], window=[-1, 1]), Polynomial([-1.901315e+00, -2.310099e+02, 8.881498e+04], domain=[-1, 1], window=[-1, 1]), Polynomial([-1.536089e+00, -2.232855e+02, 8.107776e+04], domain=[-1, 1], window=[-1, 1]), Polynomial([-1.430870e+00, -2.244556e+02, 7.968782e+04], domain=[-1, 1], window=[-1, 1]), Polynomial([-1.553807e+00, -2.715763e+02, 9.360102e+04], domain=[-1, 1], window=[-1, 1]), Polynomial([-1.260377e+00, -2.648543e+02, 8.722035e+04], domain=[-1, 1], window=[-1, 1]), Polynomial([-1.070619e+00, -1.834602e+02, 6.354454e+04], domain=[-1, 1], window=[-1, 1])], dtype=object)
- dataDcPolynomial(azimuthTime)object-42.14799 + 8398.39·x¹ - 2636111...
- source :
- //product/dopplerCentroid/dcEstimateList/dcEstimate/dataDcPolynomial
array([Polynomial([-4.214799e+01, 8.398390e+03, -2.636111e+06], domain=[-1, 1], window=[-1, 1]), Polynomial([-4.632353e+01, 1.617404e+04, -6.850316e+06], domain=[-1, 1], window=[-1, 1]), Polynomial([-5.356143e+01, 3.627249e+04, -2.488160e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-6.044291e+01, 5.220250e+04, -3.200358e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-5.402827e+01, 3.452357e+04, -2.040147e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-5.377473e+01, 2.112672e+04, -7.153171e+06], domain=[-1, 1], window=[-1, 1]), Polynomial([-5.303269e+01, 5.758605e+04, -3.192775e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-5.019398e+01, 3.492415e+04, -1.272529e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-5.657975e+01, 3.550569e+04, -7.942613e+06], domain=[-1, 1], window=[-1, 1]), Polynomial([-7.245502e+01, 8.527071e+04, -4.226516e+07], domain=[-1, 1], window=[-1, 1]), Polynomial([-7.490705e+01, 8.527423e+04, -3.171790e+07], domain=[-1, 1], window=[-1, 1])], dtype=object)
- fineDceAzimuthStartTime(azimuthTime)datetime64[ns]2017-09-07T10:29:53.031960 ... 2...
- source :
- //product/dopplerCentroid/dcEstimateList/dcEstimate/fineDceAzimuthStartTime
array(['2017-09-07T10:29:53.031960000', '2017-09-07T10:29:55.790237000', '2017-09-07T10:29:58.548514000', '2017-09-07T10:30:01.306791000', '2017-09-07T10:30:04.065068000', '2017-09-07T10:30:06.823344000', '2017-09-07T10:30:09.581621000', '2017-09-07T10:30:12.339898000', '2017-09-07T10:30:15.098175000', '2017-09-07T10:30:17.856452000', '2017-09-07T10:30:20.614729000'], dtype='datetime64[ns]')
- fineDceAzimuthStopTime(azimuthTime)datetime64[ns]2017-09-07T10:29:55.809267 ... 2...
- source :
- //product/dopplerCentroid/dcEstimateList/dcEstimate/fineDceAzimuthStopTime
array(['2017-09-07T10:29:55.809267000', '2017-09-07T10:29:58.567544000', '2017-09-07T10:30:01.325821000', '2017-09-07T10:30:04.084098000', '2017-09-07T10:30:06.842375000', '2017-09-07T10:30:09.600651000', '2017-09-07T10:30:12.358928000', '2017-09-07T10:30:15.117205000', '2017-09-07T10:30:17.875482000', '2017-09-07T10:30:20.633759000', '2017-09-07T10:30:23.392036000'], dtype='datetime64[ns]')
- dataDcRmsError(azimuthTime)float644.029 3.177 2.544 ... 4.148 6.182
- source :
- //product/dopplerCentroid/dcEstimateList/dcEstimate/dataDcRmsError
array([4.02855921, 3.17656493, 2.54422593, 2.85353589, 4.05756283, 2.88730097, 4.60585308, 4.57308578, 3.38222504, 4.14786005, 6.18157291])
- slantRangeTime(azimuthTime, nb_fine_dce)float640.006022 0.006043 ... 0.006427
- source :
- ///product/dopplerCentroid/dcEstimateList/dcEstimate/fineDceList/fineDce/slantRangeTime
array([[0.00602185, 0.00604316, 0.00606449, 0.00608583, 0.00610714, 0.00612848, 0.00614981, 0.00617115, 0.00619246, 0.0062138 , 0.00623513, 0.00625647, 0.00627778, 0.00629911, 0.00632045, 0.00634178, 0.0063631 , 0.00638443, 0.00640577, 0.0064271 ], [0.00602185, 0.00604316, 0.00606449, 0.00608583, 0.00610714, 0.00612848, 0.00614981, 0.00617115, 0.00619246, 0.0062138 , 0.00623513, 0.00625647, 0.00627778, 0.00629911, 0.00632045, 0.00634178, 0.0063631 , 0.00638443, 0.00640577, 0.0064271 ], [0.00602185, 0.00604316, 0.00606449, 0.00608583, 0.00610714, 0.00612848, 0.00614981, 0.00617115, 0.00619246, 0.0062138 , 0.00623513, 0.00625647, 0.00627778, 0.00629911, 0.00632045, 0.00634178, 0.0063631 , 0.00638443, 0.00640577, 0.0064271 ], [0.00602185, 0.00604316, 0.00606449, 0.00608583, 0.00610714, 0.00612848, 0.00614981, 0.00617115, 0.00619246, 0.0062138 , 0.00623513, 0.00625647, 0.00627778, 0.00629911, 0.00632045, 0.00634178, 0.0063631 , 0.00638443, 0.00640577, 0.0064271 ], [0.00602185, 0.00604316, 0.00606449, 0.00608583, 0.00610714, 0.00612848, 0.00614981, 0.00617115, 0.00619246, 0.0062138 , 0.00623513, 0.00625647, 0.00627778, 0.00629911, 0.00632045, 0.00634178, 0.0063631 , 0.00638443, 0.00640577, 0.0064271 ], ... [0.00602137, 0.00604268, 0.00606401, 0.00608535, 0.00610666, 0.006128 , 0.00614933, 0.00617067, 0.00619198, 0.00621332, 0.00623465, 0.00625599, 0.0062773 , 0.00629863, 0.00631997, 0.0063413 , 0.00636262, 0.00638395, 0.00640529, 0.00642662], [0.00602137, 0.00604268, 0.00606401, 0.00608535, 0.00610666, 0.006128 , 0.00614933, 0.00617067, 0.00619198, 0.00621332, 0.00623465, 0.00625599, 0.0062773 , 0.00629863, 0.00631997, 0.0063413 , 0.00636262, 0.00638395, 0.00640529, 0.00642662], [0.00602137, 0.00604268, 0.00606401, 0.00608535, 0.00610666, 0.006128 , 0.00614933, 0.00617067, 0.00619198, 0.00621332, 0.00623465, 0.00625599, 0.0062773 , 0.00629863, 0.00631997, 0.0063413 , 0.00636262, 0.00638395, 0.00640529, 0.00642662], [0.00602137, 0.00604268, 0.00606401, 0.00608535, 0.00610666, 0.006128 , 0.00614933, 0.00617067, 0.00619198, 0.00621332, 0.00623465, 0.00625599, 0.0062773 , 0.00629863, 0.00631997, 0.0063413 , 0.00636262, 0.00638395, 0.00640529, 0.00642662], [0.00602137, 0.00604268, 0.00606401, 0.00608535, 0.00610666, 0.006128 , 0.00614933, 0.00617067, 0.00619198, 0.00621332, 0.00623465, 0.00625599, 0.0062773 , 0.00629863, 0.00631997, 0.0063413 , 0.00636262, 0.00638395, 0.00640529, 0.00642662]])
- frequency(azimuthTime, nb_fine_dce)float64-32.32 -31.55 ... -27.68 -29.45
- source :
- ///product/dopplerCentroid/dcEstimateList/dcEstimate/fineDceList/fineDce/frequency
array([[-32.32186127, -31.55188942, -31.26573944, -29.82689095, -29.5846405 , -28.67941093, -31.47991943, -32.11882019, -32.5058403 , -33.55601883, -36.16463089, -36.23524094, -38.21768188, -40.0931282 , -40.05694962, -38.40428162, -41.26126862, -42.63077164, -41.18637085, -40.67718887], [-31.63059044, -34.11019897, -33.61516953, -33.68582916, -36.33126068, -35.0442009 , -35.4294014 , -37.75078964, -36.69916916, -37.13246155, -37.42385864, -39.37165833, -38.26161957, -36.55044174, -36.76247025, -40.8350296 , -38.1349411 , -37.9850502 , -41.06175995, -40.22220993], [-37.51343918, -36.66355896, -34.63454056, -35.99613953, -37.6064415 , -36.70648956, -38.01699066, -38.48125076, -40.46942902, -41.29058075, -40.61663055, -41.43856812, -42.16191864, -42.49399948, -43.72328186, -43.29693985, -45.96191025, -44.23833084, -47.2401886 , -44.82516098], [-35.07783127, -37.25180817, -35.24760056, -37.67401886, -35.89400864, -34.22692108, -35.14281082, -34.28794098, -34.65135956, -36.58708954, -37.93410873, -36.99317169, -40.22903061, -42.18828964, -42.84123993, -44.50986099, -43.47631836, -42.6211586 , -44.04587936, -44.30904007], ... [-25.45252037, -25.72274017, -35.8723793 , -32.6884613 , -30.12822914, -35.12277985, -33.69070053, -29.89517975, -29.97458076, -28.35071945, -25.98967934, -29.13911057, -26.3631897 , -25.0581398 , -25.65534019, -28.5690403 , -27.70055008, -30.16884041, -31.08216095, -32.70685959], [-31.25305939, -33.57894897, -35.73583984, -38.40589905, -32.44092178, -29.48925018, -33.75432968, -29.70364952, -27.32576942, -28.92970085, -29.21615028, -33.87714005, -31.01608086, -30.37841988, -29.04129028, -28.77469063, -31.16653061, -32.95328903, -30.95652008, -28.0520401 ], [-27.69628906, -27.08492088, -25.45466042, -27.88272095, -28.69450951, -29.79383087, -33.04230118, -32.68302917, -34.54496002, -33.37226105, -32.94599915, -33.91693115, -33.04912186, -27.06241035, -29.60570908, -29.64311028, -28.43541908, -29.67399025, -30.4437809 , -30.67605019], [-28.36273956, -23.40209961, -22.73597908, -21.43382072, -21.69467926, -18.65826988, -18.72514915, -18.68610954, -19.16077042, -19.21019936, -21.60420036, -20.89978027, -20.87836075, -23.57386971, -25.98483086, -26.73081017, -27.47182083, -22.46405029, -27.68107033, -29.44846916]])
- dataDcRmsErrorAboveThreshold(azimuthTime)boolFalse False False ... False False
- source :
- //product/dopplerCentroid/dcEstimateList/dcEstimate/dataDcRmsErrorAboveThreshold
array([False, False, False, False, False, False, False, False, False, False, False])
- history :
- annotations
<xarray.DatasetView> Dimensions: (azimuthTime: 11, nb_fine_dce: 20) Coordinates: * azimuthTime (azimuthTime) datetime64[ns] 2017-09-07T10:... Dimensions without coordinates: nb_fine_dce Data variables: t0 (azimuthTime) float64 0.005332 ... 0.005332 geometryDcPolynomial (azimuthTime) object -2.959929 + 60.73785·x... dataDcPolynomial (azimuthTime) object -42.14799 + 8398.39·x¹... fineDceAzimuthStartTime (azimuthTime) datetime64[ns] 2017-09-07T10:... fineDceAzimuthStopTime (azimuthTime) datetime64[ns] 2017-09-07T10:... dataDcRmsError (azimuthTime) float64 4.029 3.177 ... 6.182 slantRangeTime (azimuthTime, nb_fine_dce) float64 0.006022... frequency (azimuthTime, nb_fine_dce) float64 -32.32 .... dataDcRmsErrorAboveThreshold (azimuthTime) bool False False ... False False Attributes: history: annotations
doppler_estimate- time: 17
- time(time)datetime64[ns]2017-09-07T10:28:44.474905 ... 2...
array(['2017-09-07T10:28:44.474905000', '2017-09-07T10:28:54.474905000', '2017-09-07T10:29:04.474904000', '2017-09-07T10:29:14.474905000', '2017-09-07T10:29:24.474905000', '2017-09-07T10:29:34.474905000', '2017-09-07T10:29:44.474904000', '2017-09-07T10:29:54.474905000', '2017-09-07T10:30:04.474905000', '2017-09-07T10:30:14.474905000', '2017-09-07T10:30:24.474904000', '2017-09-07T10:30:34.474905000', '2017-09-07T10:30:44.474905000', '2017-09-07T10:30:54.474905000', '2017-09-07T10:31:04.474904000', '2017-09-07T10:31:14.474905000', '2017-09-07T10:31:24.474905000'], dtype='datetime64[ns]')
- velocity_x(time)float64-3.944 -41.63 ... -556.8 -592.5
array([ -3.944385, -41.632652, -79.223036, -116.710637, -154.090577, -191.357997, -228.508067, -265.535977, -302.436943, -339.206209, -375.839043, -412.330741, -448.676626, -484.872048, -520.912381, -556.79303 , -592.509426])
- velocity_y(time)float64-3.626e+03 ... -2.553e+03
array([-3625.944098, -3562.051977, -3497.705023, -3432.91065 , -3367.676328, -3302.009589, -3235.918021, -3169.409267, -3102.491029, -3035.171056, -2967.457153, -2899.357174, -2830.879022, -2762.03065 , -2692.820066, -2623.255328, -2553.344541])
- velocity_z(time)float64-6.675e+03 -6.71e+03 ... -7.131e+03
array([-6675.321643, -6709.631374, -6743.183443, -6775.974019, -6807.999362, -6839.255817, -6869.73982 , -6899.447898, -6928.376666, -6956.522831, -6983.88319 , -7010.454629, -7036.23412 , -7061.218727, -7085.4056 , -7108.791981, -7131.375204])
- position_x(time)float642.893e+06 2.893e+06 ... 2.845e+06
array([2893459.553074, 2893231.588311, 2892627.226197, 2891647.470081, 2890293.372212, 2888566.033516, 2886466.603359, 2883996.279315, 2881156.306914, 2877947.979391, 2874372.637429, 2870431.668894, 2866126.50857 , 2861458.637882, 2856429.584614, 2851040.922645, 2845294.271647])
- position_y(time)float64-5.676e+06 ... -6.172e+06
array([-5676427.130269, -5712367.492762, -5747666.653716, -5782320.10182 , -5816323.40019 , -5849672.186956, -5882362.175843, -5914389.156739, -5945748.996239, -5976437.638189, -6006451.104214, -6035785.494237, -6064436.986996, -6092401.840527, -6119676.392678, -6146257.061599, -6172140.346155])
- position_z(time)float643.07e+06 3.004e+06 ... 1.963e+06
array([3070469.441099, 3003544.046271, 2936279.339214, 2868682.915781, 2800762.409682, 2732525.491596, 2663979.868287, 2595133.281708, 2525993.508111, 2456568.357128, 2386865.670889, 2316893.32313 , 2246659.218295, 2176171.29064 , 2105437.503239, 2034465.847192, 1963264.34078 ])
- orbit_pass :
- Descending
- platform_heading :
- -167.7216262988962
- history :
- orbit: annotation/s1a.xml: - //product/generalAnnotation/orbitList/orbit/time - //product/generalAnnotation/orbitList/orbit/frame - //product/generalAnnotation/orbitList/orbit/position/x - //product/generalAnnotation/orbitList/orbit/position/y - //product/generalAnnotation/orbitList/orbit/position/z - //product/generalAnnotation/orbitList/orbit/velocity/x - //product/generalAnnotation/orbitList/orbit/velocity/y - //product/generalAnnotation/orbitList/orbit/velocity/z - /product/generalAnnotation/productInformation/pass - /product/generalAnnotation/productInformation/platformHeading
<xarray.DatasetView> Dimensions: (time: 17) Coordinates: * time (time) datetime64[ns] 2017-09-07T10:28:44.474905 ... 2017-09-... Data variables: velocity_x (time) float64 -3.944 -41.63 -79.22 ... -520.9 -556.8 -592.5 velocity_y (time) float64 -3.626e+03 -3.562e+03 ... -2.623e+03 -2.553e+03 velocity_z (time) float64 -6.675e+03 -6.71e+03 ... -7.109e+03 -7.131e+03 position_x (time) float64 2.893e+06 2.893e+06 ... 2.851e+06 2.845e+06 position_y (time) float64 -5.676e+06 -5.712e+06 ... -6.146e+06 -6.172e+06 position_z (time) float64 3.07e+06 3.004e+06 ... 2.034e+06 1.963e+06 Attributes: orbit_pass: Descending platform_heading: -167.7216262988962 history: orbit:\n annotation/s1a.xml:\n - //product/generalAn...
orbit- dim_0: 2
- LineUtcTime(dim_0)datetime64[ns]2017-09-07T10:29:53.785096 2017-...
- source :
- /product/imageAnnotation/imageInformation/*[contains(name(),"LineUtcTime")]
array(['2017-09-07T10:29:53.785096000', '2017-09-07T10:30:21.707772000'], dtype='datetime64[ns]')
- numberOfLines()int6415070
- source :
- /product/imageAnnotation/imageInformation/numberOfLines
array(15070)
- numberOfSamples()int6423768
- source :
- /product/imageAnnotation/imageInformation/numberOfSamples
array(23768)
- azimuthPixelSpacing()float6413.96
- source :
- /product/imageAnnotation/imageInformation/azimuthPixelSpacing
array(13.95527)
- slantRangePixelSpacing()float642.33
- source :
- /product/imageAnnotation/imageInformation/rangePixelSpacing
array(2.329562)
- groundRangePixelSpacing()float643.357
- source :
- /product/imageAnnotation/imageInformation/rangePixelSpacing
array(3.35728057)
- incidenceAngleMidSwath()float6443.94
- source :
- /product/imageAnnotation/imageInformation/incidenceAngleMidSwath
array(43.93832288)
- azimuthTimeInterval()float640.002056
- source :
- /product/imageAnnotation/imageInformation/azimuthTimeInterval
array(0.00205556)
- slantRangeTime()float640.006012
- source :
- /product/imageAnnotation/imageInformation/slantRangeTime
array(0.00601199)
- swath_subswath()<U3'IW3'
- source :
- /product/adsHeader/swath
array('IW3', dtype='<U3')
- radarFrequency()float645.405e+09
- source :
- /product/generalAnnotation/productInformation/radarFrequency
array(5.40500045e+09)
- rangeSamplingRate()float646.435e+07
- source :
- /product/generalAnnotation/productInformation/rangeSamplingRate
array(64345238.12571428)
- azimuthSteeringRate()float641.397
- source :
- /product/generalAnnotation/productInformation/azimuthSteeringRate
array(1.39744082)
- history()<U824'image:\n annotation/s1a.xml:\n...
array('image:\n annotation/s1a.xml:\n - /product/adsHeader/productType\n - /product/imageAnnotation/imageInformation/*[contains(name(),"LineUtcTime")]\n - /product/imageAnnotation/imageInformation/numberOfLines\n - /product/imageAnnotation/imageInformation/numberOfSamples\n - /product/imageAnnotation/imageInformation/incidenceAngleMidSwath\n - /product/imageAnnotation/imageInformation/azimuthTimeInterval\n - /product/imageAnnotation/imageInformation/slantRangeTime\n - /product/imageAnnotation/imageInformation/azimuthPixelSpacing\n - /product/imageAnnotation/imageInformation/rangePixelSpacing\n - /product/adsHeader/swath\n - /product/generalAnnotation/productInformation/radarFrequency\n - /product/generalAnnotation/productInformation/rangeSamplingRate\n - /product/generalAnnotation/productInformation/azimuthSteeringRate\n', dtype='<U824')
<xarray.DatasetView> Dimensions: (dim_0: 2) Dimensions without coordinates: dim_0 Data variables: (12/14) LineUtcTime (dim_0) datetime64[ns] 2017-09-07T10:29:53.78509... numberOfLines int64 15070 numberOfSamples int64 23768 azimuthPixelSpacing float64 13.96 slantRangePixelSpacing float64 2.33 groundRangePixelSpacing float64 3.357 ... ... slantRangeTime float64 0.006012 swath_subswath <U3 'IW3' radarFrequency float64 5.405e+09 rangeSamplingRate float64 6.435e+07 azimuthSteeringRate float64 1.397 history <U824 'image:\n annotation/s1a.xml:\n - /produ...
image- name :
- SENTINEL1_DS:/tmp/S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW3
- short_name :
- SENTINEL1_DS:S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW3
- product :
- SLC
- safe :
- S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE
- swath :
- IW
- multidataset :
- False
- ipf :
- 2.84
- platform :
- SENTINEL-1A
- pols :
- VV VH
- start_date :
- 2017-09-07 10:29:53.785096
- stop_date :
- 2017-09-07 10:30:21.707772
- footprint :
- POLYGON ((-69.13847173718773 22.65528072350044, -69.9034749598377 22.7840878171622, -70.22567991374513 21.12110211400705, -69.46994209516342 20.99088492496858, -69.13847173718773 22.65528072350044))
- coverage :
- 187km * 79km (line * sample )
- pixel_line_m :
- <xarray.DataArray 'azimuthPixelSpacing' ()> array(13.95527) Attributes: source: /product/imageAnnotation/imageInformation/azimuthPixelSpacing
- pixel_sample_m :
- <xarray.DataArray 'groundRangePixelSpacing' ()> array(3.35728057) Attributes: source: /product/imageAnnotation/imageInformation/rangePixelSpacing
- orbit_pass :
- Descending
- platform_heading :
- -167.7216262988962
open dataset
[8]:
s1ds.dataset
[8]:
<xarray.Dataset> Dimensions: (pol: 2, line: 15070, sample: 23768) Coordinates: * pol (pol) object 'VV' 'VH' * line (line) int64 0 1 2 3 4 5 ... 15065 15066 15067 15068 15069 * sample (sample) int64 0 1 2 3 4 5 ... 23763 23764 23765 23766 23767 Data variables: digital_number (pol, line, sample) complex64 dask.array<chunksize=(1, 5000, 5000), meta=np.ndarray> Attributes: (12/17) name: SENTINEL1_DS:/tmp/S1A_IW_SLC__1SDV_20170907T102951_201... short_name: SENTINEL1_DS:S1A_IW_SLC__1SDV_20170907T102951_20170907... product: SLC safe: S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_01826... swath: IW multidataset: False ... ... footprint: POLYGON ((-69.13847173718773 22.65528072350044, -69.90... coverage: 187km * 79km (line * sample ) pixel_line_m: <xarray.DataArray 'azimuthPixelSpacing' ()>\narray(13.... pixel_sample_m: <xarray.DataArray 'groundRangePixelSpacing' ()>\narray... orbit_pass: Descending platform_heading: -167.7216262988962
- pol: 2
- line: 15070
- sample: 23768
- pol(pol)object'VV' 'VH'
array(['VV', 'VH'], dtype=object)
- line(line)int640 1 2 3 ... 15066 15067 15068 15069
array([ 0, 1, 2, ..., 15067, 15068, 15069])
- sample(sample)int640 1 2 3 ... 23764 23765 23766 23767
array([ 0, 1, 2, ..., 23765, 23766, 23767])
- digital_number(pol, line, sample)complex64dask.array<chunksize=(1, 5000, 5000), meta=np.ndarray>
- comment :
- denoised digital number, read at full resolution
- history :
- digital_number: measurement/s1a-iw3-slc-v*-20170907t102953-20170907t103021-018268-01eb76-00*.tiff
Array Chunk Bytes 5.34 GiB 190.73 MiB Shape (2, 15070, 23768) (1, 5000, 5000) Count 82 Tasks 40 Chunks Type complex64 numpy.ndarray
- name :
- SENTINEL1_DS:/tmp/S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW3
- short_name :
- SENTINEL1_DS:S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW3
- product :
- SLC
- safe :
- S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE
- swath :
- IW
- multidataset :
- False
- ipf :
- 2.84
- platform :
- SENTINEL-1A
- pols :
- VV VH
- start_date :
- 2017-09-07 10:29:53.785096
- stop_date :
- 2017-09-07 10:30:21.707772
- footprint :
- POLYGON ((-69.13847173718773 22.65528072350044, -69.9034749598377 22.7840878171622, -70.22567991374513 21.12110211400705, -69.46994209516342 20.99088492496858, -69.13847173718773 22.65528072350044))
- coverage :
- 187km * 79km (line * sample )
- pixel_line_m :
- <xarray.DataArray 'azimuthPixelSpacing' ()> array(13.95527) Attributes: source: /product/imageAnnotation/imageInformation/azimuthPixelSpacing
- pixel_sample_m :
- <xarray.DataArray 'groundRangePixelSpacing' ()> array(3.35728057) Attributes: source: /product/imageAnnotation/imageInformation/rangePixelSpacing
- orbit_pass :
- Descending
- platform_heading :
- -167.7216262988962
get the s1meta
[ ]:
add high resolution interpolated variables
for instance longitudes, latitudes, incidence angle,…
Note that this step is automatically done by default for GRD products but not for SLC.
[9]:
s1ds.add_high_resolution_variables()
s1ds.dataset
[9]:
<xarray.Dataset> Dimensions: (pol: 2, line: 15070, sample: 23768) Coordinates: * pol (pol) object 'VV' 'VH' * line (line) int64 0 1 2 3 4 ... 15066 15067 15068 15069 * sample (sample) int64 0 1 2 3 4 ... 23764 23765 23766 23767 spatial_ref int64 0 Data variables: (12/15) digital_number (pol, line, sample) complex64 dask.array<chunksize=(1, 5000, 5000), meta=np.ndarray> time (line) datetime64[ns] 2017-09-07T10:29:53.785278 ..... sampleSpacing float64 2.33 lineSpacing float64 13.96 ground_heading (line, sample) float32 dask.array<chunksize=(3014, 2971), meta=np.ndarray> land_mask (line, sample) int8 dask.array<chunksize=(3014, 2971), meta=np.ndarray> ... ... incidence (line, sample) float64 dask.array<chunksize=(3014, 2971), meta=np.ndarray> elevation (line, sample) float64 dask.array<chunksize=(3014, 2971), meta=np.ndarray> longitude (line, sample) float64 dask.array<chunksize=(3014, 2971), meta=np.ndarray> latitude (line, sample) float64 dask.array<chunksize=(3014, 2971), meta=np.ndarray> velocity (line) float64 7.597e+03 7.597e+03 ... 7.597e+03 range_ground_spacing (sample) float64 dask.array<chunksize=(2971,), meta=np.ndarray> Attributes: (12/17) name: SENTINEL1_DS:/tmp/S1A_IW_SLC__1SDV_20170907T102951_201... short_name: SENTINEL1_DS:S1A_IW_SLC__1SDV_20170907T102951_20170907... product: SLC safe: S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_01826... swath: IW multidataset: False ... ... footprint: POLYGON ((-69.13847173718773 22.65528072350044, -69.90... coverage: 187km * 79km (line * sample ) pixel_line_m: <xarray.DataArray 'azimuthPixelSpacing' ()>\narray(13.... pixel_sample_m: <xarray.DataArray 'groundRangePixelSpacing' ()>\narray... orbit_pass: Descending platform_heading: -167.7216262988962
- pol: 2
- line: 15070
- sample: 23768
- pol(pol)object'VV' 'VH'
- comment :
- ordered polarizations (copol, crosspol)
array(['VV', 'VH'], dtype=object)
- line(line)int640 1 2 3 ... 15066 15067 15068 15069
- axis :
- Y
- units :
- 1
- comment :
- azimuth direction, in pixels from full resolution tiff
array([ 0, 1, 2, ..., 15067, 15068, 15069])
- sample(sample)int640 1 2 3 ... 23764 23765 23766 23767
- axis :
- X
- units :
- 1
- comment :
- cross track direction, in pixels from full resolution tiff
array([ 0, 1, 2, ..., 23765, 23766, 23767])
- 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': '687a6936-29b7-4a27-8542-08ea0d575d20', 'info': None, 'row': 0, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.13847173718773, 22.65528072350044, 0]}}, {'type': 'Feature', 'properties': {'id': '8a3e2a7a-fcb9-49bc-ab2a-537b494533a3', 'info': None, 'row': 0, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.17820820742932, 22.66206726191746, 0]}}, {'type': 'Feature', 'properties': {'id': '82055312-bb2e-47d9-8117-a68a7bdb7afe', 'info': None, 'row': 0, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.21776956703296, 22.66881345359603, 0]}}, {'type': 'Feature', 'properties': {'id': '85f563ea-abfb-4235-a1de-f60720d2f0aa', 'info': None, 'row': 0, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.25715977676485, 22.67552011031412, 0]}}, {'type': 'Feature', 'properties': {'id': '17360bea-6be9-4d3d-9f67-0977c16911f2', 'info': None, 'row': 0, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.29638266322931, 22.68218801632446, 0]}}, {'type': 'Feature', 'properties': {'id': 'b389188a-9deb-42cd-9cfc-392aad276953', 'info': None, 'row': 0, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.33544192501508, 22.68881792961555, 0]}}, {'type': 'Feature', 'properties': {'id': 'a7f205d4-c6be-4aab-ab7a-b7a7ce6143b1', 'info': None, 'row': 0, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.37434113848721, 22.69541058309964, 0]}}, {'type': 'Feature', 'properties': {'id': '1a367c3c-ae6c-4e65-95b9-6fb06519f02b', 'info': None, 'row': 0, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.4130837632483, 22.7019666857333, 0]}}, {'type': 'Feature', 'properties': {'id': '43103e5c-0d51-4ce9-8f98-36d26706e216', 'info': None, 'row': 0, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.45167314729233, 22.70848692357449, 0]}}, {'type': 'Feature', 'properties': {'id': '733f8366-4db8-432a-a473-6efc5536b2a3', 'info': None, 'row': 0, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.49011253187193, 22.7149719607812, 0]}}, {'type': 'Feature', 'properties': {'id': '2bb604b1-079b-4684-ba59-1c294cb1bc59', 'info': None, 'row': 0, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.52840505609768, 22.72142244055495, 0]}}, {'type': 'Feature', 'properties': {'id': '6ed56072-8124-4583-9c2d-3436a3f4ecde', 'info': None, 'row': 0, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.56655376128812, 22.72783898603313, 0]}}, {'type': 'Feature', 'properties': {'id': 'e9e1efe6-b934-4b5a-9264-2bbfec3e9cfe', 'info': None, 'row': 0, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.60456159508581, 22.73422220113351, 0]}}, {'type': 'Feature', 'properties': {'id': 'd47c6220-4c91-467a-81a0-1c80868e9ba6', 'info': None, 'row': 0, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.6424314153552, 22.74057267135375, 0]}}, {'type': 'Feature', 'properties': {'id': '01654706-e83e-41fd-9691-8355cca35871', 'info': None, 'row': 0, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.68016599387602, 22.74689096452925, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5f20d03-0954-41d6-bb8d-8ff7026cdb69', 'info': None, 'row': 0, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.71776801984517, 22.75317763155148, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca672e35-3791-4df3-9931-0bdf19e99eee', 'info': None, 'row': 0, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.75524010319884, 22.75943320704956, 0]}}, {'type': 'Feature', 'properties': {'id': '84351c21-15f9-47af-9469-248f006a2bac', 'info': None, 'row': 0, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.79258477776644, 22.76565821003726, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb7740f7-0a9c-4823-8bc1-2fa196eac886', 'info': None, 'row': 0, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.82980450426614, 22.77185314452762, 0]}}, {'type': 'Feature', 'properties': {'id': '532cbe7c-1209-4819-953a-98b9198b0f28', 'info': None, 'row': 0, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.8669016731517, 22.77801850011687, 0]}}, {'type': 'Feature', 'properties': {'id': '32e33ab2-6af1-4826-b61c-a847d83e88cd', 'info': None, 'row': 754, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.15506189493175, 22.572083635896206, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5f8a592-259a-40e8-9147-a32a87b3fb19', 'info': None, 'row': 754, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.19477332948718, 22.578873413043745, 0]}}, {'type': 'Feature', 'properties': {'id': '5324b74d-ffb6-43e9-b318-9da34b6cfeb1', 'info': None, 'row': 754, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.23430975824905, 22.58562287054896, 0]}}, {'type': 'Feature', 'properties': {'id': 'a513f862-416c-4fc2-89c9-b4f20c294b81', 'info': None, 'row': 754, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.27367513941775, 22.59233281993449, 0]}}, {'type': 'Feature', 'properties': {'id': 'adb1f261-0ec5-4489-984b-18b7dd7a5675', 'info': None, 'row': 754, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.31287329712285, 22.59900404520733, 0]}}, {'type': 'Feature', 'properties': {'id': 'b2bd3aff-413e-4c84-870f-ba1a208ca232', 'info': None, 'row': 754, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.35190792756549, 22.605637304119245, 0]}}, {'type': 'Feature', 'properties': {'id': '3ecc0c07-821a-49cb-a0e2-0a3a8f380680', 'info': None, 'row': 754, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.39078260480571, 22.61223332935443, 0]}}, {'type': 'Feature', 'properties': {'id': 'f8452384-68f6-415d-8e30-cd0bbd74e3a8', 'info': None, 'row': 754, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.42950078622016, 22.618792829649546, 0]}}, {'type': 'Feature', 'properties': {'id': 'e1a7e765-2097-4a0e-905e-35ab7455e122', 'info': None, 'row': 754, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.46806581765222, 22.625316490850484, 0]}}, {'type': 'Feature', 'properties': {'id': 'f1566519-b94a-4d74-b09c-2c9edb351398', 'info': None, 'row': 754, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.5064809382757, 22.63180497691058, 0]}}, {'type': 'Feature', 'properties': {'id': 'dba49a00-03cd-4fe4-8226-d754273c3b75', 'info': None, 'row': 754, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.5447492851911, 22.638258930833807, 0]}}, {'type': 'Feature', 'properties': {'id': '54d9299f-323f-40e3-a541-1a87deafbf74', 'info': None, 'row': 754, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.58287389777246, 22.644678975566766, 0]}}, {'type': 'Feature', 'properties': {'id': '5a25b26b-b709-4d97-9468-2a529bab3424', 'info': None, 'row': 754, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.62085772178062, 22.651065714842872, 0]}}, {'type': 'Feature', 'properties': {'id': '20b0dfb1-ea87-4532-a2a8-0dd06758eda6', 'info': None, 'row': 754, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.65870361325833, 22.657419733981648, 0]}}, {'type': 'Feature', 'properties': {'id': '4bc6fbd6-d043-4b49-a02a-9afc4a459cdb', 'info': None, 'row': 754, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.69641434222102, 22.663741600646198, 0]}}, {'type': 'Feature', 'properties': {'id': '07acb726-2e90-4ec7-b253-aeab3ed2690e', 'info': None, 'row': 754, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.7339925961564, 22.67003186556135, 0]}}, {'type': 'Feature', 'properties': {'id': '2e262537-9f7f-4fbb-95a2-542bcf1f2ecc', 'info': None, 'row': 754, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.77144098334415, 22.676291063194967, 0]}}, {'type': 'Feature', 'properties': {'id': '19df36ab-c281-4f78-a496-22eb9daa7eff', 'info': None, 'row': 754, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.80876203600776, 22.68251971240472, 0]}}, {'type': 'Feature', 'properties': {'id': '030da0bb-4936-4fe5-8a44-4109033e49e3', 'info': None, 'row': 754, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.84595821330795, 22.688718317052484, 0]}}, {'type': 'Feature', 'properties': {'id': 'cf4a0ee5-87ad-43e1-84bd-86a4be352cc0', 'info': None, 'row': 754, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.88303190418753, 22.69488736658807, 0]}}, {'type': 'Feature', 'properties': {'id': '34764a7c-d8c8-4d23-a9cf-32a75be5bb72', 'info': None, 'row': 1508, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.17165204642964, 22.488886544870606, 0]}}, {'type': 'Feature', 'properties': {'id': '251a58be-7507-4f2a-9e4b-3daa227c0f77', 'info': None, 'row': 1508, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.21133844560917, 22.495679560759754, 0]}}, {'type': 'Feature', 'properties': {'id': 'ff216528-fdd7-4392-b8b5-0652775ce7f0', 'info': None, 'row': 1508, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.25084994383806, 22.502432284102465, 0]}}, {'type': 'Feature', 'properties': {'id': '79114eb9-75e1-409b-bced-af962d04288c', 'info': None, 'row': 1508, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.29019049675075, 22.509145526166066, 0]}}, {'type': 'Feature', 'properties': {'id': '13a30213-dde9-42ce-8812-9fd438d0c9ef', 'info': None, 'row': 1508, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.32936392600232, 22.515820070711836, 0]}}, {'type': 'Feature', 'properties': {'id': '38f43711-4afa-48cf-ae60-fa035050574d', 'info': None, 'row': 1508, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.36837392540615, 22.522456675254787, 0]}}, {'type': 'Feature', 'properties': {'id': '37a6de89-dc11-4a85-93d7-41d742464326', 'info': None, 'row': 1508, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.40722406671738, 22.52905607225107, 0]}}, {'type': 'Feature', 'properties': {'id': '97938a27-010f-4f30-a784-b0cc79e860c3', 'info': None, 'row': 1508, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.4459178050868, 22.535618970217442, 0]}}, {'type': 'Feature', 'properties': {'id': 'd48054fc-8094-4b22-a1bf-8f6d8798d1f0', 'info': None, 'row': 1508, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.4844584842071, 22.54214605478772, 0]}}, {'type': 'Feature', 'properties': {'id': '654ef475-fa30-42ba-9330-59ed2752390c', 'info': None, 'row': 1508, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.52284934117336, 22.548637989710613, 0]}}, {'type': 'Feature', 'properties': {'id': 'f2b07b02-922b-4c0a-bd9a-e5489d4bd7f9', 'info': None, 'row': 1508, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.56109351107607, 22.555095417792526, 0]}}, {'type': 'Feature', 'properties': {'id': '307fddf6-3a86-4d89-b354-6ec59193bdc6', 'info': None, 'row': 1508, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.59919403134475, 22.561518961789282, 0]}}, {'type': 'Feature', 'properties': {'id': '1dd5b677-1105-4c26-a92e-3be696132610', 'info': None, 'row': 1508, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.63715384585853, 22.56790922524994, 0]}}, {'type': 'Feature', 'properties': {'id': 'b289c30f-3ace-4eb4-bed4-f9a3edef5cef', 'info': None, 'row': 1508, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.6749758088385, 22.5742667933159, 0]}}, {'type': 'Feature', 'properties': {'id': '2f78ef3c-f88f-4ed3-8a9d-23aba8d1299c', 'info': None, 'row': 1508, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.71266268853587, 22.580592233477972, 0]}}, {'type': 'Feature', 'properties': {'id': '13eed68a-d622-4aa4-9b31-0518d001a21a', 'info': None, 'row': 1508, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.75021717072912, 22.586886096294332, 0]}}, {'type': 'Feature', 'properties': {'id': '8e226100-7c08-4f14-b1f4-b4a6e845e51b', 'info': None, 'row': 1508, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.7876418620415, 22.5931489160716, 0]}}, {'type': 'Feature', 'properties': {'id': 'd0aa9275-c960-471e-b369-df8dcb20a864', 'info': None, 'row': 1508, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.82493929309057, 22.599381211511343, 0]}}, {'type': 'Feature', 'properties': {'id': '814e1fc8-63e1-4f45-ae55-1e11968a904d', 'info': None, 'row': 1508, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.8621119214796, 22.60558348632427, 0]}}, {'type': 'Feature', 'properties': {'id': '562730b6-91d3-40cc-8b5e-5b53e18bf5a0', 'info': None, 'row': 1508, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.89916213464049, 22.611756229813807, 0]}}, {'type': 'Feature', 'properties': {'id': '26436e26-3d96-49fd-b7c4-3a59c61af052', 'info': None, 'row': 2262, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.18823749457997, 22.405686877561287, 0]}}, {'type': 'Feature', 'properties': {'id': '908e4261-ea70-40ba-9351-c72d7606dee7', 'info': None, 'row': 2262, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.22789909203806, 22.412483140535116, 0]}}, {'type': 'Feature', 'properties': {'id': 'f8d05f51-9adc-4147-8c7f-83e4b5906bea', 'info': None, 'row': 2262, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.26738589222438, 22.41923913789002, 0]}}, {'type': 'Feature', 'properties': {'id': 'eff91266-0a04-4aa3-841d-df294493234f', 'info': None, 'row': 2262, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.30670184823606, 22.425955680641316, 0]}}, {'type': 'Feature', 'properties': {'id': 'a2e8b32d-eef5-4a74-8435-9f539726893d', 'info': None, 'row': 2262, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.34585077928091, 22.432633552307585, 0]}}, {'type': 'Feature', 'properties': {'id': '3fcfd1c4-34b2-409f-b506-b7c434d75275', 'info': None, 'row': 2262, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.38483637681114, 22.43927351017016, 0]}}, {'type': 'Feature', 'properties': {'id': 'c3df17e8-6926-4a2a-a626-0d507ec65940', 'info': None, 'row': 2262, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.42366221030252, 22.44587628646, 0]}}, {'type': 'Feature', 'properties': {'id': '471b4533-43b9-4e61-832f-0a7259b1105c', 'info': None, 'row': 2262, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.46233173270436, 22.45244258947671, 0]}}, {'type': 'Feature', 'properties': {'id': '566933e1-392f-4252-b8ee-64a014660196', 'info': None, 'row': 2262, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5008482855825, 22.458973104644734, 0]}}, {'type': 'Feature', 'properties': {'id': '5be5ed79-9965-4c81-8049-a3d8e80eb877', 'info': None, 'row': 2262, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.53921510397618, 22.4654684955107, 0]}}, {'type': 'Feature', 'properties': {'id': 'bf1a698d-0eac-4de3-9288-47924628327e', 'info': None, 'row': 2262, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.57743532098782, 22.47192940468593, 0]}}, {'type': 'Feature', 'properties': {'id': '4a5e1661-f673-45cc-9954-b8275c26d7d3', 'info': None, 'row': 2262, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.61551197212393, 22.478356454737856, 0]}}, {'type': 'Feature', 'properties': {'id': '507d2690-26d6-46e6-9901-d25391099e0e', 'info': None, 'row': 2262, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.65344799940249, 22.48475024903353, 0]}}, {'type': 'Feature', 'properties': {'id': '3c0bf072-cc81-47b7-9d62-67f535b9fbfc', 'info': None, 'row': 2262, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.69124625524287, 22.49111137253838, 0]}}, {'type': 'Feature', 'properties': {'id': 'fbbb504c-337f-4c24-9e72-12f3eb7c26b5', 'info': None, 'row': 2262, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.72890950615133, 22.497440392573104, 0]}}, {'type': 'Feature', 'properties': {'id': '1bbae033-babf-419a-a157-22d18adddb5e', 'info': None, 'row': 2262, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.76644043621583, 22.50373785953132, 0]}}, {'type': 'Feature', 'properties': {'id': '0c3dac9e-241d-48fc-9846-4c5bb4b72d2d', 'info': None, 'row': 2262, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.80384165042122, 22.51000430756038, 0]}}, {'type': 'Feature', 'properties': {'id': '61f83628-ed73-487a-b99f-cdd4d03dcd4f', 'info': None, 'row': 2262, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.84111567779664, 22.516240255207713, 0]}}, {'type': 'Feature', 'properties': {'id': '8401b2ca-e608-4c22-9fa1-fa000818d255', 'info': None, 'row': 2262, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.87826497440483, 22.52244620603474, 0]}}, {'type': 'Feature', 'properties': {'id': '040a5cb7-f1ba-4e0b-8d67-5f49a7c46b9b', 'info': None, 'row': 2262, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.91529192618327, 22.52862264920026, 0]}}, {'type': 'Feature', 'properties': {'id': 'ebd5c6ce-f2c3-4ddd-b57e-f42a68f15e1d', 'info': None, 'row': 3016, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.20482299582194, 22.322486876900143, 0]}}, {'type': 'Feature', 'properties': {'id': '48806d6c-7676-4226-af27-0f5471d52e6f', 'info': None, 'row': 3016, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.24445979207599, 22.32928638701361, 0]}}, {'type': 'Feature', 'properties': {'id': '28925d4b-5fa9-4e08-867c-0e3bb75793c4', 'info': None, 'row': 3016, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.28392189473455, 22.33604565843525, 0]}}, {'type': 'Feature', 'properties': {'id': '81908386-8fa3-45b6-9e61-012c9be0bd8f', 'info': None, 'row': 3016, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.32321325435737, 22.34276550192836, 0]}}, {'type': 'Feature', 'properties': {'id': 'df0ab7aa-0e27-432d-bad1-490b65817f3e', 'info': None, 'row': 3016, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.36233768770522, 22.349446700768844, 0]}}, {'type': 'Feature', 'properties': {'id': '36e39e31-7f5f-4d10-acc9-badb1876e6cb', 'info': None, 'row': 3016, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.40129888386907, 22.356090012004355, 0]}}, {'type': 'Feature', 'properties': {'id': 'db3c29f5-4bfe-4552-b391-848277cbe0b3', 'info': None, 'row': 3016, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.4401004100454, 22.362696167640674, 0]}}, {'type': 'Feature', 'properties': {'id': 'b0d445f7-9bc7-482c-bada-6a0c4552fe41', 'info': None, 'row': 3016, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.47874571698213, 22.369265875760274, 0]}}, {'type': 'Feature', 'properties': {'id': '565384ef-95c7-4c79-9b25-6d56d24ae503', 'info': None, 'row': 3016, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5172381441183, 22.37579982157822, 0]}}, {'type': 'Feature', 'properties': {'id': 'fe6792f6-0e26-49ce-b5a5-72bd031f3124', 'info': None, 'row': 3016, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.55558092443727, 22.382298668439052, 0]}}, {'type': 'Feature', 'properties': {'id': '30a61d70-3c50-4929-9860-d15b7b361df1', 'info': None, 'row': 3016, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.5937771890536, 22.38876305875905, 0]}}, {'type': 'Feature', 'properties': {'id': 'dbd5192f-2fe9-43b1-b5d8-2176f263d3f4', 'info': None, 'row': 3016, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.63182997155073, 22.39519361491725, 0]}}, {'type': 'Feature', 'properties': {'id': '363e84a5-cd9d-4682-8347-0ad2ea468135', 'info': None, 'row': 3016, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.66974221208554, 22.40159094009869, 0]}}, {'type': 'Feature', 'properties': {'id': '42d2ba46-5f1e-4dca-8043-676bd562f943', 'info': None, 'row': 3016, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.70751676127577, 22.40795561909285, 0]}}, {'type': 'Feature', 'properties': {'id': 'f564b765-8022-46db-8daa-33b16feeb9be', 'info': None, 'row': 3016, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.74515638388276, 22.41428821905031, 0]}}, {'type': 'Feature', 'properties': {'id': '354cc8cf-6312-4952-b2aa-807981b1f162', 'info': None, 'row': 3016, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.78266376230398, 22.420589290200144, 0]}}, {'type': 'Feature', 'properties': {'id': '558d4de7-3634-4d8e-a8f7-09245d6ea811', 'info': None, 'row': 3016, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.82004149988593, 22.426859366530437, 0]}}, {'type': 'Feature', 'properties': {'id': 'c7feb1ff-6e92-4f3a-bc85-34360dac4145', 'info': None, 'row': 3016, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.85729212406933, 22.433098966434486, 0]}}, {'type': 'Feature', 'properties': {'id': '8255c20c-4b94-4d0c-a6c1-def8f8d222f4', 'info': None, 'row': 3016, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.89441808937653, 22.439308593324423, 0]}}, {'type': 'Feature', 'properties': {'id': 'e2a5923e-1573-483f-8c38-461d17d68051', 'info': None, 'row': 3016, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.9314217802505, 22.44548873621445, 0]}}, {'type': 'Feature', 'properties': {'id': '94079aaa-f0dc-4db5-8808-761c88b10cf0', 'info': None, 'row': 3770, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.22142845951248, 22.239161535952956, 0]}}, {'type': 'Feature', 'properties': {'id': '01e91903-c8fc-4ed7-b65b-7efcc6d6be59', 'info': None, 'row': 3770, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.26104064911816, 22.245964313871454, 0]}}, {'type': 'Feature', 'properties': {'id': 'afcf4c1f-ed7f-45b3-90da-e721265ddc04', 'info': None, 'row': 3770, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.30047824780792, 22.252726879865293, 0]}}, {'type': 'Feature', 'properties': {'id': '76a5b833-52de-4acf-8fcf-01305b2a309c', 'info': None, 'row': 3770, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.33974520362867, 22.259450044449302, 0]}}, {'type': 'Feature', 'properties': {'id': 'cba8c71c-f214-4cbd-be25-579bfe73472d', 'info': None, 'row': 3770, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.3788453309176, 22.266134590660222, 0]}}, {'type': 'Feature', 'properties': {'id': '86480dbf-1821-42e2-86bc-3dd352fd5f0c', 'info': None, 'row': 3770, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.41778231642718, 22.272781275315342, 0]}}, {'type': 'Feature', 'properties': {'id': '35976cb0-a283-49ba-b708-ee88c5177950', 'info': None, 'row': 3770, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.45655972509635, 22.279390830198423, 0]}}, {'type': 'Feature', 'properties': {'id': '8ad5f46e-2281-462c-8449-f85661da4aab', 'info': None, 'row': 3770, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.49518100549287, 22.28596396317794, 0]}}, {'type': 'Feature', 'properties': {'id': 'c9087ea7-6caa-43e4-b168-29cea31cfd1d', 'info': None, 'row': 3770, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.53364949494919, 22.29250135926253, 0]}}, {'type': 'Feature', 'properties': {'id': 'a4b50692-a813-4891-a5cb-410aca458c2e', 'info': None, 'row': 3770, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.57196842441245, 22.299003681597537, 0]}}, {'type': 'Feature', 'properties': {'id': '2616a28f-6148-43dd-87a6-685263254fa6', 'info': None, 'row': 3770, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.61014092302827, 22.305471572406944, 0]}}, {'type': 'Feature', 'properties': {'id': '233d1d63-fc0f-4d18-a360-45daca9692dd', 'info': None, 'row': 3770, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.64817002247526, 22.31190565388406, 0]}}, {'type': 'Feature', 'properties': {'id': '0d960b12-7974-4a5b-a65f-03f6f28110fa', 'info': None, 'row': 3770, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.68605866106694, 22.31830652903448, 0]}}, {'type': 'Feature', 'properties': {'id': '83bd1d1b-2bc5-476f-91d8-a33f73f5d419', 'info': None, 'row': 3770, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.72380968763643, 22.32467478247424, 0]}}, {'type': 'Feature', 'properties': {'id': 'dfb4bab3-5570-4b09-9dde-bf72166a1056', 'info': None, 'row': 3770, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.76142586521671, 22.331010981186218, 0]}}, {'type': 'Feature', 'properties': {'id': '86d79a28-e32a-495e-8419-31b92adb91bb', 'info': None, 'row': 3770, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.7989098745307, 22.33731567523723, 0]}}, {'type': 'Feature', 'properties': {'id': 'fd18d803-c209-4b54-9766-cc31a2f03ea0', 'info': None, 'row': 3770, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.83626431730207, 22.343589398458388, 0]}}, {'type': 'Feature', 'properties': {'id': '84208f72-3e86-4f8f-8d75-d1568648e6ab', 'info': None, 'row': 3770, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.87349171939807, 22.349832669090993, 0]}}, {'type': 'Feature', 'properties': {'id': '80852d80-dd9b-45b4-8be5-73122ec2e900', 'info': None, 'row': 3770, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.9105945338151, 22.356045990400027, 0]}}, {'type': 'Feature', 'properties': {'id': '40c0dcb0-3284-4bd1-ae8a-598a0134812d', 'info': None, 'row': 3770, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.94757514351575, 22.362229851257098, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4f4cbaa-e26f-4563-b7ba-ebdcbc8fd363', 'info': None, 'row': 4524, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.23803385672487, 22.15583643203095, 0]}}, {'type': 'Feature', 'properties': {'id': '5e8910ee-7606-4a3c-ada8-50a1f013c46c', 'info': None, 'row': 4524, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.2776214406779, 22.16264247777952, 0]}}, {'type': 'Feature', 'properties': {'id': '1d4782f1-aebf-439a-a4a2-0d6ad02bd902', 'info': None, 'row': 4524, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.31703453638967, 22.16940833836986, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba1655e0-6f85-4668-90e3-f2feba33db7e', 'info': None, 'row': 4524, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.35627708939435, 22.176134824068317, 0]}}, {'type': 'Feature', 'properties': {'id': 'f62ae924-0199-45b8-95eb-22e7f0254973', 'info': None, 'row': 4524, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.39535291160573, 22.18282271767249, 0]}}, {'type': 'Feature', 'properties': {'id': '70f4ebc7-7789-496c-aeca-7f42d5745487', 'info': None, 'row': 4524, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.43426568743782, 22.189472775769318, 0]}}, {'type': 'Feature', 'properties': {'id': '8931fca5-cc01-4131-811b-2a8eb04b89ea', 'info': None, 'row': 4524, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.47301897957219, 22.196085729920565, 0]}}, {'type': 'Feature', 'properties': {'id': 'ee2ecb1c-cf73-440e-8b58-8c274dabf565', 'info': None, 'row': 4524, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.51161623439647, 22.20266228778071, 0]}}, {'type': 'Feature', 'properties': {'id': '6eef8649-9542-4742-b0a5-8958f05506ce', 'info': None, 'row': 4524, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.55006078713666, 22.20920313415198, 0]}}, {'type': 'Feature', 'properties': {'id': '36f54048-bf24-4d3d-b856-d8b4a71cc95b', 'info': None, 'row': 4524, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.5883558667038, 22.215708931980522, 0]}}, {'type': 'Feature', 'properties': {'id': '3f4b29a3-e405-4dbe-838c-3869d6d3d32f', 'info': None, 'row': 4524, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.62650460027459, 22.22218032329804, 0]}}, {'type': 'Feature', 'properties': {'id': 'd775ca08-56aa-4e83-a436-fdc81cd4f915', 'info': None, 'row': 4524, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.66451001762297, 22.228617930112136, 0]}}, {'type': 'Feature', 'properties': {'id': '4fdcb886-d7cd-48da-a509-cbeb7ca4d1b5', 'info': None, 'row': 4524, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.70237505521919, 22.235022355248947, 0]}}, {'type': 'Feature', 'properties': {'id': 'd1af84b8-77be-463c-8235-9180e4fe1f1c', 'info': None, 'row': 4524, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.74010256011178, 22.241394183151094, 0]}}, {'type': 'Feature', 'properties': {'id': '05844785-a543-4d89-ab34-ce278bd1bde8', 'info': None, 'row': 4524, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.7776952936055, 22.247733980633758, 0]}}, {'type': 'Feature', 'properties': {'id': '34141263-5c35-439a-8000-4aed6e6f9e46', 'info': None, 'row': 4524, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.81515593474876, 22.254042297601508, 0]}}, {'type': 'Feature', 'properties': {'id': 'c5866da5-ac2a-49f8-b3cb-d83d614b41bb', 'info': None, 'row': 4524, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.85248708364247, 22.26031966772848, 0]}}, {'type': 'Feature', 'properties': {'id': 'a37652cd-1814-4b7d-95e3-474b064fd4fe', 'info': None, 'row': 4524, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.88969126458052, 22.26656660910401, 0]}}, {'type': 'Feature', 'properties': {'id': '63724815-ccf2-4f73-82e0-b35b99a21e88', 'info': None, 'row': 4524, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.9267709290334, 22.272783624845907, 0]}}, {'type': 'Feature', 'properties': {'id': '77231e0f-d024-4ae9-bc50-9015b757ff7d', 'info': None, 'row': 4524, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.96372845848339, 22.278971203683227, 0]}}, {'type': 'Feature', 'properties': {'id': '4c23360b-fd84-4212-83da-b12a4136a493', 'info': None, 'row': 5278, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.25462261223964, 22.07257066341353, 0]}}, {'type': 'Feature', 'properties': {'id': 'e83255d3-dad0-4f14-88b6-5d3dbe0f44cb', 'info': None, 'row': 5278, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.29418583980319, 22.079379983261685, 0]}}, {'type': 'Feature', 'properties': {'id': '2b4f62c7-995e-4025-af47-111d4abb7e5d', 'info': None, 'row': 5278, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.33357468057082, 22.08614914452901, 0]}}, {'type': 'Feature', 'properties': {'id': '6daa7877-7b95-48b3-9985-69675920d348', 'info': None, 'row': 5278, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.37279307759408, 22.09287895723687, 0]}}, {'type': 'Feature', 'properties': {'id': 'e0e8f1ec-52ea-4a93-a9ab-c9a58981af34', 'info': None, 'row': 5278, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.41184484039226, 22.09957020394701, 0]}}, {'type': 'Feature', 'properties': {'id': '6b6c09f9-061c-4ebd-96e4-284cf14108c0', 'info': None, 'row': 5278, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.45073365106894, 22.106223641019195, 0]}}, {'type': 'Feature', 'properties': {'id': '766fd2c2-ed0b-46d5-946a-f7e88f3aadeb', 'info': None, 'row': 5278, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.48946307007522, 22.112839999796275, 0]}}, {'type': 'Feature', 'properties': {'id': '68b3fc6c-0221-4760-a6c6-726dfb4764d4', 'info': None, 'row': 5278, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.52803654164452, 22.119419987721685, 0]}}, {'type': 'Feature', 'properties': {'id': '91fb4841-b811-4f70-8dd2-78914b9d1f20', 'info': None, 'row': 5278, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.56645739892147, 22.125964289394062, 0]}}, {'type': 'Feature', 'properties': {'id': '64a4d428-e633-4cbb-bf37-0f151442cafb', 'info': None, 'row': 5278, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.60472886880517, 22.132473567563117, 0]}}, {'type': 'Feature', 'properties': {'id': '8ac68c66-6bb3-4aef-b068-783fd2267541', 'info': None, 'row': 5278, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.64285407652682, 22.138948464070914, 0]}}, {'type': 'Feature', 'properties': {'id': '02118e15-6ced-46cb-804b-d25f795d3a38', 'info': None, 'row': 5278, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.68083604997815, 22.145389600741872, 0]}}, {'type': 'Feature', 'properties': {'id': '6642c472-a872-4283-8bbb-fbc63e788e5c', 'info': None, 'row': 5278, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.71867772380803, 22.15179758022515, 0]}}, {'type': 'Feature', 'properties': {'id': '09927e1d-cf2c-4060-b3a3-d80d949ab780', 'info': None, 'row': 5278, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.75638194330148, 22.15817298679233, 0]}}, {'type': 'Feature', 'properties': {'id': 'd1dd6262-c2fa-4dc8-8dbe-8999a669587d', 'info': None, 'row': 5278, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.79395146805537, 22.164516387093144, 0]}}, {'type': 'Feature', 'properties': {'id': '1f13fda5-dd12-46d7-9249-8fbf37de0cb5', 'info': None, 'row': 5278, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.83138897546345, 22.170828330872176, 0]}}, {'type': 'Feature', 'properties': {'id': '4f81520c-7377-4da6-b4d3-b10fb6de6c55', 'info': None, 'row': 5278, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.86869706402284, 22.177109351648696, 0]}}, {'type': 'Feature', 'properties': {'id': '0a1984fc-f4ef-40d2-bc69-b9b074256391', 'info': None, 'row': 5278, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.90587825647265, 22.183359967362144, 0]}}, {'type': 'Feature', 'properties': {'id': '21e91df2-3971-4787-a421-38406bae5cb1', 'info': None, 'row': 5278, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.94293500277541, 22.189580680985152, 0]}}, {'type': 'Feature', 'properties': {'id': '752d981d-a3d8-46cf-ad04-1b4f6f5a6f53', 'info': None, 'row': 5278, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.97986968295044, 22.195771981106162, 0]}}, {'type': 'Feature', 'properties': {'id': '2921c34d-b750-471a-8638-80239dd58afa', 'info': None, 'row': 6032, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.27121127969059, 21.989305213461112, 0]}}, {'type': 'Feature', 'properties': {'id': '087e93c2-b717-441c-9cfd-69c73b7aa840', 'info': None, 'row': 6032, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.31075015218009, 21.996117807461744, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca10e6c7-20bc-4317-83f8-88b9499ad1d3', 'info': None, 'row': 6032, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.3501147393125, 22.002890269457865, 0]}}, {'type': 'Feature', 'properties': {'id': '4df41464-b668-4309-ac2f-05243d3e57a9', 'info': None, 'row': 6032, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.38930898165694, 22.009623409225878, 0]}}, {'type': 'Feature', 'properties': {'id': '0a206b83-21c3-47de-a82d-6d681d84b39e', 'info': None, 'row': 6032, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.42833668633835, 22.01631800909171, 0]}}, {'type': 'Feature', 'properties': {'id': 'c0ab7d67-ed6c-43d6-82ea-ab97c02af1cb', 'info': None, 'row': 6032, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.46720153315003, 22.022974825187955, 0]}}, {'type': 'Feature', 'properties': {'id': '1a3ca005-a9ed-4ab3-90be-b64be4d6b4b7', 'info': None, 'row': 6032, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.50590708031272, 22.02959458863858, 0]}}, {'type': 'Feature', 'properties': {'id': 'be74d6ac-35fc-45b6-98bf-f9f614ac7602', 'info': None, 'row': 6032, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.5444567699058, 22.036178006675982, 0]}}, {'type': 'Feature', 'properties': {'id': '86cdebfa-d4b4-4a3b-ab4c-35f2e93f9949', 'info': None, 'row': 6032, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.58285393299265, 22.042725763695238, 0]}}, {'type': 'Feature', 'properties': {'id': '36d7b019-b9af-43d2-a4d5-e75e719b14ef', 'info': None, 'row': 6032, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.6211017944606, 22.04923852224963, 0]}}, {'type': 'Feature', 'properties': {'id': 'b91a97b4-ae26-46f3-97e7-7242a746170b', 'info': None, 'row': 6032, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.65920347759538, 22.05571692399158, 0]}}, {'type': 'Feature', 'properties': {'id': '5e9e8a24-bde2-4577-8cf8-75bc6b8520b5', 'info': None, 'row': 6032, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.69716200840674, 22.062161590562372, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb502a90-a8a5-47e4-a365-d49c1546f83c', 'info': None, 'row': 6032, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.73498031972218, 22.068573124434188, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb6ee4b4-9c93-439d-8adb-6676e5ba9203', 'info': None, 'row': 6032, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.77266125506337, 22.074952109707574, 0]}}, {'type': 'Feature', 'properties': {'id': '94d6b5c2-e88e-46bc-8614-d4ca5e7975f4', 'info': None, 'row': 6032, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.81020757231941, 22.08129911286685, 0]}}, {'type': 'Feature', 'properties': {'id': 'ccf0e649-e2ef-457c-ae1f-246fc910c04a', 'info': None, 'row': 6032, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.84762194722951, 22.0876146834966, 0]}}, {'type': 'Feature', 'properties': {'id': 'a39b8c66-bab8-4ef4-816b-fbee65286c86', 'info': None, 'row': 6032, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.88490697668706, 22.09389935496125, 0]}}, {'type': 'Feature', 'properties': {'id': '076bbb4c-bcb2-4bcb-bcd4-42aeb5e6d3b9', 'info': None, 'row': 6032, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.9220651818765, 22.10015364505037, 0]}}, {'type': 'Feature', 'properties': {'id': '8afa7453-a8f8-4d2f-8b99-e44baed2bb20', 'info': None, 'row': 6032, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.95909901125252, 22.10637805659141, 0]}}, {'type': 'Feature', 'properties': {'id': '29c00886-71d7-4c95-8c38-e9ed59dd5ca1', 'info': None, 'row': 6032, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.99601084337148, 22.11257307803223, 0]}}, {'type': 'Feature', 'properties': {'id': 'e651a301-4e85-476c-bc23-ba5b1258e0d8', 'info': None, 'row': 6786, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.28778343517328, 21.906099513197816, 0]}}, {'type': 'Feature', 'properties': {'id': 'fa269749-c2ef-4f5b-95e5-bb2034b37b8c', 'info': None, 'row': 6786, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.3272981992296, 21.912915391266232, 0]}}, {'type': 'Feature', 'properties': {'id': 'd23a7d1c-a560-4acd-bb76-ecc5e50375c8', 'info': None, 'row': 6786, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.36663877815128, 21.91969116370526, 0]}}, {'type': 'Feature', 'properties': {'id': 'f88d0dbb-cb57-4adc-bd1d-d76af7956845', 'info': None, 'row': 6786, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.4058091100548, 21.926427640050104, 0]}}, {'type': 'Feature', 'properties': {'id': 'bd9e55e6-40a3-475c-a78a-5676eb07b96e', 'info': None, 'row': 6786, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.44481299969956, 21.933125602394483, 0]}}, {'type': 'Feature', 'properties': {'id': 'ffa641cb-47bf-48ee-8605-a3863368621b', 'info': None, 'row': 6786, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.48365412459609, 21.9397858066473, 0]}}, {'type': 'Feature', 'properties': {'id': '9e851a10-e744-4cdd-8b1d-b0906915b522', 'info': None, 'row': 6786, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.52233604076154, 21.946408983717006, 0]}}, {'type': 'Feature', 'properties': {'id': '7ed8fa25-3d22-463f-8d69-3189ebc55d58', 'info': None, 'row': 6786, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.56086218814696, 21.952995840628176, 0]}}, {'type': 'Feature', 'properties': {'id': '03731dc0-5553-4634-95c1-8dc396368d9f', 'info': None, 'row': 6786, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5992358957592, 21.959547061575442, 0]}}, {'type': 'Feature', 'properties': {'id': 'ffea0224-3201-45c8-8563-9d791256fe35', 'info': None, 'row': 6786, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.63746038649782, 21.966063308918656, 0]}}, {'type': 'Feature', 'properties': {'id': '04556ffb-667c-4e76-8f94-dab0cb4adfaa', 'info': None, 'row': 6786, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.67553878172625, 21.972545224123493, 0]}}, {'type': 'Feature', 'properties': {'id': 'abd8d61d-54af-4898-b2a4-a740e4703dc0', 'info': None, 'row': 6786, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.71347410559454, 21.978993428650874, 0]}}, {'type': 'Feature', 'properties': {'id': '576bdd6e-382a-4f96-acd2-8203164254f1', 'info': None, 'row': 6786, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.75126928913046, 21.98540852479873, 0]}}, {'type': 'Feature', 'properties': {'id': '51795b6b-8188-4ab3-b6a0-c8837e808df8', 'info': None, 'row': 6786, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.78892717411324, 21.991791096499128, 0]}}, {'type': 'Feature', 'properties': {'id': 'd46deb75-8093-42b9-be4f-66a56509f8dd', 'info': None, 'row': 6786, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.82645051674433, 21.99814171007351, 0]}}, {'type': 'Feature', 'properties': {'id': 'da97b576-811c-4f99-8ab6-5bbecc6a7847', 'info': None, 'row': 6786, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.86384199112788, 22.00446091494888, 0]}}, {'type': 'Feature', 'properties': {'id': '6772c3f5-b9bf-4155-a30c-f1fa72284aa1', 'info': None, 'row': 6786, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.90110419257269, 22.010749244337184, 0]}}, {'type': 'Feature', 'properties': {'id': '395e637e-9cd9-48ce-bbc6-406b9b67026e', 'info': None, 'row': 6786, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.93823964072672, 22.017007215880376, 0]}}, {'type': 'Feature', 'properties': {'id': '18d36fe8-e7fa-4658-9bec-530dab23bf24', 'info': None, 'row': 6786, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.97525078255454, 22.023235332262935, 0]}}, {'type': 'Feature', 'properties': {'id': '7578dfc0-d463-4d78-9381-43b0ca033977', 'info': None, 'row': 6786, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.01213999516685, 22.02943408179423, 0]}}, {'type': 'Feature', 'properties': {'id': '75b15377-2596-469f-bb3f-368518b337b4', 'info': None, 'row': 7540, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.30435589224811, 21.82289215035737, 0]}}, {'type': 'Feature', 'properties': {'id': '5f754cbd-e916-4f13-83c3-c0da5ca9d0a6', 'info': None, 'row': 7540, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.34384654892156, 21.82971131261178, 0]}}, {'type': 'Feature', 'properties': {'id': 'd144f44d-9893-4a7d-835a-9a6be49e19e2', 'info': None, 'row': 7540, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.38316312067718, 21.836490395611357, 0]}}, {'type': 'Feature', 'properties': {'id': 'be911498-5511-41fb-9642-ae6716745fc7', 'info': None, 'row': 7540, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.4223095431789, 21.843230208650123, 0]}}, {'type': 'Feature', 'properties': {'id': 'c2ce4b2b-a5d8-46ba-ab76-fc619d0b8555', 'info': None, 'row': 7540, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.46128961882074, 21.849931533589604, 0]}}, {'type': 'Feature', 'properties': {'id': '20e3aae8-f16e-4edf-ad49-f1d147a80a66', 'info': None, 'row': 7540, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5001070228306, 21.856595126115046, 0]}}, {'type': 'Feature', 'properties': {'id': '86c55012-a573-4a15-9d29-585b8c8e60cd', 'info': None, 'row': 7540, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.53876530902212, 21.86322171691937, 0]}}, {'type': 'Feature', 'properties': {'id': '9a843911-4bd8-4c8a-a88e-4c6586fc7bf2', 'info': None, 'row': 7540, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.57726791521817, 21.86981201281937, 0]}}, {'type': 'Feature', 'properties': {'id': '59e1a079-8815-4301-b6d9-2cfa090bb1d8', 'info': None, 'row': 7540, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.61561816836921, 21.876366697809225, 0]}}, {'type': 'Feature', 'properties': {'id': 'e99c7f6d-d3d9-40e3-b9a8-92dc66e2e05c', 'info': None, 'row': 7540, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.65381928938716, 21.88288643405538, 0]}}, {'type': 'Feature', 'properties': {'id': '8055e21a-9482-41e0-ae3f-c91d0eb66ce7', 'info': None, 'row': 7540, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.69187439771312, 21.889371862836775, 0]}}, {'type': 'Feature', 'properties': {'id': '2b7f359f-7d5d-42c4-b469-4428486afb31', 'info': None, 'row': 7540, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.72978651563773, 21.89582360543398, 0]}}, {'type': 'Feature', 'properties': {'id': '0c80bf47-cdd3-4819-99fe-45a07215fe58', 'info': None, 'row': 7540, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.76755857238898, 21.90224226397068, 0]}}, {'type': 'Feature', 'properties': {'id': '582bc619-826e-4ecd-a32c-084b9d20b15b', 'info': None, 'row': 7540, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.8051934080038, 21.908628422210487, 0]}}, {'type': 'Feature', 'properties': {'id': '02c84da2-df39-46c0-8e3f-31f57d679da4', 'info': None, 'row': 7540, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.8426937769961, 21.914982646311966, 0]}}, {'type': 'Feature', 'properties': {'id': '8236adcf-f4e6-4f47-9ec0-da24d13f0b8a', 'info': None, 'row': 7540, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.88006235183512, 21.921305485544544, 0]}}, {'type': 'Feature', 'properties': {'id': 'de5206a0-44a2-432a-b31b-587809073c50', 'info': None, 'row': 7540, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.91730172624503, 21.927597472967722, 0]}}, {'type': 'Feature', 'properties': {'id': '57dd90ca-8290-448d-acc5-4f419156f1fb', 'info': None, 'row': 7540, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.95441441833748, 21.933859126075816, 0]}}, {'type': 'Feature', 'properties': {'id': '9e5d8678-2bc6-4f56-ae4f-0bc7c1005f91', 'info': None, 'row': 7540, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.99140287358699, 21.940090947410376, 0]}}, {'type': 'Feature', 'properties': {'id': '3b00dc4c-0af3-4c92-afba-172c5b4f2807', 'info': None, 'row': 7540, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.02826946765866, 21.946293425142258, 0]}}, {'type': 'Feature', 'properties': {'id': '36e620f0-38e0-47ef-a276-b78645418551', 'info': None, 'row': 8294, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.3209735278258, 21.739435733460372, 0]}}, {'type': 'Feature', 'properties': {'id': '30e7ba80-d973-4511-903c-9b8098c686dc', 'info': None, 'row': 8294, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.36044023445311, 21.74625819760766, 0]}}, {'type': 'Feature', 'properties': {'id': '0ee91849-e61d-4d98-b7c0-3f6c12759090', 'info': None, 'row': 8294, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.39973295553105, 21.753040608790315, 0]}}, {'type': 'Feature', 'properties': {'id': '2cc1cf70-a08b-4a55-a272-8e6cf12a2c1a', 'info': None, 'row': 8294, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.43885562429179, 21.759783776063593, 0]}}, {'type': 'Feature', 'properties': {'id': 'd303fa61-370a-4960-b190-a98759680e62', 'info': None, 'row': 8294, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.47781204078385, 21.766488481059184, 0]}}, {'type': 'Feature', 'properties': {'id': 'accf606c-754f-4918-af86-bf561a8e803e', 'info': None, 'row': 8294, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5166058779719, 21.77315547924092, 0]}}, {'type': 'Feature', 'properties': {'id': '199f510c-3e24-4d0c-9a64-da6b0bf1439f', 'info': None, 'row': 8294, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.55524068748451, 21.77978550108837, 0]}}, {'type': 'Feature', 'properties': {'id': 'e217f1a4-079e-4f62-8e3f-a538885d84f3', 'info': None, 'row': 8294, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.59371990503428, 21.7863792532126, 0]}}, {'type': 'Feature', 'properties': {'id': '414ba88d-b67c-4e53-8184-ad3c9b81aaab', 'info': None, 'row': 8294, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.63204685553251, 21.792937419409377, 0]}}, {'type': 'Feature', 'properties': {'id': '54cb1c4c-51db-4a8a-860e-233f79a81209', 'info': None, 'row': 8294, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.67022475792001, 21.799460661653633, 0]}}, {'type': 'Feature', 'properties': {'id': '468c9ae5-8780-49c5-97c7-2c1a8cae46e7', 'info': None, 'row': 8294, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.70825672973179, 21.805949621039446, 0]}}, {'type': 'Feature', 'properties': {'id': 'ce5b25f6-fbd4-4b12-ba95-8232fff99bec', 'info': None, 'row': 8294, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.74614579141436, 21.812404918668836, 0]}}, {'type': 'Feature', 'properties': {'id': 'fdddff4b-ca2b-4715-907c-a283d407ef7c', 'info': None, 'row': 8294, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.78389487041107, 21.81882715649293, 0]}}, {'type': 'Feature', 'properties': {'id': '591f61b5-caad-428e-b436-7fc9bb4832c9', 'info': None, 'row': 8294, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.82150680503091, 21.82521691810858, 0]}}, {'type': 'Feature', 'properties': {'id': '3da400af-95d4-4f35-92e9-a15bfcb6cd54', 'info': None, 'row': 8294, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.85898434811429, 21.83157476951308, 0]}}, {'type': 'Feature', 'properties': {'id': '4113878d-7b68-4f7d-ac5d-9e25d9bb9f10', 'info': None, 'row': 8294, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.89633017050903, 21.837901259819844, 0]}}, {'type': 'Feature', 'properties': {'id': 'c46651ac-202c-4bfe-999c-4afcf443b9a4', 'info': None, 'row': 8294, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.93354686436776, 21.844196921937375, 0]}}, {'type': 'Feature', 'properties': {'id': '6b085082-a96b-469f-a21b-f76155c54f7c', 'info': None, 'row': 8294, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.97063694627843, 21.85046227321382, 0]}}, {'type': 'Feature', 'properties': {'id': 'a83a5b82-dbe3-4834-885f-8d519edab55b', 'info': None, 'row': 8294, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.00760286023785, 21.8566978160492, 0]}}, {'type': 'Feature', 'properties': {'id': '433ccb77-f710-40d0-8e46-99b9fa580537', 'info': None, 'row': 8294, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.04444698047737, 21.862904038477232, 0]}}, {'type': 'Feature', 'properties': {'id': '334b2314-48d9-4118-bb35-8e6a26be2094', 'info': None, 'row': 9048, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.33759083741846, 21.65598078384963, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3b7a17d-5ebf-4653-83be-cce6bafa35c7', 'info': None, 'row': 9048, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.37703359623752, 21.662806549939422, 0]}}, {'type': 'Feature', 'properties': {'id': '044ab3f0-7dc1-4833-8a8d-ee414a98812c', 'info': None, 'row': 9048, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.41630246886486, 21.669592289352828, 0]}}, {'type': 'Feature', 'properties': {'id': 'f6c44021-682d-41f0-9a5d-d31d695d6a2d', 'info': None, 'row': 9048, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.45540138610113, 21.67633881090636, 0]}}, {'type': 'Feature', 'properties': {'id': '85fac8f4-b856-43a6-b5df-687fba279f2b', 'info': None, 'row': 9048, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.49433414564962, 21.683046896001898, 0]}}, {'type': 'Feature', 'properties': {'id': 'fb4163ea-d1f8-444f-8a8b-34ce08d3fa21', 'info': None, 'row': 9048, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.53310441821198, 21.689717299881906, 0]}}, {'type': 'Feature', 'properties': {'id': 'a271704f-1fa2-4925-a903-43c23c13b305', 'info': None, 'row': 9048, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.57171575323201, 21.696350752812616, 0]}}, {'type': 'Feature', 'properties': {'id': '96bb01af-f08c-4df3-b67b-6fbf4102b4f1', 'info': None, 'row': 9048, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.61017158431218, 21.70294796119942, 0]}}, {'type': 'Feature', 'properties': {'id': '897b5637-c036-49d9-92ea-a1bfbd4f0dd6', 'info': None, 'row': 9048, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.64847523432495, 21.709509608639667, 0]}}, {'type': 'Feature', 'properties': {'id': '5365a9e2-1da5-4c4d-96f0-6ee2339e807c', 'info': None, 'row': 9048, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.68662992024022, 21.71603635691683, 0]}}, {'type': 'Feature', 'properties': {'id': '468b9cd6-61b2-45a9-a1cc-2bb84c5fba68', 'info': None, 'row': 9048, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.72463875768703, 21.72252884694014, 0]}}, {'type': 'Feature', 'properties': {'id': '5c263f4e-57b9-4558-9024-283241cc5d1b', 'info': None, 'row': 9048, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.76250476526808, 21.728987699633088, 0]}}, {'type': 'Feature', 'properties': {'id': 'e31e1b3e-87fc-4775-9482-ffadc033f76e', 'info': None, 'row': 9048, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.80023086864215, 21.73541351677428, 0]}}, {'type': 'Feature', 'properties': {'id': '111c2d83-f09a-40e3-8491-d9d473c55b25', 'info': None, 'row': 9048, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.83781990439051, 21.741806881793828, 0]}}, {'type': 'Feature', 'properties': {'id': 'e57d9ec2-e958-458e-9966-b3c7a1f99728', 'info': None, 'row': 9048, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.87527462368034, 21.748168360527757, 0]}}, {'type': 'Feature', 'properties': {'id': 'd07a8200-be8c-481b-8168-4e017e5336d2', 'info': None, 'row': 9048, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.91259769573814, 21.754498501933515, 0]}}, {'type': 'Feature', 'properties': {'id': '975fdc7e-d703-4d9f-abdd-a7620df10d56', 'info': None, 'row': 9048, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.94979171114514, 21.760797838768614, 0]}}, {'type': 'Feature', 'properties': {'id': '159b8ae7-4850-41eb-9194-c037f8219e62', 'info': None, 'row': 9048, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.98685918496585, 21.767066888235075, 0]}}, {'type': 'Feature', 'properties': {'id': '478d63ff-e5ca-43c6-80c4-88256a3f0945', 'info': None, 'row': 9048, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.0238025597194, 21.773306152591378, 0]}}, {'type': 'Feature', 'properties': {'id': '9fced127-8526-40f5-9fd5-9746d93eaf72', 'info': None, 'row': 9048, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.06062420820369, 21.779516119734144, 0]}}, {'type': 'Feature', 'properties': {'id': 'e84c3b71-47ab-4529-8af3-3c89f2ea7079', 'info': None, 'row': 9802, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.35416750754766, 21.572708755925596, 0]}}, {'type': 'Feature', 'properties': {'id': '1cd23c8d-eb2d-4166-b47f-23461f305fe5', 'info': None, 'row': 9802, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.39358659754922, 21.579537830145526, 0]}}, {'type': 'Feature', 'properties': {'id': '7b306954-18ad-4d87-afea-e008b8249983', 'info': None, 'row': 9802, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.43283189936683, 21.58632690373245, 0]}}, {'type': 'Feature', 'properties': {'id': '62a9dcac-9403-44ec-bd0b-f0a0e14dec76', 'info': None, 'row': 9802, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.47190734140267, 21.593076785268423, 0]}}, {'type': 'Feature', 'properties': {'id': 'd89716b4-6cb2-4057-af41-c10fe10d95c6', 'info': None, 'row': 9802, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.51081671904672, 21.59978825592954, 0]}}, {'type': 'Feature', 'properties': {'id': 'd56e382e-1f37-4f81-bd0c-3f1d6616761e', 'info': None, 'row': 9802, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.54956370076829, 21.60646207074083, 0]}}, {'type': 'Feature', 'properties': {'id': '45af1fb6-94ba-442f-b9fa-7d32e71b45ff', 'info': None, 'row': 9802, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.58815183385602, 21.61309895975893, 0]}}, {'type': 'Feature', 'properties': {'id': '7f20fe95-a128-4eb2-b0e1-b313b60ee345', 'info': None, 'row': 9802, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.62658454983084, 21.619699629187178, 0]}}, {'type': 'Feature', 'properties': {'id': '537b2452-26b5-48fc-9409-95ea5ee24792', 'info': None, 'row': 9802, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.66486516955389, 21.626264762428015, 0]}}, {'type': 'Feature', 'properties': {'id': '4dd8ae14-74c9-457c-b82a-ac1afcc20765', 'info': None, 'row': 9802, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7029969080508, 21.63279502107683, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3a885f2-88bc-440a-8b8b-b18a01e856b4', 'info': None, 'row': 9802, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.74098287907037, 21.639291045861242, 0]}}, {'type': 'Feature', 'properties': {'id': '7d9a3650-c918-478f-a20f-3675195a0c2b', 'info': None, 'row': 9802, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.77882609939627, 21.645753457529334, 0]}}, {'type': 'Feature', 'properties': {'id': 'ac952578-2962-42c4-b2eb-a908bdf25968', 'info': None, 'row': 9802, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.81652949292678, 21.652182857690256, 0]}}, {'type': 'Feature', 'properties': {'id': '148d6828-e09d-4d75-8faa-82ffff9a522c', 'info': None, 'row': 9802, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.85409589453872, 21.65857982961026, 0]}}, {'type': 'Feature', 'properties': {'id': '77e1df09-7421-44ca-a71d-57d3200ee4e1', 'info': None, 'row': 9802, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.8915280537483, 21.66494493896696, 0]}}, {'type': 'Feature', 'properties': {'id': '27696622-8dbb-48b8-b295-04e79416b2ef', 'info': None, 'row': 9802, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.92882863818255, 21.67127873456454, 0]}}, {'type': 'Feature', 'properties': {'id': 'a61c0154-4fa8-420f-b0af-34a73cf7404c', 'info': None, 'row': 9802, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.96600023687242, 21.67758174901219, 0]}}, {'type': 'Feature', 'properties': {'id': '968af0a7-23ad-4ba5-ba62-fe984ed8f3ce', 'info': None, 'row': 9802, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.00304536337927, 21.683854499368337, 0]}}, {'type': 'Feature', 'properties': {'id': '15a947fa-446c-4835-82ce-0866b3fe026e', 'info': None, 'row': 9802, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.03996645876435, 21.69009748775241, 0]}}, {'type': 'Feature', 'properties': {'id': '8ec0b807-d436-4d70-9852-aef336fe5746', 'info': None, 'row': 9802, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.07676589441117, 21.6963112019263, 0]}}, {'type': 'Feature', 'properties': {'id': '36542e64-caa8-415b-9174-a5181a10c4b8', 'info': None, 'row': 10556, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.37074402880062, 21.489437287107858, 0]}}, {'type': 'Feature', 'properties': {'id': 'ecfe154a-faac-47b1-853d-5ec5764ef4bc', 'info': None, 'row': 10556, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.41013945224904, 21.496269669554785, 0]}}, {'type': 'Feature', 'properties': {'id': '740e3c34-2144-4585-b379-2a7097ab3cdc', 'info': None, 'row': 10556, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.44936118551006, 21.503062077410227, 0]}}, {'type': 'Feature', 'properties': {'id': 'b91cfaae-3029-4bad-886f-cacd1ba20242', 'info': None, 'row': 10556, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.48841315458766, 21.509815319021808, 0]}}, {'type': 'Feature', 'properties': {'id': 'c68019da-61d7-4ca1-850c-b0197c556338', 'info': None, 'row': 10556, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.52729915255883, 21.516530175339852, 0]}}, {'type': 'Feature', 'properties': {'id': '96a9dc23-8611-4bea-a226-826244bad0da', 'info': None, 'row': 10556, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.56602284566073, 21.52320740117201, 0]}}, {'type': 'Feature', 'properties': {'id': '3428ce12-07e2-4310-b032-36e4d661646c', 'info': None, 'row': 10556, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.60458777902713, 21.52984772636534, 0]}}, {'type': 'Feature', 'properties': {'id': '57a1ae53-a083-468c-af5b-482c6600b75b', 'info': None, 'row': 10556, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.64299738209766, 21.53645185692117, 0]}}, {'type': 'Feature', 'properties': {'id': '3f08e733-a5cb-4639-856e-f92252fb6ae1', 'info': None, 'row': 10556, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.68125497372236, 21.54302047604706, 0]}}, {'type': 'Feature', 'properties': {'id': '5a2fdc69-f74c-447e-99ce-08601acea718', 'info': None, 'row': 10556, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7193637669828, 21.54955424515033, 0]}}, {'type': 'Feature', 'properties': {'id': 'cd4e68aa-10fe-4c9f-88e8-d35997dac347', 'info': None, 'row': 10556, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.75732687374774, 21.55605380477702, 0]}}, {'type': 'Feature', 'properties': {'id': '9e36a445-5491-49f6-943f-f4b0b4fbe077', 'info': None, 'row': 10556, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.79514730898205, 21.562519775499837, 0]}}, {'type': 'Feature', 'properties': {'id': '2f4bfad7-38ba-499a-8717-a3b5436910be', 'info': None, 'row': 10556, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.83282799482373, 21.568952758758495, 0]}}, {'type': 'Feature', 'properties': {'id': '3aaa66b3-ac0d-465c-8170-3baa7fd5a002', 'info': None, 'row': 10556, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.87037176444522, 21.575353337655418, 0]}}, {'type': 'Feature', 'properties': {'id': '7780c87f-2a4f-4448-a4f9-bc191cb74072', 'info': None, 'row': 10556, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.90778136571215, 21.581722077709827, 0]}}, {'type': 'Feature', 'properties': {'id': '4b1b535c-102f-41b3-ba78-31984334c6c6', 'info': None, 'row': 10556, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.94505946465213, 21.588059527572657, 0]}}, {'type': 'Feature', 'properties': {'id': '2d15bfb2-2bae-493c-a664-32d1cbef3caf', 'info': None, 'row': 10556, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.98220864874601, 21.59436621970481, 0]}}, {'type': 'Feature', 'properties': {'id': '6e01b91e-0fee-41cd-8ad3-0073d1f13d77', 'info': None, 'row': 10556, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.01923143005219, 21.600642671021134, 0]}}, {'type': 'Feature', 'properties': {'id': 'd4a6b37a-1208-4a39-95dd-39f8dd3a0843', 'info': None, 'row': 10556, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.05613024817421, 21.60688938350203, 0]}}, {'type': 'Feature', 'properties': {'id': '581f6f7b-188b-4e0f-b758-8c9ebe928c02', 'info': None, 'row': 10556, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.09290747308131, 21.61310684477467, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc94ffeb-3e61-4c94-9b91-7b549612efdf', 'info': None, 'row': 11310, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.38730466283423, 21.406225482919048, 0]}}, {'type': 'Feature', 'properties': {'id': '972a6616-d6d7-4aef-8d41-296983dcaedd', 'info': None, 'row': 11310, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.42667666136606, 21.413061183930143, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6d341c3-3d35-4225-8b12-c7606e955426', 'info': None, 'row': 11310, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.46587506651174, 21.41985693619145, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca953882-b81d-4026-a566-cfd735407587', 'info': None, 'row': 11310, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.50490380190655, 21.42661354781992, 0]}}, {'type': 'Feature', 'properties': {'id': '7cea7e9a-3bc4-4693-9b64-1d0f76510cee', 'info': None, 'row': 11310, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.54376665834249, 21.43333179954377, 0]}}, {'type': 'Feature', 'properties': {'id': '96735a58-282f-4128-bf9e-68c1eea8c40e', 'info': None, 'row': 11310, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5824672998519, 21.440012445956697, 0]}}, {'type': 'Feature', 'properties': {'id': 'a346a17f-563f-4bb7-b86b-5b9dd230e75f', 'info': None, 'row': 11310, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.62100926943981, 21.44665621669959, 0]}}, {'type': 'Feature', 'properties': {'id': '6f3bb129-472a-4094-bfca-c1cd7ad9ca9c', 'info': None, 'row': 11310, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.65939599448987, 21.453263817574964, 0]}}, {'type': 'Feature', 'properties': {'id': '0b154ff2-ec70-4b18-a6f0-0d6b2122eed5', 'info': None, 'row': 11310, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.6976307918654, 21.459835931598597, 0]}}, {'type': 'Feature', 'properties': {'id': 'f95b72ed-7a21-4ef1-84e3-9210da6a2b72', 'info': None, 'row': 11310, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.73571687272744, 21.466373219992747, 0]}}, {'type': 'Feature', 'properties': {'id': '22acdf7f-3e54-4c4a-aac1-2a82f6f98864', 'info': None, 'row': 11310, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.7736573470875, 21.47287632312476, 0]}}, {'type': 'Feature', 'properties': {'id': '4805b290-d020-4d24-bc44-f2d7dfedd54b', 'info': None, 'row': 11310, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.81145522811349, 21.479345861394783, 0]}}, {'type': 'Feature', 'properties': {'id': '56a9472f-6207-4411-8981-3669638fead3', 'info': None, 'row': 11310, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.84911343620439, 21.485782436075745, 0]}}, {'type': 'Feature', 'properties': {'id': '5927fb29-8524-42b1-a89e-510f2c738798', 'info': None, 'row': 11310, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.88663480284893, 21.49218663010886, 0]}}, {'type': 'Feature', 'properties': {'id': '2896baee-f52e-438f-97fc-243cda3c5666', 'info': None, 'row': 11310, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.92402207428182, 21.49855900885747, 0]}}, {'type': 'Feature', 'properties': {'id': '9bb57826-52c5-4ece-87b2-125d42f6ce9d', 'info': None, 'row': 11310, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.96127791495059, 21.504900120821674, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4fb0ab0-8345-4d48-9549-fc2fce572225', 'info': None, 'row': 11310, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.99840491080448, 21.511210498316437, 0]}}, {'type': 'Feature', 'properties': {'id': 'd05b3fa9-4b1b-4682-bcf1-e2635026b207', 'info': None, 'row': 11310, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.03540557241703, 21.517490658115303, 0]}}, {'type': 'Feature', 'properties': {'id': '8a5a7b5f-ffa8-4bdf-9893-cb60c72b7a15', 'info': None, 'row': 11310, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.0722823379515, 21.52374110206182, 0]}}, {'type': 'Feature', 'properties': {'id': 'ab84b497-3276-4978-91b4-239dcb54e4e9', 'info': None, 'row': 11310, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.10903757597976, 21.529962317650607, 0]}}, {'type': 'Feature', 'properties': {'id': '4fc60c34-c1cf-4900-86cd-87a4a176adf3', 'info': None, 'row': 12064, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.40386539187946, 21.32301299577244, 0]}}, {'type': 'Feature', 'properties': {'id': '598e586b-0144-4646-85bf-9803526ca96f', 'info': None, 'row': 12064, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.4432139677071, 21.32985201546722, 0]}}, {'type': 'Feature', 'properties': {'id': '78ce85c2-b4b6-4d4e-acd3-e308271f6789', 'info': None, 'row': 12064, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.48238904693854, 21.33665111225236, 0]}}, {'type': 'Feature', 'properties': {'id': 'a23bf9e6-21cc-49ca-9d8e-9b3d2e1ebec9', 'info': None, 'row': 12064, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.52139455084061, 21.34341109401416, 0]}}, {'type': 'Feature', 'properties': {'id': '3323a385-47b7-4afa-8f18-f3e7ac3389bd', 'info': None, 'row': 12064, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.5602342679207, 21.350132741258776, 0]}}, {'type': 'Feature', 'properties': {'id': '5dea3869-1f95-4eff-a533-a9fab273ecc4', 'info': None, 'row': 12064, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.59891186000651, 21.356816808365974, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6b2f3a5-6dd5-4699-9a65-bc2539980d01', 'info': None, 'row': 12064, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.63743086797462, 21.363464024770494, 0]}}, {'type': 'Feature', 'properties': {'id': '08bd3659-b2be-4c34-a811-93e92e29b5df', 'info': None, 'row': 12064, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.67579471715285, 21.37007509607607, 0]}}, {'type': 'Feature', 'properties': {'id': '9ed7a93d-eb3b-4ee6-8be5-47ec7bd35552', 'info': None, 'row': 12064, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.71400672241812, 21.376650705106737, 0]}}, {'type': 'Feature', 'properties': {'id': '2802fce2-0c7a-43f1-96b6-d208d930f96b', 'info': None, 'row': 12064, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.75207009301111, 21.383191512899696, 0]}}, {'type': 'Feature', 'properties': {'id': '60f943d9-8934-4597-b591-cfb831bbf27b', 'info': None, 'row': 12064, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.7899879370863, 21.389698159643654, 0]}}, {'type': 'Feature', 'properties': {'id': '8f71db13-ec5d-4ef4-9d9d-34162208dcf2', 'info': None, 'row': 12064, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.82776326601493, 21.396171265566185, 0]}}, {'type': 'Feature', 'properties': {'id': '1939ee2f-1446-4157-a487-941b865b02b4', 'info': None, 'row': 12064, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.8653989984571, 21.402611431773483, 0]}}, {'type': 'Feature', 'properties': {'id': 'f51a6df8-10ea-407a-afba-cc35c7987b74', 'info': None, 'row': 12064, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.90289796421794, 21.409019241045574, 0]}}, {'type': 'Feature', 'properties': {'id': 'c04e5e8d-7fe5-4359-b295-3328ed249c41', 'info': None, 'row': 12064, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.94026290790153, 21.415395258589918, 0]}}, {'type': 'Feature', 'properties': {'id': '1807b1c9-9c0a-4057-9059-e8d221b63046', 'info': None, 'row': 12064, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.97749649237542, 21.42174003275582, 0]}}, {'type': 'Feature', 'properties': {'id': 'bea5fdf4-0669-4a15-b4d8-25f09b454bde', 'info': None, 'row': 12064, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.01460130205759, 21.428054095712337, 0]}}, {'type': 'Feature', 'properties': {'id': '5ffb2061-7249-40f2-8024-d09b5b47c35a', 'info': None, 'row': 12064, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.0515798460367, 21.4343379640917, 0]}}, {'type': 'Feature', 'properties': {'id': '55ec37dc-aa40-4039-b31c-621a7bdb7447', 'info': None, 'row': 12064, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.08843456103594, 21.44059213960064, 0]}}, {'type': 'Feature', 'properties': {'id': '3fb3ea67-258d-4cb1-8598-cc71bccda890', 'info': None, 'row': 12064, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.12516781422997, 21.44681710960124, 0]}}, {'type': 'Feature', 'properties': {'id': '3e59ee75-3160-4990-9a03-9b56d98a0cad', 'info': None, 'row': 12818, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.42043498076094, 21.2397368228114, 0]}}, {'type': 'Feature', 'properties': {'id': 'c6492ecb-8314-4a74-9513-66f5c377829e', 'info': None, 'row': 12818, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.45976034018736, 21.24657917233489, 0]}}, {'type': 'Feature', 'properties': {'id': '7f3affd5-46ba-455b-b5e7-c73cbe9348f4', 'info': None, 'row': 12818, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.49891229875637, 21.253381624644106, 0]}}, {'type': 'Feature', 'properties': {'id': '77f24c04-7e3f-4045-b4a9-aa66cb457958', 'info': None, 'row': 12818, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.53789477539198, 21.26014498739772, 0]}}, {'type': 'Feature', 'properties': {'id': '7100ca99-99a6-4fa8-bbd8-4ee69142b8e6', 'info': None, 'row': 12818, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.57671155634172, 21.2668700408827, 0]}}, {'type': 'Feature', 'properties': {'id': '17529140-ec82-47cd-9b7a-f7e9ed82607a', 'info': None, 'row': 12818, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.61536630125264, 21.273557539267717, 0]}}, {'type': 'Feature', 'properties': {'id': 'd30cbce2-b242-4dec-8f0a-57f1cd533e5a', 'info': None, 'row': 12818, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.65386254889583, 21.28020821178403, 0]}}, {'type': 'Feature', 'properties': {'id': '3e745311-4070-43bd-ad00-ecf5b93c810e', 'info': None, 'row': 12818, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.69220372256555, 21.28682276383918, 0]}}, {'type': 'Feature', 'properties': {'id': '31dba5be-aeb2-4908-9756-f275cb7ae181', 'info': None, 'row': 12818, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.73039313517361, 21.29340187806794, 0]}}, {'type': 'Feature', 'properties': {'id': 'c8585646-b747-4a46-bb1e-a92588187de9', 'info': None, 'row': 12818, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7684339940611, 21.299946215324887, 0]}}, {'type': 'Feature', 'properties': {'id': '08564d48-7102-4fa3-8af3-bf32fa5113b4', 'info': None, 'row': 12818, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.80632940554534, 21.30645641562237, 0]}}, {'type': 'Feature', 'properties': {'id': 'daebad36-9bfc-4c61-aa93-e447102a7335', 'info': None, 'row': 12818, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.84408237922023, 21.31293309901762, 0]}}, {'type': 'Feature', 'properties': {'id': '4c701c53-4866-4eda-97d2-5a5f2f64ed6e', 'info': None, 'row': 12818, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.88169583202557, 21.319376866452252, 0]}}, {'type': 'Feature', 'properties': {'id': '5411625c-88e3-45c6-9bdb-1b8480277826', 'info': None, 'row': 12818, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.91917259210095, 21.325788300547188, 0]}}, {'type': 'Feature', 'properties': {'id': '7b8ad3c5-9df7-4cdf-890d-f9de287b571e', 'info': None, 'row': 12818, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.95651540243722, 21.332167966355996, 0]}}, {'type': 'Feature', 'properties': {'id': '49b92d57-5f12-42a8-a51a-8a65d4d79be3', 'info': None, 'row': 12818, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.9937269243388, 21.338516412079144, 0]}}, {'type': 'Feature', 'properties': {'id': 'c1dc30c2-77f1-4e3c-bfab-787d54aaceb5', 'info': None, 'row': 12818, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.03080974070859, 21.344834169741596, 0]}}, {'type': 'Feature', 'properties': {'id': 'ad3cec34-8054-413d-9f9f-a6b1440f47fe', 'info': None, 'row': 12818, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.06776635916631, 21.35112175583614, 0]}}, {'type': 'Feature', 'properties': {'id': 'c0ac1d5f-bb75-4d18-b2cd-bddaef1c07a1', 'info': None, 'row': 12818, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.10459921501034, 21.35737967193441, 0]}}, {'type': 'Feature', 'properties': {'id': '751f9a3d-f6ba-4e8e-b439-ba9d16d86503', 'info': None, 'row': 12818, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.14131067403294, 21.36360840526763, 0]}}, {'type': 'Feature', 'properties': {'id': '9b65737d-99f1-4bc4-acc0-3854d97d2498', 'info': None, 'row': 13572, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.43700467775935, 21.15645988638826, 0]}}, {'type': 'Feature', 'properties': {'id': 'abeb28c5-e21f-4d99-9eb5-5ab83bc0262c', 'info': None, 'row': 13572, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.47630682326003, 21.163305565912456, 0]}}, {'type': 'Feature', 'properties': {'id': '2bf1b48f-ea58-42c9-839b-302e644a2cd5', 'info': None, 'row': 13572, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.51543566362946, 21.17011137391587, 0]}}, {'type': 'Feature', 'properties': {'id': '73766aee-da47-443c-add0-6e436a710c16', 'info': None, 'row': 13572, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.55439511544914, 21.176878117829567, 0]}}, {'type': 'Feature', 'properties': {'id': '0c7d9b4a-b56b-49bf-b383-e950df51001f', 'info': None, 'row': 13572, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.59318896270707, 21.183606577721402, 0]}}, {'type': 'Feature', 'properties': {'id': '648c3b85-eea7-4756-abac-90510f42d117', 'info': None, 'row': 13572, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.63182086286989, 21.190297507548962, 0]}}, {'type': 'Feature', 'properties': {'id': '8081af61-6c03-49d4-8b2a-efd18c31b0fe', 'info': None, 'row': 13572, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.67029435260355, 21.19695163634007, 0]}}, {'type': 'Feature', 'properties': {'id': '32a665bb-65af-4d42-a1da-26a42ac391ec', 'info': None, 'row': 13572, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.70861285316889, 21.203569669306102, 0]}}, {'type': 'Feature', 'properties': {'id': '50d916c8-df09-47ce-8271-4c0833a4a33c', 'info': None, 'row': 13572, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.74677967551303, 21.21015228889262, 0]}}, {'type': 'Feature', 'properties': {'id': 'a1c46a66-2bb9-422a-8e70-7517ce100376', 'info': None, 'row': 13572, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.78479802507756, 21.216700155771576, 0]}}, {'type': 'Feature', 'properties': {'id': '263a0ba4-72ff-49bf-bc9a-5efba8f7e491', 'info': None, 'row': 13572, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.82267100634301, 21.223213909779023, 0]}}, {'type': 'Feature', 'properties': {'id': 'fc30c718-64b4-4f74-a1d6-a3b60ac07012', 'info': None, 'row': 13572, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.86040162712605, 21.229694170801857, 0]}}, {'type': 'Feature', 'properties': {'id': '6cbbd41c-7a0a-4a04-b329-9b4df1d5beeb', 'info': None, 'row': 13572, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.8979928026465, 21.23614153961715, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc45da0b-62e0-4ab2-aaa2-bda8a0639fdc', 'info': None, 'row': 13572, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.9354473593786, 21.242556598686747, 0]}}, {'type': 'Feature', 'properties': {'id': '6d69f2d4-ba3e-431b-901f-92863754e131', 'info': None, 'row': 13572, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.97276803870015, 21.248939912910355, 0]}}, {'type': 'Feature', 'properties': {'id': '019784f4-837e-4777-9c97-6835eb29f4ed', 'info': None, 'row': 13572, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-70.00995750035267, 21.255292030339632, 0]}}, {'type': 'Feature', 'properties': {'id': '778bf225-92c9-49b9-89a0-e5546474173e', 'info': None, 'row': 13572, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.0470183257242, 21.26161348285546, 0]}}, {'type': 'Feature', 'properties': {'id': '56a34edb-96cb-434f-bcc9-d0f0298cdf8a', 'info': None, 'row': 13572, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.08395302096565, 21.267904786811226, 0]}}, {'type': 'Feature', 'properties': {'id': '73962f6c-9ec1-45bc-b0fb-47cf001a6150', 'info': None, 'row': 13572, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.12076401995081, 21.274166443643473, 0]}}, {'type': 'Feature', 'properties': {'id': '31df8019-8acf-4c73-9e80-b37d27eb8522', 'info': None, 'row': 13572, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.15745368708973, 21.28039894045261, 0]}}, {'type': 'Feature', 'properties': {'id': '79d3f5c0-37c8-4758-8f36-e1d29103aacc', 'info': None, 'row': 14326, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.45358332443669, 21.073119752269143, 0]}}, {'type': 'Feature', 'properties': {'id': '718c7c19-4c1e-49ad-b4fa-7c1814ea9914', 'info': None, 'row': 14326, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.49286246092618, 21.07996877603113, 0]}}, {'type': 'Feature', 'properties': {'id': '65effddc-26ac-4553-bf08-c5ef13c7da96', 'info': None, 'row': 14326, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.53196838696581, 21.086777953810635, 0]}}, {'type': 'Feature', 'properties': {'id': 'e97cfb9a-3106-4821-b1dc-b51e1d2af0e6', 'info': None, 'row': 14326, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.57090501682015, 21.093548092814416, 0]}}, {'type': 'Feature', 'properties': {'id': '2085bcf8-cf75-4e90-8429-2f5fd4f10ae0', 'info': None, 'row': 14326, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.60967613224247, 21.100279972894395, 0]}}, {'type': 'Feature', 'properties': {'id': '66ff1acb-d18d-45fd-ba46-9feff73d3e99', 'info': None, 'row': 14326, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.6482853885426, 21.106974347800104, 0]}}, {'type': 'Feature', 'properties': {'id': '39add393-7749-4dc5-8d28-1db3df6520de', 'info': None, 'row': 14326, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.6867363203043, 21.11363194635887, 0]}}, {'type': 'Feature', 'properties': {'id': '0a9dfcc7-7e02-4ceb-89cc-7af979cd5758', 'info': None, 'row': 14326, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.72503234677717, 21.12025347358874, 0]}}, {'type': 'Feature', 'properties': {'id': 'dd376bc9-2894-46e4-a963-2f078e09ece6', 'info': None, 'row': 14326, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.76317677696474, 21.126839611748785, 0]}}, {'type': 'Feature', 'properties': {'id': 'aa6ecc85-fc22-4acf-9dea-f85e540cb65d', 'info': None, 'row': 14326, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.80117281442983, 21.13339102133095, 0]}}, {'type': 'Feature', 'properties': {'id': '30094288-45da-4314-8e01-dd8c5c4982b9', 'info': None, 'row': 14326, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.83902356183592, 21.13990834199751, 0]}}, {'type': 'Feature', 'properties': {'id': 'b53e908b-a3ee-419d-af17-d047969953e4', 'info': None, 'row': 14326, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.8767320252417, 21.146392193467506, 0]}}, {'type': 'Feature', 'properties': {'id': '9de9d3a8-5b21-44e9-946f-f173916b76a1', 'info': None, 'row': 14326, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.91430111816547, 21.15284317635578, 0]}}, {'type': 'Feature', 'properties': {'id': 'f3c020a4-9e0b-4106-852d-220c8e574689', 'info': None, 'row': 14326, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.951733665434, 21.15926187296737, 0]}}, {'type': 'Feature', 'properties': {'id': '9469a880-a0aa-4f03-8d36-647179a0308e', 'info': None, 'row': 14326, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.98903240682941, 21.165648848050353, 0]}}, {'type': 'Feature', 'properties': {'id': 'e111d008-71ff-467d-8dad-70d8b30e3216', 'info': None, 'row': 14326, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-70.02620000054705, 21.17200464950964, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba75f7b2-14ba-439e-8799-032fc5a27a5c', 'info': None, 'row': 14326, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.06323902647637, 21.178329809084154, 0]}}, {'type': 'Feature', 'properties': {'id': '0e71a27e-f1f0-41ab-ab95-1d59389c1008', 'info': None, 'row': 14326, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.1001519893151, 21.1846248429898, 0]}}, {'type': 'Feature', 'properties': {'id': '9d2757a8-f7db-41bb-948d-48e3912c9291', 'info': None, 'row': 14326, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.13694132152764, 21.190890252529975, 0]}}, {'type': 'Feature', 'properties': {'id': '797b6191-3f18-428e-a6de-4ab438678fbe', 'info': None, 'row': 14326, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.17360938615658, 21.197126524676104, 0]}}]}
array(0)
- digital_number(pol, line, sample)complex64dask.array<chunksize=(1, 5000, 5000), meta=np.ndarray>
- comment :
- denoised digital number, read at full resolution
- history :
- digital_number: measurement/s1a-iw3-slc-v*-20170907t102953-20170907t103021-018268-01eb76-00*.tiff
Array Chunk Bytes 5.34 GiB 190.73 MiB Shape (2, 15070, 23768) (1, 5000, 5000) Count 82 Tasks 40 Chunks Type complex64 numpy.ndarray - time(line)datetime64[ns]2017-09-07T10:29:53.785278 ... 2...
- description :
- azimuth times interpolated along line dimension at the middle of range dimension
array(['2017-09-07T10:29:53.785278000', '2017-09-07T10:29:53.787333556', '2017-09-07T10:29:53.789389112', ..., '2017-09-07T10:30:21.703843224', '2017-09-07T10:30:21.705898780', '2017-09-07T10:30:21.707954336'], dtype='datetime64[ns]')
- sampleSpacing()float642.33
- units :
- m
- referential :
- slant
array(2.329562)
- lineSpacing()float6413.96
- units :
- m
array(13.95527)
- ground_heading(line, sample)float32dask.array<chunksize=(3014, 2971), meta=np.ndarray>
- comment :
- at ground level, computed from lon/lat in line direction
Array Chunk Bytes 1.33 GiB 34.16 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float32 numpy.ndarray - land_mask(line, sample)int8dask.array<chunksize=(3014, 2971), meta=np.ndarray>
- history :
- land_mask: cartopy.feature.NaturalEarthFeature land
Array Chunk Bytes 341.59 MiB 8.54 MiB Shape (15070, 23768) (3014, 2971) Count 120 Tasks 40 Chunks Type int8 numpy.ndarray - altitude(line, sample)float64dask.array<chunksize=(3014, 2971), 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 2.67 GiB 68.32 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float64 numpy.ndarray - azimuth_time(line, sample)datetime64[ns]dask.array<chunksize=(3014, 2971), 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 2.67 GiB 68.32 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type datetime64[ns] numpy.ndarray - slant_range_time(line, sample)float64dask.array<chunksize=(3014, 2971), 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 2.67 GiB 68.32 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float64 numpy.ndarray - incidence(line, sample)float64dask.array<chunksize=(3014, 2971), 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 2.67 GiB 68.32 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float64 numpy.ndarray - elevation(line, sample)float64dask.array<chunksize=(3014, 2971), 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 2.67 GiB 68.32 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float64 numpy.ndarray - longitude(line, sample)float64dask.array<chunksize=(3014, 2971), 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 2.67 GiB 68.32 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float64 numpy.ndarray - latitude(line, sample)float64dask.array<chunksize=(3014, 2971), 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 2.67 GiB 68.32 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float64 numpy.ndarray - velocity(line)float647.597e+03 7.597e+03 ... 7.597e+03
array([7597.2332727 , 7597.23329082, 7597.23330893, ..., 7597.4576957 , 7597.45771122, 7597.45772674])
- range_ground_spacing(sample)float64dask.array<chunksize=(2971,), meta=np.ndarray>
- history :
Array Chunk Bytes 185.69 kiB 23.21 kiB Shape (23768,) (2971,) Count 192 Tasks 8 Chunks Type float64 numpy.ndarray
- name :
- SENTINEL1_DS:/tmp/S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW3
- short_name :
- SENTINEL1_DS:S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW3
- product :
- SLC
- safe :
- S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE
- swath :
- IW
- multidataset :
- False
- ipf :
- 2.84
- platform :
- SENTINEL-1A
- pols :
- VV VH
- start_date :
- 2017-09-07 10:29:53.785096
- stop_date :
- 2017-09-07 10:30:21.707772
- footprint :
- POLYGON ((-69.13847173718773 22.65528072350044, -69.9034749598377 22.7840878171622, -70.22567991374513 21.12110211400705, -69.46994209516342 20.99088492496858, -69.13847173718773 22.65528072350044))
- coverage :
- 187km * 79km (line * sample )
- pixel_line_m :
- <xarray.DataArray 'azimuthPixelSpacing' ()> array(13.95527) Attributes: source: /product/imageAnnotation/imageInformation/azimuthPixelSpacing
- pixel_sample_m :
- <xarray.DataArray 'groundRangePixelSpacing' ()> array(3.35728057) Attributes: source: /product/imageAnnotation/imageInformation/rangePixelSpacing
- orbit_pass :
- Descending
- platform_heading :
- -167.7216262988962
perform calibration and denoizing on sigma0, gamma0 and beta0
[10]:
s1ds.apply_calibration_and_denoising()
s1ds.dataset
[10]:
<xarray.Dataset> Dimensions: (pol: 2, line: 15070, sample: 23768) Coordinates: * pol (pol) object 'VV' 'VH' * line (line) int64 0 1 2 3 4 ... 15066 15067 15068 15069 * sample (sample) int64 0 1 2 3 4 ... 23764 23765 23766 23767 spatial_ref int64 0 Data variables: (12/21) digital_number (pol, line, sample) complex64 dask.array<chunksize=(1, 5000, 5000), meta=np.ndarray> time (line) datetime64[ns] 2017-09-07T10:29:53.785278 ..... sampleSpacing float64 2.33 lineSpacing float64 13.96 ground_heading (line, sample) float32 dask.array<chunksize=(3014, 2971), meta=np.ndarray> land_mask (line, sample) int8 dask.array<chunksize=(3014, 2971), meta=np.ndarray> ... ... sigma0_raw (pol, line, sample) float64 dask.array<chunksize=(1, 3014, 2971), meta=np.ndarray> nesz (pol, line, sample) float64 dask.array<chunksize=(1, 3014, 2971), meta=np.ndarray> gamma0_raw (pol, line, sample) float64 dask.array<chunksize=(1, 3014, 2971), meta=np.ndarray> negz (pol, line, sample) float64 dask.array<chunksize=(1, 3014, 2971), meta=np.ndarray> sigma0 (pol, line, sample) float64 dask.array<chunksize=(1, 3014, 2971), meta=np.ndarray> gamma0 (pol, line, sample) float64 dask.array<chunksize=(1, 3014, 2971), meta=np.ndarray> Attributes: (12/17) name: SENTINEL1_DS:/tmp/S1A_IW_SLC__1SDV_20170907T102951_201... short_name: SENTINEL1_DS:S1A_IW_SLC__1SDV_20170907T102951_20170907... product: SLC safe: S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_01826... swath: IW multidataset: False ... ... footprint: POLYGON ((-69.13847173718773 22.65528072350044, -69.90... coverage: 187km * 79km (line * sample ) pixel_line_m: <xarray.DataArray 'azimuthPixelSpacing' ()>\narray(13.... pixel_sample_m: <xarray.DataArray 'groundRangePixelSpacing' ()>\narray... orbit_pass: Descending platform_heading: -167.7216262988962
- pol: 2
- line: 15070
- sample: 23768
- pol(pol)object'VV' 'VH'
- comment :
- ordered polarizations (copol, crosspol)
array(['VV', 'VH'], dtype=object)
- line(line)int640 1 2 3 ... 15066 15067 15068 15069
- axis :
- Y
- units :
- 1
- comment :
- azimuth direction, in pixels from full resolution tiff
array([ 0, 1, 2, ..., 15067, 15068, 15069])
- sample(sample)int640 1 2 3 ... 23764 23765 23766 23767
- axis :
- X
- units :
- 1
- comment :
- cross track direction, in pixels from full resolution tiff
array([ 0, 1, 2, ..., 23765, 23766, 23767])
- 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': '687a6936-29b7-4a27-8542-08ea0d575d20', 'info': None, 'row': 0, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.13847173718773, 22.65528072350044, 0]}}, {'type': 'Feature', 'properties': {'id': '8a3e2a7a-fcb9-49bc-ab2a-537b494533a3', 'info': None, 'row': 0, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.17820820742932, 22.66206726191746, 0]}}, {'type': 'Feature', 'properties': {'id': '82055312-bb2e-47d9-8117-a68a7bdb7afe', 'info': None, 'row': 0, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.21776956703296, 22.66881345359603, 0]}}, {'type': 'Feature', 'properties': {'id': '85f563ea-abfb-4235-a1de-f60720d2f0aa', 'info': None, 'row': 0, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.25715977676485, 22.67552011031412, 0]}}, {'type': 'Feature', 'properties': {'id': '17360bea-6be9-4d3d-9f67-0977c16911f2', 'info': None, 'row': 0, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.29638266322931, 22.68218801632446, 0]}}, {'type': 'Feature', 'properties': {'id': 'b389188a-9deb-42cd-9cfc-392aad276953', 'info': None, 'row': 0, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.33544192501508, 22.68881792961555, 0]}}, {'type': 'Feature', 'properties': {'id': 'a7f205d4-c6be-4aab-ab7a-b7a7ce6143b1', 'info': None, 'row': 0, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.37434113848721, 22.69541058309964, 0]}}, {'type': 'Feature', 'properties': {'id': '1a367c3c-ae6c-4e65-95b9-6fb06519f02b', 'info': None, 'row': 0, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.4130837632483, 22.7019666857333, 0]}}, {'type': 'Feature', 'properties': {'id': '43103e5c-0d51-4ce9-8f98-36d26706e216', 'info': None, 'row': 0, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.45167314729233, 22.70848692357449, 0]}}, {'type': 'Feature', 'properties': {'id': '733f8366-4db8-432a-a473-6efc5536b2a3', 'info': None, 'row': 0, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.49011253187193, 22.7149719607812, 0]}}, {'type': 'Feature', 'properties': {'id': '2bb604b1-079b-4684-ba59-1c294cb1bc59', 'info': None, 'row': 0, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.52840505609768, 22.72142244055495, 0]}}, {'type': 'Feature', 'properties': {'id': '6ed56072-8124-4583-9c2d-3436a3f4ecde', 'info': None, 'row': 0, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.56655376128812, 22.72783898603313, 0]}}, {'type': 'Feature', 'properties': {'id': 'e9e1efe6-b934-4b5a-9264-2bbfec3e9cfe', 'info': None, 'row': 0, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.60456159508581, 22.73422220113351, 0]}}, {'type': 'Feature', 'properties': {'id': 'd47c6220-4c91-467a-81a0-1c80868e9ba6', 'info': None, 'row': 0, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.6424314153552, 22.74057267135375, 0]}}, {'type': 'Feature', 'properties': {'id': '01654706-e83e-41fd-9691-8355cca35871', 'info': None, 'row': 0, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.68016599387602, 22.74689096452925, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5f20d03-0954-41d6-bb8d-8ff7026cdb69', 'info': None, 'row': 0, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.71776801984517, 22.75317763155148, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca672e35-3791-4df3-9931-0bdf19e99eee', 'info': None, 'row': 0, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.75524010319884, 22.75943320704956, 0]}}, {'type': 'Feature', 'properties': {'id': '84351c21-15f9-47af-9469-248f006a2bac', 'info': None, 'row': 0, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.79258477776644, 22.76565821003726, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb7740f7-0a9c-4823-8bc1-2fa196eac886', 'info': None, 'row': 0, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.82980450426614, 22.77185314452762, 0]}}, {'type': 'Feature', 'properties': {'id': '532cbe7c-1209-4819-953a-98b9198b0f28', 'info': None, 'row': 0, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.8669016731517, 22.77801850011687, 0]}}, {'type': 'Feature', 'properties': {'id': '32e33ab2-6af1-4826-b61c-a847d83e88cd', 'info': None, 'row': 754, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.15506189493175, 22.572083635896206, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5f8a592-259a-40e8-9147-a32a87b3fb19', 'info': None, 'row': 754, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.19477332948718, 22.578873413043745, 0]}}, {'type': 'Feature', 'properties': {'id': '5324b74d-ffb6-43e9-b318-9da34b6cfeb1', 'info': None, 'row': 754, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.23430975824905, 22.58562287054896, 0]}}, {'type': 'Feature', 'properties': {'id': 'a513f862-416c-4fc2-89c9-b4f20c294b81', 'info': None, 'row': 754, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.27367513941775, 22.59233281993449, 0]}}, {'type': 'Feature', 'properties': {'id': 'adb1f261-0ec5-4489-984b-18b7dd7a5675', 'info': None, 'row': 754, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.31287329712285, 22.59900404520733, 0]}}, {'type': 'Feature', 'properties': {'id': 'b2bd3aff-413e-4c84-870f-ba1a208ca232', 'info': None, 'row': 754, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.35190792756549, 22.605637304119245, 0]}}, {'type': 'Feature', 'properties': {'id': '3ecc0c07-821a-49cb-a0e2-0a3a8f380680', 'info': None, 'row': 754, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.39078260480571, 22.61223332935443, 0]}}, {'type': 'Feature', 'properties': {'id': 'f8452384-68f6-415d-8e30-cd0bbd74e3a8', 'info': None, 'row': 754, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.42950078622016, 22.618792829649546, 0]}}, {'type': 'Feature', 'properties': {'id': 'e1a7e765-2097-4a0e-905e-35ab7455e122', 'info': None, 'row': 754, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.46806581765222, 22.625316490850484, 0]}}, {'type': 'Feature', 'properties': {'id': 'f1566519-b94a-4d74-b09c-2c9edb351398', 'info': None, 'row': 754, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.5064809382757, 22.63180497691058, 0]}}, {'type': 'Feature', 'properties': {'id': 'dba49a00-03cd-4fe4-8226-d754273c3b75', 'info': None, 'row': 754, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.5447492851911, 22.638258930833807, 0]}}, {'type': 'Feature', 'properties': {'id': '54d9299f-323f-40e3-a541-1a87deafbf74', 'info': None, 'row': 754, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.58287389777246, 22.644678975566766, 0]}}, {'type': 'Feature', 'properties': {'id': '5a25b26b-b709-4d97-9468-2a529bab3424', 'info': None, 'row': 754, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.62085772178062, 22.651065714842872, 0]}}, {'type': 'Feature', 'properties': {'id': '20b0dfb1-ea87-4532-a2a8-0dd06758eda6', 'info': None, 'row': 754, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.65870361325833, 22.657419733981648, 0]}}, {'type': 'Feature', 'properties': {'id': '4bc6fbd6-d043-4b49-a02a-9afc4a459cdb', 'info': None, 'row': 754, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.69641434222102, 22.663741600646198, 0]}}, {'type': 'Feature', 'properties': {'id': '07acb726-2e90-4ec7-b253-aeab3ed2690e', 'info': None, 'row': 754, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.7339925961564, 22.67003186556135, 0]}}, {'type': 'Feature', 'properties': {'id': '2e262537-9f7f-4fbb-95a2-542bcf1f2ecc', 'info': None, 'row': 754, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.77144098334415, 22.676291063194967, 0]}}, {'type': 'Feature', 'properties': {'id': '19df36ab-c281-4f78-a496-22eb9daa7eff', 'info': None, 'row': 754, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.80876203600776, 22.68251971240472, 0]}}, {'type': 'Feature', 'properties': {'id': '030da0bb-4936-4fe5-8a44-4109033e49e3', 'info': None, 'row': 754, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.84595821330795, 22.688718317052484, 0]}}, {'type': 'Feature', 'properties': {'id': 'cf4a0ee5-87ad-43e1-84bd-86a4be352cc0', 'info': None, 'row': 754, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.88303190418753, 22.69488736658807, 0]}}, {'type': 'Feature', 'properties': {'id': '34764a7c-d8c8-4d23-a9cf-32a75be5bb72', 'info': None, 'row': 1508, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.17165204642964, 22.488886544870606, 0]}}, {'type': 'Feature', 'properties': {'id': '251a58be-7507-4f2a-9e4b-3daa227c0f77', 'info': None, 'row': 1508, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.21133844560917, 22.495679560759754, 0]}}, {'type': 'Feature', 'properties': {'id': 'ff216528-fdd7-4392-b8b5-0652775ce7f0', 'info': None, 'row': 1508, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.25084994383806, 22.502432284102465, 0]}}, {'type': 'Feature', 'properties': {'id': '79114eb9-75e1-409b-bced-af962d04288c', 'info': None, 'row': 1508, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.29019049675075, 22.509145526166066, 0]}}, {'type': 'Feature', 'properties': {'id': '13a30213-dde9-42ce-8812-9fd438d0c9ef', 'info': None, 'row': 1508, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.32936392600232, 22.515820070711836, 0]}}, {'type': 'Feature', 'properties': {'id': '38f43711-4afa-48cf-ae60-fa035050574d', 'info': None, 'row': 1508, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.36837392540615, 22.522456675254787, 0]}}, {'type': 'Feature', 'properties': {'id': '37a6de89-dc11-4a85-93d7-41d742464326', 'info': None, 'row': 1508, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.40722406671738, 22.52905607225107, 0]}}, {'type': 'Feature', 'properties': {'id': '97938a27-010f-4f30-a784-b0cc79e860c3', 'info': None, 'row': 1508, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.4459178050868, 22.535618970217442, 0]}}, {'type': 'Feature', 'properties': {'id': 'd48054fc-8094-4b22-a1bf-8f6d8798d1f0', 'info': None, 'row': 1508, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.4844584842071, 22.54214605478772, 0]}}, {'type': 'Feature', 'properties': {'id': '654ef475-fa30-42ba-9330-59ed2752390c', 'info': None, 'row': 1508, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.52284934117336, 22.548637989710613, 0]}}, {'type': 'Feature', 'properties': {'id': 'f2b07b02-922b-4c0a-bd9a-e5489d4bd7f9', 'info': None, 'row': 1508, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.56109351107607, 22.555095417792526, 0]}}, {'type': 'Feature', 'properties': {'id': '307fddf6-3a86-4d89-b354-6ec59193bdc6', 'info': None, 'row': 1508, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.59919403134475, 22.561518961789282, 0]}}, {'type': 'Feature', 'properties': {'id': '1dd5b677-1105-4c26-a92e-3be696132610', 'info': None, 'row': 1508, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.63715384585853, 22.56790922524994, 0]}}, {'type': 'Feature', 'properties': {'id': 'b289c30f-3ace-4eb4-bed4-f9a3edef5cef', 'info': None, 'row': 1508, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.6749758088385, 22.5742667933159, 0]}}, {'type': 'Feature', 'properties': {'id': '2f78ef3c-f88f-4ed3-8a9d-23aba8d1299c', 'info': None, 'row': 1508, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.71266268853587, 22.580592233477972, 0]}}, {'type': 'Feature', 'properties': {'id': '13eed68a-d622-4aa4-9b31-0518d001a21a', 'info': None, 'row': 1508, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.75021717072912, 22.586886096294332, 0]}}, {'type': 'Feature', 'properties': {'id': '8e226100-7c08-4f14-b1f4-b4a6e845e51b', 'info': None, 'row': 1508, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.7876418620415, 22.5931489160716, 0]}}, {'type': 'Feature', 'properties': {'id': 'd0aa9275-c960-471e-b369-df8dcb20a864', 'info': None, 'row': 1508, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.82493929309057, 22.599381211511343, 0]}}, {'type': 'Feature', 'properties': {'id': '814e1fc8-63e1-4f45-ae55-1e11968a904d', 'info': None, 'row': 1508, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.8621119214796, 22.60558348632427, 0]}}, {'type': 'Feature', 'properties': {'id': '562730b6-91d3-40cc-8b5e-5b53e18bf5a0', 'info': None, 'row': 1508, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.89916213464049, 22.611756229813807, 0]}}, {'type': 'Feature', 'properties': {'id': '26436e26-3d96-49fd-b7c4-3a59c61af052', 'info': None, 'row': 2262, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.18823749457997, 22.405686877561287, 0]}}, {'type': 'Feature', 'properties': {'id': '908e4261-ea70-40ba-9351-c72d7606dee7', 'info': None, 'row': 2262, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.22789909203806, 22.412483140535116, 0]}}, {'type': 'Feature', 'properties': {'id': 'f8d05f51-9adc-4147-8c7f-83e4b5906bea', 'info': None, 'row': 2262, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.26738589222438, 22.41923913789002, 0]}}, {'type': 'Feature', 'properties': {'id': 'eff91266-0a04-4aa3-841d-df294493234f', 'info': None, 'row': 2262, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.30670184823606, 22.425955680641316, 0]}}, {'type': 'Feature', 'properties': {'id': 'a2e8b32d-eef5-4a74-8435-9f539726893d', 'info': None, 'row': 2262, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.34585077928091, 22.432633552307585, 0]}}, {'type': 'Feature', 'properties': {'id': '3fcfd1c4-34b2-409f-b506-b7c434d75275', 'info': None, 'row': 2262, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.38483637681114, 22.43927351017016, 0]}}, {'type': 'Feature', 'properties': {'id': 'c3df17e8-6926-4a2a-a626-0d507ec65940', 'info': None, 'row': 2262, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.42366221030252, 22.44587628646, 0]}}, {'type': 'Feature', 'properties': {'id': '471b4533-43b9-4e61-832f-0a7259b1105c', 'info': None, 'row': 2262, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.46233173270436, 22.45244258947671, 0]}}, {'type': 'Feature', 'properties': {'id': '566933e1-392f-4252-b8ee-64a014660196', 'info': None, 'row': 2262, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5008482855825, 22.458973104644734, 0]}}, {'type': 'Feature', 'properties': {'id': '5be5ed79-9965-4c81-8049-a3d8e80eb877', 'info': None, 'row': 2262, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.53921510397618, 22.4654684955107, 0]}}, {'type': 'Feature', 'properties': {'id': 'bf1a698d-0eac-4de3-9288-47924628327e', 'info': None, 'row': 2262, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.57743532098782, 22.47192940468593, 0]}}, {'type': 'Feature', 'properties': {'id': '4a5e1661-f673-45cc-9954-b8275c26d7d3', 'info': None, 'row': 2262, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.61551197212393, 22.478356454737856, 0]}}, {'type': 'Feature', 'properties': {'id': '507d2690-26d6-46e6-9901-d25391099e0e', 'info': None, 'row': 2262, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.65344799940249, 22.48475024903353, 0]}}, {'type': 'Feature', 'properties': {'id': '3c0bf072-cc81-47b7-9d62-67f535b9fbfc', 'info': None, 'row': 2262, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.69124625524287, 22.49111137253838, 0]}}, {'type': 'Feature', 'properties': {'id': 'fbbb504c-337f-4c24-9e72-12f3eb7c26b5', 'info': None, 'row': 2262, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.72890950615133, 22.497440392573104, 0]}}, {'type': 'Feature', 'properties': {'id': '1bbae033-babf-419a-a157-22d18adddb5e', 'info': None, 'row': 2262, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.76644043621583, 22.50373785953132, 0]}}, {'type': 'Feature', 'properties': {'id': '0c3dac9e-241d-48fc-9846-4c5bb4b72d2d', 'info': None, 'row': 2262, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.80384165042122, 22.51000430756038, 0]}}, {'type': 'Feature', 'properties': {'id': '61f83628-ed73-487a-b99f-cdd4d03dcd4f', 'info': None, 'row': 2262, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.84111567779664, 22.516240255207713, 0]}}, {'type': 'Feature', 'properties': {'id': '8401b2ca-e608-4c22-9fa1-fa000818d255', 'info': None, 'row': 2262, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.87826497440483, 22.52244620603474, 0]}}, {'type': 'Feature', 'properties': {'id': '040a5cb7-f1ba-4e0b-8d67-5f49a7c46b9b', 'info': None, 'row': 2262, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.91529192618327, 22.52862264920026, 0]}}, {'type': 'Feature', 'properties': {'id': 'ebd5c6ce-f2c3-4ddd-b57e-f42a68f15e1d', 'info': None, 'row': 3016, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.20482299582194, 22.322486876900143, 0]}}, {'type': 'Feature', 'properties': {'id': '48806d6c-7676-4226-af27-0f5471d52e6f', 'info': None, 'row': 3016, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.24445979207599, 22.32928638701361, 0]}}, {'type': 'Feature', 'properties': {'id': '28925d4b-5fa9-4e08-867c-0e3bb75793c4', 'info': None, 'row': 3016, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.28392189473455, 22.33604565843525, 0]}}, {'type': 'Feature', 'properties': {'id': '81908386-8fa3-45b6-9e61-012c9be0bd8f', 'info': None, 'row': 3016, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.32321325435737, 22.34276550192836, 0]}}, {'type': 'Feature', 'properties': {'id': 'df0ab7aa-0e27-432d-bad1-490b65817f3e', 'info': None, 'row': 3016, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.36233768770522, 22.349446700768844, 0]}}, {'type': 'Feature', 'properties': {'id': '36e39e31-7f5f-4d10-acc9-badb1876e6cb', 'info': None, 'row': 3016, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.40129888386907, 22.356090012004355, 0]}}, {'type': 'Feature', 'properties': {'id': 'db3c29f5-4bfe-4552-b391-848277cbe0b3', 'info': None, 'row': 3016, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.4401004100454, 22.362696167640674, 0]}}, {'type': 'Feature', 'properties': {'id': 'b0d445f7-9bc7-482c-bada-6a0c4552fe41', 'info': None, 'row': 3016, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.47874571698213, 22.369265875760274, 0]}}, {'type': 'Feature', 'properties': {'id': '565384ef-95c7-4c79-9b25-6d56d24ae503', 'info': None, 'row': 3016, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5172381441183, 22.37579982157822, 0]}}, {'type': 'Feature', 'properties': {'id': 'fe6792f6-0e26-49ce-b5a5-72bd031f3124', 'info': None, 'row': 3016, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.55558092443727, 22.382298668439052, 0]}}, {'type': 'Feature', 'properties': {'id': '30a61d70-3c50-4929-9860-d15b7b361df1', 'info': None, 'row': 3016, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.5937771890536, 22.38876305875905, 0]}}, {'type': 'Feature', 'properties': {'id': 'dbd5192f-2fe9-43b1-b5d8-2176f263d3f4', 'info': None, 'row': 3016, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.63182997155073, 22.39519361491725, 0]}}, {'type': 'Feature', 'properties': {'id': '363e84a5-cd9d-4682-8347-0ad2ea468135', 'info': None, 'row': 3016, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.66974221208554, 22.40159094009869, 0]}}, {'type': 'Feature', 'properties': {'id': '42d2ba46-5f1e-4dca-8043-676bd562f943', 'info': None, 'row': 3016, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.70751676127577, 22.40795561909285, 0]}}, {'type': 'Feature', 'properties': {'id': 'f564b765-8022-46db-8daa-33b16feeb9be', 'info': None, 'row': 3016, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.74515638388276, 22.41428821905031, 0]}}, {'type': 'Feature', 'properties': {'id': '354cc8cf-6312-4952-b2aa-807981b1f162', 'info': None, 'row': 3016, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.78266376230398, 22.420589290200144, 0]}}, {'type': 'Feature', 'properties': {'id': '558d4de7-3634-4d8e-a8f7-09245d6ea811', 'info': None, 'row': 3016, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.82004149988593, 22.426859366530437, 0]}}, {'type': 'Feature', 'properties': {'id': 'c7feb1ff-6e92-4f3a-bc85-34360dac4145', 'info': None, 'row': 3016, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.85729212406933, 22.433098966434486, 0]}}, {'type': 'Feature', 'properties': {'id': '8255c20c-4b94-4d0c-a6c1-def8f8d222f4', 'info': None, 'row': 3016, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.89441808937653, 22.439308593324423, 0]}}, {'type': 'Feature', 'properties': {'id': 'e2a5923e-1573-483f-8c38-461d17d68051', 'info': None, 'row': 3016, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.9314217802505, 22.44548873621445, 0]}}, {'type': 'Feature', 'properties': {'id': '94079aaa-f0dc-4db5-8808-761c88b10cf0', 'info': None, 'row': 3770, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.22142845951248, 22.239161535952956, 0]}}, {'type': 'Feature', 'properties': {'id': '01e91903-c8fc-4ed7-b65b-7efcc6d6be59', 'info': None, 'row': 3770, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.26104064911816, 22.245964313871454, 0]}}, {'type': 'Feature', 'properties': {'id': 'afcf4c1f-ed7f-45b3-90da-e721265ddc04', 'info': None, 'row': 3770, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.30047824780792, 22.252726879865293, 0]}}, {'type': 'Feature', 'properties': {'id': '76a5b833-52de-4acf-8fcf-01305b2a309c', 'info': None, 'row': 3770, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.33974520362867, 22.259450044449302, 0]}}, {'type': 'Feature', 'properties': {'id': 'cba8c71c-f214-4cbd-be25-579bfe73472d', 'info': None, 'row': 3770, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.3788453309176, 22.266134590660222, 0]}}, {'type': 'Feature', 'properties': {'id': '86480dbf-1821-42e2-86bc-3dd352fd5f0c', 'info': None, 'row': 3770, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.41778231642718, 22.272781275315342, 0]}}, {'type': 'Feature', 'properties': {'id': '35976cb0-a283-49ba-b708-ee88c5177950', 'info': None, 'row': 3770, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.45655972509635, 22.279390830198423, 0]}}, {'type': 'Feature', 'properties': {'id': '8ad5f46e-2281-462c-8449-f85661da4aab', 'info': None, 'row': 3770, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.49518100549287, 22.28596396317794, 0]}}, {'type': 'Feature', 'properties': {'id': 'c9087ea7-6caa-43e4-b168-29cea31cfd1d', 'info': None, 'row': 3770, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.53364949494919, 22.29250135926253, 0]}}, {'type': 'Feature', 'properties': {'id': 'a4b50692-a813-4891-a5cb-410aca458c2e', 'info': None, 'row': 3770, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.57196842441245, 22.299003681597537, 0]}}, {'type': 'Feature', 'properties': {'id': '2616a28f-6148-43dd-87a6-685263254fa6', 'info': None, 'row': 3770, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.61014092302827, 22.305471572406944, 0]}}, {'type': 'Feature', 'properties': {'id': '233d1d63-fc0f-4d18-a360-45daca9692dd', 'info': None, 'row': 3770, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.64817002247526, 22.31190565388406, 0]}}, {'type': 'Feature', 'properties': {'id': '0d960b12-7974-4a5b-a65f-03f6f28110fa', 'info': None, 'row': 3770, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.68605866106694, 22.31830652903448, 0]}}, {'type': 'Feature', 'properties': {'id': '83bd1d1b-2bc5-476f-91d8-a33f73f5d419', 'info': None, 'row': 3770, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.72380968763643, 22.32467478247424, 0]}}, {'type': 'Feature', 'properties': {'id': 'dfb4bab3-5570-4b09-9dde-bf72166a1056', 'info': None, 'row': 3770, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.76142586521671, 22.331010981186218, 0]}}, {'type': 'Feature', 'properties': {'id': '86d79a28-e32a-495e-8419-31b92adb91bb', 'info': None, 'row': 3770, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.7989098745307, 22.33731567523723, 0]}}, {'type': 'Feature', 'properties': {'id': 'fd18d803-c209-4b54-9766-cc31a2f03ea0', 'info': None, 'row': 3770, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.83626431730207, 22.343589398458388, 0]}}, {'type': 'Feature', 'properties': {'id': '84208f72-3e86-4f8f-8d75-d1568648e6ab', 'info': None, 'row': 3770, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.87349171939807, 22.349832669090993, 0]}}, {'type': 'Feature', 'properties': {'id': '80852d80-dd9b-45b4-8be5-73122ec2e900', 'info': None, 'row': 3770, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.9105945338151, 22.356045990400027, 0]}}, {'type': 'Feature', 'properties': {'id': '40c0dcb0-3284-4bd1-ae8a-598a0134812d', 'info': None, 'row': 3770, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.94757514351575, 22.362229851257098, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4f4cbaa-e26f-4563-b7ba-ebdcbc8fd363', 'info': None, 'row': 4524, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.23803385672487, 22.15583643203095, 0]}}, {'type': 'Feature', 'properties': {'id': '5e8910ee-7606-4a3c-ada8-50a1f013c46c', 'info': None, 'row': 4524, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.2776214406779, 22.16264247777952, 0]}}, {'type': 'Feature', 'properties': {'id': '1d4782f1-aebf-439a-a4a2-0d6ad02bd902', 'info': None, 'row': 4524, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.31703453638967, 22.16940833836986, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba1655e0-6f85-4668-90e3-f2feba33db7e', 'info': None, 'row': 4524, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.35627708939435, 22.176134824068317, 0]}}, {'type': 'Feature', 'properties': {'id': 'f62ae924-0199-45b8-95eb-22e7f0254973', 'info': None, 'row': 4524, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.39535291160573, 22.18282271767249, 0]}}, {'type': 'Feature', 'properties': {'id': '70f4ebc7-7789-496c-aeca-7f42d5745487', 'info': None, 'row': 4524, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.43426568743782, 22.189472775769318, 0]}}, {'type': 'Feature', 'properties': {'id': '8931fca5-cc01-4131-811b-2a8eb04b89ea', 'info': None, 'row': 4524, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.47301897957219, 22.196085729920565, 0]}}, {'type': 'Feature', 'properties': {'id': 'ee2ecb1c-cf73-440e-8b58-8c274dabf565', 'info': None, 'row': 4524, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.51161623439647, 22.20266228778071, 0]}}, {'type': 'Feature', 'properties': {'id': '6eef8649-9542-4742-b0a5-8958f05506ce', 'info': None, 'row': 4524, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.55006078713666, 22.20920313415198, 0]}}, {'type': 'Feature', 'properties': {'id': '36f54048-bf24-4d3d-b856-d8b4a71cc95b', 'info': None, 'row': 4524, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.5883558667038, 22.215708931980522, 0]}}, {'type': 'Feature', 'properties': {'id': '3f4b29a3-e405-4dbe-838c-3869d6d3d32f', 'info': None, 'row': 4524, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.62650460027459, 22.22218032329804, 0]}}, {'type': 'Feature', 'properties': {'id': 'd775ca08-56aa-4e83-a436-fdc81cd4f915', 'info': None, 'row': 4524, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.66451001762297, 22.228617930112136, 0]}}, {'type': 'Feature', 'properties': {'id': '4fdcb886-d7cd-48da-a509-cbeb7ca4d1b5', 'info': None, 'row': 4524, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.70237505521919, 22.235022355248947, 0]}}, {'type': 'Feature', 'properties': {'id': 'd1af84b8-77be-463c-8235-9180e4fe1f1c', 'info': None, 'row': 4524, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.74010256011178, 22.241394183151094, 0]}}, {'type': 'Feature', 'properties': {'id': '05844785-a543-4d89-ab34-ce278bd1bde8', 'info': None, 'row': 4524, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.7776952936055, 22.247733980633758, 0]}}, {'type': 'Feature', 'properties': {'id': '34141263-5c35-439a-8000-4aed6e6f9e46', 'info': None, 'row': 4524, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.81515593474876, 22.254042297601508, 0]}}, {'type': 'Feature', 'properties': {'id': 'c5866da5-ac2a-49f8-b3cb-d83d614b41bb', 'info': None, 'row': 4524, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.85248708364247, 22.26031966772848, 0]}}, {'type': 'Feature', 'properties': {'id': 'a37652cd-1814-4b7d-95e3-474b064fd4fe', 'info': None, 'row': 4524, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.88969126458052, 22.26656660910401, 0]}}, {'type': 'Feature', 'properties': {'id': '63724815-ccf2-4f73-82e0-b35b99a21e88', 'info': None, 'row': 4524, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.9267709290334, 22.272783624845907, 0]}}, {'type': 'Feature', 'properties': {'id': '77231e0f-d024-4ae9-bc50-9015b757ff7d', 'info': None, 'row': 4524, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.96372845848339, 22.278971203683227, 0]}}, {'type': 'Feature', 'properties': {'id': '4c23360b-fd84-4212-83da-b12a4136a493', 'info': None, 'row': 5278, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.25462261223964, 22.07257066341353, 0]}}, {'type': 'Feature', 'properties': {'id': 'e83255d3-dad0-4f14-88b6-5d3dbe0f44cb', 'info': None, 'row': 5278, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.29418583980319, 22.079379983261685, 0]}}, {'type': 'Feature', 'properties': {'id': '2b4f62c7-995e-4025-af47-111d4abb7e5d', 'info': None, 'row': 5278, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.33357468057082, 22.08614914452901, 0]}}, {'type': 'Feature', 'properties': {'id': '6daa7877-7b95-48b3-9985-69675920d348', 'info': None, 'row': 5278, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.37279307759408, 22.09287895723687, 0]}}, {'type': 'Feature', 'properties': {'id': 'e0e8f1ec-52ea-4a93-a9ab-c9a58981af34', 'info': None, 'row': 5278, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.41184484039226, 22.09957020394701, 0]}}, {'type': 'Feature', 'properties': {'id': '6b6c09f9-061c-4ebd-96e4-284cf14108c0', 'info': None, 'row': 5278, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.45073365106894, 22.106223641019195, 0]}}, {'type': 'Feature', 'properties': {'id': '766fd2c2-ed0b-46d5-946a-f7e88f3aadeb', 'info': None, 'row': 5278, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.48946307007522, 22.112839999796275, 0]}}, {'type': 'Feature', 'properties': {'id': '68b3fc6c-0221-4760-a6c6-726dfb4764d4', 'info': None, 'row': 5278, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.52803654164452, 22.119419987721685, 0]}}, {'type': 'Feature', 'properties': {'id': '91fb4841-b811-4f70-8dd2-78914b9d1f20', 'info': None, 'row': 5278, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.56645739892147, 22.125964289394062, 0]}}, {'type': 'Feature', 'properties': {'id': '64a4d428-e633-4cbb-bf37-0f151442cafb', 'info': None, 'row': 5278, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.60472886880517, 22.132473567563117, 0]}}, {'type': 'Feature', 'properties': {'id': '8ac68c66-6bb3-4aef-b068-783fd2267541', 'info': None, 'row': 5278, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.64285407652682, 22.138948464070914, 0]}}, {'type': 'Feature', 'properties': {'id': '02118e15-6ced-46cb-804b-d25f795d3a38', 'info': None, 'row': 5278, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.68083604997815, 22.145389600741872, 0]}}, {'type': 'Feature', 'properties': {'id': '6642c472-a872-4283-8bbb-fbc63e788e5c', 'info': None, 'row': 5278, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.71867772380803, 22.15179758022515, 0]}}, {'type': 'Feature', 'properties': {'id': '09927e1d-cf2c-4060-b3a3-d80d949ab780', 'info': None, 'row': 5278, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.75638194330148, 22.15817298679233, 0]}}, {'type': 'Feature', 'properties': {'id': 'd1dd6262-c2fa-4dc8-8dbe-8999a669587d', 'info': None, 'row': 5278, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.79395146805537, 22.164516387093144, 0]}}, {'type': 'Feature', 'properties': {'id': '1f13fda5-dd12-46d7-9249-8fbf37de0cb5', 'info': None, 'row': 5278, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.83138897546345, 22.170828330872176, 0]}}, {'type': 'Feature', 'properties': {'id': '4f81520c-7377-4da6-b4d3-b10fb6de6c55', 'info': None, 'row': 5278, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.86869706402284, 22.177109351648696, 0]}}, {'type': 'Feature', 'properties': {'id': '0a1984fc-f4ef-40d2-bc69-b9b074256391', 'info': None, 'row': 5278, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.90587825647265, 22.183359967362144, 0]}}, {'type': 'Feature', 'properties': {'id': '21e91df2-3971-4787-a421-38406bae5cb1', 'info': None, 'row': 5278, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.94293500277541, 22.189580680985152, 0]}}, {'type': 'Feature', 'properties': {'id': '752d981d-a3d8-46cf-ad04-1b4f6f5a6f53', 'info': None, 'row': 5278, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.97986968295044, 22.195771981106162, 0]}}, {'type': 'Feature', 'properties': {'id': '2921c34d-b750-471a-8638-80239dd58afa', 'info': None, 'row': 6032, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.27121127969059, 21.989305213461112, 0]}}, {'type': 'Feature', 'properties': {'id': '087e93c2-b717-441c-9cfd-69c73b7aa840', 'info': None, 'row': 6032, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.31075015218009, 21.996117807461744, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca10e6c7-20bc-4317-83f8-88b9499ad1d3', 'info': None, 'row': 6032, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.3501147393125, 22.002890269457865, 0]}}, {'type': 'Feature', 'properties': {'id': '4df41464-b668-4309-ac2f-05243d3e57a9', 'info': None, 'row': 6032, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.38930898165694, 22.009623409225878, 0]}}, {'type': 'Feature', 'properties': {'id': '0a206b83-21c3-47de-a82d-6d681d84b39e', 'info': None, 'row': 6032, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.42833668633835, 22.01631800909171, 0]}}, {'type': 'Feature', 'properties': {'id': 'c0ab7d67-ed6c-43d6-82ea-ab97c02af1cb', 'info': None, 'row': 6032, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.46720153315003, 22.022974825187955, 0]}}, {'type': 'Feature', 'properties': {'id': '1a3ca005-a9ed-4ab3-90be-b64be4d6b4b7', 'info': None, 'row': 6032, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.50590708031272, 22.02959458863858, 0]}}, {'type': 'Feature', 'properties': {'id': 'be74d6ac-35fc-45b6-98bf-f9f614ac7602', 'info': None, 'row': 6032, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.5444567699058, 22.036178006675982, 0]}}, {'type': 'Feature', 'properties': {'id': '86cdebfa-d4b4-4a3b-ab4c-35f2e93f9949', 'info': None, 'row': 6032, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.58285393299265, 22.042725763695238, 0]}}, {'type': 'Feature', 'properties': {'id': '36d7b019-b9af-43d2-a4d5-e75e719b14ef', 'info': None, 'row': 6032, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.6211017944606, 22.04923852224963, 0]}}, {'type': 'Feature', 'properties': {'id': 'b91a97b4-ae26-46f3-97e7-7242a746170b', 'info': None, 'row': 6032, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.65920347759538, 22.05571692399158, 0]}}, {'type': 'Feature', 'properties': {'id': '5e9e8a24-bde2-4577-8cf8-75bc6b8520b5', 'info': None, 'row': 6032, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.69716200840674, 22.062161590562372, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb502a90-a8a5-47e4-a365-d49c1546f83c', 'info': None, 'row': 6032, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.73498031972218, 22.068573124434188, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb6ee4b4-9c93-439d-8adb-6676e5ba9203', 'info': None, 'row': 6032, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.77266125506337, 22.074952109707574, 0]}}, {'type': 'Feature', 'properties': {'id': '94d6b5c2-e88e-46bc-8614-d4ca5e7975f4', 'info': None, 'row': 6032, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.81020757231941, 22.08129911286685, 0]}}, {'type': 'Feature', 'properties': {'id': 'ccf0e649-e2ef-457c-ae1f-246fc910c04a', 'info': None, 'row': 6032, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.84762194722951, 22.0876146834966, 0]}}, {'type': 'Feature', 'properties': {'id': 'a39b8c66-bab8-4ef4-816b-fbee65286c86', 'info': None, 'row': 6032, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.88490697668706, 22.09389935496125, 0]}}, {'type': 'Feature', 'properties': {'id': '076bbb4c-bcb2-4bcb-bcd4-42aeb5e6d3b9', 'info': None, 'row': 6032, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.9220651818765, 22.10015364505037, 0]}}, {'type': 'Feature', 'properties': {'id': '8afa7453-a8f8-4d2f-8b99-e44baed2bb20', 'info': None, 'row': 6032, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.95909901125252, 22.10637805659141, 0]}}, {'type': 'Feature', 'properties': {'id': '29c00886-71d7-4c95-8c38-e9ed59dd5ca1', 'info': None, 'row': 6032, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.99601084337148, 22.11257307803223, 0]}}, {'type': 'Feature', 'properties': {'id': 'e651a301-4e85-476c-bc23-ba5b1258e0d8', 'info': None, 'row': 6786, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.28778343517328, 21.906099513197816, 0]}}, {'type': 'Feature', 'properties': {'id': 'fa269749-c2ef-4f5b-95e5-bb2034b37b8c', 'info': None, 'row': 6786, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.3272981992296, 21.912915391266232, 0]}}, {'type': 'Feature', 'properties': {'id': 'd23a7d1c-a560-4acd-bb76-ecc5e50375c8', 'info': None, 'row': 6786, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.36663877815128, 21.91969116370526, 0]}}, {'type': 'Feature', 'properties': {'id': 'f88d0dbb-cb57-4adc-bd1d-d76af7956845', 'info': None, 'row': 6786, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.4058091100548, 21.926427640050104, 0]}}, {'type': 'Feature', 'properties': {'id': 'bd9e55e6-40a3-475c-a78a-5676eb07b96e', 'info': None, 'row': 6786, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.44481299969956, 21.933125602394483, 0]}}, {'type': 'Feature', 'properties': {'id': 'ffa641cb-47bf-48ee-8605-a3863368621b', 'info': None, 'row': 6786, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.48365412459609, 21.9397858066473, 0]}}, {'type': 'Feature', 'properties': {'id': '9e851a10-e744-4cdd-8b1d-b0906915b522', 'info': None, 'row': 6786, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.52233604076154, 21.946408983717006, 0]}}, {'type': 'Feature', 'properties': {'id': '7ed8fa25-3d22-463f-8d69-3189ebc55d58', 'info': None, 'row': 6786, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.56086218814696, 21.952995840628176, 0]}}, {'type': 'Feature', 'properties': {'id': '03731dc0-5553-4634-95c1-8dc396368d9f', 'info': None, 'row': 6786, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5992358957592, 21.959547061575442, 0]}}, {'type': 'Feature', 'properties': {'id': 'ffea0224-3201-45c8-8563-9d791256fe35', 'info': None, 'row': 6786, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.63746038649782, 21.966063308918656, 0]}}, {'type': 'Feature', 'properties': {'id': '04556ffb-667c-4e76-8f94-dab0cb4adfaa', 'info': None, 'row': 6786, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.67553878172625, 21.972545224123493, 0]}}, {'type': 'Feature', 'properties': {'id': 'abd8d61d-54af-4898-b2a4-a740e4703dc0', 'info': None, 'row': 6786, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.71347410559454, 21.978993428650874, 0]}}, {'type': 'Feature', 'properties': {'id': '576bdd6e-382a-4f96-acd2-8203164254f1', 'info': None, 'row': 6786, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.75126928913046, 21.98540852479873, 0]}}, {'type': 'Feature', 'properties': {'id': '51795b6b-8188-4ab3-b6a0-c8837e808df8', 'info': None, 'row': 6786, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.78892717411324, 21.991791096499128, 0]}}, {'type': 'Feature', 'properties': {'id': 'd46deb75-8093-42b9-be4f-66a56509f8dd', 'info': None, 'row': 6786, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.82645051674433, 21.99814171007351, 0]}}, {'type': 'Feature', 'properties': {'id': 'da97b576-811c-4f99-8ab6-5bbecc6a7847', 'info': None, 'row': 6786, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.86384199112788, 22.00446091494888, 0]}}, {'type': 'Feature', 'properties': {'id': '6772c3f5-b9bf-4155-a30c-f1fa72284aa1', 'info': None, 'row': 6786, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.90110419257269, 22.010749244337184, 0]}}, {'type': 'Feature', 'properties': {'id': '395e637e-9cd9-48ce-bbc6-406b9b67026e', 'info': None, 'row': 6786, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.93823964072672, 22.017007215880376, 0]}}, {'type': 'Feature', 'properties': {'id': '18d36fe8-e7fa-4658-9bec-530dab23bf24', 'info': None, 'row': 6786, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.97525078255454, 22.023235332262935, 0]}}, {'type': 'Feature', 'properties': {'id': '7578dfc0-d463-4d78-9381-43b0ca033977', 'info': None, 'row': 6786, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.01213999516685, 22.02943408179423, 0]}}, {'type': 'Feature', 'properties': {'id': '75b15377-2596-469f-bb3f-368518b337b4', 'info': None, 'row': 7540, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.30435589224811, 21.82289215035737, 0]}}, {'type': 'Feature', 'properties': {'id': '5f754cbd-e916-4f13-83c3-c0da5ca9d0a6', 'info': None, 'row': 7540, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.34384654892156, 21.82971131261178, 0]}}, {'type': 'Feature', 'properties': {'id': 'd144f44d-9893-4a7d-835a-9a6be49e19e2', 'info': None, 'row': 7540, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.38316312067718, 21.836490395611357, 0]}}, {'type': 'Feature', 'properties': {'id': 'be911498-5511-41fb-9642-ae6716745fc7', 'info': None, 'row': 7540, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.4223095431789, 21.843230208650123, 0]}}, {'type': 'Feature', 'properties': {'id': 'c2ce4b2b-a5d8-46ba-ab76-fc619d0b8555', 'info': None, 'row': 7540, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.46128961882074, 21.849931533589604, 0]}}, {'type': 'Feature', 'properties': {'id': '20e3aae8-f16e-4edf-ad49-f1d147a80a66', 'info': None, 'row': 7540, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5001070228306, 21.856595126115046, 0]}}, {'type': 'Feature', 'properties': {'id': '86c55012-a573-4a15-9d29-585b8c8e60cd', 'info': None, 'row': 7540, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.53876530902212, 21.86322171691937, 0]}}, {'type': 'Feature', 'properties': {'id': '9a843911-4bd8-4c8a-a88e-4c6586fc7bf2', 'info': None, 'row': 7540, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.57726791521817, 21.86981201281937, 0]}}, {'type': 'Feature', 'properties': {'id': '59e1a079-8815-4301-b6d9-2cfa090bb1d8', 'info': None, 'row': 7540, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.61561816836921, 21.876366697809225, 0]}}, {'type': 'Feature', 'properties': {'id': 'e99c7f6d-d3d9-40e3-b9a8-92dc66e2e05c', 'info': None, 'row': 7540, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.65381928938716, 21.88288643405538, 0]}}, {'type': 'Feature', 'properties': {'id': '8055e21a-9482-41e0-ae3f-c91d0eb66ce7', 'info': None, 'row': 7540, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.69187439771312, 21.889371862836775, 0]}}, {'type': 'Feature', 'properties': {'id': '2b7f359f-7d5d-42c4-b469-4428486afb31', 'info': None, 'row': 7540, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.72978651563773, 21.89582360543398, 0]}}, {'type': 'Feature', 'properties': {'id': '0c80bf47-cdd3-4819-99fe-45a07215fe58', 'info': None, 'row': 7540, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.76755857238898, 21.90224226397068, 0]}}, {'type': 'Feature', 'properties': {'id': '582bc619-826e-4ecd-a32c-084b9d20b15b', 'info': None, 'row': 7540, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.8051934080038, 21.908628422210487, 0]}}, {'type': 'Feature', 'properties': {'id': '02c84da2-df39-46c0-8e3f-31f57d679da4', 'info': None, 'row': 7540, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.8426937769961, 21.914982646311966, 0]}}, {'type': 'Feature', 'properties': {'id': '8236adcf-f4e6-4f47-9ec0-da24d13f0b8a', 'info': None, 'row': 7540, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.88006235183512, 21.921305485544544, 0]}}, {'type': 'Feature', 'properties': {'id': 'de5206a0-44a2-432a-b31b-587809073c50', 'info': None, 'row': 7540, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.91730172624503, 21.927597472967722, 0]}}, {'type': 'Feature', 'properties': {'id': '57dd90ca-8290-448d-acc5-4f419156f1fb', 'info': None, 'row': 7540, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.95441441833748, 21.933859126075816, 0]}}, {'type': 'Feature', 'properties': {'id': '9e5d8678-2bc6-4f56-ae4f-0bc7c1005f91', 'info': None, 'row': 7540, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.99140287358699, 21.940090947410376, 0]}}, {'type': 'Feature', 'properties': {'id': '3b00dc4c-0af3-4c92-afba-172c5b4f2807', 'info': None, 'row': 7540, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.02826946765866, 21.946293425142258, 0]}}, {'type': 'Feature', 'properties': {'id': '36e620f0-38e0-47ef-a276-b78645418551', 'info': None, 'row': 8294, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.3209735278258, 21.739435733460372, 0]}}, {'type': 'Feature', 'properties': {'id': '30e7ba80-d973-4511-903c-9b8098c686dc', 'info': None, 'row': 8294, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.36044023445311, 21.74625819760766, 0]}}, {'type': 'Feature', 'properties': {'id': '0ee91849-e61d-4d98-b7c0-3f6c12759090', 'info': None, 'row': 8294, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.39973295553105, 21.753040608790315, 0]}}, {'type': 'Feature', 'properties': {'id': '2cc1cf70-a08b-4a55-a272-8e6cf12a2c1a', 'info': None, 'row': 8294, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.43885562429179, 21.759783776063593, 0]}}, {'type': 'Feature', 'properties': {'id': 'd303fa61-370a-4960-b190-a98759680e62', 'info': None, 'row': 8294, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.47781204078385, 21.766488481059184, 0]}}, {'type': 'Feature', 'properties': {'id': 'accf606c-754f-4918-af86-bf561a8e803e', 'info': None, 'row': 8294, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5166058779719, 21.77315547924092, 0]}}, {'type': 'Feature', 'properties': {'id': '199f510c-3e24-4d0c-9a64-da6b0bf1439f', 'info': None, 'row': 8294, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.55524068748451, 21.77978550108837, 0]}}, {'type': 'Feature', 'properties': {'id': 'e217f1a4-079e-4f62-8e3f-a538885d84f3', 'info': None, 'row': 8294, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.59371990503428, 21.7863792532126, 0]}}, {'type': 'Feature', 'properties': {'id': '414ba88d-b67c-4e53-8184-ad3c9b81aaab', 'info': None, 'row': 8294, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.63204685553251, 21.792937419409377, 0]}}, {'type': 'Feature', 'properties': {'id': '54cb1c4c-51db-4a8a-860e-233f79a81209', 'info': None, 'row': 8294, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.67022475792001, 21.799460661653633, 0]}}, {'type': 'Feature', 'properties': {'id': '468c9ae5-8780-49c5-97c7-2c1a8cae46e7', 'info': None, 'row': 8294, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.70825672973179, 21.805949621039446, 0]}}, {'type': 'Feature', 'properties': {'id': 'ce5b25f6-fbd4-4b12-ba95-8232fff99bec', 'info': None, 'row': 8294, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.74614579141436, 21.812404918668836, 0]}}, {'type': 'Feature', 'properties': {'id': 'fdddff4b-ca2b-4715-907c-a283d407ef7c', 'info': None, 'row': 8294, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.78389487041107, 21.81882715649293, 0]}}, {'type': 'Feature', 'properties': {'id': '591f61b5-caad-428e-b436-7fc9bb4832c9', 'info': None, 'row': 8294, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.82150680503091, 21.82521691810858, 0]}}, {'type': 'Feature', 'properties': {'id': '3da400af-95d4-4f35-92e9-a15bfcb6cd54', 'info': None, 'row': 8294, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.85898434811429, 21.83157476951308, 0]}}, {'type': 'Feature', 'properties': {'id': '4113878d-7b68-4f7d-ac5d-9e25d9bb9f10', 'info': None, 'row': 8294, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.89633017050903, 21.837901259819844, 0]}}, {'type': 'Feature', 'properties': {'id': 'c46651ac-202c-4bfe-999c-4afcf443b9a4', 'info': None, 'row': 8294, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.93354686436776, 21.844196921937375, 0]}}, {'type': 'Feature', 'properties': {'id': '6b085082-a96b-469f-a21b-f76155c54f7c', 'info': None, 'row': 8294, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.97063694627843, 21.85046227321382, 0]}}, {'type': 'Feature', 'properties': {'id': 'a83a5b82-dbe3-4834-885f-8d519edab55b', 'info': None, 'row': 8294, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.00760286023785, 21.8566978160492, 0]}}, {'type': 'Feature', 'properties': {'id': '433ccb77-f710-40d0-8e46-99b9fa580537', 'info': None, 'row': 8294, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.04444698047737, 21.862904038477232, 0]}}, {'type': 'Feature', 'properties': {'id': '334b2314-48d9-4118-bb35-8e6a26be2094', 'info': None, 'row': 9048, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.33759083741846, 21.65598078384963, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3b7a17d-5ebf-4653-83be-cce6bafa35c7', 'info': None, 'row': 9048, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.37703359623752, 21.662806549939422, 0]}}, {'type': 'Feature', 'properties': {'id': '044ab3f0-7dc1-4833-8a8d-ee414a98812c', 'info': None, 'row': 9048, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.41630246886486, 21.669592289352828, 0]}}, {'type': 'Feature', 'properties': {'id': 'f6c44021-682d-41f0-9a5d-d31d695d6a2d', 'info': None, 'row': 9048, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.45540138610113, 21.67633881090636, 0]}}, {'type': 'Feature', 'properties': {'id': '85fac8f4-b856-43a6-b5df-687fba279f2b', 'info': None, 'row': 9048, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.49433414564962, 21.683046896001898, 0]}}, {'type': 'Feature', 'properties': {'id': 'fb4163ea-d1f8-444f-8a8b-34ce08d3fa21', 'info': None, 'row': 9048, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.53310441821198, 21.689717299881906, 0]}}, {'type': 'Feature', 'properties': {'id': 'a271704f-1fa2-4925-a903-43c23c13b305', 'info': None, 'row': 9048, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.57171575323201, 21.696350752812616, 0]}}, {'type': 'Feature', 'properties': {'id': '96bb01af-f08c-4df3-b67b-6fbf4102b4f1', 'info': None, 'row': 9048, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.61017158431218, 21.70294796119942, 0]}}, {'type': 'Feature', 'properties': {'id': '897b5637-c036-49d9-92ea-a1bfbd4f0dd6', 'info': None, 'row': 9048, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.64847523432495, 21.709509608639667, 0]}}, {'type': 'Feature', 'properties': {'id': '5365a9e2-1da5-4c4d-96f0-6ee2339e807c', 'info': None, 'row': 9048, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.68662992024022, 21.71603635691683, 0]}}, {'type': 'Feature', 'properties': {'id': '468b9cd6-61b2-45a9-a1cc-2bb84c5fba68', 'info': None, 'row': 9048, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.72463875768703, 21.72252884694014, 0]}}, {'type': 'Feature', 'properties': {'id': '5c263f4e-57b9-4558-9024-283241cc5d1b', 'info': None, 'row': 9048, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.76250476526808, 21.728987699633088, 0]}}, {'type': 'Feature', 'properties': {'id': 'e31e1b3e-87fc-4775-9482-ffadc033f76e', 'info': None, 'row': 9048, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.80023086864215, 21.73541351677428, 0]}}, {'type': 'Feature', 'properties': {'id': '111c2d83-f09a-40e3-8491-d9d473c55b25', 'info': None, 'row': 9048, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.83781990439051, 21.741806881793828, 0]}}, {'type': 'Feature', 'properties': {'id': 'e57d9ec2-e958-458e-9966-b3c7a1f99728', 'info': None, 'row': 9048, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.87527462368034, 21.748168360527757, 0]}}, {'type': 'Feature', 'properties': {'id': 'd07a8200-be8c-481b-8168-4e017e5336d2', 'info': None, 'row': 9048, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.91259769573814, 21.754498501933515, 0]}}, {'type': 'Feature', 'properties': {'id': '975fdc7e-d703-4d9f-abdd-a7620df10d56', 'info': None, 'row': 9048, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.94979171114514, 21.760797838768614, 0]}}, {'type': 'Feature', 'properties': {'id': '159b8ae7-4850-41eb-9194-c037f8219e62', 'info': None, 'row': 9048, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.98685918496585, 21.767066888235075, 0]}}, {'type': 'Feature', 'properties': {'id': '478d63ff-e5ca-43c6-80c4-88256a3f0945', 'info': None, 'row': 9048, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.0238025597194, 21.773306152591378, 0]}}, {'type': 'Feature', 'properties': {'id': '9fced127-8526-40f5-9fd5-9746d93eaf72', 'info': None, 'row': 9048, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.06062420820369, 21.779516119734144, 0]}}, {'type': 'Feature', 'properties': {'id': 'e84c3b71-47ab-4529-8af3-3c89f2ea7079', 'info': None, 'row': 9802, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.35416750754766, 21.572708755925596, 0]}}, {'type': 'Feature', 'properties': {'id': '1cd23c8d-eb2d-4166-b47f-23461f305fe5', 'info': None, 'row': 9802, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.39358659754922, 21.579537830145526, 0]}}, {'type': 'Feature', 'properties': {'id': '7b306954-18ad-4d87-afea-e008b8249983', 'info': None, 'row': 9802, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.43283189936683, 21.58632690373245, 0]}}, {'type': 'Feature', 'properties': {'id': '62a9dcac-9403-44ec-bd0b-f0a0e14dec76', 'info': None, 'row': 9802, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.47190734140267, 21.593076785268423, 0]}}, {'type': 'Feature', 'properties': {'id': 'd89716b4-6cb2-4057-af41-c10fe10d95c6', 'info': None, 'row': 9802, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.51081671904672, 21.59978825592954, 0]}}, {'type': 'Feature', 'properties': {'id': 'd56e382e-1f37-4f81-bd0c-3f1d6616761e', 'info': None, 'row': 9802, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.54956370076829, 21.60646207074083, 0]}}, {'type': 'Feature', 'properties': {'id': '45af1fb6-94ba-442f-b9fa-7d32e71b45ff', 'info': None, 'row': 9802, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.58815183385602, 21.61309895975893, 0]}}, {'type': 'Feature', 'properties': {'id': '7f20fe95-a128-4eb2-b0e1-b313b60ee345', 'info': None, 'row': 9802, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.62658454983084, 21.619699629187178, 0]}}, {'type': 'Feature', 'properties': {'id': '537b2452-26b5-48fc-9409-95ea5ee24792', 'info': None, 'row': 9802, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.66486516955389, 21.626264762428015, 0]}}, {'type': 'Feature', 'properties': {'id': '4dd8ae14-74c9-457c-b82a-ac1afcc20765', 'info': None, 'row': 9802, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7029969080508, 21.63279502107683, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3a885f2-88bc-440a-8b8b-b18a01e856b4', 'info': None, 'row': 9802, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.74098287907037, 21.639291045861242, 0]}}, {'type': 'Feature', 'properties': {'id': '7d9a3650-c918-478f-a20f-3675195a0c2b', 'info': None, 'row': 9802, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.77882609939627, 21.645753457529334, 0]}}, {'type': 'Feature', 'properties': {'id': 'ac952578-2962-42c4-b2eb-a908bdf25968', 'info': None, 'row': 9802, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.81652949292678, 21.652182857690256, 0]}}, {'type': 'Feature', 'properties': {'id': '148d6828-e09d-4d75-8faa-82ffff9a522c', 'info': None, 'row': 9802, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.85409589453872, 21.65857982961026, 0]}}, {'type': 'Feature', 'properties': {'id': '77e1df09-7421-44ca-a71d-57d3200ee4e1', 'info': None, 'row': 9802, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.8915280537483, 21.66494493896696, 0]}}, {'type': 'Feature', 'properties': {'id': '27696622-8dbb-48b8-b295-04e79416b2ef', 'info': None, 'row': 9802, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.92882863818255, 21.67127873456454, 0]}}, {'type': 'Feature', 'properties': {'id': 'a61c0154-4fa8-420f-b0af-34a73cf7404c', 'info': None, 'row': 9802, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.96600023687242, 21.67758174901219, 0]}}, {'type': 'Feature', 'properties': {'id': '968af0a7-23ad-4ba5-ba62-fe984ed8f3ce', 'info': None, 'row': 9802, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.00304536337927, 21.683854499368337, 0]}}, {'type': 'Feature', 'properties': {'id': '15a947fa-446c-4835-82ce-0866b3fe026e', 'info': None, 'row': 9802, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.03996645876435, 21.69009748775241, 0]}}, {'type': 'Feature', 'properties': {'id': '8ec0b807-d436-4d70-9852-aef336fe5746', 'info': None, 'row': 9802, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.07676589441117, 21.6963112019263, 0]}}, {'type': 'Feature', 'properties': {'id': '36542e64-caa8-415b-9174-a5181a10c4b8', 'info': None, 'row': 10556, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.37074402880062, 21.489437287107858, 0]}}, {'type': 'Feature', 'properties': {'id': 'ecfe154a-faac-47b1-853d-5ec5764ef4bc', 'info': None, 'row': 10556, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.41013945224904, 21.496269669554785, 0]}}, {'type': 'Feature', 'properties': {'id': '740e3c34-2144-4585-b379-2a7097ab3cdc', 'info': None, 'row': 10556, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.44936118551006, 21.503062077410227, 0]}}, {'type': 'Feature', 'properties': {'id': 'b91cfaae-3029-4bad-886f-cacd1ba20242', 'info': None, 'row': 10556, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.48841315458766, 21.509815319021808, 0]}}, {'type': 'Feature', 'properties': {'id': 'c68019da-61d7-4ca1-850c-b0197c556338', 'info': None, 'row': 10556, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.52729915255883, 21.516530175339852, 0]}}, {'type': 'Feature', 'properties': {'id': '96a9dc23-8611-4bea-a226-826244bad0da', 'info': None, 'row': 10556, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.56602284566073, 21.52320740117201, 0]}}, {'type': 'Feature', 'properties': {'id': '3428ce12-07e2-4310-b032-36e4d661646c', 'info': None, 'row': 10556, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.60458777902713, 21.52984772636534, 0]}}, {'type': 'Feature', 'properties': {'id': '57a1ae53-a083-468c-af5b-482c6600b75b', 'info': None, 'row': 10556, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.64299738209766, 21.53645185692117, 0]}}, {'type': 'Feature', 'properties': {'id': '3f08e733-a5cb-4639-856e-f92252fb6ae1', 'info': None, 'row': 10556, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.68125497372236, 21.54302047604706, 0]}}, {'type': 'Feature', 'properties': {'id': '5a2fdc69-f74c-447e-99ce-08601acea718', 'info': None, 'row': 10556, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7193637669828, 21.54955424515033, 0]}}, {'type': 'Feature', 'properties': {'id': 'cd4e68aa-10fe-4c9f-88e8-d35997dac347', 'info': None, 'row': 10556, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.75732687374774, 21.55605380477702, 0]}}, {'type': 'Feature', 'properties': {'id': '9e36a445-5491-49f6-943f-f4b0b4fbe077', 'info': None, 'row': 10556, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.79514730898205, 21.562519775499837, 0]}}, {'type': 'Feature', 'properties': {'id': '2f4bfad7-38ba-499a-8717-a3b5436910be', 'info': None, 'row': 10556, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.83282799482373, 21.568952758758495, 0]}}, {'type': 'Feature', 'properties': {'id': '3aaa66b3-ac0d-465c-8170-3baa7fd5a002', 'info': None, 'row': 10556, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.87037176444522, 21.575353337655418, 0]}}, {'type': 'Feature', 'properties': {'id': '7780c87f-2a4f-4448-a4f9-bc191cb74072', 'info': None, 'row': 10556, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.90778136571215, 21.581722077709827, 0]}}, {'type': 'Feature', 'properties': {'id': '4b1b535c-102f-41b3-ba78-31984334c6c6', 'info': None, 'row': 10556, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.94505946465213, 21.588059527572657, 0]}}, {'type': 'Feature', 'properties': {'id': '2d15bfb2-2bae-493c-a664-32d1cbef3caf', 'info': None, 'row': 10556, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.98220864874601, 21.59436621970481, 0]}}, {'type': 'Feature', 'properties': {'id': '6e01b91e-0fee-41cd-8ad3-0073d1f13d77', 'info': None, 'row': 10556, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.01923143005219, 21.600642671021134, 0]}}, {'type': 'Feature', 'properties': {'id': 'd4a6b37a-1208-4a39-95dd-39f8dd3a0843', 'info': None, 'row': 10556, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.05613024817421, 21.60688938350203, 0]}}, {'type': 'Feature', 'properties': {'id': '581f6f7b-188b-4e0f-b758-8c9ebe928c02', 'info': None, 'row': 10556, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.09290747308131, 21.61310684477467, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc94ffeb-3e61-4c94-9b91-7b549612efdf', 'info': None, 'row': 11310, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.38730466283423, 21.406225482919048, 0]}}, {'type': 'Feature', 'properties': {'id': '972a6616-d6d7-4aef-8d41-296983dcaedd', 'info': None, 'row': 11310, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.42667666136606, 21.413061183930143, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6d341c3-3d35-4225-8b12-c7606e955426', 'info': None, 'row': 11310, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.46587506651174, 21.41985693619145, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca953882-b81d-4026-a566-cfd735407587', 'info': None, 'row': 11310, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.50490380190655, 21.42661354781992, 0]}}, {'type': 'Feature', 'properties': {'id': '7cea7e9a-3bc4-4693-9b64-1d0f76510cee', 'info': None, 'row': 11310, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.54376665834249, 21.43333179954377, 0]}}, {'type': 'Feature', 'properties': {'id': '96735a58-282f-4128-bf9e-68c1eea8c40e', 'info': None, 'row': 11310, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5824672998519, 21.440012445956697, 0]}}, {'type': 'Feature', 'properties': {'id': 'a346a17f-563f-4bb7-b86b-5b9dd230e75f', 'info': None, 'row': 11310, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.62100926943981, 21.44665621669959, 0]}}, {'type': 'Feature', 'properties': {'id': '6f3bb129-472a-4094-bfca-c1cd7ad9ca9c', 'info': None, 'row': 11310, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.65939599448987, 21.453263817574964, 0]}}, {'type': 'Feature', 'properties': {'id': '0b154ff2-ec70-4b18-a6f0-0d6b2122eed5', 'info': None, 'row': 11310, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.6976307918654, 21.459835931598597, 0]}}, {'type': 'Feature', 'properties': {'id': 'f95b72ed-7a21-4ef1-84e3-9210da6a2b72', 'info': None, 'row': 11310, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.73571687272744, 21.466373219992747, 0]}}, {'type': 'Feature', 'properties': {'id': '22acdf7f-3e54-4c4a-aac1-2a82f6f98864', 'info': None, 'row': 11310, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.7736573470875, 21.47287632312476, 0]}}, {'type': 'Feature', 'properties': {'id': '4805b290-d020-4d24-bc44-f2d7dfedd54b', 'info': None, 'row': 11310, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.81145522811349, 21.479345861394783, 0]}}, {'type': 'Feature', 'properties': {'id': '56a9472f-6207-4411-8981-3669638fead3', 'info': None, 'row': 11310, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.84911343620439, 21.485782436075745, 0]}}, {'type': 'Feature', 'properties': {'id': '5927fb29-8524-42b1-a89e-510f2c738798', 'info': None, 'row': 11310, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.88663480284893, 21.49218663010886, 0]}}, {'type': 'Feature', 'properties': {'id': '2896baee-f52e-438f-97fc-243cda3c5666', 'info': None, 'row': 11310, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.92402207428182, 21.49855900885747, 0]}}, {'type': 'Feature', 'properties': {'id': '9bb57826-52c5-4ece-87b2-125d42f6ce9d', 'info': None, 'row': 11310, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.96127791495059, 21.504900120821674, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4fb0ab0-8345-4d48-9549-fc2fce572225', 'info': None, 'row': 11310, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.99840491080448, 21.511210498316437, 0]}}, {'type': 'Feature', 'properties': {'id': 'd05b3fa9-4b1b-4682-bcf1-e2635026b207', 'info': None, 'row': 11310, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.03540557241703, 21.517490658115303, 0]}}, {'type': 'Feature', 'properties': {'id': '8a5a7b5f-ffa8-4bdf-9893-cb60c72b7a15', 'info': None, 'row': 11310, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.0722823379515, 21.52374110206182, 0]}}, {'type': 'Feature', 'properties': {'id': 'ab84b497-3276-4978-91b4-239dcb54e4e9', 'info': None, 'row': 11310, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.10903757597976, 21.529962317650607, 0]}}, {'type': 'Feature', 'properties': {'id': '4fc60c34-c1cf-4900-86cd-87a4a176adf3', 'info': None, 'row': 12064, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.40386539187946, 21.32301299577244, 0]}}, {'type': 'Feature', 'properties': {'id': '598e586b-0144-4646-85bf-9803526ca96f', 'info': None, 'row': 12064, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.4432139677071, 21.32985201546722, 0]}}, {'type': 'Feature', 'properties': {'id': '78ce85c2-b4b6-4d4e-acd3-e308271f6789', 'info': None, 'row': 12064, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.48238904693854, 21.33665111225236, 0]}}, {'type': 'Feature', 'properties': {'id': 'a23bf9e6-21cc-49ca-9d8e-9b3d2e1ebec9', 'info': None, 'row': 12064, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.52139455084061, 21.34341109401416, 0]}}, {'type': 'Feature', 'properties': {'id': '3323a385-47b7-4afa-8f18-f3e7ac3389bd', 'info': None, 'row': 12064, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.5602342679207, 21.350132741258776, 0]}}, {'type': 'Feature', 'properties': {'id': '5dea3869-1f95-4eff-a533-a9fab273ecc4', 'info': None, 'row': 12064, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.59891186000651, 21.356816808365974, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6b2f3a5-6dd5-4699-9a65-bc2539980d01', 'info': None, 'row': 12064, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.63743086797462, 21.363464024770494, 0]}}, {'type': 'Feature', 'properties': {'id': '08bd3659-b2be-4c34-a811-93e92e29b5df', 'info': None, 'row': 12064, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.67579471715285, 21.37007509607607, 0]}}, {'type': 'Feature', 'properties': {'id': '9ed7a93d-eb3b-4ee6-8be5-47ec7bd35552', 'info': None, 'row': 12064, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.71400672241812, 21.376650705106737, 0]}}, {'type': 'Feature', 'properties': {'id': '2802fce2-0c7a-43f1-96b6-d208d930f96b', 'info': None, 'row': 12064, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.75207009301111, 21.383191512899696, 0]}}, {'type': 'Feature', 'properties': {'id': '60f943d9-8934-4597-b591-cfb831bbf27b', 'info': None, 'row': 12064, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.7899879370863, 21.389698159643654, 0]}}, {'type': 'Feature', 'properties': {'id': '8f71db13-ec5d-4ef4-9d9d-34162208dcf2', 'info': None, 'row': 12064, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.82776326601493, 21.396171265566185, 0]}}, {'type': 'Feature', 'properties': {'id': '1939ee2f-1446-4157-a487-941b865b02b4', 'info': None, 'row': 12064, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.8653989984571, 21.402611431773483, 0]}}, {'type': 'Feature', 'properties': {'id': 'f51a6df8-10ea-407a-afba-cc35c7987b74', 'info': None, 'row': 12064, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.90289796421794, 21.409019241045574, 0]}}, {'type': 'Feature', 'properties': {'id': 'c04e5e8d-7fe5-4359-b295-3328ed249c41', 'info': None, 'row': 12064, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.94026290790153, 21.415395258589918, 0]}}, {'type': 'Feature', 'properties': {'id': '1807b1c9-9c0a-4057-9059-e8d221b63046', 'info': None, 'row': 12064, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.97749649237542, 21.42174003275582, 0]}}, {'type': 'Feature', 'properties': {'id': 'bea5fdf4-0669-4a15-b4d8-25f09b454bde', 'info': None, 'row': 12064, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.01460130205759, 21.428054095712337, 0]}}, {'type': 'Feature', 'properties': {'id': '5ffb2061-7249-40f2-8024-d09b5b47c35a', 'info': None, 'row': 12064, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.0515798460367, 21.4343379640917, 0]}}, {'type': 'Feature', 'properties': {'id': '55ec37dc-aa40-4039-b31c-621a7bdb7447', 'info': None, 'row': 12064, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.08843456103594, 21.44059213960064, 0]}}, {'type': 'Feature', 'properties': {'id': '3fb3ea67-258d-4cb1-8598-cc71bccda890', 'info': None, 'row': 12064, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.12516781422997, 21.44681710960124, 0]}}, {'type': 'Feature', 'properties': {'id': '3e59ee75-3160-4990-9a03-9b56d98a0cad', 'info': None, 'row': 12818, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.42043498076094, 21.2397368228114, 0]}}, {'type': 'Feature', 'properties': {'id': 'c6492ecb-8314-4a74-9513-66f5c377829e', 'info': None, 'row': 12818, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.45976034018736, 21.24657917233489, 0]}}, {'type': 'Feature', 'properties': {'id': '7f3affd5-46ba-455b-b5e7-c73cbe9348f4', 'info': None, 'row': 12818, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.49891229875637, 21.253381624644106, 0]}}, {'type': 'Feature', 'properties': {'id': '77f24c04-7e3f-4045-b4a9-aa66cb457958', 'info': None, 'row': 12818, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.53789477539198, 21.26014498739772, 0]}}, {'type': 'Feature', 'properties': {'id': '7100ca99-99a6-4fa8-bbd8-4ee69142b8e6', 'info': None, 'row': 12818, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.57671155634172, 21.2668700408827, 0]}}, {'type': 'Feature', 'properties': {'id': '17529140-ec82-47cd-9b7a-f7e9ed82607a', 'info': None, 'row': 12818, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.61536630125264, 21.273557539267717, 0]}}, {'type': 'Feature', 'properties': {'id': 'd30cbce2-b242-4dec-8f0a-57f1cd533e5a', 'info': None, 'row': 12818, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.65386254889583, 21.28020821178403, 0]}}, {'type': 'Feature', 'properties': {'id': '3e745311-4070-43bd-ad00-ecf5b93c810e', 'info': None, 'row': 12818, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.69220372256555, 21.28682276383918, 0]}}, {'type': 'Feature', 'properties': {'id': '31dba5be-aeb2-4908-9756-f275cb7ae181', 'info': None, 'row': 12818, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.73039313517361, 21.29340187806794, 0]}}, {'type': 'Feature', 'properties': {'id': 'c8585646-b747-4a46-bb1e-a92588187de9', 'info': None, 'row': 12818, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7684339940611, 21.299946215324887, 0]}}, {'type': 'Feature', 'properties': {'id': '08564d48-7102-4fa3-8af3-bf32fa5113b4', 'info': None, 'row': 12818, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.80632940554534, 21.30645641562237, 0]}}, {'type': 'Feature', 'properties': {'id': 'daebad36-9bfc-4c61-aa93-e447102a7335', 'info': None, 'row': 12818, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.84408237922023, 21.31293309901762, 0]}}, {'type': 'Feature', 'properties': {'id': '4c701c53-4866-4eda-97d2-5a5f2f64ed6e', 'info': None, 'row': 12818, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.88169583202557, 21.319376866452252, 0]}}, {'type': 'Feature', 'properties': {'id': '5411625c-88e3-45c6-9bdb-1b8480277826', 'info': None, 'row': 12818, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.91917259210095, 21.325788300547188, 0]}}, {'type': 'Feature', 'properties': {'id': '7b8ad3c5-9df7-4cdf-890d-f9de287b571e', 'info': None, 'row': 12818, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.95651540243722, 21.332167966355996, 0]}}, {'type': 'Feature', 'properties': {'id': '49b92d57-5f12-42a8-a51a-8a65d4d79be3', 'info': None, 'row': 12818, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.9937269243388, 21.338516412079144, 0]}}, {'type': 'Feature', 'properties': {'id': 'c1dc30c2-77f1-4e3c-bfab-787d54aaceb5', 'info': None, 'row': 12818, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.03080974070859, 21.344834169741596, 0]}}, {'type': 'Feature', 'properties': {'id': 'ad3cec34-8054-413d-9f9f-a6b1440f47fe', 'info': None, 'row': 12818, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.06776635916631, 21.35112175583614, 0]}}, {'type': 'Feature', 'properties': {'id': 'c0ac1d5f-bb75-4d18-b2cd-bddaef1c07a1', 'info': None, 'row': 12818, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.10459921501034, 21.35737967193441, 0]}}, {'type': 'Feature', 'properties': {'id': '751f9a3d-f6ba-4e8e-b439-ba9d16d86503', 'info': None, 'row': 12818, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.14131067403294, 21.36360840526763, 0]}}, {'type': 'Feature', 'properties': {'id': '9b65737d-99f1-4bc4-acc0-3854d97d2498', 'info': None, 'row': 13572, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.43700467775935, 21.15645988638826, 0]}}, {'type': 'Feature', 'properties': {'id': 'abeb28c5-e21f-4d99-9eb5-5ab83bc0262c', 'info': None, 'row': 13572, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.47630682326003, 21.163305565912456, 0]}}, {'type': 'Feature', 'properties': {'id': '2bf1b48f-ea58-42c9-839b-302e644a2cd5', 'info': None, 'row': 13572, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.51543566362946, 21.17011137391587, 0]}}, {'type': 'Feature', 'properties': {'id': '73766aee-da47-443c-add0-6e436a710c16', 'info': None, 'row': 13572, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.55439511544914, 21.176878117829567, 0]}}, {'type': 'Feature', 'properties': {'id': '0c7d9b4a-b56b-49bf-b383-e950df51001f', 'info': None, 'row': 13572, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.59318896270707, 21.183606577721402, 0]}}, {'type': 'Feature', 'properties': {'id': '648c3b85-eea7-4756-abac-90510f42d117', 'info': None, 'row': 13572, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.63182086286989, 21.190297507548962, 0]}}, {'type': 'Feature', 'properties': {'id': '8081af61-6c03-49d4-8b2a-efd18c31b0fe', 'info': None, 'row': 13572, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.67029435260355, 21.19695163634007, 0]}}, {'type': 'Feature', 'properties': {'id': '32a665bb-65af-4d42-a1da-26a42ac391ec', 'info': None, 'row': 13572, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.70861285316889, 21.203569669306102, 0]}}, {'type': 'Feature', 'properties': {'id': '50d916c8-df09-47ce-8271-4c0833a4a33c', 'info': None, 'row': 13572, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.74677967551303, 21.21015228889262, 0]}}, {'type': 'Feature', 'properties': {'id': 'a1c46a66-2bb9-422a-8e70-7517ce100376', 'info': None, 'row': 13572, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.78479802507756, 21.216700155771576, 0]}}, {'type': 'Feature', 'properties': {'id': '263a0ba4-72ff-49bf-bc9a-5efba8f7e491', 'info': None, 'row': 13572, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.82267100634301, 21.223213909779023, 0]}}, {'type': 'Feature', 'properties': {'id': 'fc30c718-64b4-4f74-a1d6-a3b60ac07012', 'info': None, 'row': 13572, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.86040162712605, 21.229694170801857, 0]}}, {'type': 'Feature', 'properties': {'id': '6cbbd41c-7a0a-4a04-b329-9b4df1d5beeb', 'info': None, 'row': 13572, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.8979928026465, 21.23614153961715, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc45da0b-62e0-4ab2-aaa2-bda8a0639fdc', 'info': None, 'row': 13572, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.9354473593786, 21.242556598686747, 0]}}, {'type': 'Feature', 'properties': {'id': '6d69f2d4-ba3e-431b-901f-92863754e131', 'info': None, 'row': 13572, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.97276803870015, 21.248939912910355, 0]}}, {'type': 'Feature', 'properties': {'id': '019784f4-837e-4777-9c97-6835eb29f4ed', 'info': None, 'row': 13572, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-70.00995750035267, 21.255292030339632, 0]}}, {'type': 'Feature', 'properties': {'id': '778bf225-92c9-49b9-89a0-e5546474173e', 'info': None, 'row': 13572, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.0470183257242, 21.26161348285546, 0]}}, {'type': 'Feature', 'properties': {'id': '56a34edb-96cb-434f-bcc9-d0f0298cdf8a', 'info': None, 'row': 13572, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.08395302096565, 21.267904786811226, 0]}}, {'type': 'Feature', 'properties': {'id': '73962f6c-9ec1-45bc-b0fb-47cf001a6150', 'info': None, 'row': 13572, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.12076401995081, 21.274166443643473, 0]}}, {'type': 'Feature', 'properties': {'id': '31df8019-8acf-4c73-9e80-b37d27eb8522', 'info': None, 'row': 13572, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.15745368708973, 21.28039894045261, 0]}}, {'type': 'Feature', 'properties': {'id': '79d3f5c0-37c8-4758-8f36-e1d29103aacc', 'info': None, 'row': 14326, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.45358332443669, 21.073119752269143, 0]}}, {'type': 'Feature', 'properties': {'id': '718c7c19-4c1e-49ad-b4fa-7c1814ea9914', 'info': None, 'row': 14326, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.49286246092618, 21.07996877603113, 0]}}, {'type': 'Feature', 'properties': {'id': '65effddc-26ac-4553-bf08-c5ef13c7da96', 'info': None, 'row': 14326, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.53196838696581, 21.086777953810635, 0]}}, {'type': 'Feature', 'properties': {'id': 'e97cfb9a-3106-4821-b1dc-b51e1d2af0e6', 'info': None, 'row': 14326, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.57090501682015, 21.093548092814416, 0]}}, {'type': 'Feature', 'properties': {'id': '2085bcf8-cf75-4e90-8429-2f5fd4f10ae0', 'info': None, 'row': 14326, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.60967613224247, 21.100279972894395, 0]}}, {'type': 'Feature', 'properties': {'id': '66ff1acb-d18d-45fd-ba46-9feff73d3e99', 'info': None, 'row': 14326, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.6482853885426, 21.106974347800104, 0]}}, {'type': 'Feature', 'properties': {'id': '39add393-7749-4dc5-8d28-1db3df6520de', 'info': None, 'row': 14326, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.6867363203043, 21.11363194635887, 0]}}, {'type': 'Feature', 'properties': {'id': '0a9dfcc7-7e02-4ceb-89cc-7af979cd5758', 'info': None, 'row': 14326, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.72503234677717, 21.12025347358874, 0]}}, {'type': 'Feature', 'properties': {'id': 'dd376bc9-2894-46e4-a963-2f078e09ece6', 'info': None, 'row': 14326, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.76317677696474, 21.126839611748785, 0]}}, {'type': 'Feature', 'properties': {'id': 'aa6ecc85-fc22-4acf-9dea-f85e540cb65d', 'info': None, 'row': 14326, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.80117281442983, 21.13339102133095, 0]}}, {'type': 'Feature', 'properties': {'id': '30094288-45da-4314-8e01-dd8c5c4982b9', 'info': None, 'row': 14326, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.83902356183592, 21.13990834199751, 0]}}, {'type': 'Feature', 'properties': {'id': 'b53e908b-a3ee-419d-af17-d047969953e4', 'info': None, 'row': 14326, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.8767320252417, 21.146392193467506, 0]}}, {'type': 'Feature', 'properties': {'id': '9de9d3a8-5b21-44e9-946f-f173916b76a1', 'info': None, 'row': 14326, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.91430111816547, 21.15284317635578, 0]}}, {'type': 'Feature', 'properties': {'id': 'f3c020a4-9e0b-4106-852d-220c8e574689', 'info': None, 'row': 14326, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.951733665434, 21.15926187296737, 0]}}, {'type': 'Feature', 'properties': {'id': '9469a880-a0aa-4f03-8d36-647179a0308e', 'info': None, 'row': 14326, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.98903240682941, 21.165648848050353, 0]}}, {'type': 'Feature', 'properties': {'id': 'e111d008-71ff-467d-8dad-70d8b30e3216', 'info': None, 'row': 14326, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-70.02620000054705, 21.17200464950964, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba75f7b2-14ba-439e-8799-032fc5a27a5c', 'info': None, 'row': 14326, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.06323902647637, 21.178329809084154, 0]}}, {'type': 'Feature', 'properties': {'id': '0e71a27e-f1f0-41ab-ab95-1d59389c1008', 'info': None, 'row': 14326, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.1001519893151, 21.1846248429898, 0]}}, {'type': 'Feature', 'properties': {'id': '9d2757a8-f7db-41bb-948d-48e3912c9291', 'info': None, 'row': 14326, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.13694132152764, 21.190890252529975, 0]}}, {'type': 'Feature', 'properties': {'id': '797b6191-3f18-428e-a6de-4ab438678fbe', 'info': None, 'row': 14326, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.17360938615658, 21.197126524676104, 0]}}]}
array(0)
- digital_number(pol, line, sample)complex64dask.array<chunksize=(1, 5000, 5000), meta=np.ndarray>
- comment :
- denoised digital number, read at full resolution
- history :
- digital_number: measurement/s1a-iw3-slc-v*-20170907t102953-20170907t103021-018268-01eb76-00*.tiff
Array Chunk Bytes 5.34 GiB 190.73 MiB Shape (2, 15070, 23768) (1, 5000, 5000) Count 82 Tasks 40 Chunks Type complex64 numpy.ndarray - time(line)datetime64[ns]2017-09-07T10:29:53.785278 ... 2...
- description :
- azimuth times interpolated along line dimension at the middle of range dimension
array(['2017-09-07T10:29:53.785278000', '2017-09-07T10:29:53.787333556', '2017-09-07T10:29:53.789389112', ..., '2017-09-07T10:30:21.703843224', '2017-09-07T10:30:21.705898780', '2017-09-07T10:30:21.707954336'], dtype='datetime64[ns]')
- sampleSpacing()float642.33
- units :
- m
- referential :
- slant
array(2.329562)
- lineSpacing()float6413.96
- units :
- m
array(13.95527)
- ground_heading(line, sample)float32dask.array<chunksize=(3014, 2971), meta=np.ndarray>
- comment :
- at ground level, computed from lon/lat in line direction
Array Chunk Bytes 1.33 GiB 34.16 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float32 numpy.ndarray - land_mask(line, sample)int8dask.array<chunksize=(3014, 2971), meta=np.ndarray>
- history :
- land_mask: cartopy.feature.NaturalEarthFeature land
Array Chunk Bytes 341.59 MiB 8.54 MiB Shape (15070, 23768) (3014, 2971) Count 120 Tasks 40 Chunks Type int8 numpy.ndarray - altitude(line, sample)float64dask.array<chunksize=(3014, 2971), 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 2.67 GiB 68.32 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float64 numpy.ndarray - azimuth_time(line, sample)datetime64[ns]dask.array<chunksize=(3014, 2971), 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 2.67 GiB 68.32 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type datetime64[ns] numpy.ndarray - slant_range_time(line, sample)float64dask.array<chunksize=(3014, 2971), 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 2.67 GiB 68.32 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float64 numpy.ndarray - incidence(line, sample)float64dask.array<chunksize=(3014, 2971), 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 2.67 GiB 68.32 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float64 numpy.ndarray - elevation(line, sample)float64dask.array<chunksize=(3014, 2971), 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 2.67 GiB 68.32 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float64 numpy.ndarray - longitude(line, sample)float64dask.array<chunksize=(3014, 2971), 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 2.67 GiB 68.32 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float64 numpy.ndarray - latitude(line, sample)float64dask.array<chunksize=(3014, 2971), 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 2.67 GiB 68.32 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float64 numpy.ndarray - velocity(line)float647.597e+03 7.597e+03 ... 7.597e+03
array([7597.2332727 , 7597.23329082, 7597.23330893, ..., 7597.4576957 , 7597.45771122, 7597.45772674])
- range_ground_spacing(sample)float64dask.array<chunksize=(2971,), meta=np.ndarray>
- history :
Array Chunk Bytes 185.69 kiB 23.21 kiB Shape (23768,) (2971,) Count 192 Tasks 8 Chunks Type float64 numpy.ndarray - sigma0_raw(pol, line, sample)float64dask.array<chunksize=(1, 3014, 2971), 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 5.34 GiB 68.32 MiB Shape (2, 15070, 23768) (1, 3014, 2971) Count 1972 Tasks 192 Chunks Type float64 numpy.ndarray - nesz(pol, line, sample)float64dask.array<chunksize=(1, 3014, 2971), 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 5.34 GiB 68.32 MiB Shape (2, 15070, 23768) (1, 3014, 2971) Count 1326 Tasks 80 Chunks Type float64 numpy.ndarray - gamma0_raw(pol, line, sample)float64dask.array<chunksize=(1, 3014, 2971), 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 5.34 GiB 68.32 MiB Shape (2, 15070, 23768) (1, 3014, 2971) Count 1972 Tasks 192 Chunks Type float64 numpy.ndarray - negz(pol, line, sample)float64dask.array<chunksize=(1, 3014, 2971), 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 5.34 GiB 68.32 MiB Shape (2, 15070, 23768) (1, 3014, 2971) Count 1326 Tasks 80 Chunks Type float64 numpy.ndarray - sigma0(pol, line, sample)float64dask.array<chunksize=(1, 3014, 2971), 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 5.34 GiB 68.32 MiB Shape (2, 15070, 23768) (1, 3014, 2971) Count 3376 Tasks 192 Chunks Type float64 numpy.ndarray - gamma0(pol, line, sample)float64dask.array<chunksize=(1, 3014, 2971), 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 5.34 GiB 68.32 MiB Shape (2, 15070, 23768) (1, 3014, 2971) Count 3376 Tasks 192 Chunks Type float64 numpy.ndarray
- name :
- SENTINEL1_DS:/tmp/S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW3
- short_name :
- SENTINEL1_DS:S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE:IW3
- product :
- SLC
- safe :
- S1A_IW_SLC__1SDV_20170907T102951_20170907T103021_018268_01EB76_Z020.SAFE
- swath :
- IW
- multidataset :
- False
- ipf :
- 2.84
- platform :
- SENTINEL-1A
- pols :
- VV VH
- start_date :
- 2017-09-07 10:29:53.785096
- stop_date :
- 2017-09-07 10:30:21.707772
- footprint :
- POLYGON ((-69.13847173718773 22.65528072350044, -69.9034749598377 22.7840878171622, -70.22567991374513 21.12110211400705, -69.46994209516342 20.99088492496858, -69.13847173718773 22.65528072350044))
- coverage :
- 187km * 79km (line * sample )
- pixel_line_m :
- <xarray.DataArray 'azimuthPixelSpacing' ()> array(13.95527) Attributes: source: /product/imageAnnotation/imageInformation/azimuthPixelSpacing
- pixel_sample_m :
- <xarray.DataArray 'groundRangePixelSpacing' ()> array(3.35728057) Attributes: source: /product/imageAnnotation/imageInformation/rangePixelSpacing
- orbit_pass :
- Descending
- platform_heading :
- -167.7216262988962
[11]:
s1ds.dataset['ground_heading']
[11]:
<xarray.DataArray 'ground_heading' (line: 15070, sample: 23768)> dask.array<ground_heading, shape=(15070, 23768), dtype=float32, chunksize=(3014, 2971), chunktype=numpy.ndarray> Coordinates: * line (line) int64 0 1 2 3 4 5 ... 15065 15066 15067 15068 15069 * sample (sample) int64 0 1 2 3 4 5 ... 23763 23764 23765 23766 23767 spatial_ref int64 0 Attributes: comment: at ground level, computed from lon/lat in line direction
- line: 15070
- sample: 23768
- dask.array<chunksize=(3014, 2971), meta=np.ndarray>
Array Chunk Bytes 1.33 GiB 34.16 MiB Shape (15070, 23768) (3014, 2971) Count 160 Tasks 40 Chunks Type float32 numpy.ndarray - line(line)int640 1 2 3 ... 15066 15067 15068 15069
- axis :
- Y
- units :
- 1
- comment :
- azimuth direction, in pixels from full resolution tiff
array([ 0, 1, 2, ..., 15067, 15068, 15069])
- sample(sample)int640 1 2 3 ... 23764 23765 23766 23767
- axis :
- X
- units :
- 1
- comment :
- cross track direction, in pixels from full resolution tiff
array([ 0, 1, 2, ..., 23765, 23766, 23767])
- 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': '687a6936-29b7-4a27-8542-08ea0d575d20', 'info': None, 'row': 0, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.13847173718773, 22.65528072350044, 0]}}, {'type': 'Feature', 'properties': {'id': '8a3e2a7a-fcb9-49bc-ab2a-537b494533a3', 'info': None, 'row': 0, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.17820820742932, 22.66206726191746, 0]}}, {'type': 'Feature', 'properties': {'id': '82055312-bb2e-47d9-8117-a68a7bdb7afe', 'info': None, 'row': 0, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.21776956703296, 22.66881345359603, 0]}}, {'type': 'Feature', 'properties': {'id': '85f563ea-abfb-4235-a1de-f60720d2f0aa', 'info': None, 'row': 0, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.25715977676485, 22.67552011031412, 0]}}, {'type': 'Feature', 'properties': {'id': '17360bea-6be9-4d3d-9f67-0977c16911f2', 'info': None, 'row': 0, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.29638266322931, 22.68218801632446, 0]}}, {'type': 'Feature', 'properties': {'id': 'b389188a-9deb-42cd-9cfc-392aad276953', 'info': None, 'row': 0, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.33544192501508, 22.68881792961555, 0]}}, {'type': 'Feature', 'properties': {'id': 'a7f205d4-c6be-4aab-ab7a-b7a7ce6143b1', 'info': None, 'row': 0, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.37434113848721, 22.69541058309964, 0]}}, {'type': 'Feature', 'properties': {'id': '1a367c3c-ae6c-4e65-95b9-6fb06519f02b', 'info': None, 'row': 0, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.4130837632483, 22.7019666857333, 0]}}, {'type': 'Feature', 'properties': {'id': '43103e5c-0d51-4ce9-8f98-36d26706e216', 'info': None, 'row': 0, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.45167314729233, 22.70848692357449, 0]}}, {'type': 'Feature', 'properties': {'id': '733f8366-4db8-432a-a473-6efc5536b2a3', 'info': None, 'row': 0, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.49011253187193, 22.7149719607812, 0]}}, {'type': 'Feature', 'properties': {'id': '2bb604b1-079b-4684-ba59-1c294cb1bc59', 'info': None, 'row': 0, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.52840505609768, 22.72142244055495, 0]}}, {'type': 'Feature', 'properties': {'id': '6ed56072-8124-4583-9c2d-3436a3f4ecde', 'info': None, 'row': 0, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.56655376128812, 22.72783898603313, 0]}}, {'type': 'Feature', 'properties': {'id': 'e9e1efe6-b934-4b5a-9264-2bbfec3e9cfe', 'info': None, 'row': 0, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.60456159508581, 22.73422220113351, 0]}}, {'type': 'Feature', 'properties': {'id': 'd47c6220-4c91-467a-81a0-1c80868e9ba6', 'info': None, 'row': 0, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.6424314153552, 22.74057267135375, 0]}}, {'type': 'Feature', 'properties': {'id': '01654706-e83e-41fd-9691-8355cca35871', 'info': None, 'row': 0, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.68016599387602, 22.74689096452925, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5f20d03-0954-41d6-bb8d-8ff7026cdb69', 'info': None, 'row': 0, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.71776801984517, 22.75317763155148, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca672e35-3791-4df3-9931-0bdf19e99eee', 'info': None, 'row': 0, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.75524010319884, 22.75943320704956, 0]}}, {'type': 'Feature', 'properties': {'id': '84351c21-15f9-47af-9469-248f006a2bac', 'info': None, 'row': 0, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.79258477776644, 22.76565821003726, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb7740f7-0a9c-4823-8bc1-2fa196eac886', 'info': None, 'row': 0, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.82980450426614, 22.77185314452762, 0]}}, {'type': 'Feature', 'properties': {'id': '532cbe7c-1209-4819-953a-98b9198b0f28', 'info': None, 'row': 0, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.8669016731517, 22.77801850011687, 0]}}, {'type': 'Feature', 'properties': {'id': '32e33ab2-6af1-4826-b61c-a847d83e88cd', 'info': None, 'row': 754, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.15506189493175, 22.572083635896206, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5f8a592-259a-40e8-9147-a32a87b3fb19', 'info': None, 'row': 754, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.19477332948718, 22.578873413043745, 0]}}, {'type': 'Feature', 'properties': {'id': '5324b74d-ffb6-43e9-b318-9da34b6cfeb1', 'info': None, 'row': 754, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.23430975824905, 22.58562287054896, 0]}}, {'type': 'Feature', 'properties': {'id': 'a513f862-416c-4fc2-89c9-b4f20c294b81', 'info': None, 'row': 754, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.27367513941775, 22.59233281993449, 0]}}, {'type': 'Feature', 'properties': {'id': 'adb1f261-0ec5-4489-984b-18b7dd7a5675', 'info': None, 'row': 754, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.31287329712285, 22.59900404520733, 0]}}, {'type': 'Feature', 'properties': {'id': 'b2bd3aff-413e-4c84-870f-ba1a208ca232', 'info': None, 'row': 754, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.35190792756549, 22.605637304119245, 0]}}, {'type': 'Feature', 'properties': {'id': '3ecc0c07-821a-49cb-a0e2-0a3a8f380680', 'info': None, 'row': 754, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.39078260480571, 22.61223332935443, 0]}}, {'type': 'Feature', 'properties': {'id': 'f8452384-68f6-415d-8e30-cd0bbd74e3a8', 'info': None, 'row': 754, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.42950078622016, 22.618792829649546, 0]}}, {'type': 'Feature', 'properties': {'id': 'e1a7e765-2097-4a0e-905e-35ab7455e122', 'info': None, 'row': 754, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.46806581765222, 22.625316490850484, 0]}}, {'type': 'Feature', 'properties': {'id': 'f1566519-b94a-4d74-b09c-2c9edb351398', 'info': None, 'row': 754, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.5064809382757, 22.63180497691058, 0]}}, {'type': 'Feature', 'properties': {'id': 'dba49a00-03cd-4fe4-8226-d754273c3b75', 'info': None, 'row': 754, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.5447492851911, 22.638258930833807, 0]}}, {'type': 'Feature', 'properties': {'id': '54d9299f-323f-40e3-a541-1a87deafbf74', 'info': None, 'row': 754, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.58287389777246, 22.644678975566766, 0]}}, {'type': 'Feature', 'properties': {'id': '5a25b26b-b709-4d97-9468-2a529bab3424', 'info': None, 'row': 754, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.62085772178062, 22.651065714842872, 0]}}, {'type': 'Feature', 'properties': {'id': '20b0dfb1-ea87-4532-a2a8-0dd06758eda6', 'info': None, 'row': 754, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.65870361325833, 22.657419733981648, 0]}}, {'type': 'Feature', 'properties': {'id': '4bc6fbd6-d043-4b49-a02a-9afc4a459cdb', 'info': None, 'row': 754, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.69641434222102, 22.663741600646198, 0]}}, {'type': 'Feature', 'properties': {'id': '07acb726-2e90-4ec7-b253-aeab3ed2690e', 'info': None, 'row': 754, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.7339925961564, 22.67003186556135, 0]}}, {'type': 'Feature', 'properties': {'id': '2e262537-9f7f-4fbb-95a2-542bcf1f2ecc', 'info': None, 'row': 754, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.77144098334415, 22.676291063194967, 0]}}, {'type': 'Feature', 'properties': {'id': '19df36ab-c281-4f78-a496-22eb9daa7eff', 'info': None, 'row': 754, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.80876203600776, 22.68251971240472, 0]}}, {'type': 'Feature', 'properties': {'id': '030da0bb-4936-4fe5-8a44-4109033e49e3', 'info': None, 'row': 754, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.84595821330795, 22.688718317052484, 0]}}, {'type': 'Feature', 'properties': {'id': 'cf4a0ee5-87ad-43e1-84bd-86a4be352cc0', 'info': None, 'row': 754, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.88303190418753, 22.69488736658807, 0]}}, {'type': 'Feature', 'properties': {'id': '34764a7c-d8c8-4d23-a9cf-32a75be5bb72', 'info': None, 'row': 1508, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.17165204642964, 22.488886544870606, 0]}}, {'type': 'Feature', 'properties': {'id': '251a58be-7507-4f2a-9e4b-3daa227c0f77', 'info': None, 'row': 1508, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.21133844560917, 22.495679560759754, 0]}}, {'type': 'Feature', 'properties': {'id': 'ff216528-fdd7-4392-b8b5-0652775ce7f0', 'info': None, 'row': 1508, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.25084994383806, 22.502432284102465, 0]}}, {'type': 'Feature', 'properties': {'id': '79114eb9-75e1-409b-bced-af962d04288c', 'info': None, 'row': 1508, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.29019049675075, 22.509145526166066, 0]}}, {'type': 'Feature', 'properties': {'id': '13a30213-dde9-42ce-8812-9fd438d0c9ef', 'info': None, 'row': 1508, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.32936392600232, 22.515820070711836, 0]}}, {'type': 'Feature', 'properties': {'id': '38f43711-4afa-48cf-ae60-fa035050574d', 'info': None, 'row': 1508, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.36837392540615, 22.522456675254787, 0]}}, {'type': 'Feature', 'properties': {'id': '37a6de89-dc11-4a85-93d7-41d742464326', 'info': None, 'row': 1508, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.40722406671738, 22.52905607225107, 0]}}, {'type': 'Feature', 'properties': {'id': '97938a27-010f-4f30-a784-b0cc79e860c3', 'info': None, 'row': 1508, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.4459178050868, 22.535618970217442, 0]}}, {'type': 'Feature', 'properties': {'id': 'd48054fc-8094-4b22-a1bf-8f6d8798d1f0', 'info': None, 'row': 1508, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.4844584842071, 22.54214605478772, 0]}}, {'type': 'Feature', 'properties': {'id': '654ef475-fa30-42ba-9330-59ed2752390c', 'info': None, 'row': 1508, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.52284934117336, 22.548637989710613, 0]}}, {'type': 'Feature', 'properties': {'id': 'f2b07b02-922b-4c0a-bd9a-e5489d4bd7f9', 'info': None, 'row': 1508, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.56109351107607, 22.555095417792526, 0]}}, {'type': 'Feature', 'properties': {'id': '307fddf6-3a86-4d89-b354-6ec59193bdc6', 'info': None, 'row': 1508, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.59919403134475, 22.561518961789282, 0]}}, {'type': 'Feature', 'properties': {'id': '1dd5b677-1105-4c26-a92e-3be696132610', 'info': None, 'row': 1508, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.63715384585853, 22.56790922524994, 0]}}, {'type': 'Feature', 'properties': {'id': 'b289c30f-3ace-4eb4-bed4-f9a3edef5cef', 'info': None, 'row': 1508, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.6749758088385, 22.5742667933159, 0]}}, {'type': 'Feature', 'properties': {'id': '2f78ef3c-f88f-4ed3-8a9d-23aba8d1299c', 'info': None, 'row': 1508, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.71266268853587, 22.580592233477972, 0]}}, {'type': 'Feature', 'properties': {'id': '13eed68a-d622-4aa4-9b31-0518d001a21a', 'info': None, 'row': 1508, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.75021717072912, 22.586886096294332, 0]}}, {'type': 'Feature', 'properties': {'id': '8e226100-7c08-4f14-b1f4-b4a6e845e51b', 'info': None, 'row': 1508, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.7876418620415, 22.5931489160716, 0]}}, {'type': 'Feature', 'properties': {'id': 'd0aa9275-c960-471e-b369-df8dcb20a864', 'info': None, 'row': 1508, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.82493929309057, 22.599381211511343, 0]}}, {'type': 'Feature', 'properties': {'id': '814e1fc8-63e1-4f45-ae55-1e11968a904d', 'info': None, 'row': 1508, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.8621119214796, 22.60558348632427, 0]}}, {'type': 'Feature', 'properties': {'id': '562730b6-91d3-40cc-8b5e-5b53e18bf5a0', 'info': None, 'row': 1508, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.89916213464049, 22.611756229813807, 0]}}, {'type': 'Feature', 'properties': {'id': '26436e26-3d96-49fd-b7c4-3a59c61af052', 'info': None, 'row': 2262, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.18823749457997, 22.405686877561287, 0]}}, {'type': 'Feature', 'properties': {'id': '908e4261-ea70-40ba-9351-c72d7606dee7', 'info': None, 'row': 2262, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.22789909203806, 22.412483140535116, 0]}}, {'type': 'Feature', 'properties': {'id': 'f8d05f51-9adc-4147-8c7f-83e4b5906bea', 'info': None, 'row': 2262, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.26738589222438, 22.41923913789002, 0]}}, {'type': 'Feature', 'properties': {'id': 'eff91266-0a04-4aa3-841d-df294493234f', 'info': None, 'row': 2262, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.30670184823606, 22.425955680641316, 0]}}, {'type': 'Feature', 'properties': {'id': 'a2e8b32d-eef5-4a74-8435-9f539726893d', 'info': None, 'row': 2262, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.34585077928091, 22.432633552307585, 0]}}, {'type': 'Feature', 'properties': {'id': '3fcfd1c4-34b2-409f-b506-b7c434d75275', 'info': None, 'row': 2262, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.38483637681114, 22.43927351017016, 0]}}, {'type': 'Feature', 'properties': {'id': 'c3df17e8-6926-4a2a-a626-0d507ec65940', 'info': None, 'row': 2262, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.42366221030252, 22.44587628646, 0]}}, {'type': 'Feature', 'properties': {'id': '471b4533-43b9-4e61-832f-0a7259b1105c', 'info': None, 'row': 2262, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.46233173270436, 22.45244258947671, 0]}}, {'type': 'Feature', 'properties': {'id': '566933e1-392f-4252-b8ee-64a014660196', 'info': None, 'row': 2262, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5008482855825, 22.458973104644734, 0]}}, {'type': 'Feature', 'properties': {'id': '5be5ed79-9965-4c81-8049-a3d8e80eb877', 'info': None, 'row': 2262, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.53921510397618, 22.4654684955107, 0]}}, {'type': 'Feature', 'properties': {'id': 'bf1a698d-0eac-4de3-9288-47924628327e', 'info': None, 'row': 2262, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.57743532098782, 22.47192940468593, 0]}}, {'type': 'Feature', 'properties': {'id': '4a5e1661-f673-45cc-9954-b8275c26d7d3', 'info': None, 'row': 2262, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.61551197212393, 22.478356454737856, 0]}}, {'type': 'Feature', 'properties': {'id': '507d2690-26d6-46e6-9901-d25391099e0e', 'info': None, 'row': 2262, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.65344799940249, 22.48475024903353, 0]}}, {'type': 'Feature', 'properties': {'id': '3c0bf072-cc81-47b7-9d62-67f535b9fbfc', 'info': None, 'row': 2262, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.69124625524287, 22.49111137253838, 0]}}, {'type': 'Feature', 'properties': {'id': 'fbbb504c-337f-4c24-9e72-12f3eb7c26b5', 'info': None, 'row': 2262, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.72890950615133, 22.497440392573104, 0]}}, {'type': 'Feature', 'properties': {'id': '1bbae033-babf-419a-a157-22d18adddb5e', 'info': None, 'row': 2262, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.76644043621583, 22.50373785953132, 0]}}, {'type': 'Feature', 'properties': {'id': '0c3dac9e-241d-48fc-9846-4c5bb4b72d2d', 'info': None, 'row': 2262, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.80384165042122, 22.51000430756038, 0]}}, {'type': 'Feature', 'properties': {'id': '61f83628-ed73-487a-b99f-cdd4d03dcd4f', 'info': None, 'row': 2262, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.84111567779664, 22.516240255207713, 0]}}, {'type': 'Feature', 'properties': {'id': '8401b2ca-e608-4c22-9fa1-fa000818d255', 'info': None, 'row': 2262, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.87826497440483, 22.52244620603474, 0]}}, {'type': 'Feature', 'properties': {'id': '040a5cb7-f1ba-4e0b-8d67-5f49a7c46b9b', 'info': None, 'row': 2262, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.91529192618327, 22.52862264920026, 0]}}, {'type': 'Feature', 'properties': {'id': 'ebd5c6ce-f2c3-4ddd-b57e-f42a68f15e1d', 'info': None, 'row': 3016, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.20482299582194, 22.322486876900143, 0]}}, {'type': 'Feature', 'properties': {'id': '48806d6c-7676-4226-af27-0f5471d52e6f', 'info': None, 'row': 3016, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.24445979207599, 22.32928638701361, 0]}}, {'type': 'Feature', 'properties': {'id': '28925d4b-5fa9-4e08-867c-0e3bb75793c4', 'info': None, 'row': 3016, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.28392189473455, 22.33604565843525, 0]}}, {'type': 'Feature', 'properties': {'id': '81908386-8fa3-45b6-9e61-012c9be0bd8f', 'info': None, 'row': 3016, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.32321325435737, 22.34276550192836, 0]}}, {'type': 'Feature', 'properties': {'id': 'df0ab7aa-0e27-432d-bad1-490b65817f3e', 'info': None, 'row': 3016, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.36233768770522, 22.349446700768844, 0]}}, {'type': 'Feature', 'properties': {'id': '36e39e31-7f5f-4d10-acc9-badb1876e6cb', 'info': None, 'row': 3016, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.40129888386907, 22.356090012004355, 0]}}, {'type': 'Feature', 'properties': {'id': 'db3c29f5-4bfe-4552-b391-848277cbe0b3', 'info': None, 'row': 3016, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.4401004100454, 22.362696167640674, 0]}}, {'type': 'Feature', 'properties': {'id': 'b0d445f7-9bc7-482c-bada-6a0c4552fe41', 'info': None, 'row': 3016, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.47874571698213, 22.369265875760274, 0]}}, {'type': 'Feature', 'properties': {'id': '565384ef-95c7-4c79-9b25-6d56d24ae503', 'info': None, 'row': 3016, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5172381441183, 22.37579982157822, 0]}}, {'type': 'Feature', 'properties': {'id': 'fe6792f6-0e26-49ce-b5a5-72bd031f3124', 'info': None, 'row': 3016, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.55558092443727, 22.382298668439052, 0]}}, {'type': 'Feature', 'properties': {'id': '30a61d70-3c50-4929-9860-d15b7b361df1', 'info': None, 'row': 3016, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.5937771890536, 22.38876305875905, 0]}}, {'type': 'Feature', 'properties': {'id': 'dbd5192f-2fe9-43b1-b5d8-2176f263d3f4', 'info': None, 'row': 3016, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.63182997155073, 22.39519361491725, 0]}}, {'type': 'Feature', 'properties': {'id': '363e84a5-cd9d-4682-8347-0ad2ea468135', 'info': None, 'row': 3016, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.66974221208554, 22.40159094009869, 0]}}, {'type': 'Feature', 'properties': {'id': '42d2ba46-5f1e-4dca-8043-676bd562f943', 'info': None, 'row': 3016, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.70751676127577, 22.40795561909285, 0]}}, {'type': 'Feature', 'properties': {'id': 'f564b765-8022-46db-8daa-33b16feeb9be', 'info': None, 'row': 3016, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.74515638388276, 22.41428821905031, 0]}}, {'type': 'Feature', 'properties': {'id': '354cc8cf-6312-4952-b2aa-807981b1f162', 'info': None, 'row': 3016, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.78266376230398, 22.420589290200144, 0]}}, {'type': 'Feature', 'properties': {'id': '558d4de7-3634-4d8e-a8f7-09245d6ea811', 'info': None, 'row': 3016, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.82004149988593, 22.426859366530437, 0]}}, {'type': 'Feature', 'properties': {'id': 'c7feb1ff-6e92-4f3a-bc85-34360dac4145', 'info': None, 'row': 3016, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.85729212406933, 22.433098966434486, 0]}}, {'type': 'Feature', 'properties': {'id': '8255c20c-4b94-4d0c-a6c1-def8f8d222f4', 'info': None, 'row': 3016, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.89441808937653, 22.439308593324423, 0]}}, {'type': 'Feature', 'properties': {'id': 'e2a5923e-1573-483f-8c38-461d17d68051', 'info': None, 'row': 3016, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.9314217802505, 22.44548873621445, 0]}}, {'type': 'Feature', 'properties': {'id': '94079aaa-f0dc-4db5-8808-761c88b10cf0', 'info': None, 'row': 3770, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.22142845951248, 22.239161535952956, 0]}}, {'type': 'Feature', 'properties': {'id': '01e91903-c8fc-4ed7-b65b-7efcc6d6be59', 'info': None, 'row': 3770, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.26104064911816, 22.245964313871454, 0]}}, {'type': 'Feature', 'properties': {'id': 'afcf4c1f-ed7f-45b3-90da-e721265ddc04', 'info': None, 'row': 3770, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.30047824780792, 22.252726879865293, 0]}}, {'type': 'Feature', 'properties': {'id': '76a5b833-52de-4acf-8fcf-01305b2a309c', 'info': None, 'row': 3770, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.33974520362867, 22.259450044449302, 0]}}, {'type': 'Feature', 'properties': {'id': 'cba8c71c-f214-4cbd-be25-579bfe73472d', 'info': None, 'row': 3770, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.3788453309176, 22.266134590660222, 0]}}, {'type': 'Feature', 'properties': {'id': '86480dbf-1821-42e2-86bc-3dd352fd5f0c', 'info': None, 'row': 3770, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.41778231642718, 22.272781275315342, 0]}}, {'type': 'Feature', 'properties': {'id': '35976cb0-a283-49ba-b708-ee88c5177950', 'info': None, 'row': 3770, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.45655972509635, 22.279390830198423, 0]}}, {'type': 'Feature', 'properties': {'id': '8ad5f46e-2281-462c-8449-f85661da4aab', 'info': None, 'row': 3770, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.49518100549287, 22.28596396317794, 0]}}, {'type': 'Feature', 'properties': {'id': 'c9087ea7-6caa-43e4-b168-29cea31cfd1d', 'info': None, 'row': 3770, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.53364949494919, 22.29250135926253, 0]}}, {'type': 'Feature', 'properties': {'id': 'a4b50692-a813-4891-a5cb-410aca458c2e', 'info': None, 'row': 3770, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.57196842441245, 22.299003681597537, 0]}}, {'type': 'Feature', 'properties': {'id': '2616a28f-6148-43dd-87a6-685263254fa6', 'info': None, 'row': 3770, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.61014092302827, 22.305471572406944, 0]}}, {'type': 'Feature', 'properties': {'id': '233d1d63-fc0f-4d18-a360-45daca9692dd', 'info': None, 'row': 3770, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.64817002247526, 22.31190565388406, 0]}}, {'type': 'Feature', 'properties': {'id': '0d960b12-7974-4a5b-a65f-03f6f28110fa', 'info': None, 'row': 3770, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.68605866106694, 22.31830652903448, 0]}}, {'type': 'Feature', 'properties': {'id': '83bd1d1b-2bc5-476f-91d8-a33f73f5d419', 'info': None, 'row': 3770, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.72380968763643, 22.32467478247424, 0]}}, {'type': 'Feature', 'properties': {'id': 'dfb4bab3-5570-4b09-9dde-bf72166a1056', 'info': None, 'row': 3770, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.76142586521671, 22.331010981186218, 0]}}, {'type': 'Feature', 'properties': {'id': '86d79a28-e32a-495e-8419-31b92adb91bb', 'info': None, 'row': 3770, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.7989098745307, 22.33731567523723, 0]}}, {'type': 'Feature', 'properties': {'id': 'fd18d803-c209-4b54-9766-cc31a2f03ea0', 'info': None, 'row': 3770, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.83626431730207, 22.343589398458388, 0]}}, {'type': 'Feature', 'properties': {'id': '84208f72-3e86-4f8f-8d75-d1568648e6ab', 'info': None, 'row': 3770, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.87349171939807, 22.349832669090993, 0]}}, {'type': 'Feature', 'properties': {'id': '80852d80-dd9b-45b4-8be5-73122ec2e900', 'info': None, 'row': 3770, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.9105945338151, 22.356045990400027, 0]}}, {'type': 'Feature', 'properties': {'id': '40c0dcb0-3284-4bd1-ae8a-598a0134812d', 'info': None, 'row': 3770, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.94757514351575, 22.362229851257098, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4f4cbaa-e26f-4563-b7ba-ebdcbc8fd363', 'info': None, 'row': 4524, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.23803385672487, 22.15583643203095, 0]}}, {'type': 'Feature', 'properties': {'id': '5e8910ee-7606-4a3c-ada8-50a1f013c46c', 'info': None, 'row': 4524, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.2776214406779, 22.16264247777952, 0]}}, {'type': 'Feature', 'properties': {'id': '1d4782f1-aebf-439a-a4a2-0d6ad02bd902', 'info': None, 'row': 4524, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.31703453638967, 22.16940833836986, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba1655e0-6f85-4668-90e3-f2feba33db7e', 'info': None, 'row': 4524, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.35627708939435, 22.176134824068317, 0]}}, {'type': 'Feature', 'properties': {'id': 'f62ae924-0199-45b8-95eb-22e7f0254973', 'info': None, 'row': 4524, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.39535291160573, 22.18282271767249, 0]}}, {'type': 'Feature', 'properties': {'id': '70f4ebc7-7789-496c-aeca-7f42d5745487', 'info': None, 'row': 4524, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.43426568743782, 22.189472775769318, 0]}}, {'type': 'Feature', 'properties': {'id': '8931fca5-cc01-4131-811b-2a8eb04b89ea', 'info': None, 'row': 4524, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.47301897957219, 22.196085729920565, 0]}}, {'type': 'Feature', 'properties': {'id': 'ee2ecb1c-cf73-440e-8b58-8c274dabf565', 'info': None, 'row': 4524, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.51161623439647, 22.20266228778071, 0]}}, {'type': 'Feature', 'properties': {'id': '6eef8649-9542-4742-b0a5-8958f05506ce', 'info': None, 'row': 4524, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.55006078713666, 22.20920313415198, 0]}}, {'type': 'Feature', 'properties': {'id': '36f54048-bf24-4d3d-b856-d8b4a71cc95b', 'info': None, 'row': 4524, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.5883558667038, 22.215708931980522, 0]}}, {'type': 'Feature', 'properties': {'id': '3f4b29a3-e405-4dbe-838c-3869d6d3d32f', 'info': None, 'row': 4524, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.62650460027459, 22.22218032329804, 0]}}, {'type': 'Feature', 'properties': {'id': 'd775ca08-56aa-4e83-a436-fdc81cd4f915', 'info': None, 'row': 4524, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.66451001762297, 22.228617930112136, 0]}}, {'type': 'Feature', 'properties': {'id': '4fdcb886-d7cd-48da-a509-cbeb7ca4d1b5', 'info': None, 'row': 4524, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.70237505521919, 22.235022355248947, 0]}}, {'type': 'Feature', 'properties': {'id': 'd1af84b8-77be-463c-8235-9180e4fe1f1c', 'info': None, 'row': 4524, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.74010256011178, 22.241394183151094, 0]}}, {'type': 'Feature', 'properties': {'id': '05844785-a543-4d89-ab34-ce278bd1bde8', 'info': None, 'row': 4524, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.7776952936055, 22.247733980633758, 0]}}, {'type': 'Feature', 'properties': {'id': '34141263-5c35-439a-8000-4aed6e6f9e46', 'info': None, 'row': 4524, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.81515593474876, 22.254042297601508, 0]}}, {'type': 'Feature', 'properties': {'id': 'c5866da5-ac2a-49f8-b3cb-d83d614b41bb', 'info': None, 'row': 4524, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.85248708364247, 22.26031966772848, 0]}}, {'type': 'Feature', 'properties': {'id': 'a37652cd-1814-4b7d-95e3-474b064fd4fe', 'info': None, 'row': 4524, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.88969126458052, 22.26656660910401, 0]}}, {'type': 'Feature', 'properties': {'id': '63724815-ccf2-4f73-82e0-b35b99a21e88', 'info': None, 'row': 4524, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.9267709290334, 22.272783624845907, 0]}}, {'type': 'Feature', 'properties': {'id': '77231e0f-d024-4ae9-bc50-9015b757ff7d', 'info': None, 'row': 4524, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.96372845848339, 22.278971203683227, 0]}}, {'type': 'Feature', 'properties': {'id': '4c23360b-fd84-4212-83da-b12a4136a493', 'info': None, 'row': 5278, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.25462261223964, 22.07257066341353, 0]}}, {'type': 'Feature', 'properties': {'id': 'e83255d3-dad0-4f14-88b6-5d3dbe0f44cb', 'info': None, 'row': 5278, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.29418583980319, 22.079379983261685, 0]}}, {'type': 'Feature', 'properties': {'id': '2b4f62c7-995e-4025-af47-111d4abb7e5d', 'info': None, 'row': 5278, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.33357468057082, 22.08614914452901, 0]}}, {'type': 'Feature', 'properties': {'id': '6daa7877-7b95-48b3-9985-69675920d348', 'info': None, 'row': 5278, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.37279307759408, 22.09287895723687, 0]}}, {'type': 'Feature', 'properties': {'id': 'e0e8f1ec-52ea-4a93-a9ab-c9a58981af34', 'info': None, 'row': 5278, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.41184484039226, 22.09957020394701, 0]}}, {'type': 'Feature', 'properties': {'id': '6b6c09f9-061c-4ebd-96e4-284cf14108c0', 'info': None, 'row': 5278, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.45073365106894, 22.106223641019195, 0]}}, {'type': 'Feature', 'properties': {'id': '766fd2c2-ed0b-46d5-946a-f7e88f3aadeb', 'info': None, 'row': 5278, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.48946307007522, 22.112839999796275, 0]}}, {'type': 'Feature', 'properties': {'id': '68b3fc6c-0221-4760-a6c6-726dfb4764d4', 'info': None, 'row': 5278, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.52803654164452, 22.119419987721685, 0]}}, {'type': 'Feature', 'properties': {'id': '91fb4841-b811-4f70-8dd2-78914b9d1f20', 'info': None, 'row': 5278, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.56645739892147, 22.125964289394062, 0]}}, {'type': 'Feature', 'properties': {'id': '64a4d428-e633-4cbb-bf37-0f151442cafb', 'info': None, 'row': 5278, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.60472886880517, 22.132473567563117, 0]}}, {'type': 'Feature', 'properties': {'id': '8ac68c66-6bb3-4aef-b068-783fd2267541', 'info': None, 'row': 5278, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.64285407652682, 22.138948464070914, 0]}}, {'type': 'Feature', 'properties': {'id': '02118e15-6ced-46cb-804b-d25f795d3a38', 'info': None, 'row': 5278, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.68083604997815, 22.145389600741872, 0]}}, {'type': 'Feature', 'properties': {'id': '6642c472-a872-4283-8bbb-fbc63e788e5c', 'info': None, 'row': 5278, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.71867772380803, 22.15179758022515, 0]}}, {'type': 'Feature', 'properties': {'id': '09927e1d-cf2c-4060-b3a3-d80d949ab780', 'info': None, 'row': 5278, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.75638194330148, 22.15817298679233, 0]}}, {'type': 'Feature', 'properties': {'id': 'd1dd6262-c2fa-4dc8-8dbe-8999a669587d', 'info': None, 'row': 5278, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.79395146805537, 22.164516387093144, 0]}}, {'type': 'Feature', 'properties': {'id': '1f13fda5-dd12-46d7-9249-8fbf37de0cb5', 'info': None, 'row': 5278, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.83138897546345, 22.170828330872176, 0]}}, {'type': 'Feature', 'properties': {'id': '4f81520c-7377-4da6-b4d3-b10fb6de6c55', 'info': None, 'row': 5278, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.86869706402284, 22.177109351648696, 0]}}, {'type': 'Feature', 'properties': {'id': '0a1984fc-f4ef-40d2-bc69-b9b074256391', 'info': None, 'row': 5278, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.90587825647265, 22.183359967362144, 0]}}, {'type': 'Feature', 'properties': {'id': '21e91df2-3971-4787-a421-38406bae5cb1', 'info': None, 'row': 5278, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.94293500277541, 22.189580680985152, 0]}}, {'type': 'Feature', 'properties': {'id': '752d981d-a3d8-46cf-ad04-1b4f6f5a6f53', 'info': None, 'row': 5278, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.97986968295044, 22.195771981106162, 0]}}, {'type': 'Feature', 'properties': {'id': '2921c34d-b750-471a-8638-80239dd58afa', 'info': None, 'row': 6032, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.27121127969059, 21.989305213461112, 0]}}, {'type': 'Feature', 'properties': {'id': '087e93c2-b717-441c-9cfd-69c73b7aa840', 'info': None, 'row': 6032, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.31075015218009, 21.996117807461744, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca10e6c7-20bc-4317-83f8-88b9499ad1d3', 'info': None, 'row': 6032, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.3501147393125, 22.002890269457865, 0]}}, {'type': 'Feature', 'properties': {'id': '4df41464-b668-4309-ac2f-05243d3e57a9', 'info': None, 'row': 6032, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.38930898165694, 22.009623409225878, 0]}}, {'type': 'Feature', 'properties': {'id': '0a206b83-21c3-47de-a82d-6d681d84b39e', 'info': None, 'row': 6032, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.42833668633835, 22.01631800909171, 0]}}, {'type': 'Feature', 'properties': {'id': 'c0ab7d67-ed6c-43d6-82ea-ab97c02af1cb', 'info': None, 'row': 6032, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.46720153315003, 22.022974825187955, 0]}}, {'type': 'Feature', 'properties': {'id': '1a3ca005-a9ed-4ab3-90be-b64be4d6b4b7', 'info': None, 'row': 6032, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.50590708031272, 22.02959458863858, 0]}}, {'type': 'Feature', 'properties': {'id': 'be74d6ac-35fc-45b6-98bf-f9f614ac7602', 'info': None, 'row': 6032, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.5444567699058, 22.036178006675982, 0]}}, {'type': 'Feature', 'properties': {'id': '86cdebfa-d4b4-4a3b-ab4c-35f2e93f9949', 'info': None, 'row': 6032, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.58285393299265, 22.042725763695238, 0]}}, {'type': 'Feature', 'properties': {'id': '36d7b019-b9af-43d2-a4d5-e75e719b14ef', 'info': None, 'row': 6032, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.6211017944606, 22.04923852224963, 0]}}, {'type': 'Feature', 'properties': {'id': 'b91a97b4-ae26-46f3-97e7-7242a746170b', 'info': None, 'row': 6032, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.65920347759538, 22.05571692399158, 0]}}, {'type': 'Feature', 'properties': {'id': '5e9e8a24-bde2-4577-8cf8-75bc6b8520b5', 'info': None, 'row': 6032, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.69716200840674, 22.062161590562372, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb502a90-a8a5-47e4-a365-d49c1546f83c', 'info': None, 'row': 6032, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.73498031972218, 22.068573124434188, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb6ee4b4-9c93-439d-8adb-6676e5ba9203', 'info': None, 'row': 6032, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.77266125506337, 22.074952109707574, 0]}}, {'type': 'Feature', 'properties': {'id': '94d6b5c2-e88e-46bc-8614-d4ca5e7975f4', 'info': None, 'row': 6032, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.81020757231941, 22.08129911286685, 0]}}, {'type': 'Feature', 'properties': {'id': 'ccf0e649-e2ef-457c-ae1f-246fc910c04a', 'info': None, 'row': 6032, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.84762194722951, 22.0876146834966, 0]}}, {'type': 'Feature', 'properties': {'id': 'a39b8c66-bab8-4ef4-816b-fbee65286c86', 'info': None, 'row': 6032, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.88490697668706, 22.09389935496125, 0]}}, {'type': 'Feature', 'properties': {'id': '076bbb4c-bcb2-4bcb-bcd4-42aeb5e6d3b9', 'info': None, 'row': 6032, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.9220651818765, 22.10015364505037, 0]}}, {'type': 'Feature', 'properties': {'id': '8afa7453-a8f8-4d2f-8b99-e44baed2bb20', 'info': None, 'row': 6032, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.95909901125252, 22.10637805659141, 0]}}, {'type': 'Feature', 'properties': {'id': '29c00886-71d7-4c95-8c38-e9ed59dd5ca1', 'info': None, 'row': 6032, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.99601084337148, 22.11257307803223, 0]}}, {'type': 'Feature', 'properties': {'id': 'e651a301-4e85-476c-bc23-ba5b1258e0d8', 'info': None, 'row': 6786, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.28778343517328, 21.906099513197816, 0]}}, {'type': 'Feature', 'properties': {'id': 'fa269749-c2ef-4f5b-95e5-bb2034b37b8c', 'info': None, 'row': 6786, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.3272981992296, 21.912915391266232, 0]}}, {'type': 'Feature', 'properties': {'id': 'd23a7d1c-a560-4acd-bb76-ecc5e50375c8', 'info': None, 'row': 6786, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.36663877815128, 21.91969116370526, 0]}}, {'type': 'Feature', 'properties': {'id': 'f88d0dbb-cb57-4adc-bd1d-d76af7956845', 'info': None, 'row': 6786, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.4058091100548, 21.926427640050104, 0]}}, {'type': 'Feature', 'properties': {'id': 'bd9e55e6-40a3-475c-a78a-5676eb07b96e', 'info': None, 'row': 6786, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.44481299969956, 21.933125602394483, 0]}}, {'type': 'Feature', 'properties': {'id': 'ffa641cb-47bf-48ee-8605-a3863368621b', 'info': None, 'row': 6786, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.48365412459609, 21.9397858066473, 0]}}, {'type': 'Feature', 'properties': {'id': '9e851a10-e744-4cdd-8b1d-b0906915b522', 'info': None, 'row': 6786, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.52233604076154, 21.946408983717006, 0]}}, {'type': 'Feature', 'properties': {'id': '7ed8fa25-3d22-463f-8d69-3189ebc55d58', 'info': None, 'row': 6786, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.56086218814696, 21.952995840628176, 0]}}, {'type': 'Feature', 'properties': {'id': '03731dc0-5553-4634-95c1-8dc396368d9f', 'info': None, 'row': 6786, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5992358957592, 21.959547061575442, 0]}}, {'type': 'Feature', 'properties': {'id': 'ffea0224-3201-45c8-8563-9d791256fe35', 'info': None, 'row': 6786, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.63746038649782, 21.966063308918656, 0]}}, {'type': 'Feature', 'properties': {'id': '04556ffb-667c-4e76-8f94-dab0cb4adfaa', 'info': None, 'row': 6786, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.67553878172625, 21.972545224123493, 0]}}, {'type': 'Feature', 'properties': {'id': 'abd8d61d-54af-4898-b2a4-a740e4703dc0', 'info': None, 'row': 6786, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.71347410559454, 21.978993428650874, 0]}}, {'type': 'Feature', 'properties': {'id': '576bdd6e-382a-4f96-acd2-8203164254f1', 'info': None, 'row': 6786, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.75126928913046, 21.98540852479873, 0]}}, {'type': 'Feature', 'properties': {'id': '51795b6b-8188-4ab3-b6a0-c8837e808df8', 'info': None, 'row': 6786, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.78892717411324, 21.991791096499128, 0]}}, {'type': 'Feature', 'properties': {'id': 'd46deb75-8093-42b9-be4f-66a56509f8dd', 'info': None, 'row': 6786, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.82645051674433, 21.99814171007351, 0]}}, {'type': 'Feature', 'properties': {'id': 'da97b576-811c-4f99-8ab6-5bbecc6a7847', 'info': None, 'row': 6786, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.86384199112788, 22.00446091494888, 0]}}, {'type': 'Feature', 'properties': {'id': '6772c3f5-b9bf-4155-a30c-f1fa72284aa1', 'info': None, 'row': 6786, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.90110419257269, 22.010749244337184, 0]}}, {'type': 'Feature', 'properties': {'id': '395e637e-9cd9-48ce-bbc6-406b9b67026e', 'info': None, 'row': 6786, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.93823964072672, 22.017007215880376, 0]}}, {'type': 'Feature', 'properties': {'id': '18d36fe8-e7fa-4658-9bec-530dab23bf24', 'info': None, 'row': 6786, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.97525078255454, 22.023235332262935, 0]}}, {'type': 'Feature', 'properties': {'id': '7578dfc0-d463-4d78-9381-43b0ca033977', 'info': None, 'row': 6786, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.01213999516685, 22.02943408179423, 0]}}, {'type': 'Feature', 'properties': {'id': '75b15377-2596-469f-bb3f-368518b337b4', 'info': None, 'row': 7540, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.30435589224811, 21.82289215035737, 0]}}, {'type': 'Feature', 'properties': {'id': '5f754cbd-e916-4f13-83c3-c0da5ca9d0a6', 'info': None, 'row': 7540, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.34384654892156, 21.82971131261178, 0]}}, {'type': 'Feature', 'properties': {'id': 'd144f44d-9893-4a7d-835a-9a6be49e19e2', 'info': None, 'row': 7540, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.38316312067718, 21.836490395611357, 0]}}, {'type': 'Feature', 'properties': {'id': 'be911498-5511-41fb-9642-ae6716745fc7', 'info': None, 'row': 7540, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.4223095431789, 21.843230208650123, 0]}}, {'type': 'Feature', 'properties': {'id': 'c2ce4b2b-a5d8-46ba-ab76-fc619d0b8555', 'info': None, 'row': 7540, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.46128961882074, 21.849931533589604, 0]}}, {'type': 'Feature', 'properties': {'id': '20e3aae8-f16e-4edf-ad49-f1d147a80a66', 'info': None, 'row': 7540, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5001070228306, 21.856595126115046, 0]}}, {'type': 'Feature', 'properties': {'id': '86c55012-a573-4a15-9d29-585b8c8e60cd', 'info': None, 'row': 7540, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.53876530902212, 21.86322171691937, 0]}}, {'type': 'Feature', 'properties': {'id': '9a843911-4bd8-4c8a-a88e-4c6586fc7bf2', 'info': None, 'row': 7540, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.57726791521817, 21.86981201281937, 0]}}, {'type': 'Feature', 'properties': {'id': '59e1a079-8815-4301-b6d9-2cfa090bb1d8', 'info': None, 'row': 7540, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.61561816836921, 21.876366697809225, 0]}}, {'type': 'Feature', 'properties': {'id': 'e99c7f6d-d3d9-40e3-b9a8-92dc66e2e05c', 'info': None, 'row': 7540, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.65381928938716, 21.88288643405538, 0]}}, {'type': 'Feature', 'properties': {'id': '8055e21a-9482-41e0-ae3f-c91d0eb66ce7', 'info': None, 'row': 7540, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.69187439771312, 21.889371862836775, 0]}}, {'type': 'Feature', 'properties': {'id': '2b7f359f-7d5d-42c4-b469-4428486afb31', 'info': None, 'row': 7540, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.72978651563773, 21.89582360543398, 0]}}, {'type': 'Feature', 'properties': {'id': '0c80bf47-cdd3-4819-99fe-45a07215fe58', 'info': None, 'row': 7540, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.76755857238898, 21.90224226397068, 0]}}, {'type': 'Feature', 'properties': {'id': '582bc619-826e-4ecd-a32c-084b9d20b15b', 'info': None, 'row': 7540, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.8051934080038, 21.908628422210487, 0]}}, {'type': 'Feature', 'properties': {'id': '02c84da2-df39-46c0-8e3f-31f57d679da4', 'info': None, 'row': 7540, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.8426937769961, 21.914982646311966, 0]}}, {'type': 'Feature', 'properties': {'id': '8236adcf-f4e6-4f47-9ec0-da24d13f0b8a', 'info': None, 'row': 7540, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.88006235183512, 21.921305485544544, 0]}}, {'type': 'Feature', 'properties': {'id': 'de5206a0-44a2-432a-b31b-587809073c50', 'info': None, 'row': 7540, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.91730172624503, 21.927597472967722, 0]}}, {'type': 'Feature', 'properties': {'id': '57dd90ca-8290-448d-acc5-4f419156f1fb', 'info': None, 'row': 7540, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.95441441833748, 21.933859126075816, 0]}}, {'type': 'Feature', 'properties': {'id': '9e5d8678-2bc6-4f56-ae4f-0bc7c1005f91', 'info': None, 'row': 7540, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.99140287358699, 21.940090947410376, 0]}}, {'type': 'Feature', 'properties': {'id': '3b00dc4c-0af3-4c92-afba-172c5b4f2807', 'info': None, 'row': 7540, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.02826946765866, 21.946293425142258, 0]}}, {'type': 'Feature', 'properties': {'id': '36e620f0-38e0-47ef-a276-b78645418551', 'info': None, 'row': 8294, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.3209735278258, 21.739435733460372, 0]}}, {'type': 'Feature', 'properties': {'id': '30e7ba80-d973-4511-903c-9b8098c686dc', 'info': None, 'row': 8294, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.36044023445311, 21.74625819760766, 0]}}, {'type': 'Feature', 'properties': {'id': '0ee91849-e61d-4d98-b7c0-3f6c12759090', 'info': None, 'row': 8294, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.39973295553105, 21.753040608790315, 0]}}, {'type': 'Feature', 'properties': {'id': '2cc1cf70-a08b-4a55-a272-8e6cf12a2c1a', 'info': None, 'row': 8294, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.43885562429179, 21.759783776063593, 0]}}, {'type': 'Feature', 'properties': {'id': 'd303fa61-370a-4960-b190-a98759680e62', 'info': None, 'row': 8294, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.47781204078385, 21.766488481059184, 0]}}, {'type': 'Feature', 'properties': {'id': 'accf606c-754f-4918-af86-bf561a8e803e', 'info': None, 'row': 8294, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5166058779719, 21.77315547924092, 0]}}, {'type': 'Feature', 'properties': {'id': '199f510c-3e24-4d0c-9a64-da6b0bf1439f', 'info': None, 'row': 8294, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.55524068748451, 21.77978550108837, 0]}}, {'type': 'Feature', 'properties': {'id': 'e217f1a4-079e-4f62-8e3f-a538885d84f3', 'info': None, 'row': 8294, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.59371990503428, 21.7863792532126, 0]}}, {'type': 'Feature', 'properties': {'id': '414ba88d-b67c-4e53-8184-ad3c9b81aaab', 'info': None, 'row': 8294, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.63204685553251, 21.792937419409377, 0]}}, {'type': 'Feature', 'properties': {'id': '54cb1c4c-51db-4a8a-860e-233f79a81209', 'info': None, 'row': 8294, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.67022475792001, 21.799460661653633, 0]}}, {'type': 'Feature', 'properties': {'id': '468c9ae5-8780-49c5-97c7-2c1a8cae46e7', 'info': None, 'row': 8294, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.70825672973179, 21.805949621039446, 0]}}, {'type': 'Feature', 'properties': {'id': 'ce5b25f6-fbd4-4b12-ba95-8232fff99bec', 'info': None, 'row': 8294, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.74614579141436, 21.812404918668836, 0]}}, {'type': 'Feature', 'properties': {'id': 'fdddff4b-ca2b-4715-907c-a283d407ef7c', 'info': None, 'row': 8294, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.78389487041107, 21.81882715649293, 0]}}, {'type': 'Feature', 'properties': {'id': '591f61b5-caad-428e-b436-7fc9bb4832c9', 'info': None, 'row': 8294, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.82150680503091, 21.82521691810858, 0]}}, {'type': 'Feature', 'properties': {'id': '3da400af-95d4-4f35-92e9-a15bfcb6cd54', 'info': None, 'row': 8294, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.85898434811429, 21.83157476951308, 0]}}, {'type': 'Feature', 'properties': {'id': '4113878d-7b68-4f7d-ac5d-9e25d9bb9f10', 'info': None, 'row': 8294, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.89633017050903, 21.837901259819844, 0]}}, {'type': 'Feature', 'properties': {'id': 'c46651ac-202c-4bfe-999c-4afcf443b9a4', 'info': None, 'row': 8294, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.93354686436776, 21.844196921937375, 0]}}, {'type': 'Feature', 'properties': {'id': '6b085082-a96b-469f-a21b-f76155c54f7c', 'info': None, 'row': 8294, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.97063694627843, 21.85046227321382, 0]}}, {'type': 'Feature', 'properties': {'id': 'a83a5b82-dbe3-4834-885f-8d519edab55b', 'info': None, 'row': 8294, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.00760286023785, 21.8566978160492, 0]}}, {'type': 'Feature', 'properties': {'id': '433ccb77-f710-40d0-8e46-99b9fa580537', 'info': None, 'row': 8294, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.04444698047737, 21.862904038477232, 0]}}, {'type': 'Feature', 'properties': {'id': '334b2314-48d9-4118-bb35-8e6a26be2094', 'info': None, 'row': 9048, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.33759083741846, 21.65598078384963, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3b7a17d-5ebf-4653-83be-cce6bafa35c7', 'info': None, 'row': 9048, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.37703359623752, 21.662806549939422, 0]}}, {'type': 'Feature', 'properties': {'id': '044ab3f0-7dc1-4833-8a8d-ee414a98812c', 'info': None, 'row': 9048, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.41630246886486, 21.669592289352828, 0]}}, {'type': 'Feature', 'properties': {'id': 'f6c44021-682d-41f0-9a5d-d31d695d6a2d', 'info': None, 'row': 9048, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.45540138610113, 21.67633881090636, 0]}}, {'type': 'Feature', 'properties': {'id': '85fac8f4-b856-43a6-b5df-687fba279f2b', 'info': None, 'row': 9048, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.49433414564962, 21.683046896001898, 0]}}, {'type': 'Feature', 'properties': {'id': 'fb4163ea-d1f8-444f-8a8b-34ce08d3fa21', 'info': None, 'row': 9048, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.53310441821198, 21.689717299881906, 0]}}, {'type': 'Feature', 'properties': {'id': 'a271704f-1fa2-4925-a903-43c23c13b305', 'info': None, 'row': 9048, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.57171575323201, 21.696350752812616, 0]}}, {'type': 'Feature', 'properties': {'id': '96bb01af-f08c-4df3-b67b-6fbf4102b4f1', 'info': None, 'row': 9048, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.61017158431218, 21.70294796119942, 0]}}, {'type': 'Feature', 'properties': {'id': '897b5637-c036-49d9-92ea-a1bfbd4f0dd6', 'info': None, 'row': 9048, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.64847523432495, 21.709509608639667, 0]}}, {'type': 'Feature', 'properties': {'id': '5365a9e2-1da5-4c4d-96f0-6ee2339e807c', 'info': None, 'row': 9048, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.68662992024022, 21.71603635691683, 0]}}, {'type': 'Feature', 'properties': {'id': '468b9cd6-61b2-45a9-a1cc-2bb84c5fba68', 'info': None, 'row': 9048, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.72463875768703, 21.72252884694014, 0]}}, {'type': 'Feature', 'properties': {'id': '5c263f4e-57b9-4558-9024-283241cc5d1b', 'info': None, 'row': 9048, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.76250476526808, 21.728987699633088, 0]}}, {'type': 'Feature', 'properties': {'id': 'e31e1b3e-87fc-4775-9482-ffadc033f76e', 'info': None, 'row': 9048, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.80023086864215, 21.73541351677428, 0]}}, {'type': 'Feature', 'properties': {'id': '111c2d83-f09a-40e3-8491-d9d473c55b25', 'info': None, 'row': 9048, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.83781990439051, 21.741806881793828, 0]}}, {'type': 'Feature', 'properties': {'id': 'e57d9ec2-e958-458e-9966-b3c7a1f99728', 'info': None, 'row': 9048, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.87527462368034, 21.748168360527757, 0]}}, {'type': 'Feature', 'properties': {'id': 'd07a8200-be8c-481b-8168-4e017e5336d2', 'info': None, 'row': 9048, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.91259769573814, 21.754498501933515, 0]}}, {'type': 'Feature', 'properties': {'id': '975fdc7e-d703-4d9f-abdd-a7620df10d56', 'info': None, 'row': 9048, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.94979171114514, 21.760797838768614, 0]}}, {'type': 'Feature', 'properties': {'id': '159b8ae7-4850-41eb-9194-c037f8219e62', 'info': None, 'row': 9048, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.98685918496585, 21.767066888235075, 0]}}, {'type': 'Feature', 'properties': {'id': '478d63ff-e5ca-43c6-80c4-88256a3f0945', 'info': None, 'row': 9048, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.0238025597194, 21.773306152591378, 0]}}, {'type': 'Feature', 'properties': {'id': '9fced127-8526-40f5-9fd5-9746d93eaf72', 'info': None, 'row': 9048, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.06062420820369, 21.779516119734144, 0]}}, {'type': 'Feature', 'properties': {'id': 'e84c3b71-47ab-4529-8af3-3c89f2ea7079', 'info': None, 'row': 9802, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.35416750754766, 21.572708755925596, 0]}}, {'type': 'Feature', 'properties': {'id': '1cd23c8d-eb2d-4166-b47f-23461f305fe5', 'info': None, 'row': 9802, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.39358659754922, 21.579537830145526, 0]}}, {'type': 'Feature', 'properties': {'id': '7b306954-18ad-4d87-afea-e008b8249983', 'info': None, 'row': 9802, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.43283189936683, 21.58632690373245, 0]}}, {'type': 'Feature', 'properties': {'id': '62a9dcac-9403-44ec-bd0b-f0a0e14dec76', 'info': None, 'row': 9802, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.47190734140267, 21.593076785268423, 0]}}, {'type': 'Feature', 'properties': {'id': 'd89716b4-6cb2-4057-af41-c10fe10d95c6', 'info': None, 'row': 9802, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.51081671904672, 21.59978825592954, 0]}}, {'type': 'Feature', 'properties': {'id': 'd56e382e-1f37-4f81-bd0c-3f1d6616761e', 'info': None, 'row': 9802, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.54956370076829, 21.60646207074083, 0]}}, {'type': 'Feature', 'properties': {'id': '45af1fb6-94ba-442f-b9fa-7d32e71b45ff', 'info': None, 'row': 9802, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.58815183385602, 21.61309895975893, 0]}}, {'type': 'Feature', 'properties': {'id': '7f20fe95-a128-4eb2-b0e1-b313b60ee345', 'info': None, 'row': 9802, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.62658454983084, 21.619699629187178, 0]}}, {'type': 'Feature', 'properties': {'id': '537b2452-26b5-48fc-9409-95ea5ee24792', 'info': None, 'row': 9802, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.66486516955389, 21.626264762428015, 0]}}, {'type': 'Feature', 'properties': {'id': '4dd8ae14-74c9-457c-b82a-ac1afcc20765', 'info': None, 'row': 9802, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7029969080508, 21.63279502107683, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3a885f2-88bc-440a-8b8b-b18a01e856b4', 'info': None, 'row': 9802, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.74098287907037, 21.639291045861242, 0]}}, {'type': 'Feature', 'properties': {'id': '7d9a3650-c918-478f-a20f-3675195a0c2b', 'info': None, 'row': 9802, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.77882609939627, 21.645753457529334, 0]}}, {'type': 'Feature', 'properties': {'id': 'ac952578-2962-42c4-b2eb-a908bdf25968', 'info': None, 'row': 9802, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.81652949292678, 21.652182857690256, 0]}}, {'type': 'Feature', 'properties': {'id': '148d6828-e09d-4d75-8faa-82ffff9a522c', 'info': None, 'row': 9802, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.85409589453872, 21.65857982961026, 0]}}, {'type': 'Feature', 'properties': {'id': '77e1df09-7421-44ca-a71d-57d3200ee4e1', 'info': None, 'row': 9802, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.8915280537483, 21.66494493896696, 0]}}, {'type': 'Feature', 'properties': {'id': '27696622-8dbb-48b8-b295-04e79416b2ef', 'info': None, 'row': 9802, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.92882863818255, 21.67127873456454, 0]}}, {'type': 'Feature', 'properties': {'id': 'a61c0154-4fa8-420f-b0af-34a73cf7404c', 'info': None, 'row': 9802, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.96600023687242, 21.67758174901219, 0]}}, {'type': 'Feature', 'properties': {'id': '968af0a7-23ad-4ba5-ba62-fe984ed8f3ce', 'info': None, 'row': 9802, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.00304536337927, 21.683854499368337, 0]}}, {'type': 'Feature', 'properties': {'id': '15a947fa-446c-4835-82ce-0866b3fe026e', 'info': None, 'row': 9802, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.03996645876435, 21.69009748775241, 0]}}, {'type': 'Feature', 'properties': {'id': '8ec0b807-d436-4d70-9852-aef336fe5746', 'info': None, 'row': 9802, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.07676589441117, 21.6963112019263, 0]}}, {'type': 'Feature', 'properties': {'id': '36542e64-caa8-415b-9174-a5181a10c4b8', 'info': None, 'row': 10556, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.37074402880062, 21.489437287107858, 0]}}, {'type': 'Feature', 'properties': {'id': 'ecfe154a-faac-47b1-853d-5ec5764ef4bc', 'info': None, 'row': 10556, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.41013945224904, 21.496269669554785, 0]}}, {'type': 'Feature', 'properties': {'id': '740e3c34-2144-4585-b379-2a7097ab3cdc', 'info': None, 'row': 10556, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.44936118551006, 21.503062077410227, 0]}}, {'type': 'Feature', 'properties': {'id': 'b91cfaae-3029-4bad-886f-cacd1ba20242', 'info': None, 'row': 10556, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.48841315458766, 21.509815319021808, 0]}}, {'type': 'Feature', 'properties': {'id': 'c68019da-61d7-4ca1-850c-b0197c556338', 'info': None, 'row': 10556, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.52729915255883, 21.516530175339852, 0]}}, {'type': 'Feature', 'properties': {'id': '96a9dc23-8611-4bea-a226-826244bad0da', 'info': None, 'row': 10556, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.56602284566073, 21.52320740117201, 0]}}, {'type': 'Feature', 'properties': {'id': '3428ce12-07e2-4310-b032-36e4d661646c', 'info': None, 'row': 10556, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.60458777902713, 21.52984772636534, 0]}}, {'type': 'Feature', 'properties': {'id': '57a1ae53-a083-468c-af5b-482c6600b75b', 'info': None, 'row': 10556, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.64299738209766, 21.53645185692117, 0]}}, {'type': 'Feature', 'properties': {'id': '3f08e733-a5cb-4639-856e-f92252fb6ae1', 'info': None, 'row': 10556, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.68125497372236, 21.54302047604706, 0]}}, {'type': 'Feature', 'properties': {'id': '5a2fdc69-f74c-447e-99ce-08601acea718', 'info': None, 'row': 10556, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7193637669828, 21.54955424515033, 0]}}, {'type': 'Feature', 'properties': {'id': 'cd4e68aa-10fe-4c9f-88e8-d35997dac347', 'info': None, 'row': 10556, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.75732687374774, 21.55605380477702, 0]}}, {'type': 'Feature', 'properties': {'id': '9e36a445-5491-49f6-943f-f4b0b4fbe077', 'info': None, 'row': 10556, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.79514730898205, 21.562519775499837, 0]}}, {'type': 'Feature', 'properties': {'id': '2f4bfad7-38ba-499a-8717-a3b5436910be', 'info': None, 'row': 10556, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.83282799482373, 21.568952758758495, 0]}}, {'type': 'Feature', 'properties': {'id': '3aaa66b3-ac0d-465c-8170-3baa7fd5a002', 'info': None, 'row': 10556, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.87037176444522, 21.575353337655418, 0]}}, {'type': 'Feature', 'properties': {'id': '7780c87f-2a4f-4448-a4f9-bc191cb74072', 'info': None, 'row': 10556, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.90778136571215, 21.581722077709827, 0]}}, {'type': 'Feature', 'properties': {'id': '4b1b535c-102f-41b3-ba78-31984334c6c6', 'info': None, 'row': 10556, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.94505946465213, 21.588059527572657, 0]}}, {'type': 'Feature', 'properties': {'id': '2d15bfb2-2bae-493c-a664-32d1cbef3caf', 'info': None, 'row': 10556, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.98220864874601, 21.59436621970481, 0]}}, {'type': 'Feature', 'properties': {'id': '6e01b91e-0fee-41cd-8ad3-0073d1f13d77', 'info': None, 'row': 10556, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.01923143005219, 21.600642671021134, 0]}}, {'type': 'Feature', 'properties': {'id': 'd4a6b37a-1208-4a39-95dd-39f8dd3a0843', 'info': None, 'row': 10556, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.05613024817421, 21.60688938350203, 0]}}, {'type': 'Feature', 'properties': {'id': '581f6f7b-188b-4e0f-b758-8c9ebe928c02', 'info': None, 'row': 10556, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.09290747308131, 21.61310684477467, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc94ffeb-3e61-4c94-9b91-7b549612efdf', 'info': None, 'row': 11310, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.38730466283423, 21.406225482919048, 0]}}, {'type': 'Feature', 'properties': {'id': '972a6616-d6d7-4aef-8d41-296983dcaedd', 'info': None, 'row': 11310, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.42667666136606, 21.413061183930143, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6d341c3-3d35-4225-8b12-c7606e955426', 'info': None, 'row': 11310, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.46587506651174, 21.41985693619145, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca953882-b81d-4026-a566-cfd735407587', 'info': None, 'row': 11310, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.50490380190655, 21.42661354781992, 0]}}, {'type': 'Feature', 'properties': {'id': '7cea7e9a-3bc4-4693-9b64-1d0f76510cee', 'info': None, 'row': 11310, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.54376665834249, 21.43333179954377, 0]}}, {'type': 'Feature', 'properties': {'id': '96735a58-282f-4128-bf9e-68c1eea8c40e', 'info': None, 'row': 11310, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5824672998519, 21.440012445956697, 0]}}, {'type': 'Feature', 'properties': {'id': 'a346a17f-563f-4bb7-b86b-5b9dd230e75f', 'info': None, 'row': 11310, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.62100926943981, 21.44665621669959, 0]}}, {'type': 'Feature', 'properties': {'id': '6f3bb129-472a-4094-bfca-c1cd7ad9ca9c', 'info': None, 'row': 11310, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.65939599448987, 21.453263817574964, 0]}}, {'type': 'Feature', 'properties': {'id': '0b154ff2-ec70-4b18-a6f0-0d6b2122eed5', 'info': None, 'row': 11310, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.6976307918654, 21.459835931598597, 0]}}, {'type': 'Feature', 'properties': {'id': 'f95b72ed-7a21-4ef1-84e3-9210da6a2b72', 'info': None, 'row': 11310, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.73571687272744, 21.466373219992747, 0]}}, {'type': 'Feature', 'properties': {'id': '22acdf7f-3e54-4c4a-aac1-2a82f6f98864', 'info': None, 'row': 11310, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.7736573470875, 21.47287632312476, 0]}}, {'type': 'Feature', 'properties': {'id': '4805b290-d020-4d24-bc44-f2d7dfedd54b', 'info': None, 'row': 11310, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.81145522811349, 21.479345861394783, 0]}}, {'type': 'Feature', 'properties': {'id': '56a9472f-6207-4411-8981-3669638fead3', 'info': None, 'row': 11310, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.84911343620439, 21.485782436075745, 0]}}, {'type': 'Feature', 'properties': {'id': '5927fb29-8524-42b1-a89e-510f2c738798', 'info': None, 'row': 11310, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.88663480284893, 21.49218663010886, 0]}}, {'type': 'Feature', 'properties': {'id': '2896baee-f52e-438f-97fc-243cda3c5666', 'info': None, 'row': 11310, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.92402207428182, 21.49855900885747, 0]}}, {'type': 'Feature', 'properties': {'id': '9bb57826-52c5-4ece-87b2-125d42f6ce9d', 'info': None, 'row': 11310, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.96127791495059, 21.504900120821674, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4fb0ab0-8345-4d48-9549-fc2fce572225', 'info': None, 'row': 11310, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.99840491080448, 21.511210498316437, 0]}}, {'type': 'Feature', 'properties': {'id': 'd05b3fa9-4b1b-4682-bcf1-e2635026b207', 'info': None, 'row': 11310, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.03540557241703, 21.517490658115303, 0]}}, {'type': 'Feature', 'properties': {'id': '8a5a7b5f-ffa8-4bdf-9893-cb60c72b7a15', 'info': None, 'row': 11310, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.0722823379515, 21.52374110206182, 0]}}, {'type': 'Feature', 'properties': {'id': 'ab84b497-3276-4978-91b4-239dcb54e4e9', 'info': None, 'row': 11310, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.10903757597976, 21.529962317650607, 0]}}, {'type': 'Feature', 'properties': {'id': '4fc60c34-c1cf-4900-86cd-87a4a176adf3', 'info': None, 'row': 12064, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.40386539187946, 21.32301299577244, 0]}}, {'type': 'Feature', 'properties': {'id': '598e586b-0144-4646-85bf-9803526ca96f', 'info': None, 'row': 12064, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.4432139677071, 21.32985201546722, 0]}}, {'type': 'Feature', 'properties': {'id': '78ce85c2-b4b6-4d4e-acd3-e308271f6789', 'info': None, 'row': 12064, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.48238904693854, 21.33665111225236, 0]}}, {'type': 'Feature', 'properties': {'id': 'a23bf9e6-21cc-49ca-9d8e-9b3d2e1ebec9', 'info': None, 'row': 12064, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.52139455084061, 21.34341109401416, 0]}}, {'type': 'Feature', 'properties': {'id': '3323a385-47b7-4afa-8f18-f3e7ac3389bd', 'info': None, 'row': 12064, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.5602342679207, 21.350132741258776, 0]}}, {'type': 'Feature', 'properties': {'id': '5dea3869-1f95-4eff-a533-a9fab273ecc4', 'info': None, 'row': 12064, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.59891186000651, 21.356816808365974, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6b2f3a5-6dd5-4699-9a65-bc2539980d01', 'info': None, 'row': 12064, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.63743086797462, 21.363464024770494, 0]}}, {'type': 'Feature', 'properties': {'id': '08bd3659-b2be-4c34-a811-93e92e29b5df', 'info': None, 'row': 12064, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.67579471715285, 21.37007509607607, 0]}}, {'type': 'Feature', 'properties': {'id': '9ed7a93d-eb3b-4ee6-8be5-47ec7bd35552', 'info': None, 'row': 12064, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.71400672241812, 21.376650705106737, 0]}}, {'type': 'Feature', 'properties': {'id': '2802fce2-0c7a-43f1-96b6-d208d930f96b', 'info': None, 'row': 12064, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.75207009301111, 21.383191512899696, 0]}}, {'type': 'Feature', 'properties': {'id': '60f943d9-8934-4597-b591-cfb831bbf27b', 'info': None, 'row': 12064, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.7899879370863, 21.389698159643654, 0]}}, {'type': 'Feature', 'properties': {'id': '8f71db13-ec5d-4ef4-9d9d-34162208dcf2', 'info': None, 'row': 12064, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.82776326601493, 21.396171265566185, 0]}}, {'type': 'Feature', 'properties': {'id': '1939ee2f-1446-4157-a487-941b865b02b4', 'info': None, 'row': 12064, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.8653989984571, 21.402611431773483, 0]}}, {'type': 'Feature', 'properties': {'id': 'f51a6df8-10ea-407a-afba-cc35c7987b74', 'info': None, 'row': 12064, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.90289796421794, 21.409019241045574, 0]}}, {'type': 'Feature', 'properties': {'id': 'c04e5e8d-7fe5-4359-b295-3328ed249c41', 'info': None, 'row': 12064, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.94026290790153, 21.415395258589918, 0]}}, {'type': 'Feature', 'properties': {'id': '1807b1c9-9c0a-4057-9059-e8d221b63046', 'info': None, 'row': 12064, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.97749649237542, 21.42174003275582, 0]}}, {'type': 'Feature', 'properties': {'id': 'bea5fdf4-0669-4a15-b4d8-25f09b454bde', 'info': None, 'row': 12064, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.01460130205759, 21.428054095712337, 0]}}, {'type': 'Feature', 'properties': {'id': '5ffb2061-7249-40f2-8024-d09b5b47c35a', 'info': None, 'row': 12064, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.0515798460367, 21.4343379640917, 0]}}, {'type': 'Feature', 'properties': {'id': '55ec37dc-aa40-4039-b31c-621a7bdb7447', 'info': None, 'row': 12064, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.08843456103594, 21.44059213960064, 0]}}, {'type': 'Feature', 'properties': {'id': '3fb3ea67-258d-4cb1-8598-cc71bccda890', 'info': None, 'row': 12064, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.12516781422997, 21.44681710960124, 0]}}, {'type': 'Feature', 'properties': {'id': '3e59ee75-3160-4990-9a03-9b56d98a0cad', 'info': None, 'row': 12818, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.42043498076094, 21.2397368228114, 0]}}, {'type': 'Feature', 'properties': {'id': 'c6492ecb-8314-4a74-9513-66f5c377829e', 'info': None, 'row': 12818, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.45976034018736, 21.24657917233489, 0]}}, {'type': 'Feature', 'properties': {'id': '7f3affd5-46ba-455b-b5e7-c73cbe9348f4', 'info': None, 'row': 12818, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.49891229875637, 21.253381624644106, 0]}}, {'type': 'Feature', 'properties': {'id': '77f24c04-7e3f-4045-b4a9-aa66cb457958', 'info': None, 'row': 12818, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.53789477539198, 21.26014498739772, 0]}}, {'type': 'Feature', 'properties': {'id': '7100ca99-99a6-4fa8-bbd8-4ee69142b8e6', 'info': None, 'row': 12818, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.57671155634172, 21.2668700408827, 0]}}, {'type': 'Feature', 'properties': {'id': '17529140-ec82-47cd-9b7a-f7e9ed82607a', 'info': None, 'row': 12818, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.61536630125264, 21.273557539267717, 0]}}, {'type': 'Feature', 'properties': {'id': 'd30cbce2-b242-4dec-8f0a-57f1cd533e5a', 'info': None, 'row': 12818, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.65386254889583, 21.28020821178403, 0]}}, {'type': 'Feature', 'properties': {'id': '3e745311-4070-43bd-ad00-ecf5b93c810e', 'info': None, 'row': 12818, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.69220372256555, 21.28682276383918, 0]}}, {'type': 'Feature', 'properties': {'id': '31dba5be-aeb2-4908-9756-f275cb7ae181', 'info': None, 'row': 12818, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.73039313517361, 21.29340187806794, 0]}}, {'type': 'Feature', 'properties': {'id': 'c8585646-b747-4a46-bb1e-a92588187de9', 'info': None, 'row': 12818, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7684339940611, 21.299946215324887, 0]}}, {'type': 'Feature', 'properties': {'id': '08564d48-7102-4fa3-8af3-bf32fa5113b4', 'info': None, 'row': 12818, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.80632940554534, 21.30645641562237, 0]}}, {'type': 'Feature', 'properties': {'id': 'daebad36-9bfc-4c61-aa93-e447102a7335', 'info': None, 'row': 12818, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.84408237922023, 21.31293309901762, 0]}}, {'type': 'Feature', 'properties': {'id': '4c701c53-4866-4eda-97d2-5a5f2f64ed6e', 'info': None, 'row': 12818, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.88169583202557, 21.319376866452252, 0]}}, {'type': 'Feature', 'properties': {'id': '5411625c-88e3-45c6-9bdb-1b8480277826', 'info': None, 'row': 12818, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.91917259210095, 21.325788300547188, 0]}}, {'type': 'Feature', 'properties': {'id': '7b8ad3c5-9df7-4cdf-890d-f9de287b571e', 'info': None, 'row': 12818, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.95651540243722, 21.332167966355996, 0]}}, {'type': 'Feature', 'properties': {'id': '49b92d57-5f12-42a8-a51a-8a65d4d79be3', 'info': None, 'row': 12818, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.9937269243388, 21.338516412079144, 0]}}, {'type': 'Feature', 'properties': {'id': 'c1dc30c2-77f1-4e3c-bfab-787d54aaceb5', 'info': None, 'row': 12818, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.03080974070859, 21.344834169741596, 0]}}, {'type': 'Feature', 'properties': {'id': 'ad3cec34-8054-413d-9f9f-a6b1440f47fe', 'info': None, 'row': 12818, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.06776635916631, 21.35112175583614, 0]}}, {'type': 'Feature', 'properties': {'id': 'c0ac1d5f-bb75-4d18-b2cd-bddaef1c07a1', 'info': None, 'row': 12818, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.10459921501034, 21.35737967193441, 0]}}, {'type': 'Feature', 'properties': {'id': '751f9a3d-f6ba-4e8e-b439-ba9d16d86503', 'info': None, 'row': 12818, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.14131067403294, 21.36360840526763, 0]}}, {'type': 'Feature', 'properties': {'id': '9b65737d-99f1-4bc4-acc0-3854d97d2498', 'info': None, 'row': 13572, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.43700467775935, 21.15645988638826, 0]}}, {'type': 'Feature', 'properties': {'id': 'abeb28c5-e21f-4d99-9eb5-5ab83bc0262c', 'info': None, 'row': 13572, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.47630682326003, 21.163305565912456, 0]}}, {'type': 'Feature', 'properties': {'id': '2bf1b48f-ea58-42c9-839b-302e644a2cd5', 'info': None, 'row': 13572, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.51543566362946, 21.17011137391587, 0]}}, {'type': 'Feature', 'properties': {'id': '73766aee-da47-443c-add0-6e436a710c16', 'info': None, 'row': 13572, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.55439511544914, 21.176878117829567, 0]}}, {'type': 'Feature', 'properties': {'id': '0c7d9b4a-b56b-49bf-b383-e950df51001f', 'info': None, 'row': 13572, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.59318896270707, 21.183606577721402, 0]}}, {'type': 'Feature', 'properties': {'id': '648c3b85-eea7-4756-abac-90510f42d117', 'info': None, 'row': 13572, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.63182086286989, 21.190297507548962, 0]}}, {'type': 'Feature', 'properties': {'id': '8081af61-6c03-49d4-8b2a-efd18c31b0fe', 'info': None, 'row': 13572, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.67029435260355, 21.19695163634007, 0]}}, {'type': 'Feature', 'properties': {'id': '32a665bb-65af-4d42-a1da-26a42ac391ec', 'info': None, 'row': 13572, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.70861285316889, 21.203569669306102, 0]}}, {'type': 'Feature', 'properties': {'id': '50d916c8-df09-47ce-8271-4c0833a4a33c', 'info': None, 'row': 13572, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.74677967551303, 21.21015228889262, 0]}}, {'type': 'Feature', 'properties': {'id': 'a1c46a66-2bb9-422a-8e70-7517ce100376', 'info': None, 'row': 13572, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.78479802507756, 21.216700155771576, 0]}}, {'type': 'Feature', 'properties': {'id': '263a0ba4-72ff-49bf-bc9a-5efba8f7e491', 'info': None, 'row': 13572, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.82267100634301, 21.223213909779023, 0]}}, {'type': 'Feature', 'properties': {'id': 'fc30c718-64b4-4f74-a1d6-a3b60ac07012', 'info': None, 'row': 13572, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.86040162712605, 21.229694170801857, 0]}}, {'type': 'Feature', 'properties': {'id': '6cbbd41c-7a0a-4a04-b329-9b4df1d5beeb', 'info': None, 'row': 13572, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.8979928026465, 21.23614153961715, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc45da0b-62e0-4ab2-aaa2-bda8a0639fdc', 'info': None, 'row': 13572, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.9354473593786, 21.242556598686747, 0]}}, {'type': 'Feature', 'properties': {'id': '6d69f2d4-ba3e-431b-901f-92863754e131', 'info': None, 'row': 13572, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.97276803870015, 21.248939912910355, 0]}}, {'type': 'Feature', 'properties': {'id': '019784f4-837e-4777-9c97-6835eb29f4ed', 'info': None, 'row': 13572, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-70.00995750035267, 21.255292030339632, 0]}}, {'type': 'Feature', 'properties': {'id': '778bf225-92c9-49b9-89a0-e5546474173e', 'info': None, 'row': 13572, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.0470183257242, 21.26161348285546, 0]}}, {'type': 'Feature', 'properties': {'id': '56a34edb-96cb-434f-bcc9-d0f0298cdf8a', 'info': None, 'row': 13572, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.08395302096565, 21.267904786811226, 0]}}, {'type': 'Feature', 'properties': {'id': '73962f6c-9ec1-45bc-b0fb-47cf001a6150', 'info': None, 'row': 13572, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.12076401995081, 21.274166443643473, 0]}}, {'type': 'Feature', 'properties': {'id': '31df8019-8acf-4c73-9e80-b37d27eb8522', 'info': None, 'row': 13572, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.15745368708973, 21.28039894045261, 0]}}, {'type': 'Feature', 'properties': {'id': '79d3f5c0-37c8-4758-8f36-e1d29103aacc', 'info': None, 'row': 14326, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.45358332443669, 21.073119752269143, 0]}}, {'type': 'Feature', 'properties': {'id': '718c7c19-4c1e-49ad-b4fa-7c1814ea9914', 'info': None, 'row': 14326, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.49286246092618, 21.07996877603113, 0]}}, {'type': 'Feature', 'properties': {'id': '65effddc-26ac-4553-bf08-c5ef13c7da96', 'info': None, 'row': 14326, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.53196838696581, 21.086777953810635, 0]}}, {'type': 'Feature', 'properties': {'id': 'e97cfb9a-3106-4821-b1dc-b51e1d2af0e6', 'info': None, 'row': 14326, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.57090501682015, 21.093548092814416, 0]}}, {'type': 'Feature', 'properties': {'id': '2085bcf8-cf75-4e90-8429-2f5fd4f10ae0', 'info': None, 'row': 14326, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.60967613224247, 21.100279972894395, 0]}}, {'type': 'Feature', 'properties': {'id': '66ff1acb-d18d-45fd-ba46-9feff73d3e99', 'info': None, 'row': 14326, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.6482853885426, 21.106974347800104, 0]}}, {'type': 'Feature', 'properties': {'id': '39add393-7749-4dc5-8d28-1db3df6520de', 'info': None, 'row': 14326, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.6867363203043, 21.11363194635887, 0]}}, {'type': 'Feature', 'properties': {'id': '0a9dfcc7-7e02-4ceb-89cc-7af979cd5758', 'info': None, 'row': 14326, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.72503234677717, 21.12025347358874, 0]}}, {'type': 'Feature', 'properties': {'id': 'dd376bc9-2894-46e4-a963-2f078e09ece6', 'info': None, 'row': 14326, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.76317677696474, 21.126839611748785, 0]}}, {'type': 'Feature', 'properties': {'id': 'aa6ecc85-fc22-4acf-9dea-f85e540cb65d', 'info': None, 'row': 14326, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.80117281442983, 21.13339102133095, 0]}}, {'type': 'Feature', 'properties': {'id': '30094288-45da-4314-8e01-dd8c5c4982b9', 'info': None, 'row': 14326, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.83902356183592, 21.13990834199751, 0]}}, {'type': 'Feature', 'properties': {'id': 'b53e908b-a3ee-419d-af17-d047969953e4', 'info': None, 'row': 14326, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.8767320252417, 21.146392193467506, 0]}}, {'type': 'Feature', 'properties': {'id': '9de9d3a8-5b21-44e9-946f-f173916b76a1', 'info': None, 'row': 14326, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.91430111816547, 21.15284317635578, 0]}}, {'type': 'Feature', 'properties': {'id': 'f3c020a4-9e0b-4106-852d-220c8e574689', 'info': None, 'row': 14326, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.951733665434, 21.15926187296737, 0]}}, {'type': 'Feature', 'properties': {'id': '9469a880-a0aa-4f03-8d36-647179a0308e', 'info': None, 'row': 14326, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.98903240682941, 21.165648848050353, 0]}}, {'type': 'Feature', 'properties': {'id': 'e111d008-71ff-467d-8dad-70d8b30e3216', 'info': None, 'row': 14326, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-70.02620000054705, 21.17200464950964, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba75f7b2-14ba-439e-8799-032fc5a27a5c', 'info': None, 'row': 14326, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.06323902647637, 21.178329809084154, 0]}}, {'type': 'Feature', 'properties': {'id': '0e71a27e-f1f0-41ab-ab95-1d59389c1008', 'info': None, 'row': 14326, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.1001519893151, 21.1846248429898, 0]}}, {'type': 'Feature', 'properties': {'id': '9d2757a8-f7db-41bb-948d-48e3912c9291', 'info': None, 'row': 14326, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.13694132152764, 21.190890252529975, 0]}}, {'type': 'Feature', 'properties': {'id': '797b6191-3f18-428e-a6de-4ab438678fbe', 'info': None, 'row': 14326, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.17360938615658, 21.197126524676104, 0]}}]}
array(0)
- comment :
- at ground level, computed from lon/lat in line direction
get azimuth time variable
the variable azimuth_time
is given in annotations .xml files, it describes the date of acquisition of each pixel in the subswath. it is also called SAR “long time”, in opposition to the “short time” given by the slant_range_time
variable
[12]:
aziHr = s1ds.dataset['time']
hv.Curve(aziHr.values)
[12]:
azimuth time
variable estimated at the middle (in range) of the dataset selected is showing the bursts overlapping.
This variable is used to rasterize the 7 variables (longitude, latitude,…) described in the geolocationGrid
at low resolution.
get the ground range spacing
One specificity of the SLC products is that the ground range spacing is not equal to the slant range spacing (it is the case in GRD products).
[13]:
#print(s1ds.s1meta.image['ground_pixel_spacing'])
#print(s1ds.s1meta.image['slant_pixel_spacing'])
print(s1ds.dataset['sampleSpacing'])
print(s1ds.dataset['lineSpacing'])
<xarray.DataArray 'sampleSpacing' ()>
array(2.329562)
Coordinates:
spatial_ref int64 0
Attributes:
units: m
referential: slant
<xarray.DataArray 'lineSpacing' ()>
array(13.95527)
Coordinates:
spatial_ref int64 0
Attributes:
units: m
The ground range spacing depends of the incidence angle.
It is possible for the users to get the ground range spacing vector along the range axis.
[14]:
rgs = s1ds.dataset['range_ground_spacing']
rgs
[14]:
<xarray.DataArray 'range_ground_spacing' (sample: 23768)> dask.array<true_divide, shape=(23768,), dtype=float64, chunksize=(2971,), chunktype=numpy.ndarray> Coordinates: * sample (sample) int64 0 1 2 3 4 5 ... 23763 23764 23765 23766 23767 spatial_ref int64 0 Attributes: history:
- sample: 23768
- dask.array<chunksize=(2971,), meta=np.ndarray>
Array Chunk Bytes 185.69 kiB 23.21 kiB Shape (23768,) (2971,) Count 192 Tasks 8 Chunks Type float64 numpy.ndarray - sample(sample)int640 1 2 3 ... 23764 23765 23766 23767
- axis :
- X
- units :
- 1
- comment :
- cross track direction, in pixels from full resolution tiff
array([ 0, 1, 2, ..., 23765, 23766, 23767])
- 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': '687a6936-29b7-4a27-8542-08ea0d575d20', 'info': None, 'row': 0, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.13847173718773, 22.65528072350044, 0]}}, {'type': 'Feature', 'properties': {'id': '8a3e2a7a-fcb9-49bc-ab2a-537b494533a3', 'info': None, 'row': 0, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.17820820742932, 22.66206726191746, 0]}}, {'type': 'Feature', 'properties': {'id': '82055312-bb2e-47d9-8117-a68a7bdb7afe', 'info': None, 'row': 0, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.21776956703296, 22.66881345359603, 0]}}, {'type': 'Feature', 'properties': {'id': '85f563ea-abfb-4235-a1de-f60720d2f0aa', 'info': None, 'row': 0, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.25715977676485, 22.67552011031412, 0]}}, {'type': 'Feature', 'properties': {'id': '17360bea-6be9-4d3d-9f67-0977c16911f2', 'info': None, 'row': 0, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.29638266322931, 22.68218801632446, 0]}}, {'type': 'Feature', 'properties': {'id': 'b389188a-9deb-42cd-9cfc-392aad276953', 'info': None, 'row': 0, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.33544192501508, 22.68881792961555, 0]}}, {'type': 'Feature', 'properties': {'id': 'a7f205d4-c6be-4aab-ab7a-b7a7ce6143b1', 'info': None, 'row': 0, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.37434113848721, 22.69541058309964, 0]}}, {'type': 'Feature', 'properties': {'id': '1a367c3c-ae6c-4e65-95b9-6fb06519f02b', 'info': None, 'row': 0, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.4130837632483, 22.7019666857333, 0]}}, {'type': 'Feature', 'properties': {'id': '43103e5c-0d51-4ce9-8f98-36d26706e216', 'info': None, 'row': 0, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.45167314729233, 22.70848692357449, 0]}}, {'type': 'Feature', 'properties': {'id': '733f8366-4db8-432a-a473-6efc5536b2a3', 'info': None, 'row': 0, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.49011253187193, 22.7149719607812, 0]}}, {'type': 'Feature', 'properties': {'id': '2bb604b1-079b-4684-ba59-1c294cb1bc59', 'info': None, 'row': 0, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.52840505609768, 22.72142244055495, 0]}}, {'type': 'Feature', 'properties': {'id': '6ed56072-8124-4583-9c2d-3436a3f4ecde', 'info': None, 'row': 0, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.56655376128812, 22.72783898603313, 0]}}, {'type': 'Feature', 'properties': {'id': 'e9e1efe6-b934-4b5a-9264-2bbfec3e9cfe', 'info': None, 'row': 0, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.60456159508581, 22.73422220113351, 0]}}, {'type': 'Feature', 'properties': {'id': 'd47c6220-4c91-467a-81a0-1c80868e9ba6', 'info': None, 'row': 0, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.6424314153552, 22.74057267135375, 0]}}, {'type': 'Feature', 'properties': {'id': '01654706-e83e-41fd-9691-8355cca35871', 'info': None, 'row': 0, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.68016599387602, 22.74689096452925, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5f20d03-0954-41d6-bb8d-8ff7026cdb69', 'info': None, 'row': 0, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.71776801984517, 22.75317763155148, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca672e35-3791-4df3-9931-0bdf19e99eee', 'info': None, 'row': 0, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.75524010319884, 22.75943320704956, 0]}}, {'type': 'Feature', 'properties': {'id': '84351c21-15f9-47af-9469-248f006a2bac', 'info': None, 'row': 0, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.79258477776644, 22.76565821003726, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb7740f7-0a9c-4823-8bc1-2fa196eac886', 'info': None, 'row': 0, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.82980450426614, 22.77185314452762, 0]}}, {'type': 'Feature', 'properties': {'id': '532cbe7c-1209-4819-953a-98b9198b0f28', 'info': None, 'row': 0, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.8669016731517, 22.77801850011687, 0]}}, {'type': 'Feature', 'properties': {'id': '32e33ab2-6af1-4826-b61c-a847d83e88cd', 'info': None, 'row': 754, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.15506189493175, 22.572083635896206, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5f8a592-259a-40e8-9147-a32a87b3fb19', 'info': None, 'row': 754, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.19477332948718, 22.578873413043745, 0]}}, {'type': 'Feature', 'properties': {'id': '5324b74d-ffb6-43e9-b318-9da34b6cfeb1', 'info': None, 'row': 754, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.23430975824905, 22.58562287054896, 0]}}, {'type': 'Feature', 'properties': {'id': 'a513f862-416c-4fc2-89c9-b4f20c294b81', 'info': None, 'row': 754, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.27367513941775, 22.59233281993449, 0]}}, {'type': 'Feature', 'properties': {'id': 'adb1f261-0ec5-4489-984b-18b7dd7a5675', 'info': None, 'row': 754, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.31287329712285, 22.59900404520733, 0]}}, {'type': 'Feature', 'properties': {'id': 'b2bd3aff-413e-4c84-870f-ba1a208ca232', 'info': None, 'row': 754, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.35190792756549, 22.605637304119245, 0]}}, {'type': 'Feature', 'properties': {'id': '3ecc0c07-821a-49cb-a0e2-0a3a8f380680', 'info': None, 'row': 754, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.39078260480571, 22.61223332935443, 0]}}, {'type': 'Feature', 'properties': {'id': 'f8452384-68f6-415d-8e30-cd0bbd74e3a8', 'info': None, 'row': 754, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.42950078622016, 22.618792829649546, 0]}}, {'type': 'Feature', 'properties': {'id': 'e1a7e765-2097-4a0e-905e-35ab7455e122', 'info': None, 'row': 754, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.46806581765222, 22.625316490850484, 0]}}, {'type': 'Feature', 'properties': {'id': 'f1566519-b94a-4d74-b09c-2c9edb351398', 'info': None, 'row': 754, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.5064809382757, 22.63180497691058, 0]}}, {'type': 'Feature', 'properties': {'id': 'dba49a00-03cd-4fe4-8226-d754273c3b75', 'info': None, 'row': 754, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.5447492851911, 22.638258930833807, 0]}}, {'type': 'Feature', 'properties': {'id': '54d9299f-323f-40e3-a541-1a87deafbf74', 'info': None, 'row': 754, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.58287389777246, 22.644678975566766, 0]}}, {'type': 'Feature', 'properties': {'id': '5a25b26b-b709-4d97-9468-2a529bab3424', 'info': None, 'row': 754, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.62085772178062, 22.651065714842872, 0]}}, {'type': 'Feature', 'properties': {'id': '20b0dfb1-ea87-4532-a2a8-0dd06758eda6', 'info': None, 'row': 754, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.65870361325833, 22.657419733981648, 0]}}, {'type': 'Feature', 'properties': {'id': '4bc6fbd6-d043-4b49-a02a-9afc4a459cdb', 'info': None, 'row': 754, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.69641434222102, 22.663741600646198, 0]}}, {'type': 'Feature', 'properties': {'id': '07acb726-2e90-4ec7-b253-aeab3ed2690e', 'info': None, 'row': 754, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.7339925961564, 22.67003186556135, 0]}}, {'type': 'Feature', 'properties': {'id': '2e262537-9f7f-4fbb-95a2-542bcf1f2ecc', 'info': None, 'row': 754, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.77144098334415, 22.676291063194967, 0]}}, {'type': 'Feature', 'properties': {'id': '19df36ab-c281-4f78-a496-22eb9daa7eff', 'info': None, 'row': 754, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.80876203600776, 22.68251971240472, 0]}}, {'type': 'Feature', 'properties': {'id': '030da0bb-4936-4fe5-8a44-4109033e49e3', 'info': None, 'row': 754, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.84595821330795, 22.688718317052484, 0]}}, {'type': 'Feature', 'properties': {'id': 'cf4a0ee5-87ad-43e1-84bd-86a4be352cc0', 'info': None, 'row': 754, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.88303190418753, 22.69488736658807, 0]}}, {'type': 'Feature', 'properties': {'id': '34764a7c-d8c8-4d23-a9cf-32a75be5bb72', 'info': None, 'row': 1508, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.17165204642964, 22.488886544870606, 0]}}, {'type': 'Feature', 'properties': {'id': '251a58be-7507-4f2a-9e4b-3daa227c0f77', 'info': None, 'row': 1508, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.21133844560917, 22.495679560759754, 0]}}, {'type': 'Feature', 'properties': {'id': 'ff216528-fdd7-4392-b8b5-0652775ce7f0', 'info': None, 'row': 1508, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.25084994383806, 22.502432284102465, 0]}}, {'type': 'Feature', 'properties': {'id': '79114eb9-75e1-409b-bced-af962d04288c', 'info': None, 'row': 1508, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.29019049675075, 22.509145526166066, 0]}}, {'type': 'Feature', 'properties': {'id': '13a30213-dde9-42ce-8812-9fd438d0c9ef', 'info': None, 'row': 1508, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.32936392600232, 22.515820070711836, 0]}}, {'type': 'Feature', 'properties': {'id': '38f43711-4afa-48cf-ae60-fa035050574d', 'info': None, 'row': 1508, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.36837392540615, 22.522456675254787, 0]}}, {'type': 'Feature', 'properties': {'id': '37a6de89-dc11-4a85-93d7-41d742464326', 'info': None, 'row': 1508, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.40722406671738, 22.52905607225107, 0]}}, {'type': 'Feature', 'properties': {'id': '97938a27-010f-4f30-a784-b0cc79e860c3', 'info': None, 'row': 1508, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.4459178050868, 22.535618970217442, 0]}}, {'type': 'Feature', 'properties': {'id': 'd48054fc-8094-4b22-a1bf-8f6d8798d1f0', 'info': None, 'row': 1508, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.4844584842071, 22.54214605478772, 0]}}, {'type': 'Feature', 'properties': {'id': '654ef475-fa30-42ba-9330-59ed2752390c', 'info': None, 'row': 1508, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.52284934117336, 22.548637989710613, 0]}}, {'type': 'Feature', 'properties': {'id': 'f2b07b02-922b-4c0a-bd9a-e5489d4bd7f9', 'info': None, 'row': 1508, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.56109351107607, 22.555095417792526, 0]}}, {'type': 'Feature', 'properties': {'id': '307fddf6-3a86-4d89-b354-6ec59193bdc6', 'info': None, 'row': 1508, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.59919403134475, 22.561518961789282, 0]}}, {'type': 'Feature', 'properties': {'id': '1dd5b677-1105-4c26-a92e-3be696132610', 'info': None, 'row': 1508, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.63715384585853, 22.56790922524994, 0]}}, {'type': 'Feature', 'properties': {'id': 'b289c30f-3ace-4eb4-bed4-f9a3edef5cef', 'info': None, 'row': 1508, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.6749758088385, 22.5742667933159, 0]}}, {'type': 'Feature', 'properties': {'id': '2f78ef3c-f88f-4ed3-8a9d-23aba8d1299c', 'info': None, 'row': 1508, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.71266268853587, 22.580592233477972, 0]}}, {'type': 'Feature', 'properties': {'id': '13eed68a-d622-4aa4-9b31-0518d001a21a', 'info': None, 'row': 1508, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.75021717072912, 22.586886096294332, 0]}}, {'type': 'Feature', 'properties': {'id': '8e226100-7c08-4f14-b1f4-b4a6e845e51b', 'info': None, 'row': 1508, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.7876418620415, 22.5931489160716, 0]}}, {'type': 'Feature', 'properties': {'id': 'd0aa9275-c960-471e-b369-df8dcb20a864', 'info': None, 'row': 1508, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.82493929309057, 22.599381211511343, 0]}}, {'type': 'Feature', 'properties': {'id': '814e1fc8-63e1-4f45-ae55-1e11968a904d', 'info': None, 'row': 1508, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.8621119214796, 22.60558348632427, 0]}}, {'type': 'Feature', 'properties': {'id': '562730b6-91d3-40cc-8b5e-5b53e18bf5a0', 'info': None, 'row': 1508, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.89916213464049, 22.611756229813807, 0]}}, {'type': 'Feature', 'properties': {'id': '26436e26-3d96-49fd-b7c4-3a59c61af052', 'info': None, 'row': 2262, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.18823749457997, 22.405686877561287, 0]}}, {'type': 'Feature', 'properties': {'id': '908e4261-ea70-40ba-9351-c72d7606dee7', 'info': None, 'row': 2262, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.22789909203806, 22.412483140535116, 0]}}, {'type': 'Feature', 'properties': {'id': 'f8d05f51-9adc-4147-8c7f-83e4b5906bea', 'info': None, 'row': 2262, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.26738589222438, 22.41923913789002, 0]}}, {'type': 'Feature', 'properties': {'id': 'eff91266-0a04-4aa3-841d-df294493234f', 'info': None, 'row': 2262, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.30670184823606, 22.425955680641316, 0]}}, {'type': 'Feature', 'properties': {'id': 'a2e8b32d-eef5-4a74-8435-9f539726893d', 'info': None, 'row': 2262, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.34585077928091, 22.432633552307585, 0]}}, {'type': 'Feature', 'properties': {'id': '3fcfd1c4-34b2-409f-b506-b7c434d75275', 'info': None, 'row': 2262, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.38483637681114, 22.43927351017016, 0]}}, {'type': 'Feature', 'properties': {'id': 'c3df17e8-6926-4a2a-a626-0d507ec65940', 'info': None, 'row': 2262, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.42366221030252, 22.44587628646, 0]}}, {'type': 'Feature', 'properties': {'id': '471b4533-43b9-4e61-832f-0a7259b1105c', 'info': None, 'row': 2262, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.46233173270436, 22.45244258947671, 0]}}, {'type': 'Feature', 'properties': {'id': '566933e1-392f-4252-b8ee-64a014660196', 'info': None, 'row': 2262, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5008482855825, 22.458973104644734, 0]}}, {'type': 'Feature', 'properties': {'id': '5be5ed79-9965-4c81-8049-a3d8e80eb877', 'info': None, 'row': 2262, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.53921510397618, 22.4654684955107, 0]}}, {'type': 'Feature', 'properties': {'id': 'bf1a698d-0eac-4de3-9288-47924628327e', 'info': None, 'row': 2262, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.57743532098782, 22.47192940468593, 0]}}, {'type': 'Feature', 'properties': {'id': '4a5e1661-f673-45cc-9954-b8275c26d7d3', 'info': None, 'row': 2262, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.61551197212393, 22.478356454737856, 0]}}, {'type': 'Feature', 'properties': {'id': '507d2690-26d6-46e6-9901-d25391099e0e', 'info': None, 'row': 2262, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.65344799940249, 22.48475024903353, 0]}}, {'type': 'Feature', 'properties': {'id': '3c0bf072-cc81-47b7-9d62-67f535b9fbfc', 'info': None, 'row': 2262, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.69124625524287, 22.49111137253838, 0]}}, {'type': 'Feature', 'properties': {'id': 'fbbb504c-337f-4c24-9e72-12f3eb7c26b5', 'info': None, 'row': 2262, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.72890950615133, 22.497440392573104, 0]}}, {'type': 'Feature', 'properties': {'id': '1bbae033-babf-419a-a157-22d18adddb5e', 'info': None, 'row': 2262, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.76644043621583, 22.50373785953132, 0]}}, {'type': 'Feature', 'properties': {'id': '0c3dac9e-241d-48fc-9846-4c5bb4b72d2d', 'info': None, 'row': 2262, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.80384165042122, 22.51000430756038, 0]}}, {'type': 'Feature', 'properties': {'id': '61f83628-ed73-487a-b99f-cdd4d03dcd4f', 'info': None, 'row': 2262, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.84111567779664, 22.516240255207713, 0]}}, {'type': 'Feature', 'properties': {'id': '8401b2ca-e608-4c22-9fa1-fa000818d255', 'info': None, 'row': 2262, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.87826497440483, 22.52244620603474, 0]}}, {'type': 'Feature', 'properties': {'id': '040a5cb7-f1ba-4e0b-8d67-5f49a7c46b9b', 'info': None, 'row': 2262, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.91529192618327, 22.52862264920026, 0]}}, {'type': 'Feature', 'properties': {'id': 'ebd5c6ce-f2c3-4ddd-b57e-f42a68f15e1d', 'info': None, 'row': 3016, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.20482299582194, 22.322486876900143, 0]}}, {'type': 'Feature', 'properties': {'id': '48806d6c-7676-4226-af27-0f5471d52e6f', 'info': None, 'row': 3016, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.24445979207599, 22.32928638701361, 0]}}, {'type': 'Feature', 'properties': {'id': '28925d4b-5fa9-4e08-867c-0e3bb75793c4', 'info': None, 'row': 3016, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.28392189473455, 22.33604565843525, 0]}}, {'type': 'Feature', 'properties': {'id': '81908386-8fa3-45b6-9e61-012c9be0bd8f', 'info': None, 'row': 3016, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.32321325435737, 22.34276550192836, 0]}}, {'type': 'Feature', 'properties': {'id': 'df0ab7aa-0e27-432d-bad1-490b65817f3e', 'info': None, 'row': 3016, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.36233768770522, 22.349446700768844, 0]}}, {'type': 'Feature', 'properties': {'id': '36e39e31-7f5f-4d10-acc9-badb1876e6cb', 'info': None, 'row': 3016, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.40129888386907, 22.356090012004355, 0]}}, {'type': 'Feature', 'properties': {'id': 'db3c29f5-4bfe-4552-b391-848277cbe0b3', 'info': None, 'row': 3016, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.4401004100454, 22.362696167640674, 0]}}, {'type': 'Feature', 'properties': {'id': 'b0d445f7-9bc7-482c-bada-6a0c4552fe41', 'info': None, 'row': 3016, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.47874571698213, 22.369265875760274, 0]}}, {'type': 'Feature', 'properties': {'id': '565384ef-95c7-4c79-9b25-6d56d24ae503', 'info': None, 'row': 3016, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5172381441183, 22.37579982157822, 0]}}, {'type': 'Feature', 'properties': {'id': 'fe6792f6-0e26-49ce-b5a5-72bd031f3124', 'info': None, 'row': 3016, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.55558092443727, 22.382298668439052, 0]}}, {'type': 'Feature', 'properties': {'id': '30a61d70-3c50-4929-9860-d15b7b361df1', 'info': None, 'row': 3016, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.5937771890536, 22.38876305875905, 0]}}, {'type': 'Feature', 'properties': {'id': 'dbd5192f-2fe9-43b1-b5d8-2176f263d3f4', 'info': None, 'row': 3016, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.63182997155073, 22.39519361491725, 0]}}, {'type': 'Feature', 'properties': {'id': '363e84a5-cd9d-4682-8347-0ad2ea468135', 'info': None, 'row': 3016, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.66974221208554, 22.40159094009869, 0]}}, {'type': 'Feature', 'properties': {'id': '42d2ba46-5f1e-4dca-8043-676bd562f943', 'info': None, 'row': 3016, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.70751676127577, 22.40795561909285, 0]}}, {'type': 'Feature', 'properties': {'id': 'f564b765-8022-46db-8daa-33b16feeb9be', 'info': None, 'row': 3016, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.74515638388276, 22.41428821905031, 0]}}, {'type': 'Feature', 'properties': {'id': '354cc8cf-6312-4952-b2aa-807981b1f162', 'info': None, 'row': 3016, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.78266376230398, 22.420589290200144, 0]}}, {'type': 'Feature', 'properties': {'id': '558d4de7-3634-4d8e-a8f7-09245d6ea811', 'info': None, 'row': 3016, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.82004149988593, 22.426859366530437, 0]}}, {'type': 'Feature', 'properties': {'id': 'c7feb1ff-6e92-4f3a-bc85-34360dac4145', 'info': None, 'row': 3016, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.85729212406933, 22.433098966434486, 0]}}, {'type': 'Feature', 'properties': {'id': '8255c20c-4b94-4d0c-a6c1-def8f8d222f4', 'info': None, 'row': 3016, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.89441808937653, 22.439308593324423, 0]}}, {'type': 'Feature', 'properties': {'id': 'e2a5923e-1573-483f-8c38-461d17d68051', 'info': None, 'row': 3016, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.9314217802505, 22.44548873621445, 0]}}, {'type': 'Feature', 'properties': {'id': '94079aaa-f0dc-4db5-8808-761c88b10cf0', 'info': None, 'row': 3770, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.22142845951248, 22.239161535952956, 0]}}, {'type': 'Feature', 'properties': {'id': '01e91903-c8fc-4ed7-b65b-7efcc6d6be59', 'info': None, 'row': 3770, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.26104064911816, 22.245964313871454, 0]}}, {'type': 'Feature', 'properties': {'id': 'afcf4c1f-ed7f-45b3-90da-e721265ddc04', 'info': None, 'row': 3770, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.30047824780792, 22.252726879865293, 0]}}, {'type': 'Feature', 'properties': {'id': '76a5b833-52de-4acf-8fcf-01305b2a309c', 'info': None, 'row': 3770, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.33974520362867, 22.259450044449302, 0]}}, {'type': 'Feature', 'properties': {'id': 'cba8c71c-f214-4cbd-be25-579bfe73472d', 'info': None, 'row': 3770, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.3788453309176, 22.266134590660222, 0]}}, {'type': 'Feature', 'properties': {'id': '86480dbf-1821-42e2-86bc-3dd352fd5f0c', 'info': None, 'row': 3770, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.41778231642718, 22.272781275315342, 0]}}, {'type': 'Feature', 'properties': {'id': '35976cb0-a283-49ba-b708-ee88c5177950', 'info': None, 'row': 3770, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.45655972509635, 22.279390830198423, 0]}}, {'type': 'Feature', 'properties': {'id': '8ad5f46e-2281-462c-8449-f85661da4aab', 'info': None, 'row': 3770, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.49518100549287, 22.28596396317794, 0]}}, {'type': 'Feature', 'properties': {'id': 'c9087ea7-6caa-43e4-b168-29cea31cfd1d', 'info': None, 'row': 3770, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.53364949494919, 22.29250135926253, 0]}}, {'type': 'Feature', 'properties': {'id': 'a4b50692-a813-4891-a5cb-410aca458c2e', 'info': None, 'row': 3770, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.57196842441245, 22.299003681597537, 0]}}, {'type': 'Feature', 'properties': {'id': '2616a28f-6148-43dd-87a6-685263254fa6', 'info': None, 'row': 3770, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.61014092302827, 22.305471572406944, 0]}}, {'type': 'Feature', 'properties': {'id': '233d1d63-fc0f-4d18-a360-45daca9692dd', 'info': None, 'row': 3770, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.64817002247526, 22.31190565388406, 0]}}, {'type': 'Feature', 'properties': {'id': '0d960b12-7974-4a5b-a65f-03f6f28110fa', 'info': None, 'row': 3770, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.68605866106694, 22.31830652903448, 0]}}, {'type': 'Feature', 'properties': {'id': '83bd1d1b-2bc5-476f-91d8-a33f73f5d419', 'info': None, 'row': 3770, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.72380968763643, 22.32467478247424, 0]}}, {'type': 'Feature', 'properties': {'id': 'dfb4bab3-5570-4b09-9dde-bf72166a1056', 'info': None, 'row': 3770, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.76142586521671, 22.331010981186218, 0]}}, {'type': 'Feature', 'properties': {'id': '86d79a28-e32a-495e-8419-31b92adb91bb', 'info': None, 'row': 3770, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.7989098745307, 22.33731567523723, 0]}}, {'type': 'Feature', 'properties': {'id': 'fd18d803-c209-4b54-9766-cc31a2f03ea0', 'info': None, 'row': 3770, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.83626431730207, 22.343589398458388, 0]}}, {'type': 'Feature', 'properties': {'id': '84208f72-3e86-4f8f-8d75-d1568648e6ab', 'info': None, 'row': 3770, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.87349171939807, 22.349832669090993, 0]}}, {'type': 'Feature', 'properties': {'id': '80852d80-dd9b-45b4-8be5-73122ec2e900', 'info': None, 'row': 3770, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.9105945338151, 22.356045990400027, 0]}}, {'type': 'Feature', 'properties': {'id': '40c0dcb0-3284-4bd1-ae8a-598a0134812d', 'info': None, 'row': 3770, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.94757514351575, 22.362229851257098, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4f4cbaa-e26f-4563-b7ba-ebdcbc8fd363', 'info': None, 'row': 4524, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.23803385672487, 22.15583643203095, 0]}}, {'type': 'Feature', 'properties': {'id': '5e8910ee-7606-4a3c-ada8-50a1f013c46c', 'info': None, 'row': 4524, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.2776214406779, 22.16264247777952, 0]}}, {'type': 'Feature', 'properties': {'id': '1d4782f1-aebf-439a-a4a2-0d6ad02bd902', 'info': None, 'row': 4524, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.31703453638967, 22.16940833836986, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba1655e0-6f85-4668-90e3-f2feba33db7e', 'info': None, 'row': 4524, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.35627708939435, 22.176134824068317, 0]}}, {'type': 'Feature', 'properties': {'id': 'f62ae924-0199-45b8-95eb-22e7f0254973', 'info': None, 'row': 4524, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.39535291160573, 22.18282271767249, 0]}}, {'type': 'Feature', 'properties': {'id': '70f4ebc7-7789-496c-aeca-7f42d5745487', 'info': None, 'row': 4524, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.43426568743782, 22.189472775769318, 0]}}, {'type': 'Feature', 'properties': {'id': '8931fca5-cc01-4131-811b-2a8eb04b89ea', 'info': None, 'row': 4524, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.47301897957219, 22.196085729920565, 0]}}, {'type': 'Feature', 'properties': {'id': 'ee2ecb1c-cf73-440e-8b58-8c274dabf565', 'info': None, 'row': 4524, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.51161623439647, 22.20266228778071, 0]}}, {'type': 'Feature', 'properties': {'id': '6eef8649-9542-4742-b0a5-8958f05506ce', 'info': None, 'row': 4524, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.55006078713666, 22.20920313415198, 0]}}, {'type': 'Feature', 'properties': {'id': '36f54048-bf24-4d3d-b856-d8b4a71cc95b', 'info': None, 'row': 4524, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.5883558667038, 22.215708931980522, 0]}}, {'type': 'Feature', 'properties': {'id': '3f4b29a3-e405-4dbe-838c-3869d6d3d32f', 'info': None, 'row': 4524, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.62650460027459, 22.22218032329804, 0]}}, {'type': 'Feature', 'properties': {'id': 'd775ca08-56aa-4e83-a436-fdc81cd4f915', 'info': None, 'row': 4524, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.66451001762297, 22.228617930112136, 0]}}, {'type': 'Feature', 'properties': {'id': '4fdcb886-d7cd-48da-a509-cbeb7ca4d1b5', 'info': None, 'row': 4524, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.70237505521919, 22.235022355248947, 0]}}, {'type': 'Feature', 'properties': {'id': 'd1af84b8-77be-463c-8235-9180e4fe1f1c', 'info': None, 'row': 4524, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.74010256011178, 22.241394183151094, 0]}}, {'type': 'Feature', 'properties': {'id': '05844785-a543-4d89-ab34-ce278bd1bde8', 'info': None, 'row': 4524, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.7776952936055, 22.247733980633758, 0]}}, {'type': 'Feature', 'properties': {'id': '34141263-5c35-439a-8000-4aed6e6f9e46', 'info': None, 'row': 4524, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.81515593474876, 22.254042297601508, 0]}}, {'type': 'Feature', 'properties': {'id': 'c5866da5-ac2a-49f8-b3cb-d83d614b41bb', 'info': None, 'row': 4524, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.85248708364247, 22.26031966772848, 0]}}, {'type': 'Feature', 'properties': {'id': 'a37652cd-1814-4b7d-95e3-474b064fd4fe', 'info': None, 'row': 4524, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.88969126458052, 22.26656660910401, 0]}}, {'type': 'Feature', 'properties': {'id': '63724815-ccf2-4f73-82e0-b35b99a21e88', 'info': None, 'row': 4524, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.9267709290334, 22.272783624845907, 0]}}, {'type': 'Feature', 'properties': {'id': '77231e0f-d024-4ae9-bc50-9015b757ff7d', 'info': None, 'row': 4524, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.96372845848339, 22.278971203683227, 0]}}, {'type': 'Feature', 'properties': {'id': '4c23360b-fd84-4212-83da-b12a4136a493', 'info': None, 'row': 5278, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.25462261223964, 22.07257066341353, 0]}}, {'type': 'Feature', 'properties': {'id': 'e83255d3-dad0-4f14-88b6-5d3dbe0f44cb', 'info': None, 'row': 5278, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.29418583980319, 22.079379983261685, 0]}}, {'type': 'Feature', 'properties': {'id': '2b4f62c7-995e-4025-af47-111d4abb7e5d', 'info': None, 'row': 5278, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.33357468057082, 22.08614914452901, 0]}}, {'type': 'Feature', 'properties': {'id': '6daa7877-7b95-48b3-9985-69675920d348', 'info': None, 'row': 5278, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.37279307759408, 22.09287895723687, 0]}}, {'type': 'Feature', 'properties': {'id': 'e0e8f1ec-52ea-4a93-a9ab-c9a58981af34', 'info': None, 'row': 5278, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.41184484039226, 22.09957020394701, 0]}}, {'type': 'Feature', 'properties': {'id': '6b6c09f9-061c-4ebd-96e4-284cf14108c0', 'info': None, 'row': 5278, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.45073365106894, 22.106223641019195, 0]}}, {'type': 'Feature', 'properties': {'id': '766fd2c2-ed0b-46d5-946a-f7e88f3aadeb', 'info': None, 'row': 5278, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.48946307007522, 22.112839999796275, 0]}}, {'type': 'Feature', 'properties': {'id': '68b3fc6c-0221-4760-a6c6-726dfb4764d4', 'info': None, 'row': 5278, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.52803654164452, 22.119419987721685, 0]}}, {'type': 'Feature', 'properties': {'id': '91fb4841-b811-4f70-8dd2-78914b9d1f20', 'info': None, 'row': 5278, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.56645739892147, 22.125964289394062, 0]}}, {'type': 'Feature', 'properties': {'id': '64a4d428-e633-4cbb-bf37-0f151442cafb', 'info': None, 'row': 5278, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.60472886880517, 22.132473567563117, 0]}}, {'type': 'Feature', 'properties': {'id': '8ac68c66-6bb3-4aef-b068-783fd2267541', 'info': None, 'row': 5278, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.64285407652682, 22.138948464070914, 0]}}, {'type': 'Feature', 'properties': {'id': '02118e15-6ced-46cb-804b-d25f795d3a38', 'info': None, 'row': 5278, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.68083604997815, 22.145389600741872, 0]}}, {'type': 'Feature', 'properties': {'id': '6642c472-a872-4283-8bbb-fbc63e788e5c', 'info': None, 'row': 5278, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.71867772380803, 22.15179758022515, 0]}}, {'type': 'Feature', 'properties': {'id': '09927e1d-cf2c-4060-b3a3-d80d949ab780', 'info': None, 'row': 5278, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.75638194330148, 22.15817298679233, 0]}}, {'type': 'Feature', 'properties': {'id': 'd1dd6262-c2fa-4dc8-8dbe-8999a669587d', 'info': None, 'row': 5278, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.79395146805537, 22.164516387093144, 0]}}, {'type': 'Feature', 'properties': {'id': '1f13fda5-dd12-46d7-9249-8fbf37de0cb5', 'info': None, 'row': 5278, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.83138897546345, 22.170828330872176, 0]}}, {'type': 'Feature', 'properties': {'id': '4f81520c-7377-4da6-b4d3-b10fb6de6c55', 'info': None, 'row': 5278, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.86869706402284, 22.177109351648696, 0]}}, {'type': 'Feature', 'properties': {'id': '0a1984fc-f4ef-40d2-bc69-b9b074256391', 'info': None, 'row': 5278, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.90587825647265, 22.183359967362144, 0]}}, {'type': 'Feature', 'properties': {'id': '21e91df2-3971-4787-a421-38406bae5cb1', 'info': None, 'row': 5278, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.94293500277541, 22.189580680985152, 0]}}, {'type': 'Feature', 'properties': {'id': '752d981d-a3d8-46cf-ad04-1b4f6f5a6f53', 'info': None, 'row': 5278, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.97986968295044, 22.195771981106162, 0]}}, {'type': 'Feature', 'properties': {'id': '2921c34d-b750-471a-8638-80239dd58afa', 'info': None, 'row': 6032, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.27121127969059, 21.989305213461112, 0]}}, {'type': 'Feature', 'properties': {'id': '087e93c2-b717-441c-9cfd-69c73b7aa840', 'info': None, 'row': 6032, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.31075015218009, 21.996117807461744, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca10e6c7-20bc-4317-83f8-88b9499ad1d3', 'info': None, 'row': 6032, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.3501147393125, 22.002890269457865, 0]}}, {'type': 'Feature', 'properties': {'id': '4df41464-b668-4309-ac2f-05243d3e57a9', 'info': None, 'row': 6032, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.38930898165694, 22.009623409225878, 0]}}, {'type': 'Feature', 'properties': {'id': '0a206b83-21c3-47de-a82d-6d681d84b39e', 'info': None, 'row': 6032, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.42833668633835, 22.01631800909171, 0]}}, {'type': 'Feature', 'properties': {'id': 'c0ab7d67-ed6c-43d6-82ea-ab97c02af1cb', 'info': None, 'row': 6032, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.46720153315003, 22.022974825187955, 0]}}, {'type': 'Feature', 'properties': {'id': '1a3ca005-a9ed-4ab3-90be-b64be4d6b4b7', 'info': None, 'row': 6032, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.50590708031272, 22.02959458863858, 0]}}, {'type': 'Feature', 'properties': {'id': 'be74d6ac-35fc-45b6-98bf-f9f614ac7602', 'info': None, 'row': 6032, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.5444567699058, 22.036178006675982, 0]}}, {'type': 'Feature', 'properties': {'id': '86cdebfa-d4b4-4a3b-ab4c-35f2e93f9949', 'info': None, 'row': 6032, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.58285393299265, 22.042725763695238, 0]}}, {'type': 'Feature', 'properties': {'id': '36d7b019-b9af-43d2-a4d5-e75e719b14ef', 'info': None, 'row': 6032, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.6211017944606, 22.04923852224963, 0]}}, {'type': 'Feature', 'properties': {'id': 'b91a97b4-ae26-46f3-97e7-7242a746170b', 'info': None, 'row': 6032, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.65920347759538, 22.05571692399158, 0]}}, {'type': 'Feature', 'properties': {'id': '5e9e8a24-bde2-4577-8cf8-75bc6b8520b5', 'info': None, 'row': 6032, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.69716200840674, 22.062161590562372, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb502a90-a8a5-47e4-a365-d49c1546f83c', 'info': None, 'row': 6032, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.73498031972218, 22.068573124434188, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb6ee4b4-9c93-439d-8adb-6676e5ba9203', 'info': None, 'row': 6032, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.77266125506337, 22.074952109707574, 0]}}, {'type': 'Feature', 'properties': {'id': '94d6b5c2-e88e-46bc-8614-d4ca5e7975f4', 'info': None, 'row': 6032, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.81020757231941, 22.08129911286685, 0]}}, {'type': 'Feature', 'properties': {'id': 'ccf0e649-e2ef-457c-ae1f-246fc910c04a', 'info': None, 'row': 6032, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.84762194722951, 22.0876146834966, 0]}}, {'type': 'Feature', 'properties': {'id': 'a39b8c66-bab8-4ef4-816b-fbee65286c86', 'info': None, 'row': 6032, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.88490697668706, 22.09389935496125, 0]}}, {'type': 'Feature', 'properties': {'id': '076bbb4c-bcb2-4bcb-bcd4-42aeb5e6d3b9', 'info': None, 'row': 6032, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.9220651818765, 22.10015364505037, 0]}}, {'type': 'Feature', 'properties': {'id': '8afa7453-a8f8-4d2f-8b99-e44baed2bb20', 'info': None, 'row': 6032, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.95909901125252, 22.10637805659141, 0]}}, {'type': 'Feature', 'properties': {'id': '29c00886-71d7-4c95-8c38-e9ed59dd5ca1', 'info': None, 'row': 6032, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.99601084337148, 22.11257307803223, 0]}}, {'type': 'Feature', 'properties': {'id': 'e651a301-4e85-476c-bc23-ba5b1258e0d8', 'info': None, 'row': 6786, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.28778343517328, 21.906099513197816, 0]}}, {'type': 'Feature', 'properties': {'id': 'fa269749-c2ef-4f5b-95e5-bb2034b37b8c', 'info': None, 'row': 6786, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.3272981992296, 21.912915391266232, 0]}}, {'type': 'Feature', 'properties': {'id': 'd23a7d1c-a560-4acd-bb76-ecc5e50375c8', 'info': None, 'row': 6786, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.36663877815128, 21.91969116370526, 0]}}, {'type': 'Feature', 'properties': {'id': 'f88d0dbb-cb57-4adc-bd1d-d76af7956845', 'info': None, 'row': 6786, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.4058091100548, 21.926427640050104, 0]}}, {'type': 'Feature', 'properties': {'id': 'bd9e55e6-40a3-475c-a78a-5676eb07b96e', 'info': None, 'row': 6786, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.44481299969956, 21.933125602394483, 0]}}, {'type': 'Feature', 'properties': {'id': 'ffa641cb-47bf-48ee-8605-a3863368621b', 'info': None, 'row': 6786, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.48365412459609, 21.9397858066473, 0]}}, {'type': 'Feature', 'properties': {'id': '9e851a10-e744-4cdd-8b1d-b0906915b522', 'info': None, 'row': 6786, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.52233604076154, 21.946408983717006, 0]}}, {'type': 'Feature', 'properties': {'id': '7ed8fa25-3d22-463f-8d69-3189ebc55d58', 'info': None, 'row': 6786, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.56086218814696, 21.952995840628176, 0]}}, {'type': 'Feature', 'properties': {'id': '03731dc0-5553-4634-95c1-8dc396368d9f', 'info': None, 'row': 6786, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5992358957592, 21.959547061575442, 0]}}, {'type': 'Feature', 'properties': {'id': 'ffea0224-3201-45c8-8563-9d791256fe35', 'info': None, 'row': 6786, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.63746038649782, 21.966063308918656, 0]}}, {'type': 'Feature', 'properties': {'id': '04556ffb-667c-4e76-8f94-dab0cb4adfaa', 'info': None, 'row': 6786, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.67553878172625, 21.972545224123493, 0]}}, {'type': 'Feature', 'properties': {'id': 'abd8d61d-54af-4898-b2a4-a740e4703dc0', 'info': None, 'row': 6786, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.71347410559454, 21.978993428650874, 0]}}, {'type': 'Feature', 'properties': {'id': '576bdd6e-382a-4f96-acd2-8203164254f1', 'info': None, 'row': 6786, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.75126928913046, 21.98540852479873, 0]}}, {'type': 'Feature', 'properties': {'id': '51795b6b-8188-4ab3-b6a0-c8837e808df8', 'info': None, 'row': 6786, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.78892717411324, 21.991791096499128, 0]}}, {'type': 'Feature', 'properties': {'id': 'd46deb75-8093-42b9-be4f-66a56509f8dd', 'info': None, 'row': 6786, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.82645051674433, 21.99814171007351, 0]}}, {'type': 'Feature', 'properties': {'id': 'da97b576-811c-4f99-8ab6-5bbecc6a7847', 'info': None, 'row': 6786, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.86384199112788, 22.00446091494888, 0]}}, {'type': 'Feature', 'properties': {'id': '6772c3f5-b9bf-4155-a30c-f1fa72284aa1', 'info': None, 'row': 6786, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.90110419257269, 22.010749244337184, 0]}}, {'type': 'Feature', 'properties': {'id': '395e637e-9cd9-48ce-bbc6-406b9b67026e', 'info': None, 'row': 6786, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.93823964072672, 22.017007215880376, 0]}}, {'type': 'Feature', 'properties': {'id': '18d36fe8-e7fa-4658-9bec-530dab23bf24', 'info': None, 'row': 6786, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.97525078255454, 22.023235332262935, 0]}}, {'type': 'Feature', 'properties': {'id': '7578dfc0-d463-4d78-9381-43b0ca033977', 'info': None, 'row': 6786, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.01213999516685, 22.02943408179423, 0]}}, {'type': 'Feature', 'properties': {'id': '75b15377-2596-469f-bb3f-368518b337b4', 'info': None, 'row': 7540, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.30435589224811, 21.82289215035737, 0]}}, {'type': 'Feature', 'properties': {'id': '5f754cbd-e916-4f13-83c3-c0da5ca9d0a6', 'info': None, 'row': 7540, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.34384654892156, 21.82971131261178, 0]}}, {'type': 'Feature', 'properties': {'id': 'd144f44d-9893-4a7d-835a-9a6be49e19e2', 'info': None, 'row': 7540, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.38316312067718, 21.836490395611357, 0]}}, {'type': 'Feature', 'properties': {'id': 'be911498-5511-41fb-9642-ae6716745fc7', 'info': None, 'row': 7540, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.4223095431789, 21.843230208650123, 0]}}, {'type': 'Feature', 'properties': {'id': 'c2ce4b2b-a5d8-46ba-ab76-fc619d0b8555', 'info': None, 'row': 7540, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.46128961882074, 21.849931533589604, 0]}}, {'type': 'Feature', 'properties': {'id': '20e3aae8-f16e-4edf-ad49-f1d147a80a66', 'info': None, 'row': 7540, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5001070228306, 21.856595126115046, 0]}}, {'type': 'Feature', 'properties': {'id': '86c55012-a573-4a15-9d29-585b8c8e60cd', 'info': None, 'row': 7540, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.53876530902212, 21.86322171691937, 0]}}, {'type': 'Feature', 'properties': {'id': '9a843911-4bd8-4c8a-a88e-4c6586fc7bf2', 'info': None, 'row': 7540, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.57726791521817, 21.86981201281937, 0]}}, {'type': 'Feature', 'properties': {'id': '59e1a079-8815-4301-b6d9-2cfa090bb1d8', 'info': None, 'row': 7540, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.61561816836921, 21.876366697809225, 0]}}, {'type': 'Feature', 'properties': {'id': 'e99c7f6d-d3d9-40e3-b9a8-92dc66e2e05c', 'info': None, 'row': 7540, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.65381928938716, 21.88288643405538, 0]}}, {'type': 'Feature', 'properties': {'id': '8055e21a-9482-41e0-ae3f-c91d0eb66ce7', 'info': None, 'row': 7540, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.69187439771312, 21.889371862836775, 0]}}, {'type': 'Feature', 'properties': {'id': '2b7f359f-7d5d-42c4-b469-4428486afb31', 'info': None, 'row': 7540, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.72978651563773, 21.89582360543398, 0]}}, {'type': 'Feature', 'properties': {'id': '0c80bf47-cdd3-4819-99fe-45a07215fe58', 'info': None, 'row': 7540, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.76755857238898, 21.90224226397068, 0]}}, {'type': 'Feature', 'properties': {'id': '582bc619-826e-4ecd-a32c-084b9d20b15b', 'info': None, 'row': 7540, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.8051934080038, 21.908628422210487, 0]}}, {'type': 'Feature', 'properties': {'id': '02c84da2-df39-46c0-8e3f-31f57d679da4', 'info': None, 'row': 7540, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.8426937769961, 21.914982646311966, 0]}}, {'type': 'Feature', 'properties': {'id': '8236adcf-f4e6-4f47-9ec0-da24d13f0b8a', 'info': None, 'row': 7540, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.88006235183512, 21.921305485544544, 0]}}, {'type': 'Feature', 'properties': {'id': 'de5206a0-44a2-432a-b31b-587809073c50', 'info': None, 'row': 7540, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.91730172624503, 21.927597472967722, 0]}}, {'type': 'Feature', 'properties': {'id': '57dd90ca-8290-448d-acc5-4f419156f1fb', 'info': None, 'row': 7540, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.95441441833748, 21.933859126075816, 0]}}, {'type': 'Feature', 'properties': {'id': '9e5d8678-2bc6-4f56-ae4f-0bc7c1005f91', 'info': None, 'row': 7540, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.99140287358699, 21.940090947410376, 0]}}, {'type': 'Feature', 'properties': {'id': '3b00dc4c-0af3-4c92-afba-172c5b4f2807', 'info': None, 'row': 7540, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.02826946765866, 21.946293425142258, 0]}}, {'type': 'Feature', 'properties': {'id': '36e620f0-38e0-47ef-a276-b78645418551', 'info': None, 'row': 8294, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.3209735278258, 21.739435733460372, 0]}}, {'type': 'Feature', 'properties': {'id': '30e7ba80-d973-4511-903c-9b8098c686dc', 'info': None, 'row': 8294, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.36044023445311, 21.74625819760766, 0]}}, {'type': 'Feature', 'properties': {'id': '0ee91849-e61d-4d98-b7c0-3f6c12759090', 'info': None, 'row': 8294, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.39973295553105, 21.753040608790315, 0]}}, {'type': 'Feature', 'properties': {'id': '2cc1cf70-a08b-4a55-a272-8e6cf12a2c1a', 'info': None, 'row': 8294, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.43885562429179, 21.759783776063593, 0]}}, {'type': 'Feature', 'properties': {'id': 'd303fa61-370a-4960-b190-a98759680e62', 'info': None, 'row': 8294, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.47781204078385, 21.766488481059184, 0]}}, {'type': 'Feature', 'properties': {'id': 'accf606c-754f-4918-af86-bf561a8e803e', 'info': None, 'row': 8294, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5166058779719, 21.77315547924092, 0]}}, {'type': 'Feature', 'properties': {'id': '199f510c-3e24-4d0c-9a64-da6b0bf1439f', 'info': None, 'row': 8294, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.55524068748451, 21.77978550108837, 0]}}, {'type': 'Feature', 'properties': {'id': 'e217f1a4-079e-4f62-8e3f-a538885d84f3', 'info': None, 'row': 8294, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.59371990503428, 21.7863792532126, 0]}}, {'type': 'Feature', 'properties': {'id': '414ba88d-b67c-4e53-8184-ad3c9b81aaab', 'info': None, 'row': 8294, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.63204685553251, 21.792937419409377, 0]}}, {'type': 'Feature', 'properties': {'id': '54cb1c4c-51db-4a8a-860e-233f79a81209', 'info': None, 'row': 8294, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.67022475792001, 21.799460661653633, 0]}}, {'type': 'Feature', 'properties': {'id': '468c9ae5-8780-49c5-97c7-2c1a8cae46e7', 'info': None, 'row': 8294, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.70825672973179, 21.805949621039446, 0]}}, {'type': 'Feature', 'properties': {'id': 'ce5b25f6-fbd4-4b12-ba95-8232fff99bec', 'info': None, 'row': 8294, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.74614579141436, 21.812404918668836, 0]}}, {'type': 'Feature', 'properties': {'id': 'fdddff4b-ca2b-4715-907c-a283d407ef7c', 'info': None, 'row': 8294, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.78389487041107, 21.81882715649293, 0]}}, {'type': 'Feature', 'properties': {'id': '591f61b5-caad-428e-b436-7fc9bb4832c9', 'info': None, 'row': 8294, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.82150680503091, 21.82521691810858, 0]}}, {'type': 'Feature', 'properties': {'id': '3da400af-95d4-4f35-92e9-a15bfcb6cd54', 'info': None, 'row': 8294, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.85898434811429, 21.83157476951308, 0]}}, {'type': 'Feature', 'properties': {'id': '4113878d-7b68-4f7d-ac5d-9e25d9bb9f10', 'info': None, 'row': 8294, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.89633017050903, 21.837901259819844, 0]}}, {'type': 'Feature', 'properties': {'id': 'c46651ac-202c-4bfe-999c-4afcf443b9a4', 'info': None, 'row': 8294, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.93354686436776, 21.844196921937375, 0]}}, {'type': 'Feature', 'properties': {'id': '6b085082-a96b-469f-a21b-f76155c54f7c', 'info': None, 'row': 8294, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.97063694627843, 21.85046227321382, 0]}}, {'type': 'Feature', 'properties': {'id': 'a83a5b82-dbe3-4834-885f-8d519edab55b', 'info': None, 'row': 8294, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.00760286023785, 21.8566978160492, 0]}}, {'type': 'Feature', 'properties': {'id': '433ccb77-f710-40d0-8e46-99b9fa580537', 'info': None, 'row': 8294, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.04444698047737, 21.862904038477232, 0]}}, {'type': 'Feature', 'properties': {'id': '334b2314-48d9-4118-bb35-8e6a26be2094', 'info': None, 'row': 9048, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.33759083741846, 21.65598078384963, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3b7a17d-5ebf-4653-83be-cce6bafa35c7', 'info': None, 'row': 9048, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.37703359623752, 21.662806549939422, 0]}}, {'type': 'Feature', 'properties': {'id': '044ab3f0-7dc1-4833-8a8d-ee414a98812c', 'info': None, 'row': 9048, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.41630246886486, 21.669592289352828, 0]}}, {'type': 'Feature', 'properties': {'id': 'f6c44021-682d-41f0-9a5d-d31d695d6a2d', 'info': None, 'row': 9048, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.45540138610113, 21.67633881090636, 0]}}, {'type': 'Feature', 'properties': {'id': '85fac8f4-b856-43a6-b5df-687fba279f2b', 'info': None, 'row': 9048, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.49433414564962, 21.683046896001898, 0]}}, {'type': 'Feature', 'properties': {'id': 'fb4163ea-d1f8-444f-8a8b-34ce08d3fa21', 'info': None, 'row': 9048, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.53310441821198, 21.689717299881906, 0]}}, {'type': 'Feature', 'properties': {'id': 'a271704f-1fa2-4925-a903-43c23c13b305', 'info': None, 'row': 9048, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.57171575323201, 21.696350752812616, 0]}}, {'type': 'Feature', 'properties': {'id': '96bb01af-f08c-4df3-b67b-6fbf4102b4f1', 'info': None, 'row': 9048, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.61017158431218, 21.70294796119942, 0]}}, {'type': 'Feature', 'properties': {'id': '897b5637-c036-49d9-92ea-a1bfbd4f0dd6', 'info': None, 'row': 9048, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.64847523432495, 21.709509608639667, 0]}}, {'type': 'Feature', 'properties': {'id': '5365a9e2-1da5-4c4d-96f0-6ee2339e807c', 'info': None, 'row': 9048, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.68662992024022, 21.71603635691683, 0]}}, {'type': 'Feature', 'properties': {'id': '468b9cd6-61b2-45a9-a1cc-2bb84c5fba68', 'info': None, 'row': 9048, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.72463875768703, 21.72252884694014, 0]}}, {'type': 'Feature', 'properties': {'id': '5c263f4e-57b9-4558-9024-283241cc5d1b', 'info': None, 'row': 9048, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.76250476526808, 21.728987699633088, 0]}}, {'type': 'Feature', 'properties': {'id': 'e31e1b3e-87fc-4775-9482-ffadc033f76e', 'info': None, 'row': 9048, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.80023086864215, 21.73541351677428, 0]}}, {'type': 'Feature', 'properties': {'id': '111c2d83-f09a-40e3-8491-d9d473c55b25', 'info': None, 'row': 9048, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.83781990439051, 21.741806881793828, 0]}}, {'type': 'Feature', 'properties': {'id': 'e57d9ec2-e958-458e-9966-b3c7a1f99728', 'info': None, 'row': 9048, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.87527462368034, 21.748168360527757, 0]}}, {'type': 'Feature', 'properties': {'id': 'd07a8200-be8c-481b-8168-4e017e5336d2', 'info': None, 'row': 9048, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.91259769573814, 21.754498501933515, 0]}}, {'type': 'Feature', 'properties': {'id': '975fdc7e-d703-4d9f-abdd-a7620df10d56', 'info': None, 'row': 9048, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.94979171114514, 21.760797838768614, 0]}}, {'type': 'Feature', 'properties': {'id': '159b8ae7-4850-41eb-9194-c037f8219e62', 'info': None, 'row': 9048, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.98685918496585, 21.767066888235075, 0]}}, {'type': 'Feature', 'properties': {'id': '478d63ff-e5ca-43c6-80c4-88256a3f0945', 'info': None, 'row': 9048, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.0238025597194, 21.773306152591378, 0]}}, {'type': 'Feature', 'properties': {'id': '9fced127-8526-40f5-9fd5-9746d93eaf72', 'info': None, 'row': 9048, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.06062420820369, 21.779516119734144, 0]}}, {'type': 'Feature', 'properties': {'id': 'e84c3b71-47ab-4529-8af3-3c89f2ea7079', 'info': None, 'row': 9802, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.35416750754766, 21.572708755925596, 0]}}, {'type': 'Feature', 'properties': {'id': '1cd23c8d-eb2d-4166-b47f-23461f305fe5', 'info': None, 'row': 9802, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.39358659754922, 21.579537830145526, 0]}}, {'type': 'Feature', 'properties': {'id': '7b306954-18ad-4d87-afea-e008b8249983', 'info': None, 'row': 9802, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.43283189936683, 21.58632690373245, 0]}}, {'type': 'Feature', 'properties': {'id': '62a9dcac-9403-44ec-bd0b-f0a0e14dec76', 'info': None, 'row': 9802, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.47190734140267, 21.593076785268423, 0]}}, {'type': 'Feature', 'properties': {'id': 'd89716b4-6cb2-4057-af41-c10fe10d95c6', 'info': None, 'row': 9802, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.51081671904672, 21.59978825592954, 0]}}, {'type': 'Feature', 'properties': {'id': 'd56e382e-1f37-4f81-bd0c-3f1d6616761e', 'info': None, 'row': 9802, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.54956370076829, 21.60646207074083, 0]}}, {'type': 'Feature', 'properties': {'id': '45af1fb6-94ba-442f-b9fa-7d32e71b45ff', 'info': None, 'row': 9802, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.58815183385602, 21.61309895975893, 0]}}, {'type': 'Feature', 'properties': {'id': '7f20fe95-a128-4eb2-b0e1-b313b60ee345', 'info': None, 'row': 9802, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.62658454983084, 21.619699629187178, 0]}}, {'type': 'Feature', 'properties': {'id': '537b2452-26b5-48fc-9409-95ea5ee24792', 'info': None, 'row': 9802, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.66486516955389, 21.626264762428015, 0]}}, {'type': 'Feature', 'properties': {'id': '4dd8ae14-74c9-457c-b82a-ac1afcc20765', 'info': None, 'row': 9802, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7029969080508, 21.63279502107683, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3a885f2-88bc-440a-8b8b-b18a01e856b4', 'info': None, 'row': 9802, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.74098287907037, 21.639291045861242, 0]}}, {'type': 'Feature', 'properties': {'id': '7d9a3650-c918-478f-a20f-3675195a0c2b', 'info': None, 'row': 9802, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.77882609939627, 21.645753457529334, 0]}}, {'type': 'Feature', 'properties': {'id': 'ac952578-2962-42c4-b2eb-a908bdf25968', 'info': None, 'row': 9802, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.81652949292678, 21.652182857690256, 0]}}, {'type': 'Feature', 'properties': {'id': '148d6828-e09d-4d75-8faa-82ffff9a522c', 'info': None, 'row': 9802, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.85409589453872, 21.65857982961026, 0]}}, {'type': 'Feature', 'properties': {'id': '77e1df09-7421-44ca-a71d-57d3200ee4e1', 'info': None, 'row': 9802, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.8915280537483, 21.66494493896696, 0]}}, {'type': 'Feature', 'properties': {'id': '27696622-8dbb-48b8-b295-04e79416b2ef', 'info': None, 'row': 9802, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.92882863818255, 21.67127873456454, 0]}}, {'type': 'Feature', 'properties': {'id': 'a61c0154-4fa8-420f-b0af-34a73cf7404c', 'info': None, 'row': 9802, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.96600023687242, 21.67758174901219, 0]}}, {'type': 'Feature', 'properties': {'id': '968af0a7-23ad-4ba5-ba62-fe984ed8f3ce', 'info': None, 'row': 9802, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.00304536337927, 21.683854499368337, 0]}}, {'type': 'Feature', 'properties': {'id': '15a947fa-446c-4835-82ce-0866b3fe026e', 'info': None, 'row': 9802, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.03996645876435, 21.69009748775241, 0]}}, {'type': 'Feature', 'properties': {'id': '8ec0b807-d436-4d70-9852-aef336fe5746', 'info': None, 'row': 9802, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.07676589441117, 21.6963112019263, 0]}}, {'type': 'Feature', 'properties': {'id': '36542e64-caa8-415b-9174-a5181a10c4b8', 'info': None, 'row': 10556, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.37074402880062, 21.489437287107858, 0]}}, {'type': 'Feature', 'properties': {'id': 'ecfe154a-faac-47b1-853d-5ec5764ef4bc', 'info': None, 'row': 10556, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.41013945224904, 21.496269669554785, 0]}}, {'type': 'Feature', 'properties': {'id': '740e3c34-2144-4585-b379-2a7097ab3cdc', 'info': None, 'row': 10556, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.44936118551006, 21.503062077410227, 0]}}, {'type': 'Feature', 'properties': {'id': 'b91cfaae-3029-4bad-886f-cacd1ba20242', 'info': None, 'row': 10556, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.48841315458766, 21.509815319021808, 0]}}, {'type': 'Feature', 'properties': {'id': 'c68019da-61d7-4ca1-850c-b0197c556338', 'info': None, 'row': 10556, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.52729915255883, 21.516530175339852, 0]}}, {'type': 'Feature', 'properties': {'id': '96a9dc23-8611-4bea-a226-826244bad0da', 'info': None, 'row': 10556, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.56602284566073, 21.52320740117201, 0]}}, {'type': 'Feature', 'properties': {'id': '3428ce12-07e2-4310-b032-36e4d661646c', 'info': None, 'row': 10556, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.60458777902713, 21.52984772636534, 0]}}, {'type': 'Feature', 'properties': {'id': '57a1ae53-a083-468c-af5b-482c6600b75b', 'info': None, 'row': 10556, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.64299738209766, 21.53645185692117, 0]}}, {'type': 'Feature', 'properties': {'id': '3f08e733-a5cb-4639-856e-f92252fb6ae1', 'info': None, 'row': 10556, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.68125497372236, 21.54302047604706, 0]}}, {'type': 'Feature', 'properties': {'id': '5a2fdc69-f74c-447e-99ce-08601acea718', 'info': None, 'row': 10556, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7193637669828, 21.54955424515033, 0]}}, {'type': 'Feature', 'properties': {'id': 'cd4e68aa-10fe-4c9f-88e8-d35997dac347', 'info': None, 'row': 10556, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.75732687374774, 21.55605380477702, 0]}}, {'type': 'Feature', 'properties': {'id': '9e36a445-5491-49f6-943f-f4b0b4fbe077', 'info': None, 'row': 10556, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.79514730898205, 21.562519775499837, 0]}}, {'type': 'Feature', 'properties': {'id': '2f4bfad7-38ba-499a-8717-a3b5436910be', 'info': None, 'row': 10556, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.83282799482373, 21.568952758758495, 0]}}, {'type': 'Feature', 'properties': {'id': '3aaa66b3-ac0d-465c-8170-3baa7fd5a002', 'info': None, 'row': 10556, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.87037176444522, 21.575353337655418, 0]}}, {'type': 'Feature', 'properties': {'id': '7780c87f-2a4f-4448-a4f9-bc191cb74072', 'info': None, 'row': 10556, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.90778136571215, 21.581722077709827, 0]}}, {'type': 'Feature', 'properties': {'id': '4b1b535c-102f-41b3-ba78-31984334c6c6', 'info': None, 'row': 10556, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.94505946465213, 21.588059527572657, 0]}}, {'type': 'Feature', 'properties': {'id': '2d15bfb2-2bae-493c-a664-32d1cbef3caf', 'info': None, 'row': 10556, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.98220864874601, 21.59436621970481, 0]}}, {'type': 'Feature', 'properties': {'id': '6e01b91e-0fee-41cd-8ad3-0073d1f13d77', 'info': None, 'row': 10556, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.01923143005219, 21.600642671021134, 0]}}, {'type': 'Feature', 'properties': {'id': 'd4a6b37a-1208-4a39-95dd-39f8dd3a0843', 'info': None, 'row': 10556, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.05613024817421, 21.60688938350203, 0]}}, {'type': 'Feature', 'properties': {'id': '581f6f7b-188b-4e0f-b758-8c9ebe928c02', 'info': None, 'row': 10556, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.09290747308131, 21.61310684477467, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc94ffeb-3e61-4c94-9b91-7b549612efdf', 'info': None, 'row': 11310, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.38730466283423, 21.406225482919048, 0]}}, {'type': 'Feature', 'properties': {'id': '972a6616-d6d7-4aef-8d41-296983dcaedd', 'info': None, 'row': 11310, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.42667666136606, 21.413061183930143, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6d341c3-3d35-4225-8b12-c7606e955426', 'info': None, 'row': 11310, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.46587506651174, 21.41985693619145, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca953882-b81d-4026-a566-cfd735407587', 'info': None, 'row': 11310, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.50490380190655, 21.42661354781992, 0]}}, {'type': 'Feature', 'properties': {'id': '7cea7e9a-3bc4-4693-9b64-1d0f76510cee', 'info': None, 'row': 11310, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.54376665834249, 21.43333179954377, 0]}}, {'type': 'Feature', 'properties': {'id': '96735a58-282f-4128-bf9e-68c1eea8c40e', 'info': None, 'row': 11310, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5824672998519, 21.440012445956697, 0]}}, {'type': 'Feature', 'properties': {'id': 'a346a17f-563f-4bb7-b86b-5b9dd230e75f', 'info': None, 'row': 11310, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.62100926943981, 21.44665621669959, 0]}}, {'type': 'Feature', 'properties': {'id': '6f3bb129-472a-4094-bfca-c1cd7ad9ca9c', 'info': None, 'row': 11310, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.65939599448987, 21.453263817574964, 0]}}, {'type': 'Feature', 'properties': {'id': '0b154ff2-ec70-4b18-a6f0-0d6b2122eed5', 'info': None, 'row': 11310, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.6976307918654, 21.459835931598597, 0]}}, {'type': 'Feature', 'properties': {'id': 'f95b72ed-7a21-4ef1-84e3-9210da6a2b72', 'info': None, 'row': 11310, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.73571687272744, 21.466373219992747, 0]}}, {'type': 'Feature', 'properties': {'id': '22acdf7f-3e54-4c4a-aac1-2a82f6f98864', 'info': None, 'row': 11310, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.7736573470875, 21.47287632312476, 0]}}, {'type': 'Feature', 'properties': {'id': '4805b290-d020-4d24-bc44-f2d7dfedd54b', 'info': None, 'row': 11310, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.81145522811349, 21.479345861394783, 0]}}, {'type': 'Feature', 'properties': {'id': '56a9472f-6207-4411-8981-3669638fead3', 'info': None, 'row': 11310, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.84911343620439, 21.485782436075745, 0]}}, {'type': 'Feature', 'properties': {'id': '5927fb29-8524-42b1-a89e-510f2c738798', 'info': None, 'row': 11310, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.88663480284893, 21.49218663010886, 0]}}, {'type': 'Feature', 'properties': {'id': '2896baee-f52e-438f-97fc-243cda3c5666', 'info': None, 'row': 11310, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.92402207428182, 21.49855900885747, 0]}}, {'type': 'Feature', 'properties': {'id': '9bb57826-52c5-4ece-87b2-125d42f6ce9d', 'info': None, 'row': 11310, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.96127791495059, 21.504900120821674, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4fb0ab0-8345-4d48-9549-fc2fce572225', 'info': None, 'row': 11310, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.99840491080448, 21.511210498316437, 0]}}, {'type': 'Feature', 'properties': {'id': 'd05b3fa9-4b1b-4682-bcf1-e2635026b207', 'info': None, 'row': 11310, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.03540557241703, 21.517490658115303, 0]}}, {'type': 'Feature', 'properties': {'id': '8a5a7b5f-ffa8-4bdf-9893-cb60c72b7a15', 'info': None, 'row': 11310, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.0722823379515, 21.52374110206182, 0]}}, {'type': 'Feature', 'properties': {'id': 'ab84b497-3276-4978-91b4-239dcb54e4e9', 'info': None, 'row': 11310, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.10903757597976, 21.529962317650607, 0]}}, {'type': 'Feature', 'properties': {'id': '4fc60c34-c1cf-4900-86cd-87a4a176adf3', 'info': None, 'row': 12064, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.40386539187946, 21.32301299577244, 0]}}, {'type': 'Feature', 'properties': {'id': '598e586b-0144-4646-85bf-9803526ca96f', 'info': None, 'row': 12064, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.4432139677071, 21.32985201546722, 0]}}, {'type': 'Feature', 'properties': {'id': '78ce85c2-b4b6-4d4e-acd3-e308271f6789', 'info': None, 'row': 12064, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.48238904693854, 21.33665111225236, 0]}}, {'type': 'Feature', 'properties': {'id': 'a23bf9e6-21cc-49ca-9d8e-9b3d2e1ebec9', 'info': None, 'row': 12064, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.52139455084061, 21.34341109401416, 0]}}, {'type': 'Feature', 'properties': {'id': '3323a385-47b7-4afa-8f18-f3e7ac3389bd', 'info': None, 'row': 12064, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.5602342679207, 21.350132741258776, 0]}}, {'type': 'Feature', 'properties': {'id': '5dea3869-1f95-4eff-a533-a9fab273ecc4', 'info': None, 'row': 12064, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.59891186000651, 21.356816808365974, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6b2f3a5-6dd5-4699-9a65-bc2539980d01', 'info': None, 'row': 12064, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.63743086797462, 21.363464024770494, 0]}}, {'type': 'Feature', 'properties': {'id': '08bd3659-b2be-4c34-a811-93e92e29b5df', 'info': None, 'row': 12064, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.67579471715285, 21.37007509607607, 0]}}, {'type': 'Feature', 'properties': {'id': '9ed7a93d-eb3b-4ee6-8be5-47ec7bd35552', 'info': None, 'row': 12064, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.71400672241812, 21.376650705106737, 0]}}, {'type': 'Feature', 'properties': {'id': '2802fce2-0c7a-43f1-96b6-d208d930f96b', 'info': None, 'row': 12064, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.75207009301111, 21.383191512899696, 0]}}, {'type': 'Feature', 'properties': {'id': '60f943d9-8934-4597-b591-cfb831bbf27b', 'info': None, 'row': 12064, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.7899879370863, 21.389698159643654, 0]}}, {'type': 'Feature', 'properties': {'id': '8f71db13-ec5d-4ef4-9d9d-34162208dcf2', 'info': None, 'row': 12064, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.82776326601493, 21.396171265566185, 0]}}, {'type': 'Feature', 'properties': {'id': '1939ee2f-1446-4157-a487-941b865b02b4', 'info': None, 'row': 12064, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.8653989984571, 21.402611431773483, 0]}}, {'type': 'Feature', 'properties': {'id': 'f51a6df8-10ea-407a-afba-cc35c7987b74', 'info': None, 'row': 12064, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.90289796421794, 21.409019241045574, 0]}}, {'type': 'Feature', 'properties': {'id': 'c04e5e8d-7fe5-4359-b295-3328ed249c41', 'info': None, 'row': 12064, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.94026290790153, 21.415395258589918, 0]}}, {'type': 'Feature', 'properties': {'id': '1807b1c9-9c0a-4057-9059-e8d221b63046', 'info': None, 'row': 12064, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.97749649237542, 21.42174003275582, 0]}}, {'type': 'Feature', 'properties': {'id': 'bea5fdf4-0669-4a15-b4d8-25f09b454bde', 'info': None, 'row': 12064, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.01460130205759, 21.428054095712337, 0]}}, {'type': 'Feature', 'properties': {'id': '5ffb2061-7249-40f2-8024-d09b5b47c35a', 'info': None, 'row': 12064, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.0515798460367, 21.4343379640917, 0]}}, {'type': 'Feature', 'properties': {'id': '55ec37dc-aa40-4039-b31c-621a7bdb7447', 'info': None, 'row': 12064, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.08843456103594, 21.44059213960064, 0]}}, {'type': 'Feature', 'properties': {'id': '3fb3ea67-258d-4cb1-8598-cc71bccda890', 'info': None, 'row': 12064, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.12516781422997, 21.44681710960124, 0]}}, {'type': 'Feature', 'properties': {'id': '3e59ee75-3160-4990-9a03-9b56d98a0cad', 'info': None, 'row': 12818, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.42043498076094, 21.2397368228114, 0]}}, {'type': 'Feature', 'properties': {'id': 'c6492ecb-8314-4a74-9513-66f5c377829e', 'info': None, 'row': 12818, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.45976034018736, 21.24657917233489, 0]}}, {'type': 'Feature', 'properties': {'id': '7f3affd5-46ba-455b-b5e7-c73cbe9348f4', 'info': None, 'row': 12818, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.49891229875637, 21.253381624644106, 0]}}, {'type': 'Feature', 'properties': {'id': '77f24c04-7e3f-4045-b4a9-aa66cb457958', 'info': None, 'row': 12818, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.53789477539198, 21.26014498739772, 0]}}, {'type': 'Feature', 'properties': {'id': '7100ca99-99a6-4fa8-bbd8-4ee69142b8e6', 'info': None, 'row': 12818, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.57671155634172, 21.2668700408827, 0]}}, {'type': 'Feature', 'properties': {'id': '17529140-ec82-47cd-9b7a-f7e9ed82607a', 'info': None, 'row': 12818, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.61536630125264, 21.273557539267717, 0]}}, {'type': 'Feature', 'properties': {'id': 'd30cbce2-b242-4dec-8f0a-57f1cd533e5a', 'info': None, 'row': 12818, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.65386254889583, 21.28020821178403, 0]}}, {'type': 'Feature', 'properties': {'id': '3e745311-4070-43bd-ad00-ecf5b93c810e', 'info': None, 'row': 12818, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.69220372256555, 21.28682276383918, 0]}}, {'type': 'Feature', 'properties': {'id': '31dba5be-aeb2-4908-9756-f275cb7ae181', 'info': None, 'row': 12818, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.73039313517361, 21.29340187806794, 0]}}, {'type': 'Feature', 'properties': {'id': 'c8585646-b747-4a46-bb1e-a92588187de9', 'info': None, 'row': 12818, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7684339940611, 21.299946215324887, 0]}}, {'type': 'Feature', 'properties': {'id': '08564d48-7102-4fa3-8af3-bf32fa5113b4', 'info': None, 'row': 12818, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.80632940554534, 21.30645641562237, 0]}}, {'type': 'Feature', 'properties': {'id': 'daebad36-9bfc-4c61-aa93-e447102a7335', 'info': None, 'row': 12818, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.84408237922023, 21.31293309901762, 0]}}, {'type': 'Feature', 'properties': {'id': '4c701c53-4866-4eda-97d2-5a5f2f64ed6e', 'info': None, 'row': 12818, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.88169583202557, 21.319376866452252, 0]}}, {'type': 'Feature', 'properties': {'id': '5411625c-88e3-45c6-9bdb-1b8480277826', 'info': None, 'row': 12818, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.91917259210095, 21.325788300547188, 0]}}, {'type': 'Feature', 'properties': {'id': '7b8ad3c5-9df7-4cdf-890d-f9de287b571e', 'info': None, 'row': 12818, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.95651540243722, 21.332167966355996, 0]}}, {'type': 'Feature', 'properties': {'id': '49b92d57-5f12-42a8-a51a-8a65d4d79be3', 'info': None, 'row': 12818, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.9937269243388, 21.338516412079144, 0]}}, {'type': 'Feature', 'properties': {'id': 'c1dc30c2-77f1-4e3c-bfab-787d54aaceb5', 'info': None, 'row': 12818, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.03080974070859, 21.344834169741596, 0]}}, {'type': 'Feature', 'properties': {'id': 'ad3cec34-8054-413d-9f9f-a6b1440f47fe', 'info': None, 'row': 12818, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.06776635916631, 21.35112175583614, 0]}}, {'type': 'Feature', 'properties': {'id': 'c0ac1d5f-bb75-4d18-b2cd-bddaef1c07a1', 'info': None, 'row': 12818, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.10459921501034, 21.35737967193441, 0]}}, {'type': 'Feature', 'properties': {'id': '751f9a3d-f6ba-4e8e-b439-ba9d16d86503', 'info': None, 'row': 12818, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.14131067403294, 21.36360840526763, 0]}}, {'type': 'Feature', 'properties': {'id': '9b65737d-99f1-4bc4-acc0-3854d97d2498', 'info': None, 'row': 13572, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.43700467775935, 21.15645988638826, 0]}}, {'type': 'Feature', 'properties': {'id': 'abeb28c5-e21f-4d99-9eb5-5ab83bc0262c', 'info': None, 'row': 13572, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.47630682326003, 21.163305565912456, 0]}}, {'type': 'Feature', 'properties': {'id': '2bf1b48f-ea58-42c9-839b-302e644a2cd5', 'info': None, 'row': 13572, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.51543566362946, 21.17011137391587, 0]}}, {'type': 'Feature', 'properties': {'id': '73766aee-da47-443c-add0-6e436a710c16', 'info': None, 'row': 13572, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.55439511544914, 21.176878117829567, 0]}}, {'type': 'Feature', 'properties': {'id': '0c7d9b4a-b56b-49bf-b383-e950df51001f', 'info': None, 'row': 13572, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.59318896270707, 21.183606577721402, 0]}}, {'type': 'Feature', 'properties': {'id': '648c3b85-eea7-4756-abac-90510f42d117', 'info': None, 'row': 13572, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.63182086286989, 21.190297507548962, 0]}}, {'type': 'Feature', 'properties': {'id': '8081af61-6c03-49d4-8b2a-efd18c31b0fe', 'info': None, 'row': 13572, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.67029435260355, 21.19695163634007, 0]}}, {'type': 'Feature', 'properties': {'id': '32a665bb-65af-4d42-a1da-26a42ac391ec', 'info': None, 'row': 13572, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.70861285316889, 21.203569669306102, 0]}}, {'type': 'Feature', 'properties': {'id': '50d916c8-df09-47ce-8271-4c0833a4a33c', 'info': None, 'row': 13572, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.74677967551303, 21.21015228889262, 0]}}, {'type': 'Feature', 'properties': {'id': 'a1c46a66-2bb9-422a-8e70-7517ce100376', 'info': None, 'row': 13572, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.78479802507756, 21.216700155771576, 0]}}, {'type': 'Feature', 'properties': {'id': '263a0ba4-72ff-49bf-bc9a-5efba8f7e491', 'info': None, 'row': 13572, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.82267100634301, 21.223213909779023, 0]}}, {'type': 'Feature', 'properties': {'id': 'fc30c718-64b4-4f74-a1d6-a3b60ac07012', 'info': None, 'row': 13572, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.86040162712605, 21.229694170801857, 0]}}, {'type': 'Feature', 'properties': {'id': '6cbbd41c-7a0a-4a04-b329-9b4df1d5beeb', 'info': None, 'row': 13572, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.8979928026465, 21.23614153961715, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc45da0b-62e0-4ab2-aaa2-bda8a0639fdc', 'info': None, 'row': 13572, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.9354473593786, 21.242556598686747, 0]}}, {'type': 'Feature', 'properties': {'id': '6d69f2d4-ba3e-431b-901f-92863754e131', 'info': None, 'row': 13572, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.97276803870015, 21.248939912910355, 0]}}, {'type': 'Feature', 'properties': {'id': '019784f4-837e-4777-9c97-6835eb29f4ed', 'info': None, 'row': 13572, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-70.00995750035267, 21.255292030339632, 0]}}, {'type': 'Feature', 'properties': {'id': '778bf225-92c9-49b9-89a0-e5546474173e', 'info': None, 'row': 13572, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.0470183257242, 21.26161348285546, 0]}}, {'type': 'Feature', 'properties': {'id': '56a34edb-96cb-434f-bcc9-d0f0298cdf8a', 'info': None, 'row': 13572, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.08395302096565, 21.267904786811226, 0]}}, {'type': 'Feature', 'properties': {'id': '73962f6c-9ec1-45bc-b0fb-47cf001a6150', 'info': None, 'row': 13572, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.12076401995081, 21.274166443643473, 0]}}, {'type': 'Feature', 'properties': {'id': '31df8019-8acf-4c73-9e80-b37d27eb8522', 'info': None, 'row': 13572, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.15745368708973, 21.28039894045261, 0]}}, {'type': 'Feature', 'properties': {'id': '79d3f5c0-37c8-4758-8f36-e1d29103aacc', 'info': None, 'row': 14326, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.45358332443669, 21.073119752269143, 0]}}, {'type': 'Feature', 'properties': {'id': '718c7c19-4c1e-49ad-b4fa-7c1814ea9914', 'info': None, 'row': 14326, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.49286246092618, 21.07996877603113, 0]}}, {'type': 'Feature', 'properties': {'id': '65effddc-26ac-4553-bf08-c5ef13c7da96', 'info': None, 'row': 14326, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.53196838696581, 21.086777953810635, 0]}}, {'type': 'Feature', 'properties': {'id': 'e97cfb9a-3106-4821-b1dc-b51e1d2af0e6', 'info': None, 'row': 14326, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.57090501682015, 21.093548092814416, 0]}}, {'type': 'Feature', 'properties': {'id': '2085bcf8-cf75-4e90-8429-2f5fd4f10ae0', 'info': None, 'row': 14326, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.60967613224247, 21.100279972894395, 0]}}, {'type': 'Feature', 'properties': {'id': '66ff1acb-d18d-45fd-ba46-9feff73d3e99', 'info': None, 'row': 14326, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.6482853885426, 21.106974347800104, 0]}}, {'type': 'Feature', 'properties': {'id': '39add393-7749-4dc5-8d28-1db3df6520de', 'info': None, 'row': 14326, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.6867363203043, 21.11363194635887, 0]}}, {'type': 'Feature', 'properties': {'id': '0a9dfcc7-7e02-4ceb-89cc-7af979cd5758', 'info': None, 'row': 14326, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.72503234677717, 21.12025347358874, 0]}}, {'type': 'Feature', 'properties': {'id': 'dd376bc9-2894-46e4-a963-2f078e09ece6', 'info': None, 'row': 14326, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.76317677696474, 21.126839611748785, 0]}}, {'type': 'Feature', 'properties': {'id': 'aa6ecc85-fc22-4acf-9dea-f85e540cb65d', 'info': None, 'row': 14326, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.80117281442983, 21.13339102133095, 0]}}, {'type': 'Feature', 'properties': {'id': '30094288-45da-4314-8e01-dd8c5c4982b9', 'info': None, 'row': 14326, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.83902356183592, 21.13990834199751, 0]}}, {'type': 'Feature', 'properties': {'id': 'b53e908b-a3ee-419d-af17-d047969953e4', 'info': None, 'row': 14326, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.8767320252417, 21.146392193467506, 0]}}, {'type': 'Feature', 'properties': {'id': '9de9d3a8-5b21-44e9-946f-f173916b76a1', 'info': None, 'row': 14326, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.91430111816547, 21.15284317635578, 0]}}, {'type': 'Feature', 'properties': {'id': 'f3c020a4-9e0b-4106-852d-220c8e574689', 'info': None, 'row': 14326, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.951733665434, 21.15926187296737, 0]}}, {'type': 'Feature', 'properties': {'id': '9469a880-a0aa-4f03-8d36-647179a0308e', 'info': None, 'row': 14326, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.98903240682941, 21.165648848050353, 0]}}, {'type': 'Feature', 'properties': {'id': 'e111d008-71ff-467d-8dad-70d8b30e3216', 'info': None, 'row': 14326, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-70.02620000054705, 21.17200464950964, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba75f7b2-14ba-439e-8799-032fc5a27a5c', 'info': None, 'row': 14326, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.06323902647637, 21.178329809084154, 0]}}, {'type': 'Feature', 'properties': {'id': '0e71a27e-f1f0-41ab-ab95-1d59389c1008', 'info': None, 'row': 14326, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.1001519893151, 21.1846248429898, 0]}}, {'type': 'Feature', 'properties': {'id': '9d2757a8-f7db-41bb-948d-48e3912c9291', 'info': None, 'row': 14326, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.13694132152764, 21.190890252529975, 0]}}, {'type': 'Feature', 'properties': {'id': '797b6191-3f18-428e-a6de-4ab438678fbe', 'info': None, 'row': 14326, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.17360938615658, 21.197126524676104, 0]}}]}
array(0)
- history :
[15]:
hv.Curve(rgs).opts(width=400,show_grid=True)
[15]:
get complex digital number
[16]:
s1ds.datatree['measurement']['digital_number']
[16]:
<xarray.DataArray 'digital_number' (pol: 2, line: 15070, sample: 23768)> dask.array<concatenate, shape=(2, 15070, 23768), dtype=complex64, chunksize=(1, 5000, 5000), chunktype=numpy.ndarray> Coordinates: * pol (pol) object 'VV' 'VH' * line (line) int64 0 1 2 3 4 5 ... 15065 15066 15067 15068 15069 * sample (sample) int64 0 1 2 3 4 5 ... 23763 23764 23765 23766 23767 spatial_ref int64 0 Attributes: comment: denoised digital number, read at full resolution history: digital_number: measurement/s1a-iw3-slc-v*-20170907t102953-2017...
- pol: 2
- line: 15070
- sample: 23768
- dask.array<chunksize=(1, 5000, 5000), meta=np.ndarray>
Array Chunk Bytes 5.34 GiB 190.73 MiB Shape (2, 15070, 23768) (1, 5000, 5000) Count 82 Tasks 40 Chunks Type complex64 numpy.ndarray - pol(pol)object'VV' 'VH'
- comment :
- ordered polarizations (copol, crosspol)
array(['VV', 'VH'], dtype=object)
- line(line)int640 1 2 3 ... 15066 15067 15068 15069
- axis :
- Y
- units :
- 1
- comment :
- azimuth direction, in pixels from full resolution tiff
array([ 0, 1, 2, ..., 15067, 15068, 15069])
- sample(sample)int640 1 2 3 ... 23764 23765 23766 23767
- axis :
- X
- units :
- 1
- comment :
- cross track direction, in pixels from full resolution tiff
array([ 0, 1, 2, ..., 23765, 23766, 23767])
- 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': '687a6936-29b7-4a27-8542-08ea0d575d20', 'info': None, 'row': 0, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.13847173718773, 22.65528072350044, 0]}}, {'type': 'Feature', 'properties': {'id': '8a3e2a7a-fcb9-49bc-ab2a-537b494533a3', 'info': None, 'row': 0, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.17820820742932, 22.66206726191746, 0]}}, {'type': 'Feature', 'properties': {'id': '82055312-bb2e-47d9-8117-a68a7bdb7afe', 'info': None, 'row': 0, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.21776956703296, 22.66881345359603, 0]}}, {'type': 'Feature', 'properties': {'id': '85f563ea-abfb-4235-a1de-f60720d2f0aa', 'info': None, 'row': 0, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.25715977676485, 22.67552011031412, 0]}}, {'type': 'Feature', 'properties': {'id': '17360bea-6be9-4d3d-9f67-0977c16911f2', 'info': None, 'row': 0, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.29638266322931, 22.68218801632446, 0]}}, {'type': 'Feature', 'properties': {'id': 'b389188a-9deb-42cd-9cfc-392aad276953', 'info': None, 'row': 0, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.33544192501508, 22.68881792961555, 0]}}, {'type': 'Feature', 'properties': {'id': 'a7f205d4-c6be-4aab-ab7a-b7a7ce6143b1', 'info': None, 'row': 0, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.37434113848721, 22.69541058309964, 0]}}, {'type': 'Feature', 'properties': {'id': '1a367c3c-ae6c-4e65-95b9-6fb06519f02b', 'info': None, 'row': 0, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.4130837632483, 22.7019666857333, 0]}}, {'type': 'Feature', 'properties': {'id': '43103e5c-0d51-4ce9-8f98-36d26706e216', 'info': None, 'row': 0, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.45167314729233, 22.70848692357449, 0]}}, {'type': 'Feature', 'properties': {'id': '733f8366-4db8-432a-a473-6efc5536b2a3', 'info': None, 'row': 0, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.49011253187193, 22.7149719607812, 0]}}, {'type': 'Feature', 'properties': {'id': '2bb604b1-079b-4684-ba59-1c294cb1bc59', 'info': None, 'row': 0, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.52840505609768, 22.72142244055495, 0]}}, {'type': 'Feature', 'properties': {'id': '6ed56072-8124-4583-9c2d-3436a3f4ecde', 'info': None, 'row': 0, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.56655376128812, 22.72783898603313, 0]}}, {'type': 'Feature', 'properties': {'id': 'e9e1efe6-b934-4b5a-9264-2bbfec3e9cfe', 'info': None, 'row': 0, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.60456159508581, 22.73422220113351, 0]}}, {'type': 'Feature', 'properties': {'id': 'd47c6220-4c91-467a-81a0-1c80868e9ba6', 'info': None, 'row': 0, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.6424314153552, 22.74057267135375, 0]}}, {'type': 'Feature', 'properties': {'id': '01654706-e83e-41fd-9691-8355cca35871', 'info': None, 'row': 0, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.68016599387602, 22.74689096452925, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5f20d03-0954-41d6-bb8d-8ff7026cdb69', 'info': None, 'row': 0, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.71776801984517, 22.75317763155148, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca672e35-3791-4df3-9931-0bdf19e99eee', 'info': None, 'row': 0, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.75524010319884, 22.75943320704956, 0]}}, {'type': 'Feature', 'properties': {'id': '84351c21-15f9-47af-9469-248f006a2bac', 'info': None, 'row': 0, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.79258477776644, 22.76565821003726, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb7740f7-0a9c-4823-8bc1-2fa196eac886', 'info': None, 'row': 0, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.82980450426614, 22.77185314452762, 0]}}, {'type': 'Feature', 'properties': {'id': '532cbe7c-1209-4819-953a-98b9198b0f28', 'info': None, 'row': 0, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.8669016731517, 22.77801850011687, 0]}}, {'type': 'Feature', 'properties': {'id': '32e33ab2-6af1-4826-b61c-a847d83e88cd', 'info': None, 'row': 754, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.15506189493175, 22.572083635896206, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5f8a592-259a-40e8-9147-a32a87b3fb19', 'info': None, 'row': 754, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.19477332948718, 22.578873413043745, 0]}}, {'type': 'Feature', 'properties': {'id': '5324b74d-ffb6-43e9-b318-9da34b6cfeb1', 'info': None, 'row': 754, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.23430975824905, 22.58562287054896, 0]}}, {'type': 'Feature', 'properties': {'id': 'a513f862-416c-4fc2-89c9-b4f20c294b81', 'info': None, 'row': 754, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.27367513941775, 22.59233281993449, 0]}}, {'type': 'Feature', 'properties': {'id': 'adb1f261-0ec5-4489-984b-18b7dd7a5675', 'info': None, 'row': 754, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.31287329712285, 22.59900404520733, 0]}}, {'type': 'Feature', 'properties': {'id': 'b2bd3aff-413e-4c84-870f-ba1a208ca232', 'info': None, 'row': 754, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.35190792756549, 22.605637304119245, 0]}}, {'type': 'Feature', 'properties': {'id': '3ecc0c07-821a-49cb-a0e2-0a3a8f380680', 'info': None, 'row': 754, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.39078260480571, 22.61223332935443, 0]}}, {'type': 'Feature', 'properties': {'id': 'f8452384-68f6-415d-8e30-cd0bbd74e3a8', 'info': None, 'row': 754, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.42950078622016, 22.618792829649546, 0]}}, {'type': 'Feature', 'properties': {'id': 'e1a7e765-2097-4a0e-905e-35ab7455e122', 'info': None, 'row': 754, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.46806581765222, 22.625316490850484, 0]}}, {'type': 'Feature', 'properties': {'id': 'f1566519-b94a-4d74-b09c-2c9edb351398', 'info': None, 'row': 754, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.5064809382757, 22.63180497691058, 0]}}, {'type': 'Feature', 'properties': {'id': 'dba49a00-03cd-4fe4-8226-d754273c3b75', 'info': None, 'row': 754, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.5447492851911, 22.638258930833807, 0]}}, {'type': 'Feature', 'properties': {'id': '54d9299f-323f-40e3-a541-1a87deafbf74', 'info': None, 'row': 754, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.58287389777246, 22.644678975566766, 0]}}, {'type': 'Feature', 'properties': {'id': '5a25b26b-b709-4d97-9468-2a529bab3424', 'info': None, 'row': 754, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.62085772178062, 22.651065714842872, 0]}}, {'type': 'Feature', 'properties': {'id': '20b0dfb1-ea87-4532-a2a8-0dd06758eda6', 'info': None, 'row': 754, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.65870361325833, 22.657419733981648, 0]}}, {'type': 'Feature', 'properties': {'id': '4bc6fbd6-d043-4b49-a02a-9afc4a459cdb', 'info': None, 'row': 754, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.69641434222102, 22.663741600646198, 0]}}, {'type': 'Feature', 'properties': {'id': '07acb726-2e90-4ec7-b253-aeab3ed2690e', 'info': None, 'row': 754, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.7339925961564, 22.67003186556135, 0]}}, {'type': 'Feature', 'properties': {'id': '2e262537-9f7f-4fbb-95a2-542bcf1f2ecc', 'info': None, 'row': 754, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.77144098334415, 22.676291063194967, 0]}}, {'type': 'Feature', 'properties': {'id': '19df36ab-c281-4f78-a496-22eb9daa7eff', 'info': None, 'row': 754, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.80876203600776, 22.68251971240472, 0]}}, {'type': 'Feature', 'properties': {'id': '030da0bb-4936-4fe5-8a44-4109033e49e3', 'info': None, 'row': 754, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.84595821330795, 22.688718317052484, 0]}}, {'type': 'Feature', 'properties': {'id': 'cf4a0ee5-87ad-43e1-84bd-86a4be352cc0', 'info': None, 'row': 754, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.88303190418753, 22.69488736658807, 0]}}, {'type': 'Feature', 'properties': {'id': '34764a7c-d8c8-4d23-a9cf-32a75be5bb72', 'info': None, 'row': 1508, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.17165204642964, 22.488886544870606, 0]}}, {'type': 'Feature', 'properties': {'id': '251a58be-7507-4f2a-9e4b-3daa227c0f77', 'info': None, 'row': 1508, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.21133844560917, 22.495679560759754, 0]}}, {'type': 'Feature', 'properties': {'id': 'ff216528-fdd7-4392-b8b5-0652775ce7f0', 'info': None, 'row': 1508, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.25084994383806, 22.502432284102465, 0]}}, {'type': 'Feature', 'properties': {'id': '79114eb9-75e1-409b-bced-af962d04288c', 'info': None, 'row': 1508, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.29019049675075, 22.509145526166066, 0]}}, {'type': 'Feature', 'properties': {'id': '13a30213-dde9-42ce-8812-9fd438d0c9ef', 'info': None, 'row': 1508, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.32936392600232, 22.515820070711836, 0]}}, {'type': 'Feature', 'properties': {'id': '38f43711-4afa-48cf-ae60-fa035050574d', 'info': None, 'row': 1508, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.36837392540615, 22.522456675254787, 0]}}, {'type': 'Feature', 'properties': {'id': '37a6de89-dc11-4a85-93d7-41d742464326', 'info': None, 'row': 1508, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.40722406671738, 22.52905607225107, 0]}}, {'type': 'Feature', 'properties': {'id': '97938a27-010f-4f30-a784-b0cc79e860c3', 'info': None, 'row': 1508, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.4459178050868, 22.535618970217442, 0]}}, {'type': 'Feature', 'properties': {'id': 'd48054fc-8094-4b22-a1bf-8f6d8798d1f0', 'info': None, 'row': 1508, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.4844584842071, 22.54214605478772, 0]}}, {'type': 'Feature', 'properties': {'id': '654ef475-fa30-42ba-9330-59ed2752390c', 'info': None, 'row': 1508, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.52284934117336, 22.548637989710613, 0]}}, {'type': 'Feature', 'properties': {'id': 'f2b07b02-922b-4c0a-bd9a-e5489d4bd7f9', 'info': None, 'row': 1508, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.56109351107607, 22.555095417792526, 0]}}, {'type': 'Feature', 'properties': {'id': '307fddf6-3a86-4d89-b354-6ec59193bdc6', 'info': None, 'row': 1508, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.59919403134475, 22.561518961789282, 0]}}, {'type': 'Feature', 'properties': {'id': '1dd5b677-1105-4c26-a92e-3be696132610', 'info': None, 'row': 1508, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.63715384585853, 22.56790922524994, 0]}}, {'type': 'Feature', 'properties': {'id': 'b289c30f-3ace-4eb4-bed4-f9a3edef5cef', 'info': None, 'row': 1508, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.6749758088385, 22.5742667933159, 0]}}, {'type': 'Feature', 'properties': {'id': '2f78ef3c-f88f-4ed3-8a9d-23aba8d1299c', 'info': None, 'row': 1508, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.71266268853587, 22.580592233477972, 0]}}, {'type': 'Feature', 'properties': {'id': '13eed68a-d622-4aa4-9b31-0518d001a21a', 'info': None, 'row': 1508, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.75021717072912, 22.586886096294332, 0]}}, {'type': 'Feature', 'properties': {'id': '8e226100-7c08-4f14-b1f4-b4a6e845e51b', 'info': None, 'row': 1508, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.7876418620415, 22.5931489160716, 0]}}, {'type': 'Feature', 'properties': {'id': 'd0aa9275-c960-471e-b369-df8dcb20a864', 'info': None, 'row': 1508, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.82493929309057, 22.599381211511343, 0]}}, {'type': 'Feature', 'properties': {'id': '814e1fc8-63e1-4f45-ae55-1e11968a904d', 'info': None, 'row': 1508, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.8621119214796, 22.60558348632427, 0]}}, {'type': 'Feature', 'properties': {'id': '562730b6-91d3-40cc-8b5e-5b53e18bf5a0', 'info': None, 'row': 1508, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.89916213464049, 22.611756229813807, 0]}}, {'type': 'Feature', 'properties': {'id': '26436e26-3d96-49fd-b7c4-3a59c61af052', 'info': None, 'row': 2262, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.18823749457997, 22.405686877561287, 0]}}, {'type': 'Feature', 'properties': {'id': '908e4261-ea70-40ba-9351-c72d7606dee7', 'info': None, 'row': 2262, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.22789909203806, 22.412483140535116, 0]}}, {'type': 'Feature', 'properties': {'id': 'f8d05f51-9adc-4147-8c7f-83e4b5906bea', 'info': None, 'row': 2262, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.26738589222438, 22.41923913789002, 0]}}, {'type': 'Feature', 'properties': {'id': 'eff91266-0a04-4aa3-841d-df294493234f', 'info': None, 'row': 2262, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.30670184823606, 22.425955680641316, 0]}}, {'type': 'Feature', 'properties': {'id': 'a2e8b32d-eef5-4a74-8435-9f539726893d', 'info': None, 'row': 2262, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.34585077928091, 22.432633552307585, 0]}}, {'type': 'Feature', 'properties': {'id': '3fcfd1c4-34b2-409f-b506-b7c434d75275', 'info': None, 'row': 2262, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.38483637681114, 22.43927351017016, 0]}}, {'type': 'Feature', 'properties': {'id': 'c3df17e8-6926-4a2a-a626-0d507ec65940', 'info': None, 'row': 2262, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.42366221030252, 22.44587628646, 0]}}, {'type': 'Feature', 'properties': {'id': '471b4533-43b9-4e61-832f-0a7259b1105c', 'info': None, 'row': 2262, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.46233173270436, 22.45244258947671, 0]}}, {'type': 'Feature', 'properties': {'id': '566933e1-392f-4252-b8ee-64a014660196', 'info': None, 'row': 2262, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5008482855825, 22.458973104644734, 0]}}, {'type': 'Feature', 'properties': {'id': '5be5ed79-9965-4c81-8049-a3d8e80eb877', 'info': None, 'row': 2262, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.53921510397618, 22.4654684955107, 0]}}, {'type': 'Feature', 'properties': {'id': 'bf1a698d-0eac-4de3-9288-47924628327e', 'info': None, 'row': 2262, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.57743532098782, 22.47192940468593, 0]}}, {'type': 'Feature', 'properties': {'id': '4a5e1661-f673-45cc-9954-b8275c26d7d3', 'info': None, 'row': 2262, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.61551197212393, 22.478356454737856, 0]}}, {'type': 'Feature', 'properties': {'id': '507d2690-26d6-46e6-9901-d25391099e0e', 'info': None, 'row': 2262, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.65344799940249, 22.48475024903353, 0]}}, {'type': 'Feature', 'properties': {'id': '3c0bf072-cc81-47b7-9d62-67f535b9fbfc', 'info': None, 'row': 2262, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.69124625524287, 22.49111137253838, 0]}}, {'type': 'Feature', 'properties': {'id': 'fbbb504c-337f-4c24-9e72-12f3eb7c26b5', 'info': None, 'row': 2262, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.72890950615133, 22.497440392573104, 0]}}, {'type': 'Feature', 'properties': {'id': '1bbae033-babf-419a-a157-22d18adddb5e', 'info': None, 'row': 2262, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.76644043621583, 22.50373785953132, 0]}}, {'type': 'Feature', 'properties': {'id': '0c3dac9e-241d-48fc-9846-4c5bb4b72d2d', 'info': None, 'row': 2262, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.80384165042122, 22.51000430756038, 0]}}, {'type': 'Feature', 'properties': {'id': '61f83628-ed73-487a-b99f-cdd4d03dcd4f', 'info': None, 'row': 2262, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.84111567779664, 22.516240255207713, 0]}}, {'type': 'Feature', 'properties': {'id': '8401b2ca-e608-4c22-9fa1-fa000818d255', 'info': None, 'row': 2262, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.87826497440483, 22.52244620603474, 0]}}, {'type': 'Feature', 'properties': {'id': '040a5cb7-f1ba-4e0b-8d67-5f49a7c46b9b', 'info': None, 'row': 2262, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.91529192618327, 22.52862264920026, 0]}}, {'type': 'Feature', 'properties': {'id': 'ebd5c6ce-f2c3-4ddd-b57e-f42a68f15e1d', 'info': None, 'row': 3016, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.20482299582194, 22.322486876900143, 0]}}, {'type': 'Feature', 'properties': {'id': '48806d6c-7676-4226-af27-0f5471d52e6f', 'info': None, 'row': 3016, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.24445979207599, 22.32928638701361, 0]}}, {'type': 'Feature', 'properties': {'id': '28925d4b-5fa9-4e08-867c-0e3bb75793c4', 'info': None, 'row': 3016, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.28392189473455, 22.33604565843525, 0]}}, {'type': 'Feature', 'properties': {'id': '81908386-8fa3-45b6-9e61-012c9be0bd8f', 'info': None, 'row': 3016, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.32321325435737, 22.34276550192836, 0]}}, {'type': 'Feature', 'properties': {'id': 'df0ab7aa-0e27-432d-bad1-490b65817f3e', 'info': None, 'row': 3016, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.36233768770522, 22.349446700768844, 0]}}, {'type': 'Feature', 'properties': {'id': '36e39e31-7f5f-4d10-acc9-badb1876e6cb', 'info': None, 'row': 3016, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.40129888386907, 22.356090012004355, 0]}}, {'type': 'Feature', 'properties': {'id': 'db3c29f5-4bfe-4552-b391-848277cbe0b3', 'info': None, 'row': 3016, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.4401004100454, 22.362696167640674, 0]}}, {'type': 'Feature', 'properties': {'id': 'b0d445f7-9bc7-482c-bada-6a0c4552fe41', 'info': None, 'row': 3016, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.47874571698213, 22.369265875760274, 0]}}, {'type': 'Feature', 'properties': {'id': '565384ef-95c7-4c79-9b25-6d56d24ae503', 'info': None, 'row': 3016, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5172381441183, 22.37579982157822, 0]}}, {'type': 'Feature', 'properties': {'id': 'fe6792f6-0e26-49ce-b5a5-72bd031f3124', 'info': None, 'row': 3016, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.55558092443727, 22.382298668439052, 0]}}, {'type': 'Feature', 'properties': {'id': '30a61d70-3c50-4929-9860-d15b7b361df1', 'info': None, 'row': 3016, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.5937771890536, 22.38876305875905, 0]}}, {'type': 'Feature', 'properties': {'id': 'dbd5192f-2fe9-43b1-b5d8-2176f263d3f4', 'info': None, 'row': 3016, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.63182997155073, 22.39519361491725, 0]}}, {'type': 'Feature', 'properties': {'id': '363e84a5-cd9d-4682-8347-0ad2ea468135', 'info': None, 'row': 3016, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.66974221208554, 22.40159094009869, 0]}}, {'type': 'Feature', 'properties': {'id': '42d2ba46-5f1e-4dca-8043-676bd562f943', 'info': None, 'row': 3016, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.70751676127577, 22.40795561909285, 0]}}, {'type': 'Feature', 'properties': {'id': 'f564b765-8022-46db-8daa-33b16feeb9be', 'info': None, 'row': 3016, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.74515638388276, 22.41428821905031, 0]}}, {'type': 'Feature', 'properties': {'id': '354cc8cf-6312-4952-b2aa-807981b1f162', 'info': None, 'row': 3016, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.78266376230398, 22.420589290200144, 0]}}, {'type': 'Feature', 'properties': {'id': '558d4de7-3634-4d8e-a8f7-09245d6ea811', 'info': None, 'row': 3016, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.82004149988593, 22.426859366530437, 0]}}, {'type': 'Feature', 'properties': {'id': 'c7feb1ff-6e92-4f3a-bc85-34360dac4145', 'info': None, 'row': 3016, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.85729212406933, 22.433098966434486, 0]}}, {'type': 'Feature', 'properties': {'id': '8255c20c-4b94-4d0c-a6c1-def8f8d222f4', 'info': None, 'row': 3016, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.89441808937653, 22.439308593324423, 0]}}, {'type': 'Feature', 'properties': {'id': 'e2a5923e-1573-483f-8c38-461d17d68051', 'info': None, 'row': 3016, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.9314217802505, 22.44548873621445, 0]}}, {'type': 'Feature', 'properties': {'id': '94079aaa-f0dc-4db5-8808-761c88b10cf0', 'info': None, 'row': 3770, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.22142845951248, 22.239161535952956, 0]}}, {'type': 'Feature', 'properties': {'id': '01e91903-c8fc-4ed7-b65b-7efcc6d6be59', 'info': None, 'row': 3770, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.26104064911816, 22.245964313871454, 0]}}, {'type': 'Feature', 'properties': {'id': 'afcf4c1f-ed7f-45b3-90da-e721265ddc04', 'info': None, 'row': 3770, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.30047824780792, 22.252726879865293, 0]}}, {'type': 'Feature', 'properties': {'id': '76a5b833-52de-4acf-8fcf-01305b2a309c', 'info': None, 'row': 3770, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.33974520362867, 22.259450044449302, 0]}}, {'type': 'Feature', 'properties': {'id': 'cba8c71c-f214-4cbd-be25-579bfe73472d', 'info': None, 'row': 3770, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.3788453309176, 22.266134590660222, 0]}}, {'type': 'Feature', 'properties': {'id': '86480dbf-1821-42e2-86bc-3dd352fd5f0c', 'info': None, 'row': 3770, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.41778231642718, 22.272781275315342, 0]}}, {'type': 'Feature', 'properties': {'id': '35976cb0-a283-49ba-b708-ee88c5177950', 'info': None, 'row': 3770, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.45655972509635, 22.279390830198423, 0]}}, {'type': 'Feature', 'properties': {'id': '8ad5f46e-2281-462c-8449-f85661da4aab', 'info': None, 'row': 3770, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.49518100549287, 22.28596396317794, 0]}}, {'type': 'Feature', 'properties': {'id': 'c9087ea7-6caa-43e4-b168-29cea31cfd1d', 'info': None, 'row': 3770, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.53364949494919, 22.29250135926253, 0]}}, {'type': 'Feature', 'properties': {'id': 'a4b50692-a813-4891-a5cb-410aca458c2e', 'info': None, 'row': 3770, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.57196842441245, 22.299003681597537, 0]}}, {'type': 'Feature', 'properties': {'id': '2616a28f-6148-43dd-87a6-685263254fa6', 'info': None, 'row': 3770, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.61014092302827, 22.305471572406944, 0]}}, {'type': 'Feature', 'properties': {'id': '233d1d63-fc0f-4d18-a360-45daca9692dd', 'info': None, 'row': 3770, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.64817002247526, 22.31190565388406, 0]}}, {'type': 'Feature', 'properties': {'id': '0d960b12-7974-4a5b-a65f-03f6f28110fa', 'info': None, 'row': 3770, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.68605866106694, 22.31830652903448, 0]}}, {'type': 'Feature', 'properties': {'id': '83bd1d1b-2bc5-476f-91d8-a33f73f5d419', 'info': None, 'row': 3770, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.72380968763643, 22.32467478247424, 0]}}, {'type': 'Feature', 'properties': {'id': 'dfb4bab3-5570-4b09-9dde-bf72166a1056', 'info': None, 'row': 3770, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.76142586521671, 22.331010981186218, 0]}}, {'type': 'Feature', 'properties': {'id': '86d79a28-e32a-495e-8419-31b92adb91bb', 'info': None, 'row': 3770, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.7989098745307, 22.33731567523723, 0]}}, {'type': 'Feature', 'properties': {'id': 'fd18d803-c209-4b54-9766-cc31a2f03ea0', 'info': None, 'row': 3770, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.83626431730207, 22.343589398458388, 0]}}, {'type': 'Feature', 'properties': {'id': '84208f72-3e86-4f8f-8d75-d1568648e6ab', 'info': None, 'row': 3770, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.87349171939807, 22.349832669090993, 0]}}, {'type': 'Feature', 'properties': {'id': '80852d80-dd9b-45b4-8be5-73122ec2e900', 'info': None, 'row': 3770, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.9105945338151, 22.356045990400027, 0]}}, {'type': 'Feature', 'properties': {'id': '40c0dcb0-3284-4bd1-ae8a-598a0134812d', 'info': None, 'row': 3770, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.94757514351575, 22.362229851257098, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4f4cbaa-e26f-4563-b7ba-ebdcbc8fd363', 'info': None, 'row': 4524, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.23803385672487, 22.15583643203095, 0]}}, {'type': 'Feature', 'properties': {'id': '5e8910ee-7606-4a3c-ada8-50a1f013c46c', 'info': None, 'row': 4524, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.2776214406779, 22.16264247777952, 0]}}, {'type': 'Feature', 'properties': {'id': '1d4782f1-aebf-439a-a4a2-0d6ad02bd902', 'info': None, 'row': 4524, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.31703453638967, 22.16940833836986, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba1655e0-6f85-4668-90e3-f2feba33db7e', 'info': None, 'row': 4524, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.35627708939435, 22.176134824068317, 0]}}, {'type': 'Feature', 'properties': {'id': 'f62ae924-0199-45b8-95eb-22e7f0254973', 'info': None, 'row': 4524, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.39535291160573, 22.18282271767249, 0]}}, {'type': 'Feature', 'properties': {'id': '70f4ebc7-7789-496c-aeca-7f42d5745487', 'info': None, 'row': 4524, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.43426568743782, 22.189472775769318, 0]}}, {'type': 'Feature', 'properties': {'id': '8931fca5-cc01-4131-811b-2a8eb04b89ea', 'info': None, 'row': 4524, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.47301897957219, 22.196085729920565, 0]}}, {'type': 'Feature', 'properties': {'id': 'ee2ecb1c-cf73-440e-8b58-8c274dabf565', 'info': None, 'row': 4524, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.51161623439647, 22.20266228778071, 0]}}, {'type': 'Feature', 'properties': {'id': '6eef8649-9542-4742-b0a5-8958f05506ce', 'info': None, 'row': 4524, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.55006078713666, 22.20920313415198, 0]}}, {'type': 'Feature', 'properties': {'id': '36f54048-bf24-4d3d-b856-d8b4a71cc95b', 'info': None, 'row': 4524, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.5883558667038, 22.215708931980522, 0]}}, {'type': 'Feature', 'properties': {'id': '3f4b29a3-e405-4dbe-838c-3869d6d3d32f', 'info': None, 'row': 4524, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.62650460027459, 22.22218032329804, 0]}}, {'type': 'Feature', 'properties': {'id': 'd775ca08-56aa-4e83-a436-fdc81cd4f915', 'info': None, 'row': 4524, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.66451001762297, 22.228617930112136, 0]}}, {'type': 'Feature', 'properties': {'id': '4fdcb886-d7cd-48da-a509-cbeb7ca4d1b5', 'info': None, 'row': 4524, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.70237505521919, 22.235022355248947, 0]}}, {'type': 'Feature', 'properties': {'id': 'd1af84b8-77be-463c-8235-9180e4fe1f1c', 'info': None, 'row': 4524, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.74010256011178, 22.241394183151094, 0]}}, {'type': 'Feature', 'properties': {'id': '05844785-a543-4d89-ab34-ce278bd1bde8', 'info': None, 'row': 4524, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.7776952936055, 22.247733980633758, 0]}}, {'type': 'Feature', 'properties': {'id': '34141263-5c35-439a-8000-4aed6e6f9e46', 'info': None, 'row': 4524, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.81515593474876, 22.254042297601508, 0]}}, {'type': 'Feature', 'properties': {'id': 'c5866da5-ac2a-49f8-b3cb-d83d614b41bb', 'info': None, 'row': 4524, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.85248708364247, 22.26031966772848, 0]}}, {'type': 'Feature', 'properties': {'id': 'a37652cd-1814-4b7d-95e3-474b064fd4fe', 'info': None, 'row': 4524, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.88969126458052, 22.26656660910401, 0]}}, {'type': 'Feature', 'properties': {'id': '63724815-ccf2-4f73-82e0-b35b99a21e88', 'info': None, 'row': 4524, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.9267709290334, 22.272783624845907, 0]}}, {'type': 'Feature', 'properties': {'id': '77231e0f-d024-4ae9-bc50-9015b757ff7d', 'info': None, 'row': 4524, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.96372845848339, 22.278971203683227, 0]}}, {'type': 'Feature', 'properties': {'id': '4c23360b-fd84-4212-83da-b12a4136a493', 'info': None, 'row': 5278, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.25462261223964, 22.07257066341353, 0]}}, {'type': 'Feature', 'properties': {'id': 'e83255d3-dad0-4f14-88b6-5d3dbe0f44cb', 'info': None, 'row': 5278, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.29418583980319, 22.079379983261685, 0]}}, {'type': 'Feature', 'properties': {'id': '2b4f62c7-995e-4025-af47-111d4abb7e5d', 'info': None, 'row': 5278, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.33357468057082, 22.08614914452901, 0]}}, {'type': 'Feature', 'properties': {'id': '6daa7877-7b95-48b3-9985-69675920d348', 'info': None, 'row': 5278, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.37279307759408, 22.09287895723687, 0]}}, {'type': 'Feature', 'properties': {'id': 'e0e8f1ec-52ea-4a93-a9ab-c9a58981af34', 'info': None, 'row': 5278, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.41184484039226, 22.09957020394701, 0]}}, {'type': 'Feature', 'properties': {'id': '6b6c09f9-061c-4ebd-96e4-284cf14108c0', 'info': None, 'row': 5278, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.45073365106894, 22.106223641019195, 0]}}, {'type': 'Feature', 'properties': {'id': '766fd2c2-ed0b-46d5-946a-f7e88f3aadeb', 'info': None, 'row': 5278, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.48946307007522, 22.112839999796275, 0]}}, {'type': 'Feature', 'properties': {'id': '68b3fc6c-0221-4760-a6c6-726dfb4764d4', 'info': None, 'row': 5278, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.52803654164452, 22.119419987721685, 0]}}, {'type': 'Feature', 'properties': {'id': '91fb4841-b811-4f70-8dd2-78914b9d1f20', 'info': None, 'row': 5278, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.56645739892147, 22.125964289394062, 0]}}, {'type': 'Feature', 'properties': {'id': '64a4d428-e633-4cbb-bf37-0f151442cafb', 'info': None, 'row': 5278, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.60472886880517, 22.132473567563117, 0]}}, {'type': 'Feature', 'properties': {'id': '8ac68c66-6bb3-4aef-b068-783fd2267541', 'info': None, 'row': 5278, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.64285407652682, 22.138948464070914, 0]}}, {'type': 'Feature', 'properties': {'id': '02118e15-6ced-46cb-804b-d25f795d3a38', 'info': None, 'row': 5278, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.68083604997815, 22.145389600741872, 0]}}, {'type': 'Feature', 'properties': {'id': '6642c472-a872-4283-8bbb-fbc63e788e5c', 'info': None, 'row': 5278, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.71867772380803, 22.15179758022515, 0]}}, {'type': 'Feature', 'properties': {'id': '09927e1d-cf2c-4060-b3a3-d80d949ab780', 'info': None, 'row': 5278, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.75638194330148, 22.15817298679233, 0]}}, {'type': 'Feature', 'properties': {'id': 'd1dd6262-c2fa-4dc8-8dbe-8999a669587d', 'info': None, 'row': 5278, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.79395146805537, 22.164516387093144, 0]}}, {'type': 'Feature', 'properties': {'id': '1f13fda5-dd12-46d7-9249-8fbf37de0cb5', 'info': None, 'row': 5278, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.83138897546345, 22.170828330872176, 0]}}, {'type': 'Feature', 'properties': {'id': '4f81520c-7377-4da6-b4d3-b10fb6de6c55', 'info': None, 'row': 5278, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.86869706402284, 22.177109351648696, 0]}}, {'type': 'Feature', 'properties': {'id': '0a1984fc-f4ef-40d2-bc69-b9b074256391', 'info': None, 'row': 5278, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.90587825647265, 22.183359967362144, 0]}}, {'type': 'Feature', 'properties': {'id': '21e91df2-3971-4787-a421-38406bae5cb1', 'info': None, 'row': 5278, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.94293500277541, 22.189580680985152, 0]}}, {'type': 'Feature', 'properties': {'id': '752d981d-a3d8-46cf-ad04-1b4f6f5a6f53', 'info': None, 'row': 5278, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.97986968295044, 22.195771981106162, 0]}}, {'type': 'Feature', 'properties': {'id': '2921c34d-b750-471a-8638-80239dd58afa', 'info': None, 'row': 6032, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.27121127969059, 21.989305213461112, 0]}}, {'type': 'Feature', 'properties': {'id': '087e93c2-b717-441c-9cfd-69c73b7aa840', 'info': None, 'row': 6032, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.31075015218009, 21.996117807461744, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca10e6c7-20bc-4317-83f8-88b9499ad1d3', 'info': None, 'row': 6032, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.3501147393125, 22.002890269457865, 0]}}, {'type': 'Feature', 'properties': {'id': '4df41464-b668-4309-ac2f-05243d3e57a9', 'info': None, 'row': 6032, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.38930898165694, 22.009623409225878, 0]}}, {'type': 'Feature', 'properties': {'id': '0a206b83-21c3-47de-a82d-6d681d84b39e', 'info': None, 'row': 6032, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.42833668633835, 22.01631800909171, 0]}}, {'type': 'Feature', 'properties': {'id': 'c0ab7d67-ed6c-43d6-82ea-ab97c02af1cb', 'info': None, 'row': 6032, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.46720153315003, 22.022974825187955, 0]}}, {'type': 'Feature', 'properties': {'id': '1a3ca005-a9ed-4ab3-90be-b64be4d6b4b7', 'info': None, 'row': 6032, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.50590708031272, 22.02959458863858, 0]}}, {'type': 'Feature', 'properties': {'id': 'be74d6ac-35fc-45b6-98bf-f9f614ac7602', 'info': None, 'row': 6032, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.5444567699058, 22.036178006675982, 0]}}, {'type': 'Feature', 'properties': {'id': '86cdebfa-d4b4-4a3b-ab4c-35f2e93f9949', 'info': None, 'row': 6032, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.58285393299265, 22.042725763695238, 0]}}, {'type': 'Feature', 'properties': {'id': '36d7b019-b9af-43d2-a4d5-e75e719b14ef', 'info': None, 'row': 6032, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.6211017944606, 22.04923852224963, 0]}}, {'type': 'Feature', 'properties': {'id': 'b91a97b4-ae26-46f3-97e7-7242a746170b', 'info': None, 'row': 6032, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.65920347759538, 22.05571692399158, 0]}}, {'type': 'Feature', 'properties': {'id': '5e9e8a24-bde2-4577-8cf8-75bc6b8520b5', 'info': None, 'row': 6032, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.69716200840674, 22.062161590562372, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb502a90-a8a5-47e4-a365-d49c1546f83c', 'info': None, 'row': 6032, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.73498031972218, 22.068573124434188, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb6ee4b4-9c93-439d-8adb-6676e5ba9203', 'info': None, 'row': 6032, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.77266125506337, 22.074952109707574, 0]}}, {'type': 'Feature', 'properties': {'id': '94d6b5c2-e88e-46bc-8614-d4ca5e7975f4', 'info': None, 'row': 6032, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.81020757231941, 22.08129911286685, 0]}}, {'type': 'Feature', 'properties': {'id': 'ccf0e649-e2ef-457c-ae1f-246fc910c04a', 'info': None, 'row': 6032, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.84762194722951, 22.0876146834966, 0]}}, {'type': 'Feature', 'properties': {'id': 'a39b8c66-bab8-4ef4-816b-fbee65286c86', 'info': None, 'row': 6032, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.88490697668706, 22.09389935496125, 0]}}, {'type': 'Feature', 'properties': {'id': '076bbb4c-bcb2-4bcb-bcd4-42aeb5e6d3b9', 'info': None, 'row': 6032, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.9220651818765, 22.10015364505037, 0]}}, {'type': 'Feature', 'properties': {'id': '8afa7453-a8f8-4d2f-8b99-e44baed2bb20', 'info': None, 'row': 6032, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.95909901125252, 22.10637805659141, 0]}}, {'type': 'Feature', 'properties': {'id': '29c00886-71d7-4c95-8c38-e9ed59dd5ca1', 'info': None, 'row': 6032, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.99601084337148, 22.11257307803223, 0]}}, {'type': 'Feature', 'properties': {'id': 'e651a301-4e85-476c-bc23-ba5b1258e0d8', 'info': None, 'row': 6786, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.28778343517328, 21.906099513197816, 0]}}, {'type': 'Feature', 'properties': {'id': 'fa269749-c2ef-4f5b-95e5-bb2034b37b8c', 'info': None, 'row': 6786, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.3272981992296, 21.912915391266232, 0]}}, {'type': 'Feature', 'properties': {'id': 'd23a7d1c-a560-4acd-bb76-ecc5e50375c8', 'info': None, 'row': 6786, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.36663877815128, 21.91969116370526, 0]}}, {'type': 'Feature', 'properties': {'id': 'f88d0dbb-cb57-4adc-bd1d-d76af7956845', 'info': None, 'row': 6786, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.4058091100548, 21.926427640050104, 0]}}, {'type': 'Feature', 'properties': {'id': 'bd9e55e6-40a3-475c-a78a-5676eb07b96e', 'info': None, 'row': 6786, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.44481299969956, 21.933125602394483, 0]}}, {'type': 'Feature', 'properties': {'id': 'ffa641cb-47bf-48ee-8605-a3863368621b', 'info': None, 'row': 6786, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.48365412459609, 21.9397858066473, 0]}}, {'type': 'Feature', 'properties': {'id': '9e851a10-e744-4cdd-8b1d-b0906915b522', 'info': None, 'row': 6786, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.52233604076154, 21.946408983717006, 0]}}, {'type': 'Feature', 'properties': {'id': '7ed8fa25-3d22-463f-8d69-3189ebc55d58', 'info': None, 'row': 6786, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.56086218814696, 21.952995840628176, 0]}}, {'type': 'Feature', 'properties': {'id': '03731dc0-5553-4634-95c1-8dc396368d9f', 'info': None, 'row': 6786, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5992358957592, 21.959547061575442, 0]}}, {'type': 'Feature', 'properties': {'id': 'ffea0224-3201-45c8-8563-9d791256fe35', 'info': None, 'row': 6786, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.63746038649782, 21.966063308918656, 0]}}, {'type': 'Feature', 'properties': {'id': '04556ffb-667c-4e76-8f94-dab0cb4adfaa', 'info': None, 'row': 6786, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.67553878172625, 21.972545224123493, 0]}}, {'type': 'Feature', 'properties': {'id': 'abd8d61d-54af-4898-b2a4-a740e4703dc0', 'info': None, 'row': 6786, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.71347410559454, 21.978993428650874, 0]}}, {'type': 'Feature', 'properties': {'id': '576bdd6e-382a-4f96-acd2-8203164254f1', 'info': None, 'row': 6786, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.75126928913046, 21.98540852479873, 0]}}, {'type': 'Feature', 'properties': {'id': '51795b6b-8188-4ab3-b6a0-c8837e808df8', 'info': None, 'row': 6786, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.78892717411324, 21.991791096499128, 0]}}, {'type': 'Feature', 'properties': {'id': 'd46deb75-8093-42b9-be4f-66a56509f8dd', 'info': None, 'row': 6786, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.82645051674433, 21.99814171007351, 0]}}, {'type': 'Feature', 'properties': {'id': 'da97b576-811c-4f99-8ab6-5bbecc6a7847', 'info': None, 'row': 6786, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.86384199112788, 22.00446091494888, 0]}}, {'type': 'Feature', 'properties': {'id': '6772c3f5-b9bf-4155-a30c-f1fa72284aa1', 'info': None, 'row': 6786, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.90110419257269, 22.010749244337184, 0]}}, {'type': 'Feature', 'properties': {'id': '395e637e-9cd9-48ce-bbc6-406b9b67026e', 'info': None, 'row': 6786, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.93823964072672, 22.017007215880376, 0]}}, {'type': 'Feature', 'properties': {'id': '18d36fe8-e7fa-4658-9bec-530dab23bf24', 'info': None, 'row': 6786, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.97525078255454, 22.023235332262935, 0]}}, {'type': 'Feature', 'properties': {'id': '7578dfc0-d463-4d78-9381-43b0ca033977', 'info': None, 'row': 6786, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.01213999516685, 22.02943408179423, 0]}}, {'type': 'Feature', 'properties': {'id': '75b15377-2596-469f-bb3f-368518b337b4', 'info': None, 'row': 7540, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.30435589224811, 21.82289215035737, 0]}}, {'type': 'Feature', 'properties': {'id': '5f754cbd-e916-4f13-83c3-c0da5ca9d0a6', 'info': None, 'row': 7540, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.34384654892156, 21.82971131261178, 0]}}, {'type': 'Feature', 'properties': {'id': 'd144f44d-9893-4a7d-835a-9a6be49e19e2', 'info': None, 'row': 7540, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.38316312067718, 21.836490395611357, 0]}}, {'type': 'Feature', 'properties': {'id': 'be911498-5511-41fb-9642-ae6716745fc7', 'info': None, 'row': 7540, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.4223095431789, 21.843230208650123, 0]}}, {'type': 'Feature', 'properties': {'id': 'c2ce4b2b-a5d8-46ba-ab76-fc619d0b8555', 'info': None, 'row': 7540, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.46128961882074, 21.849931533589604, 0]}}, {'type': 'Feature', 'properties': {'id': '20e3aae8-f16e-4edf-ad49-f1d147a80a66', 'info': None, 'row': 7540, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5001070228306, 21.856595126115046, 0]}}, {'type': 'Feature', 'properties': {'id': '86c55012-a573-4a15-9d29-585b8c8e60cd', 'info': None, 'row': 7540, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.53876530902212, 21.86322171691937, 0]}}, {'type': 'Feature', 'properties': {'id': '9a843911-4bd8-4c8a-a88e-4c6586fc7bf2', 'info': None, 'row': 7540, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.57726791521817, 21.86981201281937, 0]}}, {'type': 'Feature', 'properties': {'id': '59e1a079-8815-4301-b6d9-2cfa090bb1d8', 'info': None, 'row': 7540, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.61561816836921, 21.876366697809225, 0]}}, {'type': 'Feature', 'properties': {'id': 'e99c7f6d-d3d9-40e3-b9a8-92dc66e2e05c', 'info': None, 'row': 7540, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.65381928938716, 21.88288643405538, 0]}}, {'type': 'Feature', 'properties': {'id': '8055e21a-9482-41e0-ae3f-c91d0eb66ce7', 'info': None, 'row': 7540, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.69187439771312, 21.889371862836775, 0]}}, {'type': 'Feature', 'properties': {'id': '2b7f359f-7d5d-42c4-b469-4428486afb31', 'info': None, 'row': 7540, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.72978651563773, 21.89582360543398, 0]}}, {'type': 'Feature', 'properties': {'id': '0c80bf47-cdd3-4819-99fe-45a07215fe58', 'info': None, 'row': 7540, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.76755857238898, 21.90224226397068, 0]}}, {'type': 'Feature', 'properties': {'id': '582bc619-826e-4ecd-a32c-084b9d20b15b', 'info': None, 'row': 7540, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.8051934080038, 21.908628422210487, 0]}}, {'type': 'Feature', 'properties': {'id': '02c84da2-df39-46c0-8e3f-31f57d679da4', 'info': None, 'row': 7540, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.8426937769961, 21.914982646311966, 0]}}, {'type': 'Feature', 'properties': {'id': '8236adcf-f4e6-4f47-9ec0-da24d13f0b8a', 'info': None, 'row': 7540, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.88006235183512, 21.921305485544544, 0]}}, {'type': 'Feature', 'properties': {'id': 'de5206a0-44a2-432a-b31b-587809073c50', 'info': None, 'row': 7540, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.91730172624503, 21.927597472967722, 0]}}, {'type': 'Feature', 'properties': {'id': '57dd90ca-8290-448d-acc5-4f419156f1fb', 'info': None, 'row': 7540, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.95441441833748, 21.933859126075816, 0]}}, {'type': 'Feature', 'properties': {'id': '9e5d8678-2bc6-4f56-ae4f-0bc7c1005f91', 'info': None, 'row': 7540, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.99140287358699, 21.940090947410376, 0]}}, {'type': 'Feature', 'properties': {'id': '3b00dc4c-0af3-4c92-afba-172c5b4f2807', 'info': None, 'row': 7540, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.02826946765866, 21.946293425142258, 0]}}, {'type': 'Feature', 'properties': {'id': '36e620f0-38e0-47ef-a276-b78645418551', 'info': None, 'row': 8294, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.3209735278258, 21.739435733460372, 0]}}, {'type': 'Feature', 'properties': {'id': '30e7ba80-d973-4511-903c-9b8098c686dc', 'info': None, 'row': 8294, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.36044023445311, 21.74625819760766, 0]}}, {'type': 'Feature', 'properties': {'id': '0ee91849-e61d-4d98-b7c0-3f6c12759090', 'info': None, 'row': 8294, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.39973295553105, 21.753040608790315, 0]}}, {'type': 'Feature', 'properties': {'id': '2cc1cf70-a08b-4a55-a272-8e6cf12a2c1a', 'info': None, 'row': 8294, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.43885562429179, 21.759783776063593, 0]}}, {'type': 'Feature', 'properties': {'id': 'd303fa61-370a-4960-b190-a98759680e62', 'info': None, 'row': 8294, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.47781204078385, 21.766488481059184, 0]}}, {'type': 'Feature', 'properties': {'id': 'accf606c-754f-4918-af86-bf561a8e803e', 'info': None, 'row': 8294, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5166058779719, 21.77315547924092, 0]}}, {'type': 'Feature', 'properties': {'id': '199f510c-3e24-4d0c-9a64-da6b0bf1439f', 'info': None, 'row': 8294, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.55524068748451, 21.77978550108837, 0]}}, {'type': 'Feature', 'properties': {'id': 'e217f1a4-079e-4f62-8e3f-a538885d84f3', 'info': None, 'row': 8294, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.59371990503428, 21.7863792532126, 0]}}, {'type': 'Feature', 'properties': {'id': '414ba88d-b67c-4e53-8184-ad3c9b81aaab', 'info': None, 'row': 8294, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.63204685553251, 21.792937419409377, 0]}}, {'type': 'Feature', 'properties': {'id': '54cb1c4c-51db-4a8a-860e-233f79a81209', 'info': None, 'row': 8294, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.67022475792001, 21.799460661653633, 0]}}, {'type': 'Feature', 'properties': {'id': '468c9ae5-8780-49c5-97c7-2c1a8cae46e7', 'info': None, 'row': 8294, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.70825672973179, 21.805949621039446, 0]}}, {'type': 'Feature', 'properties': {'id': 'ce5b25f6-fbd4-4b12-ba95-8232fff99bec', 'info': None, 'row': 8294, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.74614579141436, 21.812404918668836, 0]}}, {'type': 'Feature', 'properties': {'id': 'fdddff4b-ca2b-4715-907c-a283d407ef7c', 'info': None, 'row': 8294, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.78389487041107, 21.81882715649293, 0]}}, {'type': 'Feature', 'properties': {'id': '591f61b5-caad-428e-b436-7fc9bb4832c9', 'info': None, 'row': 8294, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.82150680503091, 21.82521691810858, 0]}}, {'type': 'Feature', 'properties': {'id': '3da400af-95d4-4f35-92e9-a15bfcb6cd54', 'info': None, 'row': 8294, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.85898434811429, 21.83157476951308, 0]}}, {'type': 'Feature', 'properties': {'id': '4113878d-7b68-4f7d-ac5d-9e25d9bb9f10', 'info': None, 'row': 8294, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.89633017050903, 21.837901259819844, 0]}}, {'type': 'Feature', 'properties': {'id': 'c46651ac-202c-4bfe-999c-4afcf443b9a4', 'info': None, 'row': 8294, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.93354686436776, 21.844196921937375, 0]}}, {'type': 'Feature', 'properties': {'id': '6b085082-a96b-469f-a21b-f76155c54f7c', 'info': None, 'row': 8294, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.97063694627843, 21.85046227321382, 0]}}, {'type': 'Feature', 'properties': {'id': 'a83a5b82-dbe3-4834-885f-8d519edab55b', 'info': None, 'row': 8294, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.00760286023785, 21.8566978160492, 0]}}, {'type': 'Feature', 'properties': {'id': '433ccb77-f710-40d0-8e46-99b9fa580537', 'info': None, 'row': 8294, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.04444698047737, 21.862904038477232, 0]}}, {'type': 'Feature', 'properties': {'id': '334b2314-48d9-4118-bb35-8e6a26be2094', 'info': None, 'row': 9048, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.33759083741846, 21.65598078384963, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3b7a17d-5ebf-4653-83be-cce6bafa35c7', 'info': None, 'row': 9048, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.37703359623752, 21.662806549939422, 0]}}, {'type': 'Feature', 'properties': {'id': '044ab3f0-7dc1-4833-8a8d-ee414a98812c', 'info': None, 'row': 9048, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.41630246886486, 21.669592289352828, 0]}}, {'type': 'Feature', 'properties': {'id': 'f6c44021-682d-41f0-9a5d-d31d695d6a2d', 'info': None, 'row': 9048, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.45540138610113, 21.67633881090636, 0]}}, {'type': 'Feature', 'properties': {'id': '85fac8f4-b856-43a6-b5df-687fba279f2b', 'info': None, 'row': 9048, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.49433414564962, 21.683046896001898, 0]}}, {'type': 'Feature', 'properties': {'id': 'fb4163ea-d1f8-444f-8a8b-34ce08d3fa21', 'info': None, 'row': 9048, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.53310441821198, 21.689717299881906, 0]}}, {'type': 'Feature', 'properties': {'id': 'a271704f-1fa2-4925-a903-43c23c13b305', 'info': None, 'row': 9048, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.57171575323201, 21.696350752812616, 0]}}, {'type': 'Feature', 'properties': {'id': '96bb01af-f08c-4df3-b67b-6fbf4102b4f1', 'info': None, 'row': 9048, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.61017158431218, 21.70294796119942, 0]}}, {'type': 'Feature', 'properties': {'id': '897b5637-c036-49d9-92ea-a1bfbd4f0dd6', 'info': None, 'row': 9048, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.64847523432495, 21.709509608639667, 0]}}, {'type': 'Feature', 'properties': {'id': '5365a9e2-1da5-4c4d-96f0-6ee2339e807c', 'info': None, 'row': 9048, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.68662992024022, 21.71603635691683, 0]}}, {'type': 'Feature', 'properties': {'id': '468b9cd6-61b2-45a9-a1cc-2bb84c5fba68', 'info': None, 'row': 9048, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.72463875768703, 21.72252884694014, 0]}}, {'type': 'Feature', 'properties': {'id': '5c263f4e-57b9-4558-9024-283241cc5d1b', 'info': None, 'row': 9048, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.76250476526808, 21.728987699633088, 0]}}, {'type': 'Feature', 'properties': {'id': 'e31e1b3e-87fc-4775-9482-ffadc033f76e', 'info': None, 'row': 9048, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.80023086864215, 21.73541351677428, 0]}}, {'type': 'Feature', 'properties': {'id': '111c2d83-f09a-40e3-8491-d9d473c55b25', 'info': None, 'row': 9048, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.83781990439051, 21.741806881793828, 0]}}, {'type': 'Feature', 'properties': {'id': 'e57d9ec2-e958-458e-9966-b3c7a1f99728', 'info': None, 'row': 9048, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.87527462368034, 21.748168360527757, 0]}}, {'type': 'Feature', 'properties': {'id': 'd07a8200-be8c-481b-8168-4e017e5336d2', 'info': None, 'row': 9048, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.91259769573814, 21.754498501933515, 0]}}, {'type': 'Feature', 'properties': {'id': '975fdc7e-d703-4d9f-abdd-a7620df10d56', 'info': None, 'row': 9048, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.94979171114514, 21.760797838768614, 0]}}, {'type': 'Feature', 'properties': {'id': '159b8ae7-4850-41eb-9194-c037f8219e62', 'info': None, 'row': 9048, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.98685918496585, 21.767066888235075, 0]}}, {'type': 'Feature', 'properties': {'id': '478d63ff-e5ca-43c6-80c4-88256a3f0945', 'info': None, 'row': 9048, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.0238025597194, 21.773306152591378, 0]}}, {'type': 'Feature', 'properties': {'id': '9fced127-8526-40f5-9fd5-9746d93eaf72', 'info': None, 'row': 9048, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.06062420820369, 21.779516119734144, 0]}}, {'type': 'Feature', 'properties': {'id': 'e84c3b71-47ab-4529-8af3-3c89f2ea7079', 'info': None, 'row': 9802, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.35416750754766, 21.572708755925596, 0]}}, {'type': 'Feature', 'properties': {'id': '1cd23c8d-eb2d-4166-b47f-23461f305fe5', 'info': None, 'row': 9802, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.39358659754922, 21.579537830145526, 0]}}, {'type': 'Feature', 'properties': {'id': '7b306954-18ad-4d87-afea-e008b8249983', 'info': None, 'row': 9802, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.43283189936683, 21.58632690373245, 0]}}, {'type': 'Feature', 'properties': {'id': '62a9dcac-9403-44ec-bd0b-f0a0e14dec76', 'info': None, 'row': 9802, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.47190734140267, 21.593076785268423, 0]}}, {'type': 'Feature', 'properties': {'id': 'd89716b4-6cb2-4057-af41-c10fe10d95c6', 'info': None, 'row': 9802, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.51081671904672, 21.59978825592954, 0]}}, {'type': 'Feature', 'properties': {'id': 'd56e382e-1f37-4f81-bd0c-3f1d6616761e', 'info': None, 'row': 9802, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.54956370076829, 21.60646207074083, 0]}}, {'type': 'Feature', 'properties': {'id': '45af1fb6-94ba-442f-b9fa-7d32e71b45ff', 'info': None, 'row': 9802, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.58815183385602, 21.61309895975893, 0]}}, {'type': 'Feature', 'properties': {'id': '7f20fe95-a128-4eb2-b0e1-b313b60ee345', 'info': None, 'row': 9802, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.62658454983084, 21.619699629187178, 0]}}, {'type': 'Feature', 'properties': {'id': '537b2452-26b5-48fc-9409-95ea5ee24792', 'info': None, 'row': 9802, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.66486516955389, 21.626264762428015, 0]}}, {'type': 'Feature', 'properties': {'id': '4dd8ae14-74c9-457c-b82a-ac1afcc20765', 'info': None, 'row': 9802, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7029969080508, 21.63279502107683, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3a885f2-88bc-440a-8b8b-b18a01e856b4', 'info': None, 'row': 9802, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.74098287907037, 21.639291045861242, 0]}}, {'type': 'Feature', 'properties': {'id': '7d9a3650-c918-478f-a20f-3675195a0c2b', 'info': None, 'row': 9802, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.77882609939627, 21.645753457529334, 0]}}, {'type': 'Feature', 'properties': {'id': 'ac952578-2962-42c4-b2eb-a908bdf25968', 'info': None, 'row': 9802, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.81652949292678, 21.652182857690256, 0]}}, {'type': 'Feature', 'properties': {'id': '148d6828-e09d-4d75-8faa-82ffff9a522c', 'info': None, 'row': 9802, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.85409589453872, 21.65857982961026, 0]}}, {'type': 'Feature', 'properties': {'id': '77e1df09-7421-44ca-a71d-57d3200ee4e1', 'info': None, 'row': 9802, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.8915280537483, 21.66494493896696, 0]}}, {'type': 'Feature', 'properties': {'id': '27696622-8dbb-48b8-b295-04e79416b2ef', 'info': None, 'row': 9802, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.92882863818255, 21.67127873456454, 0]}}, {'type': 'Feature', 'properties': {'id': 'a61c0154-4fa8-420f-b0af-34a73cf7404c', 'info': None, 'row': 9802, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.96600023687242, 21.67758174901219, 0]}}, {'type': 'Feature', 'properties': {'id': '968af0a7-23ad-4ba5-ba62-fe984ed8f3ce', 'info': None, 'row': 9802, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.00304536337927, 21.683854499368337, 0]}}, {'type': 'Feature', 'properties': {'id': '15a947fa-446c-4835-82ce-0866b3fe026e', 'info': None, 'row': 9802, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.03996645876435, 21.69009748775241, 0]}}, {'type': 'Feature', 'properties': {'id': '8ec0b807-d436-4d70-9852-aef336fe5746', 'info': None, 'row': 9802, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.07676589441117, 21.6963112019263, 0]}}, {'type': 'Feature', 'properties': {'id': '36542e64-caa8-415b-9174-a5181a10c4b8', 'info': None, 'row': 10556, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.37074402880062, 21.489437287107858, 0]}}, {'type': 'Feature', 'properties': {'id': 'ecfe154a-faac-47b1-853d-5ec5764ef4bc', 'info': None, 'row': 10556, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.41013945224904, 21.496269669554785, 0]}}, {'type': 'Feature', 'properties': {'id': '740e3c34-2144-4585-b379-2a7097ab3cdc', 'info': None, 'row': 10556, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.44936118551006, 21.503062077410227, 0]}}, {'type': 'Feature', 'properties': {'id': 'b91cfaae-3029-4bad-886f-cacd1ba20242', 'info': None, 'row': 10556, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.48841315458766, 21.509815319021808, 0]}}, {'type': 'Feature', 'properties': {'id': 'c68019da-61d7-4ca1-850c-b0197c556338', 'info': None, 'row': 10556, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.52729915255883, 21.516530175339852, 0]}}, {'type': 'Feature', 'properties': {'id': '96a9dc23-8611-4bea-a226-826244bad0da', 'info': None, 'row': 10556, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.56602284566073, 21.52320740117201, 0]}}, {'type': 'Feature', 'properties': {'id': '3428ce12-07e2-4310-b032-36e4d661646c', 'info': None, 'row': 10556, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.60458777902713, 21.52984772636534, 0]}}, {'type': 'Feature', 'properties': {'id': '57a1ae53-a083-468c-af5b-482c6600b75b', 'info': None, 'row': 10556, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.64299738209766, 21.53645185692117, 0]}}, {'type': 'Feature', 'properties': {'id': '3f08e733-a5cb-4639-856e-f92252fb6ae1', 'info': None, 'row': 10556, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.68125497372236, 21.54302047604706, 0]}}, {'type': 'Feature', 'properties': {'id': '5a2fdc69-f74c-447e-99ce-08601acea718', 'info': None, 'row': 10556, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7193637669828, 21.54955424515033, 0]}}, {'type': 'Feature', 'properties': {'id': 'cd4e68aa-10fe-4c9f-88e8-d35997dac347', 'info': None, 'row': 10556, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.75732687374774, 21.55605380477702, 0]}}, {'type': 'Feature', 'properties': {'id': '9e36a445-5491-49f6-943f-f4b0b4fbe077', 'info': None, 'row': 10556, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.79514730898205, 21.562519775499837, 0]}}, {'type': 'Feature', 'properties': {'id': '2f4bfad7-38ba-499a-8717-a3b5436910be', 'info': None, 'row': 10556, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.83282799482373, 21.568952758758495, 0]}}, {'type': 'Feature', 'properties': {'id': '3aaa66b3-ac0d-465c-8170-3baa7fd5a002', 'info': None, 'row': 10556, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.87037176444522, 21.575353337655418, 0]}}, {'type': 'Feature', 'properties': {'id': '7780c87f-2a4f-4448-a4f9-bc191cb74072', 'info': None, 'row': 10556, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.90778136571215, 21.581722077709827, 0]}}, {'type': 'Feature', 'properties': {'id': '4b1b535c-102f-41b3-ba78-31984334c6c6', 'info': None, 'row': 10556, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.94505946465213, 21.588059527572657, 0]}}, {'type': 'Feature', 'properties': {'id': '2d15bfb2-2bae-493c-a664-32d1cbef3caf', 'info': None, 'row': 10556, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.98220864874601, 21.59436621970481, 0]}}, {'type': 'Feature', 'properties': {'id': '6e01b91e-0fee-41cd-8ad3-0073d1f13d77', 'info': None, 'row': 10556, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.01923143005219, 21.600642671021134, 0]}}, {'type': 'Feature', 'properties': {'id': 'd4a6b37a-1208-4a39-95dd-39f8dd3a0843', 'info': None, 'row': 10556, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.05613024817421, 21.60688938350203, 0]}}, {'type': 'Feature', 'properties': {'id': '581f6f7b-188b-4e0f-b758-8c9ebe928c02', 'info': None, 'row': 10556, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.09290747308131, 21.61310684477467, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc94ffeb-3e61-4c94-9b91-7b549612efdf', 'info': None, 'row': 11310, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.38730466283423, 21.406225482919048, 0]}}, {'type': 'Feature', 'properties': {'id': '972a6616-d6d7-4aef-8d41-296983dcaedd', 'info': None, 'row': 11310, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.42667666136606, 21.413061183930143, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6d341c3-3d35-4225-8b12-c7606e955426', 'info': None, 'row': 11310, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.46587506651174, 21.41985693619145, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca953882-b81d-4026-a566-cfd735407587', 'info': None, 'row': 11310, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.50490380190655, 21.42661354781992, 0]}}, {'type': 'Feature', 'properties': {'id': '7cea7e9a-3bc4-4693-9b64-1d0f76510cee', 'info': None, 'row': 11310, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.54376665834249, 21.43333179954377, 0]}}, {'type': 'Feature', 'properties': {'id': '96735a58-282f-4128-bf9e-68c1eea8c40e', 'info': None, 'row': 11310, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5824672998519, 21.440012445956697, 0]}}, {'type': 'Feature', 'properties': {'id': 'a346a17f-563f-4bb7-b86b-5b9dd230e75f', 'info': None, 'row': 11310, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.62100926943981, 21.44665621669959, 0]}}, {'type': 'Feature', 'properties': {'id': '6f3bb129-472a-4094-bfca-c1cd7ad9ca9c', 'info': None, 'row': 11310, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.65939599448987, 21.453263817574964, 0]}}, {'type': 'Feature', 'properties': {'id': '0b154ff2-ec70-4b18-a6f0-0d6b2122eed5', 'info': None, 'row': 11310, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.6976307918654, 21.459835931598597, 0]}}, {'type': 'Feature', 'properties': {'id': 'f95b72ed-7a21-4ef1-84e3-9210da6a2b72', 'info': None, 'row': 11310, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.73571687272744, 21.466373219992747, 0]}}, {'type': 'Feature', 'properties': {'id': '22acdf7f-3e54-4c4a-aac1-2a82f6f98864', 'info': None, 'row': 11310, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.7736573470875, 21.47287632312476, 0]}}, {'type': 'Feature', 'properties': {'id': '4805b290-d020-4d24-bc44-f2d7dfedd54b', 'info': None, 'row': 11310, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.81145522811349, 21.479345861394783, 0]}}, {'type': 'Feature', 'properties': {'id': '56a9472f-6207-4411-8981-3669638fead3', 'info': None, 'row': 11310, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.84911343620439, 21.485782436075745, 0]}}, {'type': 'Feature', 'properties': {'id': '5927fb29-8524-42b1-a89e-510f2c738798', 'info': None, 'row': 11310, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.88663480284893, 21.49218663010886, 0]}}, {'type': 'Feature', 'properties': {'id': '2896baee-f52e-438f-97fc-243cda3c5666', 'info': None, 'row': 11310, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.92402207428182, 21.49855900885747, 0]}}, {'type': 'Feature', 'properties': {'id': '9bb57826-52c5-4ece-87b2-125d42f6ce9d', 'info': None, 'row': 11310, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.96127791495059, 21.504900120821674, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4fb0ab0-8345-4d48-9549-fc2fce572225', 'info': None, 'row': 11310, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.99840491080448, 21.511210498316437, 0]}}, {'type': 'Feature', 'properties': {'id': 'd05b3fa9-4b1b-4682-bcf1-e2635026b207', 'info': None, 'row': 11310, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.03540557241703, 21.517490658115303, 0]}}, {'type': 'Feature', 'properties': {'id': '8a5a7b5f-ffa8-4bdf-9893-cb60c72b7a15', 'info': None, 'row': 11310, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.0722823379515, 21.52374110206182, 0]}}, {'type': 'Feature', 'properties': {'id': 'ab84b497-3276-4978-91b4-239dcb54e4e9', 'info': None, 'row': 11310, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.10903757597976, 21.529962317650607, 0]}}, {'type': 'Feature', 'properties': {'id': '4fc60c34-c1cf-4900-86cd-87a4a176adf3', 'info': None, 'row': 12064, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.40386539187946, 21.32301299577244, 0]}}, {'type': 'Feature', 'properties': {'id': '598e586b-0144-4646-85bf-9803526ca96f', 'info': None, 'row': 12064, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.4432139677071, 21.32985201546722, 0]}}, {'type': 'Feature', 'properties': {'id': '78ce85c2-b4b6-4d4e-acd3-e308271f6789', 'info': None, 'row': 12064, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.48238904693854, 21.33665111225236, 0]}}, {'type': 'Feature', 'properties': {'id': 'a23bf9e6-21cc-49ca-9d8e-9b3d2e1ebec9', 'info': None, 'row': 12064, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.52139455084061, 21.34341109401416, 0]}}, {'type': 'Feature', 'properties': {'id': '3323a385-47b7-4afa-8f18-f3e7ac3389bd', 'info': None, 'row': 12064, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.5602342679207, 21.350132741258776, 0]}}, {'type': 'Feature', 'properties': {'id': '5dea3869-1f95-4eff-a533-a9fab273ecc4', 'info': None, 'row': 12064, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.59891186000651, 21.356816808365974, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6b2f3a5-6dd5-4699-9a65-bc2539980d01', 'info': None, 'row': 12064, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.63743086797462, 21.363464024770494, 0]}}, {'type': 'Feature', 'properties': {'id': '08bd3659-b2be-4c34-a811-93e92e29b5df', 'info': None, 'row': 12064, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.67579471715285, 21.37007509607607, 0]}}, {'type': 'Feature', 'properties': {'id': '9ed7a93d-eb3b-4ee6-8be5-47ec7bd35552', 'info': None, 'row': 12064, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.71400672241812, 21.376650705106737, 0]}}, {'type': 'Feature', 'properties': {'id': '2802fce2-0c7a-43f1-96b6-d208d930f96b', 'info': None, 'row': 12064, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.75207009301111, 21.383191512899696, 0]}}, {'type': 'Feature', 'properties': {'id': '60f943d9-8934-4597-b591-cfb831bbf27b', 'info': None, 'row': 12064, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.7899879370863, 21.389698159643654, 0]}}, {'type': 'Feature', 'properties': {'id': '8f71db13-ec5d-4ef4-9d9d-34162208dcf2', 'info': None, 'row': 12064, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.82776326601493, 21.396171265566185, 0]}}, {'type': 'Feature', 'properties': {'id': '1939ee2f-1446-4157-a487-941b865b02b4', 'info': None, 'row': 12064, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.8653989984571, 21.402611431773483, 0]}}, {'type': 'Feature', 'properties': {'id': 'f51a6df8-10ea-407a-afba-cc35c7987b74', 'info': None, 'row': 12064, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.90289796421794, 21.409019241045574, 0]}}, {'type': 'Feature', 'properties': {'id': 'c04e5e8d-7fe5-4359-b295-3328ed249c41', 'info': None, 'row': 12064, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.94026290790153, 21.415395258589918, 0]}}, {'type': 'Feature', 'properties': {'id': '1807b1c9-9c0a-4057-9059-e8d221b63046', 'info': None, 'row': 12064, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.97749649237542, 21.42174003275582, 0]}}, {'type': 'Feature', 'properties': {'id': 'bea5fdf4-0669-4a15-b4d8-25f09b454bde', 'info': None, 'row': 12064, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.01460130205759, 21.428054095712337, 0]}}, {'type': 'Feature', 'properties': {'id': '5ffb2061-7249-40f2-8024-d09b5b47c35a', 'info': None, 'row': 12064, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.0515798460367, 21.4343379640917, 0]}}, {'type': 'Feature', 'properties': {'id': '55ec37dc-aa40-4039-b31c-621a7bdb7447', 'info': None, 'row': 12064, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.08843456103594, 21.44059213960064, 0]}}, {'type': 'Feature', 'properties': {'id': '3fb3ea67-258d-4cb1-8598-cc71bccda890', 'info': None, 'row': 12064, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.12516781422997, 21.44681710960124, 0]}}, {'type': 'Feature', 'properties': {'id': '3e59ee75-3160-4990-9a03-9b56d98a0cad', 'info': None, 'row': 12818, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.42043498076094, 21.2397368228114, 0]}}, {'type': 'Feature', 'properties': {'id': 'c6492ecb-8314-4a74-9513-66f5c377829e', 'info': None, 'row': 12818, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.45976034018736, 21.24657917233489, 0]}}, {'type': 'Feature', 'properties': {'id': '7f3affd5-46ba-455b-b5e7-c73cbe9348f4', 'info': None, 'row': 12818, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.49891229875637, 21.253381624644106, 0]}}, {'type': 'Feature', 'properties': {'id': '77f24c04-7e3f-4045-b4a9-aa66cb457958', 'info': None, 'row': 12818, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.53789477539198, 21.26014498739772, 0]}}, {'type': 'Feature', 'properties': {'id': '7100ca99-99a6-4fa8-bbd8-4ee69142b8e6', 'info': None, 'row': 12818, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.57671155634172, 21.2668700408827, 0]}}, {'type': 'Feature', 'properties': {'id': '17529140-ec82-47cd-9b7a-f7e9ed82607a', 'info': None, 'row': 12818, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.61536630125264, 21.273557539267717, 0]}}, {'type': 'Feature', 'properties': {'id': 'd30cbce2-b242-4dec-8f0a-57f1cd533e5a', 'info': None, 'row': 12818, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.65386254889583, 21.28020821178403, 0]}}, {'type': 'Feature', 'properties': {'id': '3e745311-4070-43bd-ad00-ecf5b93c810e', 'info': None, 'row': 12818, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.69220372256555, 21.28682276383918, 0]}}, {'type': 'Feature', 'properties': {'id': '31dba5be-aeb2-4908-9756-f275cb7ae181', 'info': None, 'row': 12818, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.73039313517361, 21.29340187806794, 0]}}, {'type': 'Feature', 'properties': {'id': 'c8585646-b747-4a46-bb1e-a92588187de9', 'info': None, 'row': 12818, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7684339940611, 21.299946215324887, 0]}}, {'type': 'Feature', 'properties': {'id': '08564d48-7102-4fa3-8af3-bf32fa5113b4', 'info': None, 'row': 12818, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.80632940554534, 21.30645641562237, 0]}}, {'type': 'Feature', 'properties': {'id': 'daebad36-9bfc-4c61-aa93-e447102a7335', 'info': None, 'row': 12818, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.84408237922023, 21.31293309901762, 0]}}, {'type': 'Feature', 'properties': {'id': '4c701c53-4866-4eda-97d2-5a5f2f64ed6e', 'info': None, 'row': 12818, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.88169583202557, 21.319376866452252, 0]}}, {'type': 'Feature', 'properties': {'id': '5411625c-88e3-45c6-9bdb-1b8480277826', 'info': None, 'row': 12818, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.91917259210095, 21.325788300547188, 0]}}, {'type': 'Feature', 'properties': {'id': '7b8ad3c5-9df7-4cdf-890d-f9de287b571e', 'info': None, 'row': 12818, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.95651540243722, 21.332167966355996, 0]}}, {'type': 'Feature', 'properties': {'id': '49b92d57-5f12-42a8-a51a-8a65d4d79be3', 'info': None, 'row': 12818, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.9937269243388, 21.338516412079144, 0]}}, {'type': 'Feature', 'properties': {'id': 'c1dc30c2-77f1-4e3c-bfab-787d54aaceb5', 'info': None, 'row': 12818, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.03080974070859, 21.344834169741596, 0]}}, {'type': 'Feature', 'properties': {'id': 'ad3cec34-8054-413d-9f9f-a6b1440f47fe', 'info': None, 'row': 12818, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.06776635916631, 21.35112175583614, 0]}}, {'type': 'Feature', 'properties': {'id': 'c0ac1d5f-bb75-4d18-b2cd-bddaef1c07a1', 'info': None, 'row': 12818, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.10459921501034, 21.35737967193441, 0]}}, {'type': 'Feature', 'properties': {'id': '751f9a3d-f6ba-4e8e-b439-ba9d16d86503', 'info': None, 'row': 12818, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.14131067403294, 21.36360840526763, 0]}}, {'type': 'Feature', 'properties': {'id': '9b65737d-99f1-4bc4-acc0-3854d97d2498', 'info': None, 'row': 13572, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.43700467775935, 21.15645988638826, 0]}}, {'type': 'Feature', 'properties': {'id': 'abeb28c5-e21f-4d99-9eb5-5ab83bc0262c', 'info': None, 'row': 13572, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.47630682326003, 21.163305565912456, 0]}}, {'type': 'Feature', 'properties': {'id': '2bf1b48f-ea58-42c9-839b-302e644a2cd5', 'info': None, 'row': 13572, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.51543566362946, 21.17011137391587, 0]}}, {'type': 'Feature', 'properties': {'id': '73766aee-da47-443c-add0-6e436a710c16', 'info': None, 'row': 13572, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.55439511544914, 21.176878117829567, 0]}}, {'type': 'Feature', 'properties': {'id': '0c7d9b4a-b56b-49bf-b383-e950df51001f', 'info': None, 'row': 13572, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.59318896270707, 21.183606577721402, 0]}}, {'type': 'Feature', 'properties': {'id': '648c3b85-eea7-4756-abac-90510f42d117', 'info': None, 'row': 13572, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.63182086286989, 21.190297507548962, 0]}}, {'type': 'Feature', 'properties': {'id': '8081af61-6c03-49d4-8b2a-efd18c31b0fe', 'info': None, 'row': 13572, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.67029435260355, 21.19695163634007, 0]}}, {'type': 'Feature', 'properties': {'id': '32a665bb-65af-4d42-a1da-26a42ac391ec', 'info': None, 'row': 13572, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.70861285316889, 21.203569669306102, 0]}}, {'type': 'Feature', 'properties': {'id': '50d916c8-df09-47ce-8271-4c0833a4a33c', 'info': None, 'row': 13572, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.74677967551303, 21.21015228889262, 0]}}, {'type': 'Feature', 'properties': {'id': 'a1c46a66-2bb9-422a-8e70-7517ce100376', 'info': None, 'row': 13572, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.78479802507756, 21.216700155771576, 0]}}, {'type': 'Feature', 'properties': {'id': '263a0ba4-72ff-49bf-bc9a-5efba8f7e491', 'info': None, 'row': 13572, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.82267100634301, 21.223213909779023, 0]}}, {'type': 'Feature', 'properties': {'id': 'fc30c718-64b4-4f74-a1d6-a3b60ac07012', 'info': None, 'row': 13572, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.86040162712605, 21.229694170801857, 0]}}, {'type': 'Feature', 'properties': {'id': '6cbbd41c-7a0a-4a04-b329-9b4df1d5beeb', 'info': None, 'row': 13572, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.8979928026465, 21.23614153961715, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc45da0b-62e0-4ab2-aaa2-bda8a0639fdc', 'info': None, 'row': 13572, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.9354473593786, 21.242556598686747, 0]}}, {'type': 'Feature', 'properties': {'id': '6d69f2d4-ba3e-431b-901f-92863754e131', 'info': None, 'row': 13572, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.97276803870015, 21.248939912910355, 0]}}, {'type': 'Feature', 'properties': {'id': '019784f4-837e-4777-9c97-6835eb29f4ed', 'info': None, 'row': 13572, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-70.00995750035267, 21.255292030339632, 0]}}, {'type': 'Feature', 'properties': {'id': '778bf225-92c9-49b9-89a0-e5546474173e', 'info': None, 'row': 13572, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.0470183257242, 21.26161348285546, 0]}}, {'type': 'Feature', 'properties': {'id': '56a34edb-96cb-434f-bcc9-d0f0298cdf8a', 'info': None, 'row': 13572, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.08395302096565, 21.267904786811226, 0]}}, {'type': 'Feature', 'properties': {'id': '73962f6c-9ec1-45bc-b0fb-47cf001a6150', 'info': None, 'row': 13572, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.12076401995081, 21.274166443643473, 0]}}, {'type': 'Feature', 'properties': {'id': '31df8019-8acf-4c73-9e80-b37d27eb8522', 'info': None, 'row': 13572, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.15745368708973, 21.28039894045261, 0]}}, {'type': 'Feature', 'properties': {'id': '79d3f5c0-37c8-4758-8f36-e1d29103aacc', 'info': None, 'row': 14326, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.45358332443669, 21.073119752269143, 0]}}, {'type': 'Feature', 'properties': {'id': '718c7c19-4c1e-49ad-b4fa-7c1814ea9914', 'info': None, 'row': 14326, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.49286246092618, 21.07996877603113, 0]}}, {'type': 'Feature', 'properties': {'id': '65effddc-26ac-4553-bf08-c5ef13c7da96', 'info': None, 'row': 14326, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.53196838696581, 21.086777953810635, 0]}}, {'type': 'Feature', 'properties': {'id': 'e97cfb9a-3106-4821-b1dc-b51e1d2af0e6', 'info': None, 'row': 14326, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.57090501682015, 21.093548092814416, 0]}}, {'type': 'Feature', 'properties': {'id': '2085bcf8-cf75-4e90-8429-2f5fd4f10ae0', 'info': None, 'row': 14326, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.60967613224247, 21.100279972894395, 0]}}, {'type': 'Feature', 'properties': {'id': '66ff1acb-d18d-45fd-ba46-9feff73d3e99', 'info': None, 'row': 14326, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.6482853885426, 21.106974347800104, 0]}}, {'type': 'Feature', 'properties': {'id': '39add393-7749-4dc5-8d28-1db3df6520de', 'info': None, 'row': 14326, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.6867363203043, 21.11363194635887, 0]}}, {'type': 'Feature', 'properties': {'id': '0a9dfcc7-7e02-4ceb-89cc-7af979cd5758', 'info': None, 'row': 14326, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.72503234677717, 21.12025347358874, 0]}}, {'type': 'Feature', 'properties': {'id': 'dd376bc9-2894-46e4-a963-2f078e09ece6', 'info': None, 'row': 14326, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.76317677696474, 21.126839611748785, 0]}}, {'type': 'Feature', 'properties': {'id': 'aa6ecc85-fc22-4acf-9dea-f85e540cb65d', 'info': None, 'row': 14326, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.80117281442983, 21.13339102133095, 0]}}, {'type': 'Feature', 'properties': {'id': '30094288-45da-4314-8e01-dd8c5c4982b9', 'info': None, 'row': 14326, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.83902356183592, 21.13990834199751, 0]}}, {'type': 'Feature', 'properties': {'id': 'b53e908b-a3ee-419d-af17-d047969953e4', 'info': None, 'row': 14326, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.8767320252417, 21.146392193467506, 0]}}, {'type': 'Feature', 'properties': {'id': '9de9d3a8-5b21-44e9-946f-f173916b76a1', 'info': None, 'row': 14326, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.91430111816547, 21.15284317635578, 0]}}, {'type': 'Feature', 'properties': {'id': 'f3c020a4-9e0b-4106-852d-220c8e574689', 'info': None, 'row': 14326, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.951733665434, 21.15926187296737, 0]}}, {'type': 'Feature', 'properties': {'id': '9469a880-a0aa-4f03-8d36-647179a0308e', 'info': None, 'row': 14326, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.98903240682941, 21.165648848050353, 0]}}, {'type': 'Feature', 'properties': {'id': 'e111d008-71ff-467d-8dad-70d8b30e3216', 'info': None, 'row': 14326, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-70.02620000054705, 21.17200464950964, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba75f7b2-14ba-439e-8799-032fc5a27a5c', 'info': None, 'row': 14326, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.06323902647637, 21.178329809084154, 0]}}, {'type': 'Feature', 'properties': {'id': '0e71a27e-f1f0-41ab-ab95-1d59389c1008', 'info': None, 'row': 14326, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.1001519893151, 21.1846248429898, 0]}}, {'type': 'Feature', 'properties': {'id': '9d2757a8-f7db-41bb-948d-48e3912c9291', 'info': None, 'row': 14326, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.13694132152764, 21.190890252529975, 0]}}, {'type': 'Feature', 'properties': {'id': '797b6191-3f18-428e-a6de-4ab438678fbe', 'info': None, 'row': 14326, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.17360938615658, 21.197126524676104, 0]}}]}
array(0)
- comment :
- denoised digital number, read at full resolution
- history :
- digital_number: measurement/s1a-iw3-slc-v*-20170907t102953-20170907t103021-018268-01eb76-00*.tiff
equivalent to
[17]:
s1ds.dataset['digital_number']
[17]:
<xarray.DataArray 'digital_number' (pol: 2, line: 15070, sample: 23768)> dask.array<concatenate, shape=(2, 15070, 23768), dtype=complex64, chunksize=(1, 5000, 5000), chunktype=numpy.ndarray> Coordinates: * pol (pol) object 'VV' 'VH' * line (line) int64 0 1 2 3 4 5 ... 15065 15066 15067 15068 15069 * sample (sample) int64 0 1 2 3 4 5 ... 23763 23764 23765 23766 23767 spatial_ref int64 0 Attributes: comment: denoised digital number, read at full resolution history: digital_number: measurement/s1a-iw3-slc-v*-20170907t102953-2017...
- pol: 2
- line: 15070
- sample: 23768
- dask.array<chunksize=(1, 5000, 5000), meta=np.ndarray>
Array Chunk Bytes 5.34 GiB 190.73 MiB Shape (2, 15070, 23768) (1, 5000, 5000) Count 82 Tasks 40 Chunks Type complex64 numpy.ndarray - pol(pol)object'VV' 'VH'
- comment :
- ordered polarizations (copol, crosspol)
array(['VV', 'VH'], dtype=object)
- line(line)int640 1 2 3 ... 15066 15067 15068 15069
- axis :
- Y
- units :
- 1
- comment :
- azimuth direction, in pixels from full resolution tiff
array([ 0, 1, 2, ..., 15067, 15068, 15069])
- sample(sample)int640 1 2 3 ... 23764 23765 23766 23767
- axis :
- X
- units :
- 1
- comment :
- cross track direction, in pixels from full resolution tiff
array([ 0, 1, 2, ..., 23765, 23766, 23767])
- 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': '687a6936-29b7-4a27-8542-08ea0d575d20', 'info': None, 'row': 0, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.13847173718773, 22.65528072350044, 0]}}, {'type': 'Feature', 'properties': {'id': '8a3e2a7a-fcb9-49bc-ab2a-537b494533a3', 'info': None, 'row': 0, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.17820820742932, 22.66206726191746, 0]}}, {'type': 'Feature', 'properties': {'id': '82055312-bb2e-47d9-8117-a68a7bdb7afe', 'info': None, 'row': 0, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.21776956703296, 22.66881345359603, 0]}}, {'type': 'Feature', 'properties': {'id': '85f563ea-abfb-4235-a1de-f60720d2f0aa', 'info': None, 'row': 0, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.25715977676485, 22.67552011031412, 0]}}, {'type': 'Feature', 'properties': {'id': '17360bea-6be9-4d3d-9f67-0977c16911f2', 'info': None, 'row': 0, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.29638266322931, 22.68218801632446, 0]}}, {'type': 'Feature', 'properties': {'id': 'b389188a-9deb-42cd-9cfc-392aad276953', 'info': None, 'row': 0, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.33544192501508, 22.68881792961555, 0]}}, {'type': 'Feature', 'properties': {'id': 'a7f205d4-c6be-4aab-ab7a-b7a7ce6143b1', 'info': None, 'row': 0, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.37434113848721, 22.69541058309964, 0]}}, {'type': 'Feature', 'properties': {'id': '1a367c3c-ae6c-4e65-95b9-6fb06519f02b', 'info': None, 'row': 0, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.4130837632483, 22.7019666857333, 0]}}, {'type': 'Feature', 'properties': {'id': '43103e5c-0d51-4ce9-8f98-36d26706e216', 'info': None, 'row': 0, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.45167314729233, 22.70848692357449, 0]}}, {'type': 'Feature', 'properties': {'id': '733f8366-4db8-432a-a473-6efc5536b2a3', 'info': None, 'row': 0, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.49011253187193, 22.7149719607812, 0]}}, {'type': 'Feature', 'properties': {'id': '2bb604b1-079b-4684-ba59-1c294cb1bc59', 'info': None, 'row': 0, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.52840505609768, 22.72142244055495, 0]}}, {'type': 'Feature', 'properties': {'id': '6ed56072-8124-4583-9c2d-3436a3f4ecde', 'info': None, 'row': 0, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.56655376128812, 22.72783898603313, 0]}}, {'type': 'Feature', 'properties': {'id': 'e9e1efe6-b934-4b5a-9264-2bbfec3e9cfe', 'info': None, 'row': 0, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.60456159508581, 22.73422220113351, 0]}}, {'type': 'Feature', 'properties': {'id': 'd47c6220-4c91-467a-81a0-1c80868e9ba6', 'info': None, 'row': 0, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.6424314153552, 22.74057267135375, 0]}}, {'type': 'Feature', 'properties': {'id': '01654706-e83e-41fd-9691-8355cca35871', 'info': None, 'row': 0, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.68016599387602, 22.74689096452925, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5f20d03-0954-41d6-bb8d-8ff7026cdb69', 'info': None, 'row': 0, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.71776801984517, 22.75317763155148, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca672e35-3791-4df3-9931-0bdf19e99eee', 'info': None, 'row': 0, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.75524010319884, 22.75943320704956, 0]}}, {'type': 'Feature', 'properties': {'id': '84351c21-15f9-47af-9469-248f006a2bac', 'info': None, 'row': 0, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.79258477776644, 22.76565821003726, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb7740f7-0a9c-4823-8bc1-2fa196eac886', 'info': None, 'row': 0, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.82980450426614, 22.77185314452762, 0]}}, {'type': 'Feature', 'properties': {'id': '532cbe7c-1209-4819-953a-98b9198b0f28', 'info': None, 'row': 0, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.8669016731517, 22.77801850011687, 0]}}, {'type': 'Feature', 'properties': {'id': '32e33ab2-6af1-4826-b61c-a847d83e88cd', 'info': None, 'row': 754, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.15506189493175, 22.572083635896206, 0]}}, {'type': 'Feature', 'properties': {'id': 'd5f8a592-259a-40e8-9147-a32a87b3fb19', 'info': None, 'row': 754, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.19477332948718, 22.578873413043745, 0]}}, {'type': 'Feature', 'properties': {'id': '5324b74d-ffb6-43e9-b318-9da34b6cfeb1', 'info': None, 'row': 754, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.23430975824905, 22.58562287054896, 0]}}, {'type': 'Feature', 'properties': {'id': 'a513f862-416c-4fc2-89c9-b4f20c294b81', 'info': None, 'row': 754, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.27367513941775, 22.59233281993449, 0]}}, {'type': 'Feature', 'properties': {'id': 'adb1f261-0ec5-4489-984b-18b7dd7a5675', 'info': None, 'row': 754, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.31287329712285, 22.59900404520733, 0]}}, {'type': 'Feature', 'properties': {'id': 'b2bd3aff-413e-4c84-870f-ba1a208ca232', 'info': None, 'row': 754, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.35190792756549, 22.605637304119245, 0]}}, {'type': 'Feature', 'properties': {'id': '3ecc0c07-821a-49cb-a0e2-0a3a8f380680', 'info': None, 'row': 754, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.39078260480571, 22.61223332935443, 0]}}, {'type': 'Feature', 'properties': {'id': 'f8452384-68f6-415d-8e30-cd0bbd74e3a8', 'info': None, 'row': 754, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.42950078622016, 22.618792829649546, 0]}}, {'type': 'Feature', 'properties': {'id': 'e1a7e765-2097-4a0e-905e-35ab7455e122', 'info': None, 'row': 754, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.46806581765222, 22.625316490850484, 0]}}, {'type': 'Feature', 'properties': {'id': 'f1566519-b94a-4d74-b09c-2c9edb351398', 'info': None, 'row': 754, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.5064809382757, 22.63180497691058, 0]}}, {'type': 'Feature', 'properties': {'id': 'dba49a00-03cd-4fe4-8226-d754273c3b75', 'info': None, 'row': 754, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.5447492851911, 22.638258930833807, 0]}}, {'type': 'Feature', 'properties': {'id': '54d9299f-323f-40e3-a541-1a87deafbf74', 'info': None, 'row': 754, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.58287389777246, 22.644678975566766, 0]}}, {'type': 'Feature', 'properties': {'id': '5a25b26b-b709-4d97-9468-2a529bab3424', 'info': None, 'row': 754, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.62085772178062, 22.651065714842872, 0]}}, {'type': 'Feature', 'properties': {'id': '20b0dfb1-ea87-4532-a2a8-0dd06758eda6', 'info': None, 'row': 754, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.65870361325833, 22.657419733981648, 0]}}, {'type': 'Feature', 'properties': {'id': '4bc6fbd6-d043-4b49-a02a-9afc4a459cdb', 'info': None, 'row': 754, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.69641434222102, 22.663741600646198, 0]}}, {'type': 'Feature', 'properties': {'id': '07acb726-2e90-4ec7-b253-aeab3ed2690e', 'info': None, 'row': 754, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.7339925961564, 22.67003186556135, 0]}}, {'type': 'Feature', 'properties': {'id': '2e262537-9f7f-4fbb-95a2-542bcf1f2ecc', 'info': None, 'row': 754, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.77144098334415, 22.676291063194967, 0]}}, {'type': 'Feature', 'properties': {'id': '19df36ab-c281-4f78-a496-22eb9daa7eff', 'info': None, 'row': 754, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.80876203600776, 22.68251971240472, 0]}}, {'type': 'Feature', 'properties': {'id': '030da0bb-4936-4fe5-8a44-4109033e49e3', 'info': None, 'row': 754, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.84595821330795, 22.688718317052484, 0]}}, {'type': 'Feature', 'properties': {'id': 'cf4a0ee5-87ad-43e1-84bd-86a4be352cc0', 'info': None, 'row': 754, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.88303190418753, 22.69488736658807, 0]}}, {'type': 'Feature', 'properties': {'id': '34764a7c-d8c8-4d23-a9cf-32a75be5bb72', 'info': None, 'row': 1508, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.17165204642964, 22.488886544870606, 0]}}, {'type': 'Feature', 'properties': {'id': '251a58be-7507-4f2a-9e4b-3daa227c0f77', 'info': None, 'row': 1508, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.21133844560917, 22.495679560759754, 0]}}, {'type': 'Feature', 'properties': {'id': 'ff216528-fdd7-4392-b8b5-0652775ce7f0', 'info': None, 'row': 1508, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.25084994383806, 22.502432284102465, 0]}}, {'type': 'Feature', 'properties': {'id': '79114eb9-75e1-409b-bced-af962d04288c', 'info': None, 'row': 1508, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.29019049675075, 22.509145526166066, 0]}}, {'type': 'Feature', 'properties': {'id': '13a30213-dde9-42ce-8812-9fd438d0c9ef', 'info': None, 'row': 1508, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.32936392600232, 22.515820070711836, 0]}}, {'type': 'Feature', 'properties': {'id': '38f43711-4afa-48cf-ae60-fa035050574d', 'info': None, 'row': 1508, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.36837392540615, 22.522456675254787, 0]}}, {'type': 'Feature', 'properties': {'id': '37a6de89-dc11-4a85-93d7-41d742464326', 'info': None, 'row': 1508, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.40722406671738, 22.52905607225107, 0]}}, {'type': 'Feature', 'properties': {'id': '97938a27-010f-4f30-a784-b0cc79e860c3', 'info': None, 'row': 1508, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.4459178050868, 22.535618970217442, 0]}}, {'type': 'Feature', 'properties': {'id': 'd48054fc-8094-4b22-a1bf-8f6d8798d1f0', 'info': None, 'row': 1508, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.4844584842071, 22.54214605478772, 0]}}, {'type': 'Feature', 'properties': {'id': '654ef475-fa30-42ba-9330-59ed2752390c', 'info': None, 'row': 1508, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.52284934117336, 22.548637989710613, 0]}}, {'type': 'Feature', 'properties': {'id': 'f2b07b02-922b-4c0a-bd9a-e5489d4bd7f9', 'info': None, 'row': 1508, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.56109351107607, 22.555095417792526, 0]}}, {'type': 'Feature', 'properties': {'id': '307fddf6-3a86-4d89-b354-6ec59193bdc6', 'info': None, 'row': 1508, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.59919403134475, 22.561518961789282, 0]}}, {'type': 'Feature', 'properties': {'id': '1dd5b677-1105-4c26-a92e-3be696132610', 'info': None, 'row': 1508, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.63715384585853, 22.56790922524994, 0]}}, {'type': 'Feature', 'properties': {'id': 'b289c30f-3ace-4eb4-bed4-f9a3edef5cef', 'info': None, 'row': 1508, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.6749758088385, 22.5742667933159, 0]}}, {'type': 'Feature', 'properties': {'id': '2f78ef3c-f88f-4ed3-8a9d-23aba8d1299c', 'info': None, 'row': 1508, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.71266268853587, 22.580592233477972, 0]}}, {'type': 'Feature', 'properties': {'id': '13eed68a-d622-4aa4-9b31-0518d001a21a', 'info': None, 'row': 1508, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.75021717072912, 22.586886096294332, 0]}}, {'type': 'Feature', 'properties': {'id': '8e226100-7c08-4f14-b1f4-b4a6e845e51b', 'info': None, 'row': 1508, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.7876418620415, 22.5931489160716, 0]}}, {'type': 'Feature', 'properties': {'id': 'd0aa9275-c960-471e-b369-df8dcb20a864', 'info': None, 'row': 1508, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.82493929309057, 22.599381211511343, 0]}}, {'type': 'Feature', 'properties': {'id': '814e1fc8-63e1-4f45-ae55-1e11968a904d', 'info': None, 'row': 1508, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.8621119214796, 22.60558348632427, 0]}}, {'type': 'Feature', 'properties': {'id': '562730b6-91d3-40cc-8b5e-5b53e18bf5a0', 'info': None, 'row': 1508, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.89916213464049, 22.611756229813807, 0]}}, {'type': 'Feature', 'properties': {'id': '26436e26-3d96-49fd-b7c4-3a59c61af052', 'info': None, 'row': 2262, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.18823749457997, 22.405686877561287, 0]}}, {'type': 'Feature', 'properties': {'id': '908e4261-ea70-40ba-9351-c72d7606dee7', 'info': None, 'row': 2262, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.22789909203806, 22.412483140535116, 0]}}, {'type': 'Feature', 'properties': {'id': 'f8d05f51-9adc-4147-8c7f-83e4b5906bea', 'info': None, 'row': 2262, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.26738589222438, 22.41923913789002, 0]}}, {'type': 'Feature', 'properties': {'id': 'eff91266-0a04-4aa3-841d-df294493234f', 'info': None, 'row': 2262, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.30670184823606, 22.425955680641316, 0]}}, {'type': 'Feature', 'properties': {'id': 'a2e8b32d-eef5-4a74-8435-9f539726893d', 'info': None, 'row': 2262, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.34585077928091, 22.432633552307585, 0]}}, {'type': 'Feature', 'properties': {'id': '3fcfd1c4-34b2-409f-b506-b7c434d75275', 'info': None, 'row': 2262, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.38483637681114, 22.43927351017016, 0]}}, {'type': 'Feature', 'properties': {'id': 'c3df17e8-6926-4a2a-a626-0d507ec65940', 'info': None, 'row': 2262, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.42366221030252, 22.44587628646, 0]}}, {'type': 'Feature', 'properties': {'id': '471b4533-43b9-4e61-832f-0a7259b1105c', 'info': None, 'row': 2262, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.46233173270436, 22.45244258947671, 0]}}, {'type': 'Feature', 'properties': {'id': '566933e1-392f-4252-b8ee-64a014660196', 'info': None, 'row': 2262, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5008482855825, 22.458973104644734, 0]}}, {'type': 'Feature', 'properties': {'id': '5be5ed79-9965-4c81-8049-a3d8e80eb877', 'info': None, 'row': 2262, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.53921510397618, 22.4654684955107, 0]}}, {'type': 'Feature', 'properties': {'id': 'bf1a698d-0eac-4de3-9288-47924628327e', 'info': None, 'row': 2262, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.57743532098782, 22.47192940468593, 0]}}, {'type': 'Feature', 'properties': {'id': '4a5e1661-f673-45cc-9954-b8275c26d7d3', 'info': None, 'row': 2262, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.61551197212393, 22.478356454737856, 0]}}, {'type': 'Feature', 'properties': {'id': '507d2690-26d6-46e6-9901-d25391099e0e', 'info': None, 'row': 2262, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.65344799940249, 22.48475024903353, 0]}}, {'type': 'Feature', 'properties': {'id': '3c0bf072-cc81-47b7-9d62-67f535b9fbfc', 'info': None, 'row': 2262, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.69124625524287, 22.49111137253838, 0]}}, {'type': 'Feature', 'properties': {'id': 'fbbb504c-337f-4c24-9e72-12f3eb7c26b5', 'info': None, 'row': 2262, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.72890950615133, 22.497440392573104, 0]}}, {'type': 'Feature', 'properties': {'id': '1bbae033-babf-419a-a157-22d18adddb5e', 'info': None, 'row': 2262, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.76644043621583, 22.50373785953132, 0]}}, {'type': 'Feature', 'properties': {'id': '0c3dac9e-241d-48fc-9846-4c5bb4b72d2d', 'info': None, 'row': 2262, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.80384165042122, 22.51000430756038, 0]}}, {'type': 'Feature', 'properties': {'id': '61f83628-ed73-487a-b99f-cdd4d03dcd4f', 'info': None, 'row': 2262, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.84111567779664, 22.516240255207713, 0]}}, {'type': 'Feature', 'properties': {'id': '8401b2ca-e608-4c22-9fa1-fa000818d255', 'info': None, 'row': 2262, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.87826497440483, 22.52244620603474, 0]}}, {'type': 'Feature', 'properties': {'id': '040a5cb7-f1ba-4e0b-8d67-5f49a7c46b9b', 'info': None, 'row': 2262, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.91529192618327, 22.52862264920026, 0]}}, {'type': 'Feature', 'properties': {'id': 'ebd5c6ce-f2c3-4ddd-b57e-f42a68f15e1d', 'info': None, 'row': 3016, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.20482299582194, 22.322486876900143, 0]}}, {'type': 'Feature', 'properties': {'id': '48806d6c-7676-4226-af27-0f5471d52e6f', 'info': None, 'row': 3016, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.24445979207599, 22.32928638701361, 0]}}, {'type': 'Feature', 'properties': {'id': '28925d4b-5fa9-4e08-867c-0e3bb75793c4', 'info': None, 'row': 3016, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.28392189473455, 22.33604565843525, 0]}}, {'type': 'Feature', 'properties': {'id': '81908386-8fa3-45b6-9e61-012c9be0bd8f', 'info': None, 'row': 3016, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.32321325435737, 22.34276550192836, 0]}}, {'type': 'Feature', 'properties': {'id': 'df0ab7aa-0e27-432d-bad1-490b65817f3e', 'info': None, 'row': 3016, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.36233768770522, 22.349446700768844, 0]}}, {'type': 'Feature', 'properties': {'id': '36e39e31-7f5f-4d10-acc9-badb1876e6cb', 'info': None, 'row': 3016, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.40129888386907, 22.356090012004355, 0]}}, {'type': 'Feature', 'properties': {'id': 'db3c29f5-4bfe-4552-b391-848277cbe0b3', 'info': None, 'row': 3016, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.4401004100454, 22.362696167640674, 0]}}, {'type': 'Feature', 'properties': {'id': 'b0d445f7-9bc7-482c-bada-6a0c4552fe41', 'info': None, 'row': 3016, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.47874571698213, 22.369265875760274, 0]}}, {'type': 'Feature', 'properties': {'id': '565384ef-95c7-4c79-9b25-6d56d24ae503', 'info': None, 'row': 3016, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5172381441183, 22.37579982157822, 0]}}, {'type': 'Feature', 'properties': {'id': 'fe6792f6-0e26-49ce-b5a5-72bd031f3124', 'info': None, 'row': 3016, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.55558092443727, 22.382298668439052, 0]}}, {'type': 'Feature', 'properties': {'id': '30a61d70-3c50-4929-9860-d15b7b361df1', 'info': None, 'row': 3016, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.5937771890536, 22.38876305875905, 0]}}, {'type': 'Feature', 'properties': {'id': 'dbd5192f-2fe9-43b1-b5d8-2176f263d3f4', 'info': None, 'row': 3016, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.63182997155073, 22.39519361491725, 0]}}, {'type': 'Feature', 'properties': {'id': '363e84a5-cd9d-4682-8347-0ad2ea468135', 'info': None, 'row': 3016, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.66974221208554, 22.40159094009869, 0]}}, {'type': 'Feature', 'properties': {'id': '42d2ba46-5f1e-4dca-8043-676bd562f943', 'info': None, 'row': 3016, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.70751676127577, 22.40795561909285, 0]}}, {'type': 'Feature', 'properties': {'id': 'f564b765-8022-46db-8daa-33b16feeb9be', 'info': None, 'row': 3016, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.74515638388276, 22.41428821905031, 0]}}, {'type': 'Feature', 'properties': {'id': '354cc8cf-6312-4952-b2aa-807981b1f162', 'info': None, 'row': 3016, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.78266376230398, 22.420589290200144, 0]}}, {'type': 'Feature', 'properties': {'id': '558d4de7-3634-4d8e-a8f7-09245d6ea811', 'info': None, 'row': 3016, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.82004149988593, 22.426859366530437, 0]}}, {'type': 'Feature', 'properties': {'id': 'c7feb1ff-6e92-4f3a-bc85-34360dac4145', 'info': None, 'row': 3016, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.85729212406933, 22.433098966434486, 0]}}, {'type': 'Feature', 'properties': {'id': '8255c20c-4b94-4d0c-a6c1-def8f8d222f4', 'info': None, 'row': 3016, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.89441808937653, 22.439308593324423, 0]}}, {'type': 'Feature', 'properties': {'id': 'e2a5923e-1573-483f-8c38-461d17d68051', 'info': None, 'row': 3016, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.9314217802505, 22.44548873621445, 0]}}, {'type': 'Feature', 'properties': {'id': '94079aaa-f0dc-4db5-8808-761c88b10cf0', 'info': None, 'row': 3770, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.22142845951248, 22.239161535952956, 0]}}, {'type': 'Feature', 'properties': {'id': '01e91903-c8fc-4ed7-b65b-7efcc6d6be59', 'info': None, 'row': 3770, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.26104064911816, 22.245964313871454, 0]}}, {'type': 'Feature', 'properties': {'id': 'afcf4c1f-ed7f-45b3-90da-e721265ddc04', 'info': None, 'row': 3770, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.30047824780792, 22.252726879865293, 0]}}, {'type': 'Feature', 'properties': {'id': '76a5b833-52de-4acf-8fcf-01305b2a309c', 'info': None, 'row': 3770, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.33974520362867, 22.259450044449302, 0]}}, {'type': 'Feature', 'properties': {'id': 'cba8c71c-f214-4cbd-be25-579bfe73472d', 'info': None, 'row': 3770, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.3788453309176, 22.266134590660222, 0]}}, {'type': 'Feature', 'properties': {'id': '86480dbf-1821-42e2-86bc-3dd352fd5f0c', 'info': None, 'row': 3770, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.41778231642718, 22.272781275315342, 0]}}, {'type': 'Feature', 'properties': {'id': '35976cb0-a283-49ba-b708-ee88c5177950', 'info': None, 'row': 3770, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.45655972509635, 22.279390830198423, 0]}}, {'type': 'Feature', 'properties': {'id': '8ad5f46e-2281-462c-8449-f85661da4aab', 'info': None, 'row': 3770, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.49518100549287, 22.28596396317794, 0]}}, {'type': 'Feature', 'properties': {'id': 'c9087ea7-6caa-43e4-b168-29cea31cfd1d', 'info': None, 'row': 3770, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.53364949494919, 22.29250135926253, 0]}}, {'type': 'Feature', 'properties': {'id': 'a4b50692-a813-4891-a5cb-410aca458c2e', 'info': None, 'row': 3770, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.57196842441245, 22.299003681597537, 0]}}, {'type': 'Feature', 'properties': {'id': '2616a28f-6148-43dd-87a6-685263254fa6', 'info': None, 'row': 3770, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.61014092302827, 22.305471572406944, 0]}}, {'type': 'Feature', 'properties': {'id': '233d1d63-fc0f-4d18-a360-45daca9692dd', 'info': None, 'row': 3770, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.64817002247526, 22.31190565388406, 0]}}, {'type': 'Feature', 'properties': {'id': '0d960b12-7974-4a5b-a65f-03f6f28110fa', 'info': None, 'row': 3770, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.68605866106694, 22.31830652903448, 0]}}, {'type': 'Feature', 'properties': {'id': '83bd1d1b-2bc5-476f-91d8-a33f73f5d419', 'info': None, 'row': 3770, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.72380968763643, 22.32467478247424, 0]}}, {'type': 'Feature', 'properties': {'id': 'dfb4bab3-5570-4b09-9dde-bf72166a1056', 'info': None, 'row': 3770, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.76142586521671, 22.331010981186218, 0]}}, {'type': 'Feature', 'properties': {'id': '86d79a28-e32a-495e-8419-31b92adb91bb', 'info': None, 'row': 3770, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.7989098745307, 22.33731567523723, 0]}}, {'type': 'Feature', 'properties': {'id': 'fd18d803-c209-4b54-9766-cc31a2f03ea0', 'info': None, 'row': 3770, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.83626431730207, 22.343589398458388, 0]}}, {'type': 'Feature', 'properties': {'id': '84208f72-3e86-4f8f-8d75-d1568648e6ab', 'info': None, 'row': 3770, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.87349171939807, 22.349832669090993, 0]}}, {'type': 'Feature', 'properties': {'id': '80852d80-dd9b-45b4-8be5-73122ec2e900', 'info': None, 'row': 3770, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.9105945338151, 22.356045990400027, 0]}}, {'type': 'Feature', 'properties': {'id': '40c0dcb0-3284-4bd1-ae8a-598a0134812d', 'info': None, 'row': 3770, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.94757514351575, 22.362229851257098, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4f4cbaa-e26f-4563-b7ba-ebdcbc8fd363', 'info': None, 'row': 4524, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.23803385672487, 22.15583643203095, 0]}}, {'type': 'Feature', 'properties': {'id': '5e8910ee-7606-4a3c-ada8-50a1f013c46c', 'info': None, 'row': 4524, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.2776214406779, 22.16264247777952, 0]}}, {'type': 'Feature', 'properties': {'id': '1d4782f1-aebf-439a-a4a2-0d6ad02bd902', 'info': None, 'row': 4524, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.31703453638967, 22.16940833836986, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba1655e0-6f85-4668-90e3-f2feba33db7e', 'info': None, 'row': 4524, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.35627708939435, 22.176134824068317, 0]}}, {'type': 'Feature', 'properties': {'id': 'f62ae924-0199-45b8-95eb-22e7f0254973', 'info': None, 'row': 4524, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.39535291160573, 22.18282271767249, 0]}}, {'type': 'Feature', 'properties': {'id': '70f4ebc7-7789-496c-aeca-7f42d5745487', 'info': None, 'row': 4524, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.43426568743782, 22.189472775769318, 0]}}, {'type': 'Feature', 'properties': {'id': '8931fca5-cc01-4131-811b-2a8eb04b89ea', 'info': None, 'row': 4524, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.47301897957219, 22.196085729920565, 0]}}, {'type': 'Feature', 'properties': {'id': 'ee2ecb1c-cf73-440e-8b58-8c274dabf565', 'info': None, 'row': 4524, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.51161623439647, 22.20266228778071, 0]}}, {'type': 'Feature', 'properties': {'id': '6eef8649-9542-4742-b0a5-8958f05506ce', 'info': None, 'row': 4524, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.55006078713666, 22.20920313415198, 0]}}, {'type': 'Feature', 'properties': {'id': '36f54048-bf24-4d3d-b856-d8b4a71cc95b', 'info': None, 'row': 4524, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.5883558667038, 22.215708931980522, 0]}}, {'type': 'Feature', 'properties': {'id': '3f4b29a3-e405-4dbe-838c-3869d6d3d32f', 'info': None, 'row': 4524, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.62650460027459, 22.22218032329804, 0]}}, {'type': 'Feature', 'properties': {'id': 'd775ca08-56aa-4e83-a436-fdc81cd4f915', 'info': None, 'row': 4524, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.66451001762297, 22.228617930112136, 0]}}, {'type': 'Feature', 'properties': {'id': '4fdcb886-d7cd-48da-a509-cbeb7ca4d1b5', 'info': None, 'row': 4524, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.70237505521919, 22.235022355248947, 0]}}, {'type': 'Feature', 'properties': {'id': 'd1af84b8-77be-463c-8235-9180e4fe1f1c', 'info': None, 'row': 4524, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.74010256011178, 22.241394183151094, 0]}}, {'type': 'Feature', 'properties': {'id': '05844785-a543-4d89-ab34-ce278bd1bde8', 'info': None, 'row': 4524, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.7776952936055, 22.247733980633758, 0]}}, {'type': 'Feature', 'properties': {'id': '34141263-5c35-439a-8000-4aed6e6f9e46', 'info': None, 'row': 4524, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.81515593474876, 22.254042297601508, 0]}}, {'type': 'Feature', 'properties': {'id': 'c5866da5-ac2a-49f8-b3cb-d83d614b41bb', 'info': None, 'row': 4524, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.85248708364247, 22.26031966772848, 0]}}, {'type': 'Feature', 'properties': {'id': 'a37652cd-1814-4b7d-95e3-474b064fd4fe', 'info': None, 'row': 4524, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.88969126458052, 22.26656660910401, 0]}}, {'type': 'Feature', 'properties': {'id': '63724815-ccf2-4f73-82e0-b35b99a21e88', 'info': None, 'row': 4524, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.9267709290334, 22.272783624845907, 0]}}, {'type': 'Feature', 'properties': {'id': '77231e0f-d024-4ae9-bc50-9015b757ff7d', 'info': None, 'row': 4524, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.96372845848339, 22.278971203683227, 0]}}, {'type': 'Feature', 'properties': {'id': '4c23360b-fd84-4212-83da-b12a4136a493', 'info': None, 'row': 5278, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.25462261223964, 22.07257066341353, 0]}}, {'type': 'Feature', 'properties': {'id': 'e83255d3-dad0-4f14-88b6-5d3dbe0f44cb', 'info': None, 'row': 5278, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.29418583980319, 22.079379983261685, 0]}}, {'type': 'Feature', 'properties': {'id': '2b4f62c7-995e-4025-af47-111d4abb7e5d', 'info': None, 'row': 5278, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.33357468057082, 22.08614914452901, 0]}}, {'type': 'Feature', 'properties': {'id': '6daa7877-7b95-48b3-9985-69675920d348', 'info': None, 'row': 5278, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.37279307759408, 22.09287895723687, 0]}}, {'type': 'Feature', 'properties': {'id': 'e0e8f1ec-52ea-4a93-a9ab-c9a58981af34', 'info': None, 'row': 5278, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.41184484039226, 22.09957020394701, 0]}}, {'type': 'Feature', 'properties': {'id': '6b6c09f9-061c-4ebd-96e4-284cf14108c0', 'info': None, 'row': 5278, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.45073365106894, 22.106223641019195, 0]}}, {'type': 'Feature', 'properties': {'id': '766fd2c2-ed0b-46d5-946a-f7e88f3aadeb', 'info': None, 'row': 5278, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.48946307007522, 22.112839999796275, 0]}}, {'type': 'Feature', 'properties': {'id': '68b3fc6c-0221-4760-a6c6-726dfb4764d4', 'info': None, 'row': 5278, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.52803654164452, 22.119419987721685, 0]}}, {'type': 'Feature', 'properties': {'id': '91fb4841-b811-4f70-8dd2-78914b9d1f20', 'info': None, 'row': 5278, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.56645739892147, 22.125964289394062, 0]}}, {'type': 'Feature', 'properties': {'id': '64a4d428-e633-4cbb-bf37-0f151442cafb', 'info': None, 'row': 5278, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.60472886880517, 22.132473567563117, 0]}}, {'type': 'Feature', 'properties': {'id': '8ac68c66-6bb3-4aef-b068-783fd2267541', 'info': None, 'row': 5278, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.64285407652682, 22.138948464070914, 0]}}, {'type': 'Feature', 'properties': {'id': '02118e15-6ced-46cb-804b-d25f795d3a38', 'info': None, 'row': 5278, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.68083604997815, 22.145389600741872, 0]}}, {'type': 'Feature', 'properties': {'id': '6642c472-a872-4283-8bbb-fbc63e788e5c', 'info': None, 'row': 5278, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.71867772380803, 22.15179758022515, 0]}}, {'type': 'Feature', 'properties': {'id': '09927e1d-cf2c-4060-b3a3-d80d949ab780', 'info': None, 'row': 5278, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.75638194330148, 22.15817298679233, 0]}}, {'type': 'Feature', 'properties': {'id': 'd1dd6262-c2fa-4dc8-8dbe-8999a669587d', 'info': None, 'row': 5278, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.79395146805537, 22.164516387093144, 0]}}, {'type': 'Feature', 'properties': {'id': '1f13fda5-dd12-46d7-9249-8fbf37de0cb5', 'info': None, 'row': 5278, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.83138897546345, 22.170828330872176, 0]}}, {'type': 'Feature', 'properties': {'id': '4f81520c-7377-4da6-b4d3-b10fb6de6c55', 'info': None, 'row': 5278, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.86869706402284, 22.177109351648696, 0]}}, {'type': 'Feature', 'properties': {'id': '0a1984fc-f4ef-40d2-bc69-b9b074256391', 'info': None, 'row': 5278, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.90587825647265, 22.183359967362144, 0]}}, {'type': 'Feature', 'properties': {'id': '21e91df2-3971-4787-a421-38406bae5cb1', 'info': None, 'row': 5278, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.94293500277541, 22.189580680985152, 0]}}, {'type': 'Feature', 'properties': {'id': '752d981d-a3d8-46cf-ad04-1b4f6f5a6f53', 'info': None, 'row': 5278, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.97986968295044, 22.195771981106162, 0]}}, {'type': 'Feature', 'properties': {'id': '2921c34d-b750-471a-8638-80239dd58afa', 'info': None, 'row': 6032, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.27121127969059, 21.989305213461112, 0]}}, {'type': 'Feature', 'properties': {'id': '087e93c2-b717-441c-9cfd-69c73b7aa840', 'info': None, 'row': 6032, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.31075015218009, 21.996117807461744, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca10e6c7-20bc-4317-83f8-88b9499ad1d3', 'info': None, 'row': 6032, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.3501147393125, 22.002890269457865, 0]}}, {'type': 'Feature', 'properties': {'id': '4df41464-b668-4309-ac2f-05243d3e57a9', 'info': None, 'row': 6032, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.38930898165694, 22.009623409225878, 0]}}, {'type': 'Feature', 'properties': {'id': '0a206b83-21c3-47de-a82d-6d681d84b39e', 'info': None, 'row': 6032, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.42833668633835, 22.01631800909171, 0]}}, {'type': 'Feature', 'properties': {'id': 'c0ab7d67-ed6c-43d6-82ea-ab97c02af1cb', 'info': None, 'row': 6032, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.46720153315003, 22.022974825187955, 0]}}, {'type': 'Feature', 'properties': {'id': '1a3ca005-a9ed-4ab3-90be-b64be4d6b4b7', 'info': None, 'row': 6032, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.50590708031272, 22.02959458863858, 0]}}, {'type': 'Feature', 'properties': {'id': 'be74d6ac-35fc-45b6-98bf-f9f614ac7602', 'info': None, 'row': 6032, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.5444567699058, 22.036178006675982, 0]}}, {'type': 'Feature', 'properties': {'id': '86cdebfa-d4b4-4a3b-ab4c-35f2e93f9949', 'info': None, 'row': 6032, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.58285393299265, 22.042725763695238, 0]}}, {'type': 'Feature', 'properties': {'id': '36d7b019-b9af-43d2-a4d5-e75e719b14ef', 'info': None, 'row': 6032, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.6211017944606, 22.04923852224963, 0]}}, {'type': 'Feature', 'properties': {'id': 'b91a97b4-ae26-46f3-97e7-7242a746170b', 'info': None, 'row': 6032, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.65920347759538, 22.05571692399158, 0]}}, {'type': 'Feature', 'properties': {'id': '5e9e8a24-bde2-4577-8cf8-75bc6b8520b5', 'info': None, 'row': 6032, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.69716200840674, 22.062161590562372, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb502a90-a8a5-47e4-a365-d49c1546f83c', 'info': None, 'row': 6032, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.73498031972218, 22.068573124434188, 0]}}, {'type': 'Feature', 'properties': {'id': 'cb6ee4b4-9c93-439d-8adb-6676e5ba9203', 'info': None, 'row': 6032, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.77266125506337, 22.074952109707574, 0]}}, {'type': 'Feature', 'properties': {'id': '94d6b5c2-e88e-46bc-8614-d4ca5e7975f4', 'info': None, 'row': 6032, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.81020757231941, 22.08129911286685, 0]}}, {'type': 'Feature', 'properties': {'id': 'ccf0e649-e2ef-457c-ae1f-246fc910c04a', 'info': None, 'row': 6032, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.84762194722951, 22.0876146834966, 0]}}, {'type': 'Feature', 'properties': {'id': 'a39b8c66-bab8-4ef4-816b-fbee65286c86', 'info': None, 'row': 6032, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.88490697668706, 22.09389935496125, 0]}}, {'type': 'Feature', 'properties': {'id': '076bbb4c-bcb2-4bcb-bcd4-42aeb5e6d3b9', 'info': None, 'row': 6032, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.9220651818765, 22.10015364505037, 0]}}, {'type': 'Feature', 'properties': {'id': '8afa7453-a8f8-4d2f-8b99-e44baed2bb20', 'info': None, 'row': 6032, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.95909901125252, 22.10637805659141, 0]}}, {'type': 'Feature', 'properties': {'id': '29c00886-71d7-4c95-8c38-e9ed59dd5ca1', 'info': None, 'row': 6032, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-69.99601084337148, 22.11257307803223, 0]}}, {'type': 'Feature', 'properties': {'id': 'e651a301-4e85-476c-bc23-ba5b1258e0d8', 'info': None, 'row': 6786, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.28778343517328, 21.906099513197816, 0]}}, {'type': 'Feature', 'properties': {'id': 'fa269749-c2ef-4f5b-95e5-bb2034b37b8c', 'info': None, 'row': 6786, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.3272981992296, 21.912915391266232, 0]}}, {'type': 'Feature', 'properties': {'id': 'd23a7d1c-a560-4acd-bb76-ecc5e50375c8', 'info': None, 'row': 6786, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.36663877815128, 21.91969116370526, 0]}}, {'type': 'Feature', 'properties': {'id': 'f88d0dbb-cb57-4adc-bd1d-d76af7956845', 'info': None, 'row': 6786, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.4058091100548, 21.926427640050104, 0]}}, {'type': 'Feature', 'properties': {'id': 'bd9e55e6-40a3-475c-a78a-5676eb07b96e', 'info': None, 'row': 6786, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.44481299969956, 21.933125602394483, 0]}}, {'type': 'Feature', 'properties': {'id': 'ffa641cb-47bf-48ee-8605-a3863368621b', 'info': None, 'row': 6786, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.48365412459609, 21.9397858066473, 0]}}, {'type': 'Feature', 'properties': {'id': '9e851a10-e744-4cdd-8b1d-b0906915b522', 'info': None, 'row': 6786, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.52233604076154, 21.946408983717006, 0]}}, {'type': 'Feature', 'properties': {'id': '7ed8fa25-3d22-463f-8d69-3189ebc55d58', 'info': None, 'row': 6786, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.56086218814696, 21.952995840628176, 0]}}, {'type': 'Feature', 'properties': {'id': '03731dc0-5553-4634-95c1-8dc396368d9f', 'info': None, 'row': 6786, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.5992358957592, 21.959547061575442, 0]}}, {'type': 'Feature', 'properties': {'id': 'ffea0224-3201-45c8-8563-9d791256fe35', 'info': None, 'row': 6786, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.63746038649782, 21.966063308918656, 0]}}, {'type': 'Feature', 'properties': {'id': '04556ffb-667c-4e76-8f94-dab0cb4adfaa', 'info': None, 'row': 6786, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.67553878172625, 21.972545224123493, 0]}}, {'type': 'Feature', 'properties': {'id': 'abd8d61d-54af-4898-b2a4-a740e4703dc0', 'info': None, 'row': 6786, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.71347410559454, 21.978993428650874, 0]}}, {'type': 'Feature', 'properties': {'id': '576bdd6e-382a-4f96-acd2-8203164254f1', 'info': None, 'row': 6786, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.75126928913046, 21.98540852479873, 0]}}, {'type': 'Feature', 'properties': {'id': '51795b6b-8188-4ab3-b6a0-c8837e808df8', 'info': None, 'row': 6786, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.78892717411324, 21.991791096499128, 0]}}, {'type': 'Feature', 'properties': {'id': 'd46deb75-8093-42b9-be4f-66a56509f8dd', 'info': None, 'row': 6786, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.82645051674433, 21.99814171007351, 0]}}, {'type': 'Feature', 'properties': {'id': 'da97b576-811c-4f99-8ab6-5bbecc6a7847', 'info': None, 'row': 6786, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.86384199112788, 22.00446091494888, 0]}}, {'type': 'Feature', 'properties': {'id': '6772c3f5-b9bf-4155-a30c-f1fa72284aa1', 'info': None, 'row': 6786, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.90110419257269, 22.010749244337184, 0]}}, {'type': 'Feature', 'properties': {'id': '395e637e-9cd9-48ce-bbc6-406b9b67026e', 'info': None, 'row': 6786, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.93823964072672, 22.017007215880376, 0]}}, {'type': 'Feature', 'properties': {'id': '18d36fe8-e7fa-4658-9bec-530dab23bf24', 'info': None, 'row': 6786, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.97525078255454, 22.023235332262935, 0]}}, {'type': 'Feature', 'properties': {'id': '7578dfc0-d463-4d78-9381-43b0ca033977', 'info': None, 'row': 6786, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.01213999516685, 22.02943408179423, 0]}}, {'type': 'Feature', 'properties': {'id': '75b15377-2596-469f-bb3f-368518b337b4', 'info': None, 'row': 7540, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.30435589224811, 21.82289215035737, 0]}}, {'type': 'Feature', 'properties': {'id': '5f754cbd-e916-4f13-83c3-c0da5ca9d0a6', 'info': None, 'row': 7540, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.34384654892156, 21.82971131261178, 0]}}, {'type': 'Feature', 'properties': {'id': 'd144f44d-9893-4a7d-835a-9a6be49e19e2', 'info': None, 'row': 7540, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.38316312067718, 21.836490395611357, 0]}}, {'type': 'Feature', 'properties': {'id': 'be911498-5511-41fb-9642-ae6716745fc7', 'info': None, 'row': 7540, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.4223095431789, 21.843230208650123, 0]}}, {'type': 'Feature', 'properties': {'id': 'c2ce4b2b-a5d8-46ba-ab76-fc619d0b8555', 'info': None, 'row': 7540, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.46128961882074, 21.849931533589604, 0]}}, {'type': 'Feature', 'properties': {'id': '20e3aae8-f16e-4edf-ad49-f1d147a80a66', 'info': None, 'row': 7540, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5001070228306, 21.856595126115046, 0]}}, {'type': 'Feature', 'properties': {'id': '86c55012-a573-4a15-9d29-585b8c8e60cd', 'info': None, 'row': 7540, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.53876530902212, 21.86322171691937, 0]}}, {'type': 'Feature', 'properties': {'id': '9a843911-4bd8-4c8a-a88e-4c6586fc7bf2', 'info': None, 'row': 7540, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.57726791521817, 21.86981201281937, 0]}}, {'type': 'Feature', 'properties': {'id': '59e1a079-8815-4301-b6d9-2cfa090bb1d8', 'info': None, 'row': 7540, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.61561816836921, 21.876366697809225, 0]}}, {'type': 'Feature', 'properties': {'id': 'e99c7f6d-d3d9-40e3-b9a8-92dc66e2e05c', 'info': None, 'row': 7540, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.65381928938716, 21.88288643405538, 0]}}, {'type': 'Feature', 'properties': {'id': '8055e21a-9482-41e0-ae3f-c91d0eb66ce7', 'info': None, 'row': 7540, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.69187439771312, 21.889371862836775, 0]}}, {'type': 'Feature', 'properties': {'id': '2b7f359f-7d5d-42c4-b469-4428486afb31', 'info': None, 'row': 7540, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.72978651563773, 21.89582360543398, 0]}}, {'type': 'Feature', 'properties': {'id': '0c80bf47-cdd3-4819-99fe-45a07215fe58', 'info': None, 'row': 7540, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.76755857238898, 21.90224226397068, 0]}}, {'type': 'Feature', 'properties': {'id': '582bc619-826e-4ecd-a32c-084b9d20b15b', 'info': None, 'row': 7540, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.8051934080038, 21.908628422210487, 0]}}, {'type': 'Feature', 'properties': {'id': '02c84da2-df39-46c0-8e3f-31f57d679da4', 'info': None, 'row': 7540, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.8426937769961, 21.914982646311966, 0]}}, {'type': 'Feature', 'properties': {'id': '8236adcf-f4e6-4f47-9ec0-da24d13f0b8a', 'info': None, 'row': 7540, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.88006235183512, 21.921305485544544, 0]}}, {'type': 'Feature', 'properties': {'id': 'de5206a0-44a2-432a-b31b-587809073c50', 'info': None, 'row': 7540, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.91730172624503, 21.927597472967722, 0]}}, {'type': 'Feature', 'properties': {'id': '57dd90ca-8290-448d-acc5-4f419156f1fb', 'info': None, 'row': 7540, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.95441441833748, 21.933859126075816, 0]}}, {'type': 'Feature', 'properties': {'id': '9e5d8678-2bc6-4f56-ae4f-0bc7c1005f91', 'info': None, 'row': 7540, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-69.99140287358699, 21.940090947410376, 0]}}, {'type': 'Feature', 'properties': {'id': '3b00dc4c-0af3-4c92-afba-172c5b4f2807', 'info': None, 'row': 7540, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.02826946765866, 21.946293425142258, 0]}}, {'type': 'Feature', 'properties': {'id': '36e620f0-38e0-47ef-a276-b78645418551', 'info': None, 'row': 8294, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.3209735278258, 21.739435733460372, 0]}}, {'type': 'Feature', 'properties': {'id': '30e7ba80-d973-4511-903c-9b8098c686dc', 'info': None, 'row': 8294, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.36044023445311, 21.74625819760766, 0]}}, {'type': 'Feature', 'properties': {'id': '0ee91849-e61d-4d98-b7c0-3f6c12759090', 'info': None, 'row': 8294, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.39973295553105, 21.753040608790315, 0]}}, {'type': 'Feature', 'properties': {'id': '2cc1cf70-a08b-4a55-a272-8e6cf12a2c1a', 'info': None, 'row': 8294, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.43885562429179, 21.759783776063593, 0]}}, {'type': 'Feature', 'properties': {'id': 'd303fa61-370a-4960-b190-a98759680e62', 'info': None, 'row': 8294, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.47781204078385, 21.766488481059184, 0]}}, {'type': 'Feature', 'properties': {'id': 'accf606c-754f-4918-af86-bf561a8e803e', 'info': None, 'row': 8294, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5166058779719, 21.77315547924092, 0]}}, {'type': 'Feature', 'properties': {'id': '199f510c-3e24-4d0c-9a64-da6b0bf1439f', 'info': None, 'row': 8294, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.55524068748451, 21.77978550108837, 0]}}, {'type': 'Feature', 'properties': {'id': 'e217f1a4-079e-4f62-8e3f-a538885d84f3', 'info': None, 'row': 8294, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.59371990503428, 21.7863792532126, 0]}}, {'type': 'Feature', 'properties': {'id': '414ba88d-b67c-4e53-8184-ad3c9b81aaab', 'info': None, 'row': 8294, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.63204685553251, 21.792937419409377, 0]}}, {'type': 'Feature', 'properties': {'id': '54cb1c4c-51db-4a8a-860e-233f79a81209', 'info': None, 'row': 8294, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.67022475792001, 21.799460661653633, 0]}}, {'type': 'Feature', 'properties': {'id': '468c9ae5-8780-49c5-97c7-2c1a8cae46e7', 'info': None, 'row': 8294, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.70825672973179, 21.805949621039446, 0]}}, {'type': 'Feature', 'properties': {'id': 'ce5b25f6-fbd4-4b12-ba95-8232fff99bec', 'info': None, 'row': 8294, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.74614579141436, 21.812404918668836, 0]}}, {'type': 'Feature', 'properties': {'id': 'fdddff4b-ca2b-4715-907c-a283d407ef7c', 'info': None, 'row': 8294, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.78389487041107, 21.81882715649293, 0]}}, {'type': 'Feature', 'properties': {'id': '591f61b5-caad-428e-b436-7fc9bb4832c9', 'info': None, 'row': 8294, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.82150680503091, 21.82521691810858, 0]}}, {'type': 'Feature', 'properties': {'id': '3da400af-95d4-4f35-92e9-a15bfcb6cd54', 'info': None, 'row': 8294, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.85898434811429, 21.83157476951308, 0]}}, {'type': 'Feature', 'properties': {'id': '4113878d-7b68-4f7d-ac5d-9e25d9bb9f10', 'info': None, 'row': 8294, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.89633017050903, 21.837901259819844, 0]}}, {'type': 'Feature', 'properties': {'id': 'c46651ac-202c-4bfe-999c-4afcf443b9a4', 'info': None, 'row': 8294, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.93354686436776, 21.844196921937375, 0]}}, {'type': 'Feature', 'properties': {'id': '6b085082-a96b-469f-a21b-f76155c54f7c', 'info': None, 'row': 8294, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.97063694627843, 21.85046227321382, 0]}}, {'type': 'Feature', 'properties': {'id': 'a83a5b82-dbe3-4834-885f-8d519edab55b', 'info': None, 'row': 8294, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.00760286023785, 21.8566978160492, 0]}}, {'type': 'Feature', 'properties': {'id': '433ccb77-f710-40d0-8e46-99b9fa580537', 'info': None, 'row': 8294, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.04444698047737, 21.862904038477232, 0]}}, {'type': 'Feature', 'properties': {'id': '334b2314-48d9-4118-bb35-8e6a26be2094', 'info': None, 'row': 9048, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.33759083741846, 21.65598078384963, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3b7a17d-5ebf-4653-83be-cce6bafa35c7', 'info': None, 'row': 9048, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.37703359623752, 21.662806549939422, 0]}}, {'type': 'Feature', 'properties': {'id': '044ab3f0-7dc1-4833-8a8d-ee414a98812c', 'info': None, 'row': 9048, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.41630246886486, 21.669592289352828, 0]}}, {'type': 'Feature', 'properties': {'id': 'f6c44021-682d-41f0-9a5d-d31d695d6a2d', 'info': None, 'row': 9048, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.45540138610113, 21.67633881090636, 0]}}, {'type': 'Feature', 'properties': {'id': '85fac8f4-b856-43a6-b5df-687fba279f2b', 'info': None, 'row': 9048, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.49433414564962, 21.683046896001898, 0]}}, {'type': 'Feature', 'properties': {'id': 'fb4163ea-d1f8-444f-8a8b-34ce08d3fa21', 'info': None, 'row': 9048, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.53310441821198, 21.689717299881906, 0]}}, {'type': 'Feature', 'properties': {'id': 'a271704f-1fa2-4925-a903-43c23c13b305', 'info': None, 'row': 9048, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.57171575323201, 21.696350752812616, 0]}}, {'type': 'Feature', 'properties': {'id': '96bb01af-f08c-4df3-b67b-6fbf4102b4f1', 'info': None, 'row': 9048, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.61017158431218, 21.70294796119942, 0]}}, {'type': 'Feature', 'properties': {'id': '897b5637-c036-49d9-92ea-a1bfbd4f0dd6', 'info': None, 'row': 9048, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.64847523432495, 21.709509608639667, 0]}}, {'type': 'Feature', 'properties': {'id': '5365a9e2-1da5-4c4d-96f0-6ee2339e807c', 'info': None, 'row': 9048, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.68662992024022, 21.71603635691683, 0]}}, {'type': 'Feature', 'properties': {'id': '468b9cd6-61b2-45a9-a1cc-2bb84c5fba68', 'info': None, 'row': 9048, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.72463875768703, 21.72252884694014, 0]}}, {'type': 'Feature', 'properties': {'id': '5c263f4e-57b9-4558-9024-283241cc5d1b', 'info': None, 'row': 9048, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.76250476526808, 21.728987699633088, 0]}}, {'type': 'Feature', 'properties': {'id': 'e31e1b3e-87fc-4775-9482-ffadc033f76e', 'info': None, 'row': 9048, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.80023086864215, 21.73541351677428, 0]}}, {'type': 'Feature', 'properties': {'id': '111c2d83-f09a-40e3-8491-d9d473c55b25', 'info': None, 'row': 9048, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.83781990439051, 21.741806881793828, 0]}}, {'type': 'Feature', 'properties': {'id': 'e57d9ec2-e958-458e-9966-b3c7a1f99728', 'info': None, 'row': 9048, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.87527462368034, 21.748168360527757, 0]}}, {'type': 'Feature', 'properties': {'id': 'd07a8200-be8c-481b-8168-4e017e5336d2', 'info': None, 'row': 9048, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.91259769573814, 21.754498501933515, 0]}}, {'type': 'Feature', 'properties': {'id': '975fdc7e-d703-4d9f-abdd-a7620df10d56', 'info': None, 'row': 9048, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.94979171114514, 21.760797838768614, 0]}}, {'type': 'Feature', 'properties': {'id': '159b8ae7-4850-41eb-9194-c037f8219e62', 'info': None, 'row': 9048, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-69.98685918496585, 21.767066888235075, 0]}}, {'type': 'Feature', 'properties': {'id': '478d63ff-e5ca-43c6-80c4-88256a3f0945', 'info': None, 'row': 9048, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.0238025597194, 21.773306152591378, 0]}}, {'type': 'Feature', 'properties': {'id': '9fced127-8526-40f5-9fd5-9746d93eaf72', 'info': None, 'row': 9048, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.06062420820369, 21.779516119734144, 0]}}, {'type': 'Feature', 'properties': {'id': 'e84c3b71-47ab-4529-8af3-3c89f2ea7079', 'info': None, 'row': 9802, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.35416750754766, 21.572708755925596, 0]}}, {'type': 'Feature', 'properties': {'id': '1cd23c8d-eb2d-4166-b47f-23461f305fe5', 'info': None, 'row': 9802, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.39358659754922, 21.579537830145526, 0]}}, {'type': 'Feature', 'properties': {'id': '7b306954-18ad-4d87-afea-e008b8249983', 'info': None, 'row': 9802, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.43283189936683, 21.58632690373245, 0]}}, {'type': 'Feature', 'properties': {'id': '62a9dcac-9403-44ec-bd0b-f0a0e14dec76', 'info': None, 'row': 9802, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.47190734140267, 21.593076785268423, 0]}}, {'type': 'Feature', 'properties': {'id': 'd89716b4-6cb2-4057-af41-c10fe10d95c6', 'info': None, 'row': 9802, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.51081671904672, 21.59978825592954, 0]}}, {'type': 'Feature', 'properties': {'id': 'd56e382e-1f37-4f81-bd0c-3f1d6616761e', 'info': None, 'row': 9802, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.54956370076829, 21.60646207074083, 0]}}, {'type': 'Feature', 'properties': {'id': '45af1fb6-94ba-442f-b9fa-7d32e71b45ff', 'info': None, 'row': 9802, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.58815183385602, 21.61309895975893, 0]}}, {'type': 'Feature', 'properties': {'id': '7f20fe95-a128-4eb2-b0e1-b313b60ee345', 'info': None, 'row': 9802, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.62658454983084, 21.619699629187178, 0]}}, {'type': 'Feature', 'properties': {'id': '537b2452-26b5-48fc-9409-95ea5ee24792', 'info': None, 'row': 9802, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.66486516955389, 21.626264762428015, 0]}}, {'type': 'Feature', 'properties': {'id': '4dd8ae14-74c9-457c-b82a-ac1afcc20765', 'info': None, 'row': 9802, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7029969080508, 21.63279502107683, 0]}}, {'type': 'Feature', 'properties': {'id': 'b3a885f2-88bc-440a-8b8b-b18a01e856b4', 'info': None, 'row': 9802, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.74098287907037, 21.639291045861242, 0]}}, {'type': 'Feature', 'properties': {'id': '7d9a3650-c918-478f-a20f-3675195a0c2b', 'info': None, 'row': 9802, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.77882609939627, 21.645753457529334, 0]}}, {'type': 'Feature', 'properties': {'id': 'ac952578-2962-42c4-b2eb-a908bdf25968', 'info': None, 'row': 9802, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.81652949292678, 21.652182857690256, 0]}}, {'type': 'Feature', 'properties': {'id': '148d6828-e09d-4d75-8faa-82ffff9a522c', 'info': None, 'row': 9802, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.85409589453872, 21.65857982961026, 0]}}, {'type': 'Feature', 'properties': {'id': '77e1df09-7421-44ca-a71d-57d3200ee4e1', 'info': None, 'row': 9802, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.8915280537483, 21.66494493896696, 0]}}, {'type': 'Feature', 'properties': {'id': '27696622-8dbb-48b8-b295-04e79416b2ef', 'info': None, 'row': 9802, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.92882863818255, 21.67127873456454, 0]}}, {'type': 'Feature', 'properties': {'id': 'a61c0154-4fa8-420f-b0af-34a73cf7404c', 'info': None, 'row': 9802, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.96600023687242, 21.67758174901219, 0]}}, {'type': 'Feature', 'properties': {'id': '968af0a7-23ad-4ba5-ba62-fe984ed8f3ce', 'info': None, 'row': 9802, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.00304536337927, 21.683854499368337, 0]}}, {'type': 'Feature', 'properties': {'id': '15a947fa-446c-4835-82ce-0866b3fe026e', 'info': None, 'row': 9802, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.03996645876435, 21.69009748775241, 0]}}, {'type': 'Feature', 'properties': {'id': '8ec0b807-d436-4d70-9852-aef336fe5746', 'info': None, 'row': 9802, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.07676589441117, 21.6963112019263, 0]}}, {'type': 'Feature', 'properties': {'id': '36542e64-caa8-415b-9174-a5181a10c4b8', 'info': None, 'row': 10556, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.37074402880062, 21.489437287107858, 0]}}, {'type': 'Feature', 'properties': {'id': 'ecfe154a-faac-47b1-853d-5ec5764ef4bc', 'info': None, 'row': 10556, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.41013945224904, 21.496269669554785, 0]}}, {'type': 'Feature', 'properties': {'id': '740e3c34-2144-4585-b379-2a7097ab3cdc', 'info': None, 'row': 10556, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.44936118551006, 21.503062077410227, 0]}}, {'type': 'Feature', 'properties': {'id': 'b91cfaae-3029-4bad-886f-cacd1ba20242', 'info': None, 'row': 10556, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.48841315458766, 21.509815319021808, 0]}}, {'type': 'Feature', 'properties': {'id': 'c68019da-61d7-4ca1-850c-b0197c556338', 'info': None, 'row': 10556, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.52729915255883, 21.516530175339852, 0]}}, {'type': 'Feature', 'properties': {'id': '96a9dc23-8611-4bea-a226-826244bad0da', 'info': None, 'row': 10556, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.56602284566073, 21.52320740117201, 0]}}, {'type': 'Feature', 'properties': {'id': '3428ce12-07e2-4310-b032-36e4d661646c', 'info': None, 'row': 10556, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.60458777902713, 21.52984772636534, 0]}}, {'type': 'Feature', 'properties': {'id': '57a1ae53-a083-468c-af5b-482c6600b75b', 'info': None, 'row': 10556, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.64299738209766, 21.53645185692117, 0]}}, {'type': 'Feature', 'properties': {'id': '3f08e733-a5cb-4639-856e-f92252fb6ae1', 'info': None, 'row': 10556, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.68125497372236, 21.54302047604706, 0]}}, {'type': 'Feature', 'properties': {'id': '5a2fdc69-f74c-447e-99ce-08601acea718', 'info': None, 'row': 10556, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7193637669828, 21.54955424515033, 0]}}, {'type': 'Feature', 'properties': {'id': 'cd4e68aa-10fe-4c9f-88e8-d35997dac347', 'info': None, 'row': 10556, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.75732687374774, 21.55605380477702, 0]}}, {'type': 'Feature', 'properties': {'id': '9e36a445-5491-49f6-943f-f4b0b4fbe077', 'info': None, 'row': 10556, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.79514730898205, 21.562519775499837, 0]}}, {'type': 'Feature', 'properties': {'id': '2f4bfad7-38ba-499a-8717-a3b5436910be', 'info': None, 'row': 10556, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.83282799482373, 21.568952758758495, 0]}}, {'type': 'Feature', 'properties': {'id': '3aaa66b3-ac0d-465c-8170-3baa7fd5a002', 'info': None, 'row': 10556, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.87037176444522, 21.575353337655418, 0]}}, {'type': 'Feature', 'properties': {'id': '7780c87f-2a4f-4448-a4f9-bc191cb74072', 'info': None, 'row': 10556, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.90778136571215, 21.581722077709827, 0]}}, {'type': 'Feature', 'properties': {'id': '4b1b535c-102f-41b3-ba78-31984334c6c6', 'info': None, 'row': 10556, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.94505946465213, 21.588059527572657, 0]}}, {'type': 'Feature', 'properties': {'id': '2d15bfb2-2bae-493c-a664-32d1cbef3caf', 'info': None, 'row': 10556, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.98220864874601, 21.59436621970481, 0]}}, {'type': 'Feature', 'properties': {'id': '6e01b91e-0fee-41cd-8ad3-0073d1f13d77', 'info': None, 'row': 10556, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.01923143005219, 21.600642671021134, 0]}}, {'type': 'Feature', 'properties': {'id': 'd4a6b37a-1208-4a39-95dd-39f8dd3a0843', 'info': None, 'row': 10556, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.05613024817421, 21.60688938350203, 0]}}, {'type': 'Feature', 'properties': {'id': '581f6f7b-188b-4e0f-b758-8c9ebe928c02', 'info': None, 'row': 10556, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.09290747308131, 21.61310684477467, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc94ffeb-3e61-4c94-9b91-7b549612efdf', 'info': None, 'row': 11310, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.38730466283423, 21.406225482919048, 0]}}, {'type': 'Feature', 'properties': {'id': '972a6616-d6d7-4aef-8d41-296983dcaedd', 'info': None, 'row': 11310, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.42667666136606, 21.413061183930143, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6d341c3-3d35-4225-8b12-c7606e955426', 'info': None, 'row': 11310, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.46587506651174, 21.41985693619145, 0]}}, {'type': 'Feature', 'properties': {'id': 'ca953882-b81d-4026-a566-cfd735407587', 'info': None, 'row': 11310, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.50490380190655, 21.42661354781992, 0]}}, {'type': 'Feature', 'properties': {'id': '7cea7e9a-3bc4-4693-9b64-1d0f76510cee', 'info': None, 'row': 11310, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.54376665834249, 21.43333179954377, 0]}}, {'type': 'Feature', 'properties': {'id': '96735a58-282f-4128-bf9e-68c1eea8c40e', 'info': None, 'row': 11310, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.5824672998519, 21.440012445956697, 0]}}, {'type': 'Feature', 'properties': {'id': 'a346a17f-563f-4bb7-b86b-5b9dd230e75f', 'info': None, 'row': 11310, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.62100926943981, 21.44665621669959, 0]}}, {'type': 'Feature', 'properties': {'id': '6f3bb129-472a-4094-bfca-c1cd7ad9ca9c', 'info': None, 'row': 11310, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.65939599448987, 21.453263817574964, 0]}}, {'type': 'Feature', 'properties': {'id': '0b154ff2-ec70-4b18-a6f0-0d6b2122eed5', 'info': None, 'row': 11310, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.6976307918654, 21.459835931598597, 0]}}, {'type': 'Feature', 'properties': {'id': 'f95b72ed-7a21-4ef1-84e3-9210da6a2b72', 'info': None, 'row': 11310, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.73571687272744, 21.466373219992747, 0]}}, {'type': 'Feature', 'properties': {'id': '22acdf7f-3e54-4c4a-aac1-2a82f6f98864', 'info': None, 'row': 11310, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.7736573470875, 21.47287632312476, 0]}}, {'type': 'Feature', 'properties': {'id': '4805b290-d020-4d24-bc44-f2d7dfedd54b', 'info': None, 'row': 11310, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.81145522811349, 21.479345861394783, 0]}}, {'type': 'Feature', 'properties': {'id': '56a9472f-6207-4411-8981-3669638fead3', 'info': None, 'row': 11310, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.84911343620439, 21.485782436075745, 0]}}, {'type': 'Feature', 'properties': {'id': '5927fb29-8524-42b1-a89e-510f2c738798', 'info': None, 'row': 11310, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.88663480284893, 21.49218663010886, 0]}}, {'type': 'Feature', 'properties': {'id': '2896baee-f52e-438f-97fc-243cda3c5666', 'info': None, 'row': 11310, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.92402207428182, 21.49855900885747, 0]}}, {'type': 'Feature', 'properties': {'id': '9bb57826-52c5-4ece-87b2-125d42f6ce9d', 'info': None, 'row': 11310, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.96127791495059, 21.504900120821674, 0]}}, {'type': 'Feature', 'properties': {'id': 'e4fb0ab0-8345-4d48-9549-fc2fce572225', 'info': None, 'row': 11310, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-69.99840491080448, 21.511210498316437, 0]}}, {'type': 'Feature', 'properties': {'id': 'd05b3fa9-4b1b-4682-bcf1-e2635026b207', 'info': None, 'row': 11310, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.03540557241703, 21.517490658115303, 0]}}, {'type': 'Feature', 'properties': {'id': '8a5a7b5f-ffa8-4bdf-9893-cb60c72b7a15', 'info': None, 'row': 11310, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.0722823379515, 21.52374110206182, 0]}}, {'type': 'Feature', 'properties': {'id': 'ab84b497-3276-4978-91b4-239dcb54e4e9', 'info': None, 'row': 11310, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.10903757597976, 21.529962317650607, 0]}}, {'type': 'Feature', 'properties': {'id': '4fc60c34-c1cf-4900-86cd-87a4a176adf3', 'info': None, 'row': 12064, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.40386539187946, 21.32301299577244, 0]}}, {'type': 'Feature', 'properties': {'id': '598e586b-0144-4646-85bf-9803526ca96f', 'info': None, 'row': 12064, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.4432139677071, 21.32985201546722, 0]}}, {'type': 'Feature', 'properties': {'id': '78ce85c2-b4b6-4d4e-acd3-e308271f6789', 'info': None, 'row': 12064, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.48238904693854, 21.33665111225236, 0]}}, {'type': 'Feature', 'properties': {'id': 'a23bf9e6-21cc-49ca-9d8e-9b3d2e1ebec9', 'info': None, 'row': 12064, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.52139455084061, 21.34341109401416, 0]}}, {'type': 'Feature', 'properties': {'id': '3323a385-47b7-4afa-8f18-f3e7ac3389bd', 'info': None, 'row': 12064, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.5602342679207, 21.350132741258776, 0]}}, {'type': 'Feature', 'properties': {'id': '5dea3869-1f95-4eff-a533-a9fab273ecc4', 'info': None, 'row': 12064, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.59891186000651, 21.356816808365974, 0]}}, {'type': 'Feature', 'properties': {'id': 'a6b2f3a5-6dd5-4699-9a65-bc2539980d01', 'info': None, 'row': 12064, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.63743086797462, 21.363464024770494, 0]}}, {'type': 'Feature', 'properties': {'id': '08bd3659-b2be-4c34-a811-93e92e29b5df', 'info': None, 'row': 12064, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.67579471715285, 21.37007509607607, 0]}}, {'type': 'Feature', 'properties': {'id': '9ed7a93d-eb3b-4ee6-8be5-47ec7bd35552', 'info': None, 'row': 12064, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.71400672241812, 21.376650705106737, 0]}}, {'type': 'Feature', 'properties': {'id': '2802fce2-0c7a-43f1-96b6-d208d930f96b', 'info': None, 'row': 12064, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.75207009301111, 21.383191512899696, 0]}}, {'type': 'Feature', 'properties': {'id': '60f943d9-8934-4597-b591-cfb831bbf27b', 'info': None, 'row': 12064, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.7899879370863, 21.389698159643654, 0]}}, {'type': 'Feature', 'properties': {'id': '8f71db13-ec5d-4ef4-9d9d-34162208dcf2', 'info': None, 'row': 12064, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.82776326601493, 21.396171265566185, 0]}}, {'type': 'Feature', 'properties': {'id': '1939ee2f-1446-4157-a487-941b865b02b4', 'info': None, 'row': 12064, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.8653989984571, 21.402611431773483, 0]}}, {'type': 'Feature', 'properties': {'id': 'f51a6df8-10ea-407a-afba-cc35c7987b74', 'info': None, 'row': 12064, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.90289796421794, 21.409019241045574, 0]}}, {'type': 'Feature', 'properties': {'id': 'c04e5e8d-7fe5-4359-b295-3328ed249c41', 'info': None, 'row': 12064, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.94026290790153, 21.415395258589918, 0]}}, {'type': 'Feature', 'properties': {'id': '1807b1c9-9c0a-4057-9059-e8d221b63046', 'info': None, 'row': 12064, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.97749649237542, 21.42174003275582, 0]}}, {'type': 'Feature', 'properties': {'id': 'bea5fdf4-0669-4a15-b4d8-25f09b454bde', 'info': None, 'row': 12064, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.01460130205759, 21.428054095712337, 0]}}, {'type': 'Feature', 'properties': {'id': '5ffb2061-7249-40f2-8024-d09b5b47c35a', 'info': None, 'row': 12064, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.0515798460367, 21.4343379640917, 0]}}, {'type': 'Feature', 'properties': {'id': '55ec37dc-aa40-4039-b31c-621a7bdb7447', 'info': None, 'row': 12064, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.08843456103594, 21.44059213960064, 0]}}, {'type': 'Feature', 'properties': {'id': '3fb3ea67-258d-4cb1-8598-cc71bccda890', 'info': None, 'row': 12064, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.12516781422997, 21.44681710960124, 0]}}, {'type': 'Feature', 'properties': {'id': '3e59ee75-3160-4990-9a03-9b56d98a0cad', 'info': None, 'row': 12818, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.42043498076094, 21.2397368228114, 0]}}, {'type': 'Feature', 'properties': {'id': 'c6492ecb-8314-4a74-9513-66f5c377829e', 'info': None, 'row': 12818, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.45976034018736, 21.24657917233489, 0]}}, {'type': 'Feature', 'properties': {'id': '7f3affd5-46ba-455b-b5e7-c73cbe9348f4', 'info': None, 'row': 12818, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.49891229875637, 21.253381624644106, 0]}}, {'type': 'Feature', 'properties': {'id': '77f24c04-7e3f-4045-b4a9-aa66cb457958', 'info': None, 'row': 12818, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.53789477539198, 21.26014498739772, 0]}}, {'type': 'Feature', 'properties': {'id': '7100ca99-99a6-4fa8-bbd8-4ee69142b8e6', 'info': None, 'row': 12818, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.57671155634172, 21.2668700408827, 0]}}, {'type': 'Feature', 'properties': {'id': '17529140-ec82-47cd-9b7a-f7e9ed82607a', 'info': None, 'row': 12818, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.61536630125264, 21.273557539267717, 0]}}, {'type': 'Feature', 'properties': {'id': 'd30cbce2-b242-4dec-8f0a-57f1cd533e5a', 'info': None, 'row': 12818, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.65386254889583, 21.28020821178403, 0]}}, {'type': 'Feature', 'properties': {'id': '3e745311-4070-43bd-ad00-ecf5b93c810e', 'info': None, 'row': 12818, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.69220372256555, 21.28682276383918, 0]}}, {'type': 'Feature', 'properties': {'id': '31dba5be-aeb2-4908-9756-f275cb7ae181', 'info': None, 'row': 12818, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.73039313517361, 21.29340187806794, 0]}}, {'type': 'Feature', 'properties': {'id': 'c8585646-b747-4a46-bb1e-a92588187de9', 'info': None, 'row': 12818, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.7684339940611, 21.299946215324887, 0]}}, {'type': 'Feature', 'properties': {'id': '08564d48-7102-4fa3-8af3-bf32fa5113b4', 'info': None, 'row': 12818, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.80632940554534, 21.30645641562237, 0]}}, {'type': 'Feature', 'properties': {'id': 'daebad36-9bfc-4c61-aa93-e447102a7335', 'info': None, 'row': 12818, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.84408237922023, 21.31293309901762, 0]}}, {'type': 'Feature', 'properties': {'id': '4c701c53-4866-4eda-97d2-5a5f2f64ed6e', 'info': None, 'row': 12818, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.88169583202557, 21.319376866452252, 0]}}, {'type': 'Feature', 'properties': {'id': '5411625c-88e3-45c6-9bdb-1b8480277826', 'info': None, 'row': 12818, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.91917259210095, 21.325788300547188, 0]}}, {'type': 'Feature', 'properties': {'id': '7b8ad3c5-9df7-4cdf-890d-f9de287b571e', 'info': None, 'row': 12818, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.95651540243722, 21.332167966355996, 0]}}, {'type': 'Feature', 'properties': {'id': '49b92d57-5f12-42a8-a51a-8a65d4d79be3', 'info': None, 'row': 12818, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-69.9937269243388, 21.338516412079144, 0]}}, {'type': 'Feature', 'properties': {'id': 'c1dc30c2-77f1-4e3c-bfab-787d54aaceb5', 'info': None, 'row': 12818, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.03080974070859, 21.344834169741596, 0]}}, {'type': 'Feature', 'properties': {'id': 'ad3cec34-8054-413d-9f9f-a6b1440f47fe', 'info': None, 'row': 12818, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.06776635916631, 21.35112175583614, 0]}}, {'type': 'Feature', 'properties': {'id': 'c0ac1d5f-bb75-4d18-b2cd-bddaef1c07a1', 'info': None, 'row': 12818, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.10459921501034, 21.35737967193441, 0]}}, {'type': 'Feature', 'properties': {'id': '751f9a3d-f6ba-4e8e-b439-ba9d16d86503', 'info': None, 'row': 12818, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.14131067403294, 21.36360840526763, 0]}}, {'type': 'Feature', 'properties': {'id': '9b65737d-99f1-4bc4-acc0-3854d97d2498', 'info': None, 'row': 13572, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.43700467775935, 21.15645988638826, 0]}}, {'type': 'Feature', 'properties': {'id': 'abeb28c5-e21f-4d99-9eb5-5ab83bc0262c', 'info': None, 'row': 13572, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.47630682326003, 21.163305565912456, 0]}}, {'type': 'Feature', 'properties': {'id': '2bf1b48f-ea58-42c9-839b-302e644a2cd5', 'info': None, 'row': 13572, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.51543566362946, 21.17011137391587, 0]}}, {'type': 'Feature', 'properties': {'id': '73766aee-da47-443c-add0-6e436a710c16', 'info': None, 'row': 13572, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.55439511544914, 21.176878117829567, 0]}}, {'type': 'Feature', 'properties': {'id': '0c7d9b4a-b56b-49bf-b383-e950df51001f', 'info': None, 'row': 13572, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.59318896270707, 21.183606577721402, 0]}}, {'type': 'Feature', 'properties': {'id': '648c3b85-eea7-4756-abac-90510f42d117', 'info': None, 'row': 13572, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.63182086286989, 21.190297507548962, 0]}}, {'type': 'Feature', 'properties': {'id': '8081af61-6c03-49d4-8b2a-efd18c31b0fe', 'info': None, 'row': 13572, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.67029435260355, 21.19695163634007, 0]}}, {'type': 'Feature', 'properties': {'id': '32a665bb-65af-4d42-a1da-26a42ac391ec', 'info': None, 'row': 13572, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.70861285316889, 21.203569669306102, 0]}}, {'type': 'Feature', 'properties': {'id': '50d916c8-df09-47ce-8271-4c0833a4a33c', 'info': None, 'row': 13572, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.74677967551303, 21.21015228889262, 0]}}, {'type': 'Feature', 'properties': {'id': 'a1c46a66-2bb9-422a-8e70-7517ce100376', 'info': None, 'row': 13572, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.78479802507756, 21.216700155771576, 0]}}, {'type': 'Feature', 'properties': {'id': '263a0ba4-72ff-49bf-bc9a-5efba8f7e491', 'info': None, 'row': 13572, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.82267100634301, 21.223213909779023, 0]}}, {'type': 'Feature', 'properties': {'id': 'fc30c718-64b4-4f74-a1d6-a3b60ac07012', 'info': None, 'row': 13572, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.86040162712605, 21.229694170801857, 0]}}, {'type': 'Feature', 'properties': {'id': '6cbbd41c-7a0a-4a04-b329-9b4df1d5beeb', 'info': None, 'row': 13572, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.8979928026465, 21.23614153961715, 0]}}, {'type': 'Feature', 'properties': {'id': 'cc45da0b-62e0-4ab2-aaa2-bda8a0639fdc', 'info': None, 'row': 13572, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.9354473593786, 21.242556598686747, 0]}}, {'type': 'Feature', 'properties': {'id': '6d69f2d4-ba3e-431b-901f-92863754e131', 'info': None, 'row': 13572, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.97276803870015, 21.248939912910355, 0]}}, {'type': 'Feature', 'properties': {'id': '019784f4-837e-4777-9c97-6835eb29f4ed', 'info': None, 'row': 13572, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-70.00995750035267, 21.255292030339632, 0]}}, {'type': 'Feature', 'properties': {'id': '778bf225-92c9-49b9-89a0-e5546474173e', 'info': None, 'row': 13572, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.0470183257242, 21.26161348285546, 0]}}, {'type': 'Feature', 'properties': {'id': '56a34edb-96cb-434f-bcc9-d0f0298cdf8a', 'info': None, 'row': 13572, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.08395302096565, 21.267904786811226, 0]}}, {'type': 'Feature', 'properties': {'id': '73962f6c-9ec1-45bc-b0fb-47cf001a6150', 'info': None, 'row': 13572, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.12076401995081, 21.274166443643473, 0]}}, {'type': 'Feature', 'properties': {'id': '31df8019-8acf-4c73-9e80-b37d27eb8522', 'info': None, 'row': 13572, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.15745368708973, 21.28039894045261, 0]}}, {'type': 'Feature', 'properties': {'id': '79d3f5c0-37c8-4758-8f36-e1d29103aacc', 'info': None, 'row': 14326, 'col': 0}, 'geometry': {'type': 'Point', 'coordinates': [-69.45358332443669, 21.073119752269143, 0]}}, {'type': 'Feature', 'properties': {'id': '718c7c19-4c1e-49ad-b4fa-7c1814ea9914', 'info': None, 'row': 14326, 'col': 1189}, 'geometry': {'type': 'Point', 'coordinates': [-69.49286246092618, 21.07996877603113, 0]}}, {'type': 'Feature', 'properties': {'id': '65effddc-26ac-4553-bf08-c5ef13c7da96', 'info': None, 'row': 14326, 'col': 2378}, 'geometry': {'type': 'Point', 'coordinates': [-69.53196838696581, 21.086777953810635, 0]}}, {'type': 'Feature', 'properties': {'id': 'e97cfb9a-3106-4821-b1dc-b51e1d2af0e6', 'info': None, 'row': 14326, 'col': 3567}, 'geometry': {'type': 'Point', 'coordinates': [-69.57090501682015, 21.093548092814416, 0]}}, {'type': 'Feature', 'properties': {'id': '2085bcf8-cf75-4e90-8429-2f5fd4f10ae0', 'info': None, 'row': 14326, 'col': 4756}, 'geometry': {'type': 'Point', 'coordinates': [-69.60967613224247, 21.100279972894395, 0]}}, {'type': 'Feature', 'properties': {'id': '66ff1acb-d18d-45fd-ba46-9feff73d3e99', 'info': None, 'row': 14326, 'col': 5945}, 'geometry': {'type': 'Point', 'coordinates': [-69.6482853885426, 21.106974347800104, 0]}}, {'type': 'Feature', 'properties': {'id': '39add393-7749-4dc5-8d28-1db3df6520de', 'info': None, 'row': 14326, 'col': 7134}, 'geometry': {'type': 'Point', 'coordinates': [-69.6867363203043, 21.11363194635887, 0]}}, {'type': 'Feature', 'properties': {'id': '0a9dfcc7-7e02-4ceb-89cc-7af979cd5758', 'info': None, 'row': 14326, 'col': 8323}, 'geometry': {'type': 'Point', 'coordinates': [-69.72503234677717, 21.12025347358874, 0]}}, {'type': 'Feature', 'properties': {'id': 'dd376bc9-2894-46e4-a963-2f078e09ece6', 'info': None, 'row': 14326, 'col': 9512}, 'geometry': {'type': 'Point', 'coordinates': [-69.76317677696474, 21.126839611748785, 0]}}, {'type': 'Feature', 'properties': {'id': 'aa6ecc85-fc22-4acf-9dea-f85e540cb65d', 'info': None, 'row': 14326, 'col': 10701}, 'geometry': {'type': 'Point', 'coordinates': [-69.80117281442983, 21.13339102133095, 0]}}, {'type': 'Feature', 'properties': {'id': '30094288-45da-4314-8e01-dd8c5c4982b9', 'info': None, 'row': 14326, 'col': 11890}, 'geometry': {'type': 'Point', 'coordinates': [-69.83902356183592, 21.13990834199751, 0]}}, {'type': 'Feature', 'properties': {'id': 'b53e908b-a3ee-419d-af17-d047969953e4', 'info': None, 'row': 14326, 'col': 13079}, 'geometry': {'type': 'Point', 'coordinates': [-69.8767320252417, 21.146392193467506, 0]}}, {'type': 'Feature', 'properties': {'id': '9de9d3a8-5b21-44e9-946f-f173916b76a1', 'info': None, 'row': 14326, 'col': 14268}, 'geometry': {'type': 'Point', 'coordinates': [-69.91430111816547, 21.15284317635578, 0]}}, {'type': 'Feature', 'properties': {'id': 'f3c020a4-9e0b-4106-852d-220c8e574689', 'info': None, 'row': 14326, 'col': 15457}, 'geometry': {'type': 'Point', 'coordinates': [-69.951733665434, 21.15926187296737, 0]}}, {'type': 'Feature', 'properties': {'id': '9469a880-a0aa-4f03-8d36-647179a0308e', 'info': None, 'row': 14326, 'col': 16646}, 'geometry': {'type': 'Point', 'coordinates': [-69.98903240682941, 21.165648848050353, 0]}}, {'type': 'Feature', 'properties': {'id': 'e111d008-71ff-467d-8dad-70d8b30e3216', 'info': None, 'row': 14326, 'col': 17835}, 'geometry': {'type': 'Point', 'coordinates': [-70.02620000054705, 21.17200464950964, 0]}}, {'type': 'Feature', 'properties': {'id': 'ba75f7b2-14ba-439e-8799-032fc5a27a5c', 'info': None, 'row': 14326, 'col': 19024}, 'geometry': {'type': 'Point', 'coordinates': [-70.06323902647637, 21.178329809084154, 0]}}, {'type': 'Feature', 'properties': {'id': '0e71a27e-f1f0-41ab-ab95-1d59389c1008', 'info': None, 'row': 14326, 'col': 20213}, 'geometry': {'type': 'Point', 'coordinates': [-70.1001519893151, 21.1846248429898, 0]}}, {'type': 'Feature', 'properties': {'id': '9d2757a8-f7db-41bb-948d-48e3912c9291', 'info': None, 'row': 14326, 'col': 21402}, 'geometry': {'type': 'Point', 'coordinates': [-70.13694132152764, 21.190890252529975, 0]}}, {'type': 'Feature', 'properties': {'id': '797b6191-3f18-428e-a6de-4ab438678fbe', 'info': None, 'row': 14326, 'col': 22591}, 'geometry': {'type': 'Point', 'coordinates': [-70.17360938615658, 21.197126524676104, 0]}}]}
array(0)
- comment :
- denoised digital number, read at full resolution
- history :
- digital_number: measurement/s1a-iw3-slc-v*-20170907t102953-20170907t103021-018268-01eb76-00*.tiff
additional informations
deramping TOPS SLC :https://sentinels.copernicus.eu