Get Dark Area Values from Across SSA and Mini-Grid Brightness Values¶

This notebook takes an open source-data set of mini-grid locations across Sub-Saharan Africa and extracts the nightlight brightness values from the VIIRS nightlights data set for each mini-grid location. It also extracts the nightlight brightness values for a set of random dark areas across SSA to use as a comparison, sampled specifically to be in areas with low- to no-inhabitants as baselines for nighttime brightness. africa-night-lights

In [ ]:
# import geemap and geopandas for spatial data handling and their dependencies
import ee
import geemap
import pandas as pd
import geopandas as gpd

Authenticate & Initialize GEE¶

Requires a Google Cloud Project and to enable the Earth Engine API for the project. Find detailed instructions here.

In [20]:
ee.Initialize()

Create a GEEMap Object¶

In [21]:
m = geemap.Map(
    center=[-5, 15], 
    zoom=3, 
    basemap = 'Esri.WorldImagery',
    height = 1000
)

Add Layers to the Map¶

Let's visualize the VIIRS nighttime lights on the map to help guide our sampling of dark areas.

In [22]:
# add nightlights median
# https://developers.google.com/earth-engine/datasets/catalog/NOAA_VIIRS_DNB_MONTHLY_V1_VCMSLCFG
dataset_night = ee.ImageCollection('NOAA/VIIRS/DNB/MONTHLY_V1/VCMSLCFG') \
                  .filter(ee.Filter.date('2020-01-01', '2024-01-01'))
nighttime = dataset_night.select('avg_rad')
image_night = nighttime.median()
nighttimeVis = {'min': 0.0, 'max': 2.0}
m.addLayer(image_night, nighttimeVis, 'Nighttime', True)
In [ ]:
# add latest world pop data layer
# https://developers.google.com/earth-engine/datasets/catalog/WorldPop_GP_100m_pop
# dataset_pop = ee.ImageCollection('WorldPop/GP/100m/pop') \
#                   .filter(ee.Filter.date('2020-01-01', '2024-01-01'))
# pop = dataset_pop.select('population')
# image_pop = pop.median()
# popVis = {'min': 0.0, 'max': 20.0, 'palette': ['24126c', '1fff4f', 'd4ff50']}
# m.addLayer(image_pop, popVis, 'Population', True)
In [24]:
# add DarkMatter country labels to basemap
m.add_basemap('CartoDB.VoyagerOnlyLabels')
In [25]:
# show map
m
Out[25]:
Map(center=[-5, 15], controls=(WidgetControl(options=['position', 'transparent_bg'], position='topright', tran…
In [26]:
# set zoom to 4.5
m.setCenter(10, -1, 4.5)

Draw, Save, then Read in Ocean, Desert, and Jungle Features¶

Looking at the map above, we can then hand-draw polygons around areas that are clearly ocean, desert, or jungle. These areas should have very low to no inhabitants, and thus should have very low nightlight brightness values. After drawing the polygons, we can save them as a GeoJSON file and then read them back in as a GeoDataFrame for sampling.

In [27]:
# save the ocean polygon drawn on the map to a ee.Feature object
# ocean_feat = m.draw_last_feature
# # export the ee.Feature object to a geojson
# geemap.ee_to_geojson(ocean_feat, 'data/dark_africa/ocean2.geo.json')
In [28]:
# save desert polygon
# desert_feat = m.draw_last_feature
# geemap.ee_to_geojson(desert_feat, 'data/dark_africa/desert.geo.json')
In [29]:
# jungle poly
# jungle_feat = m.draw_last_feature
# geemap.ee_to_geojson(jungle_feat, 'data/dark_africa/jungle.geo.json')
In [30]:
# read back in geojson files to ee features
ocean_feat = geemap.geojson_to_ee('data/dark_africa/ocean2.geo.json')
desert_feat = geemap.geojson_to_ee('data/dark_africa/desert.geo.json')
jungle_feat = geemap.geojson_to_ee('data/dark_africa/jungle.geo.json')
In [31]:
# add the features to the map
m.addLayer(ocean_feat, {'color': 'blue'}, 'ocean')
m.addLayer(desert_feat, {'color': 'orange'}, 'desert')
m.addLayer(jungle_feat, {'color': 'darkgreen'}, 'jungle')

Get Countries with Mini-Grids and Polygons¶

Now that we have our "dark areas" defined, we can read in the open-source mini-grid data sets and get the countries that have mini-grids in them. We'll skip the Cross-Boundary and PowerGen data sets for now since their mini-grid locations are private data.

In [32]:
# get list of countries in CLUB-ER dataset
cluber_df = pd.read_csv('data/cluber/cluber_sites_clean.csv')
# cbil_df = pd.read_csv('data/cbil/site_data.csv')
# pg_df = pd.read_csv('data/pg/site_data.csv')

# covert date_commissioned to date
cluber_df['date_commissioned'] = pd.to_datetime(cluber_df['date_commissioned'])
# filter out sites commissioned before 2014-01-01
cluber_df = cluber_df[cluber_df['date_commissioned'] >= '2014-01-01']

# get a unique list of countries
cluber_countries = cluber_df['country'].unique()
print('Club-ER Countries: ', cluber_countries)
# cbil_countries = cbil_df['country'].unique()
# print('Cross Boundary Countries: ', cbil_countries)
# pg_countries = pg_df['country'].unique()
# print('PowerGen Countries: ', pg_countries)

# count the number of mini-grids in each country
cluber_count = cluber_df['country'].value_counts()
# cbil_count = cbil_df['country'].value_counts()
# pg_count = pg_df['country'].value_counts()
# sum together by country
# all_minigrid_counts = cluber_count.add(cbil_count, fill_value=0).add(pg_count, fill_value=0).sort_index()
all_minigrid_counts = cluber_count
# conver to integers
all_minigrid_counts = all_minigrid_counts.astype(int)
print('All Mini-Grid Counts: ', all_minigrid_counts)



# modify list of countries
# combine the three lists of countries into one with just unique values
# all_minigrid_countries = list(set(cluber_countries) | set(cbil_countries) | set(pg_countries))
all_minigrid_countries = list(set(cluber_countries))
# remove nan values
all_minigrid_countries = [x for x in all_minigrid_countries if str(x) != 'nan']
# exclude Haiti
all_minigrid_countries = [x for x in all_minigrid_countries if x != 'Haiti']
# rename DR Congo to Democratic Republic of the Congo
all_minigrid_countries = [x if x != 'DR Congo' else 'Democratic Republic of the Congo' for x in all_minigrid_countries]
# rename Tanzania to United Republic of Tanzania
all_minigrid_countries = [x if x != 'Tanzania' else 'United Republic of Tanzania' for x in all_minigrid_countries]

print('All Countries', all_minigrid_countries)
print('Number of countries: ', len(all_minigrid_countries))
# export the list of countries to a csv
pd.DataFrame(all_minigrid_countries, columns=['country']).to_csv('data/dark_africa/countries.csv', index=False)
Club-ER Countries:  ['Angola' 'Burkina Faso' 'Cameroon' 'DR Congo' 'Ethiopia' 'Ghana' 'Kenya'
 'Liberia' 'Madagascar' 'Mali' 'Mauritania' 'Senegal' 'Tanzania' 'Togo'
 'Zambia' 'Zimbabwe']
All Mini-Grid Counts:  country
Mali            187
Togo            107
DR Congo        101
Senegal          90
Kenya            88
Tanzania         51
Cameroon         27
Mauritania       20
Madagascar       16
Burkina Faso     15
Liberia          11
Ghana             2
Angola            1
Ethiopia          1
Zambia            1
Zimbabwe          1
Name: count, dtype: int64
All Countries ['Democratic Republic of the Congo', 'Angola', 'Ghana', 'Kenya', 'Madagascar', 'Cameroon', 'Mali', 'Ethiopia', 'Mauritania', 'Zimbabwe', 'Burkina Faso', 'Liberia', 'United Republic of Tanzania', 'Zambia', 'Senegal', 'Togo']
Number of countries:  16
In [ ]:
# overlay country boundaries with white borders on the map
countries = ee.FeatureCollection('FAO/GAUL/2015/level0')
style = {'color': 'ffffffff', 'width': 2, 'lineType': 'solid', 'opacity': 1}
# m.addLayer(countries, style, 'Countries', False)
In [34]:
# create a fc of just the countries in all_minigrid_countries
all_minigrid_countries_fc = countries.filter(ee.Filter.inList('ADM0_NAME', all_minigrid_countries))
m.addLayer(all_minigrid_countries_fc, style, 'Countries', True)

# note: this isn't styling the countries correctly
# the "fillColor" parameter doesn't seem to work

# count the number of countries in all_minigrid_countries_fc
print('countries included in the map: ', all_minigrid_countries_fc.aggregate_array('ADM0_NAME').getInfo())
print('Number of countries:')
all_minigrid_countries_fc.size()
countries included in the map:  ['Zambia', 'Kenya', 'Madagascar', 'United Republic of Tanzania', 'Zimbabwe', 'Ethiopia', 'Democratic Republic of the Congo', 'Cameroon', 'Angola', 'Togo', 'Senegal', 'Mauritania', 'Mali', 'Liberia', 'Ghana', 'Burkina Faso']
Number of countries:
Out[34]:
  • 16
In [35]:
# try to fuse the geometries of the 20 countries
all_minigrid_countries_fused_fc = ee.FeatureCollection(all_minigrid_countries_fc.union())

# add to map in gray
# m.addLayer(all_minigrid_countries_fused_fc, {'color': 'gray'}, 'Fused Countries', True)
In [36]:
# add club-er sites to the map
cluber_fc = geemap.geojson_to_ee('data/cluber/cluber_sites.geojson')
m.addLayer(cluber_fc, {'color': 'purple'}, 'Club-ER Sites')

Get the Landcover Data from Google Earth Engine¶

Now, we want to sample populated areas as well as the dark areas. To do this, we can use the ESA WorldCover landcover data set from GEE to identify areas that are classified as "urban". We will also find areas that are at least 10 kilometers away from any urban area to define "rural" areas.

In [37]:
# pull in a global high resolution land cover dataset
# https://developers.google.com/earth-engine/datasets/catalog/ESA_WorldCover_v200
landcover = ee.ImageCollection('ESA/WorldCover/v200').first()

landcover_africa = landcover.clip(all_minigrid_countries_fc)

visualization = {
  'bands': ['Map'],
}

print(landcover_africa.select('Map').getInfo())

# m.addLayer(landcover_africa, visualization, 'Landcover', False)

# # inspect this image
# print(landcover_africa.getInfo())
# # inspect the bands of landcover_africa
# print(landcover_africa.bandNames().getInfo())
# # inspect the values of the band 'Map'
{'type': 'Image', 'bands': [{'id': 'Map', 'data_type': {'type': 'PixelType', 'precision': 'int', 'min': 0, 'max': 255}, 'dimensions': [4320000, 1728000], 'crs': 'EPSG:4326', 'crs_transform': [8.333333333333333e-05, 0, -180, 0, -8.333333333333333e-05, 84]}], 'version': 1746488833928724, 'id': 'ESA/WorldCover/v200/2021', 'properties': {'Map_class_names': ['Tree cover', 'Shrubland', 'Grassland', 'Cropland', 'Built-up', 'Bare / sparse vegetation', 'Snow and ice', 'Permanent water bodies', 'Herbaceous wetland', 'Mangroves', 'Moss and lichen'], 'system:time_start': 1609459200000, 'system:time_end': 1640991600000, 'Map_class_palette': ['006400', 'ffbb22', 'ffff4c', 'f096ff', 'fa0000', 'b4b4b4', 'f0f0f0', '0064c8', '0096a0', '00cf75', 'fae6a0'], 'Map_class_values': [10, 20, 30, 40, 50, 60, 70, 80, 90, 95, 100], 'system:asset_size': 109661138988, 'system:index': '2021'}}

Define Landcover Classes of Interest¶

Value Color Description 10 #006400 Tree cover 20 #ffbb22 Shrubland 30 #ffff4c Grassland 40 #f096ff Cropland 50 #fa0000 Built-up 60 #b4b4b4 Bare / sparse vegetation 70 #f0f0f0 Snow and ice 80 #0064c8 Permanent water bodies 90 #0096a0 Herbaceous wetland 95 #00cf75 Mangroves 100 #fae6a0 Moss and lichen

Values to Extract¶

  • 10: Tree cover --> this should be dark, but not as dark as 60. Will include forests.
  • 20: Shrubland --> this should be darker than 30, but not as dark as 10. Will include savannahs.
  • 30: Grassland --> this should be the brightest of the vegetated areas. Will include grasslands.
  • 40: Cropland --> this should be brighter than 10, but not as bright as 30. Will include farmlands.
  • 50: Built-up --> this should be bright, brighter than anything else hopefully. Will include bright cities.
  • 60: Bare / sparse vegetation --> this should mostly be desert, hopefully the darkest.

Values to Skip¶

  • 70: Snow and ice --> there isn't much at all int he continent
  • 80: Permanent water bodies --> I should get this from my ocean polygon
  • 90: Herbaceous wetland --> also don't know how much of this there is
  • 95: Mangroves --> there are some, but not in most countries

Select Just for Dark Areas that are far away from Built Areas¶

In [38]:
# create a mask for the desired landcovers
built_mask = landcover_africa.eq(50)
built = landcover_africa.updateMask(built_mask)
# m.addLayer(built, {'palette': 'red'}, 'Built')

# create a 10km buffer around built areas
built_buffer = built.focal_max(10000, 'circle', 'meters')
# m.addLayer(built_buffer, {'palette': 'red'}, 'Built buffer', False)

# create a mask for the built_buffer
# need to unmask it to convert areas outside of mask from nodata to 0
rural_mask = built_buffer.eq(50).unmask(0).eq(0)
# select areas outside of the built buffer in countries of interest
rural = landcover_africa.updateMask(rural_mask)
# m.addLayer(rural, {'palette': 'brown'},  'Rural landcover', False)

Sample Rural, Built, Ocean, Desert, and Jungle Areas¶

Now that we have our areas defined, let's randomly sample 700-2000 points from each landcover class.

Rural¶

In [39]:
# sample rural landcover
rural_pts = rural.sample(
    region=all_minigrid_countries_fc,
    scale=1000,
    numPixels=2000,
    seed=44,
    projection='EPSG:4326',
    geometries=True,
    dropNulls=True
)

# add a property "type" to the built_pts feature collection equal to "built"
rural_pts = rural_pts.map(lambda f: f.set('type', 'rural'))

# export rural sample to geojson
geemap.ee_to_geojson(rural_pts, 'data/dark_africa/rural_pts3.geo.json')
In [40]:
# read in the rural_pts
rural_pts = geemap.geojson_to_ee('data/dark_africa/rural_pts3.geo.json')
# add to map
m.addLayer(rural_pts, {'color': 'purple'}, 'Rural Points')
rural_pts
Out[40]:
  • FeatureCollection (1795 elements, 3 columns)
    • type:FeatureCollection
    • columns: String
      • type:String
      • Map:Integer
      • system:index:String
    • features: List (1795 elements)
      • 0: Feature (Point, 2 properties)
        • type:Feature
        • id:0
        • geometry: Point (44.56, 8.51)
          • type:Point
          • coordinates: [44.55594132237632, 8.505332351828818]
            • 0:44.55594132237632
            • 1:8.505332351828818
        • properties: rural
          • type:rural
          • Map:30
      • 1: Feature (Point, 2 properties)
        • type:Feature
        • id:1
        • geometry: Point (-4.05, 18.10)
          • type:Point
          • coordinates: [-4.047947012861209, 18.09867182692741]
            • 0:-4.047947012861209
            • 1:18.09867182692741
        • properties: rural
          • type:rural
          • Map:60
      • 2: Feature (Point, 2 properties)
        • type:Feature
        • id:2
        • geometry: Point (-7.43, 21.05)
          • type:Point
          • coordinates: [-7.42759535235628, 21.047446234902047]
            • 0:-7.42759535235628
            • 1:21.047446234902047
        • properties: rural
          • type:rural
          • Map:60
      • 3: Feature (Point, 2 properties)
        • type:Feature
        • id:3
        • geometry: Point (16.53, -6.10)
          • type:Point
          • coordinates: [16.527112856967904, -6.096972972140047]
            • 0:16.527112856967904
            • 1:-6.096972972140047
        • properties: rural
          • type:rural
          • Map:30
      • 4: Feature (Point, 2 properties)
        • type:Feature
        • id:4
        • geometry: Point (-7.86, 24.58)
          • type:Point
          • coordinates: [-7.855720492514072, 24.578050638278107]
            • 0:-7.855720492514072
            • 1:24.578050638278107
        • properties: rural
          • type:rural
          • Map:60
      • 5: Feature (Point, 2 properties)
        • type:Feature
        • id:5
        • geometry: Point (38.76, 3.23)
          • type:Point
          • coordinates: [38.759273628560116, 3.2285396891518094]
            • 0:38.759273628560116
            • 1:3.2285396891518094
        • properties: rural
          • type:rural
          • Map:30
      • 6: Feature (Point, 2 properties)
        • type:Feature
        • id:6
        • geometry: Point (47.07, -19.12)
          • type:Point
          • coordinates: [47.0679783692333, -19.118986466480592]
            • 0:47.0679783692333
            • 1:-19.118986466480592
        • properties: rural
          • type:rural
          • Map:30
      • 7: Feature (Point, 2 properties)
        • type:Feature
        • id:7
        • geometry: Point (12.47, -14.55)
          • type:Point
          • coordinates: [12.471976119351886, -14.548426938495785]
            • 0:12.471976119351886
            • 1:-14.548426938495785
        • properties: rural
          • type:rural
          • Map:60
      • 8: Feature (Point, 2 properties)
        • type:Feature
        • id:8
        • geometry: Point (37.19, -8.82)
          • type:Point
          • coordinates: [37.190238080669886, -8.81732605238216]
            • 0:37.190238080669886
            • 1:-8.81732605238216
        • properties: rural
          • type:rural
          • Map:10
      • 9: Feature (Point, 2 properties)
        • type:Feature
        • id:9
        • geometry: Point (37.43, 13.17)
          • type:Point
          • coordinates: [37.43093727712635, 13.167019866945855]
            • 0:37.43093727712635
            • 1:13.167019866945855
        • properties: rural
          • type:rural
          • Map:30
      • 10: Feature (Point, 2 properties)
        • type:Feature
        • id:10
        • geometry: Point (20.13, -2.23)
          • type:Point
          • coordinates: [20.13132345992948, -2.2311510712082807]
            • 0:20.13132345992948
            • 1:-2.2311510712082807
        • properties: rural
          • type:rural
          • Map:10
      • 11: Feature (Point, 2 properties)
        • type:Feature
        • id:11
        • geometry: Point (-5.58, 25.24)
          • type:Point
          • coordinates: [-5.576447282454081, 25.241454121547918]
            • 0:-5.576447282454081
            • 1:25.241454121547918
        • properties: rural
          • type:rural
          • Map:60
      • 12: Feature (Point, 2 properties)
        • type:Feature
        • id:12
        • geometry: Point (24.18, 1.93)
          • type:Point
          • coordinates: [24.182495262292917, 1.9323732216939546]
            • 0:24.182495262292917
            • 1:1.9323732216939546
        • properties: rural
          • type:rural
          • Map:10
      • 13: Feature (Point, 2 properties)
        • type:Feature
        • id:13
        • geometry: Point (24.47, -14.95)
          • type:Point
          • coordinates: [24.466430736312358, -14.945823815514382]
            • 0:24.466430736312358
            • 1:-14.945823815514382
        • properties: rural
          • type:rural
          • Map:10
      • 14: Feature (Point, 2 properties)
        • type:Feature
        • id:15
        • geometry: Point (20.55, -0.36)
          • type:Point
          • coordinates: [20.553037632915924, -0.35781893623256084]
            • 0:20.553037632915924
            • 1:-0.35781893623256084
        • properties: rural
          • type:rural
          • Map:10
      • 15: Feature (Point, 2 properties)
        • type:Feature
        • id:16
        • geometry: Point (9.92, 3.40)
          • type:Point
          • coordinates: [9.922347197808765, 3.400064069977576]
            • 0:9.922347197808765
            • 1:3.400064069977576
        • properties: rural
          • type:rural
          • Map:10
      • 16: Feature (Point, 2 properties)
        • type:Feature
        • id:17
        • geometry: Point (34.61, 9.84)
          • type:Point
          • coordinates: [34.613156868557255, 9.839781199685172]
            • 0:34.613156868557255
            • 1:9.839781199685172
        • properties: rural
          • type:rural
          • Map:10
      • 17: Feature (Point, 2 properties)
        • type:Feature
        • id:18
        • geometry: Point (2.31, 18.74)
          • type:Point
          • coordinates: [2.311704665862992, 18.741716042088715]
            • 0:2.311704665862992
            • 1:18.741716042088715
        • properties: rural
          • type:rural
          • Map:60
      • 18: Feature (Point, 2 properties)
        • type:Feature
        • id:19
        • geometry: Point (29.16, -19.07)
          • type:Point
          • coordinates: [29.157383542827336, -19.072958139254474]
            • 0:29.157383542827336
            • 1:-19.072958139254474
        • properties: rural
          • type:rural
          • Map:10
      • 19: Feature (Point, 2 properties)
        • type:Feature
        • id:20
        • geometry: Point (-15.24, 14.67)
          • type:Point
          • coordinates: [-15.238742734763953, 14.671838103338331]
            • 0:-15.238742734763953
            • 1:14.671838103338331
        • properties: rural
          • type:rural
          • Map:30
      • 20: Feature (Point, 2 properties)
        • type:Feature
        • id:21
        • geometry: Point (2.01, 12.61)
          • type:Point
          • coordinates: [2.0059117402951254, 12.611272081818477]
            • 0:2.0059117402951254
            • 1:12.611272081818477
        • properties: rural
          • type:rural
          • Map:30
      • 21: Feature (Point, 2 properties)
        • type:Feature
        • id:22
        • geometry: Point (21.69, 2.13)
          • type:Point
          • coordinates: [21.690260356538623, 2.133140972896768]
            • 0:21.690260356538623
            • 1:2.133140972896768
        • properties: rural
          • type:rural
          • Map:10
      • 22: Feature (Point, 2 properties)
        • type:Feature
        • id:23
        • geometry: Point (-4.56, 23.45)
          • type:Point
          • coordinates: [-4.558088198411666, 23.451419057103596]
            • 0:-4.558088198411666
            • 1:23.451419057103596
        • properties: rural
          • type:rural
          • Map:60
      • 23: Feature (Point, 2 properties)
        • type:Feature
        • id:24
        • geometry: Point (36.39, 5.57)
          • type:Point
          • coordinates: [36.387950022240275, 5.57057108843277]
            • 0:36.387950022240275
            • 1:5.57057108843277
        • properties: rural
          • type:rural
          • Map:30
      • 24: Feature (Point, 2 properties)
        • type:Feature
        • id:25
        • geometry: Point (33.74, -4.87)
          • type:Point
          • coordinates: [33.737371661977654, -4.86737408175819]
            • 0:33.737371661977654
            • 1:-4.86737408175819
        • properties: rural
          • type:rural
          • Map:20
      • 25: Feature (Point, 2 properties)
        • type:Feature
        • id:26
        • geometry: Point (22.67, -12.10)
          • type:Point
          • coordinates: [22.672843687760555, -12.095005787030527]
            • 0:22.672843687760555
            • 1:-12.095005787030527
        • properties: rural
          • type:rural
          • Map:30
      • 26: Feature (Point, 2 properties)
        • type:Feature
        • id:27
        • geometry: Point (-13.02, 14.28)
          • type:Point
          • coordinates: [-13.022641956630448, 14.277863327555398]
            • 0:-13.022641956630448
            • 1:14.277863327555398
        • properties: rural
          • type:rural
          • Map:20
      • 27: Feature (Point, 2 properties)
        • type:Feature
        • id:28
        • geometry: Point (25.46, -6.04)
          • type:Point
          • coordinates: [25.456107159897126, -6.036177754568342]
            • 0:25.456107159897126
            • 1:-6.036177754568342
        • properties: rural
          • type:rural
          • Map:30
      • 28: Feature (Point, 2 properties)
        • type:Feature
        • id:29
        • geometry: Point (44.65, -16.80)
          • type:Point
          • coordinates: [44.64502824602054, -16.80233460612739]
            • 0:44.64502824602054
            • 1:-16.80233460612739
        • properties: rural
          • type:rural
          • Map:30
      • 29: Feature (Point, 2 properties)
        • type:Feature
        • id:30
        • geometry: Point (-0.46, 21.44)
          • type:Point
          • coordinates: [-0.45512190554956006, 21.440463412352177]
            • 0:-0.45512190554956006
            • 1:21.440463412352177
        • properties: rural
          • type:rural
          • Map:60
      • 30: Feature (Point, 2 properties)
        • type:Feature
        • id:31
        • geometry: Point (3.04, 18.39)
          • type:Point
          • coordinates: [3.0426504349984067, 18.38784522645333]
            • 0:3.0426504349984067
            • 1:18.38784522645333
        • properties: rural
          • type:rural
          • Map:60
      • 31: Feature (Point, 2 properties)
        • type:Feature
        • id:32
        • geometry: Point (19.02, -16.24)
          • type:Point
          • coordinates: [19.019294236123933, -16.24038019734607]
            • 0:19.019294236123933
            • 1:-16.24038019734607
        • properties: rural
          • type:rural
          • Map:20
      • 32: Feature (Point, 2 properties)
        • type:Feature
        • id:33
        • geometry: Point (-0.57, 20.38)
          • type:Point
          • coordinates: [-0.5652843975427544, 20.380605511188815]
            • 0:-0.5652843975427544
            • 1:20.380605511188815
        • properties: rural
          • type:rural
          • Map:60
      • 33: Feature (Point, 2 properties)
        • type:Feature
        • id:34
        • geometry: Point (12.98, -15.64)
          • type:Point
          • coordinates: [12.977891971219668, -15.639889425390987]
            • 0:12.977891971219668
            • 1:-15.639889425390987
        • properties: rural
          • type:rural
          • Map:20
      • 34: Feature (Point, 2 properties)
        • type:Feature
        • id:35
        • geometry: Point (18.29, -15.44)
          • type:Point
          • coordinates: [18.294422557374283, -15.444770232703613]
            • 0:18.294422557374283
            • 1:-15.444770232703613
        • properties: rural
          • type:rural
          • Map:20
      • 35: Feature (Point, 2 properties)
        • type:Feature
        • id:36
        • geometry: Point (21.78, 0.28)
          • type:Point
          • coordinates: [21.778485678142832, 0.2837811136437743]
            • 0:21.778485678142832
            • 1:0.2837811136437743
        • properties: rural
          • type:rural
          • Map:10
      • 36: Feature (Point, 2 properties)
        • type:Feature
        • id:39
        • geometry: Point (28.69, -18.26)
          • type:Point
          • coordinates: [28.689373853577177, -18.25810210695673]
            • 0:28.689373853577177
            • 1:-18.25810210695673
        • properties: rural
          • type:rural
          • Map:40
      • 37: Feature (Point, 2 properties)
        • type:Feature
        • id:40
        • geometry: Point (24.72, 2.21)
          • type:Point
          • coordinates: [24.722107693284613, 2.210021956808266]
            • 0:24.722107693284613
            • 1:2.210021956808266
        • properties: rural
          • type:rural
          • Map:10
      • 38: Feature (Point, 2 properties)
        • type:Feature
        • id:42
        • geometry: Point (29.11, -15.97)
          • type:Point
          • coordinates: [29.10824299137349, -15.96507538103094]
            • 0:29.10824299137349
            • 1:-15.96507538103094
        • properties: rural
          • type:rural
          • Map:20
      • 39: Feature (Point, 2 properties)
        • type:Feature
        • id:43
        • geometry: Point (40.01, 10.47)
          • type:Point
          • coordinates: [40.01088583942102, 10.473482305303014]
            • 0:40.01088583942102
            • 1:10.473482305303014
        • properties: rural
          • type:rural
          • Map:20
      • 40: Feature (Point, 2 properties)
        • type:Feature
        • id:44
        • geometry: Point (-9.29, 25.57)
          • type:Point
          • coordinates: [-9.288625353156016, 25.56888151623987]
            • 0:-9.288625353156016
            • 1:25.56888151623987
        • properties: rural
          • type:rural
          • Map:60
      • 41: Feature (Point, 2 properties)
        • type:Feature
        • id:45
        • geometry: Point (-7.06, 13.24)
          • type:Point
          • coordinates: [-7.061815263977839, 13.241627040440589]
            • 0:-7.061815263977839
            • 1:13.241627040440589
        • properties: rural
          • type:rural
          • Map:20
      • 42: Feature (Point, 2 properties)
        • type:Feature
        • id:46
        • geometry: Point (16.74, -3.74)
          • type:Point
          • coordinates: [16.737539820312833, -3.742305306167366]
            • 0:16.737539820312833
            • 1:-3.742305306167366
        • properties: rural
          • type:rural
          • Map:30
      • 43: Feature (Point, 2 properties)
        • type:Feature
        • id:47
        • geometry: Point (29.32, 2.63)
          • type:Point
          • coordinates: [29.321755510879587, 2.631506158395527]
            • 0:29.321755510879587
            • 1:2.631506158395527
        • properties: rural
          • type:rural
          • Map:10
      • 44: Feature (Point, 2 properties)
        • type:Feature
        • id:48
        • geometry: Point (24.04, -14.60)
          • type:Point
          • coordinates: [24.039091052794948, -14.602218329392189]
            • 0:24.039091052794948
            • 1:-14.602218329392189
        • properties: rural
          • type:rural
          • Map:30
      • 45: Feature (Point, 2 properties)
        • type:Feature
        • id:49
        • geometry: Point (26.02, -3.40)
          • type:Point
          • coordinates: [26.02306331259353, -3.4017101630427153]
            • 0:26.02306331259353
            • 1:-3.4017101630427153
        • properties: rural
          • type:rural
          • Map:10
      • 46: Feature (Point, 2 properties)
        • type:Feature
        • id:50
        • geometry: Point (44.87, -16.52)
          • type:Point
          • coordinates: [44.86755678628394, -16.517459533972524]
            • 0:44.86755678628394
            • 1:-16.517459533972524
        • properties: rural
          • type:rural
          • Map:30
      • 47: Feature (Point, 2 properties)
        • type:Feature
        • id:51
        • geometry: Point (36.32, 12.91)
          • type:Point
          • coordinates: [36.32450256747557, 12.908563028417019]
            • 0:36.32450256747557
            • 1:12.908563028417019
        • properties: rural
          • type:rural
          • Map:30
      • 48: Feature (Point, 2 properties)
        • type:Feature
        • id:52
        • geometry: Point (18.26, 0.85)
          • type:Point
          • coordinates: [18.26326644402912, 0.850452078519947]
            • 0:18.26326644402912
            • 1:0.850452078519947
        • properties: rural
          • type:rural
          • Map:10
      • 49: Feature (Point, 2 properties)
        • type:Feature
        • id:53
        • geometry: Point (39.56, 13.16)
          • type:Point
          • coordinates: [39.564167093218416, 13.161193730823554]
            • 0:39.564167093218416
            • 1:13.161193730823554
        • properties: rural
          • type:rural
          • Map:20
      • 50: Feature (Point, 2 properties)
        • type:Feature
        • id:54
        • geometry: Point (30.65, -12.32)
          • type:Point
          • coordinates: [30.647456355935066, -12.315697605434973]
            • 0:30.647456355935066
            • 1:-12.315697605434973
        • properties: rural
          • type:rural
          • Map:10
      • 51: Feature (Point, 2 properties)
        • type:Feature
        • id:55
        • geometry: Point (25.22, -9.93)
          • type:Point
          • coordinates: [25.220026914275454, -9.92557164871261]
            • 0:25.220026914275454
            • 1:-9.92557164871261
        • properties: rural
          • type:rural
          • Map:10
      • 52: Feature (Point, 2 properties)
        • type:Feature
        • id:56
        • geometry: Point (40.00, 13.73)
          • type:Point
          • coordinates: [39.9999783208135, 13.728336773659857]
            • 0:39.9999783208135
            • 1:13.728336773659857
        • properties: rural
          • type:rural
          • Map:60
      • 53: Feature (Point, 2 properties)
        • type:Feature
        • id:57
        • geometry: Point (21.28, -14.66)
          • type:Point
          • coordinates: [21.283051313613665, -14.658743180590049]
            • 0:21.283051313613665
            • 1:-14.658743180590049
        • properties: rural
          • type:rural
          • Map:20
      • 54: Feature (Point, 2 properties)
        • type:Feature
        • id:58
        • geometry: Point (39.97, 4.43)
          • type:Point
          • coordinates: [39.96950631168442, 4.432991382765622]
            • 0:39.96950631168442
            • 1:4.432991382765622
        • properties: rural
          • type:rural
          • Map:20
      • 55: Feature (Point, 2 properties)
        • type:Feature
        • id:59
        • geometry: Point (-5.91, 12.51)
          • type:Point
          • coordinates: [-5.914015731027918, 12.514649914517335]
            • 0:-5.914015731027918
            • 1:12.514649914517335
        • properties: rural
          • type:rural
          • Map:40
      • 56: Feature (Point, 2 properties)
        • type:Feature
        • id:61
        • geometry: Point (23.40, -2.39)
          • type:Point
          • coordinates: [23.402554396213215, -2.3871419816640356]
            • 0:23.402554396213215
            • 1:-2.3871419816640356
        • properties: rural
          • type:rural
          • Map:10
      • 57: Feature (Point, 2 properties)
        • type:Feature
        • id:62
        • geometry: Point (21.85, 3.64)
          • type:Point
          • coordinates: [21.853380116794835, 3.6386467892610215]
            • 0:21.853380116794835
            • 1:3.6386467892610215
        • properties: rural
          • type:rural
          • Map:10
      • 58: Feature (Point, 2 properties)
        • type:Feature
        • id:63
        • geometry: Point (44.04, 8.52)
          • type:Point
          • coordinates: [44.04278753369778, 8.521620380557303]
            • 0:44.04278753369778
            • 1:8.521620380557303
        • properties: rural
          • type:rural
          • Map:30
      • 59: Feature (Point, 2 properties)
        • type:Feature
        • id:65
        • geometry: Point (15.77, -9.97)
          • type:Point
          • coordinates: [15.768603558518445, -9.966785002752463]
            • 0:15.768603558518445
            • 1:-9.966785002752463
        • properties: rural
          • type:rural
          • Map:10
      • 60: Feature (Point, 2 properties)
        • type:Feature
        • id:66
        • geometry: Point (20.57, -15.28)
          • type:Point
          • coordinates: [20.568328063542623, -15.277540021009752]
            • 0:20.568328063542623
            • 1:-15.277540021009752
        • properties: rural
          • type:rural
          • Map:10
      • 61: Feature (Point, 2 properties)
        • type:Feature
        • id:67
        • geometry: Point (32.26, -4.30)
          • type:Point
          • coordinates: [32.256867695848605, -4.303180658153488]
            • 0:32.256867695848605
            • 1:-4.303180658153488
        • properties: rural
          • type:rural
          • Map:40
      • 62: Feature (Point, 2 properties)
        • type:Feature
        • id:68
        • geometry: Point (42.26, 10.15)
          • type:Point
          • coordinates: [42.26147353546164, 10.153412722777112]
            • 0:42.26147353546164
            • 1:10.153412722777112
        • properties: rural
          • type:rural
          • Map:60
      • 63: Feature (Point, 2 properties)
        • type:Feature
        • id:69
        • geometry: Point (47.53, -22.05)
          • type:Point
          • coordinates: [47.534552861471866, -22.04781202773289]
            • 0:47.534552861471866
            • 1:-22.04781202773289
        • properties: rural
          • type:rural
          • Map:30
      • 64: Feature (Point, 2 properties)
        • type:Feature
        • id:70
        • geometry: Point (33.06, -11.14)
          • type:Point
          • coordinates: [33.057869368372394, -11.138855399420882]
            • 0:33.057869368372394
            • 1:-11.138855399420882
        • properties: rural
          • type:rural
          • Map:20
      • 65: Feature (Point, 2 properties)
        • type:Feature
        • id:71
        • geometry: Point (-0.09, 12.36)
          • type:Point
          • coordinates: [-0.09149724346010628, 12.358233929499017]
            • 0:-0.09149724346010628
            • 1:12.358233929499017
        • properties: rural
          • type:rural
          • Map:30
      • 66: Feature (Point, 2 properties)
        • type:Feature
        • id:72
        • geometry: Point (24.87, -5.57)
          • type:Point
          • coordinates: [24.8650438358482, -5.571547613045436]
            • 0:24.8650438358482
            • 1:-5.571547613045436
        • properties: rural
          • type:rural
          • Map:30
      • 67: Feature (Point, 2 properties)
        • type:Feature
        • id:73
        • geometry: Point (27.81, -13.65)
          • type:Point
          • coordinates: [27.80541406622605, -13.652233791809545]
            • 0:27.80541406622605
            • 1:-13.652233791809545
        • properties: rural
          • type:rural
          • Map:30
      • 68: Feature (Point, 2 properties)
        • type:Feature
        • id:74
        • geometry: Point (26.45, 4.39)
          • type:Point
          • coordinates: [26.447104414030935, 4.387288390198157]
            • 0:26.447104414030935
            • 1:4.387288390198157
        • properties: rural
          • type:rural
          • Map:10
      • 69: Feature (Point, 2 properties)
        • type:Feature
        • id:76
        • geometry: Point (35.80, 11.90)
          • type:Point
          • coordinates: [35.80231226351023, 11.901552874887095]
            • 0:35.80231226351023
            • 1:11.901552874887095
        • properties: rural
          • type:rural
          • Map:30
      • 70: Feature (Point, 2 properties)
        • type:Feature
        • id:77
        • geometry: Point (22.53, -12.26)
          • type:Point
          • coordinates: [22.52842776946605, -12.262325181248197]
            • 0:22.52842776946605
            • 1:-12.262325181248197
        • properties: rural
          • type:rural
          • Map:30
      • 71: Feature (Point, 2 properties)
        • type:Feature
        • id:78
        • geometry: Point (34.37, -6.86)
          • type:Point
          • coordinates: [34.36643759382396, -6.8574584561663885]
            • 0:34.36643759382396
            • 1:-6.8574584561663885
        • properties: rural
          • type:rural
          • Map:30
      • 72: Feature (Point, 2 properties)
        • type:Feature
        • id:79
        • geometry: Point (31.80, -6.26)
          • type:Point
          • coordinates: [31.800077942872438, -6.258777857568619]
            • 0:31.800077942872438
            • 1:-6.258777857568619
        • properties: rural
          • type:rural
          • Map:10
      • 73: Feature (Point, 2 properties)
        • type:Feature
        • id:80
        • geometry: Point (-8.19, 16.38)
          • type:Point
          • coordinates: [-8.192729157837615, 16.38393247039547]
            • 0:-8.192729157837615
            • 1:16.38393247039547
        • properties: rural
          • type:rural
          • Map:30
      • 74: Feature (Point, 2 properties)
        • type:Feature
        • id:81
        • geometry: Point (25.27, -5.21)
          • type:Point
          • coordinates: [25.27059189890043, -5.213604290142644]
            • 0:25.27059189890043
            • 1:-5.213604290142644
        • properties: rural
          • type:rural
          • Map:30
      • 75: Feature (Point, 2 properties)
        • type:Feature
        • id:82
        • geometry: Point (30.65, -10.95)
          • type:Point
          • coordinates: [30.646571891200956, -10.953311122637768]
            • 0:30.646571891200956
            • 1:-10.953311122637768
        • properties: rural
          • type:rural
          • Map:10
      • 76: Feature (Point, 2 properties)
        • type:Feature
        • id:83
        • geometry: Point (22.83, -8.93)
          • type:Point
          • coordinates: [22.82567096573223, -8.931748332001524]
            • 0:22.82567096573223
            • 1:-8.931748332001524
        • properties: rural
          • type:rural
          • Map:10
      • 77: Feature (Point, 2 properties)
        • type:Feature
        • id:84
        • geometry: Point (38.67, 11.64)
          • type:Point
          • coordinates: [38.67214703091145, 11.64262550673482]
            • 0:38.67214703091145
            • 1:11.64262550673482
        • properties: rural
          • type:rural
          • Map:40
      • 78: Feature (Point, 2 properties)
        • type:Feature
        • id:85
        • geometry: Point (37.59, -3.96)
          • type:Point
          • coordinates: [37.58758046948862, -3.9625943168070834]
            • 0:37.58758046948862
            • 1:-3.9625943168070834
        • properties: rural
          • type:rural
          • Map:20
      • 79: Feature (Point, 2 properties)
        • type:Feature
        • id:86
        • geometry: Point (45.25, -19.80)
          • type:Point
          • coordinates: [45.25375493883871, -19.796446954870632]
            • 0:45.25375493883871
            • 1:-19.796446954870632
        • properties: rural
          • type:rural
          • Map:30
      • 80: Feature (Point, 2 properties)
        • type:Feature
        • id:87
        • geometry: Point (-0.09, 20.57)
          • type:Point
          • coordinates: [-0.08851310804267419, 20.57032082554115]
            • 0:-0.08851310804267419
            • 1:20.57032082554115
        • properties: rural
          • type:rural
          • Map:60
      • 81: Feature (Point, 2 properties)
        • type:Feature
        • id:88
        • geometry: Point (33.61, -2.05)
          • type:Point
          • coordinates: [33.61439921911521, -2.045794447733437]
            • 0:33.61439921911521
            • 1:-2.045794447733437
        • properties: rural
          • type:rural
          • Map:40
      • 82: Feature (Point, 2 properties)
        • type:Feature
        • id:89
        • geometry: Point (38.08, 12.25)
          • type:Point
          • coordinates: [38.08451528178778, 12.250201916778945]
            • 0:38.08451528178778
            • 1:12.250201916778945
        • properties: rural
          • type:rural
          • Map:40
      • 83: Feature (Point, 2 properties)
        • type:Feature
        • id:90
        • geometry: Point (-4.20, 23.67)
          • type:Point
          • coordinates: [-4.203237505636006, 23.670274000686373]
            • 0:-4.203237505636006
            • 1:23.670274000686373
        • properties: rural
          • type:rural
          • Map:60
      • 84: Feature (Point, 2 properties)
        • type:Feature
        • id:91
        • geometry: Point (23.87, -5.51)
          • type:Point
          • coordinates: [23.867173949769764, -5.511908369720207]
            • 0:23.867173949769764
            • 1:-5.511908369720207
        • properties: rural
          • type:rural
          • Map:10
      • 85: Feature (Point, 2 properties)
        • type:Feature
        • id:92
        • geometry: Point (24.74, -13.19)
          • type:Point
          • coordinates: [24.74128343247434, -13.191353004757564]
            • 0:24.74128343247434
            • 1:-13.191353004757564
        • properties: rural
          • type:rural
          • Map:10
      • 86: Feature (Point, 2 properties)
        • type:Feature
        • id:93
        • geometry: Point (38.19, -9.05)
          • type:Point
          • coordinates: [38.19213059847522, -9.04805144753422]
            • 0:38.19213059847522
            • 1:-9.04805144753422
        • properties: rural
          • type:rural
          • Map:10
      • 87: Feature (Point, 2 properties)
        • type:Feature
        • id:94
        • geometry: Point (22.07, -2.58)
          • type:Point
          • coordinates: [22.07071035761766, -2.5778926846682064]
            • 0:22.07071035761766
            • 1:-2.5778926846682064
        • properties: rural
          • type:rural
          • Map:10
      • 88: Feature (Point, 2 properties)
        • type:Feature
        • id:95
        • geometry: Point (24.57, 4.15)
          • type:Point
          • coordinates: [24.570330175439697, 4.148440910191458]
            • 0:24.570330175439697
            • 1:4.148440910191458
        • properties: rural
          • type:rural
          • Map:10
      • 89: Feature (Point, 2 properties)
        • type:Feature
        • id:96
        • geometry: Point (37.36, -5.60)
          • type:Point
          • coordinates: [37.35958280358633, -5.603406147032329]
            • 0:37.35958280358633
            • 1:-5.603406147032329
        • properties: rural
          • type:rural
          • Map:30
      • 90: Feature (Point, 2 properties)
        • type:Feature
        • id:97
        • geometry: Point (40.94, 6.46)
          • type:Point
          • coordinates: [40.93812378843875, 6.456632618619471]
            • 0:40.93812378843875
            • 1:6.456632618619471
        • properties: rural
          • type:rural
          • Map:20
      • 91: Feature (Point, 2 properties)
        • type:Feature
        • id:98
        • geometry: Point (-4.32, 19.43)
          • type:Point
          • coordinates: [-4.3171116286678535, 19.434249233780335]
            • 0:-4.3171116286678535
            • 1:19.434249233780335
        • properties: rural
          • type:rural
          • Map:60
      • 92: Feature (Point, 2 properties)
        • type:Feature
        • id:100
        • geometry: Point (-16.07, 19.22)
          • type:Point
          • coordinates: [-16.06754107442619, 19.22050659731307]
            • 0:-16.06754107442619
            • 1:19.22050659731307
        • properties: rural
          • type:rural
          • Map:60
      • 93: Feature (Point, 2 properties)
        • type:Feature
        • id:101
        • geometry: Point (-3.73, 21.68)
          • type:Point
          • coordinates: [-3.725316763767162, 21.676359317610558]
            • 0:-3.725316763767162
            • 1:21.676359317610558
        • properties: rural
          • type:rural
          • Map:60
      • 94: Feature (Point, 2 properties)
        • type:Feature
        • id:102
        • geometry: Point (39.07, 8.23)
          • type:Point
          • coordinates: [39.07388400756159, 8.233124348580342]
            • 0:39.07388400756159
            • 1:8.233124348580342
        • properties: rural
          • type:rural
          • Map:40
      • 95: Feature (Point, 2 properties)
        • type:Feature
        • id:103
        • geometry: Point (31.17, -1.13)
          • type:Point
          • coordinates: [31.170334460611095, -1.1280435822108796]
            • 0:31.170334460611095
            • 1:-1.1280435822108796
        • properties: rural
          • type:rural
          • Map:30
      • 96: Feature (Point, 2 properties)
        • type:Feature
        • id:104
        • geometry: Point (27.53, -3.51)
          • type:Point
          • coordinates: [27.53021657221786, -3.507269997526742]
            • 0:27.53021657221786
            • 1:-3.507269997526742
        • properties: rural
          • type:rural
          • Map:10
      • 97: Feature (Point, 2 properties)
        • type:Feature
        • id:105
        • geometry: Point (38.75, 4.99)
          • type:Point
          • coordinates: [38.7479183119988, 4.990416394151685]
            • 0:38.7479183119988
            • 1:4.990416394151685
        • properties: rural
          • type:rural
          • Map:20
      • 98: Feature (Point, 2 properties)
        • type:Feature
        • id:106
        • geometry: Point (44.48, 5.41)
          • type:Point
          • coordinates: [44.480172659235265, 5.414511424122125]
            • 0:44.480172659235265
            • 1:5.414511424122125
        • properties: rural
          • type:rural
          • Map:10
      • 99: Feature (Point, 2 properties)
        • type:Feature
        • id:107
        • geometry: Point (12.44, 5.71)
          • type:Point
          • coordinates: [12.435477356659023, 5.705763066033504]
            • 0:12.435477356659023
            • 1:5.705763066033504
        • properties: rural
          • type:rural
          • Map:10
      • 100: Feature (Point, 2 properties)
        • type:Feature
        • id:108
        • geometry: Point (-11.71, 21.93)
          • type:Point
          • coordinates: [-11.708901736662781, 21.92841515198761]
            • 0:-11.708901736662781
            • 1:21.92841515198761
        • properties: rural
          • type:rural
          • Map:60
      • 101: Feature (Point, 2 properties)
        • type:Feature
        • id:109
        • geometry: Point (18.00, -9.63)
          • type:Point
          • coordinates: [18.00400798497874, -9.625084815474423]
            • 0:18.00400798497874
            • 1:-9.625084815474423
        • properties: rural
          • type:rural
          • Map:20
      • 102: Feature (Point, 2 properties)
        • type:Feature
        • id:110
        • geometry: Point (34.11, -5.72)
          • type:Point
          • coordinates: [34.11406240398142, -5.719035330012749]
            • 0:34.11406240398142
            • 1:-5.719035330012749
        • properties: rural
          • type:rural
          • Map:10
      • 103: Feature (Point, 2 properties)
        • type:Feature
        • id:111
        • geometry: Point (25.30, -6.66)
          • type:Point
          • coordinates: [25.295474027902795, -6.655596998842233]
            • 0:25.295474027902795
            • 1:-6.655596998842233
        • properties: rural
          • type:rural
          • Map:30
      • 104: Feature (Point, 2 properties)
        • type:Feature
        • id:112
        • geometry: Point (15.27, -10.10)
          • type:Point
          • coordinates: [15.272187319669563, -10.095573240435783]
            • 0:15.272187319669563
            • 1:-10.095573240435783
        • properties: rural
          • type:rural
          • Map:10
      • 105: Feature (Point, 2 properties)
        • type:Feature
        • id:113
        • geometry: Point (-8.99, 17.43)
          • type:Point
          • coordinates: [-8.986975528003889, 17.425154572592405]
            • 0:-8.986975528003889
            • 1:17.425154572592405
        • properties: rural
          • type:rural
          • Map:60
      • 106: Feature (Point, 2 properties)
        • type:Feature
        • id:114
        • geometry: Point (-4.82, 15.60)
          • type:Point
          • coordinates: [-4.820083326246369, 15.598761038309618]
            • 0:-4.820083326246369
            • 1:15.598761038309618
        • properties: rural
          • type:rural
          • Map:30
      • 107: Feature (Point, 2 properties)
        • type:Feature
        • id:115
        • geometry: Point (12.74, -13.25)
          • type:Point
          • coordinates: [12.744075026568233, -13.249994435172365]
            • 0:12.744075026568233
            • 1:-13.249994435172365
        • properties: rural
          • type:rural
          • Map:60
      • 108: Feature (Point, 2 properties)
        • type:Feature
        • id:116
        • geometry: Point (25.12, -15.63)
          • type:Point
          • coordinates: [25.12054871436524, -15.630152060795337]
            • 0:25.12054871436524
            • 1:-15.630152060795337
        • properties: rural
          • type:rural
          • Map:10
      • 109: Feature (Point, 2 properties)
        • type:Feature
        • id:117
        • geometry: Point (25.82, 3.38)
          • type:Point
          • coordinates: [25.81827847131488, 3.37975311726584]
            • 0:25.81827847131488
            • 1:3.37975311726584
        • properties: rural
          • type:rural
          • Map:10
      • 110: Feature (Point, 2 properties)
        • type:Feature
        • id:118
        • geometry: Point (25.15, -4.08)
          • type:Point
          • coordinates: [25.148842384368564, -4.077661426193476]
            • 0:25.148842384368564
            • 1:-4.077661426193476
        • properties: rural
          • type:rural
          • Map:30
      • 111: Feature (Point, 2 properties)
        • type:Feature
        • id:119
        • geometry: Point (-0.77, 15.85)
          • type:Point
          • coordinates: [-0.7721951921645528, 15.848036422163911]
            • 0:-0.7721951921645528
            • 1:15.848036422163911
        • properties: rural
          • type:rural
          • Map:30
      • 112: Feature (Point, 2 properties)
        • type:Feature
        • id:120
        • geometry: Point (2.63, 16.49)
          • type:Point
          • coordinates: [2.6261814718514707, 16.492612228653165]
            • 0:2.6261814718514707
            • 1:16.492612228653165
        • properties: rural
          • type:rural
          • Map:30
      • 113: Feature (Point, 2 properties)
        • type:Feature
        • id:121
        • geometry: Point (21.29, -3.47)
          • type:Point
          • coordinates: [21.286153974194637, -3.4726599285384503]
            • 0:21.286153974194637
            • 1:-3.4726599285384503
        • properties: rural
          • type:rural
          • Map:10
      • 114: Feature (Point, 2 properties)
        • type:Feature
        • id:122
        • geometry: Point (30.29, -9.38)
          • type:Point
          • coordinates: [30.28783554185254, -9.383838918989852]
            • 0:30.28783554185254
            • 1:-9.383838918989852
        • properties: rural
          • type:rural
          • Map:20
      • 115: Feature (Point, 2 properties)
        • type:Feature
        • id:125
        • geometry: Point (17.87, -12.77)
          • type:Point
          • coordinates: [17.867290873150004, -12.76612554459765]
            • 0:17.867290873150004
            • 1:-12.76612554459765
        • properties: rural
          • type:rural
          • Map:10
      • 116: Feature (Point, 2 properties)
        • type:Feature
        • id:126
        • geometry: Point (42.40, 5.08)
          • type:Point
          • coordinates: [42.39767240377538, 5.0777844057126895]
            • 0:42.39767240377538
            • 1:5.0777844057126895
        • properties: rural
          • type:rural
          • Map:20
      • 117: Feature (Point, 2 properties)
        • type:Feature
        • id:127
        • geometry: Point (25.24, 0.24)
          • type:Point
          • coordinates: [25.24444346844806, 0.2366761003993241]
            • 0:25.24444346844806
            • 1:0.2366761003993241
        • properties: rural
          • type:rural
          • Map:10
      • 118: Feature (Point, 2 properties)
        • type:Feature
        • id:128
        • geometry: Point (26.41, -9.42)
          • type:Point
          • coordinates: [26.41153157571063, -9.421745438767644]
            • 0:26.41153157571063
            • 1:-9.421745438767644
        • properties: rural
          • type:rural
          • Map:30
      • 119: Feature (Point, 2 properties)
        • type:Feature
        • id:129
        • geometry: Point (24.22, -9.84)
          • type:Point
          • coordinates: [24.219631980404067, -9.843999294197008]
            • 0:24.219631980404067
            • 1:-9.843999294197008
        • properties: rural
          • type:rural
          • Map:10
      • 120: Feature (Point, 2 properties)
        • type:Feature
        • id:130
        • geometry: Point (45.58, -17.67)
          • type:Point
          • coordinates: [45.58366807269755, -17.674606523849338]
            • 0:45.58366807269755
            • 1:-17.674606523849338
        • properties: rural
          • type:rural
          • Map:30
      • 121: Feature (Point, 2 properties)
        • type:Feature
        • id:131
        • geometry: Point (-1.64, 9.06)
          • type:Point
          • coordinates: [-1.6363390209913762, 9.05522801597598]
            • 0:-1.6363390209913762
            • 1:9.05522801597598
        • properties: rural
          • type:rural
          • Map:20
      • 122: Feature (Point, 2 properties)
        • type:Feature
        • id:132
        • geometry: Point (18.32, -9.99)
          • type:Point
          • coordinates: [18.323914794803525, -9.987510368019777]
            • 0:18.323914794803525
            • 1:-9.987510368019777
        • properties: rural
          • type:rural
          • Map:10
      • 123: Feature (Point, 2 properties)
        • type:Feature
        • id:133
        • geometry: Point (46.16, -19.44)
          • type:Point
          • coordinates: [46.15602353418212, -19.444605782236188]
            • 0:46.15602353418212
            • 1:-19.444605782236188
        • properties: rural
          • type:rural
          • Map:30
      • 124: Feature (Point, 2 properties)
        • type:Feature
        • id:134
        • geometry: Point (-11.41, 6.90)
          • type:Point
          • coordinates: [-11.41173439353928, 6.900916781944957]
            • 0:-11.41173439353928
            • 1:6.900916781944957
        • properties: rural
          • type:rural
          • Map:10
      • 125: Feature (Point, 2 properties)
        • type:Feature
        • id:135
        • geometry: Point (40.40, -2.47)
          • type:Point
          • coordinates: [40.401967042035, -2.474300506780006]
            • 0:40.401967042035
            • 1:-2.474300506780006
        • properties: rural
          • type:rural
          • Map:90
      • 126: Feature (Point, 2 properties)
        • type:Feature
        • id:136
        • geometry: Point (0.47, 10.60)
          • type:Point
          • coordinates: [0.467567724824364, 10.604441824986168]
            • 0:0.467567724824364
            • 1:10.604441824986168
        • properties: rural
          • type:rural
          • Map:40
      • 127: Feature (Point, 2 properties)
        • type:Feature
        • id:137
        • geometry: Point (11.12, 5.21)
          • type:Point
          • coordinates: [11.119207629501501, 5.210466115144128]
            • 0:11.119207629501501
            • 1:5.210466115144128
        • properties: rural
          • type:rural
          • Map:10
      • 128: Feature (Point, 2 properties)
        • type:Feature
        • id:138
        • geometry: Point (-7.33, 21.54)
          • type:Point
          • coordinates: [-7.327725746386834, 21.538956563821767]
            • 0:-7.327725746386834
            • 1:21.538956563821767
        • properties: rural
          • type:rural
          • Map:60
      • 129: Feature (Point, 2 properties)
        • type:Feature
        • id:139
        • geometry: Point (28.64, -8.08)
          • type:Point
          • coordinates: [28.644692655370545, -8.07753425575336]
            • 0:28.644692655370545
            • 1:-8.07753425575336
        • properties: rural
          • type:rural
          • Map:10
      • 130: Feature (Point, 2 properties)
        • type:Feature
        • id:140
        • geometry: Point (30.59, -9.06)
          • type:Point
          • coordinates: [30.58635419240895, -9.064546314528354]
            • 0:30.58635419240895
            • 1:-9.064546314528354
        • properties: rural
          • type:rural
          • Map:10
      • 131: Feature (Point, 2 properties)
        • type:Feature
        • id:141
        • geometry: Point (41.31, 8.72)
          • type:Point
          • coordinates: [41.306374492802234, 8.719575764385775]
            • 0:41.306374492802234
            • 1:8.719575764385775
        • properties: rural
          • type:rural
          • Map:30
      • 132: Feature (Point, 2 properties)
        • type:Feature
        • id:142
        • geometry: Point (20.27, -16.59)
          • type:Point
          • coordinates: [20.274182263968132, -16.59056396650076]
            • 0:20.274182263968132
            • 1:-16.59056396650076
        • properties: rural
          • type:rural
          • Map:20
      • 133: Feature (Point, 2 properties)
        • type:Feature
        • id:143
        • geometry: Point (20.26, 3.99)
          • type:Point
          • coordinates: [20.25618446297912, 3.986464348305524]
            • 0:20.25618446297912
            • 1:3.986464348305524
        • properties: rural
          • type:rural
          • Map:30
      • 134: Feature (Point, 2 properties)
        • type:Feature
        • id:144
        • geometry: Point (1.23, 19.63)
          • type:Point
          • coordinates: [1.2256876839731987, 19.62524947265123]
            • 0:1.2256876839731987
            • 1:19.62524947265123
        • properties: rural
          • type:rural
          • Map:60
      • 135: Feature (Point, 2 properties)
        • type:Feature
        • id:145
        • geometry: Point (31.73, -18.07)
          • type:Point
          • coordinates: [31.73200497011418, -18.06832379386862]
            • 0:31.73200497011418
            • 1:-18.06832379386862
        • properties: rural
          • type:rural
          • Map:30
      • 136: Feature (Point, 2 properties)
        • type:Feature
        • id:146
        • geometry: Point (12.32, 7.04)
          • type:Point
          • coordinates: [12.320836739892927, 7.03699003470156]
            • 0:12.320836739892927
            • 1:7.03699003470156
        • properties: rural
          • type:rural
          • Map:10
      • 137: Feature (Point, 2 properties)
        • type:Feature
        • id:147
        • geometry: Point (37.86, -5.36)
          • type:Point
          • coordinates: [37.85525560225802, -5.363951816645058]
            • 0:37.85525560225802
            • 1:-5.363951816645058
        • properties: rural
          • type:rural
          • Map:30
      • 138: Feature (Point, 2 properties)
        • type:Feature
        • id:148
        • geometry: Point (-10.79, 23.39)
          • type:Point
          • coordinates: [-10.793478061953097, 23.39220523376939]
            • 0:-10.793478061953097
            • 1:23.39220523376939
        • properties: rural
          • type:rural
          • Map:60
      • 139: Feature (Point, 2 properties)
        • type:Feature
        • id:149
        • geometry: Point (28.46, -10.22)
          • type:Point
          • coordinates: [28.457250265381035, -10.22287875549853]
            • 0:28.457250265381035
            • 1:-10.22287875549853
        • properties: rural
          • type:rural
          • Map:30
      • 140: Feature (Point, 2 properties)
        • type:Feature
        • id:150
        • geometry: Point (25.95, -0.27)
          • type:Point
          • coordinates: [25.949846723902052, -0.27481262124781175]
            • 0:25.949846723902052
            • 1:-0.27481262124781175
        • properties: rural
          • type:rural
          • Map:10
      • 141: Feature (Point, 2 properties)
        • type:Feature
        • id:151
        • geometry: Point (36.95, 5.60)
          • type:Point
          • coordinates: [36.950671639304744, 5.603694599424583]
            • 0:36.950671639304744
            • 1:5.603694599424583
        • properties: rural
          • type:rural
          • Map:30
      • 142: Feature (Point, 2 properties)
        • type:Feature
        • id:152
        • geometry: Point (-2.13, 22.03)
          • type:Point
          • coordinates: [-2.133517162960306, 22.025394078906906]
            • 0:-2.133517162960306
            • 1:22.025394078906906
        • properties: rural
          • type:rural
          • Map:60
      • 143: Feature (Point, 2 properties)
        • type:Feature
        • id:153
        • geometry: Point (15.53, -15.19)
          • type:Point
          • coordinates: [15.52904271970959, -15.189157149512287]
            • 0:15.52904271970959
            • 1:-15.189157149512287
        • properties: rural
          • type:rural
          • Map:20
      • 144: Feature (Point, 2 properties)
        • type:Feature
        • id:154
        • geometry: Point (-10.35, 21.81)
          • type:Point
          • coordinates: [-10.345747853192693, 21.806044311788376]
            • 0:-10.345747853192693
            • 1:21.806044311788376
        • properties: rural
          • type:rural
          • Map:60
      • 145: Feature (Point, 2 properties)
        • type:Feature
        • id:155
        • geometry: Point (-10.52, 6.60)
          • type:Point
          • coordinates: [-10.51756268524059, 6.602902550504094]
            • 0:-10.51756268524059
            • 1:6.602902550504094
        • properties: rural
          • type:rural
          • Map:10
      • 146: Feature (Point, 2 properties)
        • type:Feature
        • id:156
        • geometry: Point (41.68, 8.93)
          • type:Point
          • coordinates: [41.67685844697797, 8.933339347703395]
            • 0:41.67685844697797
            • 1:8.933339347703395
        • properties: rural
          • type:rural
          • Map:20
      • 147: Feature (Point, 2 properties)
        • type:Feature
        • id:157
        • geometry: Point (21.06, -0.68)
          • type:Point
          • coordinates: [21.056007485252625, -0.6784820240437537]
            • 0:21.056007485252625
            • 1:-0.6784820240437537
        • properties: rural
          • type:rural
          • Map:10
      • 148: Feature (Point, 2 properties)
        • type:Feature
        • id:158
        • geometry: Point (12.35, 7.99)
          • type:Point
          • coordinates: [12.350991667662855, 7.990007042063847]
            • 0:12.350991667662855
            • 1:7.990007042063847
        • properties: rural
          • type:rural
          • Map:20
      • 149: Feature (Point, 2 properties)
        • type:Feature
        • id:160
        • geometry: Point (-2.12, 11.81)
          • type:Point
          • coordinates: [-2.1234201859002684, 11.808941836149105]
            • 0:-2.1234201859002684
            • 1:11.808941836149105
        • properties: rural
          • type:rural
          • Map:20
      • 150: Feature (Point, 2 properties)
        • type:Feature
        • id:161
        • geometry: Point (-6.68, 17.04)
          • type:Point
          • coordinates: [-6.682581336315017, 17.036797482417295]
            • 0:-6.682581336315017
            • 1:17.036797482417295
        • properties: rural
          • type:rural
          • Map:30
      • 151: Feature (Point, 2 properties)
        • type:Feature
        • id:162
        • geometry: Point (25.27, -15.85)
          • type:Point
          • coordinates: [25.266910129160404, -15.847343538889845]
            • 0:25.266910129160404
            • 1:-15.847343538889845
        • properties: rural
          • type:rural
          • Map:10
      • 152: Feature (Point, 2 properties)
        • type:Feature
        • id:163
        • geometry: Point (13.82, 10.27)
          • type:Point
          • coordinates: [13.823573114285514, 10.265909816442608]
            • 0:13.823573114285514
            • 1:10.265909816442608
        • properties: rural
          • type:rural
          • Map:20
      • 153: Feature (Point, 2 properties)
        • type:Feature
        • id:165
        • geometry: Point (-2.91, 6.94)
          • type:Point
          • coordinates: [-2.910322307500868, 6.939274450921171]
            • 0:-2.910322307500868
            • 1:6.939274450921171
        • properties: rural
          • type:rural
          • Map:10
      • 154: Feature (Point, 2 properties)
        • type:Feature
        • id:166
        • geometry: Point (34.91, 3.34)
          • type:Point
          • coordinates: [34.90795239211098, 3.3381586660730367]
            • 0:34.90795239211098
            • 1:3.3381586660730367
        • properties: rural
          • type:rural
          • Map:20
      • 155: Feature (Point, 2 properties)
        • type:Feature
        • id:168
        • geometry: Point (34.28, -4.60)
          • type:Point
          • coordinates: [34.28341062457739, -4.595538390192604]
            • 0:34.28341062457739
            • 1:-4.595538390192604
        • properties: rural
          • type:rural
          • Map:20
      • 156: Feature (Point, 2 properties)
        • type:Feature
        • id:169
        • geometry: Point (-6.05, 15.59)
          • type:Point
          • coordinates: [-6.046488620074726, 15.593930888394038]
            • 0:-6.046488620074726
            • 1:15.593930888394038
        • properties: rural
          • type:rural
          • Map:30
      • 157: Feature (Point, 2 properties)
        • type:Feature
        • id:170
        • geometry: Point (-4.35, 15.49)
          • type:Point
          • coordinates: [-4.347316829446072, 15.486196067073381]
            • 0:-4.347316829446072
            • 1:15.486196067073381
        • properties: rural
          • type:rural
          • Map:30
      • 158: Feature (Point, 2 properties)
        • type:Feature
        • id:171
        • geometry: Point (44.80, -17.95)
          • type:Point
          • coordinates: [44.79977023216923, -17.952037650383538]
            • 0:44.79977023216923
            • 1:-17.952037650383538
        • properties: rural
          • type:rural
          • Map:30
      • 159: Feature (Point, 2 properties)
        • type:Feature
        • id:172
        • geometry: Point (20.70, -17.54)
          • type:Point
          • coordinates: [20.70095939071639, -17.537635009351956]
            • 0:20.70095939071639
            • 1:-17.537635009351956
        • properties: rural
          • type:rural
          • Map:10
      • 160: Feature (Point, 2 properties)
        • type:Feature
        • id:173
        • geometry: Point (-10.52, 25.66)
          • type:Point
          • coordinates: [-10.517559348641873, 25.66325854852455]
            • 0:-10.517559348641873
            • 1:25.66325854852455
        • properties: rural
          • type:rural
          • Map:60
      • 161: Feature (Point, 2 properties)
        • type:Feature
        • id:174
        • geometry: Point (-6.09, 15.54)
          • type:Point
          • coordinates: [-6.092963046745389, 15.543449361191172]
            • 0:-6.092963046745389
            • 1:15.543449361191172
        • properties: rural
          • type:rural
          • Map:30
      • 162: Feature (Point, 2 properties)
        • type:Feature
        • id:175
        • geometry: Point (19.20, -13.26)
          • type:Point
          • coordinates: [19.20117402265326, -13.262584546775534]
            • 0:19.20117402265326
            • 1:-13.262584546775534
        • properties: rural
          • type:rural
          • Map:20
      • 163: Feature (Point, 2 properties)
        • type:Feature
        • id:176
        • geometry: Point (13.18, -7.11)
          • type:Point
          • coordinates: [13.180526062211579, -7.108918047942543]
            • 0:13.180526062211579
            • 1:-7.108918047942543
        • properties: rural
          • type:rural
          • Map:10
      • 164: Feature (Point, 2 properties)
        • type:Feature
        • id:177
        • geometry: Point (42.09, 6.94)
          • type:Point
          • coordinates: [42.09015884773549, 6.9407016663742995]
            • 0:42.09015884773549
            • 1:6.9407016663742995
        • properties: rural
          • type:rural
          • Map:20
      • 165: Feature (Point, 2 properties)
        • type:Feature
        • id:178
        • geometry: Point (38.20, 12.37)
          • type:Point
          • coordinates: [38.19533731655923, 12.368571002308508]
            • 0:38.19533731655923
            • 1:12.368571002308508
        • properties: rural
          • type:rural
          • Map:30
      • 166: Feature (Point, 2 properties)
        • type:Feature
        • id:179
        • geometry: Point (25.04, -16.42)
          • type:Point
          • coordinates: [25.04309112214777, -16.421679100210486]
            • 0:25.04309112214777
            • 1:-16.421679100210486
        • properties: rural
          • type:rural
          • Map:10
      • 167: Feature (Point, 2 properties)
        • type:Feature
        • id:180
        • geometry: Point (36.67, 10.29)
          • type:Point
          • coordinates: [36.6666241326006, 10.293283341842978]
            • 0:36.6666241326006
            • 1:10.293283341842978
        • properties: rural
          • type:rural
          • Map:10
      • 168: Feature (Point, 2 properties)
        • type:Feature
        • id:181
        • geometry: Point (20.27, -14.08)
          • type:Point
          • coordinates: [20.273752139009993, -14.076547463891854]
            • 0:20.273752139009993
            • 1:-14.076547463891854
        • properties: rural
          • type:rural
          • Map:20
      • 169: Feature (Point, 2 properties)
        • type:Feature
        • id:182
        • geometry: Point (-4.78, 12.54)
          • type:Point
          • coordinates: [-4.784997330399172, 12.543150690229666]
            • 0:-4.784997330399172
            • 1:12.543150690229666
        • properties: rural
          • type:rural
          • Map:40
      • 170: Feature (Point, 2 properties)
        • type:Feature
        • id:183
        • geometry: Point (44.49, -17.59)
          • type:Point
          • coordinates: [44.49075428424599, -17.59206178048583]
            • 0:44.49075428424599
            • 1:-17.59206178048583
        • properties: rural
          • type:rural
          • Map:30
      • 171: Feature (Point, 2 properties)
        • type:Feature
        • id:184
        • geometry: Point (24.46, 4.66)
          • type:Point
          • coordinates: [24.463479537983755, 4.6637351716630935]
            • 0:24.463479537983755
            • 1:4.6637351716630935
        • properties: rural
          • type:rural
          • Map:10
      • 172: Feature (Point, 2 properties)
        • type:Feature
        • id:185
        • geometry: Point (8.86, 4.91)
          • type:Point
          • coordinates: [8.85519752425343, 4.913278385561034]
            • 0:8.85519752425343
            • 1:4.913278385561034
        • properties: rural
          • type:rural
          • Map:10
      • 173: Feature (Point, 2 properties)
        • type:Feature
        • id:186
        • geometry: Point (28.04, -11.05)
          • type:Point
          • coordinates: [28.03647959179197, -11.054243156286581]
            • 0:28.03647959179197
            • 1:-11.054243156286581
        • properties: rural
          • type:rural
          • Map:30
      • 174: Feature (Point, 2 properties)
        • type:Feature
        • id:187
        • geometry: Point (41.26, 3.59)
          • type:Point
          • coordinates: [41.25686736322098, 3.5859379465908505]
            • 0:41.25686736322098
            • 1:3.5859379465908505
        • properties: rural
          • type:rural
          • Map:20
      • 175: Feature (Point, 2 properties)
        • type:Feature
        • id:188
        • geometry: Point (36.96, -2.20)
          • type:Point
          • coordinates: [36.959993340246655, -2.2008466455562434]
            • 0:36.959993340246655
            • 1:-2.2008466455562434
        • properties: rural
          • type:rural
          • Map:20
      • 176: Feature (Point, 2 properties)
        • type:Feature
        • id:189
        • geometry: Point (36.88, 2.20)
          • type:Point
          • coordinates: [36.87529194296069, 2.1959518399960847]
            • 0:36.87529194296069
            • 1:2.1959518399960847
        • properties: rural
          • type:rural
          • Map:20
      • 177: Feature (Point, 2 properties)
        • type:Feature
        • id:190
        • geometry: Point (34.99, -1.22)
          • type:Point
          • coordinates: [34.98725276327688, -1.2184826937300983]
            • 0:34.98725276327688
            • 1:-1.2184826937300983
        • properties: rural
          • type:rural
          • Map:30
      • 178: Feature (Point, 2 properties)
        • type:Feature
        • id:191
        • geometry: Point (21.65, -12.70)
          • type:Point
          • coordinates: [21.646200763310556, -12.701452081736184]
            • 0:21.646200763310556
            • 1:-12.701452081736184
        • properties: rural
          • type:rural
          • Map:30
      • 179: Feature (Point, 2 properties)
        • type:Feature
        • id:192
        • geometry: Point (18.97, -10.58)
          • type:Point
          • coordinates: [18.972182538324567, -10.579561026483878]
            • 0:18.972182538324567
            • 1:-10.579561026483878
        • properties: rural
          • type:rural
          • Map:10
      • 180: Feature (Point, 2 properties)
        • type:Feature
        • id:193
        • geometry: Point (-0.37, 16.59)
          • type:Point
          • coordinates: [-0.373179325155835, 16.59332718906181]
            • 0:-0.373179325155835
            • 1:16.59332718906181
        • properties: rural
          • type:rural
          • Map:30
      • 181: Feature (Point, 2 properties)
        • type:Feature
        • id:194
        • geometry: Point (13.55, 3.30)
          • type:Point
          • coordinates: [13.546717979759125, 3.2981841591280863]
            • 0:13.546717979759125
            • 1:3.2981841591280863
        • properties: rural
          • type:rural
          • Map:10
      • 182: Feature (Point, 2 properties)
        • type:Feature
        • id:195
        • geometry: Point (28.49, 1.63)
          • type:Point
          • coordinates: [28.494132149418455, 1.6311621025213507]
            • 0:28.494132149418455
            • 1:1.6311621025213507
        • properties: rural
          • type:rural
          • Map:10
      • 183: Feature (Point, 2 properties)
        • type:Feature
        • id:196
        • geometry: Point (27.60, -14.18)
          • type:Point
          • coordinates: [27.600499531187882, -14.178774442185924]
            • 0:27.600499531187882
            • 1:-14.178774442185924
        • properties: rural
          • type:rural
          • Map:30
      • 184: Feature (Point, 2 properties)
        • type:Feature
        • id:199
        • geometry: Point (21.59, 1.63)
          • type:Point
          • coordinates: [21.585952177795946, 1.6308538435803508]
            • 0:21.585952177795946
            • 1:1.6308538435803508
        • properties: rural
          • type:rural
          • Map:10
      • 185: Feature (Point, 2 properties)
        • type:Feature
        • id:200
        • geometry: Point (19.04, -4.93)
          • type:Point
          • coordinates: [19.03823712849984, -4.933480273579102]
            • 0:19.03823712849984
            • 1:-4.933480273579102
        • properties: rural
          • type:rural
          • Map:30
      • 186: Feature (Point, 2 properties)
        • type:Feature
        • id:201
        • geometry: Point (1.62, 11.63)
          • type:Point
          • coordinates: [1.6226908499313923, 11.6258358536384]
            • 0:1.6226908499313923
            • 1:11.6258358536384
        • properties: rural
          • type:rural
          • Map:30
      • 187: Feature (Point, 2 properties)
        • type:Feature
        • id:202
        • geometry: Point (22.55, -1.07)
          • type:Point
          • coordinates: [22.548556324070667, -1.0741503878044742]
            • 0:22.548556324070667
            • 1:-1.0741503878044742
        • properties: rural
          • type:rural
          • Map:10
      • 188: Feature (Point, 2 properties)
        • type:Feature
        • id:203
        • geometry: Point (26.11, 1.48)
          • type:Point
          • coordinates: [26.108730140074726, 1.4765089413310812]
            • 0:26.108730140074726
            • 1:1.4765089413310812
        • properties: rural
          • type:rural
          • Map:10
      • 189: Feature (Point, 2 properties)
        • type:Feature
        • id:204
        • geometry: Point (29.38, -15.12)
          • type:Point
          • coordinates: [29.378513375502006, -15.12090000209529]
            • 0:29.378513375502006
            • 1:-15.12090000209529
        • properties: rural
          • type:rural
          • Map:10
      • 190: Feature (Point, 2 properties)
        • type:Feature
        • id:206
        • geometry: Point (17.50, -10.74)
          • type:Point
          • coordinates: [17.504114385886286, -10.743526326141897]
            • 0:17.504114385886286
            • 1:-10.743526326141897
        • properties: rural
          • type:rural
          • Map:10
      • 191: Feature (Point, 2 properties)
        • type:Feature
        • id:207
        • geometry: Point (-9.14, 25.86)
          • type:Point
          • coordinates: [-9.13699041557636, 25.864342894927688]
            • 0:-9.13699041557636
            • 1:25.864342894927688
        • properties: rural
          • type:rural
          • Map:60
      • 192: Feature (Point, 2 properties)
        • type:Feature
        • id:208
        • geometry: Point (-10.25, 15.71)
          • type:Point
          • coordinates: [-10.245731474863492, 15.708080342424452]
            • 0:-10.245731474863492
            • 1:15.708080342424452
        • properties: rural
          • type:rural
          • Map:30
      • 193: Feature (Point, 2 properties)
        • type:Feature
        • id:209
        • geometry: Point (44.78, 8.47)
          • type:Point
          • coordinates: [44.779385228522585, 8.467732374364338]
            • 0:44.779385228522585
            • 1:8.467732374364338
        • properties: rural
          • type:rural
          • Map:30
      • 194: Feature (Point, 2 properties)
        • type:Feature
        • id:210
        • geometry: Point (-7.77, 13.88)
          • type:Point
          • coordinates: [-7.765898141715126, 13.881823622371659]
            • 0:-7.765898141715126
            • 1:13.881823622371659
        • properties: rural
          • type:rural
          • Map:40
      • 195: Feature (Point, 2 properties)
        • type:Feature
        • id:211
        • geometry: Point (21.00, -1.66)
          • type:Point
          • coordinates: [20.997770454591276, -1.6551629363380111]
            • 0:20.997770454591276
            • 1:-1.6551629363380111
        • properties: rural
          • type:rural
          • Map:10
      • 196: Feature (Point, 2 properties)
        • type:Feature
        • id:213
        • geometry: Point (35.81, -8.48)
          • type:Point
          • coordinates: [35.81182913032699, -8.480201043865936]
            • 0:35.81182913032699
            • 1:-8.480201043865936
        • properties: rural
          • type:rural
          • Map:10
      • 197: Feature (Point, 2 properties)
        • type:Feature
        • id:214
        • geometry: Point (-9.28, 12.88)
          • type:Point
          • coordinates: [-9.28199952014198, 12.879345788063949]
            • 0:-9.28199952014198
            • 1:12.879345788063949
        • properties: rural
          • type:rural
          • Map:20
      • 198: Feature (Point, 2 properties)
        • type:Feature
        • id:215
        • geometry: Point (20.64, -5.42)
          • type:Point
          • coordinates: [20.64222744884776, -5.423666380535941]
            • 0:20.64222744884776
            • 1:-5.423666380535941
        • properties: rural
          • type:rural
          • Map:30
      • 199: Feature (Point, 2 properties)
        • type:Feature
        • id:216
        • geometry: Point (43.41, 6.59)
          • type:Point
          • coordinates: [43.414570849722175, 6.593901181144156]
            • 0:43.414570849722175
            • 1:6.593901181144156
        • properties: rural
          • type:rural
          • Map:30
      • 200: Feature (Point, 2 properties)
        • type:Feature
        • id:217
        • geometry: Point (13.15, 6.84)
          • type:Point
          • coordinates: [13.149196134382922, 6.839054807216287]
            • 0:13.149196134382922
            • 1:6.839054807216287
        • properties: rural
          • type:rural
          • Map:10
      • 201: Feature (Point, 2 properties)
        • type:Feature
        • id:218
        • geometry: Point (16.98, -3.58)
          • type:Point
          • coordinates: [16.980125438101712, -3.57694980819633]
            • 0:16.980125438101712
            • 1:-3.57694980819633
        • properties: rural
          • type:rural
          • Map:20
      • 202: Feature (Point, 2 properties)
        • type:Feature
        • id:219
        • geometry: Point (-14.48, 13.01)
          • type:Point
          • coordinates: [-14.481429887410624, 13.012569313101162]
            • 0:-14.481429887410624
            • 1:13.012569313101162
        • properties: rural
          • type:rural
          • Map:10
      • 203: Feature (Point, 2 properties)
        • type:Feature
        • id:220
        • geometry: Point (-7.79, 5.28)
          • type:Point
          • coordinates: [-7.786287046912519, 5.284310792311168]
            • 0:-7.786287046912519
            • 1:5.284310792311168
        • properties: rural
          • type:rural
          • Map:10
      • 204: Feature (Point, 2 properties)
        • type:Feature
        • id:221
        • geometry: Point (44.70, -17.35)
          • type:Point
          • coordinates: [44.701206322236814, -17.348446041572554]
            • 0:44.701206322236814
            • 1:-17.348446041572554
        • properties: rural
          • type:rural
          • Map:30
      • 205: Feature (Point, 2 properties)
        • type:Feature
        • id:222
        • geometry: Point (-10.32, 19.43)
          • type:Point
          • coordinates: [-10.319949723837244, 19.429943591713347]
            • 0:-10.319949723837244
            • 1:19.429943591713347
        • properties: rural
          • type:rural
          • Map:60
      • 206: Feature (Point, 2 properties)
        • type:Feature
        • id:223
        • geometry: Point (39.60, 0.95)
          • type:Point
          • coordinates: [39.59913330714161, 0.9525723233240582]
            • 0:39.59913330714161
            • 1:0.9525723233240582
        • properties: rural
          • type:rural
          • Map:20
      • 207: Feature (Point, 2 properties)
        • type:Feature
        • id:224
        • geometry: Point (35.81, 1.94)
          • type:Point
          • coordinates: [35.80707075765411, 1.9354923976665208]
            • 0:35.80707075765411
            • 1:1.9354923976665208
        • properties: rural
          • type:rural
          • Map:20
      • 208: Feature (Point, 2 properties)
        • type:Feature
        • id:225
        • geometry: Point (17.70, -1.30)
          • type:Point
          • coordinates: [17.695560404930887, -1.2970548601215346]
            • 0:17.695560404930887
            • 1:-1.2970548601215346
        • properties: rural
          • type:rural
          • Map:10
      • 209: Feature (Point, 2 properties)
        • type:Feature
        • id:226
        • geometry: Point (24.51, 4.32)
          • type:Point
          • coordinates: [24.505633978163782, 4.319819728031358]
            • 0:24.505633978163782
            • 1:4.319819728031358
        • properties: rural
          • type:rural
          • Map:10
      • 210: Feature (Point, 2 properties)
        • type:Feature
        • id:227
        • geometry: Point (36.36, 13.46)
          • type:Point
          • coordinates: [36.35673848949468, 13.464432262599523]
            • 0:36.35673848949468
            • 1:13.464432262599523
        • properties: rural
          • type:rural
          • Map:40
      • 211: Feature (Point, 2 properties)
        • type:Feature
        • id:228
        • geometry: Point (-2.11, 8.60)
          • type:Point
          • coordinates: [-2.1135258473277023, 8.604243319795387]
            • 0:-2.1135258473277023
            • 1:8.604243319795387
        • properties: rural
          • type:rural
          • Map:20
      • 212: Feature (Point, 2 properties)
        • type:Feature
        • id:229
        • geometry: Point (26.95, -1.85)
          • type:Point
          • coordinates: [26.953657336569293, -1.850681680812564]
            • 0:26.953657336569293
            • 1:-1.850681680812564
        • properties: rural
          • type:rural
          • Map:10
      • 213: Feature (Point, 2 properties)
        • type:Feature
        • id:230
        • geometry: Point (27.02, -12.89)
          • type:Point
          • coordinates: [27.022183483931226, -12.886582298077894]
            • 0:27.022183483931226
            • 1:-12.886582298077894
        • properties: rural
          • type:rural
          • Map:10
      • 214: Feature (Point, 2 properties)
        • type:Feature
        • id:231
        • geometry: Point (45.66, -22.83)
          • type:Point
          • coordinates: [45.66457455514758, -22.83168840706864]
            • 0:45.66457455514758
            • 1:-22.83168840706864
        • properties: rural
          • type:rural
          • Map:30
      • 215: Feature (Point, 2 properties)
        • type:Feature
        • id:232
        • geometry: Point (11.24, 3.51)
          • type:Point
          • coordinates: [11.244519180825623, 3.511313379468391]
            • 0:11.244519180825623
            • 1:3.511313379468391
        • properties: rural
          • type:rural
          • Map:10
      • 216: Feature (Point, 2 properties)
        • type:Feature
        • id:233
        • geometry: Point (19.01, -10.63)
          • type:Point
          • coordinates: [19.01442612888118, -10.63160901614461]
            • 0:19.01442612888118
            • 1:-10.63160901614461
        • properties: rural
          • type:rural
          • Map:10
      • 217: Feature (Point, 2 properties)
        • type:Feature
        • id:234
        • geometry: Point (-6.37, 13.24)
          • type:Point
          • coordinates: [-6.365016093594117, 13.238340010912841]
            • 0:-6.365016093594117
            • 1:13.238340010912841
        • properties: rural
          • type:rural
          • Map:30
      • 218: Feature (Point, 2 properties)
        • type:Feature
        • id:236
        • geometry: Point (-11.91, 20.54)
          • type:Point
          • coordinates: [-11.913453359813055, 20.538131492377108]
            • 0:-11.913453359813055
            • 1:20.538131492377108
        • properties: rural
          • type:rural
          • Map:60
      • 219: Feature (Point, 2 properties)
        • type:Feature
        • id:237
        • geometry: Point (17.79, -8.87)
          • type:Point
          • coordinates: [17.79211192337488, -8.873801794967022]
            • 0:17.79211192337488
            • 1:-8.873801794967022
        • properties: rural
          • type:rural
          • Map:10
      • 220: Feature (Point, 2 properties)
        • type:Feature
        • id:238
        • geometry: Point (-8.26, 22.82)
          • type:Point
          • coordinates: [-8.264912716874834, 22.818677838375066]
            • 0:-8.264912716874834
            • 1:22.818677838375066
        • properties: rural
          • type:rural
          • Map:60
      • 221: Feature (Point, 2 properties)
        • type:Feature
        • id:239
        • geometry: Point (-12.61, 22.23)
          • type:Point
          • coordinates: [-12.612736440340843, 22.225513853661077]
            • 0:-12.612736440340843
            • 1:22.225513853661077
        • properties: rural
          • type:rural
          • Map:60
      • 222: Feature (Point, 2 properties)
        • type:Feature
        • id:240
        • geometry: Point (-3.60, 14.21)
          • type:Point
          • coordinates: [-3.599452937168967, 14.212961153034296]
            • 0:-3.599452937168967
            • 1:14.212961153034296
        • properties: rural
          • type:rural
          • Map:30
      • 223: Feature (Point, 2 properties)
        • type:Feature
        • id:241
        • geometry: Point (-1.67, 8.43)
          • type:Point
          • coordinates: [-1.669264445883237, 8.428151317245195]
            • 0:-1.669264445883237
            • 1:8.428151317245195
        • properties: rural
          • type:rural
          • Map:20
      • 224: Feature (Point, 2 properties)
        • type:Feature
        • id:242
        • geometry: Point (44.37, 7.75)
          • type:Point
          • coordinates: [44.368493064737564, 7.751762254805961]
            • 0:44.368493064737564
            • 1:7.751762254805961
        • properties: rural
          • type:rural
          • Map:20
      • 225: Feature (Point, 2 properties)
        • type:Feature
        • id:243
        • geometry: Point (-8.16, 18.79)
          • type:Point
          • coordinates: [-8.161648752383806, 18.785249717164355]
            • 0:-8.161648752383806
            • 1:18.785249717164355
        • properties: rural
          • type:rural
          • Map:60
      • 226: Feature (Point, 2 properties)
        • type:Feature
        • id:244
        • geometry: Point (23.07, -7.29)
          • type:Point
          • coordinates: [23.065451875567383, -7.293546974576358]
            • 0:23.065451875567383
            • 1:-7.293546974576358
        • properties: rural
          • type:rural
          • Map:10
      • 227: Feature (Point, 2 properties)
        • type:Feature
        • id:245
        • geometry: Point (39.91, 0.93)
          • type:Point
          • coordinates: [39.91413211360037, 0.9263504841958411]
            • 0:39.91413211360037
            • 1:0.9263504841958411
        • properties: rural
          • type:rural
          • Map:20
      • 228: Feature (Point, 2 properties)
        • type:Feature
        • id:246
        • geometry: Point (15.40, -4.88)
          • type:Point
          • coordinates: [15.399386773814344, -4.877421536165619]
            • 0:15.399386773814344
            • 1:-4.877421536165619
        • properties: rural
          • type:rural
          • Map:10
      • 229: Feature (Point, 2 properties)
        • type:Feature
        • id:247
        • geometry: Point (21.00, -16.33)
          • type:Point
          • coordinates: [21.004569469099817, -16.33282476877369]
            • 0:21.004569469099817
            • 1:-16.33282476877369
        • properties: rural
          • type:rural
          • Map:20
      • 230: Feature (Point, 2 properties)
        • type:Feature
        • id:248
        • geometry: Point (-1.09, 13.97)
          • type:Point
          • coordinates: [-1.0941491243060906, 13.974972042294857]
            • 0:-1.0941491243060906
            • 1:13.974972042294857
        • properties: rural
          • type:rural
          • Map:30
      • 231: Feature (Point, 2 properties)
        • type:Feature
        • id:249
        • geometry: Point (15.26, -16.47)
          • type:Point
          • coordinates: [15.257428742826024, -16.466814438926818]
            • 0:15.257428742826024
            • 1:-16.466814438926818
        • properties: rural
          • type:rural
          • Map:20
      • 232: Feature (Point, 2 properties)
        • type:Feature
        • id:251
        • geometry: Point (31.57, -10.41)
          • type:Point
          • coordinates: [31.56568984371602, -10.41333196589372]
            • 0:31.56568984371602
            • 1:-10.41333196589372
        • properties: rural
          • type:rural
          • Map:30
      • 233: Feature (Point, 2 properties)
        • type:Feature
        • id:252
        • geometry: Point (46.61, -23.89)
          • type:Point
          • coordinates: [46.61408978005707, -23.894584796375963]
            • 0:46.61408978005707
            • 1:-23.894584796375963
        • properties: rural
          • type:rural
          • Map:30
      • 234: Feature (Point, 2 properties)
        • type:Feature
        • id:253
        • geometry: Point (39.21, -9.83)
          • type:Point
          • coordinates: [39.214741638115356, -9.834391135480727]
            • 0:39.214741638115356
            • 1:-9.834391135480727
        • properties: rural
          • type:rural
          • Map:10
      • 235: Feature (Point, 2 properties)
        • type:Feature
        • id:256
        • geometry: Point (-13.39, 17.07)
          • type:Point
          • coordinates: [-13.389222135417084, 17.07123523777752]
            • 0:-13.389222135417084
            • 1:17.07123523777752
        • properties: rural
          • type:rural
          • Map:30
      • 236: Feature (Point, 2 properties)
        • type:Feature
        • id:257
        • geometry: Point (44.91, -18.63)
          • type:Point
          • coordinates: [44.913416433683466, -18.633473109925365]
            • 0:44.913416433683466
            • 1:-18.633473109925365
        • properties: rural
          • type:rural
          • Map:30
      • 237: Feature (Point, 2 properties)
        • type:Feature
        • id:258
        • geometry: Point (41.44, 5.05)
          • type:Point
          • coordinates: [41.441036483123774, 5.051005504354964]
            • 0:41.441036483123774
            • 1:5.051005504354964
        • properties: rural
          • type:rural
          • Map:20
      • 238: Feature (Point, 2 properties)
        • type:Feature
        • id:259
        • geometry: Point (48.80, -19.83)
          • type:Point
          • coordinates: [48.798369616339556, -19.82564270905886]
            • 0:48.798369616339556
            • 1:-19.82564270905886
        • properties: rural
          • type:rural
          • Map:10
      • 239: Feature (Point, 2 properties)
        • type:Feature
        • id:260
        • geometry: Point (22.12, 4.07)
          • type:Point
          • coordinates: [22.12023549079874, 4.072622940455724]
            • 0:22.12023549079874
            • 1:4.072622940455724
        • properties: rural
          • type:rural
          • Map:10
      • 240: Feature (Point, 2 properties)
        • type:Feature
        • id:261
        • geometry: Point (25.92, -11.66)
          • type:Point
          • coordinates: [25.922591540970693, -11.655306701380384]
            • 0:25.922591540970693
            • 1:-11.655306701380384
        • properties: rural
          • type:rural
          • Map:10
      • 241: Feature (Point, 2 properties)
        • type:Feature
        • id:262
        • geometry: Point (27.68, -7.04)
          • type:Point
          • coordinates: [27.677591514324217, -7.0360077529534495]
            • 0:27.677591514324217
            • 1:-7.0360077529534495
        • properties: rural
          • type:rural
          • Map:30
      • 242: Feature (Point, 2 properties)
        • type:Feature
        • id:263
        • geometry: Point (38.76, 6.41)
          • type:Point
          • coordinates: [38.75611251915129, 6.412073123326978]
            • 0:38.75611251915129
            • 1:6.412073123326978
        • properties: rural
          • type:rural
          • Map:20
      • 243: Feature (Point, 2 properties)
        • type:Feature
        • id:264
        • geometry: Point (-8.80, 16.74)
          • type:Point
          • coordinates: [-8.79796857825882, 16.741360117002245]
            • 0:-8.79796857825882
            • 1:16.741360117002245
        • properties: rural
          • type:rural
          • Map:60
      • 244: Feature (Point, 2 properties)
        • type:Feature
        • id:265
        • geometry: Point (28.87, -15.05)
          • type:Point
          • coordinates: [28.87268474473194, -15.054046784086394]
            • 0:28.87268474473194
            • 1:-15.054046784086394
        • properties: rural
          • type:rural
          • Map:10
      • 245: Feature (Point, 2 properties)
        • type:Feature
        • id:266
        • geometry: Point (28.35, -12.10)
          • type:Point
          • coordinates: [28.35148951975115, -12.101141228117012]
            • 0:28.35148951975115
            • 1:-12.101141228117012
        • properties: rural
          • type:rural
          • Map:10
      • 246: Feature (Point, 2 properties)
        • type:Feature
        • id:267
        • geometry: Point (24.06, -4.46)
          • type:Point
          • coordinates: [24.060725821377805, -4.462433762458096]
            • 0:24.060725821377805
            • 1:-4.462433762458096
        • properties: rural
          • type:rural
          • Map:10
      • 247: Feature (Point, 2 properties)
        • type:Feature
        • id:268
        • geometry: Point (19.27, -14.64)
          • type:Point
          • coordinates: [19.266991223962027, -14.637838610868242]
            • 0:19.266991223962027
            • 1:-14.637838610868242
        • properties: rural
          • type:rural
          • Map:10
      • 248: Feature (Point, 2 properties)
        • type:Feature
        • id:269
        • geometry: Point (-2.21, 18.74)
          • type:Point
          • coordinates: [-2.2133080416575552, 18.73903315589942]
            • 0:-2.2133080416575552
            • 1:18.73903315589942
        • properties: rural
          • type:rural
          • Map:60
      • 249: Feature (Point, 2 properties)
        • type:Feature
        • id:270
        • geometry: Point (45.65, -25.06)
          • type:Point
          • coordinates: [45.654608054154075, -25.05912078774054]
            • 0:45.654608054154075
            • 1:-25.05912078774054
        • properties: rural
          • type:rural
          • Map:40
      • 250: Feature (Point, 2 properties)
        • type:Feature
        • id:271
        • geometry: Point (29.58, 1.10)
          • type:Point
          • coordinates: [29.579256316677743, 1.0976067334679154]
            • 0:29.579256316677743
            • 1:1.0976067334679154
        • properties: rural
          • type:rural
          • Map:10
      • 251: Feature (Point, 2 properties)
        • type:Feature
        • id:272
        • geometry: Point (25.77, 4.81)
          • type:Point
          • coordinates: [25.76593119310337, 4.811805908732123]
            • 0:25.76593119310337
            • 1:4.811805908732123
        • properties: rural
          • type:rural
          • Map:10
      • 252: Feature (Point, 2 properties)
        • type:Feature
        • id:273
        • geometry: Point (22.03, -7.92)
          • type:Point
          • coordinates: [22.034164147275394, -7.924487458607531]
            • 0:22.034164147275394
            • 1:-7.924487458607531
        • properties: rural
          • type:rural
          • Map:20
      • 253: Feature (Point, 2 properties)
        • type:Feature
        • id:274
        • geometry: Point (10.84, 5.38)
          • type:Point
          • coordinates: [10.843245354284564, 5.380787414458432]
            • 0:10.843245354284564
            • 1:5.380787414458432
        • properties: rural
          • type:rural
          • Map:10
      • 254: Feature (Point, 2 properties)
        • type:Feature
        • id:275
        • geometry: Point (15.80, -13.57)
          • type:Point
          • coordinates: [15.802228645990315, -13.570954286517374]
            • 0:15.802228645990315
            • 1:-13.570954286517374
        • properties: rural
          • type:rural
          • Map:10
      • 255: Feature (Point, 2 properties)
        • type:Feature
        • id:276
        • geometry: Point (21.54, -14.56)
          • type:Point
          • coordinates: [21.54122190815497, -14.562398908854389]
            • 0:21.54122190815497
            • 1:-14.562398908854389
        • properties: rural
          • type:rural
          • Map:30
      • 256: Feature (Point, 2 properties)
        • type:Feature
        • id:277
        • geometry: Point (36.23, 5.66)
          • type:Point
          • coordinates: [36.23444179730613, 5.659316381118358]
            • 0:36.23444179730613
            • 1:5.659316381118358
        • properties: rural
          • type:rural
          • Map:10
      • 257: Feature (Point, 2 properties)
        • type:Feature
        • id:278
        • geometry: Point (25.47, -17.57)
          • type:Point
          • coordinates: [25.473465820518065, -17.571796667639116]
            • 0:25.473465820518065
            • 1:-17.571796667639116
        • properties: rural
          • type:rural
          • Map:30
      • 258: Feature (Point, 2 properties)
        • type:Feature
        • id:279
        • geometry: Point (32.61, -18.62)
          • type:Point
          • coordinates: [32.608361706668404, -18.622468999099468]
            • 0:32.608361706668404
            • 1:-18.622468999099468
        • properties: rural
          • type:rural
          • Map:20
      • 259: Feature (Point, 2 properties)
        • type:Feature
        • id:280
        • geometry: Point (-1.39, 13.50)
          • type:Point
          • coordinates: [-1.3931152606527242, 13.497278661950777]
            • 0:-1.3931152606527242
            • 1:13.497278661950777
        • properties: rural
          • type:rural
          • Map:30
      • 260: Feature (Point, 2 properties)
        • type:Feature
        • id:281
        • geometry: Point (30.11, -17.60)
          • type:Point
          • coordinates: [30.109901546517623, -17.59537169465421]
            • 0:30.109901546517623
            • 1:-17.59537169465421
        • properties: rural
          • type:rural
          • Map:20
      • 261: Feature (Point, 2 properties)
        • type:Feature
        • id:282
        • geometry: Point (30.03, -20.00)
          • type:Point
          • coordinates: [30.029028909512288, -20.004836182341577]
            • 0:30.029028909512288
            • 1:-20.004836182341577
        • properties: rural
          • type:rural
          • Map:30
      • 262: Feature (Point, 2 properties)
        • type:Feature
        • id:284
        • geometry: Point (45.62, 6.84)
          • type:Point
          • coordinates: [45.617148501006376, 6.842516064224139]
            • 0:45.617148501006376
            • 1:6.842516064224139
        • properties: rural
          • type:rural
          • Map:20
      • 263: Feature (Point, 2 properties)
        • type:Feature
        • id:285
        • geometry: Point (-12.68, 17.34)
          • type:Point
          • coordinates: [-12.68392095496272, 17.342962340735376]
            • 0:-12.68392095496272
            • 1:17.342962340735376
        • properties: rural
          • type:rural
          • Map:60
      • 264: Feature (Point, 2 properties)
        • type:Feature
        • id:286
        • geometry: Point (42.22, 4.51)
          • type:Point
          • coordinates: [42.21809945492587, 4.514546740507594]
            • 0:42.21809945492587
            • 1:4.514546740507594
        • properties: rural
          • type:rural
          • Map:30
      • 265: Feature (Point, 2 properties)
        • type:Feature
        • id:287
        • geometry: Point (35.66, -7.22)
          • type:Point
          • coordinates: [35.65766077233924, -7.222851705716365]
            • 0:35.65766077233924
            • 1:-7.222851705716365
        • properties: rural
          • type:rural
          • Map:30
      • 266: Feature (Point, 2 properties)
        • type:Feature
        • id:289
        • geometry: Point (37.03, 8.28)
          • type:Point
          • coordinates: [37.026305268598364, 8.276315392032947]
            • 0:37.026305268598364
            • 1:8.276315392032947
        • properties: rural
          • type:rural
          • Map:10
      • 267: Feature (Point, 2 properties)
        • type:Feature
        • id:290
        • geometry: Point (24.25, 3.87)
          • type:Point
          • coordinates: [24.254066734094305, 3.8703986941144484]
            • 0:24.254066734094305
            • 1:3.8703986941144484
        • properties: rural
          • type:rural
          • Map:10
      • 268: Feature (Point, 2 properties)
        • type:Feature
        • id:291
        • geometry: Point (39.23, -0.63)
          • type:Point
          • coordinates: [39.23429339877253, -0.628008203677084]
            • 0:39.23429339877253
            • 1:-0.628008203677084
        • properties: rural
          • type:rural
          • Map:20
      • 269: Feature (Point, 2 properties)
        • type:Feature
        • id:292
        • geometry: Point (21.59, -9.81)
          • type:Point
          • coordinates: [21.594444785606594, -9.809233370186421]
            • 0:21.594444785606594
            • 1:-9.809233370186421
        • properties: rural
          • type:rural
          • Map:30
      • 270: Feature (Point, 2 properties)
        • type:Feature
        • id:293
        • geometry: Point (32.05, -3.75)
          • type:Point
          • coordinates: [32.053422718148994, -3.7465199725963463]
            • 0:32.053422718148994
            • 1:-3.7465199725963463
        • properties: rural
          • type:rural
          • Map:40
      • 271: Feature (Point, 2 properties)
        • type:Feature
        • id:295
        • geometry: Point (17.36, -5.22)
          • type:Point
          • coordinates: [17.364211472659395, -5.215294630117153]
            • 0:17.364211472659395
            • 1:-5.215294630117153
        • properties: rural
          • type:rural
          • Map:30
      • 272: Feature (Point, 2 properties)
        • type:Feature
        • id:296
        • geometry: Point (23.09, -9.48)
          • type:Point
          • coordinates: [23.088764285414648, -9.48006783824556]
            • 0:23.088764285414648
            • 1:-9.48006783824556
        • properties: rural
          • type:rural
          • Map:30
      • 273: Feature (Point, 2 properties)
        • type:Feature
        • id:297
        • geometry: Point (25.95, -11.69)
          • type:Point
          • coordinates: [25.949289150336362, -11.69328354101609]
            • 0:25.949289150336362
            • 1:-11.69328354101609
        • properties: rural
          • type:rural
          • Map:10
      • 274: Feature (Point, 2 properties)
        • type:Feature
        • id:298
        • geometry: Point (45.90, -24.83)
          • type:Point
          • coordinates: [45.90257090098148, -24.828951512851727]
            • 0:45.90257090098148
            • 1:-24.828951512851727
        • properties: rural
          • type:rural
          • Map:20
      • 275: Feature (Point, 2 properties)
        • type:Feature
        • id:299
        • geometry: Point (31.79, -11.65)
          • type:Point
          • coordinates: [31.793457383627597, -11.654906733746484]
            • 0:31.793457383627597
            • 1:-11.654906733746484
        • properties: rural
          • type:rural
          • Map:20
      • 276: Feature (Point, 2 properties)
        • type:Feature
        • id:300
        • geometry: Point (2.50, 16.11)
          • type:Point
          • coordinates: [2.5028515282487884, 16.114795971270425]
            • 0:2.5028515282487884
            • 1:16.114795971270425
        • properties: rural
          • type:rural
          • Map:60
      • 277: Feature (Point, 2 properties)
        • type:Feature
        • id:301
        • geometry: Point (25.44, 4.94)
          • type:Point
          • coordinates: [25.435162402241648, 4.936262855379125]
            • 0:25.435162402241648
            • 1:4.936262855379125
        • properties: rural
          • type:rural
          • Map:30
      • 278: Feature (Point, 2 properties)
        • type:Feature
        • id:303
        • geometry: Point (46.06, -21.96)
          • type:Point
          • coordinates: [46.05873025211376, -21.958090079659783]
            • 0:46.05873025211376
            • 1:-21.958090079659783
        • properties: rural
          • type:rural
          • Map:30
      • 279: Feature (Point, 2 properties)
        • type:Feature
        • id:304
        • geometry: Point (35.50, 11.91)
          • type:Point
          • coordinates: [35.50490152512886, 11.912542908449625]
            • 0:35.50490152512886
            • 1:11.912542908449625
        • properties: rural
          • type:rural
          • Map:10
      • 280: Feature (Point, 2 properties)
        • type:Feature
        • id:305
        • geometry: Point (30.79, 1.69)
          • type:Point
          • coordinates: [30.78610514092665, 1.6862560251947247]
            • 0:30.78610514092665
            • 1:1.6862560251947247
        • properties: rural
          • type:rural
          • Map:80
      • 281: Feature (Point, 2 properties)
        • type:Feature
        • id:306
        • geometry: Point (23.22, -6.82)
          • type:Point
          • coordinates: [23.223853131474993, -6.816418956028641]
            • 0:23.223853131474993
            • 1:-6.816418956028641
        • properties: rural
          • type:rural
          • Map:30
      • 282: Feature (Point, 2 properties)
        • type:Feature
        • id:307
        • geometry: Point (-13.76, 15.15)
          • type:Point
          • coordinates: [-13.763824992939918, 15.152424327418668]
            • 0:-13.763824992939918
            • 1:15.152424327418668
        • properties: rural
          • type:rural
          • Map:20
      • 283: Feature (Point, 2 properties)
        • type:Feature
        • id:309
        • geometry: Point (36.23, 4.69)
          • type:Point
          • coordinates: [36.23150460164001, 4.691718414165929]
            • 0:36.23150460164001
            • 1:4.691718414165929
        • properties: rural
          • type:rural
          • Map:30
      • 284: Feature (Point, 2 properties)
        • type:Feature
        • id:310
        • geometry: Point (21.48, -7.08)
          • type:Point
          • coordinates: [21.475458918776845, -7.075679369902471]
            • 0:21.475458918776845
            • 1:-7.075679369902471
        • properties: rural
          • type:rural
          • Map:20
      • 285: Feature (Point, 2 properties)
        • type:Feature
        • id:311
        • geometry: Point (-2.72, 14.11)
          • type:Point
          • coordinates: [-2.7194248312216, 14.108251006994523]
            • 0:-2.7194248312216
            • 1:14.108251006994523
        • properties: rural
          • type:rural
          • Map:30
      • 286: Feature (Point, 2 properties)
        • type:Feature
        • id:312
        • geometry: Point (32.17, -10.61)
          • type:Point
          • coordinates: [32.17260446887408, -10.606236479006265]
            • 0:32.17260446887408
            • 1:-10.606236479006265
        • properties: rural
          • type:rural
          • Map:10
      • 287: Feature (Point, 2 properties)
        • type:Feature
        • id:314
        • geometry: Point (39.98, 3.83)
          • type:Point
          • coordinates: [39.9772407053174, 3.8281645379080547]
            • 0:39.9772407053174
            • 1:3.8281645379080547
        • properties: rural
          • type:rural
          • Map:20
      • 288: Feature (Point, 2 properties)
        • type:Feature
        • id:315
        • geometry: Point (-10.36, 23.63)
          • type:Point
          • coordinates: [-10.361111497757335, 23.625543104279508]
            • 0:-10.361111497757335
            • 1:23.625543104279508
        • properties: rural
          • type:rural
          • Map:60
      • 289: Feature (Point, 2 properties)
        • type:Feature
        • id:316
        • geometry: Point (22.05, -16.14)
          • type:Point
          • coordinates: [22.046997410022954, -16.14450872915835]
            • 0:22.046997410022954
            • 1:-16.14450872915835
        • properties: rural
          • type:rural
          • Map:20
      • 290: Feature (Point, 2 properties)
        • type:Feature
        • id:317
        • geometry: Point (21.57, -12.25)
          • type:Point
          • coordinates: [21.572869959901816, -12.248416671364428]
            • 0:21.572869959901816
            • 1:-12.248416671364428
        • properties: rural
          • type:rural
          • Map:30
      • 291: Feature (Point, 2 properties)
        • type:Feature
        • id:318
        • geometry: Point (46.66, -21.93)
          • type:Point
          • coordinates: [46.661803536996665, -21.92673194065714]
            • 0:46.661803536996665
            • 1:-21.92673194065714
        • properties: rural
          • type:rural
          • Map:30
      • 292: Feature (Point, 2 properties)
        • type:Feature
        • id:319
        • geometry: Point (21.49, 0.28)
          • type:Point
          • coordinates: [21.487335824394314, 0.28052009234223424]
            • 0:21.487335824394314
            • 1:0.28052009234223424
        • properties: rural
          • type:rural
          • Map:10
      • 293: Feature (Point, 2 properties)
        • type:Feature
        • id:320
        • geometry: Point (-6.82, 19.75)
          • type:Point
          • coordinates: [-6.822291171713114, 19.748393075711633]
            • 0:-6.822291171713114
            • 1:19.748393075711633
        • properties: rural
          • type:rural
          • Map:60
      • 294: Feature (Point, 2 properties)
        • type:Feature
        • id:321
        • geometry: Point (-10.35, 8.09)
          • type:Point
          • coordinates: [-10.348233274007159, 8.089319965925771]
            • 0:-10.348233274007159
            • 1:8.089319965925771
        • properties: rural
          • type:rural
          • Map:10
      • 295: Feature (Point, 2 properties)
        • type:Feature
        • id:322
        • geometry: Point (-12.59, 21.49)
          • type:Point
          • coordinates: [-12.588465247734575, 21.487675924444115]
            • 0:-12.588465247734575
            • 1:21.487675924444115
        • properties: rural
          • type:rural
          • Map:60
      • 296: Feature (Point, 2 properties)
        • type:Feature
        • id:324
        • geometry: Point (20.38, -17.27)
          • type:Point
          • coordinates: [20.37570709739416, -17.265580210231278]
            • 0:20.37570709739416
            • 1:-17.265580210231278
        • properties: rural
          • type:rural
          • Map:20
      • 297: Feature (Point, 2 properties)
        • type:Feature
        • id:325
        • geometry: Point (28.58, -1.21)
          • type:Point
          • coordinates: [28.581741260395606, -1.214004792814898]
            • 0:28.581741260395606
            • 1:-1.214004792814898
        • properties: rural
          • type:rural
          • Map:10
      • 298: Feature (Point, 2 properties)
        • type:Feature
        • id:326
        • geometry: Point (-4.91, 18.18)
          • type:Point
          • coordinates: [-4.907486473109883, 18.179859775255704]
            • 0:-4.907486473109883
            • 1:18.179859775255704
        • properties: rural
          • type:rural
          • Map:60
      • 299: Feature (Point, 2 properties)
        • type:Feature
        • id:328
        • geometry: Point (21.02, 2.16)
          • type:Point
          • coordinates: [21.024931412708455, 2.160935116852656]
            • 0:21.024931412708455
            • 1:2.160935116852656
        • properties: rural
          • type:rural
          • Map:10
      • 300: Feature (Point, 2 properties)
        • type:Feature
        • id:329
        • geometry: Point (37.86, -6.05)
          • type:Point
          • coordinates: [37.86458932743538, -6.049571726482493]
            • 0:37.86458932743538
            • 1:-6.049571726482493
        • properties: rural
          • type:rural
          • Map:10
      • 301: Feature (Point, 2 properties)
        • type:Feature
        • id:330
        • geometry: Point (33.86, -8.60)
          • type:Point
          • coordinates: [33.856936731367036, -8.603015253023116]
            • 0:33.856936731367036
            • 1:-8.603015253023116
        • properties: rural
          • type:rural
          • Map:40
      • 302: Feature (Point, 2 properties)
        • type:Feature
        • id:331
        • geometry: Point (45.46, -22.08)
          • type:Point
          • coordinates: [45.46441639420323, -22.077443225848462]
            • 0:45.46441639420323
            • 1:-22.077443225848462
        • properties: rural
          • type:rural
          • Map:30
      • 303: Feature (Point, 2 properties)
        • type:Feature
        • id:333
        • geometry: Point (-14.12, 20.65)
          • type:Point
          • coordinates: [-14.116821594923184, 20.645250508086168]
            • 0:-14.116821594923184
            • 1:20.645250508086168
        • properties: rural
          • type:rural
          • Map:60
      • 304: Feature (Point, 2 properties)
        • type:Feature
        • id:334
        • geometry: Point (32.91, -19.94)
          • type:Point
          • coordinates: [32.910006148027634, -19.936666047590077]
            • 0:32.910006148027634
            • 1:-19.936666047590077
        • properties: rural
          • type:rural
          • Map:10
      • 305: Feature (Point, 2 properties)
        • type:Feature
        • id:335
        • geometry: Point (39.06, 1.69)
          • type:Point
          • coordinates: [39.061082801120165, 1.6868624494890645]
            • 0:39.061082801120165
            • 1:1.6868624494890645
        • properties: rural
          • type:rural
          • Map:30
      • 306: Feature (Point, 2 properties)
        • type:Feature
        • id:336
        • geometry: Point (29.76, 1.77)
          • type:Point
          • coordinates: [29.75519540929895, 1.774832297918214]
            • 0:29.75519540929895
            • 1:1.774832297918214
        • properties: rural
          • type:rural
          • Map:10
      • 307: Feature (Point, 2 properties)
        • type:Feature
        • id:337
        • geometry: Point (23.29, -8.43)
          • type:Point
          • coordinates: [23.287056222923642, -8.426866935699225]
            • 0:23.287056222923642
            • 1:-8.426866935699225
        • properties: rural
          • type:rural
          • Map:10
      • 308: Feature (Point, 2 properties)
        • type:Feature
        • id:339
        • geometry: Point (28.16, -20.19)
          • type:Point
          • coordinates: [28.15540281193963, -20.18681476327105]
            • 0:28.15540281193963
            • 1:-20.18681476327105
        • properties: rural
          • type:rural
          • Map:20
      • 309: Feature (Point, 2 properties)
        • type:Feature
        • id:340
        • geometry: Point (12.63, -6.19)
          • type:Point
          • coordinates: [12.631689701255304, -6.192275720891216]
            • 0:12.631689701255304
            • 1:-6.192275720891216
        • properties: rural
          • type:rural
          • Map:30
      • 310: Feature (Point, 2 properties)
        • type:Feature
        • id:341
        • geometry: Point (-8.89, 24.12)
          • type:Point
          • coordinates: [-8.892168846803399, 24.11532380529088]
            • 0:-8.892168846803399
            • 1:24.11532380529088
        • properties: rural
          • type:rural
          • Map:60
      • 311: Feature (Point, 2 properties)
        • type:Feature
        • id:342
        • geometry: Point (41.37, 7.36)
          • type:Point
          • coordinates: [41.37343209625035, 7.363939914573646]
            • 0:41.37343209625035
            • 1:7.363939914573646
        • properties: rural
          • type:rural
          • Map:20
      • 312: Feature (Point, 2 properties)
        • type:Feature
        • id:343
        • geometry: Point (17.69, -6.31)
          • type:Point
          • coordinates: [17.694620646008495, -6.314528976325116]
            • 0:17.694620646008495
            • 1:-6.314528976325116
        • properties: rural
          • type:rural
          • Map:20
      • 313: Feature (Point, 2 properties)
        • type:Feature
        • id:344
        • geometry: Point (26.93, -9.40)
          • type:Point
          • coordinates: [26.928558554883228, -9.396717607534587]
            • 0:26.928558554883228
            • 1:-9.396717607534587
        • properties: rural
          • type:rural
          • Map:20
      • 314: Feature (Point, 2 properties)
        • type:Feature
        • id:345
        • geometry: Point (21.23, -11.65)
          • type:Point
          • coordinates: [21.231671794159478, -11.651019929069792]
            • 0:21.231671794159478
            • 1:-11.651019929069792
        • properties: rural
          • type:rural
          • Map:30
      • 315: Feature (Point, 2 properties)
        • type:Feature
        • id:346
        • geometry: Point (19.10, 3.58)
          • type:Point
          • coordinates: [19.099564658535908, 3.5813046116989598]
            • 0:19.099564658535908
            • 1:3.5813046116989598
        • properties: rural
          • type:rural
          • Map:30
      • 316: Feature (Point, 2 properties)
        • type:Feature
        • id:348
        • geometry: Point (45.06, -21.15)
          • type:Point
          • coordinates: [45.05935895675137, -21.151386027286232]
            • 0:45.05935895675137
            • 1:-21.151386027286232
        • properties: rural
          • type:rural
          • Map:30
      • 317: Feature (Point, 2 properties)
        • type:Feature
        • id:349
        • geometry: Point (-2.21, 14.18)
          • type:Point
          • coordinates: [-2.21438106699374, 14.17624545837313]
            • 0:-2.21438106699374
            • 1:14.17624545837313
        • properties: rural
          • type:rural
          • Map:30
      • 318: Feature (Point, 2 properties)
        • type:Feature
        • id:350
        • geometry: Point (37.13, -11.51)
          • type:Point
          • coordinates: [37.13220137165354, -11.512938070805117]
            • 0:37.13220137165354
            • 1:-11.512938070805117
        • properties: rural
          • type:rural
          • Map:10
      • 319: Feature (Point, 2 properties)
        • type:Feature
        • id:351
        • geometry: Point (44.59, 8.29)
          • type:Point
          • coordinates: [44.59369176898406, 8.294982836173789]
            • 0:44.59369176898406
            • 1:8.294982836173789
        • properties: rural
          • type:rural
          • Map:30
      • 320: Feature (Point, 2 properties)
        • type:Feature
        • id:353
        • geometry: Point (42.24, 6.63)
          • type:Point
          • coordinates: [42.23790238910484, 6.625817774394835]
            • 0:42.23790238910484
            • 1:6.625817774394835
        • properties: rural
          • type:rural
          • Map:20
      • 321: Feature (Point, 2 properties)
        • type:Feature
        • id:355
        • geometry: Point (15.03, 10.22)
          • type:Point
          • coordinates: [15.026091221573916, 10.221993497809935]
            • 0:15.026091221573916
            • 1:10.221993497809935
        • properties: rural
          • type:rural
          • Map:30
      • 322: Feature (Point, 2 properties)
        • type:Feature
        • id:356
        • geometry: Point (28.56, -9.92)
          • type:Point
          • coordinates: [28.561671038289386, -9.917495929000683]
            • 0:28.561671038289386
            • 1:-9.917495929000683
        • properties: rural
          • type:rural
          • Map:80
      • 323: Feature (Point, 2 properties)
        • type:Feature
        • id:357
        • geometry: Point (37.99, 4.91)
          • type:Point
          • coordinates: [37.99213219707566, 4.913272973406427]
            • 0:37.99213219707566
            • 1:4.913272973406427
        • properties: rural
          • type:rural
          • Map:20
      • 324: Feature (Point, 2 properties)
        • type:Feature
        • id:358
        • geometry: Point (29.28, -18.15)
          • type:Point
          • coordinates: [29.278465344244044, -18.148681650031545]
            • 0:29.278465344244044
            • 1:-18.148681650031545
        • properties: rural
          • type:rural
          • Map:40
      • 325: Feature (Point, 2 properties)
        • type:Feature
        • id:359
        • geometry: Point (-1.46, 18.32)
          • type:Point
          • coordinates: [-1.4589659855788208, 18.31940098513626]
            • 0:-1.4589659855788208
            • 1:18.31940098513626
        • properties: rural
          • type:rural
          • Map:60
      • 326: Feature (Point, 2 properties)
        • type:Feature
        • id:360
        • geometry: Point (41.96, 9.71)
          • type:Point
          • coordinates: [41.95536916242608, 9.709493041799501]
            • 0:41.95536916242608
            • 1:9.709493041799501
        • properties: rural
          • type:rural
          • Map:20
      • 327: Feature (Point, 2 properties)
        • type:Feature
        • id:361
        • geometry: Point (36.14, 3.98)
          • type:Point
          • coordinates: [36.14097921075132, 3.9796026705426453]
            • 0:36.14097921075132
            • 1:3.9796026705426453
        • properties: rural
          • type:rural
          • Map:80
      • 328: Feature (Point, 2 properties)
        • type:Feature
        • id:362
        • geometry: Point (29.69, -7.96)
          • type:Point
          • coordinates: [29.693286660867464, -7.958192878705015]
            • 0:29.693286660867464
            • 1:-7.958192878705015
        • properties: rural
          • type:rural
          • Map:30
      • 329: Feature (Point, 2 properties)
        • type:Feature
        • id:363
        • geometry: Point (46.14, -18.33)
          • type:Point
          • coordinates: [46.138452977120856, -18.333649841278184]
            • 0:46.138452977120856
            • 1:-18.333649841278184
        • properties: rural
          • type:rural
          • Map:30
      • 330: Feature (Point, 2 properties)
        • type:Feature
        • id:365
        • geometry: Point (23.11, -10.14)
          • type:Point
          • coordinates: [23.110478792305077, -10.138271789550005]
            • 0:23.110478792305077
            • 1:-10.138271789550005
        • properties: rural
          • type:rural
          • Map:30
      • 331: Feature (Point, 2 properties)
        • type:Feature
        • id:366
        • geometry: Point (27.37, -17.29)
          • type:Point
          • coordinates: [27.36908847864265, -17.291103856148606]
            • 0:27.36908847864265
            • 1:-17.291103856148606
        • properties: rural
          • type:rural
          • Map:10
      • 332: Feature (Point, 2 properties)
        • type:Feature
        • id:367
        • geometry: Point (2.27, 17.81)
          • type:Point
          • coordinates: [2.2685617689227238, 17.80775939245818]
            • 0:2.2685617689227238
            • 1:17.80775939245818
        • properties: rural
          • type:rural
          • Map:30
      • 333: Feature (Point, 2 properties)
        • type:Feature
        • id:368
        • geometry: Point (-1.62, 11.25)
          • type:Point
          • coordinates: [-1.6151350712569184, 11.250478308385455]
            • 0:-1.6151350712569184
            • 1:11.250478308385455
        • properties: rural
          • type:rural
          • Map:20
      • 334: Feature (Point, 2 properties)
        • type:Feature
        • id:369
        • geometry: Point (31.93, -5.74)
          • type:Point
          • coordinates: [31.930461232473437, -5.741272111237086]
            • 0:31.930461232473437
            • 1:-5.741272111237086
        • properties: rural
          • type:rural
          • Map:30
      • 335: Feature (Point, 2 properties)
        • type:Feature
        • id:370
        • geometry: Point (10.39, 4.40)
          • type:Point
          • coordinates: [10.394922585097486, 4.401223541042756]
            • 0:10.394922585097486
            • 1:4.401223541042756
        • properties: rural
          • type:rural
          • Map:10
      • 336: Feature (Point, 2 properties)
        • type:Feature
        • id:371
        • geometry: Point (48.74, -14.70)
          • type:Point
          • coordinates: [48.74265854808202, -14.703301018844266]
            • 0:48.74265854808202
            • 1:-14.703301018844266
        • properties: rural
          • type:rural
          • Map:30
      • 337: Feature (Point, 2 properties)
        • type:Feature
        • id:372
        • geometry: Point (-13.22, 13.15)
          • type:Point
          • coordinates: [-13.219139210334866, 13.15202242875502]
            • 0:-13.219139210334866
            • 1:13.15202242875502
        • properties: rural
          • type:rural
          • Map:10
      • 338: Feature (Point, 2 properties)
        • type:Feature
        • id:373
        • geometry: Point (34.82, 10.00)
          • type:Point
          • coordinates: [34.81934545283464, 10.004802479343219]
            • 0:34.81934545283464
            • 1:10.004802479343219
        • properties: rural
          • type:rural
          • Map:10
      • 339: Feature (Point, 2 properties)
        • type:Feature
        • id:374
        • geometry: Point (45.16, -20.53)
          • type:Point
          • coordinates: [45.15652196120427, -20.534365931986283]
            • 0:45.15652196120427
            • 1:-20.534365931986283
        • properties: rural
          • type:rural
          • Map:30
      • 340: Feature (Point, 2 properties)
        • type:Feature
        • id:375
        • geometry: Point (2.70, 19.65)
          • type:Point
          • coordinates: [2.7009008702258512, 19.64667064725611]
            • 0:2.7009008702258512
            • 1:19.64667064725611
        • properties: rural
          • type:rural
          • Map:60
      • 341: Feature (Point, 2 properties)
        • type:Feature
        • id:376
        • geometry: Point (-5.59, 17.18)
          • type:Point
          • coordinates: [-5.590467411576752, 17.17895031880784]
            • 0:-5.590467411576752
            • 1:17.17895031880784
        • properties: rural
          • type:rural
          • Map:60
      • 342: Feature (Point, 2 properties)
        • type:Feature
        • id:377
        • geometry: Point (38.47, 8.19)
          • type:Point
          • coordinates: [38.468613708614726, 8.19441022133665]
            • 0:38.468613708614726
            • 1:8.19441022133665
        • properties: rural
          • type:rural
          • Map:40
      • 343: Feature (Point, 2 properties)
        • type:Feature
        • id:378
        • geometry: Point (40.64, -2.40)
          • type:Point
          • coordinates: [40.64267533521551, -2.398788580120485]
            • 0:40.64267533521551
            • 1:-2.398788580120485
        • properties: rural
          • type:rural
          • Map:30
      • 344: Feature (Point, 2 properties)
        • type:Feature
        • id:379
        • geometry: Point (-10.78, 22.96)
          • type:Point
          • coordinates: [-10.783843132908745, 22.959333755255958]
            • 0:-10.783843132908745
            • 1:22.959333755255958
        • properties: rural
          • type:rural
          • Map:60
      • 345: Feature (Point, 2 properties)
        • type:Feature
        • id:380
        • geometry: Point (-9.27, 13.61)
          • type:Point
          • coordinates: [-9.26987940876184, 13.60671590616206]
            • 0:-9.26987940876184
            • 1:13.60671590616206
        • properties: rural
          • type:rural
          • Map:20
      • 346: Feature (Point, 2 properties)
        • type:Feature
        • id:383
        • geometry: Point (34.18, 8.83)
          • type:Point
          • coordinates: [34.176485539622966, 8.82988550900398]
            • 0:34.176485539622966
            • 1:8.82988550900398
        • properties: rural
          • type:rural
          • Map:30
      • 347: Feature (Point, 2 properties)
        • type:Feature
        • id:384
        • geometry: Point (-2.03, 17.35)
          • type:Point
          • coordinates: [-2.026356067905523, 17.35331065654054]
            • 0:-2.026356067905523
            • 1:17.35331065654054
        • properties: rural
          • type:rural
          • Map:60
      • 348: Feature (Point, 2 properties)
        • type:Feature
        • id:385
        • geometry: Point (23.54, -7.80)
          • type:Point
          • coordinates: [23.543649153711833, -7.801488685375682]
            • 0:23.543649153711833
            • 1:-7.801488685375682
        • properties: rural
          • type:rural
          • Map:30
      • 349: Feature (Point, 2 properties)
        • type:Feature
        • id:386
        • geometry: Point (40.49, 2.66)
          • type:Point
          • coordinates: [40.49187502621137, 2.658085301624478]
            • 0:40.49187502621137
            • 1:2.658085301624478
        • properties: rural
          • type:rural
          • Map:20
      • 350: Feature (Point, 2 properties)
        • type:Feature
        • id:387
        • geometry: Point (19.20, -4.99)
          • type:Point
          • coordinates: [19.204450668874877, -4.986478736869614]
            • 0:19.204450668874877
            • 1:-4.986478736869614
        • properties: rural
          • type:rural
          • Map:30
      • 351: Feature (Point, 2 properties)
        • type:Feature
        • id:388
        • geometry: Point (24.24, -14.81)
          • type:Point
          • coordinates: [24.244647488002634, -14.812673453671621]
            • 0:24.244647488002634
            • 1:-14.812673453671621
        • properties: rural
          • type:rural
          • Map:30
      • 352: Feature (Point, 2 properties)
        • type:Feature
        • id:389
        • geometry: Point (24.90, 4.15)
          • type:Point
          • coordinates: [24.89754944519318, 4.146786724321386]
            • 0:24.89754944519318
            • 1:4.146786724321386
        • properties: rural
          • type:rural
          • Map:10
      • 353: Feature (Point, 2 properties)
        • type:Feature
        • id:390
        • geometry: Point (34.38, 7.88)
          • type:Point
          • coordinates: [34.38388577176051, 7.8775433187653805]
            • 0:34.38388577176051
            • 1:7.8775433187653805
        • properties: rural
          • type:rural
          • Map:10
      • 354: Feature (Point, 2 properties)
        • type:Feature
        • id:391
        • geometry: Point (0.45, 15.59)
          • type:Point
          • coordinates: [0.4452997400776607, 15.585817884448305]
            • 0:0.4452997400776607
            • 1:15.585817884448305
        • properties: rural
          • type:rural
          • Map:30
      • 355: Feature (Point, 2 properties)
        • type:Feature
        • id:392
        • geometry: Point (30.49, -16.21)
          • type:Point
          • coordinates: [30.49242172951579, -16.207709612731577]
            • 0:30.49242172951579
            • 1:-16.207709612731577
        • properties: rural
          • type:rural
          • Map:20
      • 356: Feature (Point, 2 properties)
        • type:Feature
        • id:394
        • geometry: Point (44.96, 8.10)
          • type:Point
          • coordinates: [44.9581965255903, 8.103434043902269]
            • 0:44.9581965255903
            • 1:8.103434043902269
        • properties: rural
          • type:rural
          • Map:20
      • 357: Feature (Point, 2 properties)
        • type:Feature
        • id:395
        • geometry: Point (35.73, -8.03)
          • type:Point
          • coordinates: [35.72875191894502, -8.025822356156782]
            • 0:35.72875191894502
            • 1:-8.025822356156782
        • properties: rural
          • type:rural
          • Map:10
      • 358: Feature (Point, 2 properties)
        • type:Feature
        • id:396
        • geometry: Point (-9.48, 13.53)
          • type:Point
          • coordinates: [-9.479698263835907, 13.533516554772755]
            • 0:-9.479698263835907
            • 1:13.533516554772755
        • properties: rural
          • type:rural
          • Map:20
      • 359: Feature (Point, 2 properties)
        • type:Feature
        • id:398
        • geometry: Point (13.69, 4.35)
          • type:Point
          • coordinates: [13.694938795715808, 4.345811997144155]
            • 0:13.694938795715808
            • 1:4.345811997144155
        • properties: rural
          • type:rural
          • Map:30
      • 360: Feature (Point, 2 properties)
        • type:Feature
        • id:399
        • geometry: Point (45.05, -19.53)
          • type:Point
          • coordinates: [45.04662411795383, -19.527508562608983]
            • 0:45.04662411795383
            • 1:-19.527508562608983
        • properties: rural
          • type:rural
          • Map:30
      • 361: Feature (Point, 2 properties)
        • type:Feature
        • id:400
        • geometry: Point (38.46, 11.20)
          • type:Point
          • coordinates: [38.4612873643833, 11.195673351345553]
            • 0:38.4612873643833
            • 1:11.195673351345553
        • properties: rural
          • type:rural
          • Map:30
      • 362: Feature (Point, 2 properties)
        • type:Feature
        • id:401
        • geometry: Point (-0.61, 12.38)
          • type:Point
          • coordinates: [-0.6081333327074878, 12.375120382382162]
            • 0:-0.6081333327074878
            • 1:12.375120382382162
        • properties: rural
          • type:rural
          • Map:40
      • 363: Feature (Point, 2 properties)
        • type:Feature
        • id:402
        • geometry: Point (18.95, 3.83)
          • type:Point
          • coordinates: [18.95023400637295, 3.8261813749962648]
            • 0:18.95023400637295
            • 1:3.8261813749962648
        • properties: rural
          • type:rural
          • Map:30
      • 364: Feature (Point, 2 properties)
        • type:Feature
        • id:404
        • geometry: Point (29.63, -13.12)
          • type:Point
          • coordinates: [29.63299474366908, -13.12416138421396]
            • 0:29.63299474366908
            • 1:-13.12416138421396
        • properties: rural
          • type:rural
          • Map:10
      • 365: Feature (Point, 2 properties)
        • type:Feature
        • id:405
        • geometry: Point (26.11, -14.76)
          • type:Point
          • coordinates: [26.10606494698037, -14.764148669802568]
            • 0:26.10606494698037
            • 1:-14.764148669802568
        • properties: rural
          • type:rural
          • Map:10
      • 366: Feature (Point, 2 properties)
        • type:Feature
        • id:407
        • geometry: Point (40.98, 2.07)
          • type:Point
          • coordinates: [40.98390014929633, 2.0701883246829555]
            • 0:40.98390014929633
            • 1:2.0701883246829555
        • properties: rural
          • type:rural
          • Map:20
      • 367: Feature (Point, 2 properties)
        • type:Feature
        • id:408
        • geometry: Point (27.95, -17.66)
          • type:Point
          • coordinates: [27.949409953546027, -17.66298416438056]
            • 0:27.949409953546027
            • 1:-17.66298416438056
        • properties: rural
          • type:rural
          • Map:30
      • 368: Feature (Point, 2 properties)
        • type:Feature
        • id:409
        • geometry: Point (-1.89, 9.18)
          • type:Point
          • coordinates: [-1.8861339825123122, 9.183110409500937]
            • 0:-1.8861339825123122
            • 1:9.183110409500937
        • properties: rural
          • type:rural
          • Map:30
      • 369: Feature (Point, 2 properties)
        • type:Feature
        • id:410
        • geometry: Point (22.50, -14.52)
          • type:Point
          • coordinates: [22.496437760968544, -14.523300691274574]
            • 0:22.496437760968544
            • 1:-14.523300691274574
        • properties: rural
          • type:rural
          • Map:30
      • 370: Feature (Point, 2 properties)
        • type:Feature
        • id:411
        • geometry: Point (40.11, 5.97)
          • type:Point
          • coordinates: [40.10547706409746, 5.967505575194557]
            • 0:40.10547706409746
            • 1:5.967505575194557
        • properties: rural
          • type:rural
          • Map:20
      • 371: Feature (Point, 2 properties)
        • type:Feature
        • id:413
        • geometry: Point (20.98, -3.08)
          • type:Point
          • coordinates: [20.978135979512132, -3.0760475816899477]
            • 0:20.978135979512132
            • 1:-3.0760475816899477
        • properties: rural
          • type:rural
          • Map:10
      • 372: Feature (Point, 2 properties)
        • type:Feature
        • id:414
        • geometry: Point (-7.00, 16.79)
          • type:Point
          • coordinates: [-6.995717860985552, 16.794836364767704]
            • 0:-6.995717860985552
            • 1:16.794836364767704
        • properties: rural
          • type:rural
          • Map:60
      • 373: Feature (Point, 2 properties)
        • type:Feature
        • id:415
        • geometry: Point (30.64, -20.55)
          • type:Point
          • coordinates: [30.643381163646588, -20.54885737805113]
            • 0:30.643381163646588
            • 1:-20.54885737805113
        • properties: rural
          • type:rural
          • Map:40
      • 374: Feature (Point, 2 properties)
        • type:Feature
        • id:416
        • geometry: Point (12.51, 6.68)
          • type:Point
          • coordinates: [12.50580776173855, 6.682060039485548]
            • 0:12.50580776173855
            • 1:6.682060039485548
        • properties: rural
          • type:rural
          • Map:10
      • 375: Feature (Point, 2 properties)
        • type:Feature
        • id:417
        • geometry: Point (38.35, 0.85)
          • type:Point
          • coordinates: [38.34763340372942, 0.8502796795526556]
            • 0:38.34763340372942
            • 1:0.8502796795526556
        • properties: rural
          • type:rural
          • Map:20
      • 376: Feature (Point, 2 properties)
        • type:Feature
        • id:418
        • geometry: Point (44.75, -24.18)
          • type:Point
          • coordinates: [44.75067028936886, -24.179432557848024]
            • 0:44.75067028936886
            • 1:-24.179432557848024
        • properties: rural
          • type:rural
          • Map:30
      • 377: Feature (Point, 2 properties)
        • type:Feature
        • id:419
        • geometry: Point (-3.07, 11.24)
          • type:Point
          • coordinates: [-3.0657646510753858, 11.239609543082477]
            • 0:-3.0657646510753858
            • 1:11.239609543082477
        • properties: rural
          • type:rural
          • Map:20
      • 378: Feature (Point, 2 properties)
        • type:Feature
        • id:420
        • geometry: Point (-16.45, 15.58)
          • type:Point
          • coordinates: [-16.445640471386433, 15.582124336636971]
            • 0:-16.445640471386433
            • 1:15.582124336636971
        • properties: rural
          • type:rural
          • Map:30
      • 379: Feature (Point, 2 properties)
        • type:Feature
        • id:421
        • geometry: Point (0.04, 10.17)
          • type:Point
          • coordinates: [0.03692857120721957, 10.166421524553616]
            • 0:0.03692857120721957
            • 1:10.166421524553616
        • properties: rural
          • type:rural
          • Map:40
      • 380: Feature (Point, 2 properties)
        • type:Feature
        • id:422
        • geometry: Point (-14.37, 15.78)
          • type:Point
          • coordinates: [-14.369316568692994, 15.782833177878043]
            • 0:-14.369316568692994
            • 1:15.782833177878043
        • properties: rural
          • type:rural
          • Map:20
      • 381: Feature (Point, 2 properties)
        • type:Feature
        • id:423
        • geometry: Point (-3.67, 10.38)
          • type:Point
          • coordinates: [-3.6705862137157195, 10.377809691130153]
            • 0:-3.6705862137157195
            • 1:10.377809691130153
        • properties: rural
          • type:rural
          • Map:20
      • 382: Feature (Point, 2 properties)
        • type:Feature
        • id:424
        • geometry: Point (22.59, 2.26)
          • type:Point
          • coordinates: [22.59126976900358, 2.2603020992357297]
            • 0:22.59126976900358
            • 1:2.2603020992357297
        • properties: rural
          • type:rural
          • Map:10
      • 383: Feature (Point, 2 properties)
        • type:Feature
        • id:425
        • geometry: Point (30.09, -21.53)
          • type:Point
          • coordinates: [30.086899260211847, -21.532858863037358]
            • 0:30.086899260211847
            • 1:-21.532858863037358
        • properties: rural
          • type:rural
          • Map:20
      • 384: Feature (Point, 2 properties)
        • type:Feature
        • id:426
        • geometry: Point (37.25, 10.81)
          • type:Point
          • coordinates: [37.25342561359091, 10.814387894395052]
            • 0:37.25342561359091
            • 1:10.814387894395052
        • properties: rural
          • type:rural
          • Map:40
      • 385: Feature (Point, 2 properties)
        • type:Feature
        • id:428
        • geometry: Point (-11.68, 25.44)
          • type:Point
          • coordinates: [-11.675318927089384, 25.444109338911318]
            • 0:-11.675318927089384
            • 1:25.444109338911318
        • properties: rural
          • type:rural
          • Map:60
      • 386: Feature (Point, 2 properties)
        • type:Feature
        • id:429
        • geometry: Point (-10.31, 18.91)
          • type:Point
          • coordinates: [-10.313895691161756, 18.91082341486606]
            • 0:-10.313895691161756
            • 1:18.91082341486606
        • properties: rural
          • type:rural
          • Map:60
      • 387: Feature (Point, 2 properties)
        • type:Feature
        • id:431
        • geometry: Point (17.89, -15.38)
          • type:Point
          • coordinates: [17.888927925678708, -15.37596588014803]
            • 0:17.888927925678708
            • 1:-15.37596588014803
        • properties: rural
          • type:rural
          • Map:10
      • 388: Feature (Point, 2 properties)
        • type:Feature
        • id:432
        • geometry: Point (-11.12, 24.14)
          • type:Point
          • coordinates: [-11.116834834341798, 24.139402520511172]
            • 0:-11.116834834341798
            • 1:24.139402520511172
        • properties: rural
          • type:rural
          • Map:60
      • 389: Feature (Point, 2 properties)
        • type:Feature
        • id:433
        • geometry: Point (39.81, 5.32)
          • type:Point
          • coordinates: [39.80691970800043, 5.322086968555555]
            • 0:39.80691970800043
            • 1:5.322086968555555
        • properties: rural
          • type:rural
          • Map:20
      • 390: Feature (Point, 2 properties)
        • type:Feature
        • id:434
        • geometry: Point (20.72, -10.88)
          • type:Point
          • coordinates: [20.72337746254957, -10.884224012135958]
            • 0:20.72337746254957
            • 1:-10.884224012135958
        • properties: rural
          • type:rural
          • Map:90
      • 391: Feature (Point, 2 properties)
        • type:Feature
        • id:435
        • geometry: Point (-7.15, 23.47)
          • type:Point
          • coordinates: [-7.149290332854196, 23.466487607913614]
            • 0:-7.149290332854196
            • 1:23.466487607913614
        • properties: rural
          • type:rural
          • Map:60
      • 392: Feature (Point, 2 properties)
        • type:Feature
        • id:436
        • geometry: Point (-10.22, 24.21)
          • type:Point
          • coordinates: [-10.215361994694721, 24.207571298723128]
            • 0:-10.215361994694721
            • 1:24.207571298723128
        • properties: rural
          • type:rural
          • Map:60
      • 393: Feature (Point, 2 properties)
        • type:Feature
        • id:437
        • geometry: Point (35.32, -1.11)
          • type:Point
          • coordinates: [35.31992483449138, -1.112177687649051]
            • 0:35.31992483449138
            • 1:-1.112177687649051
        • properties: rural
          • type:rural
          • Map:20
      • 394: Feature (Point, 2 properties)
        • type:Feature
        • id:438
        • geometry: Point (13.83, -11.60)
          • type:Point
          • coordinates: [13.828431039467722, -11.603353384373797]
            • 0:13.828431039467722
            • 1:-11.603353384373797
        • properties: rural
          • type:rural
          • Map:20
      • 395: Feature (Point, 2 properties)
        • type:Feature
        • id:439
        • geometry: Point (31.12, 2.21)
          • type:Point
          • coordinates: [31.116143678872813, 2.2117155543788622]
            • 0:31.116143678872813
            • 1:2.2117155543788622
        • properties: rural
          • type:rural
          • Map:30
      • 396: Feature (Point, 2 properties)
        • type:Feature
        • id:440
        • geometry: Point (2.35, 17.80)
          • type:Point
          • coordinates: [2.350470955582432, 17.795789335840617]
            • 0:2.350470955582432
            • 1:17.795789335840617
        • properties: rural
          • type:rural
          • Map:60
      • 397: Feature (Point, 2 properties)
        • type:Feature
        • id:441
        • geometry: Point (-9.78, 6.75)
          • type:Point
          • coordinates: [-9.782249403023256, 6.754716158588714]
            • 0:-9.782249403023256
            • 1:6.754716158588714
        • properties: rural
          • type:rural
          • Map:10
      • 398: Feature (Point, 2 properties)
        • type:Feature
        • id:442
        • geometry: Point (12.40, -16.29)
          • type:Point
          • coordinates: [12.397155489110318, -16.28809825390348]
            • 0:12.397155489110318
            • 1:-16.28809825390348
        • properties: rural
          • type:rural
          • Map:60
      • 399: Feature (Point, 2 properties)
        • type:Feature
        • id:443
        • geometry: Point (17.63, -10.43)
          • type:Point
          • coordinates: [17.629869509612764, -10.434569057524897]
            • 0:17.629869509612764
            • 1:-10.434569057524897
        • properties: rural
          • type:rural
          • Map:30
      • 400: Feature (Point, 2 properties)
        • type:Feature
        • id:444
        • geometry: Point (-12.83, 13.02)
          • type:Point
          • coordinates: [-12.829197993478124, 13.019859079492946]
            • 0:-12.829197993478124
            • 1:13.019859079492946
        • properties: rural
          • type:rural
          • Map:10
      • 401: Feature (Point, 2 properties)
        • type:Feature
        • id:445
        • geometry: Point (21.72, -4.18)
          • type:Point
          • coordinates: [21.717007220906737, -4.177463587511141]
            • 0:21.717007220906737
            • 1:-4.177463587511141
        • properties: rural
          • type:rural
          • Map:10
      • 402: Feature (Point, 2 properties)
        • type:Feature
        • id:446
        • geometry: Point (-6.22, 16.60)
          • type:Point
          • coordinates: [-6.218926749940233, 16.602306896464214]
            • 0:-6.218926749940233
            • 1:16.602306896464214
        • properties: rural
          • type:rural
          • Map:30
      • 403: Feature (Point, 2 properties)
        • type:Feature
        • id:449
        • geometry: Point (34.54, -3.09)
          • type:Point
          • coordinates: [34.541948595062905, -3.0851383727566484]
            • 0:34.541948595062905
            • 1:-3.0851383727566484
        • properties: rural
          • type:rural
          • Map:30
      • 404: Feature (Point, 2 properties)
        • type:Feature
        • id:450
        • geometry: Point (2.60, 16.39)
          • type:Point
          • coordinates: [2.600361021968042, 16.386952173420116]
            • 0:2.600361021968042
            • 1:16.386952173420116
        • properties: rural
          • type:rural
          • Map:60
      • 405: Feature (Point, 2 properties)
        • type:Feature
        • id:451
        • geometry: Point (30.81, -10.28)
          • type:Point
          • coordinates: [30.809067840117805, -10.281912495494936]
            • 0:30.809067840117805
            • 1:-10.281912495494936
        • properties: rural
          • type:rural
          • Map:10
      • 406: Feature (Point, 2 properties)
        • type:Feature
        • id:452
        • geometry: Point (25.06, -2.47)
          • type:Point
          • coordinates: [25.060283389437362, -2.4653054572416053]
            • 0:25.060283389437362
            • 1:-2.4653054572416053
        • properties: rural
          • type:rural
          • Map:10
      • 407: Feature (Point, 2 properties)
        • type:Feature
        • id:453
        • geometry: Point (28.48, -14.62)
          • type:Point
          • coordinates: [28.477346499955775, -14.622758006004664]
            • 0:28.477346499955775
            • 1:-14.622758006004664
        • properties: rural
          • type:rural
          • Map:40
      • 408: Feature (Point, 2 properties)
        • type:Feature
        • id:454
        • geometry: Point (44.34, -23.10)
          • type:Point
          • coordinates: [44.335000674953434, -23.100710454804588]
            • 0:44.335000674953434
            • 1:-23.100710454804588
        • properties: rural
          • type:rural
          • Map:30
      • 409: Feature (Point, 2 properties)
        • type:Feature
        • id:455
        • geometry: Point (14.51, 4.77)
          • type:Point
          • coordinates: [14.512356625261384, 4.774005766082607]
            • 0:14.512356625261384
            • 1:4.774005766082607
        • properties: rural
          • type:rural
          • Map:10
      • 410: Feature (Point, 2 properties)
        • type:Feature
        • id:456
        • geometry: Point (1.97, 20.04)
          • type:Point
          • coordinates: [1.9655006277871854, 20.03804445376397]
            • 0:1.9655006277871854
            • 1:20.03804445376397
        • properties: rural
          • type:rural
          • Map:60
      • 411: Feature (Point, 2 properties)
        • type:Feature
        • id:457
        • geometry: Point (-7.21, 20.36)
          • type:Point
          • coordinates: [-7.211048612642814, 20.356031220025653]
            • 0:-7.211048612642814
            • 1:20.356031220025653
        • properties: rural
          • type:rural
          • Map:60
      • 412: Feature (Point, 2 properties)
        • type:Feature
        • id:458
        • geometry: Point (-13.83, 15.41)
          • type:Point
          • coordinates: [-13.827640672474079, 15.413111919729635]
            • 0:-13.827640672474079
            • 1:15.413111919729635
        • properties: rural
          • type:rural
          • Map:20
      • 413: Feature (Point, 2 properties)
        • type:Feature
        • id:459
        • geometry: Point (38.78, -5.08)
          • type:Point
          • coordinates: [38.775994304630665, -5.080287448042883]
            • 0:38.775994304630665
            • 1:-5.080287448042883
        • properties: rural
          • type:rural
          • Map:10
      • 414: Feature (Point, 2 properties)
        • type:Feature
        • id:460
        • geometry: Point (46.27, -16.77)
          • type:Point
          • coordinates: [46.268427882251395, -16.76971465580727]
            • 0:46.268427882251395
            • 1:-16.76971465580727
        • properties: rural
          • type:rural
          • Map:30
      • 415: Feature (Point, 2 properties)
        • type:Feature
        • id:461
        • geometry: Point (25.87, -15.38)
          • type:Point
          • coordinates: [25.87084241062441, -15.382038801766074]
            • 0:25.87084241062441
            • 1:-15.382038801766074
        • properties: rural
          • type:rural
          • Map:30
      • 416: Feature (Point, 2 properties)
        • type:Feature
        • id:462
        • geometry: Point (-16.09, 18.62)
          • type:Point
          • coordinates: [-16.092166362258038, 18.618207108297067]
            • 0:-16.092166362258038
            • 1:18.618207108297067
        • properties: rural
          • type:rural
          • Map:60
      • 417: Feature (Point, 2 properties)
        • type:Feature
        • id:464
        • geometry: Point (-3.83, 9.90)
          • type:Point
          • coordinates: [-3.83323587259672, 9.90184527896154]
            • 0:-3.83323587259672
            • 1:9.90184527896154
        • properties: rural
          • type:rural
          • Map:20
      • 418: Feature (Point, 2 properties)
        • type:Feature
        • id:465
        • geometry: Point (24.30, -1.98)
          • type:Point
          • coordinates: [24.296352681065056, -1.984594049505785]
            • 0:24.296352681065056
            • 1:-1.984594049505785
        • properties: rural
          • type:rural
          • Map:10
      • 419: Feature (Point, 2 properties)
        • type:Feature
        • id:466
        • geometry: Point (40.84, 10.32)
          • type:Point
          • coordinates: [40.83586850278531, 10.316179202361722]
            • 0:40.83586850278531
            • 1:10.316179202361722
        • properties: rural
          • type:rural
          • Map:30
      • 420: Feature (Point, 2 properties)
        • type:Feature
        • id:467
        • geometry: Point (-1.66, 15.76)
          • type:Point
          • coordinates: [-1.6564743803267243, 15.7596347448804]
            • 0:-1.6564743803267243
            • 1:15.7596347448804
        • properties: rural
          • type:rural
          • Map:30
      • 421: Feature (Point, 2 properties)
        • type:Feature
        • id:468
        • geometry: Point (15.10, -9.58)
          • type:Point
          • coordinates: [15.104313579046119, -9.578658974444183]
            • 0:15.104313579046119
            • 1:-9.578658974444183
        • properties: rural
          • type:rural
          • Map:30
      • 422: Feature (Point, 2 properties)
        • type:Feature
        • id:469
        • geometry: Point (-1.88, 8.70)
          • type:Point
          • coordinates: [-1.8848874837459852, 8.701730451151821]
            • 0:-1.8848874837459852
            • 1:8.701730451151821
        • properties: rural
          • type:rural
          • Map:20
      • 423: Feature (Point, 2 properties)
        • type:Feature
        • id:470
        • geometry: Point (44.67, 6.36)
          • type:Point
          • coordinates: [44.667712672411845, 6.36260551268178]
            • 0:44.667712672411845
            • 1:6.36260551268178
        • properties: rural
          • type:rural
          • Map:20
      • 424: Feature (Point, 2 properties)
        • type:Feature
        • id:471
        • geometry: Point (-0.21, 16.50)
          • type:Point
          • coordinates: [-0.20585713368159406, 16.50068597951602]
            • 0:-0.20585713368159406
            • 1:16.50068597951602
        • properties: rural
          • type:rural
          • Map:30
      • 425: Feature (Point, 2 properties)
        • type:Feature
        • id:472
        • geometry: Point (44.21, -24.09)
          • type:Point
          • coordinates: [44.206003653145494, -24.08755554509534]
            • 0:44.206003653145494
            • 1:-24.08755554509534
        • properties: rural
          • type:rural
          • Map:30
      • 426: Feature (Point, 2 properties)
        • type:Feature
        • id:473
        • geometry: Point (32.37, -20.65)
          • type:Point
          • coordinates: [32.37039576616209, -20.65484496606954]
            • 0:32.37039576616209
            • 1:-20.65484496606954
        • properties: rural
          • type:rural
          • Map:20
      • 427: Feature (Point, 2 properties)
        • type:Feature
        • id:474
        • geometry: Point (-1.01, 19.96)
          • type:Point
          • coordinates: [-1.005977296428278, 19.960683892419116]
            • 0:-1.005977296428278
            • 1:19.960683892419116
        • properties: rural
          • type:rural
          • Map:60
      • 428: Feature (Point, 2 properties)
        • type:Feature
        • id:475
        • geometry: Point (46.76, -23.14)
          • type:Point
          • coordinates: [46.75566899845293, -23.13879605634786]
            • 0:46.75566899845293
            • 1:-23.13879605634786
        • properties: rural
          • type:rural
          • Map:30
      • 429: Feature (Point, 2 properties)
        • type:Feature
        • id:476
        • geometry: Point (42.50, 10.94)
          • type:Point
          • coordinates: [42.49835604328801, 10.938864324048227]
            • 0:42.49835604328801
            • 1:10.938864324048227
        • properties: rural
          • type:rural
          • Map:60
      • 430: Feature (Point, 2 properties)
        • type:Feature
        • id:478
        • geometry: Point (-16.02, 16.74)
          • type:Point
          • coordinates: [-16.024884626548886, 16.737120090180706]
            • 0:-16.024884626548886
            • 1:16.737120090180706
        • properties: rural
          • type:rural
          • Map:30
      • 431: Feature (Point, 2 properties)
        • type:Feature
        • id:479
        • geometry: Point (38.03, 0.22)
          • type:Point
          • coordinates: [38.03085447571236, 0.21965964755849407]
            • 0:38.03085447571236
            • 1:0.21965964755849407
        • properties: rural
          • type:rural
          • Map:10
      • 432: Feature (Point, 2 properties)
        • type:Feature
        • id:480
        • geometry: Point (41.01, 12.13)
          • type:Point
          • coordinates: [41.00782244219456, 12.132229925065875]
            • 0:41.00782244219456
            • 1:12.132229925065875
        • properties: rural
          • type:rural
          • Map:60
      • 433: Feature (Point, 2 properties)
        • type:Feature
        • id:481
        • geometry: Point (27.83, -6.02)
          • type:Point
          • coordinates: [27.830317472838022, -6.0239943080489615]
            • 0:27.830317472838022
            • 1:-6.0239943080489615
        • properties: rural
          • type:rural
          • Map:20
      • 434: Feature (Point, 2 properties)
        • type:Feature
        • id:482
        • geometry: Point (36.31, -10.05)
          • type:Point
          • coordinates: [36.31197839931165, -10.051261099988405]
            • 0:36.31197839931165
            • 1:-10.051261099988405
        • properties: rural
          • type:rural
          • Map:10
      • 435: Feature (Point, 2 properties)
        • type:Feature
        • id:484
        • geometry: Point (47.15, -23.47)
          • type:Point
          • coordinates: [47.14885413546054, -23.467445734409274]
            • 0:47.14885413546054
            • 1:-23.467445734409274
        • properties: rural
          • type:rural
          • Map:20
      • 436: Feature (Point, 2 properties)
        • type:Feature
        • id:485
        • geometry: Point (22.10, -13.04)
          • type:Point
          • coordinates: [22.10166322415869, -13.036053838029012]
            • 0:22.10166322415869
            • 1:-13.036053838029012
        • properties: rural
          • type:rural
          • Map:30
      • 437: Feature (Point, 2 properties)
        • type:Feature
        • id:486
        • geometry: Point (21.91, -4.51)
          • type:Point
          • coordinates: [21.90623877224569, -4.5138661180996085]
            • 0:21.90623877224569
            • 1:-4.5138661180996085
        • properties: rural
          • type:rural
          • Map:10
      • 438: Feature (Point, 2 properties)
        • type:Feature
        • id:487
        • geometry: Point (29.87, -15.10)
          • type:Point
          • coordinates: [29.873547471934142, -15.10149907339071]
            • 0:29.873547471934142
            • 1:-15.10149907339071
        • properties: rural
          • type:rural
          • Map:10
      • 439: Feature (Point, 2 properties)
        • type:Feature
        • id:488
        • geometry: Point (42.66, 7.07)
          • type:Point
          • coordinates: [42.6645777347077, 7.069058869393766]
            • 0:42.6645777347077
            • 1:7.069058869393766
        • properties: rural
          • type:rural
          • Map:20
      • 440: Feature (Point, 2 properties)
        • type:Feature
        • id:489
        • geometry: Point (23.79, -1.80)
          • type:Point
          • coordinates: [23.7942264578749, -1.798578421999056]
            • 0:23.7942264578749
            • 1:-1.798578421999056
        • properties: rural
          • type:rural
          • Map:10
      • 441: Feature (Point, 2 properties)
        • type:Feature
        • id:491
        • geometry: Point (14.32, 7.83)
          • type:Point
          • coordinates: [14.320486072821273, 7.83132783939809]
            • 0:14.320486072821273
            • 1:7.83132783939809
        • properties: rural
          • type:rural
          • Map:10
      • 442: Feature (Point, 2 properties)
        • type:Feature
        • id:492
        • geometry: Point (-5.95, 18.66)
          • type:Point
          • coordinates: [-5.9517292061499925, 18.655539129345982]
            • 0:-5.9517292061499925
            • 1:18.655539129345982
        • properties: rural
          • type:rural
          • Map:60
      • 443: Feature (Point, 2 properties)
        • type:Feature
        • id:493
        • geometry: Point (31.32, -16.41)
          • type:Point
          • coordinates: [31.324864138756553, -16.412474517342414]
            • 0:31.324864138756553
            • 1:-16.412474517342414
        • properties: rural
          • type:rural
          • Map:40
      • 444: Feature (Point, 2 properties)
        • type:Feature
        • id:494
        • geometry: Point (-12.29, 13.09)
          • type:Point
          • coordinates: [-12.286590610612908, 13.090049437025892]
            • 0:-12.286590610612908
            • 1:13.090049437025892
        • properties: rural
          • type:rural
          • Map:20
      • 445: Feature (Point, 2 properties)
        • type:Feature
        • id:495
        • geometry: Point (32.82, -8.36)
          • type:Point
          • coordinates: [32.815137708004, -8.35538356143798]
            • 0:32.815137708004
            • 1:-8.35538356143798
        • properties: rural
          • type:rural
          • Map:80
      • 446: Feature (Point, 2 properties)
        • type:Feature
        • id:496
        • geometry: Point (41.37, 7.37)
          • type:Point
          • coordinates: [41.37246390214238, 7.367252566495054]
            • 0:41.37246390214238
            • 1:7.367252566495054
        • properties: rural
          • type:rural
          • Map:20
      • 447: Feature (Point, 2 properties)
        • type:Feature
        • id:497
        • geometry: Point (10.53, 3.16)
          • type:Point
          • coordinates: [10.530310380338658, 3.1578469586010294]
            • 0:10.530310380338658
            • 1:3.1578469586010294
        • properties: rural
          • type:rural
          • Map:10
      • 448: Feature (Point, 2 properties)
        • type:Feature
        • id:498
        • geometry: Point (26.14, -4.10)
          • type:Point
          • coordinates: [26.141819303753007, -4.1000972685232]
            • 0:26.141819303753007
            • 1:-4.1000972685232
        • properties: rural
          • type:rural
          • Map:30
      • 449: Feature (Point, 2 properties)
        • type:Feature
        • id:499
        • geometry: Point (-3.41, 18.51)
          • type:Point
          • coordinates: [-3.4113373185715585, 18.514358949108132]
            • 0:-3.4113373185715585
            • 1:18.514358949108132
        • properties: rural
          • type:rural
          • Map:60
      • 450: Feature (Point, 2 properties)
        • type:Feature
        • id:500
        • geometry: Point (14.89, -13.01)
          • type:Point
          • coordinates: [14.892240046813189, -13.014476631830442]
            • 0:14.892240046813189
            • 1:-13.014476631830442
        • properties: rural
          • type:rural
          • Map:10
      • 451: Feature (Point, 2 properties)
        • type:Feature
        • id:501
        • geometry: Point (30.82, -13.76)
          • type:Point
          • coordinates: [30.82330431730645, -13.7572170226941]
            • 0:30.82330431730645
            • 1:-13.7572170226941
        • properties: rural
          • type:rural
          • Map:10
      • 452: Feature (Point, 2 properties)
        • type:Feature
        • id:502
        • geometry: Point (-10.20, 22.34)
          • type:Point
          • coordinates: [-10.201125048529391, 22.343162506803953]
            • 0:-10.201125048529391
            • 1:22.343162506803953
        • properties: rural
          • type:rural
          • Map:60
      • 453: Feature (Point, 2 properties)
        • type:Feature
        • id:503
        • geometry: Point (44.78, -20.15)
          • type:Point
          • coordinates: [44.77966686070179, -20.15182227675464]
            • 0:44.77966686070179
            • 1:-20.15182227675464
        • properties: rural
          • type:rural
          • Map:30
      • 454: Feature (Point, 2 properties)
        • type:Feature
        • id:504
        • geometry: Point (31.09, -9.83)
          • type:Point
          • coordinates: [31.08574131940812, -9.829543004214226]
            • 0:31.08574131940812
            • 1:-9.829543004214226
        • properties: rural
          • type:rural
          • Map:10
      • 455: Feature (Point, 2 properties)
        • type:Feature
        • id:505
        • geometry: Point (-3.00, 17.70)
          • type:Point
          • coordinates: [-2.998939380633074, 17.704172780223566]
            • 0:-2.998939380633074
            • 1:17.704172780223566
        • properties: rural
          • type:rural
          • Map:60
      • 456: Feature (Point, 2 properties)
        • type:Feature
        • id:506
        • geometry: Point (39.32, -8.76)
          • type:Point
          • coordinates: [39.31914054847535, -8.756157267068037]
            • 0:39.31914054847535
            • 1:-8.756157267068037
        • properties: rural
          • type:rural
          • Map:30
      • 457: Feature (Point, 2 properties)
        • type:Feature
        • id:507
        • geometry: Point (40.93, 6.77)
          • type:Point
          • coordinates: [40.933032479532194, 6.772173629328729]
            • 0:40.933032479532194
            • 1:6.772173629328729
        • properties: rural
          • type:rural
          • Map:20
      • 458: Feature (Point, 2 properties)
        • type:Feature
        • id:508
        • geometry: Point (18.01, -11.05)
          • type:Point
          • coordinates: [18.009907559939165, -11.04942779405115]
            • 0:18.009907559939165
            • 1:-11.04942779405115
        • properties: rural
          • type:rural
          • Map:10
      • 459: Feature (Point, 2 properties)
        • type:Feature
        • id:509
        • geometry: Point (18.23, -15.95)
          • type:Point
          • coordinates: [18.231000595905655, -15.950609201159061]
            • 0:18.231000595905655
            • 1:-15.950609201159061
        • properties: rural
          • type:rural
          • Map:20
      • 460: Feature (Point, 2 properties)
        • type:Feature
        • id:510
        • geometry: Point (29.69, -10.21)
          • type:Point
          • coordinates: [29.69002569188877, -10.211270821561271]
            • 0:29.69002569188877
            • 1:-10.211270821561271
        • properties: rural
          • type:rural
          • Map:20
      • 461: Feature (Point, 2 properties)
        • type:Feature
        • id:512
        • geometry: Point (40.08, 4.24)
          • type:Point
          • coordinates: [40.07744603329803, 4.23591749429937]
            • 0:40.07744603329803
            • 1:4.23591749429937
        • properties: rural
          • type:rural
          • Map:20
      • 462: Feature (Point, 2 properties)
        • type:Feature
        • id:513
        • geometry: Point (1.31, 7.65)
          • type:Point
          • coordinates: [1.3076486992944887, 7.651545993188897]
            • 0:1.3076486992944887
            • 1:7.651545993188897
        • properties: rural
          • type:rural
          • Map:20
      • 463: Feature (Point, 2 properties)
        • type:Feature
        • id:514
        • geometry: Point (42.71, 7.55)
          • type:Point
          • coordinates: [42.7078623583526, 7.552516382613068]
            • 0:42.7078623583526
            • 1:7.552516382613068
        • properties: rural
          • type:rural
          • Map:20
      • 464: Feature (Point, 2 properties)
        • type:Feature
        • id:515
        • geometry: Point (26.09, 0.99)
          • type:Point
          • coordinates: [26.088796539484974, 0.98984474104988]
            • 0:26.088796539484974
            • 1:0.98984474104988
        • properties: rural
          • type:rural
          • Map:10
      • 465: Feature (Point, 2 properties)
        • type:Feature
        • id:516
        • geometry: Point (0.25, 13.65)
          • type:Point
          • coordinates: [0.24611075603860325, 13.646686692367666]
            • 0:0.24611075603860325
            • 1:13.646686692367666
        • properties: rural
          • type:rural
          • Map:30
      • 466: Feature (Point, 2 properties)
        • type:Feature
        • id:517
        • geometry: Point (25.48, -3.45)
          • type:Point
          • coordinates: [25.47654554566621, -3.446149859883732]
            • 0:25.47654554566621
            • 1:-3.446149859883732
        • properties: rural
          • type:rural
          • Map:30
      • 467: Feature (Point, 2 properties)
        • type:Feature
        • id:518
        • geometry: Point (21.47, -2.30)
          • type:Point
          • coordinates: [21.46909159044901, -2.299179168214134]
            • 0:21.46909159044901
            • 1:-2.299179168214134
        • properties: rural
          • type:rural
          • Map:10
      • 468: Feature (Point, 2 properties)
        • type:Feature
        • id:519
        • geometry: Point (28.86, -7.48)
          • type:Point
          • coordinates: [28.86351725930021, -7.475228702134917]
            • 0:28.86351725930021
            • 1:-7.475228702134917
        • properties: rural
          • type:rural
          • Map:30
      • 469: Feature (Point, 2 properties)
        • type:Feature
        • id:520
        • geometry: Point (18.55, 2.09)
          • type:Point
          • coordinates: [18.550776082157757, 2.0905225919130794]
            • 0:18.550776082157757
            • 1:2.0905225919130794
        • properties: rural
          • type:rural
          • Map:10
      • 470: Feature (Point, 2 properties)
        • type:Feature
        • id:522
        • geometry: Point (18.29, -10.20)
          • type:Point
          • coordinates: [18.292274219359115, -10.202553036099205]
            • 0:18.292274219359115
            • 1:-10.202553036099205
        • properties: rural
          • type:rural
          • Map:10
      • 471: Feature (Point, 2 properties)
        • type:Feature
        • id:523
        • geometry: Point (39.37, -6.29)
          • type:Point
          • coordinates: [39.37172013235445, -6.28810042929597]
            • 0:39.37172013235445
            • 1:-6.28810042929597
        • properties: rural
          • type:rural
          • Map:30
      • 472: Feature (Point, 2 properties)
        • type:Feature
        • id:524
        • geometry: Point (38.31, -2.45)
          • type:Point
          • coordinates: [38.31131172094572, -2.4548753341613145]
            • 0:38.31131172094572
            • 1:-2.4548753341613145
        • properties: rural
          • type:rural
          • Map:10
      • 473: Feature (Point, 2 properties)
        • type:Feature
        • id:525
        • geometry: Point (21.61, -5.41)
          • type:Point
          • coordinates: [21.606458434973995, -5.413441295235016]
            • 0:21.606458434973995
            • 1:-5.413441295235016
        • properties: rural
          • type:rural
          • Map:10
      • 474: Feature (Point, 2 properties)
        • type:Feature
        • id:526
        • geometry: Point (13.01, 6.34)
          • type:Point
          • coordinates: [13.014158832203329, 6.344828635365913]
            • 0:13.014158832203329
            • 1:6.344828635365913
        • properties: rural
          • type:rural
          • Map:20
      • 475: Feature (Point, 2 properties)
        • type:Feature
        • id:527
        • geometry: Point (-10.07, 20.98)
          • type:Point
          • coordinates: [-10.073730709001557, 20.98426143499212]
            • 0:-10.073730709001557
            • 1:20.98426143499212
        • properties: rural
          • type:rural
          • Map:60
      • 476: Feature (Point, 2 properties)
        • type:Feature
        • id:528
        • geometry: Point (-10.23, 21.68)
          • type:Point
          • coordinates: [-10.234880642616977, 21.68434271409163]
            • 0:-10.234880642616977
            • 1:21.68434271409163
        • properties: rural
          • type:rural
          • Map:60
      • 477: Feature (Point, 2 properties)
        • type:Feature
        • id:530
        • geometry: Point (37.60, -9.27)
          • type:Point
          • coordinates: [37.59960311409419, -9.270132106542988]
            • 0:37.59960311409419
            • 1:-9.270132106542988
        • properties: rural
          • type:rural
          • Map:10
      • 478: Feature (Point, 2 properties)
        • type:Feature
        • id:531
        • geometry: Point (-9.53, 12.71)
          • type:Point
          • coordinates: [-9.52777293605364, 12.70908548756344]
            • 0:-9.52777293605364
            • 1:12.70908548756344
        • properties: rural
          • type:rural
          • Map:20
      • 479: Feature (Point, 2 properties)
        • type:Feature
        • id:532
        • geometry: Point (-4.82, 15.97)
          • type:Point
          • coordinates: [-4.819030393615991, 15.970864101597256]
            • 0:-4.819030393615991
            • 1:15.970864101597256
        • properties: rural
          • type:rural
          • Map:30
      • 480: Feature (Point, 2 properties)
        • type:Feature
        • id:533
        • geometry: Point (2.28, 18.83)
          • type:Point
          • coordinates: [2.28453262565314, 18.828227989332515]
            • 0:2.28453262565314
            • 1:18.828227989332515
        • properties: rural
          • type:rural
          • Map:60
      • 481: Feature (Point, 2 properties)
        • type:Feature
        • id:534
        • geometry: Point (48.95, -18.68)
          • type:Point
          • coordinates: [48.94844472976768, -18.681354520271256]
            • 0:48.94844472976768
            • 1:-18.681354520271256
        • properties: rural
          • type:rural
          • Map:10
      • 482: Feature (Point, 2 properties)
        • type:Feature
        • id:535
        • geometry: Point (-0.26, 16.99)
          • type:Point
          • coordinates: [-0.26240542320998267, 16.989042753583018]
            • 0:-0.26240542320998267
            • 1:16.989042753583018
        • properties: rural
          • type:rural
          • Map:60
      • 483: Feature (Point, 2 properties)
        • type:Feature
        • id:537
        • geometry: Point (27.60, -13.29)
          • type:Point
          • coordinates: [27.59912502305356, -13.290954864686286]
            • 0:27.59912502305356
            • 1:-13.290954864686286
        • properties: rural
          • type:rural
          • Map:10
      • 484: Feature (Point, 2 properties)
        • type:Feature
        • id:538
        • geometry: Point (27.59, -4.73)
          • type:Point
          • coordinates: [27.588307643364644, -4.733524534451726]
            • 0:27.588307643364644
            • 1:-4.733524534451726
        • properties: rural
          • type:rural
          • Map:10
      • 485: Feature (Point, 2 properties)
        • type:Feature
        • id:539
        • geometry: Point (0.31, 17.25)
          • type:Point
          • coordinates: [0.30778034875332494, 17.253210743136375]
            • 0:0.30778034875332494
            • 1:17.253210743136375
        • properties: rural
          • type:rural
          • Map:30
      • 486: Feature (Point, 2 properties)
        • type:Feature
        • id:540
        • geometry: Point (41.49, 7.91)
          • type:Point
          • coordinates: [41.490503034253486, 7.912244148443068]
            • 0:41.490503034253486
            • 1:7.912244148443068
        • properties: rural
          • type:rural
          • Map:20
      • 487: Feature (Point, 2 properties)
        • type:Feature
        • id:541
        • geometry: Point (25.02, -11.28)
          • type:Point
          • coordinates: [25.019994868456028, -11.281909043652783]
            • 0:25.019994868456028
            • 1:-11.281909043652783
        • properties: rural
          • type:rural
          • Map:10
      • 488: Feature (Point, 2 properties)
        • type:Feature
        • id:542
        • geometry: Point (40.46, 10.02)
          • type:Point
          • coordinates: [40.46272136194104, 10.0233051503255]
            • 0:40.46272136194104
            • 1:10.0233051503255
        • properties: rural
          • type:rural
          • Map:90
      • 489: Feature (Point, 2 properties)
        • type:Feature
        • id:543
        • geometry: Point (38.08, 10.09)
          • type:Point
          • coordinates: [38.08276339525929, 10.087100956558087]
            • 0:38.08276339525929
            • 1:10.087100956558087
        • properties: rural
          • type:rural
          • Map:30
      • 490: Feature (Point, 2 properties)
        • type:Feature
        • id:544
        • geometry: Point (14.30, -7.29)
          • type:Point
          • coordinates: [14.301273067005805, -7.2870544206889045]
            • 0:14.301273067005805
            • 1:-7.2870544206889045
        • properties: rural
          • type:rural
          • Map:30
      • 491: Feature (Point, 2 properties)
        • type:Feature
        • id:545
        • geometry: Point (24.96, -7.56)
          • type:Point
          • coordinates: [24.962279359608335, -7.560072471671061]
            • 0:24.962279359608335
            • 1:-7.560072471671061
        • properties: rural
          • type:rural
          • Map:20
      • 492: Feature (Point, 2 properties)
        • type:Feature
        • id:546
        • geometry: Point (23.38, -5.06)
          • type:Point
          • coordinates: [23.377751104056802, -5.060889267092011]
            • 0:23.377751104056802
            • 1:-5.060889267092011
        • properties: rural
          • type:rural
          • Map:10
      • 493: Feature (Point, 2 properties)
        • type:Feature
        • id:547
        • geometry: Point (3.35, 17.56)
          • type:Point
          • coordinates: [3.3526079088591407, 17.560253727764785]
            • 0:3.3526079088591407
            • 1:17.560253727764785
        • properties: rural
          • type:rural
          • Map:60
      • 494: Feature (Point, 2 properties)
        • type:Feature
        • id:548
        • geometry: Point (33.69, -3.11)
          • type:Point
          • coordinates: [33.69408622609335, -3.1107175827947002]
            • 0:33.69408622609335
            • 1:-3.1107175827947002
        • properties: rural
          • type:rural
          • Map:40
      • 495: Feature (Point, 2 properties)
        • type:Feature
        • id:549
        • geometry: Point (19.40, 2.03)
          • type:Point
          • coordinates: [19.395141446420446, 2.0329786742824436]
            • 0:19.395141446420446
            • 1:2.0329786742824436
        • properties: rural
          • type:rural
          • Map:10
      • 496: Feature (Point, 2 properties)
        • type:Feature
        • id:550
        • geometry: Point (-2.40, 11.12)
          • type:Point
          • coordinates: [-2.4019732105703753, 11.12260598097214]
            • 0:-2.4019732105703753
            • 1:11.12260598097214
        • properties: rural
          • type:rural
          • Map:40
      • 497: Feature (Point, 2 properties)
        • type:Feature
        • id:552
        • geometry: Point (-12.08, 21.70)
          • type:Point
          • coordinates: [-12.076245485059282, 21.697339469797644]
            • 0:-12.076245485059282
            • 1:21.697339469797644
        • properties: rural
          • type:rural
          • Map:60
      • 498: Feature (Point, 2 properties)
        • type:Feature
        • id:553
        • geometry: Point (0.09, 21.64)
          • type:Point
          • coordinates: [0.08995081283445158, 21.63796790743954]
            • 0:0.08995081283445158
            • 1:21.63796790743954
        • properties: rural
          • type:rural
          • Map:60
      • 499: Feature (Point, 2 properties)
        • type:Feature
        • id:554
        • geometry: Point (-15.41, 20.50)
          • type:Point
          • coordinates: [-15.411880578193895, 20.502117944178433]
            • 0:-15.411880578193895
            • 1:20.502117944178433
        • properties: rural
          • type:rural
          • Map:60
      • 500: Feature (Point, 2 properties)
        • type:Feature
        • id:555
        • geometry: Point (-4.67, 23.54)
          • type:Point
          • coordinates: [-4.670915448678504, 23.54123484007704]
            • 0:-4.670915448678504
            • 1:23.54123484007704
        • properties: rural
          • type:rural
          • Map:60
      • 501: Feature (Point, 2 properties)
        • type:Feature
        • id:556
        • geometry: Point (21.99, -12.05)
          • type:Point
          • coordinates: [21.992195840070575, -12.053662004626567]
            • 0:21.992195840070575
            • 1:-12.053662004626567
        • properties: rural
          • type:rural
          • Map:30
      • 502: Feature (Point, 2 properties)
        • type:Feature
        • id:557
        • geometry: Point (18.32, -7.16)
          • type:Point
          • coordinates: [18.323898471032642, -7.162724336123081]
            • 0:18.323898471032642
            • 1:-7.162724336123081
        • properties: rural
          • type:rural
          • Map:10
      • 503: Feature (Point, 2 properties)
        • type:Feature
        • id:558
        • geometry: Point (25.59, 0.21)
          • type:Point
          • coordinates: [25.591600730643258, 0.20692912939991953]
            • 0:25.591600730643258
            • 1:0.20692912939991953
        • properties: rural
          • type:rural
          • Map:10
      • 504: Feature (Point, 2 properties)
        • type:Feature
        • id:559
        • geometry: Point (-14.93, 18.93)
          • type:Point
          • coordinates: [-14.931361062884452, 18.931707799970155]
            • 0:-14.931361062884452
            • 1:18.931707799970155
        • properties: rural
          • type:rural
          • Map:60
      • 505: Feature (Point, 2 properties)
        • type:Feature
        • id:560
        • geometry: Point (-5.92, 15.68)
          • type:Point
          • coordinates: [-5.92142687166053, 15.679275100471305]
            • 0:-5.92142687166053
            • 1:15.679275100471305
        • properties: rural
          • type:rural
          • Map:30
      • 506: Feature (Point, 2 properties)
        • type:Feature
        • id:561
        • geometry: Point (24.85, 2.11)
          • type:Point
          • coordinates: [24.848192086023573, 2.110805475042735]
            • 0:24.848192086023573
            • 1:2.110805475042735
        • properties: rural
          • type:rural
          • Map:10
      • 507: Feature (Point, 2 properties)
        • type:Feature
        • id:562
        • geometry: Point (30.38, -5.68)
          • type:Point
          • coordinates: [30.378701604514877, -5.682623131038246]
            • 0:30.378701604514877
            • 1:-5.682623131038246
        • properties: rural
          • type:rural
          • Map:30
      • 508: Feature (Point, 2 properties)
        • type:Feature
        • id:563
        • geometry: Point (23.33, -11.27)
          • type:Point
          • coordinates: [23.326284155506567, -11.270825190676844]
            • 0:23.326284155506567
            • 1:-11.270825190676844
        • properties: rural
          • type:rural
          • Map:10
      • 509: Feature (Point, 2 properties)
        • type:Feature
        • id:564
        • geometry: Point (29.82, 2.95)
          • type:Point
          • coordinates: [29.818408434918084, 2.9534348043375105]
            • 0:29.818408434918084
            • 1:2.9534348043375105
        • properties: rural
          • type:rural
          • Map:10
      • 510: Feature (Point, 2 properties)
        • type:Feature
        • id:565
        • geometry: Point (-7.69, 25.68)
          • type:Point
          • coordinates: [-7.685425817927448, 25.6813092258544]
            • 0:-7.685425817927448
            • 1:25.6813092258544
        • properties: rural
          • type:rural
          • Map:60
      • 511: Feature (Point, 2 properties)
        • type:Feature
        • id:566
        • geometry: Point (-10.00, 18.31)
          • type:Point
          • coordinates: [-9.996141448810901, 18.30559458760132]
            • 0:-9.996141448810901
            • 1:18.30559458760132
        • properties: rural
          • type:rural
          • Map:60
      • 512: Feature (Point, 2 properties)
        • type:Feature
        • id:567
        • geometry: Point (35.30, -5.82)
          • type:Point
          • coordinates: [35.30315397144208, -5.817632071828301]
            • 0:35.30315397144208
            • 1:-5.817632071828301
        • properties: rural
          • type:rural
          • Map:30
      • 513: Feature (Point, 2 properties)
        • type:Feature
        • id:570
        • geometry: Point (27.22, 3.86)
          • type:Point
          • coordinates: [27.222746502824823, 3.857585607423663]
            • 0:27.222746502824823
            • 1:3.857585607423663
        • properties: rural
          • type:rural
          • Map:10
      • 514: Feature (Point, 2 properties)
        • type:Feature
        • id:571
        • geometry: Point (42.54, 7.49)
          • type:Point
          • coordinates: [42.54124082152843, 7.489366503398003]
            • 0:42.54124082152843
            • 1:7.489366503398003
        • properties: rural
          • type:rural
          • Map:30
      • 515: Feature (Point, 2 properties)
        • type:Feature
        • id:572
        • geometry: Point (38.25, -8.87)
          • type:Point
          • coordinates: [38.24728447366675, -8.865754919280693]
            • 0:38.24728447366675
            • 1:-8.865754919280693
        • properties: rural
          • type:rural
          • Map:10
      • 516: Feature (Point, 2 properties)
        • type:Feature
        • id:573
        • geometry: Point (1.11, 19.65)
          • type:Point
          • coordinates: [1.1106669810792604, 19.64633901964296]
            • 0:1.1106669810792604
            • 1:19.64633901964296
        • properties: rural
          • type:rural
          • Map:60
      • 517: Feature (Point, 2 properties)
        • type:Feature
        • id:575
        • geometry: Point (29.86, -16.03)
          • type:Point
          • coordinates: [29.86359485804856, -16.031746521519388]
            • 0:29.86359485804856
            • 1:-16.031746521519388
        • properties: rural
          • type:rural
          • Map:20
      • 518: Feature (Point, 2 properties)
        • type:Feature
        • id:576
        • geometry: Point (12.79, -4.97)
          • type:Point
          • coordinates: [12.791352296037767, -4.968894954164124]
            • 0:12.791352296037767
            • 1:-4.968894954164124
        • properties: rural
          • type:rural
          • Map:10
      • 519: Feature (Point, 2 properties)
        • type:Feature
        • id:577
        • geometry: Point (37.75, -1.69)
          • type:Point
          • coordinates: [37.746516181096894, -1.6904433538341055]
            • 0:37.746516181096894
            • 1:-1.6904433538341055
        • properties: rural
          • type:rural
          • Map:20
      • 520: Feature (Point, 2 properties)
        • type:Feature
        • id:578
        • geometry: Point (44.29, -23.40)
          • type:Point
          • coordinates: [44.28856178343182, -23.39938500149259]
            • 0:44.28856178343182
            • 1:-23.39938500149259
        • properties: rural
          • type:rural
          • Map:20
      • 521: Feature (Point, 2 properties)
        • type:Feature
        • id:579
        • geometry: Point (-12.39, 13.45)
          • type:Point
          • coordinates: [-12.393399085206303, 13.452966395228643]
            • 0:-12.393399085206303
            • 1:13.452966395228643
        • properties: rural
          • type:rural
          • Map:20
      • 522: Feature (Point, 2 properties)
        • type:Feature
        • id:580
        • geometry: Point (-5.06, 21.47)
          • type:Point
          • coordinates: [-5.064481786692384, 21.472808707341137]
            • 0:-5.064481786692384
            • 1:21.472808707341137
        • properties: rural
          • type:rural
          • Map:60
      • 523: Feature (Point, 2 properties)
        • type:Feature
        • id:581
        • geometry: Point (37.64, -2.85)
          • type:Point
          • coordinates: [37.641069500665246, -2.846843367093017]
            • 0:37.641069500665246
            • 1:-2.846843367093017
        • properties: rural
          • type:rural
          • Map:30
      • 524: Feature (Point, 2 properties)
        • type:Feature
        • id:582
        • geometry: Point (39.23, 2.23)
          • type:Point
          • coordinates: [39.2275152602157, 2.2260091489314817]
            • 0:39.2275152602157
            • 1:2.2260091489314817
        • properties: rural
          • type:rural
          • Map:30
      • 525: Feature (Point, 2 properties)
        • type:Feature
        • id:583
        • geometry: Point (1.58, 19.08)
          • type:Point
          • coordinates: [1.5817003749901597, 19.08181823693731]
            • 0:1.5817003749901597
            • 1:19.08181823693731
        • properties: rural
          • type:rural
          • Map:60
      • 526: Feature (Point, 2 properties)
        • type:Feature
        • id:584
        • geometry: Point (22.51, 3.72)
          • type:Point
          • coordinates: [22.51403666021982, 3.7225489573601602]
            • 0:22.51403666021982
            • 1:3.7225489573601602
        • properties: rural
          • type:rural
          • Map:10
      • 527: Feature (Point, 2 properties)
        • type:Feature
        • id:585
        • geometry: Point (13.48, -14.59)
          • type:Point
          • coordinates: [13.478579104384584, -14.58725280282111]
            • 0:13.478579104384584
            • 1:-14.58725280282111
        • properties: rural
          • type:rural
          • Map:10
      • 528: Feature (Point, 2 properties)
        • type:Feature
        • id:586
        • geometry: Point (2.04, 17.53)
          • type:Point
          • coordinates: [2.0389262840492366, 17.526465458797]
            • 0:2.0389262840492366
            • 1:17.526465458797
        • properties: rural
          • type:rural
          • Map:60
      • 529: Feature (Point, 2 properties)
        • type:Feature
        • id:587
        • geometry: Point (-6.05, 12.45)
          • type:Point
          • coordinates: [-6.053058982182754, 12.452373085064938]
            • 0:-6.053058982182754
            • 1:12.452373085064938
        • properties: rural
          • type:rural
          • Map:40
      • 530: Feature (Point, 2 properties)
        • type:Feature
        • id:588
        • geometry: Point (39.47, 3.76)
          • type:Point
          • coordinates: [39.466352341726285, 3.756324492709689]
            • 0:39.466352341726285
            • 1:3.756324492709689
        • properties: rural
          • type:rural
          • Map:20
      • 531: Feature (Point, 2 properties)
        • type:Feature
        • id:589
        • geometry: Point (16.26, -8.67)
          • type:Point
          • coordinates: [16.260784381775125, -8.67063652145583]
            • 0:16.260784381775125
            • 1:-8.67063652145583
        • properties: rural
          • type:rural
          • Map:30
      • 532: Feature (Point, 2 properties)
        • type:Feature
        • id:590
        • geometry: Point (35.90, 8.91)
          • type:Point
          • coordinates: [35.9039491722721, 8.911086505579283]
            • 0:35.9039491722721
            • 1:8.911086505579283
        • properties: rural
          • type:rural
          • Map:40
      • 533: Feature (Point, 2 properties)
        • type:Feature
        • id:591
        • geometry: Point (27.02, 4.65)
          • type:Point
          • coordinates: [27.022583830333808, 4.653851240651551]
            • 0:27.022583830333808
            • 1:4.653851240651551
        • properties: rural
          • type:rural
          • Map:20
      • 534: Feature (Point, 2 properties)
        • type:Feature
        • id:592
        • geometry: Point (28.69, -17.16)
          • type:Point
          • coordinates: [28.68830252096712, -17.16493899391358]
            • 0:28.68830252096712
            • 1:-17.16493899391358
        • properties: rural
          • type:rural
          • Map:20
      • 535: Feature (Point, 2 properties)
        • type:Feature
        • id:593
        • geometry: Point (0.36, 17.66)
          • type:Point
          • coordinates: [0.36126545728345427, 17.661928351601475]
            • 0:0.36126545728345427
            • 1:17.661928351601475
        • properties: rural
          • type:rural
          • Map:60
      • 536: Feature (Point, 2 properties)
        • type:Feature
        • id:594
        • geometry: Point (30.76, -18.63)
          • type:Point
          • coordinates: [30.7645710965838, -18.625762550528062]
            • 0:30.7645710965838
            • 1:-18.625762550528062
        • properties: rural
          • type:rural
          • Map:30
      • 537: Feature (Point, 2 properties)
        • type:Feature
        • id:595
        • geometry: Point (37.62, 4.09)
          • type:Point
          • coordinates: [37.62055985319071, 4.087679755265466]
            • 0:37.62055985319071
            • 1:4.087679755265466
        • properties: rural
          • type:rural
          • Map:20
      • 538: Feature (Point, 2 properties)
        • type:Feature
        • id:596
        • geometry: Point (22.30, 0.66)
          • type:Point
          • coordinates: [22.30251839252722, 0.6553369094414586]
            • 0:22.30251839252722
            • 1:0.6553369094414586
        • properties: rural
          • type:rural
          • Map:10
      • 539: Feature (Point, 2 properties)
        • type:Feature
        • id:597
        • geometry: Point (29.60, -10.58)
          • type:Point
          • coordinates: [29.595344285903096, -10.584114264801475]
            • 0:29.595344285903096
            • 1:-10.584114264801475
        • properties: rural
          • type:rural
          • Map:20
      • 540: Feature (Point, 2 properties)
        • type:Feature
        • id:598
        • geometry: Point (35.52, -9.55)
          • type:Point
          • coordinates: [35.5209879433284, -9.545297422196244]
            • 0:35.5209879433284
            • 1:-9.545297422196244
        • properties: rural
          • type:rural
          • Map:10
      • 541: Feature (Point, 2 properties)
        • type:Feature
        • id:599
        • geometry: Point (-6.52, 15.54)
          • type:Point
          • coordinates: [-6.516064849475092, 15.544751706773155]
            • 0:-6.516064849475092
            • 1:15.544751706773155
        • properties: rural
          • type:rural
          • Map:30
      • 542: Feature (Point, 2 properties)
        • type:Feature
        • id:600
        • geometry: Point (24.03, -8.64)
          • type:Point
          • coordinates: [24.027041186950264, -8.637404975613507]
            • 0:24.027041186950264
            • 1:-8.637404975613507
        • properties: rural
          • type:rural
          • Map:10
      • 543: Feature (Point, 2 properties)
        • type:Feature
        • id:601
        • geometry: Point (-11.39, 22.61)
          • type:Point
          • coordinates: [-11.38637623644943, 22.606048206337476]
            • 0:-11.38637623644943
            • 1:22.606048206337476
        • properties: rural
          • type:rural
          • Map:60
      • 544: Feature (Point, 2 properties)
        • type:Feature
        • id:602
        • geometry: Point (16.93, -3.29)
          • type:Point
          • coordinates: [16.92717199179295, -3.2904416787103314]
            • 0:16.92717199179295
            • 1:-3.2904416787103314
        • properties: rural
          • type:rural
          • Map:10
      • 545: Feature (Point, 2 properties)
        • type:Feature
        • id:604
        • geometry: Point (45.94, -21.99)
          • type:Point
          • coordinates: [45.941508568050814, -21.988605349936215]
            • 0:45.941508568050814
            • 1:-21.988605349936215
        • properties: rural
          • type:rural
          • Map:30
      • 546: Feature (Point, 2 properties)
        • type:Feature
        • id:605
        • geometry: Point (44.87, 6.45)
          • type:Point
          • coordinates: [44.86637289758931, 6.445146830708868]
            • 0:44.86637289758931
            • 1:6.445146830708868
        • properties: rural
          • type:rural
          • Map:20
      • 547: Feature (Point, 2 properties)
        • type:Feature
        • id:606
        • geometry: Point (30.89, -16.15)
          • type:Point
          • coordinates: [30.886241369594316, -16.150670238584077]
            • 0:30.886241369594316
            • 1:-16.150670238584077
        • properties: rural
          • type:rural
          • Map:40
      • 548: Feature (Point, 2 properties)
        • type:Feature
        • id:607
        • geometry: Point (-7.87, 13.82)
          • type:Point
          • coordinates: [-7.874583745238433, 13.822214877978052]
            • 0:-7.874583745238433
            • 1:13.822214877978052
        • properties: rural
          • type:rural
          • Map:20
      • 549: Feature (Point, 2 properties)
        • type:Feature
        • id:608
        • geometry: Point (17.76, -4.14)
          • type:Point
          • coordinates: [17.760027509039087, -4.1411384778613245]
            • 0:17.760027509039087
            • 1:-4.1411384778613245
        • properties: rural
          • type:rural
          • Map:10
      • 550: Feature (Point, 2 properties)
        • type:Feature
        • id:609
        • geometry: Point (29.38, -7.50)
          • type:Point
          • coordinates: [29.384204144690937, -7.503460089946364]
            • 0:29.384204144690937
            • 1:-7.503460089946364
        • properties: rural
          • type:rural
          • Map:30
      • 551: Feature (Point, 2 properties)
        • type:Feature
        • id:610
        • geometry: Point (46.99, -24.25)
          • type:Point
          • coordinates: [46.98886926124326, -24.25407946563275]
            • 0:46.98886926124326
            • 1:-24.25407946563275
        • properties: rural
          • type:rural
          • Map:30
      • 552: Feature (Point, 2 properties)
        • type:Feature
        • id:611
        • geometry: Point (37.68, 14.35)
          • type:Point
          • coordinates: [37.681934268677324, 14.349505941063095]
            • 0:37.681934268677324
            • 1:14.349505941063095
        • properties: rural
          • type:rural
          • Map:30
      • 553: Feature (Point, 2 properties)
        • type:Feature
        • id:612
        • geometry: Point (25.41, -13.42)
          • type:Point
          • coordinates: [25.411609579766353, -13.417217306370885]
            • 0:25.411609579766353
            • 1:-13.417217306370885
        • properties: rural
          • type:rural
          • Map:10
      • 554: Feature (Point, 2 properties)
        • type:Feature
        • id:613
        • geometry: Point (-2.17, 11.62)
          • type:Point
          • coordinates: [-2.168269697329007, 11.616217359648326]
            • 0:-2.168269697329007
            • 1:11.616217359648326
        • properties: rural
          • type:rural
          • Map:40
      • 555: Feature (Point, 2 properties)
        • type:Feature
        • id:614
        • geometry: Point (18.44, -6.75)
          • type:Point
          • coordinates: [18.443356880685137, -6.750496077471974]
            • 0:18.443356880685137
            • 1:-6.750496077471974
        • properties: rural
          • type:rural
          • Map:30
      • 556: Feature (Point, 2 properties)
        • type:Feature
        • id:615
        • geometry: Point (-7.50, 23.09)
          • type:Point
          • coordinates: [-7.497672261125204, 23.093366433230674]
            • 0:-7.497672261125204
            • 1:23.093366433230674
        • properties: rural
          • type:rural
          • Map:60
      • 557: Feature (Point, 2 properties)
        • type:Feature
        • id:616
        • geometry: Point (-0.51, 15.80)
          • type:Point
          • coordinates: [-0.5143788820232992, 15.799819792187474]
            • 0:-0.5143788820232992
            • 1:15.799819792187474
        • properties: rural
          • type:rural
          • Map:30
      • 558: Feature (Point, 2 properties)
        • type:Feature
        • id:617
        • geometry: Point (4.02, 18.53)
          • type:Point
          • coordinates: [4.017750018401817, 18.530273873901272]
            • 0:4.017750018401817
            • 1:18.530273873901272
        • properties: rural
          • type:rural
          • Map:60
      • 559: Feature (Point, 2 properties)
        • type:Feature
        • id:618
        • geometry: Point (36.68, 12.59)
          • type:Point
          • coordinates: [36.680473966777335, 12.592589180870027]
            • 0:36.680473966777335
            • 1:12.592589180870027
        • properties: rural
          • type:rural
          • Map:10
      • 560: Feature (Point, 2 properties)
        • type:Feature
        • id:619
        • geometry: Point (30.83, -3.62)
          • type:Point
          • coordinates: [30.834412748662064, -3.6241757616818755]
            • 0:30.834412748662064
            • 1:-3.6241757616818755
        • properties: rural
          • type:rural
          • Map:10
      • 561: Feature (Point, 2 properties)
        • type:Feature
        • id:620
        • geometry: Point (31.92, -11.74)
          • type:Point
          • coordinates: [31.917640827853646, -11.739541253642944]
            • 0:31.917640827853646
            • 1:-11.739541253642944
        • properties: rural
          • type:rural
          • Map:10
      • 562: Feature (Point, 2 properties)
        • type:Feature
        • id:621
        • geometry: Point (23.66, -5.41)
          • type:Point
          • coordinates: [23.659589213913087, -5.406672134290821]
            • 0:23.659589213913087
            • 1:-5.406672134290821
        • properties: rural
          • type:rural
          • Map:10
      • 563: Feature (Point, 2 properties)
        • type:Feature
        • id:623
        • geometry: Point (31.71, -12.18)
          • type:Point
          • coordinates: [31.71097749829754, -12.179078202104703]
            • 0:31.71097749829754
            • 1:-12.179078202104703
        • properties: rural
          • type:rural
          • Map:20
      • 564: Feature (Point, 2 properties)
        • type:Feature
        • id:624
        • geometry: Point (20.79, -8.99)
          • type:Point
          • coordinates: [20.78852093080806, -8.98759455393069]
            • 0:20.78852093080806
            • 1:-8.98759455393069
        • properties: rural
          • type:rural
          • Map:20
      • 565: Feature (Point, 2 properties)
        • type:Feature
        • id:625
        • geometry: Point (19.63, -1.54)
          • type:Point
          • coordinates: [19.632209940311967, -1.53792969549956]
            • 0:19.632209940311967
            • 1:-1.53792969549956
        • properties: rural
          • type:rural
          • Map:10
      • 566: Feature (Point, 2 properties)
        • type:Feature
        • id:626
        • geometry: Point (30.36, -10.95)
          • type:Point
          • coordinates: [30.362429258873508, -10.94553077782957]
            • 0:30.362429258873508
            • 1:-10.94553077782957
        • properties: rural
          • type:rural
          • Map:10
      • 567: Feature (Point, 2 properties)
        • type:Feature
        • id:628
        • geometry: Point (-9.99, 19.54)
          • type:Point
          • coordinates: [-9.99004500690462, 19.537860196449504]
            • 0:-9.99004500690462
            • 1:19.537860196449504
        • properties: rural
          • type:rural
          • Map:60
      • 568: Feature (Point, 2 properties)
        • type:Feature
        • id:629
        • geometry: Point (16.25, -6.23)
          • type:Point
          • coordinates: [16.249395893527726, -6.2254190394338]
            • 0:16.249395893527726
            • 1:-6.2254190394338
        • properties: rural
          • type:rural
          • Map:10
      • 569: Feature (Point, 2 properties)
        • type:Feature
        • id:630
        • geometry: Point (15.24, -10.42)
          • type:Point
          • coordinates: [15.240445014039665, -10.420661778230553]
            • 0:15.240445014039665
            • 1:-10.420661778230553
        • properties: rural
          • type:rural
          • Map:30
      • 570: Feature (Point, 2 properties)
        • type:Feature
        • id:631
        • geometry: Point (43.32, 5.73)
          • type:Point
          • coordinates: [43.32338776469957, 5.725538973992648]
            • 0:43.32338776469957
            • 1:5.725538973992648
        • properties: rural
          • type:rural
          • Map:30
      • 571: Feature (Point, 2 properties)
        • type:Feature
        • id:632
        • geometry: Point (30.82, -13.27)
          • type:Point
          • coordinates: [30.820295160687017, -13.272217395931936]
            • 0:30.820295160687017
            • 1:-13.272217395931936
        • properties: rural
          • type:rural
          • Map:10
      • 572: Feature (Point, 2 properties)
        • type:Feature
        • id:633
        • geometry: Point (40.80, -2.12)
          • type:Point
          • coordinates: [40.803834185341614, -2.117837038292341]
            • 0:40.803834185341614
            • 1:-2.117837038292341
        • properties: rural
          • type:rural
          • Map:40
      • 573: Feature (Point, 2 properties)
        • type:Feature
        • id:635
        • geometry: Point (19.51, -16.09)
          • type:Point
          • coordinates: [19.5086930135984, -16.08757404836469]
            • 0:19.5086930135984
            • 1:-16.08757404836469
        • properties: rural
          • type:rural
          • Map:20
      • 574: Feature (Point, 2 properties)
        • type:Feature
        • id:636
        • geometry: Point (-11.44, 24.65)
          • type:Point
          • coordinates: [-11.437980671708836, 24.653843957576566]
            • 0:-11.437980671708836
            • 1:24.653843957576566
        • properties: rural
          • type:rural
          • Map:60
      • 575: Feature (Point, 2 properties)
        • type:Feature
        • id:637
        • geometry: Point (2.34, 16.19)
          • type:Point
          • coordinates: [2.3359595093536356, 16.18691921001972]
            • 0:2.3359595093536356
            • 1:16.18691921001972
        • properties: rural
          • type:rural
          • Map:60
      • 576: Feature (Point, 2 properties)
        • type:Feature
        • id:638
        • geometry: Point (36.10, 9.26)
          • type:Point
          • coordinates: [36.100273787851265, 9.255834855220824]
            • 0:36.100273787851265
            • 1:9.255834855220824
        • properties: rural
          • type:rural
          • Map:10
      • 577: Feature (Point, 2 properties)
        • type:Feature
        • id:639
        • geometry: Point (-11.42, 20.95)
          • type:Point
          • coordinates: [-11.416499653074695, 20.951841418673077]
            • 0:-11.416499653074695
            • 1:20.951841418673077
        • properties: rural
          • type:rural
          • Map:60
      • 578: Feature (Point, 2 properties)
        • type:Feature
        • id:640
        • geometry: Point (28.57, -13.58)
          • type:Point
          • coordinates: [28.573580602382908, -13.583387929610394]
            • 0:28.573580602382908
            • 1:-13.583387929610394
        • properties: rural
          • type:rural
          • Map:40
      • 579: Feature (Point, 2 properties)
        • type:Feature
        • id:641
        • geometry: Point (46.33, -23.30)
          • type:Point
          • coordinates: [46.3268099146347, -23.2951126567324]
            • 0:46.3268099146347
            • 1:-23.2951126567324
        • properties: rural
          • type:rural
          • Map:30
      • 580: Feature (Point, 2 properties)
        • type:Feature
        • id:642
        • geometry: Point (-7.98, 22.86)
          • type:Point
          • coordinates: [-7.980325192740931, 22.861995990672707]
            • 0:-7.980325192740931
            • 1:22.861995990672707
        • properties: rural
          • type:rural
          • Map:60
      • 581: Feature (Point, 2 properties)
        • type:Feature
        • id:643
        • geometry: Point (32.17, -21.42)
          • type:Point
          • coordinates: [32.17411307062494, -21.418699354414848]
            • 0:32.17411307062494
            • 1:-21.418699354414848
        • properties: rural
          • type:rural
          • Map:20
      • 582: Feature (Point, 2 properties)
        • type:Feature
        • id:646
        • geometry: Point (31.85, -12.07)
          • type:Point
          • coordinates: [31.848087910484537, -12.072756868695032]
            • 0:31.848087910484537
            • 1:-12.072756868695032
        • properties: rural
          • type:rural
          • Map:10
      • 583: Feature (Point, 2 properties)
        • type:Feature
        • id:647
        • geometry: Point (-12.44, 13.16)
          • type:Point
          • coordinates: [-12.436657140911759, 13.164940807896429]
            • 0:-12.436657140911759
            • 1:13.164940807896429
        • properties: rural
          • type:rural
          • Map:20
      • 584: Feature (Point, 2 properties)
        • type:Feature
        • id:648
        • geometry: Point (-6.70, 15.85)
          • type:Point
          • coordinates: [-6.701060987630651, 15.851196499768642]
            • 0:-6.701060987630651
            • 1:15.851196499768642
        • properties: rural
          • type:rural
          • Map:30
      • 585: Feature (Point, 2 properties)
        • type:Feature
        • id:649
        • geometry: Point (32.91, -18.29)
          • type:Point
          • coordinates: [32.90570370947328, -18.287758010312725]
            • 0:32.90570370947328
            • 1:-18.287758010312725
        • properties: rural
          • type:rural
          • Map:10
      • 586: Feature (Point, 2 properties)
        • type:Feature
        • id:650
        • geometry: Point (27.06, -19.16)
          • type:Point
          • coordinates: [27.06253066795633, -19.16303100193201]
            • 0:27.06253066795633
            • 1:-19.16303100193201
        • properties: rural
          • type:rural
          • Map:20
      • 587: Feature (Point, 2 properties)
        • type:Feature
        • id:651
        • geometry: Point (24.66, -12.97)
          • type:Point
          • coordinates: [24.659557508202024, -12.965332272349652]
            • 0:24.659557508202024
            • 1:-12.965332272349652
        • properties: rural
          • type:rural
          • Map:10
      • 588: Feature (Point, 2 properties)
        • type:Feature
        • id:653
        • geometry: Point (-4.01, 20.84)
          • type:Point
          • coordinates: [-4.01212167287601, 20.838646591587015]
            • 0:-4.01212167287601
            • 1:20.838646591587015
        • properties: rural
          • type:rural
          • Map:60
      • 589: Feature (Point, 2 properties)
        • type:Feature
        • id:654
        • geometry: Point (46.43, -21.52)
          • type:Point
          • coordinates: [46.43081634650473, -21.524340379576454]
            • 0:46.43081634650473
            • 1:-21.524340379576454
        • properties: rural
          • type:rural
          • Map:30
      • 590: Feature (Point, 2 properties)
        • type:Feature
        • id:655
        • geometry: Point (24.89, 1.50)
          • type:Point
          • coordinates: [24.886239908586436, 1.5046894223922076]
            • 0:24.886239908586436
            • 1:1.5046894223922076
        • properties: rural
          • type:rural
          • Map:10
      • 591: Feature (Point, 2 properties)
        • type:Feature
        • id:656
        • geometry: Point (31.80, -11.97)
          • type:Point
          • coordinates: [31.800180173572652, -11.966078618491625]
            • 0:31.800180173572652
            • 1:-11.966078618491625
        • properties: rural
          • type:rural
          • Map:10
      • 592: Feature (Point, 2 properties)
        • type:Feature
        • id:657
        • geometry: Point (-2.68, 12.53)
          • type:Point
          • coordinates: [-2.681899936946969, 12.529547081447545]
            • 0:-2.681899936946969
            • 1:12.529547081447545
        • properties: rural
          • type:rural
          • Map:40
      • 593: Feature (Point, 2 properties)
        • type:Feature
        • id:658
        • geometry: Point (31.29, -19.64)
          • type:Point
          • coordinates: [31.292611688684246, -19.644689633087676]
            • 0:31.292611688684246
            • 1:-19.644689633087676
        • properties: rural
          • type:rural
          • Map:20
      • 594: Feature (Point, 2 properties)
        • type:Feature
        • id:659
        • geometry: Point (36.06, -7.04)
          • type:Point
          • coordinates: [36.05665570027756, -7.039905966079926]
            • 0:36.05665570027756
            • 1:-7.039905966079926
        • properties: rural
          • type:rural
          • Map:20
      • 595: Feature (Point, 2 properties)
        • type:Feature
        • id:660
        • geometry: Point (27.21, -17.48)
          • type:Point
          • coordinates: [27.208634777245457, -17.481706364718328]
            • 0:27.208634777245457
            • 1:-17.481706364718328
        • properties: rural
          • type:rural
          • Map:20
      • 596: Feature (Point, 2 properties)
        • type:Feature
        • id:661
        • geometry: Point (39.83, -0.81)
          • type:Point
          • coordinates: [39.82755377865296, -0.8129138472718584]
            • 0:39.82755377865296
            • 1:-0.8129138472718584
        • properties: rural
          • type:rural
          • Map:10
      • 597: Feature (Point, 2 properties)
        • type:Feature
        • id:662
        • geometry: Point (26.59, -18.57)
          • type:Point
          • coordinates: [26.590315903599276, -18.56615539800557]
            • 0:26.590315903599276
            • 1:-18.56615539800557
        • properties: rural
          • type:rural
          • Map:30
      • 598: Feature (Point, 2 properties)
        • type:Feature
        • id:663
        • geometry: Point (-11.95, 17.35)
          • type:Point
          • coordinates: [-11.95250006218616, 17.35426678117234]
            • 0:-11.95250006218616
            • 1:17.35426678117234
        • properties: rural
          • type:rural
          • Map:60
      • 599: Feature (Point, 2 properties)
        • type:Feature
        • id:665
        • geometry: Point (-12.18, 22.70)
          • type:Point
          • coordinates: [-12.182899595437588, 22.700064175466352]
            • 0:-12.182899595437588
            • 1:22.700064175466352
        • properties: rural
          • type:rural
          • Map:60
      • 600: Feature (Point, 2 properties)
        • type:Feature
        • id:666
        • geometry: Point (-10.97, 22.65)
          • type:Point
          • coordinates: [-10.971399427123423, 22.65053151971191]
            • 0:-10.971399427123423
            • 1:22.65053151971191
        • properties: rural
          • type:rural
          • Map:60
      • 601: Feature (Point, 2 properties)
        • type:Feature
        • id:667
        • geometry: Point (13.74, -6.43)
          • type:Point
          • coordinates: [13.736896899533434, -6.429381983213015]
            • 0:13.736896899533434
            • 1:-6.429381983213015
        • properties: rural
          • type:rural
          • Map:30
      • 602: Feature (Point, 2 properties)
        • type:Feature
        • id:668
        • geometry: Point (16.64, -10.73)
          • type:Point
          • coordinates: [16.641203384371686, -10.729386882013168]
            • 0:16.641203384371686
            • 1:-10.729386882013168
        • properties: rural
          • type:rural
          • Map:10
      • 603: Feature (Point, 2 properties)
        • type:Feature
        • id:669
        • geometry: Point (-1.00, 10.53)
          • type:Point
          • coordinates: [-1.00246161533254, 10.52841107913524]
            • 0:-1.00246161533254
            • 1:10.52841107913524
        • properties: rural
          • type:rural
          • Map:40
      • 604: Feature (Point, 2 properties)
        • type:Feature
        • id:670
        • geometry: Point (26.57, 4.80)
          • type:Point
          • coordinates: [26.567414602861678, 4.804634983403593]
            • 0:26.567414602861678
            • 1:4.804634983403593
        • properties: rural
          • type:rural
          • Map:10
      • 605: Feature (Point, 2 properties)
        • type:Feature
        • id:671
        • geometry: Point (35.37, 6.03)
          • type:Point
          • coordinates: [35.372712369976, 6.030423485012966]
            • 0:35.372712369976
            • 1:6.030423485012966
        • properties: rural
          • type:rural
          • Map:10
      • 606: Feature (Point, 2 properties)
        • type:Feature
        • id:672
        • geometry: Point (12.55, -5.28)
          • type:Point
          • coordinates: [12.551132004412066, -5.275966402572466]
            • 0:12.551132004412066
            • 1:-5.275966402572466
        • properties: rural
          • type:rural
          • Map:30
      • 607: Feature (Point, 2 properties)
        • type:Feature
        • id:673
        • geometry: Point (19.82, -6.40)
          • type:Point
          • coordinates: [19.815936494553743, -6.404802240071948]
            • 0:19.815936494553743
            • 1:-6.404802240071948
        • properties: rural
          • type:rural
          • Map:30
      • 608: Feature (Point, 2 properties)
        • type:Feature
        • id:674
        • geometry: Point (45.77, 5.75)
          • type:Point
          • coordinates: [45.77092490485303, 5.752675108474825]
            • 0:45.77092490485303
            • 1:5.752675108474825
        • properties: rural
          • type:rural
          • Map:20
      • 609: Feature (Point, 2 properties)
        • type:Feature
        • id:675
        • geometry: Point (-5.15, 21.81)
          • type:Point
          • coordinates: [-5.149122467447384, 21.814711568707303]
            • 0:-5.149122467447384
            • 1:21.814711568707303
        • properties: rural
          • type:rural
          • Map:60
      • 610: Feature (Point, 2 properties)
        • type:Feature
        • id:676
        • geometry: Point (-6.72, 22.01)
          • type:Point
          • coordinates: [-6.7172836441878845, 22.009671286380744]
            • 0:-6.7172836441878845
            • 1:22.009671286380744
        • properties: rural
          • type:rural
          • Map:60
      • 611: Feature (Point, 2 properties)
        • type:Feature
        • id:677
        • geometry: Point (-0.24, 14.30)
          • type:Point
          • coordinates: [-0.24385015507692598, 14.30447523931519]
            • 0:-0.24385015507692598
            • 1:14.30447523931519
        • properties: rural
          • type:rural
          • Map:30
      • 612: Feature (Point, 2 properties)
        • type:Feature
        • id:678
        • geometry: Point (1.99, 19.93)
          • type:Point
          • coordinates: [1.985412348621198, 19.934643105902506]
            • 0:1.985412348621198
            • 1:19.934643105902506
        • properties: rural
          • type:rural
          • Map:60
      • 613: Feature (Point, 2 properties)
        • type:Feature
        • id:679
        • geometry: Point (-3.34, 22.94)
          • type:Point
          • coordinates: [-3.335395369197066, 22.9389859083838]
            • 0:-3.335395369197066
            • 1:22.9389859083838
        • properties: rural
          • type:rural
          • Map:60
      • 614: Feature (Point, 2 properties)
        • type:Feature
        • id:680
        • geometry: Point (37.06, -3.86)
          • type:Point
          • coordinates: [37.060178822187765, -3.860156042453382]
            • 0:37.060178822187765
            • 1:-3.860156042453382
        • properties: rural
          • type:rural
          • Map:30
      • 615: Feature (Point, 2 properties)
        • type:Feature
        • id:681
        • geometry: Point (43.42, 7.55)
          • type:Point
          • coordinates: [43.42076076241081, 7.553726016289113]
            • 0:43.42076076241081
            • 1:7.553726016289113
        • properties: rural
          • type:rural
          • Map:20
      • 616: Feature (Point, 2 properties)
        • type:Feature
        • id:682
        • geometry: Point (0.51, 19.24)
          • type:Point
          • coordinates: [0.5090470409454735, 19.23850081778095]
            • 0:0.5090470409454735
            • 1:19.23850081778095
        • properties: rural
          • type:rural
          • Map:60
      • 617: Feature (Point, 2 properties)
        • type:Feature
        • id:683
        • geometry: Point (34.74, -4.20)
          • type:Point
          • coordinates: [34.74239536154041, -4.202705244941302]
            • 0:34.74239536154041
            • 1:-4.202705244941302
        • properties: rural
          • type:rural
          • Map:30
      • 618: Feature (Point, 2 properties)
        • type:Feature
        • id:684
        • geometry: Point (-6.41, 15.92)
          • type:Point
          • coordinates: [-6.407839179966367, 15.917573175397372]
            • 0:-6.407839179966367
            • 1:15.917573175397372
        • properties: rural
          • type:rural
          • Map:60
      • 619: Feature (Point, 2 properties)
        • type:Feature
        • id:685
        • geometry: Point (32.75, -4.71)
          • type:Point
          • coordinates: [32.74709516509521, -4.710549183626338]
            • 0:32.74709516509521
            • 1:-4.710549183626338
        • properties: rural
          • type:rural
          • Map:10
      • 620: Feature (Point, 2 properties)
        • type:Feature
        • id:686
        • geometry: Point (26.17, -7.60)
          • type:Point
          • coordinates: [26.1651267077906, -7.598221126726782]
            • 0:26.1651267077906
            • 1:-7.598221126726782
        • properties: rural
          • type:rural
          • Map:10
      • 621: Feature (Point, 2 properties)
        • type:Feature
        • id:687
        • geometry: Point (20.59, 2.31)
          • type:Point
          • coordinates: [20.585756296820698, 2.3071710038095206]
            • 0:20.585756296820698
            • 1:2.3071710038095206
        • properties: rural
          • type:rural
          • Map:10
      • 622: Feature (Point, 2 properties)
        • type:Feature
        • id:688
        • geometry: Point (20.70, -11.01)
          • type:Point
          • coordinates: [20.702075880020587, -11.014258906454367]
            • 0:20.702075880020587
            • 1:-11.014258906454367
        • properties: rural
          • type:rural
          • Map:30
      • 623: Feature (Point, 2 properties)
        • type:Feature
        • id:689
        • geometry: Point (-2.81, 14.69)
          • type:Point
          • coordinates: [-2.8092944787946124, 14.690001785871253]
            • 0:-2.8092944787946124
            • 1:14.690001785871253
        • properties: rural
          • type:rural
          • Map:30
      • 624: Feature (Point, 2 properties)
        • type:Feature
        • id:690
        • geometry: Point (45.48, -16.41)
          • type:Point
          • coordinates: [45.47838745291003, -16.411673767676138]
            • 0:45.47838745291003
            • 1:-16.411673767676138
        • properties: rural
          • type:rural
          • Map:30
      • 625: Feature (Point, 2 properties)
        • type:Feature
        • id:691
        • geometry: Point (-10.44, 16.47)
          • type:Point
          • coordinates: [-10.442044421656622, 16.471810961158823]
            • 0:-10.442044421656622
            • 1:16.471810961158823
        • properties: rural
          • type:rural
          • Map:20
      • 626: Feature (Point, 2 properties)
        • type:Feature
        • id:692
        • geometry: Point (38.88, 7.83)
          • type:Point
          • coordinates: [38.883025883505994, 7.826550387418927]
            • 0:38.883025883505994
            • 1:7.826550387418927
        • properties: rural
          • type:rural
          • Map:30
      • 627: Feature (Point, 2 properties)
        • type:Feature
        • id:693
        • geometry: Point (31.67, -14.47)
          • type:Point
          • coordinates: [31.665209326227473, -14.473055526733408]
            • 0:31.665209326227473
            • 1:-14.473055526733408
        • properties: rural
          • type:rural
          • Map:40
      • 628: Feature (Point, 2 properties)
        • type:Feature
        • id:694
        • geometry: Point (45.84, -23.00)
          • type:Point
          • coordinates: [45.837061387609815, -22.995429438444365]
            • 0:45.837061387609815
            • 1:-22.995429438444365
        • properties: rural
          • type:rural
          • Map:30
      • 629: Feature (Point, 2 properties)
        • type:Feature
        • id:695
        • geometry: Point (22.95, -14.77)
          • type:Point
          • coordinates: [22.95055497808754, -14.773420087843808]
            • 0:22.95055497808754
            • 1:-14.773420087843808
        • properties: rural
          • type:rural
          • Map:90
      • 630: Feature (Point, 2 properties)
        • type:Feature
        • id:696
        • geometry: Point (20.37, 4.36)
          • type:Point
          • coordinates: [20.368112475901654, 4.35561558569865]
            • 0:20.368112475901654
            • 1:4.35561558569865
        • properties: rural
          • type:rural
          • Map:30
      • 631: Feature (Point, 2 properties)
        • type:Feature
        • id:699
        • geometry: Point (1.20, 20.50)
          • type:Point
          • coordinates: [1.197738047238747, 20.498589500097868]
            • 0:1.197738047238747
            • 1:20.498589500097868
        • properties: rural
          • type:rural
          • Map:60
      • 632: Feature (Point, 2 properties)
        • type:Feature
        • id:701
        • geometry: Point (-0.79, 10.96)
          • type:Point
          • coordinates: [-0.7890916935002509, 10.96109654937637]
            • 0:-0.7890916935002509
            • 1:10.96109654937637
        • properties: rural
          • type:rural
          • Map:40
      • 633: Feature (Point, 2 properties)
        • type:Feature
        • id:703
        • geometry: Point (30.71, -20.28)
          • type:Point
          • coordinates: [30.709066905397567, -20.278776035271054]
            • 0:30.709066905397567
            • 1:-20.278776035271054
        • properties: rural
          • type:rural
          • Map:20
      • 634: Feature (Point, 2 properties)
        • type:Feature
        • id:704
        • geometry: Point (-10.56, 22.02)
          • type:Point
          • coordinates: [-10.559640394747795, 22.023623600068156]
            • 0:-10.559640394747795
            • 1:22.023623600068156
        • properties: rural
          • type:rural
          • Map:60
      • 635: Feature (Point, 2 properties)
        • type:Feature
        • id:705
        • geometry: Point (-2.47, 13.02)
          • type:Point
          • coordinates: [-2.470814242265188, 13.015800430399507]
            • 0:-2.470814242265188
            • 1:13.015800430399507
        • properties: rural
          • type:rural
          • Map:40
      • 636: Feature (Point, 2 properties)
        • type:Feature
        • id:706
        • geometry: Point (30.66, -10.72)
          • type:Point
          • coordinates: [30.656436788072742, -10.715476741752699]
            • 0:30.656436788072742
            • 1:-10.715476741752699
        • properties: rural
          • type:rural
          • Map:30
      • 637: Feature (Point, 2 properties)
        • type:Feature
        • id:707
        • geometry: Point (36.22, -1.72)
          • type:Point
          • coordinates: [36.22392342531105, -1.7240024711470292]
            • 0:36.22392342531105
            • 1:-1.7240024711470292
        • properties: rural
          • type:rural
          • Map:30
      • 638: Feature (Point, 2 properties)
        • type:Feature
        • id:710
        • geometry: Point (-9.43, 19.16)
          • type:Point
          • coordinates: [-9.433798941449032, 19.163097364710055]
            • 0:-9.433798941449032
            • 1:19.163097364710055
        • properties: rural
          • type:rural
          • Map:60
      • 639: Feature (Point, 2 properties)
        • type:Feature
        • id:711
        • geometry: Point (-10.90, 25.61)
          • type:Point
          • coordinates: [-10.89992913741372, 25.611095495918182]
            • 0:-10.89992913741372
            • 1:25.611095495918182
        • properties: rural
          • type:rural
          • Map:60
      • 640: Feature (Point, 2 properties)
        • type:Feature
        • id:712
        • geometry: Point (29.66, 2.11)
          • type:Point
          • coordinates: [29.65966286574433, 2.105914280496472]
            • 0:29.65966286574433
            • 1:2.105914280496472
        • properties: rural
          • type:rural
          • Map:10
      • 641: Feature (Point, 2 properties)
        • type:Feature
        • id:713
        • geometry: Point (24.69, 4.79)
          • type:Point
          • coordinates: [24.69473332587428, 4.794565998238505]
            • 0:24.69473332587428
            • 1:4.794565998238505
        • properties: rural
          • type:rural
          • Map:10
      • 642: Feature (Point, 2 properties)
        • type:Feature
        • id:714
        • geometry: Point (-0.86, 8.81)
          • type:Point
          • coordinates: [-0.8616409624023966, 8.808346773040471]
            • 0:-0.8616409624023966
            • 1:8.808346773040471
        • properties: rural
          • type:rural
          • Map:20
      • 643: Feature (Point, 2 properties)
        • type:Feature
        • id:715
        • geometry: Point (38.48, 2.85)
          • type:Point
          • coordinates: [38.48304666549677, 2.849035741881819]
            • 0:38.48304666549677
            • 1:2.849035741881819
        • properties: rural
          • type:rural
          • Map:20
      • 644: Feature (Point, 2 properties)
        • type:Feature
        • id:717
        • geometry: Point (-9.12, 20.83)
          • type:Point
          • coordinates: [-9.119406984793766, 20.82872497565665]
            • 0:-9.119406984793766
            • 1:20.82872497565665
        • properties: rural
          • type:rural
          • Map:60
      • 645: Feature (Point, 2 properties)
        • type:Feature
        • id:718
        • geometry: Point (12.27, 4.85)
          • type:Point
          • coordinates: [12.266332043353245, 4.847603067352507]
            • 0:12.266332043353245
            • 1:4.847603067352507
        • properties: rural
          • type:rural
          • Map:10
      • 646: Feature (Point, 2 properties)
        • type:Feature
        • id:719
        • geometry: Point (45.46, -17.92)
          • type:Point
          • coordinates: [45.455175740705165, -17.923407189766408]
            • 0:45.455175740705165
            • 1:-17.923407189766408
        • properties: rural
          • type:rural
          • Map:30
      • 647: Feature (Point, 2 properties)
        • type:Feature
        • id:720
        • geometry: Point (10.36, 3.47)
          • type:Point
          • coordinates: [10.359348231450362, 3.465124917618511]
            • 0:10.359348231450362
            • 1:3.465124917618511
        • properties: rural
          • type:rural
          • Map:10
      • 648: Feature (Point, 2 properties)
        • type:Feature
        • id:721
        • geometry: Point (-14.06, 20.57)
          • type:Point
          • coordinates: [-14.057251028894727, 20.571871448263487]
            • 0:-14.057251028894727
            • 1:20.571871448263487
        • properties: rural
          • type:rural
          • Map:60
      • 649: Feature (Point, 2 properties)
        • type:Feature
        • id:722
        • geometry: Point (25.87, -0.55)
          • type:Point
          • coordinates: [25.869721487018005, -0.5497308348014892]
            • 0:25.869721487018005
            • 1:-0.5497308348014892
        • properties: rural
          • type:rural
          • Map:10
      • 650: Feature (Point, 2 properties)
        • type:Feature
        • id:723
        • geometry: Point (33.62, -3.93)
          • type:Point
          • coordinates: [33.620699779176746, -3.9267678839633353]
            • 0:33.620699779176746
            • 1:-3.9267678839633353
        • properties: rural
          • type:rural
          • Map:40
      • 651: Feature (Point, 2 properties)
        • type:Feature
        • id:724
        • geometry: Point (3.73, 15.68)
          • type:Point
          • coordinates: [3.73105532346536, 15.67593379455668]
            • 0:3.73105532346536
            • 1:15.67593379455668
        • properties: rural
          • type:rural
          • Map:30
      • 652: Feature (Point, 2 properties)
        • type:Feature
        • id:725
        • geometry: Point (-4.02, 23.18)
          • type:Point
          • coordinates: [-4.023034104906807, 23.17927459086066]
            • 0:-4.023034104906807
            • 1:23.17927459086066
        • properties: rural
          • type:rural
          • Map:60
      • 653: Feature (Point, 2 properties)
        • type:Feature
        • id:726
        • geometry: Point (31.38, -13.76)
          • type:Point
          • coordinates: [31.381987203717234, -13.762449251770557]
            • 0:31.381987203717234
            • 1:-13.762449251770557
        • properties: rural
          • type:rural
          • Map:20
      • 654: Feature (Point, 2 properties)
        • type:Feature
        • id:727
        • geometry: Point (36.50, -2.49)
          • type:Point
          • coordinates: [36.50018381602463, -2.488369570821226]
            • 0:36.50018381602463
            • 1:-2.488369570821226
        • properties: rural
          • type:rural
          • Map:20
      • 655: Feature (Point, 2 properties)
        • type:Feature
        • id:728
        • geometry: Point (13.46, 4.71)
          • type:Point
          • coordinates: [13.459542218155354, 4.706950050439382]
            • 0:13.459542218155354
            • 1:4.706950050439382
        • properties: rural
          • type:rural
          • Map:10
      • 656: Feature (Point, 2 properties)
        • type:Feature
        • id:729
        • geometry: Point (30.59, -18.38)
          • type:Point
          • coordinates: [30.59337785265815, -18.37572193256834]
            • 0:30.59337785265815
            • 1:-18.37572193256834
        • properties: rural
          • type:rural
          • Map:30
      • 657: Feature (Point, 2 properties)
        • type:Feature
        • id:730
        • geometry: Point (19.45, -2.90)
          • type:Point
          • coordinates: [19.453667368670413, -2.8989470446818517]
            • 0:19.453667368670413
            • 1:-2.8989470446818517
        • properties: rural
          • type:rural
          • Map:10
      • 658: Feature (Point, 2 properties)
        • type:Feature
        • id:731
        • geometry: Point (14.04, -10.79)
          • type:Point
          • coordinates: [14.04195585244951, -10.792172444131582]
            • 0:14.04195585244951
            • 1:-10.792172444131582
        • properties: rural
          • type:rural
          • Map:30
      • 659: Feature (Point, 2 properties)
        • type:Feature
        • id:732
        • geometry: Point (26.72, 1.81)
          • type:Point
          • coordinates: [26.724562123964116, 1.8055134192361633]
            • 0:26.724562123964116
            • 1:1.8055134192361633
        • properties: rural
          • type:rural
          • Map:10
      • 660: Feature (Point, 2 properties)
        • type:Feature
        • id:733
        • geometry: Point (0.30, 17.10)
          • type:Point
          • coordinates: [0.303012393489408, 17.097030927797565]
            • 0:0.303012393489408
            • 1:17.097030927797565
        • properties: rural
          • type:rural
          • Map:60
      • 661: Feature (Point, 2 properties)
        • type:Feature
        • id:734
        • geometry: Point (38.63, 10.31)
          • type:Point
          • coordinates: [38.632596396677634, 10.309902710822787]
            • 0:38.632596396677634
            • 1:10.309902710822787
        • properties: rural
          • type:rural
          • Map:30
      • 662: Feature (Point, 2 properties)
        • type:Feature
        • id:735
        • geometry: Point (-7.05, 21.91)
          • type:Point
          • coordinates: [-7.046865546032584, 21.906621926586947]
            • 0:-7.046865546032584
            • 1:21.906621926586947
        • properties: rural
          • type:rural
          • Map:60
      • 663: Feature (Point, 2 properties)
        • type:Feature
        • id:736
        • geometry: Point (20.03, -11.24)
          • type:Point
          • coordinates: [20.027630552388278, -11.241082500615018]
            • 0:20.027630552388278
            • 1:-11.241082500615018
        • properties: rural
          • type:rural
          • Map:10
      • 664: Feature (Point, 2 properties)
        • type:Feature
        • id:737
        • geometry: Point (36.27, 2.63)
          • type:Point
          • coordinates: [36.267176793848066, 2.626932638592048]
            • 0:36.267176793848066
            • 1:2.626932638592048
        • properties: rural
          • type:rural
          • Map:60
      • 665: Feature (Point, 2 properties)
        • type:Feature
        • id:739
        • geometry: Point (0.18, 18.44)
          • type:Point
          • coordinates: [0.17936526499513195, 18.435218736426428]
            • 0:0.17936526499513195
            • 1:18.435218736426428
        • properties: rural
          • type:rural
          • Map:60
      • 666: Feature (Point, 2 properties)
        • type:Feature
        • id:741
        • geometry: Point (23.28, -8.05)
          • type:Point
          • coordinates: [23.276801582380862, -8.054329103180738]
            • 0:23.276801582380862
            • 1:-8.054329103180738
        • properties: rural
          • type:rural
          • Map:20
      • 667: Feature (Point, 2 properties)
        • type:Feature
        • id:743
        • geometry: Point (32.08, -5.86)
          • type:Point
          • coordinates: [32.0767345686412, -5.862697269055037]
            • 0:32.0767345686412
            • 1:-5.862697269055037
        • properties: rural
          • type:rural
          • Map:30
      • 668: Feature (Point, 2 properties)
        • type:Feature
        • id:744
        • geometry: Point (11.80, 6.24)
          • type:Point
          • coordinates: [11.797831013993639, 6.24465671195111]
            • 0:11.797831013993639
            • 1:6.24465671195111
        • properties: rural
          • type:rural
          • Map:10
      • 669: Feature (Point, 2 properties)
        • type:Feature
        • id:746
        • geometry: Point (-4.68, 16.61)
          • type:Point
          • coordinates: [-4.677755188882143, 16.606696342142605]
            • 0:-4.677755188882143
            • 1:16.606696342142605
        • properties: rural
          • type:rural
          • Map:30
      • 670: Feature (Point, 2 properties)
        • type:Feature
        • id:747
        • geometry: Point (45.29, -19.18)
          • type:Point
          • coordinates: [45.28695384745516, -19.18314907552514]
            • 0:45.28695384745516
            • 1:-19.18314907552514
        • properties: rural
          • type:rural
          • Map:30
      • 671: Feature (Point, 2 properties)
        • type:Feature
        • id:748
        • geometry: Point (0.72, 21.33)
          • type:Point
          • coordinates: [0.7225813876341104, 21.333013215521134]
            • 0:0.7225813876341104
            • 1:21.333013215521134
        • properties: rural
          • type:rural
          • Map:60
      • 672: Feature (Point, 2 properties)
        • type:Feature
        • id:749
        • geometry: Point (19.32, -17.05)
          • type:Point
          • coordinates: [19.322713937116223, -17.05489089428974]
            • 0:19.322713937116223
            • 1:-17.05489089428974
        • properties: rural
          • type:rural
          • Map:20
      • 673: Feature (Point, 2 properties)
        • type:Feature
        • id:750
        • geometry: Point (-10.51, 20.66)
          • type:Point
          • coordinates: [-10.512591868380468, 20.66033590863727]
            • 0:-10.512591868380468
            • 1:20.66033590863727
        • properties: rural
          • type:rural
          • Map:60
      • 674: Feature (Point, 2 properties)
        • type:Feature
        • id:752
        • geometry: Point (-6.02, 17.30)
          • type:Point
          • coordinates: [-6.015548423460204, 17.297100456894604]
            • 0:-6.015548423460204
            • 1:17.297100456894604
        • properties: rural
          • type:rural
          • Map:60
      • 675: Feature (Point, 2 properties)
        • type:Feature
        • id:753
        • geometry: Point (29.52, -18.25)
          • type:Point
          • coordinates: [29.522763935449454, -18.25103456834103]
            • 0:29.522763935449454
            • 1:-18.25103456834103
        • properties: rural
          • type:rural
          • Map:10
      • 676: Feature (Point, 2 properties)
        • type:Feature
        • id:755
        • geometry: Point (14.36, 4.66)
          • type:Point
          • coordinates: [14.359613432477834, 4.663125988513888]
            • 0:14.359613432477834
            • 1:4.663125988513888
        • properties: rural
          • type:rural
          • Map:10
      • 677: Feature (Point, 2 properties)
        • type:Feature
        • id:756
        • geometry: Point (42.06, 6.97)
          • type:Point
          • coordinates: [42.0554588589597, 6.969604012172377]
            • 0:42.0554588589597
            • 1:6.969604012172377
        • properties: rural
          • type:rural
          • Map:20
      • 678: Feature (Point, 2 properties)
        • type:Feature
        • id:757
        • geometry: Point (24.07, 1.17)
          • type:Point
          • coordinates: [24.06585675882556, 1.170076306423509]
            • 0:24.06585675882556
            • 1:1.170076306423509
        • properties: rural
          • type:rural
          • Map:10
      • 679: Feature (Point, 2 properties)
        • type:Feature
        • id:758
        • geometry: Point (47.17, -18.81)
          • type:Point
          • coordinates: [47.16908253124671, -18.809111909221485]
            • 0:47.16908253124671
            • 1:-18.809111909221485
        • properties: rural
          • type:rural
          • Map:30
      • 680: Feature (Point, 2 properties)
        • type:Feature
        • id:759
        • geometry: Point (23.12, 0.99)
          • type:Point
          • coordinates: [23.120190729951393, 0.987538708938255]
            • 0:23.120190729951393
            • 1:0.987538708938255
        • properties: rural
          • type:rural
          • Map:10
      • 681: Feature (Point, 2 properties)
        • type:Feature
        • id:761
        • geometry: Point (28.61, -16.48)
          • type:Point
          • coordinates: [28.60851678617265, -16.476456610383558]
            • 0:28.60851678617265
            • 1:-16.476456610383558
        • properties: rural
          • type:rural
          • Map:10
      • 682: Feature (Point, 2 properties)
        • type:Feature
        • id:762
        • geometry: Point (29.95, -16.36)
          • type:Point
          • coordinates: [29.953573434871668, -16.361622263589485]
            • 0:29.953573434871668
            • 1:-16.361622263589485
        • properties: rural
          • type:rural
          • Map:10
      • 683: Feature (Point, 2 properties)
        • type:Feature
        • id:763
        • geometry: Point (22.41, 2.88)
          • type:Point
          • coordinates: [22.4098915923553, 2.8762783783860635]
            • 0:22.4098915923553
            • 1:2.8762783783860635
        • properties: rural
          • type:rural
          • Map:10
      • 684: Feature (Point, 2 properties)
        • type:Feature
        • id:764
        • geometry: Point (44.25, -18.58)
          • type:Point
          • coordinates: [44.24640546492059, -18.584102742236492]
            • 0:44.24640546492059
            • 1:-18.584102742236492
        • properties: rural
          • type:rural
          • Map:10
      • 685: Feature (Point, 2 properties)
        • type:Feature
        • id:765
        • geometry: Point (-12.74, 15.51)
          • type:Point
          • coordinates: [-12.743102621646404, 15.514150862137154]
            • 0:-12.743102621646404
            • 1:15.514150862137154
        • properties: rural
          • type:rural
          • Map:30
      • 686: Feature (Point, 2 properties)
        • type:Feature
        • id:766
        • geometry: Point (35.15, -9.24)
          • type:Point
          • coordinates: [35.14953020559899, -9.241409896010607]
            • 0:35.14953020559899
            • 1:-9.241409896010607
        • properties: rural
          • type:rural
          • Map:10
      • 687: Feature (Point, 2 properties)
        • type:Feature
        • id:767
        • geometry: Point (20.41, -8.85)
          • type:Point
          • coordinates: [20.408392181782112, -8.845703362613241]
            • 0:20.408392181782112
            • 1:-8.845703362613241
        • properties: rural
          • type:rural
          • Map:30
      • 688: Feature (Point, 2 properties)
        • type:Feature
        • id:768
        • geometry: Point (-1.43, 18.34)
          • type:Point
          • coordinates: [-1.43427099047988, 18.344371465676357]
            • 0:-1.43427099047988
            • 1:18.344371465676357
        • properties: rural
          • type:rural
          • Map:60
      • 689: Feature (Point, 2 properties)
        • type:Feature
        • id:769
        • geometry: Point (-8.97, 21.51)
          • type:Point
          • coordinates: [-8.969801594963428, 21.508677047285627]
            • 0:-8.969801594963428
            • 1:21.508677047285627
        • properties: rural
          • type:rural
          • Map:60
      • 690: Feature (Point, 2 properties)
        • type:Feature
        • id:770
        • geometry: Point (39.90, 12.55)
          • type:Point
          • coordinates: [39.90083018143957, 12.553466993161656]
            • 0:39.90083018143957
            • 1:12.553466993161656
        • properties: rural
          • type:rural
          • Map:20
      • 691: Feature (Point, 2 properties)
        • type:Feature
        • id:771
        • geometry: Point (24.71, -14.99)
          • type:Point
          • coordinates: [24.712270119102257, -14.98843016221411]
            • 0:24.712270119102257
            • 1:-14.98843016221411
        • properties: rural
          • type:rural
          • Map:10
      • 692: Feature (Point, 2 properties)
        • type:Feature
        • id:772
        • geometry: Point (37.82, -0.28)
          • type:Point
          • coordinates: [37.81838871118006, -0.28083581938015917]
            • 0:37.81838871118006
            • 1:-0.28083581938015917
        • properties: rural
          • type:rural
          • Map:30
      • 693: Feature (Point, 2 properties)
        • type:Feature
        • id:774
        • geometry: Point (-8.16, 26.07)
          • type:Point
          • coordinates: [-8.155194777731868, 26.06650802382163]
            • 0:-8.155194777731868
            • 1:26.06650802382163
        • properties: rural
          • type:rural
          • Map:60
      • 694: Feature (Point, 2 properties)
        • type:Feature
        • id:775
        • geometry: Point (26.15, -5.00)
          • type:Point
          • coordinates: [26.150957903813136, -5.001232271952668]
            • 0:26.150957903813136
            • 1:-5.001232271952668
        • properties: rural
          • type:rural
          • Map:10
      • 695: Feature (Point, 2 properties)
        • type:Feature
        • id:776
        • geometry: Point (34.45, -4.88)
          • type:Point
          • coordinates: [34.44778469713346, -4.877218951203678]
            • 0:34.44778469713346
            • 1:-4.877218951203678
        • properties: rural
          • type:rural
          • Map:20
      • 696: Feature (Point, 2 properties)
        • type:Feature
        • id:777
        • geometry: Point (-13.93, 19.13)
          • type:Point
          • coordinates: [-13.933644080971856, 19.127307514138355]
            • 0:-13.933644080971856
            • 1:19.127307514138355
        • properties: rural
          • type:rural
          • Map:60
      • 697: Feature (Point, 2 properties)
        • type:Feature
        • id:778
        • geometry: Point (-1.05, 6.95)
          • type:Point
          • coordinates: [-1.0513279244459544, 6.947000215867197]
            • 0:-1.0513279244459544
            • 1:6.947000215867197
        • properties: rural
          • type:rural
          • Map:30
      • 698: Feature (Point, 2 properties)
        • type:Feature
        • id:779
        • geometry: Point (12.31, -4.85)
          • type:Point
          • coordinates: [12.31320743658672, -4.8530538536780465]
            • 0:12.31320743658672
            • 1:-4.8530538536780465
        • properties: rural
          • type:rural
          • Map:10
      • 699: Feature (Point, 2 properties)
        • type:Feature
        • id:781
        • geometry: Point (41.75, 11.01)
          • type:Point
          • coordinates: [41.75322463892545, 11.01345439530408]
            • 0:41.75322463892545
            • 1:11.01345439530408
        • properties: rural
          • type:rural
          • Map:60
      • 700: Feature (Point, 2 properties)
        • type:Feature
        • id:782
        • geometry: Point (16.90, -9.80)
          • type:Point
          • coordinates: [16.897096962589664, -9.795379904509778]
            • 0:16.897096962589664
            • 1:-9.795379904509778
        • properties: rural
          • type:rural
          • Map:10
      • 701: Feature (Point, 2 properties)
        • type:Feature
        • id:783
        • geometry: Point (-12.64, 19.79)
          • type:Point
          • coordinates: [-12.641524442808583, 19.790246789347954]
            • 0:-12.641524442808583
            • 1:19.790246789347954
        • properties: rural
          • type:rural
          • Map:60
      • 702: Feature (Point, 2 properties)
        • type:Feature
        • id:785
        • geometry: Point (41.35, 7.84)
          • type:Point
          • coordinates: [41.35100998878552, 7.83818084196673]
            • 0:41.35100998878552
            • 1:7.83818084196673
        • properties: rural
          • type:rural
          • Map:20
      • 703: Feature (Point, 2 properties)
        • type:Feature
        • id:786
        • geometry: Point (24.46, -10.81)
          • type:Point
          • coordinates: [24.456757141604186, -10.811706802029777]
            • 0:24.456757141604186
            • 1:-10.811706802029777
        • properties: rural
          • type:rural
          • Map:10
      • 704: Feature (Point, 2 properties)
        • type:Feature
        • id:787
        • geometry: Point (36.91, 6.03)
          • type:Point
          • coordinates: [36.90630740912223, 6.033641022848401]
            • 0:36.90630740912223
            • 1:6.033641022848401
        • properties: rural
          • type:rural
          • Map:20
      • 705: Feature (Point, 2 properties)
        • type:Feature
        • id:788
        • geometry: Point (39.59, 4.27)
          • type:Point
          • coordinates: [39.588701797841665, 4.2713721759688195]
            • 0:39.588701797841665
            • 1:4.2713721759688195
        • properties: rural
          • type:rural
          • Map:20
      • 706: Feature (Point, 2 properties)
        • type:Feature
        • id:789
        • geometry: Point (-5.06, 15.32)
          • type:Point
          • coordinates: [-5.064560697619309, 15.320644151553026]
            • 0:-5.064560697619309
            • 1:15.320644151553026
        • properties: rural
          • type:rural
          • Map:30
      • 707: Feature (Point, 2 properties)
        • type:Feature
        • id:790
        • geometry: Point (32.85, -11.70)
          • type:Point
          • coordinates: [32.85428314422515, -11.704833449382155]
            • 0:32.85428314422515
            • 1:-11.704833449382155
        • properties: rural
          • type:rural
          • Map:40
      • 708: Feature (Point, 2 properties)
        • type:Feature
        • id:791
        • geometry: Point (-9.77, 20.49)
          • type:Point
          • coordinates: [-9.773331602266486, 20.49407694718625]
            • 0:-9.773331602266486
            • 1:20.49407694718625
        • properties: rural
          • type:rural
          • Map:60
      • 709: Feature (Point, 2 properties)
        • type:Feature
        • id:792
        • geometry: Point (26.15, 2.80)
          • type:Point
          • coordinates: [26.146686026910423, 2.797830819276671]
            • 0:26.146686026910423
            • 1:2.797830819276671
        • properties: rural
          • type:rural
          • Map:10
      • 710: Feature (Point, 2 properties)
        • type:Feature
        • id:793
        • geometry: Point (21.32, -4.39)
          • type:Point
          • coordinates: [21.315237899269086, -4.389870394630283]
            • 0:21.315237899269086
            • 1:-4.389870394630283
        • properties: rural
          • type:rural
          • Map:10
      • 711: Feature (Point, 2 properties)
        • type:Feature
        • id:794
        • geometry: Point (20.29, 2.75)
          • type:Point
          • coordinates: [20.292719590672647, 2.7500560302022183]
            • 0:20.292719590672647
            • 1:2.7500560302022183
        • properties: rural
          • type:rural
          • Map:10
      • 712: Feature (Point, 2 properties)
        • type:Feature
        • id:795
        • geometry: Point (27.26, -15.48)
          • type:Point
          • coordinates: [27.257789241767842, -15.481605268578084]
            • 0:27.257789241767842
            • 1:-15.481605268578084
        • properties: rural
          • type:rural
          • Map:30
      • 713: Feature (Point, 2 properties)
        • type:Feature
        • id:796
        • geometry: Point (17.67, -5.29)
          • type:Point
          • coordinates: [17.666797577976364, -5.288421826571685]
            • 0:17.666797577976364
            • 1:-5.288421826571685
        • properties: rural
          • type:rural
          • Map:30
      • 714: Feature (Point, 2 properties)
        • type:Feature
        • id:798
        • geometry: Point (45.80, -24.56)
          • type:Point
          • coordinates: [45.80496494241781, -24.555794553709124]
            • 0:45.80496494241781
            • 1:-24.555794553709124
        • properties: rural
          • type:rural
          • Map:30
      • 715: Feature (Point, 2 properties)
        • type:Feature
        • id:799
        • geometry: Point (39.20, -8.70)
          • type:Point
          • coordinates: [39.20210390139536, -8.698309807642108]
            • 0:39.20210390139536
            • 1:-8.698309807642108
        • properties: rural
          • type:rural
          • Map:10
      • 716: Feature (Point, 2 properties)
        • type:Feature
        • id:800
        • geometry: Point (46.34, -19.09)
          • type:Point
          • coordinates: [46.34460421665441, -19.087033302947013]
            • 0:46.34460421665441
            • 1:-19.087033302947013
        • properties: rural
          • type:rural
          • Map:40
      • 717: Feature (Point, 2 properties)
        • type:Feature
        • id:801
        • geometry: Point (35.76, 10.50)
          • type:Point
          • coordinates: [35.75534082588054, 10.504425217213019]
            • 0:35.75534082588054
            • 1:10.504425217213019
        • properties: rural
          • type:rural
          • Map:30
      • 718: Feature (Point, 2 properties)
        • type:Feature
        • id:802
        • geometry: Point (31.54, -2.36)
          • type:Point
          • coordinates: [31.540040251971693, -2.355177281791394]
            • 0:31.540040251971693
            • 1:-2.355177281791394
        • properties: rural
          • type:rural
          • Map:30
      • 719: Feature (Point, 2 properties)
        • type:Feature
        • id:803
        • geometry: Point (0.58, 7.02)
          • type:Point
          • coordinates: [0.5836280775689738, 7.016262442889566]
            • 0:0.5836280775689738
            • 1:7.016262442889566
        • properties: rural
          • type:rural
          • Map:10
      • 720: Feature (Point, 2 properties)
        • type:Feature
        • id:804
        • geometry: Point (23.61, -1.29)
          • type:Point
          • coordinates: [23.607100629762588, -1.2852593363207694]
            • 0:23.607100629762588
            • 1:-1.2852593363207694
        • properties: rural
          • type:rural
          • Map:10
      • 721: Feature (Point, 2 properties)
        • type:Feature
        • id:805
        • geometry: Point (26.34, -3.34)
          • type:Point
          • coordinates: [26.335073178728408, -3.3417652585682127]
            • 0:26.335073178728408
            • 1:-3.3417652585682127
        • properties: rural
          • type:rural
          • Map:10
      • 722: Feature (Point, 2 properties)
        • type:Feature
        • id:806
        • geometry: Point (44.40, -17.95)
          • type:Point
          • coordinates: [44.396621742237684, -17.94924232739761]
            • 0:44.396621742237684
            • 1:-17.94924232739761
        • properties: rural
          • type:rural
          • Map:30
      • 723: Feature (Point, 2 properties)
        • type:Feature
        • id:808
        • geometry: Point (28.10, -16.90)
          • type:Point
          • coordinates: [28.10470503841023, -16.898595091854947]
            • 0:28.10470503841023
            • 1:-16.898595091854947
        • properties: rural
          • type:rural
          • Map:80
      • 724: Feature (Point, 2 properties)
        • type:Feature
        • id:810
        • geometry: Point (16.92, -5.52)
          • type:Point
          • coordinates: [16.916027766126806, -5.520199011662715]
            • 0:16.916027766126806
            • 1:-5.520199011662715
        • properties: rural
          • type:rural
          • Map:10
      • 725: Feature (Point, 2 properties)
        • type:Feature
        • id:811
        • geometry: Point (15.31, -6.92)
          • type:Point
          • coordinates: [15.311035449122219, -6.922850207794114]
            • 0:15.311035449122219
            • 1:-6.922850207794114
        • properties: rural
          • type:rural
          • Map:30
      • 726: Feature (Point, 2 properties)
        • type:Feature
        • id:812
        • geometry: Point (38.17, -10.81)
          • type:Point
          • coordinates: [38.16834526204927, -10.811080803066]
            • 0:38.16834526204927
            • 1:-10.811080803066
        • properties: rural
          • type:rural
          • Map:30
      • 727: Feature (Point, 2 properties)
        • type:Feature
        • id:813
        • geometry: Point (18.66, -15.23)
          • type:Point
          • coordinates: [18.66213152109368, -15.229180871757977]
            • 0:18.66213152109368
            • 1:-15.229180871757977
        • properties: rural
          • type:rural
          • Map:20
      • 728: Feature (Point, 2 properties)
        • type:Feature
        • id:814
        • geometry: Point (20.18, -4.33)
          • type:Point
          • coordinates: [20.177814384907467, -4.326502282716249]
            • 0:20.177814384907467
            • 1:-4.326502282716249
        • properties: rural
          • type:rural
          • Map:10
      • 729: Feature (Point, 2 properties)
        • type:Feature
        • id:815
        • geometry: Point (-6.46, 11.45)
          • type:Point
          • coordinates: [-6.4597949475550385, 11.448111866210889]
            • 0:-6.4597949475550385
            • 1:11.448111866210889
        • properties: rural
          • type:rural
          • Map:20
      • 730: Feature (Point, 2 properties)
        • type:Feature
        • id:816
        • geometry: Point (17.34, -7.94)
          • type:Point
          • coordinates: [17.34008487708028, -7.9385502952276825]
            • 0:17.34008487708028
            • 1:-7.9385502952276825
        • properties: rural
          • type:rural
          • Map:10
      • 731: Feature (Point, 2 properties)
        • type:Feature
        • id:817
        • geometry: Point (46.79, -17.06)
          • type:Point
          • coordinates: [46.78984445499161, -17.062270841726132]
            • 0:46.78984445499161
            • 1:-17.062270841726132
        • properties: rural
          • type:rural
          • Map:60
      • 732: Feature (Point, 2 properties)
        • type:Feature
        • id:818
        • geometry: Point (35.39, -10.96)
          • type:Point
          • coordinates: [35.39103382011792, -10.962940765638756]
            • 0:35.39103382011792
            • 1:-10.962940765638756
        • properties: rural
          • type:rural
          • Map:20
      • 733: Feature (Point, 2 properties)
        • type:Feature
        • id:819
        • geometry: Point (-16.01, 20.75)
          • type:Point
          • coordinates: [-16.01053924192674, 20.75384479906986]
            • 0:-16.01053924192674
            • 1:20.75384479906986
        • properties: rural
          • type:rural
          • Map:60
      • 734: Feature (Point, 2 properties)
        • type:Feature
        • id:821
        • geometry: Point (-5.80, 19.65)
          • type:Point
          • coordinates: [-5.802173133389157, 19.65474006319373]
            • 0:-5.802173133389157
            • 1:19.65474006319373
        • properties: rural
          • type:rural
          • Map:60
      • 735: Feature (Point, 2 properties)
        • type:Feature
        • id:822
        • geometry: Point (24.04, -15.02)
          • type:Point
          • coordinates: [24.043495236760037, -15.016755519725153]
            • 0:24.043495236760037
            • 1:-15.016755519725153
        • properties: rural
          • type:rural
          • Map:30
      • 736: Feature (Point, 2 properties)
        • type:Feature
        • id:823
        • geometry: Point (-1.75, 20.93)
          • type:Point
          • coordinates: [-1.7520849471951752, 20.932499946302173]
            • 0:-1.7520849471951752
            • 1:20.932499946302173
        • properties: rural
          • type:rural
          • Map:60
      • 737: Feature (Point, 2 properties)
        • type:Feature
        • id:824
        • geometry: Point (-13.42, 17.40)
          • type:Point
          • coordinates: [-13.415831128932135, 17.401532832506206]
            • 0:-13.415831128932135
            • 1:17.401532832506206
        • properties: rural
          • type:rural
          • Map:30
      • 738: Feature (Point, 2 properties)
        • type:Feature
        • id:825
        • geometry: Point (-11.25, 16.78)
          • type:Point
          • coordinates: [-11.250643082949082, 16.775944994017596]
            • 0:-11.250643082949082
            • 1:16.775944994017596
        • properties: rural
          • type:rural
          • Map:30
      • 739: Feature (Point, 2 properties)
        • type:Feature
        • id:826
        • geometry: Point (47.97, -20.14)
          • type:Point
          • coordinates: [47.974000420371084, -20.14378501942951]
            • 0:47.974000420371084
            • 1:-20.14378501942951
        • properties: rural
          • type:rural
          • Map:10
      • 740: Feature (Point, 2 properties)
        • type:Feature
        • id:827
        • geometry: Point (25.79, 0.13)
          • type:Point
          • coordinates: [25.792983879505016, 0.1297160436294961]
            • 0:25.792983879505016
            • 1:0.1297160436294961
        • properties: rural
          • type:rural
          • Map:10
      • 741: Feature (Point, 2 properties)
        • type:Feature
        • id:828
        • geometry: Point (-13.44, 15.16)
          • type:Point
          • coordinates: [-13.440615065791041, 15.161273386946597]
            • 0:-13.440615065791041
            • 1:15.161273386946597
        • properties: rural
          • type:rural
          • Map:20
      • 742: Feature (Point, 2 properties)
        • type:Feature
        • id:829
        • geometry: Point (-7.58, 16.43)
          • type:Point
          • coordinates: [-7.580142705382321, 16.432831063471493]
            • 0:-7.580142705382321
            • 1:16.432831063471493
        • properties: rural
          • type:rural
          • Map:30
      • 743: Feature (Point, 2 properties)
        • type:Feature
        • id:830
        • geometry: Point (36.87, -9.15)
          • type:Point
          • coordinates: [36.86766358625803, -9.147474377577987]
            • 0:36.86766358625803
            • 1:-9.147474377577987
        • properties: rural
          • type:rural
          • Map:10
      • 744: Feature (Point, 2 properties)
        • type:Feature
        • id:831
        • geometry: Point (-7.20, 19.97)
          • type:Point
          • coordinates: [-7.198550133476345, 19.965546154888912]
            • 0:-7.198550133476345
            • 1:19.965546154888912
        • properties: rural
          • type:rural
          • Map:60
      • 745: Feature (Point, 2 properties)
        • type:Feature
        • id:832
        • geometry: Point (26.72, -5.39)
          • type:Point
          • coordinates: [26.724944528508768, -5.385543507394298]
            • 0:26.724944528508768
            • 1:-5.385543507394298
        • properties: rural
          • type:rural
          • Map:10
      • 746: Feature (Point, 2 properties)
        • type:Feature
        • id:834
        • geometry: Point (-5.23, 18.58)
          • type:Point
          • coordinates: [-5.229133847843988, 18.58371955266478]
            • 0:-5.229133847843988
            • 1:18.58371955266478
        • properties: rural
          • type:rural
          • Map:60
      • 747: Feature (Point, 2 properties)
        • type:Feature
        • id:835
        • geometry: Point (-11.04, 23.05)
          • type:Point
          • coordinates: [-11.042271512108128, 23.046655365923595]
            • 0:-11.042271512108128
            • 1:23.046655365923595
        • properties: rural
          • type:rural
          • Map:60
      • 748: Feature (Point, 2 properties)
        • type:Feature
        • id:836
        • geometry: Point (19.65, -1.70)
          • type:Point
          • coordinates: [19.651662906749745, -1.696264926276501]
            • 0:19.651662906749745
            • 1:-1.696264926276501
        • properties: rural
          • type:rural
          • Map:10
      • 749: Feature (Point, 2 properties)
        • type:Feature
        • id:837
        • geometry: Point (-11.73, 14.66)
          • type:Point
          • coordinates: [-11.731790180707332, 14.6612167528845]
            • 0:-11.731790180707332
            • 1:14.6612167528845
        • properties: rural
          • type:rural
          • Map:30
      • 750: Feature (Point, 2 properties)
        • type:Feature
        • id:839
        • geometry: Point (26.79, -5.40)
          • type:Point
          • coordinates: [26.790497381785194, -5.40393980666159]
            • 0:26.790497381785194
            • 1:-5.40393980666159
        • properties: rural
          • type:rural
          • Map:10
      • 751: Feature (Point, 2 properties)
        • type:Feature
        • id:841
        • geometry: Point (13.94, -5.00)
          • type:Point
          • coordinates: [13.936062291662806, -4.999385365998394]
            • 0:13.936062291662806
            • 1:-4.999385365998394
        • properties: rural
          • type:rural
          • Map:30
      • 752: Feature (Point, 2 properties)
        • type:Feature
        • id:842
        • geometry: Point (37.78, 1.07)
          • type:Point
          • coordinates: [37.78374183692148, 1.0671072571954427]
            • 0:37.78374183692148
            • 1:1.0671072571954427
        • properties: rural
          • type:rural
          • Map:20
      • 753: Feature (Point, 2 properties)
        • type:Feature
        • id:843
        • geometry: Point (31.37, -21.62)
          • type:Point
          • coordinates: [31.37038244728419, -21.620454733353213]
            • 0:31.37038244728419
            • 1:-21.620454733353213
        • properties: rural
          • type:rural
          • Map:20
      • 754: Feature (Point, 2 properties)
        • type:Feature
        • id:844
        • geometry: Point (-7.49, 14.36)
          • type:Point
          • coordinates: [-7.494803740908465, 14.357372263581333]
            • 0:-7.494803740908465
            • 1:14.357372263581333
        • properties: rural
          • type:rural
          • Map:30
      • 755: Feature (Point, 2 properties)
        • type:Feature
        • id:845
        • geometry: Point (-13.06, 18.57)
          • type:Point
          • coordinates: [-13.060666313665898, 18.565365631106655]
            • 0:-13.060666313665898
            • 1:18.565365631106655
        • properties: rural
          • type:rural
          • Map:60
      • 756: Feature (Point, 2 properties)
        • type:Feature
        • id:846
        • geometry: Point (19.36, -0.07)
          • type:Point
          • coordinates: [19.361741016196298, -0.06682482583865591]
            • 0:19.361741016196298
            • 1:-0.06682482583865591
        • properties: rural
          • type:rural
          • Map:10
      • 757: Feature (Point, 2 properties)
        • type:Feature
        • id:847
        • geometry: Point (31.00, -1.38)
          • type:Point
          • coordinates: [30.997404142174485, -1.3836213174680565]
            • 0:30.997404142174485
            • 1:-1.3836213174680565
        • properties: rural
          • type:rural
          • Map:10
      • 758: Feature (Point, 2 properties)
        • type:Feature
        • id:848
        • geometry: Point (-13.59, 20.85)
          • type:Point
          • coordinates: [-13.594670245680875, 20.84622576574813]
            • 0:-13.594670245680875
            • 1:20.84622576574813
        • properties: rural
          • type:rural
          • Map:60
      • 759: Feature (Point, 2 properties)
        • type:Feature
        • id:849
        • geometry: Point (-9.34, 23.41)
          • type:Point
          • coordinates: [-9.339240014305872, 23.41399065380269]
            • 0:-9.339240014305872
            • 1:23.41399065380269
        • properties: rural
          • type:rural
          • Map:60
      • 760: Feature (Point, 2 properties)
        • type:Feature
        • id:850
        • geometry: Point (-6.30, 24.28)
          • type:Point
          • coordinates: [-6.2996031961569185, 24.282286056812705]
            • 0:-6.2996031961569185
            • 1:24.282286056812705
        • properties: rural
          • type:rural
          • Map:60
      • 761: Feature (Point, 2 properties)
        • type:Feature
        • id:851
        • geometry: Point (33.68, -2.61)
          • type:Point
          • coordinates: [33.67784600952381, -2.609716250378117]
            • 0:33.67784600952381
            • 1:-2.609716250378117
        • properties: rural
          • type:rural
          • Map:40
      • 762: Feature (Point, 2 properties)
        • type:Feature
        • id:853
        • geometry: Point (-2.31, 19.08)
          • type:Point
          • coordinates: [-2.3062547841418066, 19.075487329426068]
            • 0:-2.3062547841418066
            • 1:19.075487329426068
        • properties: rural
          • type:rural
          • Map:60
      • 763: Feature (Point, 2 properties)
        • type:Feature
        • id:854
        • geometry: Point (22.09, -4.59)
          • type:Point
          • coordinates: [22.08996428120639, -4.587068032990255]
            • 0:22.08996428120639
            • 1:-4.587068032990255
        • properties: rural
          • type:rural
          • Map:10
      • 764: Feature (Point, 2 properties)
        • type:Feature
        • id:855
        • geometry: Point (14.87, -9.45)
          • type:Point
          • coordinates: [14.867503969724034, -9.447947800362323]
            • 0:14.867503969724034
            • 1:-9.447947800362323
        • properties: rural
          • type:rural
          • Map:30
      • 765: Feature (Point, 2 properties)
        • type:Feature
        • id:856
        • geometry: Point (47.89, -16.56)
          • type:Point
          • coordinates: [47.887513794313065, -16.555416658492362]
            • 0:47.887513794313065
            • 1:-16.555416658492362
        • properties: rural
          • type:rural
          • Map:30
      • 766: Feature (Point, 2 properties)
        • type:Feature
        • id:857
        • geometry: Point (48.38, -20.26)
          • type:Point
          • coordinates: [48.38055225547482, -20.262455252125026]
            • 0:48.38055225547482
            • 1:-20.262455252125026
        • properties: rural
          • type:rural
          • Map:10
      • 767: Feature (Point, 2 properties)
        • type:Feature
        • id:858
        • geometry: Point (30.04, -21.59)
          • type:Point
          • coordinates: [30.04354195829847, -21.58628433614635]
            • 0:30.04354195829847
            • 1:-21.58628433614635
        • properties: rural
          • type:rural
          • Map:30
      • 768: Feature (Point, 2 properties)
        • type:Feature
        • id:859
        • geometry: Point (-5.49, 21.62)
          • type:Point
          • coordinates: [-5.493251339975259, 21.616766485907693]
            • 0:-5.493251339975259
            • 1:21.616766485907693
        • properties: rural
          • type:rural
          • Map:60
      • 769: Feature (Point, 2 properties)
        • type:Feature
        • id:860
        • geometry: Point (37.31, -1.93)
          • type:Point
          • coordinates: [37.31344050325956, -1.9253749042415724]
            • 0:37.31344050325956
            • 1:-1.9253749042415724
        • properties: rural
          • type:rural
          • Map:20
      • 770: Feature (Point, 2 properties)
        • type:Feature
        • id:861
        • geometry: Point (28.57, 0.55)
          • type:Point
          • coordinates: [28.56853974368468, 0.5472893341516321]
            • 0:28.56853974368468
            • 1:0.5472893341516321
        • properties: rural
          • type:rural
          • Map:10
      • 771: Feature (Point, 2 properties)
        • type:Feature
        • id:862
        • geometry: Point (41.03, 13.90)
          • type:Point
          • coordinates: [41.03458202590067, 13.903440823999846]
            • 0:41.03458202590067
            • 1:13.903440823999846
        • properties: rural
          • type:rural
          • Map:60
      • 772: Feature (Point, 2 properties)
        • type:Feature
        • id:863
        • geometry: Point (16.28, -3.56)
          • type:Point
          • coordinates: [16.277362342198945, -3.563367518810217]
            • 0:16.277362342198945
            • 1:-3.563367518810217
        • properties: rural
          • type:rural
          • Map:30
      • 773: Feature (Point, 2 properties)
        • type:Feature
        • id:864
        • geometry: Point (34.67, 7.28)
          • type:Point
          • coordinates: [34.66990425941405, 7.280922035342462]
            • 0:34.66990425941405
            • 1:7.280922035342462
        • properties: rural
          • type:rural
          • Map:30
      • 774: Feature (Point, 2 properties)
        • type:Feature
        • id:866
        • geometry: Point (28.91, -20.59)
          • type:Point
          • coordinates: [28.906361876946598, -20.59467456088112]
            • 0:28.906361876946598
            • 1:-20.59467456088112
        • properties: rural
          • type:rural
          • Map:20
      • 775: Feature (Point, 2 properties)
        • type:Feature
        • id:867
        • geometry: Point (34.08, 4.26)
          • type:Point
          • coordinates: [34.076787536223925, 4.264818444917633]
            • 0:34.076787536223925
            • 1:4.264818444917633
        • properties: rural
          • type:rural
          • Map:10
      • 776: Feature (Point, 2 properties)
        • type:Feature
        • id:868
        • geometry: Point (40.89, -1.24)
          • type:Point
          • coordinates: [40.88854106866045, -1.2365600844374702]
            • 0:40.88854106866045
            • 1:-1.2365600844374702
        • properties: rural
          • type:rural
          • Map:20
      • 777: Feature (Point, 2 properties)
        • type:Feature
        • id:869
        • geometry: Point (-10.53, 18.61)
          • type:Point
          • coordinates: [-10.534960206181013, 18.611793014738645]
            • 0:-10.534960206181013
            • 1:18.611793014738645
        • properties: rural
          • type:rural
          • Map:60
      • 778: Feature (Point, 2 properties)
        • type:Feature
        • id:870
        • geometry: Point (-0.52, 8.80)
          • type:Point
          • coordinates: [-0.5164795962258117, 8.801773101246578]
            • 0:-0.5164795962258117
            • 1:8.801773101246578
        • properties: rural
          • type:rural
          • Map:20
      • 779: Feature (Point, 2 properties)
        • type:Feature
        • id:871
        • geometry: Point (29.51, -15.33)
          • type:Point
          • coordinates: [29.51260911566912, -15.334777560421788]
            • 0:29.51260911566912
            • 1:-15.334777560421788
        • properties: rural
          • type:rural
          • Map:10
      • 780: Feature (Point, 2 properties)
        • type:Feature
        • id:872
        • geometry: Point (0.55, 6.49)
          • type:Point
          • coordinates: [0.5501589049062743, 6.491723236586838]
            • 0:0.5501589049062743
            • 1:6.491723236586838
        • properties: rural
          • type:rural
          • Map:30
      • 781: Feature (Point, 2 properties)
        • type:Feature
        • id:873
        • geometry: Point (17.62, -14.08)
          • type:Point
          • coordinates: [17.61638463534737, -14.082928639647957]
            • 0:17.61638463534737
            • 1:-14.082928639647957
        • properties: rural
          • type:rural
          • Map:30
      • 782: Feature (Point, 2 properties)
        • type:Feature
        • id:874
        • geometry: Point (0.42, 10.23)
          • type:Point
          • coordinates: [0.4156914727298533, 10.22556512852334]
            • 0:0.4156914727298533
            • 1:10.22556512852334
        • properties: rural
          • type:rural
          • Map:40
      • 783: Feature (Point, 2 properties)
        • type:Feature
        • id:875
        • geometry: Point (31.29, -13.50)
          • type:Point
          • coordinates: [31.287601951832226, -13.502298386250462]
            • 0:31.287601951832226
            • 1:-13.502298386250462
        • properties: rural
          • type:rural
          • Map:10
      • 784: Feature (Point, 2 properties)
        • type:Feature
        • id:876
        • geometry: Point (2.92, 18.26)
          • type:Point
          • coordinates: [2.9205480638960863, 18.262284864001675]
            • 0:2.9205480638960863
            • 1:18.262284864001675
        • properties: rural
          • type:rural
          • Map:60
      • 785: Feature (Point, 2 properties)
        • type:Feature
        • id:877
        • geometry: Point (25.37, -14.20)
          • type:Point
          • coordinates: [25.373360621571347, -14.203184204541342]
            • 0:25.373360621571347
            • 1:-14.203184204541342
        • properties: rural
          • type:rural
          • Map:10
      • 786: Feature (Point, 2 properties)
        • type:Feature
        • id:878
        • geometry: Point (21.34, -1.66)
          • type:Point
          • coordinates: [21.34131385350095, -1.6613378777103152]
            • 0:21.34131385350095
            • 1:-1.6613378777103152
        • properties: rural
          • type:rural
          • Map:10
      • 787: Feature (Point, 2 properties)
        • type:Feature
        • id:880
        • geometry: Point (-0.35, 19.52)
          • type:Point
          • coordinates: [-0.35464800082510095, 19.515078381611712]
            • 0:-0.35464800082510095
            • 1:19.515078381611712
        • properties: rural
          • type:rural
          • Map:60
      • 788: Feature (Point, 2 properties)
        • type:Feature
        • id:881
        • geometry: Point (28.80, -4.62)
          • type:Point
          • coordinates: [28.796065342258906, -4.616374811209208]
            • 0:28.796065342258906
            • 1:-4.616374811209208
        • properties: rural
          • type:rural
          • Map:30
      • 789: Feature (Point, 2 properties)
        • type:Feature
        • id:882
        • geometry: Point (21.97, -0.36)
          • type:Point
          • coordinates: [21.97037799397736, -0.3567621567152472]
            • 0:21.97037799397736
            • 1:-0.3567621567152472
        • properties: rural
          • type:rural
          • Map:10
      • 790: Feature (Point, 2 properties)
        • type:Feature
        • id:883
        • geometry: Point (28.50, -10.66)
          • type:Point
          • coordinates: [28.500173998353098, -10.659003313213095]
            • 0:28.500173998353098
            • 1:-10.659003313213095
        • properties: rural
          • type:rural
          • Map:10
      • 791: Feature (Point, 2 properties)
        • type:Feature
        • id:884
        • geometry: Point (0.87, 19.36)
          • type:Point
          • coordinates: [0.8692638225048858, 19.36120925867599]
            • 0:0.8692638225048858
            • 1:19.36120925867599
        • properties: rural
          • type:rural
          • Map:60
      • 792: Feature (Point, 2 properties)
        • type:Feature
        • id:885
        • geometry: Point (34.26, -5.17)
          • type:Point
          • coordinates: [34.26040684886583, -5.173884284685715]
            • 0:34.26040684886583
            • 1:-5.173884284685715
        • properties: rural
          • type:rural
          • Map:10
      • 793: Feature (Point, 2 properties)
        • type:Feature
        • id:886
        • geometry: Point (39.11, 0.10)
          • type:Point
          • coordinates: [39.10719341977105, 0.10374829487523093]
            • 0:39.10719341977105
            • 1:0.10374829487523093
        • properties: rural
          • type:rural
          • Map:20
      • 794: Feature (Point, 2 properties)
        • type:Feature
        • id:887
        • geometry: Point (13.56, 9.82)
          • type:Point
          • coordinates: [13.559792890890664, 9.815063861665767]
            • 0:13.559792890890664
            • 1:9.815063861665767
        • properties: rural
          • type:rural
          • Map:20
      • 795: Feature (Point, 2 properties)
        • type:Feature
        • id:888
        • geometry: Point (15.59, -6.57)
          • type:Point
          • coordinates: [15.585043501873274, -6.566778842558052]
            • 0:15.585043501873274
            • 1:-6.566778842558052
        • properties: rural
          • type:rural
          • Map:30
      • 796: Feature (Point, 2 properties)
        • type:Feature
        • id:889
        • geometry: Point (-2.39, 14.04)
          • type:Point
          • coordinates: [-2.3876102621247077, 14.040526992045175]
            • 0:-2.3876102621247077
            • 1:14.040526992045175
        • properties: rural
          • type:rural
          • Map:60
      • 797: Feature (Point, 2 properties)
        • type:Feature
        • id:890
        • geometry: Point (36.46, -2.39)
          • type:Point
          • coordinates: [36.46075436401109, -2.3922322981752653]
            • 0:36.46075436401109
            • 1:-2.3922322981752653
        • properties: rural
          • type:rural
          • Map:20
      • 798: Feature (Point, 2 properties)
        • type:Feature
        • id:891
        • geometry: Point (48.27, -15.97)
          • type:Point
          • coordinates: [48.267528067761354, -15.973194375484637]
            • 0:48.267528067761354
            • 1:-15.973194375484637
        • properties: rural
          • type:rural
          • Map:10
      • 799: Feature (Point, 2 properties)
        • type:Feature
        • id:892
        • geometry: Point (21.03, -6.98)
          • type:Point
          • coordinates: [21.029797539577505, -6.979789487192193]
            • 0:21.029797539577505
            • 1:-6.979789487192193
        • properties: rural
          • type:rural
          • Map:30
      • 800: Feature (Point, 2 properties)
        • type:Feature
        • id:893
        • geometry: Point (13.42, -7.33)
          • type:Point
          • coordinates: [13.41700026439015, -7.330975228624416]
            • 0:13.41700026439015
            • 1:-7.330975228624416
        • properties: rural
          • type:rural
          • Map:30
      • 801: Feature (Point, 2 properties)
        • type:Feature
        • id:894
        • geometry: Point (1.08, 11.83)
          • type:Point
          • coordinates: [1.0790798278503837, 11.831281012813726]
            • 0:1.0790798278503837
            • 1:11.831281012813726
        • properties: rural
          • type:rural
          • Map:30
      • 802: Feature (Point, 2 properties)
        • type:Feature
        • id:895
        • geometry: Point (28.58, 3.33)
          • type:Point
          • coordinates: [28.57908130711816, 3.326316543864098]
            • 0:28.57908130711816
            • 1:3.326316543864098
        • properties: rural
          • type:rural
          • Map:10
      • 803: Feature (Point, 2 properties)
        • type:Feature
        • id:896
        • geometry: Point (28.24, -21.47)
          • type:Point
          • coordinates: [28.238682080504585, -21.473923045825288]
            • 0:28.238682080504585
            • 1:-21.473923045825288
        • properties: rural
          • type:rural
          • Map:20
      • 804: Feature (Point, 2 properties)
        • type:Feature
        • id:897
        • geometry: Point (32.05, -20.68)
          • type:Point
          • coordinates: [32.05031486016119, -20.682019793864974]
            • 0:32.05031486016119
            • 1:-20.682019793864974
        • properties: rural
          • type:rural
          • Map:20
      • 805: Feature (Point, 2 properties)
        • type:Feature
        • id:898
        • geometry: Point (41.84, 7.11)
          • type:Point
          • coordinates: [41.843407484688846, 7.108876286284949]
            • 0:41.843407484688846
            • 1:7.108876286284949
        • properties: rural
          • type:rural
          • Map:20
      • 806: Feature (Point, 2 properties)
        • type:Feature
        • id:899
        • geometry: Point (0.03, 11.89)
          • type:Point
          • coordinates: [0.027240559175730653, 11.894038734328582]
            • 0:0.027240559175730653
            • 1:11.894038734328582
        • properties: rural
          • type:rural
          • Map:20
      • 807: Feature (Point, 2 properties)
        • type:Feature
        • id:900
        • geometry: Point (23.63, -12.29)
          • type:Point
          • coordinates: [23.63084557520342, -12.290938480451958]
            • 0:23.63084557520342
            • 1:-12.290938480451958
        • properties: rural
          • type:rural
          • Map:10
      • 808: Feature (Point, 2 properties)
        • type:Feature
        • id:901
        • geometry: Point (-7.79, 16.38)
          • type:Point
          • coordinates: [-7.787352311674882, 16.378478069434514]
            • 0:-7.787352311674882
            • 1:16.378478069434514
        • properties: rural
          • type:rural
          • Map:30
      • 809: Feature (Point, 2 properties)
        • type:Feature
        • id:902
        • geometry: Point (34.78, -8.13)
          • type:Point
          • coordinates: [34.77926292005531, -8.12787283381067]
            • 0:34.77926292005531
            • 1:-8.12787283381067
        • properties: rural
          • type:rural
          • Map:20
      • 810: Feature (Point, 2 properties)
        • type:Feature
        • id:903
        • geometry: Point (35.77, 10.34)
          • type:Point
          • coordinates: [35.77136851685594, 10.342036949742134]
            • 0:35.77136851685594
            • 1:10.342036949742134
        • properties: rural
          • type:rural
          • Map:10
      • 811: Feature (Point, 2 properties)
        • type:Feature
        • id:904
        • geometry: Point (-1.92, 11.29)
          • type:Point
          • coordinates: [-1.9230560500864018, 11.293947488429113]
            • 0:-1.9230560500864018
            • 1:11.293947488429113
        • properties: rural
          • type:rural
          • Map:20
      • 812: Feature (Point, 2 properties)
        • type:Feature
        • id:905
        • geometry: Point (-11.89, 14.02)
          • type:Point
          • coordinates: [-11.894439107853369, 14.020390876283997]
            • 0:-11.894439107853369
            • 1:14.020390876283997
        • properties: rural
          • type:rural
          • Map:30
      • 813: Feature (Point, 2 properties)
        • type:Feature
        • id:907
        • geometry: Point (-10.22, 22.89)
          • type:Point
          • coordinates: [-10.21852373290295, 22.89094852849619]
            • 0:-10.21852373290295
            • 1:22.89094852849619
        • properties: rural
          • type:rural
          • Map:60
      • 814: Feature (Point, 2 properties)
        • type:Feature
        • id:908
        • geometry: Point (32.44, -12.60)
          • type:Point
          • coordinates: [32.44456967068046, -12.597926228708712]
            • 0:32.44456967068046
            • 1:-12.597926228708712
        • properties: rural
          • type:rural
          • Map:20
      • 815: Feature (Point, 2 properties)
        • type:Feature
        • id:909
        • geometry: Point (41.34, 5.65)
          • type:Point
          • coordinates: [41.344490505257205, 5.6507827327467774]
            • 0:41.344490505257205
            • 1:5.6507827327467774
        • properties: rural
          • type:rural
          • Map:10
      • 816: Feature (Point, 2 properties)
        • type:Feature
        • id:912
        • geometry: Point (18.48, -12.14)
          • type:Point
          • coordinates: [18.479368932519566, -12.135542493217562]
            • 0:18.479368932519566
            • 1:-12.135542493217562
        • properties: rural
          • type:rural
          • Map:10
      • 817: Feature (Point, 2 properties)
        • type:Feature
        • id:913
        • geometry: Point (48.20, -14.25)
          • type:Point
          • coordinates: [48.197292301204165, -14.254813530744988]
            • 0:48.197292301204165
            • 1:-14.254813530744988
        • properties: rural
          • type:rural
          • Map:30
      • 818: Feature (Point, 2 properties)
        • type:Feature
        • id:914
        • geometry: Point (25.22, 3.91)
          • type:Point
          • coordinates: [25.22420176943958, 3.909331613715917]
            • 0:25.22420176943958
            • 1:3.909331613715917
        • properties: rural
          • type:rural
          • Map:10
      • 819: Feature (Point, 2 properties)
        • type:Feature
        • id:915
        • geometry: Point (35.52, -3.59)
          • type:Point
          • coordinates: [35.51649577155473, -3.5876297187052617]
            • 0:35.51649577155473
            • 1:-3.5876297187052617
        • properties: rural
          • type:rural
          • Map:20
      • 820: Feature (Point, 2 properties)
        • type:Feature
        • id:916
        • geometry: Point (30.90, -17.63)
          • type:Point
          • coordinates: [30.899751412675233, -17.631144720875355]
            • 0:30.899751412675233
            • 1:-17.631144720875355
        • properties: rural
          • type:rural
          • Map:30
      • 821: Feature (Point, 2 properties)
        • type:Feature
        • id:917
        • geometry: Point (22.83, -7.64)
          • type:Point
          • coordinates: [22.83265492388596, -7.637195668878391]
            • 0:22.83265492388596
            • 1:-7.637195668878391
        • properties: rural
          • type:rural
          • Map:30
      • 822: Feature (Point, 2 properties)
        • type:Feature
        • id:918
        • geometry: Point (31.10, -4.39)
          • type:Point
          • coordinates: [31.103354614253462, -4.389094225849876]
            • 0:31.103354614253462
            • 1:-4.389094225849876
        • properties: rural
          • type:rural
          • Map:10
      • 823: Feature (Point, 2 properties)
        • type:Feature
        • id:919
        • geometry: Point (-8.89, 20.45)
          • type:Point
          • coordinates: [-8.88804401735363, 20.44778257393288]
            • 0:-8.88804401735363
            • 1:20.44778257393288
        • properties: rural
          • type:rural
          • Map:60
      • 824: Feature (Point, 2 properties)
        • type:Feature
        • id:920
        • geometry: Point (46.62, -24.50)
          • type:Point
          • coordinates: [46.62456274154373, -24.50408563264883]
            • 0:46.62456274154373
            • 1:-24.50408563264883
        • properties: rural
          • type:rural
          • Map:30
      • 825: Feature (Point, 2 properties)
        • type:Feature
        • id:921
        • geometry: Point (-14.46, 16.01)
          • type:Point
          • coordinates: [-14.462676729063823, 16.013860600073144]
            • 0:-14.462676729063823
            • 1:16.013860600073144
        • properties: rural
          • type:rural
          • Map:30
      • 826: Feature (Point, 2 properties)
        • type:Feature
        • id:922
        • geometry: Point (36.73, 4.66)
          • type:Point
          • coordinates: [36.73195602254863, 4.664947236573515]
            • 0:36.73195602254863
            • 1:4.664947236573515
        • properties: rural
          • type:rural
          • Map:30
      • 827: Feature (Point, 2 properties)
        • type:Feature
        • id:923
        • geometry: Point (-9.56, 5.86)
          • type:Point
          • coordinates: [-9.56490752346447, 5.857660615706969]
            • 0:-9.56490752346447
            • 1:5.857660615706969
        • properties: rural
          • type:rural
          • Map:10
      • 828: Feature (Point, 2 properties)
        • type:Feature
        • id:924
        • geometry: Point (28.46, -7.00)
          • type:Point
          • coordinates: [28.45870913464696, -7.002843307358942]
            • 0:28.45870913464696
            • 1:-7.002843307358942
        • properties: rural
          • type:rural
          • Map:10
      • 829: Feature (Point, 2 properties)
        • type:Feature
        • id:925
        • geometry: Point (16.76, -7.66)
          • type:Point
          • coordinates: [16.761801064687187, -7.658441231433006]
            • 0:16.761801064687187
            • 1:-7.658441231433006
        • properties: rural
          • type:rural
          • Map:30
      • 830: Feature (Point, 2 properties)
        • type:Feature
        • id:926
        • geometry: Point (25.89, -4.53)
          • type:Point
          • coordinates: [25.887800325565205, -4.52747976611865]
            • 0:25.887800325565205
            • 1:-4.52747976611865
        • properties: rural
          • type:rural
          • Map:10
      • 831: Feature (Point, 2 properties)
        • type:Feature
        • id:927
        • geometry: Point (36.74, -4.71)
          • type:Point
          • coordinates: [36.74042719422601, -4.7056498481156375]
            • 0:36.74042719422601
            • 1:-4.7056498481156375
        • properties: rural
          • type:rural
          • Map:20
      • 832: Feature (Point, 2 properties)
        • type:Feature
        • id:928
        • geometry: Point (21.40, -14.66)
          • type:Point
          • coordinates: [21.398692500357424, -14.659705081221404]
            • 0:21.398692500357424
            • 1:-14.659705081221404
        • properties: rural
          • type:rural
          • Map:10
      • 833: Feature (Point, 2 properties)
        • type:Feature
        • id:929
        • geometry: Point (39.22, -3.23)
          • type:Point
          • coordinates: [39.21742607229253, -3.2257358106860745]
            • 0:39.21742607229253
            • 1:-3.2257358106860745
        • properties: rural
          • type:rural
          • Map:20
      • 834: Feature (Point, 2 properties)
        • type:Feature
        • id:930
        • geometry: Point (37.14, -3.61)
          • type:Point
          • coordinates: [37.142408055581754, -3.608560013710944]
            • 0:37.142408055581754
            • 1:-3.608560013710944
        • properties: rural
          • type:rural
          • Map:20
      • 835: Feature (Point, 2 properties)
        • type:Feature
        • id:931
        • geometry: Point (17.54, -13.02)
          • type:Point
          • coordinates: [17.536397704514314, -13.020095009625601]
            • 0:17.536397704514314
            • 1:-13.020095009625601
        • properties: rural
          • type:rural
          • Map:30
      • 836: Feature (Point, 2 properties)
        • type:Feature
        • id:932
        • geometry: Point (23.17, -3.44)
          • type:Point
          • coordinates: [23.1663065132828, -3.440715143788161]
            • 0:23.1663065132828
            • 1:-3.440715143788161
        • properties: rural
          • type:rural
          • Map:10
      • 837: Feature (Point, 2 properties)
        • type:Feature
        • id:933
        • geometry: Point (31.98, -6.10)
          • type:Point
          • coordinates: [31.983178029344653, -6.095239664538428]
            • 0:31.983178029344653
            • 1:-6.095239664538428
        • properties: rural
          • type:rural
          • Map:30
      • 838: Feature (Point, 2 properties)
        • type:Feature
        • id:934
        • geometry: Point (-9.29, 12.84)
          • type:Point
          • coordinates: [-9.285910393122489, 12.839031459424723]
            • 0:-9.285910393122489
            • 1:12.839031459424723
        • properties: rural
          • type:rural
          • Map:20
      • 839: Feature (Point, 2 properties)
        • type:Feature
        • id:935
        • geometry: Point (41.07, 12.47)
          • type:Point
          • coordinates: [41.07301804756078, 12.468435434203249]
            • 0:41.07301804756078
            • 1:12.468435434203249
        • properties: rural
          • type:rural
          • Map:60
      • 840: Feature (Point, 2 properties)
        • type:Feature
        • id:936
        • geometry: Point (13.27, -14.76)
          • type:Point
          • coordinates: [13.266527714844115, -14.75610273073443]
            • 0:13.266527714844115
            • 1:-14.75610273073443
        • properties: rural
          • type:rural
          • Map:20
      • 841: Feature (Point, 2 properties)
        • type:Feature
        • id:937
        • geometry: Point (-3.91, 19.84)
          • type:Point
          • coordinates: [-3.9117790226612317, 19.839153967644563]
            • 0:-3.9117790226612317
            • 1:19.839153967644563
        • properties: rural
          • type:rural
          • Map:60
      • 842: Feature (Point, 2 properties)
        • type:Feature
        • id:938
        • geometry: Point (-6.03, 20.92)
          • type:Point
          • coordinates: [-6.033686012604764, 20.91550078324931]
            • 0:-6.033686012604764
            • 1:20.91550078324931
        • properties: rural
          • type:rural
          • Map:60
      • 843: Feature (Point, 2 properties)
        • type:Feature
        • id:939
        • geometry: Point (18.89, -3.78)
          • type:Point
          • coordinates: [18.89070485366849, -3.777009904882877]
            • 0:18.89070485366849
            • 1:-3.777009904882877
        • properties: rural
          • type:rural
          • Map:10
      • 844: Feature (Point, 2 properties)
        • type:Feature
        • id:940
        • geometry: Point (49.61, -14.31)
          • type:Point
          • coordinates: [49.60525170084944, -14.310658065411923]
            • 0:49.60525170084944
            • 1:-14.310658065411923
        • properties: rural
          • type:rural
          • Map:10
      • 845: Feature (Point, 2 properties)
        • type:Feature
        • id:941
        • geometry: Point (24.28, -16.40)
          • type:Point
          • coordinates: [24.28334150998875, -16.400697720492907]
            • 0:24.28334150998875
            • 1:-16.400697720492907
        • properties: rural
          • type:rural
          • Map:10
      • 846: Feature (Point, 2 properties)
        • type:Feature
        • id:942
        • geometry: Point (-3.02, 22.63)
          • type:Point
          • coordinates: [-3.023031661178609, 22.62578679079667]
            • 0:-3.023031661178609
            • 1:22.62578679079667
        • properties: rural
          • type:rural
          • Map:60
      • 847: Feature (Point, 2 properties)
        • type:Feature
        • id:943
        • geometry: Point (-2.56, 11.13)
          • type:Point
          • coordinates: [-2.5593212575804034, 11.134051658959391]
            • 0:-2.5593212575804034
            • 1:11.134051658959391
        • properties: rural
          • type:rural
          • Map:40
      • 848: Feature (Point, 2 properties)
        • type:Feature
        • id:944
        • geometry: Point (20.54, -16.48)
          • type:Point
          • coordinates: [20.537280078358283, -16.475271945400983]
            • 0:20.537280078358283
            • 1:-16.475271945400983
        • properties: rural
          • type:rural
          • Map:20
      • 849: Feature (Point, 2 properties)
        • type:Feature
        • id:945
        • geometry: Point (22.41, -0.87)
          • type:Point
          • coordinates: [22.40568330115625, -0.8663594379246399]
            • 0:22.40568330115625
            • 1:-0.8663594379246399
        • properties: rural
          • type:rural
          • Map:10
      • 850: Feature (Point, 2 properties)
        • type:Feature
        • id:946
        • geometry: Point (25.40, 3.75)
          • type:Point
          • coordinates: [25.403042405863093, 3.7457184796721963]
            • 0:25.403042405863093
            • 1:3.7457184796721963
        • properties: rural
          • type:rural
          • Map:10
      • 851: Feature (Point, 2 properties)
        • type:Feature
        • id:947
        • geometry: Point (25.79, -11.62)
          • type:Point
          • coordinates: [25.790794562504875, -11.61781932598587]
            • 0:25.790794562504875
            • 1:-11.61781932598587
        • properties: rural
          • type:rural
          • Map:10
      • 852: Feature (Point, 2 properties)
        • type:Feature
        • id:948
        • geometry: Point (29.76, -4.70)
          • type:Point
          • coordinates: [29.75511367827331, -4.6964818523673815]
            • 0:29.75511367827331
            • 1:-4.6964818523673815
        • properties: rural
          • type:rural
          • Map:30
      • 853: Feature (Point, 2 properties)
        • type:Feature
        • id:949
        • geometry: Point (30.71, -16.68)
          • type:Point
          • coordinates: [30.7147382570776, -16.680945749256793]
            • 0:30.7147382570776
            • 1:-16.680945749256793
        • properties: rural
          • type:rural
          • Map:40
      • 854: Feature (Point, 2 properties)
        • type:Feature
        • id:950
        • geometry: Point (21.37, -10.96)
          • type:Point
          • coordinates: [21.37491353717175, -10.957834484717308]
            • 0:21.37491353717175
            • 1:-10.957834484717308
        • properties: rural
          • type:rural
          • Map:30
      • 855: Feature (Point, 2 properties)
        • type:Feature
        • id:951
        • geometry: Point (-14.98, 19.09)
          • type:Point
          • coordinates: [-14.982003468493158, 19.086412450892244]
            • 0:-14.982003468493158
            • 1:19.086412450892244
        • properties: rural
          • type:rural
          • Map:60
      • 856: Feature (Point, 2 properties)
        • type:Feature
        • id:952
        • geometry: Point (-2.20, 20.58)
          • type:Point
          • coordinates: [-2.196021310538058, 20.577984794868513]
            • 0:-2.196021310538058
            • 1:20.577984794868513
        • properties: rural
          • type:rural
          • Map:60
      • 857: Feature (Point, 2 properties)
        • type:Feature
        • id:953
        • geometry: Point (43.98, -22.59)
          • type:Point
          • coordinates: [43.980409091710314, -22.591262115302012]
            • 0:43.980409091710314
            • 1:-22.591262115302012
        • properties: rural
          • type:rural
          • Map:30
      • 858: Feature (Point, 2 properties)
        • type:Feature
        • id:955
        • geometry: Point (12.83, 8.82)
          • type:Point
          • coordinates: [12.830059119704043, 8.822152537500305]
            • 0:12.830059119704043
            • 1:8.822152537500305
        • properties: rural
          • type:rural
          • Map:20
      • 859: Feature (Point, 2 properties)
        • type:Feature
        • id:956
        • geometry: Point (39.60, -1.36)
          • type:Point
          • coordinates: [39.59546817073192, -1.3602244870506182]
            • 0:39.59546817073192
            • 1:-1.3602244870506182
        • properties: rural
          • type:rural
          • Map:20
      • 860: Feature (Point, 2 properties)
        • type:Feature
        • id:957
        • geometry: Point (36.85, 12.26)
          • type:Point
          • coordinates: [36.849656837064224, 12.257650204349451]
            • 0:36.849656837064224
            • 1:12.257650204349451
        • properties: rural
          • type:rural
          • Map:30
      • 861: Feature (Point, 2 properties)
        • type:Feature
        • id:958
        • geometry: Point (24.65, 3.65)
          • type:Point
          • coordinates: [24.64553709016309, 3.648438480441848]
            • 0:24.64553709016309
            • 1:3.648438480441848
        • properties: rural
          • type:rural
          • Map:10
      • 862: Feature (Point, 2 properties)
        • type:Feature
        • id:959
        • geometry: Point (43.20, 5.51)
          • type:Point
          • coordinates: [43.202249392084575, 5.511930456424346]
            • 0:43.202249392084575
            • 1:5.511930456424346
        • properties: rural
          • type:rural
          • Map:20
      • 863: Feature (Point, 2 properties)
        • type:Feature
        • id:960
        • geometry: Point (40.20, 9.78)
          • type:Point
          • coordinates: [40.20047300981879, 9.776491645545354]
            • 0:40.20047300981879
            • 1:9.776491645545354
        • properties: rural
          • type:rural
          • Map:20
      • 864: Feature (Point, 2 properties)
        • type:Feature
        • id:961
        • geometry: Point (42.89, 6.77)
          • type:Point
          • coordinates: [42.89025218354401, 6.770683918564401]
            • 0:42.89025218354401
            • 1:6.770683918564401
        • properties: rural
          • type:rural
          • Map:30
      • 865: Feature (Point, 2 properties)
        • type:Feature
        • id:962
        • geometry: Point (-4.17, 16.27)
          • type:Point
          • coordinates: [-4.17267961810657, 16.27324631060447]
            • 0:-4.17267961810657
            • 1:16.27324631060447
        • properties: rural
          • type:rural
          • Map:30
      • 866: Feature (Point, 2 properties)
        • type:Feature
        • id:963
        • geometry: Point (33.23, -2.24)
          • type:Point
          • coordinates: [33.22934247516027, -2.244210198700204]
            • 0:33.22934247516027
            • 1:-2.244210198700204
        • properties: rural
          • type:rural
          • Map:80
      • 867: Feature (Point, 2 properties)
        • type:Feature
        • id:964
        • geometry: Point (36.72, 10.18)
          • type:Point
          • coordinates: [36.72385948824977, 10.178527495063243]
            • 0:36.72385948824977
            • 1:10.178527495063243
        • properties: rural
          • type:rural
          • Map:20
      • 868: Feature (Point, 2 properties)
        • type:Feature
        • id:965
        • geometry: Point (30.38, 2.29)
          • type:Point
          • coordinates: [30.379853563336553, 2.285389162049128]
            • 0:30.379853563336553
            • 1:2.285389162049128
        • properties: rural
          • type:rural
          • Map:30
      • 869: Feature (Point, 2 properties)
        • type:Feature
        • id:966
        • geometry: Point (-10.50, 22.98)
          • type:Point
          • coordinates: [-10.5010983368659, 22.983594617416117]
            • 0:-10.5010983368659
            • 1:22.983594617416117
        • properties: rural
          • type:rural
          • Map:60
      • 870: Feature (Point, 2 properties)
        • type:Feature
        • id:968
        • geometry: Point (31.53, -5.86)
          • type:Point
          • coordinates: [31.532122898242296, -5.857959327895343]
            • 0:31.532122898242296
            • 1:-5.857959327895343
        • properties: rural
          • type:rural
          • Map:30
      • 871: Feature (Point, 2 properties)
        • type:Feature
        • id:969
        • geometry: Point (30.33, 3.59)
          • type:Point
          • coordinates: [30.33335434062707, 3.590321409084121]
            • 0:30.33335434062707
            • 1:3.590321409084121
        • properties: rural
          • type:rural
          • Map:20
      • 872: Feature (Point, 2 properties)
        • type:Feature
        • id:970
        • geometry: Point (-5.32, 18.57)
          • type:Point
          • coordinates: [-5.319350458469233, 18.567310548671454]
            • 0:-5.319350458469233
            • 1:18.567310548671454
        • properties: rural
          • type:rural
          • Map:60
      • 873: Feature (Point, 2 properties)
        • type:Feature
        • id:971
        • geometry: Point (19.33, -0.47)
          • type:Point
          • coordinates: [19.332536798525435, -0.46826293966284066]
            • 0:19.332536798525435
            • 1:-0.46826293966284066
        • properties: rural
          • type:rural
          • Map:10
      • 874: Feature (Point, 2 properties)
        • type:Feature
        • id:972
        • geometry: Point (33.32, -4.10)
          • type:Point
          • coordinates: [33.318817394540666, -4.096185137250681]
            • 0:33.318817394540666
            • 1:-4.096185137250681
        • properties: rural
          • type:rural
          • Map:40
      • 875: Feature (Point, 2 properties)
        • type:Feature
        • id:973
        • geometry: Point (21.73, 3.38)
          • type:Point
          • coordinates: [21.730534048093215, 3.3820509164764654]
            • 0:21.730534048093215
            • 1:3.3820509164764654
        • properties: rural
          • type:rural
          • Map:10
      • 876: Feature (Point, 2 properties)
        • type:Feature
        • id:974
        • geometry: Point (16.79, -13.07)
          • type:Point
          • coordinates: [16.788754210775224, -13.072530639087471]
            • 0:16.788754210775224
            • 1:-13.072530639087471
        • properties: rural
          • type:rural
          • Map:40
      • 877: Feature (Point, 2 properties)
        • type:Feature
        • id:975
        • geometry: Point (-11.43, 14.96)
          • type:Point
          • coordinates: [-11.427569670913075, 14.959654579837698]
            • 0:-11.427569670913075
            • 1:14.959654579837698
        • properties: rural
          • type:rural
          • Map:30
      • 878: Feature (Point, 2 properties)
        • type:Feature
        • id:976
        • geometry: Point (34.62, 7.81)
          • type:Point
          • coordinates: [34.6158968812888, 7.810947578803621]
            • 0:34.6158968812888
            • 1:7.810947578803621
        • properties: rural
          • type:rural
          • Map:10
      • 879: Feature (Point, 2 properties)
        • type:Feature
        • id:978
        • geometry: Point (14.68, -10.02)
          • type:Point
          • coordinates: [14.675941910148278, -10.024038163785303]
            • 0:14.675941910148278
            • 1:-10.024038163785303
        • properties: rural
          • type:rural
          • Map:20
      • 880: Feature (Point, 2 properties)
        • type:Feature
        • id:980
        • geometry: Point (26.53, 2.03)
          • type:Point
          • coordinates: [26.530422137223365, 2.0299115885766668]
            • 0:26.530422137223365
            • 1:2.0299115885766668
        • properties: rural
          • type:rural
          • Map:10
      • 881: Feature (Point, 2 properties)
        • type:Feature
        • id:981
        • geometry: Point (-7.08, 13.30)
          • type:Point
          • coordinates: [-7.076933883214047, 13.299468331616346]
            • 0:-7.076933883214047
            • 1:13.299468331616346
        • properties: rural
          • type:rural
          • Map:30
      • 882: Feature (Point, 2 properties)
        • type:Feature
        • id:982
        • geometry: Point (40.88, 1.46)
          • type:Point
          • coordinates: [40.87598942432165, 1.4552553759890035]
            • 0:40.87598942432165
            • 1:1.4552553759890035
        • properties: rural
          • type:rural
          • Map:20
      • 883: Feature (Point, 2 properties)
        • type:Feature
        • id:983
        • geometry: Point (27.98, -19.36)
          • type:Point
          • coordinates: [27.98369043869579, -19.36295706082368]
            • 0:27.98369043869579
            • 1:-19.36295706082368
        • properties: rural
          • type:rural
          • Map:10
      • 884: Feature (Point, 2 properties)
        • type:Feature
        • id:984
        • geometry: Point (42.31, 7.35)
          • type:Point
          • coordinates: [42.312539561593816, 7.34979245530636]
            • 0:42.312539561593816
            • 1:7.34979245530636
        • properties: rural
          • type:rural
          • Map:20
      • 885: Feature (Point, 2 properties)
        • type:Feature
        • id:985
        • geometry: Point (25.57, -4.15)
          • type:Point
          • coordinates: [25.572209104645722, -4.146366413706124]
            • 0:25.572209104645722
            • 1:-4.146366413706124
        • properties: rural
          • type:rural
          • Map:10
      • 886: Feature (Point, 2 properties)
        • type:Feature
        • id:986
        • geometry: Point (31.71, -7.63)
          • type:Point
          • coordinates: [31.709595391886705, -7.6339171438526865]
            • 0:31.709595391886705
            • 1:-7.6339171438526865
        • properties: rural
          • type:rural
          • Map:80
      • 887: Feature (Point, 2 properties)
        • type:Feature
        • id:988
        • geometry: Point (-0.04, 20.97)
          • type:Point
          • coordinates: [-0.03603357836469486, 20.974131769496225]
            • 0:-0.03603357836469486
            • 1:20.974131769496225
        • properties: rural
          • type:rural
          • Map:60
      • 888: Feature (Point, 2 properties)
        • type:Feature
        • id:989
        • geometry: Point (46.66, 6.68)
          • type:Point
          • coordinates: [46.661201735257734, 6.6839195386004775]
            • 0:46.661201735257734
            • 1:6.6839195386004775
        • properties: rural
          • type:rural
          • Map:30
      • 889: Feature (Point, 2 properties)
        • type:Feature
        • id:990
        • geometry: Point (19.50, -11.50)
          • type:Point
          • coordinates: [19.495656438528105, -11.499113194634308]
            • 0:19.495656438528105
            • 1:-11.499113194634308
        • properties: rural
          • type:rural
          • Map:10
      • 890: Feature (Point, 2 properties)
        • type:Feature
        • id:991
        • geometry: Point (29.67, -19.55)
          • type:Point
          • coordinates: [29.67170519048358, -19.549977419457328]
            • 0:29.67170519048358
            • 1:-19.549977419457328
        • properties: rural
          • type:rural
          • Map:30
      • 891: Feature (Point, 2 properties)
        • type:Feature
        • id:992
        • geometry: Point (31.66, -11.36)
          • type:Point
          • coordinates: [31.656487572351875, -11.35843819088947]
            • 0:31.656487572351875
            • 1:-11.35843819088947
        • properties: rural
          • type:rural
          • Map:10
      • 892: Feature (Point, 2 properties)
        • type:Feature
        • id:993
        • geometry: Point (30.00, -13.39)
          • type:Point
          • coordinates: [30.00374591593553, -13.39371714681967]
            • 0:30.00374591593553
            • 1:-13.39371714681967
        • properties: rural
          • type:rural
          • Map:10
      • 893: Feature (Point, 2 properties)
        • type:Feature
        • id:994
        • geometry: Point (32.28, -4.68)
          • type:Point
          • coordinates: [32.2782265694594, -4.679950121847106]
            • 0:32.2782265694594
            • 1:-4.679950121847106
        • properties: rural
          • type:rural
          • Map:40
      • 894: Feature (Point, 2 properties)
        • type:Feature
        • id:995
        • geometry: Point (-4.69, 24.64)
          • type:Point
          • coordinates: [-4.690327037482347, 24.639558810470206]
            • 0:-4.690327037482347
            • 1:24.639558810470206
        • properties: rural
          • type:rural
          • Map:60
      • 895: Feature (Point, 2 properties)
        • type:Feature
        • id:996
        • geometry: Point (18.99, -2.83)
          • type:Point
          • coordinates: [18.993826268466734, -2.828755128202271]
            • 0:18.993826268466734
            • 1:-2.828755128202271
        • properties: rural
          • type:rural
          • Map:30
      • 896: Feature (Point, 2 properties)
        • type:Feature
        • id:998
        • geometry: Point (-9.97, 13.80)
          • type:Point
          • coordinates: [-9.969007712033218, 13.802598044501467]
            • 0:-9.969007712033218
            • 1:13.802598044501467
        • properties: rural
          • type:rural
          • Map:30
      • 897: Feature (Point, 2 properties)
        • type:Feature
        • id:999
        • geometry: Point (23.11, -15.41)
          • type:Point
          • coordinates: [23.106258937011635, -15.412675968519505]
            • 0:23.106258937011635
            • 1:-15.412675968519505
        • properties: rural
          • type:rural
          • Map:90
      • 898: Feature (Point, 2 properties)
        • type:Feature
        • id:1000
        • geometry: Point (-5.95, 19.91)
          • type:Point
          • coordinates: [-5.947628693374253, 19.913038245953114]
            • 0:-5.947628693374253
            • 1:19.913038245953114
        • properties: rural
          • type:rural
          • Map:60
      • 899: Feature (Point, 2 properties)
        • type:Feature
        • id:1001
        • geometry: Point (0.91, 7.66)
          • type:Point
          • coordinates: [0.9103465467524604, 7.661748856711388]
            • 0:0.9103465467524604
            • 1:7.661748856711388
        • properties: rural
          • type:rural
          • Map:30
      • 900: Feature (Point, 2 properties)
        • type:Feature
        • id:1002
        • geometry: Point (-8.27, 15.90)
          • type:Point
          • coordinates: [-8.26578617483555, 15.895722717838122]
            • 0:-8.26578617483555
            • 1:15.895722717838122
        • properties: rural
          • type:rural
          • Map:30
      • 901: Feature (Point, 2 properties)
        • type:Feature
        • id:1003
        • geometry: Point (-5.40, 15.06)
          • type:Point
          • coordinates: [-5.397524217454225, 15.060222853114961]
            • 0:-5.397524217454225
            • 1:15.060222853114961
        • properties: rural
          • type:rural
          • Map:30
      • 902: Feature (Point, 2 properties)
        • type:Feature
        • id:1004
        • geometry: Point (38.64, -7.50)
          • type:Point
          • coordinates: [38.639691557644426, -7.503614322700653]
            • 0:38.639691557644426
            • 1:-7.503614322700653
        • properties: rural
          • type:rural
          • Map:10
      • 903: Feature (Point, 2 properties)
        • type:Feature
        • id:1005
        • geometry: Point (33.13, -2.26)
          • type:Point
          • coordinates: [33.127071084456695, -2.257424688261521]
            • 0:33.127071084456695
            • 1:-2.257424688261521
        • properties: rural
          • type:rural
          • Map:80
      • 904: Feature (Point, 2 properties)
        • type:Feature
        • id:1006
        • geometry: Point (29.43, -6.15)
          • type:Point
          • coordinates: [29.430526390302067, -6.1455064273158575]
            • 0:29.430526390302067
            • 1:-6.1455064273158575
        • properties: rural
          • type:rural
          • Map:80
      • 905: Feature (Point, 2 properties)
        • type:Feature
        • id:1008
        • geometry: Point (21.19, -6.38)
          • type:Point
          • coordinates: [21.191869385948408, -6.380549708378208]
            • 0:21.191869385948408
            • 1:-6.380549708378208
        • properties: rural
          • type:rural
          • Map:10
      • 906: Feature (Point, 2 properties)
        • type:Feature
        • id:1009
        • geometry: Point (-10.09, 12.65)
          • type:Point
          • coordinates: [-10.088010391635441, 12.653142155482811]
            • 0:-10.088010391635441
            • 1:12.653142155482811
        • properties: rural
          • type:rural
          • Map:30
      • 907: Feature (Point, 2 properties)
        • type:Feature
        • id:1010
        • geometry: Point (22.74, -2.70)
          • type:Point
          • coordinates: [22.73881991215366, -2.6995250602797407]
            • 0:22.73881991215366
            • 1:-2.6995250602797407
        • properties: rural
          • type:rural
          • Map:10
      • 908: Feature (Point, 2 properties)
        • type:Feature
        • id:1012
        • geometry: Point (32.02, -10.07)
          • type:Point
          • coordinates: [32.02184494798135, -10.069451102279933]
            • 0:32.02184494798135
            • 1:-10.069451102279933
        • properties: rural
          • type:rural
          • Map:30
      • 909: Feature (Point, 2 properties)
        • type:Feature
        • id:1013
        • geometry: Point (-1.15, 15.63)
          • type:Point
          • coordinates: [-1.1496079249669895, 15.63193784122996]
            • 0:-1.1496079249669895
            • 1:15.63193784122996
        • properties: rural
          • type:rural
          • Map:60
      • 910: Feature (Point, 2 properties)
        • type:Feature
        • id:1014
        • geometry: Point (-14.74, 14.71)
          • type:Point
          • coordinates: [-14.738020210645383, 14.71487103085249]
            • 0:-14.738020210645383
            • 1:14.71487103085249
        • properties: rural
          • type:rural
          • Map:30
      • 911: Feature (Point, 2 properties)
        • type:Feature
        • id:1015
        • geometry: Point (38.49, 2.84)
          • type:Point
          • coordinates: [38.49333923765447, 2.844849256642993]
            • 0:38.49333923765447
            • 1:2.844849256642993
        • properties: rural
          • type:rural
          • Map:20
      • 912: Feature (Point, 2 properties)
        • type:Feature
        • id:1017
        • geometry: Point (1.44, 8.28)
          • type:Point
          • coordinates: [1.4374525144680503, 8.278693591485311]
            • 0:1.4374525144680503
            • 1:8.278693591485311
        • properties: rural
          • type:rural
          • Map:20
      • 913: Feature (Point, 2 properties)
        • type:Feature
        • id:1018
        • geometry: Point (-8.71, 13.37)
          • type:Point
          • coordinates: [-8.705093396397963, 13.370659848300596]
            • 0:-8.705093396397963
            • 1:13.370659848300596
        • properties: rural
          • type:rural
          • Map:30
      • 914: Feature (Point, 2 properties)
        • type:Feature
        • id:1019
        • geometry: Point (36.38, -1.67)
          • type:Point
          • coordinates: [36.37704221296781, -1.6723300116611077]
            • 0:36.37704221296781
            • 1:-1.6723300116611077
        • properties: rural
          • type:rural
          • Map:20
      • 915: Feature (Point, 2 properties)
        • type:Feature
        • id:1020
        • geometry: Point (14.54, -11.77)
          • type:Point
          • coordinates: [14.54289331603076, -11.765771205149386]
            • 0:14.54289331603076
            • 1:-11.765771205149386
        • properties: rural
          • type:rural
          • Map:10
      • 916: Feature (Point, 2 properties)
        • type:Feature
        • id:1023
        • geometry: Point (45.72, 7.37)
          • type:Point
          • coordinates: [45.72334427368583, 7.372392220774958]
            • 0:45.72334427368583
            • 1:7.372392220774958
        • properties: rural
          • type:rural
          • Map:30
      • 917: Feature (Point, 2 properties)
        • type:Feature
        • id:1024
        • geometry: Point (35.33, 0.84)
          • type:Point
          • coordinates: [35.32532101203179, 0.8397774475415299]
            • 0:35.32532101203179
            • 1:0.8397774475415299
        • properties: rural
          • type:rural
          • Map:40
      • 918: Feature (Point, 2 properties)
        • type:Feature
        • id:1025
        • geometry: Point (22.55, -7.91)
          • type:Point
          • coordinates: [22.550429174726318, -7.912848733007509]
            • 0:22.550429174726318
            • 1:-7.912848733007509
        • properties: rural
          • type:rural
          • Map:30
      • 919: Feature (Point, 2 properties)
        • type:Feature
        • id:1026
        • geometry: Point (-9.82, 19.22)
          • type:Point
          • coordinates: [-9.815415907956481, 19.216993603260335]
            • 0:-9.815415907956481
            • 1:19.216993603260335
        • properties: rural
          • type:rural
          • Map:60
      • 920: Feature (Point, 2 properties)
        • type:Feature
        • id:1027
        • geometry: Point (46.67, -17.48)
          • type:Point
          • coordinates: [46.674705353594824, -17.482202462011557]
            • 0:46.674705353594824
            • 1:-17.482202462011557
        • properties: rural
          • type:rural
          • Map:30
      • 921: Feature (Point, 2 properties)
        • type:Feature
        • id:1028
        • geometry: Point (48.15, -21.35)
          • type:Point
          • coordinates: [48.15305125953513, -21.35390593888025]
            • 0:48.15305125953513
            • 1:-21.35390593888025
        • properties: rural
          • type:rural
          • Map:10
      • 922: Feature (Point, 2 properties)
        • type:Feature
        • id:1029
        • geometry: Point (18.62, -10.22)
          • type:Point
          • coordinates: [18.622759831029924, -10.22181241426597]
            • 0:18.622759831029924
            • 1:-10.22181241426597
        • properties: rural
          • type:rural
          • Map:10
      • 923: Feature (Point, 2 properties)
        • type:Feature
        • id:1030
        • geometry: Point (19.60, -14.73)
          • type:Point
          • coordinates: [19.59653861866557, -14.726333024878207]
            • 0:19.59653861866557
            • 1:-14.726333024878207
        • properties: rural
          • type:rural
          • Map:30
      • 924: Feature (Point, 2 properties)
        • type:Feature
        • id:1032
        • geometry: Point (17.95, -8.12)
          • type:Point
          • coordinates: [17.948020290650728, -8.123257951821472]
            • 0:17.948020290650728
            • 1:-8.123257951821472
        • properties: rural
          • type:rural
          • Map:10
      • 925: Feature (Point, 2 properties)
        • type:Feature
        • id:1033
        • geometry: Point (29.25, -19.00)
          • type:Point
          • coordinates: [29.246352354139855, -19.0045534095664]
            • 0:29.246352354139855
            • 1:-19.0045534095664
        • properties: rural
          • type:rural
          • Map:20
      • 926: Feature (Point, 2 properties)
        • type:Feature
        • id:1034
        • geometry: Point (17.39, -12.16)
          • type:Point
          • coordinates: [17.393445702680204, -12.159448354275408]
            • 0:17.393445702680204
            • 1:-12.159448354275408
        • properties: rural
          • type:rural
          • Map:40
      • 927: Feature (Point, 2 properties)
        • type:Feature
        • id:1035
        • geometry: Point (16.68, -10.27)
          • type:Point
          • coordinates: [16.675894511070577, -10.274096539120993]
            • 0:16.675894511070577
            • 1:-10.274096539120993
        • properties: rural
          • type:rural
          • Map:20
      • 928: Feature (Point, 2 properties)
        • type:Feature
        • id:1036
        • geometry: Point (36.85, 14.16)
          • type:Point
          • coordinates: [36.85332950136324, 14.157236799264851]
            • 0:36.85332950136324
            • 1:14.157236799264851
        • properties: rural
          • type:rural
          • Map:30
      • 929: Feature (Point, 2 properties)
        • type:Feature
        • id:1037
        • geometry: Point (28.08, -2.40)
          • type:Point
          • coordinates: [28.08217350075185, -2.4036017168018184]
            • 0:28.08217350075185
            • 1:-2.4036017168018184
        • properties: rural
          • type:rural
          • Map:10
      • 930: Feature (Point, 2 properties)
        • type:Feature
        • id:1038
        • geometry: Point (0.46, 19.02)
          • type:Point
          • coordinates: [0.46020865363547253, 19.021764284199797]
            • 0:0.46020865363547253
            • 1:19.021764284199797
        • properties: rural
          • type:rural
          • Map:60
      • 931: Feature (Point, 2 properties)
        • type:Feature
        • id:1039
        • geometry: Point (27.43, -16.04)
          • type:Point
          • coordinates: [27.433427584615423, -16.03527371473499]
            • 0:27.433427584615423
            • 1:-16.03527371473499
        • properties: rural
          • type:rural
          • Map:30
      • 932: Feature (Point, 2 properties)
        • type:Feature
        • id:1040
        • geometry: Point (25.92, -6.52)
          • type:Point
          • coordinates: [25.917539634307012, -6.520054277123941]
            • 0:25.917539634307012
            • 1:-6.520054277123941
        • properties: rural
          • type:rural
          • Map:30
      • 933: Feature (Point, 2 properties)
        • type:Feature
        • id:1041
        • geometry: Point (-1.31, 20.73)
          • type:Point
          • coordinates: [-1.30749736477024, 20.734738171067633]
            • 0:-1.30749736477024
            • 1:20.734738171067633
        • properties: rural
          • type:rural
          • Map:60
      • 934: Feature (Point, 2 properties)
        • type:Feature
        • id:1042
        • geometry: Point (1.90, 16.52)
          • type:Point
          • coordinates: [1.8973093907059175, 16.52438485374372]
            • 0:1.8973093907059175
            • 1:16.52438485374372
        • properties: rural
          • type:rural
          • Map:60
      • 935: Feature (Point, 2 properties)
        • type:Feature
        • id:1043
        • geometry: Point (18.43, -7.86)
          • type:Point
          • coordinates: [18.429745022408508, -7.860340526755838]
            • 0:18.429745022408508
            • 1:-7.860340526755838
        • properties: rural
          • type:rural
          • Map:10
      • 936: Feature (Point, 2 properties)
        • type:Feature
        • id:1044
        • geometry: Point (42.64, 10.71)
          • type:Point
          • coordinates: [42.643199887263485, 10.708084462591597]
            • 0:42.643199887263485
            • 1:10.708084462591597
        • properties: rural
          • type:rural
          • Map:60
      • 937: Feature (Point, 2 properties)
        • type:Feature
        • id:1045
        • geometry: Point (38.90, -9.49)
          • type:Point
          • coordinates: [38.89710677754643, -9.490301459836065]
            • 0:38.89710677754643
            • 1:-9.490301459836065
        • properties: rural
          • type:rural
          • Map:30
      • 938: Feature (Point, 2 properties)
        • type:Feature
        • id:1046
        • geometry: Point (18.86, -1.04)
          • type:Point
          • coordinates: [18.857395020679448, -1.0386109504972059]
            • 0:18.857395020679448
            • 1:-1.0386109504972059
        • properties: rural
          • type:rural
          • Map:10
      • 939: Feature (Point, 2 properties)
        • type:Feature
        • id:1047
        • geometry: Point (26.14, -3.49)
          • type:Point
          • coordinates: [26.143947044522974, -3.487642291813366]
            • 0:26.143947044522974
            • 1:-3.487642291813366
        • properties: rural
          • type:rural
          • Map:10
      • 940: Feature (Point, 2 properties)
        • type:Feature
        • id:1048
        • geometry: Point (-9.36, 18.82)
          • type:Point
          • coordinates: [-9.36487716230336, 18.820215361728163]
            • 0:-9.36487716230336
            • 1:18.820215361728163
        • properties: rural
          • type:rural
          • Map:60
      • 941: Feature (Point, 2 properties)
        • type:Feature
        • id:1050
        • geometry: Point (-9.54, 7.84)
          • type:Point
          • coordinates: [-9.538932483480554, 7.835638687548748]
            • 0:-9.538932483480554
            • 1:7.835638687548748
        • properties: rural
          • type:rural
          • Map:10
      • 942: Feature (Point, 2 properties)
        • type:Feature
        • id:1051
        • geometry: Point (-6.79, 18.38)
          • type:Point
          • coordinates: [-6.786466331955372, 18.379309253367023]
            • 0:-6.786466331955372
            • 1:18.379309253367023
        • properties: rural
          • type:rural
          • Map:60
      • 943: Feature (Point, 2 properties)
        • type:Feature
        • id:1052
        • geometry: Point (25.82, -8.15)
          • type:Point
          • coordinates: [25.823367977942645, -8.147212333523727]
            • 0:25.823367977942645
            • 1:-8.147212333523727
        • properties: rural
          • type:rural
          • Map:10
      • 944: Feature (Point, 2 properties)
        • type:Feature
        • id:1053
        • geometry: Point (27.66, 2.36)
          • type:Point
          • coordinates: [27.65510718487425, 2.360251309153047]
            • 0:27.65510718487425
            • 1:2.360251309153047
        • properties: rural
          • type:rural
          • Map:10
      • 945: Feature (Point, 2 properties)
        • type:Feature
        • id:1054
        • geometry: Point (27.11, 3.66)
          • type:Point
          • coordinates: [27.109146158365522, 3.6570357513466836]
            • 0:27.109146158365522
            • 1:3.6570357513466836
        • properties: rural
          • type:rural
          • Map:10
      • 946: Feature (Point, 2 properties)
        • type:Feature
        • id:1055
        • geometry: Point (20.63, -2.65)
          • type:Point
          • coordinates: [20.631486369788057, -2.646079146579046]
            • 0:20.631486369788057
            • 1:-2.646079146579046
        • properties: rural
          • type:rural
          • Map:10
      • 947: Feature (Point, 2 properties)
        • type:Feature
        • id:1056
        • geometry: Point (40.53, 2.06)
          • type:Point
          • coordinates: [40.53094930122416, 2.0594587052497273]
            • 0:40.53094930122416
            • 1:2.0594587052497273
        • properties: rural
          • type:rural
          • Map:20
      • 948: Feature (Point, 2 properties)
        • type:Feature
        • id:1057
        • geometry: Point (17.19, -7.82)
          • type:Point
          • coordinates: [17.185873167485262, -7.821751705506089]
            • 0:17.185873167485262
            • 1:-7.821751705506089
        • properties: rural
          • type:rural
          • Map:30
      • 949: Feature (Point, 2 properties)
        • type:Feature
        • id:1058
        • geometry: Point (27.23, -7.00)
          • type:Point
          • coordinates: [27.225714686897497, -7.004281007444186]
            • 0:27.225714686897497
            • 1:-7.004281007444186
        • properties: rural
          • type:rural
          • Map:10
      • 950: Feature (Point, 2 properties)
        • type:Feature
        • id:1060
        • geometry: Point (21.18, -4.10)
          • type:Point
          • coordinates: [21.177064567447456, -4.095654225691379]
            • 0:21.177064567447456
            • 1:-4.095654225691379
        • properties: rural
          • type:rural
          • Map:10
      • 951: Feature (Point, 2 properties)
        • type:Feature
        • id:1061
        • geometry: Point (23.20, -4.42)
          • type:Point
          • coordinates: [23.195183952764484, -4.417292419004263]
            • 0:23.195183952764484
            • 1:-4.417292419004263
        • properties: rural
          • type:rural
          • Map:10
      • 952: Feature (Point, 2 properties)
        • type:Feature
        • id:1062
        • geometry: Point (-1.10, 19.31)
          • type:Point
          • coordinates: [-1.099686954082808, 19.311233318407723]
            • 0:-1.099686954082808
            • 1:19.311233318407723
        • properties: rural
          • type:rural
          • Map:60
      • 953: Feature (Point, 2 properties)
        • type:Feature
        • id:1063
        • geometry: Point (21.76, -1.48)
          • type:Point
          • coordinates: [21.760504690783552, -1.4836263781122547]
            • 0:21.760504690783552
            • 1:-1.4836263781122547
        • properties: rural
          • type:rural
          • Map:10
      • 954: Feature (Point, 2 properties)
        • type:Feature
        • id:1064
        • geometry: Point (21.35, 1.05)
          • type:Point
          • coordinates: [21.353335255616827, 1.0483354451219262]
            • 0:21.353335255616827
            • 1:1.0483354451219262
        • properties: rural
          • type:rural
          • Map:10
      • 955: Feature (Point, 2 properties)
        • type:Feature
        • id:1065
        • geometry: Point (36.47, 12.52)
          • type:Point
          • coordinates: [36.46774173420784, 12.516093832707288]
            • 0:36.46774173420784
            • 1:12.516093832707288
        • properties: rural
          • type:rural
          • Map:20
      • 956: Feature (Point, 2 properties)
        • type:Feature
        • id:1066
        • geometry: Point (21.70, -5.46)
          • type:Point
          • coordinates: [21.69509828018332, -5.461787071617026]
            • 0:21.69509828018332
            • 1:-5.461787071617026
        • properties: rural
          • type:rural
          • Map:10
      • 957: Feature (Point, 2 properties)
        • type:Feature
        • id:1067
        • geometry: Point (44.71, -19.22)
          • type:Point
          • coordinates: [44.70953356379425, -19.215669507902142]
            • 0:44.70953356379425
            • 1:-19.215669507902142
        • properties: rural
          • type:rural
          • Map:10
      • 958: Feature (Point, 2 properties)
        • type:Feature
        • id:1068
        • geometry: Point (18.95, -0.57)
          • type:Point
          • coordinates: [18.952483687722374, -0.5659800714046883]
            • 0:18.952483687722374
            • 1:-0.5659800714046883
        • properties: rural
          • type:rural
          • Map:10
      • 959: Feature (Point, 2 properties)
        • type:Feature
        • id:1069
        • geometry: Point (-9.47, 20.47)
          • type:Point
          • coordinates: [-9.471290637110263, 20.467954200920335]
            • 0:-9.471290637110263
            • 1:20.467954200920335
        • properties: rural
          • type:rural
          • Map:60
      • 960: Feature (Point, 2 properties)
        • type:Feature
        • id:1070
        • geometry: Point (18.65, -4.73)
          • type:Point
          • coordinates: [18.647545905232118, -4.733798637345838]
            • 0:18.647545905232118
            • 1:-4.733798637345838
        • properties: rural
          • type:rural
          • Map:20
      • 961: Feature (Point, 2 properties)
        • type:Feature
        • id:1072
        • geometry: Point (20.50, 1.86)
          • type:Point
          • coordinates: [20.49992311811388, 1.8577333248316887]
            • 0:20.49992311811388
            • 1:1.8577333248316887
        • properties: rural
          • type:rural
          • Map:10
      • 962: Feature (Point, 2 properties)
        • type:Feature
        • id:1073
        • geometry: Point (-6.53, 25.66)
          • type:Point
          • coordinates: [-6.525104255359979, 25.66225148114998]
            • 0:-6.525104255359979
            • 1:25.66225148114998
        • properties: rural
          • type:rural
          • Map:60
      • 963: Feature (Point, 2 properties)
        • type:Feature
        • id:1074
        • geometry: Point (21.71, -7.64)
          • type:Point
          • coordinates: [21.714464024730557, -7.636085927733621]
            • 0:21.714464024730557
            • 1:-7.636085927733621
        • properties: rural
          • type:rural
          • Map:30
      • 964: Feature (Point, 2 properties)
        • type:Feature
        • id:1075
        • geometry: Point (44.74, -23.71)
          • type:Point
          • coordinates: [44.744121193631955, -23.708545532454448]
            • 0:44.744121193631955
            • 1:-23.708545532454448
        • properties: rural
          • type:rural
          • Map:30
      • 965: Feature (Point, 2 properties)
        • type:Feature
        • id:1077
        • geometry: Point (-1.12, 17.30)
          • type:Point
          • coordinates: [-1.1204096218312722, 17.297058321565597]
            • 0:-1.1204096218312722
            • 1:17.297058321565597
        • properties: rural
          • type:rural
          • Map:60
      • 966: Feature (Point, 2 properties)
        • type:Feature
        • id:1078
        • geometry: Point (36.50, 2.91)
          • type:Point
          • coordinates: [36.49756872209938, 2.9064642905878784]
            • 0:36.49756872209938
            • 1:2.9064642905878784
        • properties: rural
          • type:rural
          • Map:80
      • 967: Feature (Point, 2 properties)
        • type:Feature
        • id:1080
        • geometry: Point (14.78, -13.09)
          • type:Point
          • coordinates: [14.780860287933193, -13.088457234699975]
            • 0:14.780860287933193
            • 1:-13.088457234699975
        • properties: rural
          • type:rural
          • Map:40
      • 968: Feature (Point, 2 properties)
        • type:Feature
        • id:1081
        • geometry: Point (-6.87, 18.80)
          • type:Point
          • coordinates: [-6.86907455087547, 18.795285183312803]
            • 0:-6.86907455087547
            • 1:18.795285183312803
        • properties: rural
          • type:rural
          • Map:60
      • 969: Feature (Point, 2 properties)
        • type:Feature
        • id:1082
        • geometry: Point (0.08, 11.70)
          • type:Point
          • coordinates: [0.07702844666037746, 11.698385267987783]
            • 0:0.07702844666037746
            • 1:11.698385267987783
        • properties: rural
          • type:rural
          • Map:40
      • 970: Feature (Point, 2 properties)
        • type:Feature
        • id:1083
        • geometry: Point (26.96, -17.77)
          • type:Point
          • coordinates: [26.95764430495346, -17.77067048922864]
            • 0:26.95764430495346
            • 1:-17.77067048922864
        • properties: rural
          • type:rural
          • Map:10
      • 971: Feature (Point, 2 properties)
        • type:Feature
        • id:1084
        • geometry: Point (-4.24, 13.04)
          • type:Point
          • coordinates: [-4.237931070322237, 13.04336025919878]
            • 0:-4.237931070322237
            • 1:13.04336025919878
        • properties: rural
          • type:rural
          • Map:40
      • 972: Feature (Point, 2 properties)
        • type:Feature
        • id:1085
        • geometry: Point (23.96, 1.80)
          • type:Point
          • coordinates: [23.95697472750009, 1.7965284834622117]
            • 0:23.95697472750009
            • 1:1.7965284834622117
        • properties: rural
          • type:rural
          • Map:10
      • 973: Feature (Point, 2 properties)
        • type:Feature
        • id:1086
        • geometry: Point (29.03, 4.20)
          • type:Point
          • coordinates: [29.03378465806906, 4.196322407473698]
            • 0:29.03378465806906
            • 1:4.196322407473698
        • properties: rural
          • type:rural
          • Map:10
      • 974: Feature (Point, 2 properties)
        • type:Feature
        • id:1088
        • geometry: Point (33.25, -3.32)
          • type:Point
          • coordinates: [33.25026732441997, -3.316216168197107]
            • 0:33.25026732441997
            • 1:-3.316216168197107
        • properties: rural
          • type:rural
          • Map:40
      • 975: Feature (Point, 2 properties)
        • type:Feature
        • id:1089
        • geometry: Point (17.61, -17.37)
          • type:Point
          • coordinates: [17.610383358998064, -17.369221636514478]
            • 0:17.610383358998064
            • 1:-17.369221636514478
        • properties: rural
          • type:rural
          • Map:20
      • 976: Feature (Point, 2 properties)
        • type:Feature
        • id:1090
        • geometry: Point (41.48, 5.82)
          • type:Point
          • coordinates: [41.48061425087277, 5.823213486822768]
            • 0:41.48061425087277
            • 1:5.823213486822768
        • properties: rural
          • type:rural
          • Map:10
      • 977: Feature (Point, 2 properties)
        • type:Feature
        • id:1091
        • geometry: Point (-12.36, 18.23)
          • type:Point
          • coordinates: [-12.35687030869434, 18.229118050265512]
            • 0:-12.35687030869434
            • 1:18.229118050265512
        • properties: rural
          • type:rural
          • Map:60
      • 978: Feature (Point, 2 properties)
        • type:Feature
        • id:1092
        • geometry: Point (-13.53, 20.58)
          • type:Point
          • coordinates: [-13.52558515993608, 20.576741261661528]
            • 0:-13.52558515993608
            • 1:20.576741261661528
        • properties: rural
          • type:rural
          • Map:60
      • 979: Feature (Point, 2 properties)
        • type:Feature
        • id:1094
        • geometry: Point (16.26, -4.58)
          • type:Point
          • coordinates: [16.262577592393274, -4.577672138908928]
            • 0:16.262577592393274
            • 1:-4.577672138908928
        • properties: rural
          • type:rural
          • Map:30
      • 980: Feature (Point, 2 properties)
        • type:Feature
        • id:1095
        • geometry: Point (40.35, 11.76)
          • type:Point
          • coordinates: [40.353769834785446, 11.761445670087376]
            • 0:40.353769834785446
            • 1:11.761445670087376
        • properties: rural
          • type:rural
          • Map:60
      • 981: Feature (Point, 2 properties)
        • type:Feature
        • id:1096
        • geometry: Point (-12.53, 19.77)
          • type:Point
          • coordinates: [-12.533344840623394, 19.77438488202796]
            • 0:-12.533344840623394
            • 1:19.77438488202796
        • properties: rural
          • type:rural
          • Map:60
      • 982: Feature (Point, 2 properties)
        • type:Feature
        • id:1097
        • geometry: Point (38.23, 8.83)
          • type:Point
          • coordinates: [38.228064849405854, 8.828504957888383]
            • 0:38.228064849405854
            • 1:8.828504957888383
        • properties: rural
          • type:rural
          • Map:40
      • 983: Feature (Point, 2 properties)
        • type:Feature
        • id:1098
        • geometry: Point (13.94, 3.78)
          • type:Point
          • coordinates: [13.943615906803291, 3.779884434715547]
            • 0:13.943615906803291
            • 1:3.779884434715547
        • properties: rural
          • type:rural
          • Map:10
      • 984: Feature (Point, 2 properties)
        • type:Feature
        • id:1099
        • geometry: Point (25.45, -0.90)
          • type:Point
          • coordinates: [25.445303851724972, -0.9032432931774118]
            • 0:25.445303851724972
            • 1:-0.9032432931774118
        • properties: rural
          • type:rural
          • Map:10
      • 985: Feature (Point, 2 properties)
        • type:Feature
        • id:1100
        • geometry: Point (28.34, -8.80)
          • type:Point
          • coordinates: [28.341218279458726, -8.79658985684173]
            • 0:28.341218279458726
            • 1:-8.79658985684173
        • properties: rural
          • type:rural
          • Map:10
      • 986: Feature (Point, 2 properties)
        • type:Feature
        • id:1101
        • geometry: Point (12.05, 3.61)
          • type:Point
          • coordinates: [12.04685153052375, 3.6051274880924606]
            • 0:12.04685153052375
            • 1:3.6051274880924606
        • properties: rural
          • type:rural
          • Map:10
      • 987: Feature (Point, 2 properties)
        • type:Feature
        • id:1102
        • geometry: Point (31.26, -11.55)
          • type:Point
          • coordinates: [31.2617743589602, -11.54813424485566]
            • 0:31.2617743589602
            • 1:-11.54813424485566
        • properties: rural
          • type:rural
          • Map:30
      • 988: Feature (Point, 2 properties)
        • type:Feature
        • id:1103
        • geometry: Point (-12.39, 21.37)
          • type:Point
          • coordinates: [-12.391112293288227, 21.374552349205103]
            • 0:-12.391112293288227
            • 1:21.374552349205103
        • properties: rural
          • type:rural
          • Map:60
      • 989: Feature (Point, 2 properties)
        • type:Feature
        • id:1104
        • geometry: Point (-4.39, 14.90)
          • type:Point
          • coordinates: [-4.393034875233891, 14.899323887065755]
            • 0:-4.393034875233891
            • 1:14.899323887065755
        • properties: rural
          • type:rural
          • Map:90
      • 990: Feature (Point, 2 properties)
        • type:Feature
        • id:1105
        • geometry: Point (-12.85, 21.51)
          • type:Point
          • coordinates: [-12.85454625877918, 21.508585819581302]
            • 0:-12.85454625877918
            • 1:21.508585819581302
        • properties: rural
          • type:rural
          • Map:60
      • 991: Feature (Point, 2 properties)
        • type:Feature
        • id:1106
        • geometry: Point (20.88, -7.56)
          • type:Point
          • coordinates: [20.88296899553829, -7.561046508840363]
            • 0:20.88296899553829
            • 1:-7.561046508840363
        • properties: rural
          • type:rural
          • Map:10
      • 992: Feature (Point, 2 properties)
        • type:Feature
        • id:1108
        • geometry: Point (32.77, -1.00)
          • type:Point
          • coordinates: [32.77223828143561, -1.0023256554422382]
            • 0:32.77223828143561
            • 1:-1.0023256554422382
        • properties: rural
          • type:rural
          • Map:80
      • 993: Feature (Point, 2 properties)
        • type:Feature
        • id:1109
        • geometry: Point (29.73, -18.14)
          • type:Point
          • coordinates: [29.73352727601334, -18.139957503465094]
            • 0:29.73352727601334
            • 1:-18.139957503465094
        • properties: rural
          • type:rural
          • Map:20
      • 994: Feature (Point, 2 properties)
        • type:Feature
        • id:1110
        • geometry: Point (15.68, -13.71)
          • type:Point
          • coordinates: [15.680017051416065, -13.706227668188404]
            • 0:15.680017051416065
            • 1:-13.706227668188404
        • properties: rural
          • type:rural
          • Map:10
      • 995: Feature (Point, 2 properties)
        • type:Feature
        • id:1111
        • geometry: Point (42.68, 4.32)
          • type:Point
          • coordinates: [42.67678531175396, 4.3150689498018915]
            • 0:42.67678531175396
            • 1:4.3150689498018915
        • properties: rural
          • type:rural
          • Map:30
      • 996: Feature (Point, 2 properties)
        • type:Feature
        • id:1112
        • geometry: Point (22.52, -6.99)
          • type:Point
          • coordinates: [22.515854506382865, -6.9896378440929094]
            • 0:22.515854506382865
            • 1:-6.9896378440929094
        • properties: rural
          • type:rural
          • Map:30
      • 997: Feature (Point, 2 properties)
        • type:Feature
        • id:1114
        • geometry: Point (13.32, -8.01)
          • type:Point
          • coordinates: [13.318917913203267, -8.011483682718946]
            • 0:13.318917913203267
            • 1:-8.011483682718946
        • properties: rural
          • type:rural
          • Map:10
      • 998: Feature (Point, 2 properties)
        • type:Feature
        • id:1115
        • geometry: Point (46.19, -18.54)
          • type:Point
          • coordinates: [46.18902822924036, -18.54316525193815]
            • 0:46.18902822924036
            • 1:-18.54316525193815
        • properties: rural
          • type:rural
          • Map:30
      • 999: Feature (Point, 2 properties)
        • type:Feature
        • id:1116
        • geometry: Point (-10.28, 12.42)
          • type:Point
          • coordinates: [-10.284226906004402, 12.420685825121966]
            • 0:-10.284226906004402
            • 1:12.420685825121966
        • properties: rural
          • type:rural
          • Map:20
      • 1000: Feature (Point, 2 properties)
        • type:Feature
        • id:1117
        • geometry: Point (48.07, -21.82)
          • type:Point
          • coordinates: [48.06791913880571, -21.82428015312924]
            • 0:48.06791913880571
            • 1:-21.82428015312924
        • properties: rural
          • type:rural
          • Map:30
      • 1001: Feature (Point, 2 properties)
        • type:Feature
        • id:1118
        • geometry: Point (28.84, 4.22)
          • type:Point
          • coordinates: [28.840580596994933, 4.2162003721816035]
            • 0:28.840580596994933
            • 1:4.2162003721816035
        • properties: rural
          • type:rural
          • Map:10
      • 1002: Feature (Point, 2 properties)
        • type:Feature
        • id:1119
        • geometry: Point (22.38, -16.33)
          • type:Point
          • coordinates: [22.38180668589178, -16.327435224369502]
            • 0:22.38180668589178
            • 1:-16.327435224369502
        • properties: rural
          • type:rural
          • Map:20
      • 1003: Feature (Point, 2 properties)
        • type:Feature
        • id:1120
        • geometry: Point (42.27, 7.26)
          • type:Point
          • coordinates: [42.269112593911835, 7.259052501992732]
            • 0:42.269112593911835
            • 1:7.259052501992732
        • properties: rural
          • type:rural
          • Map:30
      • 1004: Feature (Point, 2 properties)
        • type:Feature
        • id:1121
        • geometry: Point (18.18, -6.60)
          • type:Point
          • coordinates: [18.178627604138086, -6.5996192655589585]
            • 0:18.178627604138086
            • 1:-6.5996192655589585
        • properties: rural
          • type:rural
          • Map:30
      • 1005: Feature (Point, 2 properties)
        • type:Feature
        • id:1122
        • geometry: Point (21.32, -10.32)
          • type:Point
          • coordinates: [21.321522209098944, -10.323176104288265]
            • 0:21.321522209098944
            • 1:-10.323176104288265
        • properties: rural
          • type:rural
          • Map:10
      • 1006: Feature (Point, 2 properties)
        • type:Feature
        • id:1123
        • geometry: Point (26.96, -3.21)
          • type:Point
          • coordinates: [26.95689369671984, -3.2053183374978036]
            • 0:26.95689369671984
            • 1:-3.2053183374978036
        • properties: rural
          • type:rural
          • Map:10
      • 1007: Feature (Point, 2 properties)
        • type:Feature
        • id:1124
        • geometry: Point (23.91, -3.29)
          • type:Point
          • coordinates: [23.907391183927924, -3.286766483835374]
            • 0:23.907391183927924
            • 1:-3.286766483835374
        • properties: rural
          • type:rural
          • Map:10
      • 1008: Feature (Point, 2 properties)
        • type:Feature
        • id:1125
        • geometry: Point (45.95, -16.91)
          • type:Point
          • coordinates: [45.95260071976684, -16.907613680927923]
            • 0:45.95260071976684
            • 1:-16.907613680927923
        • properties: rural
          • type:rural
          • Map:10
      • 1009: Feature (Point, 2 properties)
        • type:Feature
        • id:1126
        • geometry: Point (12.75, -15.62)
          • type:Point
          • coordinates: [12.754489383498766, -15.617806677990002]
            • 0:12.754489383498766
            • 1:-15.617806677990002
        • properties: rural
          • type:rural
          • Map:20
      • 1010: Feature (Point, 2 properties)
        • type:Feature
        • id:1127
        • geometry: Point (21.96, 3.89)
          • type:Point
          • coordinates: [21.963391356517448, 3.891978041074373]
            • 0:21.963391356517448
            • 1:3.891978041074373
        • properties: rural
          • type:rural
          • Map:10
      • 1011: Feature (Point, 2 properties)
        • type:Feature
        • id:1128
        • geometry: Point (-6.22, 16.62)
          • type:Point
          • coordinates: [-6.2175113489503655, 16.620554655660396]
            • 0:-6.2175113489503655
            • 1:16.620554655660396
        • properties: rural
          • type:rural
          • Map:60
      • 1012: Feature (Point, 2 properties)
        • type:Feature
        • id:1129
        • geometry: Point (-9.79, 22.58)
          • type:Point
          • coordinates: [-9.792822659228916, 22.575407357240685]
            • 0:-9.792822659228916
            • 1:22.575407357240685
        • properties: rural
          • type:rural
          • Map:60
      • 1013: Feature (Point, 2 properties)
        • type:Feature
        • id:1130
        • geometry: Point (17.96, -7.65)
          • type:Point
          • coordinates: [17.95917209536413, -7.654146041501695]
            • 0:17.95917209536413
            • 1:-7.654146041501695
        • properties: rural
          • type:rural
          • Map:20
      • 1014: Feature (Point, 2 properties)
        • type:Feature
        • id:1131
        • geometry: Point (26.82, -14.65)
          • type:Point
          • coordinates: [26.823727987459165, -14.654831416729195]
            • 0:26.823727987459165
            • 1:-14.654831416729195
        • properties: rural
          • type:rural
          • Map:10
      • 1015: Feature (Point, 2 properties)
        • type:Feature
        • id:1132
        • geometry: Point (13.26, 9.65)
          • type:Point
          • coordinates: [13.256899612597556, 9.654748038080921]
            • 0:13.256899612597556
            • 1:9.654748038080921
        • properties: rural
          • type:rural
          • Map:40
      • 1016: Feature (Point, 2 properties)
        • type:Feature
        • id:1133
        • geometry: Point (16.00, -4.43)
          • type:Point
          • coordinates: [15.997767867036064, -4.431113125259621]
            • 0:15.997767867036064
            • 1:-4.431113125259621
        • properties: rural
          • type:rural
          • Map:10
      • 1017: Feature (Point, 2 properties)
        • type:Feature
        • id:1134
        • geometry: Point (-1.24, 8.28)
          • type:Point
          • coordinates: [-1.2423775392631338, 8.278486051406343]
            • 0:-1.2423775392631338
            • 1:8.278486051406343
        • properties: rural
          • type:rural
          • Map:30
      • 1018: Feature (Point, 2 properties)
        • type:Feature
        • id:1135
        • geometry: Point (29.59, -12.23)
          • type:Point
          • coordinates: [29.588981497428417, -12.232414025669499]
            • 0:29.588981497428417
            • 1:-12.232414025669499
        • properties: rural
          • type:rural
          • Map:30
      • 1019: Feature (Point, 2 properties)
        • type:Feature
        • id:1136
        • geometry: Point (28.75, 2.85)
          • type:Point
          • coordinates: [28.751204715556486, 2.848315015816772]
            • 0:28.751204715556486
            • 1:2.848315015816772
        • properties: rural
          • type:rural
          • Map:10
      • 1020: Feature (Point, 2 properties)
        • type:Feature
        • id:1137
        • geometry: Point (34.24, -2.26)
          • type:Point
          • coordinates: [34.24203372801135, -2.2576865082525854]
            • 0:34.24203372801135
            • 1:-2.2576865082525854
        • properties: rural
          • type:rural
          • Map:30
      • 1021: Feature (Point, 2 properties)
        • type:Feature
        • id:1138
        • geometry: Point (39.50, -9.93)
          • type:Point
          • coordinates: [39.499574022935285, -9.933426882727224]
            • 0:39.499574022935285
            • 1:-9.933426882727224
        • properties: rural
          • type:rural
          • Map:10
      • 1022: Feature (Point, 2 properties)
        • type:Feature
        • id:1139
        • geometry: Point (32.68, -17.64)
          • type:Point
          • coordinates: [32.67764999213772, -17.6378597892698]
            • 0:32.67764999213772
            • 1:-17.6378597892698
        • properties: rural
          • type:rural
          • Map:20
      • 1023: Feature (Point, 2 properties)
        • type:Feature
        • id:1140
        • geometry: Point (23.03, 1.05)
          • type:Point
          • coordinates: [23.029983050509777, 1.0475809861098573]
            • 0:23.029983050509777
            • 1:1.0475809861098573
        • properties: rural
          • type:rural
          • Map:10
      • 1024: Feature (Point, 2 properties)
        • type:Feature
        • id:1141
        • geometry: Point (24.03, -6.62)
          • type:Point
          • coordinates: [24.026980743868833, -6.620061201673519]
            • 0:24.026980743868833
            • 1:-6.620061201673519
        • properties: rural
          • type:rural
          • Map:30
      • 1025: Feature (Point, 2 properties)
        • type:Feature
        • id:1142
        • geometry: Point (-7.96, 26.11)
          • type:Point
          • coordinates: [-7.964126047589823, 26.110541883611685]
            • 0:-7.964126047589823
            • 1:26.110541883611685
        • properties: rural
          • type:rural
          • Map:60
      • 1026: Feature (Point, 2 properties)
        • type:Feature
        • id:1143
        • geometry: Point (34.15, 7.95)
          • type:Point
          • coordinates: [34.15023866829948, 7.954967944310585]
            • 0:34.15023866829948
            • 1:7.954967944310585
        • properties: rural
          • type:rural
          • Map:30
      • 1027: Feature (Point, 2 properties)
        • type:Feature
        • id:1145
        • geometry: Point (38.78, 3.99)
          • type:Point
          • coordinates: [38.777448532533846, 3.9853115936982793]
            • 0:38.777448532533846
            • 1:3.9853115936982793
        • properties: rural
          • type:rural
          • Map:20
      • 1028: Feature (Point, 2 properties)
        • type:Feature
        • id:1146
        • geometry: Point (-13.32, 15.41)
          • type:Point
          • coordinates: [-13.316767857816236, 15.414714076831139]
            • 0:-13.316767857816236
            • 1:15.414714076831139
        • properties: rural
          • type:rural
          • Map:30
      • 1029: Feature (Point, 2 properties)
        • type:Feature
        • id:1147
        • geometry: Point (47.35, -20.11)
          • type:Point
          • coordinates: [47.34571453587261, -20.113716328067216]
            • 0:47.34571453587261
            • 1:-20.113716328067216
        • properties: rural
          • type:rural
          • Map:30
      • 1030: Feature (Point, 2 properties)
        • type:Feature
        • id:1149
        • geometry: Point (-2.32, 16.90)
          • type:Point
          • coordinates: [-2.3211567478114237, 16.904487366446233]
            • 0:-2.3211567478114237
            • 1:16.904487366446233
        • properties: rural
          • type:rural
          • Map:60
      • 1031: Feature (Point, 2 properties)
        • type:Feature
        • id:1150
        • geometry: Point (16.67, -14.28)
          • type:Point
          • coordinates: [16.670719079023616, -14.275267587908456]
            • 0:16.670719079023616
            • 1:-14.275267587908456
        • properties: rural
          • type:rural
          • Map:10
      • 1032: Feature (Point, 2 properties)
        • type:Feature
        • id:1151
        • geometry: Point (-5.77, 24.72)
          • type:Point
          • coordinates: [-5.771478176258115, 24.71709166909765]
            • 0:-5.771478176258115
            • 1:24.71709166909765
        • properties: rural
          • type:rural
          • Map:60
      • 1033: Feature (Point, 2 properties)
        • type:Feature
        • id:1152
        • geometry: Point (26.48, -14.23)
          • type:Point
          • coordinates: [26.483092526655444, -14.233469027811621]
            • 0:26.483092526655444
            • 1:-14.233469027811621
        • properties: rural
          • type:rural
          • Map:10
      • 1034: Feature (Point, 2 properties)
        • type:Feature
        • id:1153
        • geometry: Point (36.29, -3.83)
          • type:Point
          • coordinates: [36.28776497439575, -3.8269447688761664]
            • 0:36.28776497439575
            • 1:-3.8269447688761664
        • properties: rural
          • type:rural
          • Map:20
      • 1035: Feature (Point, 2 properties)
        • type:Feature
        • id:1154
        • geometry: Point (-7.37, 15.34)
          • type:Point
          • coordinates: [-7.374519044049219, 15.338717907755171]
            • 0:-7.374519044049219
            • 1:15.338717907755171
        • properties: rural
          • type:rural
          • Map:30
      • 1036: Feature (Point, 2 properties)
        • type:Feature
        • id:1155
        • geometry: Point (21.72, -0.24)
          • type:Point
          • coordinates: [21.716152684365262, -0.240917626813312]
            • 0:21.716152684365262
            • 1:-0.240917626813312
        • properties: rural
          • type:rural
          • Map:10
      • 1037: Feature (Point, 2 properties)
        • type:Feature
        • id:1156
        • geometry: Point (24.92, -7.10)
          • type:Point
          • coordinates: [24.91867149808637, -7.104080638629735]
            • 0:24.91867149808637
            • 1:-7.104080638629735
        • properties: rural
          • type:rural
          • Map:30
      • 1038: Feature (Point, 2 properties)
        • type:Feature
        • id:1157
        • geometry: Point (-3.96, 14.67)
          • type:Point
          • coordinates: [-3.9627641293566573, 14.666580290330906]
            • 0:-3.9627641293566573
            • 1:14.666580290330906
        • properties: rural
          • type:rural
          • Map:30
      • 1039: Feature (Point, 2 properties)
        • type:Feature
        • id:1158
        • geometry: Point (40.44, 9.46)
          • type:Point
          • coordinates: [40.43581106781901, 9.46326988378911]
            • 0:40.43581106781901
            • 1:9.46326988378911
        • properties: rural
          • type:rural
          • Map:30
      • 1040: Feature (Point, 2 properties)
        • type:Feature
        • id:1159
        • geometry: Point (10.63, 4.81)
          • type:Point
          • coordinates: [10.630639895638781, 4.809479309706167]
            • 0:10.630639895638781
            • 1:4.809479309706167
        • properties: rural
          • type:rural
          • Map:10
      • 1041: Feature (Point, 2 properties)
        • type:Feature
        • id:1160
        • geometry: Point (29.06, -12.32)
          • type:Point
          • coordinates: [29.05556045924739, -12.32215981358055]
            • 0:29.05556045924739
            • 1:-12.32215981358055
        • properties: rural
          • type:rural
          • Map:10
      • 1042: Feature (Point, 2 properties)
        • type:Feature
        • id:1163
        • geometry: Point (40.39, 10.83)
          • type:Point
          • coordinates: [40.39052619034969, 10.83474852878554]
            • 0:40.39052619034969
            • 1:10.83474852878554
        • properties: rural
          • type:rural
          • Map:60
      • 1043: Feature (Point, 2 properties)
        • type:Feature
        • id:1164
        • geometry: Point (1.74, 17.51)
          • type:Point
          • coordinates: [1.7367072657309548, 17.507309726497677]
            • 0:1.7367072657309548
            • 1:17.507309726497677
        • properties: rural
          • type:rural
          • Map:60
      • 1044: Feature (Point, 2 properties)
        • type:Feature
        • id:1165
        • geometry: Point (-1.53, 8.14)
          • type:Point
          • coordinates: [-1.5323390686066891, 8.13970849545933]
            • 0:-1.5323390686066891
            • 1:8.13970849545933
        • properties: rural
          • type:rural
          • Map:20
      • 1045: Feature (Point, 2 properties)
        • type:Feature
        • id:1166
        • geometry: Point (-7.55, 10.59)
          • type:Point
          • coordinates: [-7.546079737288591, 10.58536116775231]
            • 0:-7.546079737288591
            • 1:10.58536116775231
        • properties: rural
          • type:rural
          • Map:10
      • 1046: Feature (Point, 2 properties)
        • type:Feature
        • id:1167
        • geometry: Point (-1.95, 17.87)
          • type:Point
          • coordinates: [-1.9486738719850716, 17.87401586032137]
            • 0:-1.9486738719850716
            • 1:17.87401586032137
        • properties: rural
          • type:rural
          • Map:60
      • 1047: Feature (Point, 2 properties)
        • type:Feature
        • id:1168
        • geometry: Point (29.91, -13.68)
          • type:Point
          • coordinates: [29.909994432063918, -13.683701457204961]
            • 0:29.909994432063918
            • 1:-13.683701457204961
        • properties: rural
          • type:rural
          • Map:10
      • 1048: Feature (Point, 2 properties)
        • type:Feature
        • id:1171
        • geometry: Point (25.92, 0.44)
          • type:Point
          • coordinates: [25.92186620059847, 0.43664106212493337]
            • 0:25.92186620059847
            • 1:0.43664106212493337
        • properties: rural
          • type:rural
          • Map:10
      • 1049: Feature (Point, 2 properties)
        • type:Feature
        • id:1172
        • geometry: Point (20.42, -6.84)
          • type:Point
          • coordinates: [20.416419923851873, -6.844135012710045]
            • 0:20.416419923851873
            • 1:-6.844135012710045
        • properties: rural
          • type:rural
          • Map:10
      • 1050: Feature (Point, 2 properties)
        • type:Feature
        • id:1173
        • geometry: Point (39.64, -3.32)
          • type:Point
          • coordinates: [39.64230691081535, -3.3154229095713896]
            • 0:39.64230691081535
            • 1:-3.3154229095713896
        • properties: rural
          • type:rural
          • Map:10
      • 1051: Feature (Point, 2 properties)
        • type:Feature
        • id:1174
        • geometry: Point (-2.04, 22.19)
          • type:Point
          • coordinates: [-2.04040265793938, 22.19355263043935]
            • 0:-2.04040265793938
            • 1:22.19355263043935
        • properties: rural
          • type:rural
          • Map:60
      • 1052: Feature (Point, 2 properties)
        • type:Feature
        • id:1175
        • geometry: Point (13.45, -14.24)
          • type:Point
          • coordinates: [13.452360032730018, -14.24383866869901]
            • 0:13.452360032730018
            • 1:-14.24383866869901
        • properties: rural
          • type:rural
          • Map:20
      • 1053: Feature (Point, 2 properties)
        • type:Feature
        • id:1176
        • geometry: Point (21.65, -1.28)
          • type:Point
          • coordinates: [21.652658748450467, -1.2843813002875748]
            • 0:21.652658748450467
            • 1:-1.2843813002875748
        • properties: rural
          • type:rural
          • Map:10
      • 1054: Feature (Point, 2 properties)
        • type:Feature
        • id:1177
        • geometry: Point (12.63, 3.38)
          • type:Point
          • coordinates: [12.632540175595034, 3.3764318711785384]
            • 0:12.632540175595034
            • 1:3.3764318711785384
        • properties: rural
          • type:rural
          • Map:10
      • 1055: Feature (Point, 2 properties)
        • type:Feature
        • id:1178
        • geometry: Point (25.29, -11.18)
          • type:Point
          • coordinates: [25.294113380589593, -11.179588773096762]
            • 0:25.294113380589593
            • 1:-11.179588773096762
        • properties: rural
          • type:rural
          • Map:10
      • 1056: Feature (Point, 2 properties)
        • type:Feature
        • id:1179
        • geometry: Point (38.38, 9.71)
          • type:Point
          • coordinates: [38.37547895282485, 9.71242417043745]
            • 0:38.37547895282485
            • 1:9.71242417043745
        • properties: rural
          • type:rural
          • Map:20
      • 1057: Feature (Point, 2 properties)
        • type:Feature
        • id:1180
        • geometry: Point (33.64, -3.17)
          • type:Point
          • coordinates: [33.64463296959049, -3.166185941903506]
            • 0:33.64463296959049
            • 1:-3.166185941903506
        • properties: rural
          • type:rural
          • Map:40
      • 1058: Feature (Point, 2 properties)
        • type:Feature
        • id:1181
        • geometry: Point (-8.06, 4.78)
          • type:Point
          • coordinates: [-8.057336301557898, 4.777601850600277]
            • 0:-8.057336301557898
            • 1:4.777601850600277
        • properties: rural
          • type:rural
          • Map:10
      • 1059: Feature (Point, 2 properties)
        • type:Feature
        • id:1182
        • geometry: Point (18.37, -9.30)
          • type:Point
          • coordinates: [18.368708936809067, -9.303925234486279]
            • 0:18.368708936809067
            • 1:-9.303925234486279
        • properties: rural
          • type:rural
          • Map:10
      • 1060: Feature (Point, 2 properties)
        • type:Feature
        • id:1183
        • geometry: Point (28.89, -20.74)
          • type:Point
          • coordinates: [28.894786783029097, -20.741797224846366]
            • 0:28.894786783029097
            • 1:-20.741797224846366
        • properties: rural
          • type:rural
          • Map:20
      • 1061: Feature (Point, 2 properties)
        • type:Feature
        • id:1184
        • geometry: Point (-10.11, 7.09)
          • type:Point
          • coordinates: [-10.108260632186605, 7.088938284391217]
            • 0:-10.108260632186605
            • 1:7.088938284391217
        • properties: rural
          • type:rural
          • Map:10
      • 1062: Feature (Point, 2 properties)
        • type:Feature
        • id:1185
        • geometry: Point (-6.36, 18.82)
          • type:Point
          • coordinates: [-6.359787506654175, 18.82065457682063]
            • 0:-6.359787506654175
            • 1:18.82065457682063
        • properties: rural
          • type:rural
          • Map:60
      • 1063: Feature (Point, 2 properties)
        • type:Feature
        • id:1186
        • geometry: Point (13.38, 3.38)
          • type:Point
          • coordinates: [13.382870872407457, 3.376624679155795]
            • 0:13.382870872407457
            • 1:3.376624679155795
        • properties: rural
          • type:rural
          • Map:10
      • 1064: Feature (Point, 2 properties)
        • type:Feature
        • id:1187
        • geometry: Point (-7.86, 24.18)
          • type:Point
          • coordinates: [-7.864957725495785, 24.175914124766237]
            • 0:-7.864957725495785
            • 1:24.175914124766237
        • properties: rural
          • type:rural
          • Map:60
      • 1065: Feature (Point, 2 properties)
        • type:Feature
        • id:1188
        • geometry: Point (40.27, 3.77)
          • type:Point
          • coordinates: [40.26818823557852, 3.765794236676492]
            • 0:40.26818823557852
            • 1:3.765794236676492
        • properties: rural
          • type:rural
          • Map:20
      • 1066: Feature (Point, 2 properties)
        • type:Feature
        • id:1189
        • geometry: Point (19.47, -7.13)
          • type:Point
          • coordinates: [19.47422359863002, -7.130415819871492]
            • 0:19.47422359863002
            • 1:-7.130415819871492
        • properties: rural
          • type:rural
          • Map:30
      • 1067: Feature (Point, 2 properties)
        • type:Feature
        • id:1190
        • geometry: Point (27.38, -4.09)
          • type:Point
          • coordinates: [27.381265868140044, -4.086894656257987]
            • 0:27.381265868140044
            • 1:-4.086894656257987
        • properties: rural
          • type:rural
          • Map:10
      • 1068: Feature (Point, 2 properties)
        • type:Feature
        • id:1191
        • geometry: Point (-14.40, 19.58)
          • type:Point
          • coordinates: [-14.395436466255028, 19.581694603640955]
            • 0:-14.395436466255028
            • 1:19.581694603640955
        • properties: rural
          • type:rural
          • Map:60
      • 1069: Feature (Point, 2 properties)
        • type:Feature
        • id:1192
        • geometry: Point (19.32, 3.48)
          • type:Point
          • coordinates: [19.31526037656233, 3.483566939794485]
            • 0:19.31526037656233
            • 1:3.483566939794485
        • properties: rural
          • type:rural
          • Map:10
      • 1070: Feature (Point, 2 properties)
        • type:Feature
        • id:1193
        • geometry: Point (-7.85, 12.88)
          • type:Point
          • coordinates: [-7.849686656110948, 12.87727251784187]
            • 0:-7.849686656110948
            • 1:12.87727251784187
        • properties: rural
          • type:rural
          • Map:30
      • 1071: Feature (Point, 2 properties)
        • type:Feature
        • id:1194
        • geometry: Point (18.36, -7.27)
          • type:Point
          • coordinates: [18.357269721808084, -7.26600738324091]
            • 0:18.357269721808084
            • 1:-7.26600738324091
        • properties: rural
          • type:rural
          • Map:20
      • 1072: Feature (Point, 2 properties)
        • type:Feature
        • id:1195
        • geometry: Point (16.63, -8.54)
          • type:Point
          • coordinates: [16.6315268554092, -8.53727111161745]
            • 0:16.6315268554092
            • 1:-8.53727111161745
        • properties: rural
          • type:rural
          • Map:30
      • 1073: Feature (Point, 2 properties)
        • type:Feature
        • id:1196
        • geometry: Point (48.02, -19.66)
          • type:Point
          • coordinates: [48.01609726657993, -19.65775153481257]
            • 0:48.01609726657993
            • 1:-19.65775153481257
        • properties: rural
          • type:rural
          • Map:30
      • 1074: Feature (Point, 2 properties)
        • type:Feature
        • id:1197
        • geometry: Point (46.46, -16.24)
          • type:Point
          • coordinates: [46.46458356846458, -16.235740552184286]
            • 0:46.46458356846458
            • 1:-16.235740552184286
        • properties: rural
          • type:rural
          • Map:30
      • 1075: Feature (Point, 2 properties)
        • type:Feature
        • id:1198
        • geometry: Point (34.99, -5.46)
          • type:Point
          • coordinates: [34.986749194429045, -5.459304675528648]
            • 0:34.986749194429045
            • 1:-5.459304675528648
        • properties: rural
          • type:rural
          • Map:40
      • 1076: Feature (Point, 2 properties)
        • type:Feature
        • id:1199
        • geometry: Point (-11.08, 21.96)
          • type:Point
          • coordinates: [-11.082266952804284, 21.955949196133695]
            • 0:-11.082266952804284
            • 1:21.955949196133695
        • properties: rural
          • type:rural
          • Map:60
      • 1077: Feature (Point, 2 properties)
        • type:Feature
        • id:1200
        • geometry: Point (26.88, -1.84)
          • type:Point
          • coordinates: [26.884468202696368, -1.842383062331508]
            • 0:26.884468202696368
            • 1:-1.842383062331508
        • properties: rural
          • type:rural
          • Map:10
      • 1078: Feature (Point, 2 properties)
        • type:Feature
        • id:1201
        • geometry: Point (12.67, 3.41)
          • type:Point
          • coordinates: [12.665666090505235, 3.4095203543965518]
            • 0:12.665666090505235
            • 1:3.4095203543965518
        • properties: rural
          • type:rural
          • Map:10
      • 1079: Feature (Point, 2 properties)
        • type:Feature
        • id:1202
        • geometry: Point (26.26, -16.67)
          • type:Point
          • coordinates: [26.2581285549109, -16.671381953105705]
            • 0:26.2581285549109
            • 1:-16.671381953105705
        • properties: rural
          • type:rural
          • Map:20
      • 1080: Feature (Point, 2 properties)
        • type:Feature
        • id:1203
        • geometry: Point (-10.76, 16.55)
          • type:Point
          • coordinates: [-10.759411788185584, 16.55343473770001]
            • 0:-10.759411788185584
            • 1:16.55343473770001
        • properties: rural
          • type:rural
          • Map:30
      • 1081: Feature (Point, 2 properties)
        • type:Feature
        • id:1204
        • geometry: Point (40.35, 3.46)
          • type:Point
          • coordinates: [40.34552570049631, 3.4556418900438137]
            • 0:40.34552570049631
            • 1:3.4556418900438137
        • properties: rural
          • type:rural
          • Map:20
      • 1082: Feature (Point, 2 properties)
        • type:Feature
        • id:1205
        • geometry: Point (46.33, -19.49)
          • type:Point
          • coordinates: [46.33496543484983, -19.492608051980184]
            • 0:46.33496543484983
            • 1:-19.492608051980184
        • properties: rural
          • type:rural
          • Map:40
      • 1083: Feature (Point, 2 properties)
        • type:Feature
        • id:1206
        • geometry: Point (37.79, 11.87)
          • type:Point
          • coordinates: [37.785788467186634, 11.873074518817829]
            • 0:37.785788467186634
            • 1:11.873074518817829
        • properties: rural
          • type:rural
          • Map:40
      • 1084: Feature (Point, 2 properties)
        • type:Feature
        • id:1207
        • geometry: Point (38.16, -0.26)
          • type:Point
          • coordinates: [38.155808704009566, -0.2641064939060837]
            • 0:38.155808704009566
            • 1:-0.2641064939060837
        • properties: rural
          • type:rural
          • Map:40
      • 1085: Feature (Point, 2 properties)
        • type:Feature
        • id:1208
        • geometry: Point (19.21, -11.18)
          • type:Point
          • coordinates: [19.206908018319968, -11.18020749024524]
            • 0:19.206908018319968
            • 1:-11.18020749024524
        • properties: rural
          • type:rural
          • Map:10
      • 1086: Feature (Point, 2 properties)
        • type:Feature
        • id:1209
        • geometry: Point (26.67, -12.77)
          • type:Point
          • coordinates: [26.671729297816434, -12.768106976260981]
            • 0:26.671729297816434
            • 1:-12.768106976260981
        • properties: rural
          • type:rural
          • Map:10
      • 1087: Feature (Point, 2 properties)
        • type:Feature
        • id:1210
        • geometry: Point (2.00, 16.75)
          • type:Point
          • coordinates: [2.0009630815646235, 16.75067163994316]
            • 0:2.0009630815646235
            • 1:16.75067163994316
        • properties: rural
          • type:rural
          • Map:60
      • 1088: Feature (Point, 2 properties)
        • type:Feature
        • id:1211
        • geometry: Point (20.54, -8.14)
          • type:Point
          • coordinates: [20.539637081512133, -8.139260999540495]
            • 0:20.539637081512133
            • 1:-8.139260999540495
        • properties: rural
          • type:rural
          • Map:30
      • 1089: Feature (Point, 2 properties)
        • type:Feature
        • id:1212
        • geometry: Point (-8.75, 16.09)
          • type:Point
          • coordinates: [-8.745000180968368, 16.093524025400797]
            • 0:-8.745000180968368
            • 1:16.093524025400797
        • properties: rural
          • type:rural
          • Map:30
      • 1090: Feature (Point, 2 properties)
        • type:Feature
        • id:1213
        • geometry: Point (35.02, 3.43)
          • type:Point
          • coordinates: [35.02072532633122, 3.4268600460671452]
            • 0:35.02072532633122
            • 1:3.4268600460671452
        • properties: rural
          • type:rural
          • Map:20
      • 1091: Feature (Point, 2 properties)
        • type:Feature
        • id:1214
        • geometry: Point (-9.55, 24.45)
          • type:Point
          • coordinates: [-9.546814138267884, 24.449580663886778]
            • 0:-9.546814138267884
            • 1:24.449580663886778
        • properties: rural
          • type:rural
          • Map:60
      • 1092: Feature (Point, 2 properties)
        • type:Feature
        • id:1215
        • geometry: Point (41.65, 12.02)
          • type:Point
          • coordinates: [41.64537940959953, 12.024181879056826]
            • 0:41.64537940959953
            • 1:12.024181879056826
        • properties: rural
          • type:rural
          • Map:60
      • 1093: Feature (Point, 2 properties)
        • type:Feature
        • id:1216
        • geometry: Point (30.32, -4.04)
          • type:Point
          • coordinates: [30.322267515970278, -4.03833660847028]
            • 0:30.322267515970278
            • 1:-4.03833660847028
        • properties: rural
          • type:rural
          • Map:40
      • 1094: Feature (Point, 2 properties)
        • type:Feature
        • id:1217
        • geometry: Point (12.79, -13.50)
          • type:Point
          • coordinates: [12.787487233383427, -13.495409930070206]
            • 0:12.787487233383427
            • 1:-13.495409930070206
        • properties: rural
          • type:rural
          • Map:20
      • 1095: Feature (Point, 2 properties)
        • type:Feature
        • id:1218
        • geometry: Point (43.61, 7.14)
          • type:Point
          • coordinates: [43.611398470754, 7.13982571953316]
            • 0:43.611398470754
            • 1:7.13982571953316
        • properties: rural
          • type:rural
          • Map:20
      • 1096: Feature (Point, 2 properties)
        • type:Feature
        • id:1219
        • geometry: Point (-9.02, 24.80)
          • type:Point
          • coordinates: [-9.022959981242868, 24.80159120922508]
            • 0:-9.022959981242868
            • 1:24.80159120922508
        • properties: rural
          • type:rural
          • Map:60
      • 1097: Feature (Point, 2 properties)
        • type:Feature
        • id:1220
        • geometry: Point (36.90, 13.84)
          • type:Point
          • coordinates: [36.897562544765634, 13.835500307611786]
            • 0:36.897562544765634
            • 1:13.835500307611786
        • properties: rural
          • type:rural
          • Map:30
      • 1098: Feature (Point, 2 properties)
        • type:Feature
        • id:1221
        • geometry: Point (-16.14, 17.04)
          • type:Point
          • coordinates: [-16.14140615070006, 17.036192543337506]
            • 0:-16.14140615070006
            • 1:17.036192543337506
        • properties: rural
          • type:rural
          • Map:30
      • 1099: Feature (Point, 2 properties)
        • type:Feature
        • id:1222
        • geometry: Point (-4.10, 24.01)
          • type:Point
          • coordinates: [-4.104743944371131, 24.013213229848414]
            • 0:-4.104743944371131
            • 1:24.013213229848414
        • properties: rural
          • type:rural
          • Map:60
      • 1100: Feature (Point, 2 properties)
        • type:Feature
        • id:1223
        • geometry: Point (32.36, -1.15)
          • type:Point
          • coordinates: [32.3551083676333, -1.153823827120384]
            • 0:32.3551083676333
            • 1:-1.153823827120384
        • properties: rural
          • type:rural
          • Map:80
      • 1101: Feature (Point, 2 properties)
        • type:Feature
        • id:1224
        • geometry: Point (25.99, -7.68)
          • type:Point
          • coordinates: [25.990056500876356, -7.677797225983539]
            • 0:25.990056500876356
            • 1:-7.677797225983539
        • properties: rural
          • type:rural
          • Map:20
      • 1102: Feature (Point, 2 properties)
        • type:Feature
        • id:1226
        • geometry: Point (49.36, -17.17)
          • type:Point
          • coordinates: [49.3589034181848, -17.16820833578817]
            • 0:49.3589034181848
            • 1:-17.16820833578817
        • properties: rural
          • type:rural
          • Map:10
      • 1103: Feature (Point, 2 properties)
        • type:Feature
        • id:1227
        • geometry: Point (26.57, -7.20)
          • type:Point
          • coordinates: [26.56925148122421, -7.2016488372079515]
            • 0:26.56925148122421
            • 1:-7.2016488372079515
        • properties: rural
          • type:rural
          • Map:10
      • 1104: Feature (Point, 2 properties)
        • type:Feature
        • id:1228
        • geometry: Point (36.20, 4.00)
          • type:Point
          • coordinates: [36.19624211406652, 4.001310818327604]
            • 0:36.19624211406652
            • 1:4.001310818327604
        • properties: rural
          • type:rural
          • Map:80
      • 1105: Feature (Point, 2 properties)
        • type:Feature
        • id:1229
        • geometry: Point (14.94, 10.03)
          • type:Point
          • coordinates: [14.935748535205366, 10.034171882142877]
            • 0:14.935748535205366
            • 1:10.034171882142877
        • properties: rural
          • type:rural
          • Map:40
      • 1106: Feature (Point, 2 properties)
        • type:Feature
        • id:1231
        • geometry: Point (-1.68, 19.73)
          • type:Point
          • coordinates: [-1.6836314916755348, 19.729823357747044]
            • 0:-1.6836314916755348
            • 1:19.729823357747044
        • properties: rural
          • type:rural
          • Map:60
      • 1107: Feature (Point, 2 properties)
        • type:Feature
        • id:1232
        • geometry: Point (30.51, -8.87)
          • type:Point
          • coordinates: [30.507308975236622, -8.870887553613265]
            • 0:30.507308975236622
            • 1:-8.870887553613265
        • properties: rural
          • type:rural
          • Map:10
      • 1108: Feature (Point, 2 properties)
        • type:Feature
        • id:1233
        • geometry: Point (19.30, -16.63)
          • type:Point
          • coordinates: [19.304774554841714, -16.634970573698677]
            • 0:19.304774554841714
            • 1:-16.634970573698677
        • properties: rural
          • type:rural
          • Map:20
      • 1109: Feature (Point, 2 properties)
        • type:Feature
        • id:1234
        • geometry: Point (24.88, -5.44)
          • type:Point
          • coordinates: [24.879926165624802, -5.441736405025147]
            • 0:24.879926165624802
            • 1:-5.441736405025147
        • properties: rural
          • type:rural
          • Map:30
      • 1110: Feature (Point, 2 properties)
        • type:Feature
        • id:1235
        • geometry: Point (32.96, -6.12)
          • type:Point
          • coordinates: [32.95941391075148, -6.116010705128339]
            • 0:32.95941391075148
            • 1:-6.116010705128339
        • properties: rural
          • type:rural
          • Map:10
      • 1111: Feature (Point, 2 properties)
        • type:Feature
        • id:1236
        • geometry: Point (24.46, 5.09)
          • type:Point
          • coordinates: [24.458696774941426, 5.091897202124594]
            • 0:24.458696774941426
            • 1:5.091897202124594
        • properties: rural
          • type:rural
          • Map:30
      • 1112: Feature (Point, 2 properties)
        • type:Feature
        • id:1237
        • geometry: Point (16.33, -8.79)
          • type:Point
          • coordinates: [16.32952728667756, -8.791569700633206]
            • 0:16.32952728667756
            • 1:-8.791569700633206
        • properties: rural
          • type:rural
          • Map:10
      • 1113: Feature (Point, 2 properties)
        • type:Feature
        • id:1238
        • geometry: Point (36.39, 0.64)
          • type:Point
          • coordinates: [36.39327257142376, 0.6382721486405235]
            • 0:36.39327257142376
            • 1:0.6382721486405235
        • properties: rural
          • type:rural
          • Map:10
      • 1114: Feature (Point, 2 properties)
        • type:Feature
        • id:1239
        • geometry: Point (19.79, -1.22)
          • type:Point
          • coordinates: [19.792955939191998, -1.2171075635321655]
            • 0:19.792955939191998
            • 1:-1.2171075635321655
        • properties: rural
          • type:rural
          • Map:10
      • 1115: Feature (Point, 2 properties)
        • type:Feature
        • id:1240
        • geometry: Point (39.15, 4.49)
          • type:Point
          • coordinates: [39.14618718458027, 4.491010815966164]
            • 0:39.14618718458027
            • 1:4.491010815966164
        • properties: rural
          • type:rural
          • Map:20
      • 1116: Feature (Point, 2 properties)
        • type:Feature
        • id:1241
        • geometry: Point (27.56, -12.21)
          • type:Point
          • coordinates: [27.559325222675046, -12.210009222001965]
            • 0:27.559325222675046
            • 1:-12.210009222001965
        • properties: rural
          • type:rural
          • Map:10
      • 1117: Feature (Point, 2 properties)
        • type:Feature
        • id:1242
        • geometry: Point (29.15, -14.94)
          • type:Point
          • coordinates: [29.145449836804662, -14.942438511145323]
            • 0:29.145449836804662
            • 1:-14.942438511145323
        • properties: rural
          • type:rural
          • Map:20
      • 1118: Feature (Point, 2 properties)
        • type:Feature
        • id:1243
        • geometry: Point (-10.88, 16.07)
          • type:Point
          • coordinates: [-10.878933392937746, 16.07333334630045]
            • 0:-10.878933392937746
            • 1:16.07333334630045
        • properties: rural
          • type:rural
          • Map:30
      • 1119: Feature (Point, 2 properties)
        • type:Feature
        • id:1244
        • geometry: Point (-8.13, 14.32)
          • type:Point
          • coordinates: [-8.12751588754348, 14.323194835524315]
            • 0:-8.12751588754348
            • 1:14.323194835524315
        • properties: rural
          • type:rural
          • Map:30
      • 1120: Feature (Point, 2 properties)
        • type:Feature
        • id:1245
        • geometry: Point (14.03, 6.32)
          • type:Point
          • coordinates: [14.027976147292067, 6.317634855655847]
            • 0:14.027976147292067
            • 1:6.317634855655847
        • properties: rural
          • type:rural
          • Map:10
      • 1121: Feature (Point, 2 properties)
        • type:Feature
        • id:1246
        • geometry: Point (-6.79, 16.12)
          • type:Point
          • coordinates: [-6.791918917881092, 16.118996145717308]
            • 0:-6.791918917881092
            • 1:16.118996145717308
        • properties: rural
          • type:rural
          • Map:30
      • 1122: Feature (Point, 2 properties)
        • type:Feature
        • id:1247
        • geometry: Point (46.03, -24.16)
          • type:Point
          • coordinates: [46.03066142443654, -24.16024565537471]
            • 0:46.03066142443654
            • 1:-24.16024565537471
        • properties: rural
          • type:rural
          • Map:30
      • 1123: Feature (Point, 2 properties)
        • type:Feature
        • id:1248
        • geometry: Point (12.01, 5.14)
          • type:Point
          • coordinates: [12.009690718566167, 5.142493456925799]
            • 0:12.009690718566167
            • 1:5.142493456925799
        • properties: rural
          • type:rural
          • Map:10
      • 1124: Feature (Point, 2 properties)
        • type:Feature
        • id:1250
        • geometry: Point (36.54, -3.70)
          • type:Point
          • coordinates: [36.53878282582496, -3.7008825140448307]
            • 0:36.53878282582496
            • 1:-3.7008825140448307
        • properties: rural
          • type:rural
          • Map:20
      • 1125: Feature (Point, 2 properties)
        • type:Feature
        • id:1251
        • geometry: Point (29.33, -0.35)
          • type:Point
          • coordinates: [29.328691760609676, -0.3480828695257878]
            • 0:29.328691760609676
            • 1:-0.3480828695257878
        • properties: rural
          • type:rural
          • Map:10
      • 1126: Feature (Point, 2 properties)
        • type:Feature
        • id:1252
        • geometry: Point (12.65, -16.14)
          • type:Point
          • coordinates: [12.649317118665653, -16.137895258232085]
            • 0:12.649317118665653
            • 1:-16.137895258232085
        • properties: rural
          • type:rural
          • Map:60
      • 1127: Feature (Point, 2 properties)
        • type:Feature
        • id:1253
        • geometry: Point (-13.95, 13.08)
          • type:Point
          • coordinates: [-13.948756439413437, 13.078777474476144]
            • 0:-13.948756439413437
            • 1:13.078777474476144
        • properties: rural
          • type:rural
          • Map:10
      • 1128: Feature (Point, 2 properties)
        • type:Feature
        • id:1254
        • geometry: Point (45.71, -19.96)
          • type:Point
          • coordinates: [45.705902803226735, -19.95520699707424]
            • 0:45.705902803226735
            • 1:-19.95520699707424
        • properties: rural
          • type:rural
          • Map:30
      • 1129: Feature (Point, 2 properties)
        • type:Feature
        • id:1255
        • geometry: Point (20.90, 3.90)
          • type:Point
          • coordinates: [20.903790372948528, 3.903350475040923]
            • 0:20.903790372948528
            • 1:3.903350475040923
        • properties: rural
          • type:rural
          • Map:30
      • 1130: Feature (Point, 2 properties)
        • type:Feature
        • id:1256
        • geometry: Point (-10.47, 17.75)
          • type:Point
          • coordinates: [-10.470813561505588, 17.74555163820694]
            • 0:-10.470813561505588
            • 1:17.74555163820694
        • properties: rural
          • type:rural
          • Map:30
      • 1131: Feature (Point, 2 properties)
        • type:Feature
        • id:1257
        • geometry: Point (22.03, -4.48)
          • type:Point
          • coordinates: [22.02581273423055, -4.4800038184624755]
            • 0:22.02581273423055
            • 1:-4.4800038184624755
        • properties: rural
          • type:rural
          • Map:30
      • 1132: Feature (Point, 2 properties)
        • type:Feature
        • id:1258
        • geometry: Point (24.88, -10.76)
          • type:Point
          • coordinates: [24.884753681170068, -10.764666180046234]
            • 0:24.884753681170068
            • 1:-10.764666180046234
        • properties: rural
          • type:rural
          • Map:10
      • 1133: Feature (Point, 2 properties)
        • type:Feature
        • id:1259
        • geometry: Point (47.18, -19.04)
          • type:Point
          • coordinates: [47.175512852641766, -19.043696130175228]
            • 0:47.175512852641766
            • 1:-19.043696130175228
        • properties: rural
          • type:rural
          • Map:40
      • 1134: Feature (Point, 2 properties)
        • type:Feature
        • id:1260
        • geometry: Point (-7.90, 14.07)
          • type:Point
          • coordinates: [-7.90351436329852, 14.071185848866289]
            • 0:-7.90351436329852
            • 1:14.071185848866289
        • properties: rural
          • type:rural
          • Map:30
      • 1135: Feature (Point, 2 properties)
        • type:Feature
        • id:1261
        • geometry: Point (-12.40, 15.15)
          • type:Point
          • coordinates: [-12.402868632537013, 15.147613189044757]
            • 0:-12.402868632537013
            • 1:15.147613189044757
        • properties: rural
          • type:rural
          • Map:30
      • 1136: Feature (Point, 2 properties)
        • type:Feature
        • id:1262
        • geometry: Point (28.92, 2.15)
          • type:Point
          • coordinates: [28.92252054512478, 2.1508084774015264]
            • 0:28.92252054512478
            • 1:2.1508084774015264
        • properties: rural
          • type:rural
          • Map:10
      • 1137: Feature (Point, 2 properties)
        • type:Feature
        • id:1263
        • geometry: Point (-2.99, 10.70)
          • type:Point
          • coordinates: [-2.99032098839436, 10.697778298410325]
            • 0:-2.99032098839436
            • 1:10.697778298410325
        • properties: rural
          • type:rural
          • Map:30
      • 1138: Feature (Point, 2 properties)
        • type:Feature
        • id:1264
        • geometry: Point (21.93, -0.56)
          • type:Point
          • coordinates: [21.92688700552631, -0.5612141847224684]
            • 0:21.92688700552631
            • 1:-0.5612141847224684
        • properties: rural
          • type:rural
          • Map:10
      • 1139: Feature (Point, 2 properties)
        • type:Feature
        • id:1265
        • geometry: Point (28.66, -0.38)
          • type:Point
          • coordinates: [28.66123326415392, -0.38338740539008537]
            • 0:28.66123326415392
            • 1:-0.38338740539008537
        • properties: rural
          • type:rural
          • Map:10
      • 1140: Feature (Point, 2 properties)
        • type:Feature
        • id:1266
        • geometry: Point (-8.26, 14.29)
          • type:Point
          • coordinates: [-8.258668755187282, 14.290219664321704]
            • 0:-8.258668755187282
            • 1:14.290219664321704
        • properties: rural
          • type:rural
          • Map:20
      • 1141: Feature (Point, 2 properties)
        • type:Feature
        • id:1267
        • geometry: Point (27.57, -5.65)
          • type:Point
          • coordinates: [27.573952813045587, -5.6488873624028955]
            • 0:27.573952813045587
            • 1:-5.6488873624028955
        • properties: rural
          • type:rural
          • Map:10
      • 1142: Feature (Point, 2 properties)
        • type:Feature
        • id:1268
        • geometry: Point (29.57, -11.83)
          • type:Point
          • coordinates: [29.570607606036248, -11.83440198387034]
            • 0:29.570607606036248
            • 1:-11.83440198387034
        • properties: rural
          • type:rural
          • Map:10
      • 1143: Feature (Point, 2 properties)
        • type:Feature
        • id:1269
        • geometry: Point (12.94, 8.53)
          • type:Point
          • coordinates: [12.938165084476115, 8.533458709679252]
            • 0:12.938165084476115
            • 1:8.533458709679252
        • properties: rural
          • type:rural
          • Map:20
      • 1144: Feature (Point, 2 properties)
        • type:Feature
        • id:1270
        • geometry: Point (46.01, 6.79)
          • type:Point
          • coordinates: [46.00779508227338, 6.789088367531953]
            • 0:46.00779508227338
            • 1:6.789088367531953
        • properties: rural
          • type:rural
          • Map:20
      • 1145: Feature (Point, 2 properties)
        • type:Feature
        • id:1271
        • geometry: Point (-5.81, 19.17)
          • type:Point
          • coordinates: [-5.811624037869894, 19.172595369776527]
            • 0:-5.811624037869894
            • 1:19.172595369776527
        • properties: rural
          • type:rural
          • Map:60
      • 1146: Feature (Point, 2 properties)
        • type:Feature
        • id:1272
        • geometry: Point (16.56, -13.68)
          • type:Point
          • coordinates: [16.563238357530935, -13.676808294181546]
            • 0:16.563238357530935
            • 1:-13.676808294181546
        • properties: rural
          • type:rural
          • Map:10
      • 1147: Feature (Point, 2 properties)
        • type:Feature
        • id:1273
        • geometry: Point (-1.97, 11.65)
          • type:Point
          • coordinates: [-1.9683368973570903, 11.65066579436822]
            • 0:-1.9683368973570903
            • 1:11.65066579436822
        • properties: rural
          • type:rural
          • Map:20
      • 1148: Feature (Point, 2 properties)
        • type:Feature
        • id:1274
        • geometry: Point (4.05, 18.49)
          • type:Point
          • coordinates: [4.052008492746058, 18.485680769799835]
            • 0:4.052008492746058
            • 1:18.485680769799835
        • properties: rural
          • type:rural
          • Map:60
      • 1149: Feature (Point, 2 properties)
        • type:Feature
        • id:1275
        • geometry: Point (36.88, -2.38)
          • type:Point
          • coordinates: [36.882125795387566, -2.3829139819876723]
            • 0:36.882125795387566
            • 1:-2.3829139819876723
        • properties: rural
          • type:rural
          • Map:20
      • 1150: Feature (Point, 2 properties)
        • type:Feature
        • id:1277
        • geometry: Point (15.89, -7.70)
          • type:Point
          • coordinates: [15.886044928169616, -7.703974602209869]
            • 0:15.886044928169616
            • 1:-7.703974602209869
        • properties: rural
          • type:rural
          • Map:20
      • 1151: Feature (Point, 2 properties)
        • type:Feature
        • id:1278
        • geometry: Point (23.49, -12.91)
          • type:Point
          • coordinates: [23.485170320849384, -12.913719858772353]
            • 0:23.485170320849384
            • 1:-12.913719858772353
        • properties: rural
          • type:rural
          • Map:10
      • 1152: Feature (Point, 2 properties)
        • type:Feature
        • id:1279
        • geometry: Point (-8.31, 21.89)
          • type:Point
          • coordinates: [-8.313771763958828, 21.8932990248915]
            • 0:-8.313771763958828
            • 1:21.8932990248915
        • properties: rural
          • type:rural
          • Map:60
      • 1153: Feature (Point, 2 properties)
        • type:Feature
        • id:1280
        • geometry: Point (27.95, 0.52)
          • type:Point
          • coordinates: [27.947345463780007, 0.5165312679185422]
            • 0:27.947345463780007
            • 1:0.5165312679185422
        • properties: rural
          • type:rural
          • Map:10
      • 1154: Feature (Point, 2 properties)
        • type:Feature
        • id:1281
        • geometry: Point (36.40, 8.19)
          • type:Point
          • coordinates: [36.40394955675325, 8.188599646842713]
            • 0:36.40394955675325
            • 1:8.188599646842713
        • properties: rural
          • type:rural
          • Map:10
      • 1155: Feature (Point, 2 properties)
        • type:Feature
        • id:1282
        • geometry: Point (42.53, 6.55)
          • type:Point
          • coordinates: [42.528653401592784, 6.552638789627891]
            • 0:42.528653401592784
            • 1:6.552638789627891
        • properties: rural
          • type:rural
          • Map:30
      • 1156: Feature (Point, 2 properties)
        • type:Feature
        • id:1283
        • geometry: Point (-2.13, 18.88)
          • type:Point
          • coordinates: [-2.1274894375698468, 18.876510801849303]
            • 0:-2.1274894375698468
            • 1:18.876510801849303
        • properties: rural
          • type:rural
          • Map:60
      • 1157: Feature (Point, 2 properties)
        • type:Feature
        • id:1285
        • geometry: Point (36.47, 8.34)
          • type:Point
          • coordinates: [36.471293457467574, 8.335981173288957]
            • 0:36.471293457467574
            • 1:8.335981173288957
        • properties: rural
          • type:rural
          • Map:10
      • 1158: Feature (Point, 2 properties)
        • type:Feature
        • id:1286
        • geometry: Point (29.69, -10.86)
          • type:Point
          • coordinates: [29.687153198121127, -10.86239521903492]
            • 0:29.687153198121127
            • 1:-10.86239521903492
        • properties: rural
          • type:rural
          • Map:20
      • 1159: Feature (Point, 2 properties)
        • type:Feature
        • id:1287
        • geometry: Point (16.47, -12.66)
          • type:Point
          • coordinates: [16.47327204631187, -12.661448114184832]
            • 0:16.47327204631187
            • 1:-12.661448114184832
        • properties: rural
          • type:rural
          • Map:20
      • 1160: Feature (Point, 2 properties)
        • type:Feature
        • id:1288
        • geometry: Point (35.11, 10.80)
          • type:Point
          • coordinates: [35.10591407861657, 10.797541000443424]
            • 0:35.10591407861657
            • 1:10.797541000443424
        • properties: rural
          • type:rural
          • Map:10
      • 1161: Feature (Point, 2 properties)
        • type:Feature
        • id:1289
        • geometry: Point (28.23, -12.08)
          • type:Point
          • coordinates: [28.227560631881325, -12.082034407780164]
            • 0:28.227560631881325
            • 1:-12.082034407780164
        • properties: rural
          • type:rural
          • Map:10
      • 1162: Feature (Point, 2 properties)
        • type:Feature
        • id:1290
        • geometry: Point (30.49, -10.61)
          • type:Point
          • coordinates: [30.493592860621497, -10.605942958493864]
            • 0:30.493592860621497
            • 1:-10.605942958493864
        • properties: rural
          • type:rural
          • Map:10
      • 1163: Feature (Point, 2 properties)
        • type:Feature
        • id:1291
        • geometry: Point (26.42, -12.64)
          • type:Point
          • coordinates: [26.416465226547334, -12.643057493666527]
            • 0:26.416465226547334
            • 1:-12.643057493666527
        • properties: rural
          • type:rural
          • Map:10
      • 1164: Feature (Point, 2 properties)
        • type:Feature
        • id:1292
        • geometry: Point (43.01, 4.96)
          • type:Point
          • coordinates: [43.01215919325328, 4.957874472403538]
            • 0:43.01215919325328
            • 1:4.957874472403538
        • properties: rural
          • type:rural
          • Map:20
      • 1165: Feature (Point, 2 properties)
        • type:Feature
        • id:1293
        • geometry: Point (-13.11, 17.90)
          • type:Point
          • coordinates: [-13.107370771545607, 17.89860226967508]
            • 0:-13.107370771545607
            • 1:17.89860226967508
        • properties: rural
          • type:rural
          • Map:30
      • 1166: Feature (Point, 2 properties)
        • type:Feature
        • id:1294
        • geometry: Point (22.07, -8.85)
          • type:Point
          • coordinates: [22.070332277706562, -8.8472348233524]
            • 0:22.070332277706562
            • 1:-8.8472348233524
        • properties: rural
          • type:rural
          • Map:30
      • 1167: Feature (Point, 2 properties)
        • type:Feature
        • id:1295
        • geometry: Point (22.49, -0.71)
          • type:Point
          • coordinates: [22.489424380998358, -0.7079661419862868]
            • 0:22.489424380998358
            • 1:-0.7079661419862868
        • properties: rural
          • type:rural
          • Map:10
      • 1168: Feature (Point, 2 properties)
        • type:Feature
        • id:1296
        • geometry: Point (27.16, -5.83)
          • type:Point
          • coordinates: [27.157720054476822, -5.8332096610584]
            • 0:27.157720054476822
            • 1:-5.8332096610584
        • properties: rural
          • type:rural
          • Map:10
      • 1169: Feature (Point, 2 properties)
        • type:Feature
        • id:1298
        • geometry: Point (29.49, -21.09)
          • type:Point
          • coordinates: [29.490750173415442, -21.092244833556812]
            • 0:29.490750173415442
            • 1:-21.092244833556812
        • properties: rural
          • type:rural
          • Map:10
      • 1170: Feature (Point, 2 properties)
        • type:Feature
        • id:1299
        • geometry: Point (19.54, 0.29)
          • type:Point
          • coordinates: [19.53821820226435, 0.2920678838822019]
            • 0:19.53821820226435
            • 1:0.2920678838822019
        • properties: rural
          • type:rural
          • Map:10
      • 1171: Feature (Point, 2 properties)
        • type:Feature
        • id:1302
        • geometry: Point (18.05, -12.74)
          • type:Point
          • coordinates: [18.05325781732625, -12.744692696195559]
            • 0:18.05325781732625
            • 1:-12.744692696195559
        • properties: rural
          • type:rural
          • Map:30
      • 1172: Feature (Point, 2 properties)
        • type:Feature
        • id:1303
        • geometry: Point (-1.59, 19.04)
          • type:Point
          • coordinates: [-1.5946271894026993, 19.035571252448772]
            • 0:-1.5946271894026993
            • 1:19.035571252448772
        • properties: rural
          • type:rural
          • Map:60
      • 1173: Feature (Point, 2 properties)
        • type:Feature
        • id:1304
        • geometry: Point (-1.62, 11.24)
          • type:Point
          • coordinates: [-1.6156048630542006, 11.23992070910599]
            • 0:-1.6156048630542006
            • 1:11.23992070910599
        • properties: rural
          • type:rural
          • Map:40
      • 1174: Feature (Point, 2 properties)
        • type:Feature
        • id:1305
        • geometry: Point (24.59, 0.48)
          • type:Point
          • coordinates: [24.588393912949744, 0.4785226787200239]
            • 0:24.588393912949744
            • 1:0.4785226787200239
        • properties: rural
          • type:rural
          • Map:10
      • 1175: Feature (Point, 2 properties)
        • type:Feature
        • id:1306
        • geometry: Point (34.83, -10.56)
          • type:Point
          • coordinates: [34.82980441335423, -10.557294936914497]
            • 0:34.82980441335423
            • 1:-10.557294936914497
        • properties: rural
          • type:rural
          • Map:10
      • 1176: Feature (Point, 2 properties)
        • type:Feature
        • id:1307
        • geometry: Point (24.70, -16.14)
          • type:Point
          • coordinates: [24.701704318357617, -16.136695460327008]
            • 0:24.701704318357617
            • 1:-16.136695460327008
        • properties: rural
          • type:rural
          • Map:10
      • 1177: Feature (Point, 2 properties)
        • type:Feature
        • id:1308
        • geometry: Point (20.50, -10.47)
          • type:Point
          • coordinates: [20.495044995840217, -10.47271162617822]
            • 0:20.495044995840217
            • 1:-10.47271162617822
        • properties: rural
          • type:rural
          • Map:90
      • 1178: Feature (Point, 2 properties)
        • type:Feature
        • id:1310
        • geometry: Point (16.48, -6.17)
          • type:Point
          • coordinates: [16.478094444713864, -6.166791250385909]
            • 0:16.478094444713864
            • 1:-6.166791250385909
        • properties: rural
          • type:rural
          • Map:20
      • 1179: Feature (Point, 2 properties)
        • type:Feature
        • id:1311
        • geometry: Point (-3.65, 20.22)
          • type:Point
          • coordinates: [-3.653904586478359, 20.218006940165267]
            • 0:-3.653904586478359
            • 1:20.218006940165267
        • properties: rural
          • type:rural
          • Map:60
      • 1180: Feature (Point, 2 properties)
        • type:Feature
        • id:1312
        • geometry: Point (31.95, -3.66)
          • type:Point
          • coordinates: [31.951741925186365, -3.661565433714547]
            • 0:31.951741925186365
            • 1:-3.661565433714547
        • properties: rural
          • type:rural
          • Map:10
      • 1181: Feature (Point, 2 properties)
        • type:Feature
        • id:1313
        • geometry: Point (21.91, -12.53)
          • type:Point
          • coordinates: [21.912322905205517, -12.526923150351045]
            • 0:21.912322905205517
            • 1:-12.526923150351045
        • properties: rural
          • type:rural
          • Map:10
      • 1182: Feature (Point, 2 properties)
        • type:Feature
        • id:1314
        • geometry: Point (-7.05, 14.52)
          • type:Point
          • coordinates: [-7.054616405789167, 14.515901102034615]
            • 0:-7.054616405789167
            • 1:14.515901102034615
        • properties: rural
          • type:rural
          • Map:30
      • 1183: Feature (Point, 2 properties)
        • type:Feature
        • id:1316
        • geometry: Point (32.95, -1.62)
          • type:Point
          • coordinates: [32.94750446588904, -1.6191259948388022]
            • 0:32.94750446588904
            • 1:-1.6191259948388022
        • properties: rural
          • type:rural
          • Map:80
      • 1184: Feature (Point, 2 properties)
        • type:Feature
        • id:1318
        • geometry: Point (21.17, -4.43)
          • type:Point
          • coordinates: [21.17143335921884, -4.433871419168858]
            • 0:21.17143335921884
            • 1:-4.433871419168858
        • properties: rural
          • type:rural
          • Map:10
      • 1185: Feature (Point, 2 properties)
        • type:Feature
        • id:1319
        • geometry: Point (29.02, 2.49)
          • type:Point
          • coordinates: [29.024619391247114, 2.4942494250586504]
            • 0:29.024619391247114
            • 1:2.4942494250586504
        • properties: rural
          • type:rural
          • Map:10
      • 1186: Feature (Point, 2 properties)
        • type:Feature
        • id:1320
        • geometry: Point (25.01, -7.42)
          • type:Point
          • coordinates: [25.014029963005413, -7.4194478561573876]
            • 0:25.014029963005413
            • 1:-7.4194478561573876
        • properties: rural
          • type:rural
          • Map:90
      • 1187: Feature (Point, 2 properties)
        • type:Feature
        • id:1321
        • geometry: Point (44.96, -23.07)
          • type:Point
          • coordinates: [44.96199305035905, -23.071847741656093]
            • 0:44.96199305035905
            • 1:-23.071847741656093
        • properties: rural
          • type:rural
          • Map:30
      • 1188: Feature (Point, 2 properties)
        • type:Feature
        • id:1323
        • geometry: Point (30.95, -13.42)
          • type:Point
          • coordinates: [30.948336463453693, -13.421321280939509]
            • 0:30.948336463453693
            • 1:-13.421321280939509
        • properties: rural
          • type:rural
          • Map:10
      • 1189: Feature (Point, 2 properties)
        • type:Feature
        • id:1324
        • geometry: Point (-3.85, 10.31)
          • type:Point
          • coordinates: [-3.8507107473908513, 10.305325667110528]
            • 0:-3.8507107473908513
            • 1:10.305325667110528
        • properties: rural
          • type:rural
          • Map:20
      • 1190: Feature (Point, 2 properties)
        • type:Feature
        • id:1325
        • geometry: Point (-12.59, 17.56)
          • type:Point
          • coordinates: [-12.590335968965759, 17.55791436420728]
            • 0:-12.590335968965759
            • 1:17.55791436420728
        • properties: rural
          • type:rural
          • Map:60
      • 1191: Feature (Point, 2 properties)
        • type:Feature
        • id:1326
        • geometry: Point (37.76, -8.20)
          • type:Point
          • coordinates: [37.75881296666584, -8.203723487641074]
            • 0:37.75881296666584
            • 1:-8.203723487641074
        • properties: rural
          • type:rural
          • Map:30
      • 1192: Feature (Point, 2 properties)
        • type:Feature
        • id:1327
        • geometry: Point (27.66, -2.62)
          • type:Point
          • coordinates: [27.660933819193982, -2.622566265376719]
            • 0:27.660933819193982
            • 1:-2.622566265376719
        • properties: rural
          • type:rural
          • Map:10
      • 1193: Feature (Point, 2 properties)
        • type:Feature
        • id:1328
        • geometry: Point (-3.06, 22.31)
          • type:Point
          • coordinates: [-3.0578064550154074, 22.307468529957063]
            • 0:-3.0578064550154074
            • 1:22.307468529957063
        • properties: rural
          • type:rural
          • Map:60
      • 1194: Feature (Point, 2 properties)
        • type:Feature
        • id:1329
        • geometry: Point (27.04, -17.27)
          • type:Point
          • coordinates: [27.03697461497341, -17.27478539087157]
            • 0:27.03697461497341
            • 1:-17.27478539087157
        • properties: rural
          • type:rural
          • Map:10
      • 1195: Feature (Point, 2 properties)
        • type:Feature
        • id:1330
        • geometry: Point (28.23, -8.17)
          • type:Point
          • coordinates: [28.228755006276685, -8.16562193408524]
            • 0:28.228755006276685
            • 1:-8.16562193408524
        • properties: rural
          • type:rural
          • Map:10
      • 1196: Feature (Point, 2 properties)
        • type:Feature
        • id:1331
        • geometry: Point (48.38, -15.09)
          • type:Point
          • coordinates: [48.381406149001066, -15.08771496988754]
            • 0:48.381406149001066
            • 1:-15.08771496988754
        • properties: rural
          • type:rural
          • Map:30
      • 1197: Feature (Point, 2 properties)
        • type:Feature
        • id:1332
        • geometry: Point (22.23, 1.98)
          • type:Point
          • coordinates: [22.23276739997178, 1.976796188546145]
            • 0:22.23276739997178
            • 1:1.976796188546145
        • properties: rural
          • type:rural
          • Map:10
      • 1198: Feature (Point, 2 properties)
        • type:Feature
        • id:1333
        • geometry: Point (45.28, -18.81)
          • type:Point
          • coordinates: [45.27592585882875, -18.807997045329135]
            • 0:45.27592585882875
            • 1:-18.807997045329135
        • properties: rural
          • type:rural
          • Map:30
      • 1199: Feature (Point, 2 properties)
        • type:Feature
        • id:1334
        • geometry: Point (41.57, 12.97)
          • type:Point
          • coordinates: [41.566552306218114, 12.971845892331194]
            • 0:41.566552306218114
            • 1:12.971845892331194
        • properties: rural
          • type:rural
          • Map:60
      • 1200: Feature (Point, 2 properties)
        • type:Feature
        • id:1335
        • geometry: Point (22.61, -10.63)
          • type:Point
          • coordinates: [22.61256370465936, -10.634925798982355]
            • 0:22.61256370465936
            • 1:-10.634925798982355
        • properties: rural
          • type:rural
          • Map:10
      • 1201: Feature (Point, 2 properties)
        • type:Feature
        • id:1336
        • geometry: Point (13.09, -7.11)
          • type:Point
          • coordinates: [13.085669706235507, -7.1073946424727]
            • 0:13.085669706235507
            • 1:-7.1073946424727
        • properties: rural
          • type:rural
          • Map:10
      • 1202: Feature (Point, 2 properties)
        • type:Feature
        • id:1337
        • geometry: Point (26.08, -13.85)
          • type:Point
          • coordinates: [26.081035986592266, -13.854765047978939]
            • 0:26.081035986592266
            • 1:-13.854765047978939
        • properties: rural
          • type:rural
          • Map:10
      • 1203: Feature (Point, 2 properties)
        • type:Feature
        • id:1338
        • geometry: Point (-13.55, 13.54)
          • type:Point
          • coordinates: [-13.54735786548928, 13.535101037167971]
            • 0:-13.54735786548928
            • 1:13.535101037167971
        • properties: rural
          • type:rural
          • Map:20
      • 1204: Feature (Point, 2 properties)
        • type:Feature
        • id:1339
        • geometry: Point (16.25, -10.60)
          • type:Point
          • coordinates: [16.250986276649385, -10.598315292568236]
            • 0:16.250986276649385
            • 1:-10.598315292568236
        • properties: rural
          • type:rural
          • Map:10
      • 1205: Feature (Point, 2 properties)
        • type:Feature
        • id:1340
        • geometry: Point (31.08, -3.38)
          • type:Point
          • coordinates: [31.076011774040076, -3.3821417778700877]
            • 0:31.076011774040076
            • 1:-3.3821417778700877
        • properties: rural
          • type:rural
          • Map:30
      • 1206: Feature (Point, 2 properties)
        • type:Feature
        • id:1341
        • geometry: Point (-7.86, 15.39)
          • type:Point
          • coordinates: [-7.864735397789348, 15.389490161210613]
            • 0:-7.864735397789348
            • 1:15.389490161210613
        • properties: rural
          • type:rural
          • Map:30
      • 1207: Feature (Point, 2 properties)
        • type:Feature
        • id:1342
        • geometry: Point (-13.59, 17.23)
          • type:Point
          • coordinates: [-13.592169125730006, 17.233107831461435]
            • 0:-13.592169125730006
            • 1:17.233107831461435
        • properties: rural
          • type:rural
          • Map:60
      • 1208: Feature (Point, 2 properties)
        • type:Feature
        • id:1343
        • geometry: Point (24.21, -16.96)
          • type:Point
          • coordinates: [24.207719104009477, -16.961132668856365]
            • 0:24.207719104009477
            • 1:-16.961132668856365
        • properties: rural
          • type:rural
          • Map:10
      • 1209: Feature (Point, 2 properties)
        • type:Feature
        • id:1345
        • geometry: Point (-10.56, 20.39)
          • type:Point
          • coordinates: [-10.55891289565934, 20.38824568495673]
            • 0:-10.55891289565934
            • 1:20.38824568495673
        • properties: rural
          • type:rural
          • Map:60
      • 1210: Feature (Point, 2 properties)
        • type:Feature
        • id:1346
        • geometry: Point (-11.40, 6.92)
          • type:Point
          • coordinates: [-11.398687515567856, 6.921374272219584]
            • 0:-11.398687515567856
            • 1:6.921374272219584
        • properties: rural
          • type:rural
          • Map:30
      • 1211: Feature (Point, 2 properties)
        • type:Feature
        • id:1347
        • geometry: Point (15.67, -6.93)
          • type:Point
          • coordinates: [15.669597068799414, -6.933862908537437]
            • 0:15.669597068799414
            • 1:-6.933862908537437
        • properties: rural
          • type:rural
          • Map:30
      • 1212: Feature (Point, 2 properties)
        • type:Feature
        • id:1348
        • geometry: Point (-0.98, 20.52)
          • type:Point
          • coordinates: [-0.9771491833561349, 20.5184566444378]
            • 0:-0.9771491833561349
            • 1:20.5184566444378
        • properties: rural
          • type:rural
          • Map:60
      • 1213: Feature (Point, 2 properties)
        • type:Feature
        • id:1349
        • geometry: Point (47.38, -20.80)
          • type:Point
          • coordinates: [47.38472357135366, -20.799127522288437]
            • 0:47.38472357135366
            • 1:-20.799127522288437
        • properties: rural
          • type:rural
          • Map:30
      • 1214: Feature (Point, 2 properties)
        • type:Feature
        • id:1351
        • geometry: Point (25.96, -6.62)
          • type:Point
          • coordinates: [25.96357407703887, -6.619355929148825]
            • 0:25.96357407703887
            • 1:-6.619355929148825
        • properties: rural
          • type:rural
          • Map:30
      • 1215: Feature (Point, 2 properties)
        • type:Feature
        • id:1352
        • geometry: Point (-4.81, 21.70)
          • type:Point
          • coordinates: [-4.8133914841057, 21.69943775124405]
            • 0:-4.8133914841057
            • 1:21.69943775124405
        • properties: rural
          • type:rural
          • Map:60
      • 1216: Feature (Point, 2 properties)
        • type:Feature
        • id:1353
        • geometry: Point (-15.22, 21.32)
          • type:Point
          • coordinates: [-15.216467345862565, 21.31778321906408]
            • 0:-15.216467345862565
            • 1:21.31778321906408
        • properties: rural
          • type:rural
          • Map:60
      • 1217: Feature (Point, 2 properties)
        • type:Feature
        • id:1354
        • geometry: Point (40.28, 1.15)
          • type:Point
          • coordinates: [40.279344514484634, 1.152696115111288]
            • 0:40.279344514484634
            • 1:1.152696115111288
        • properties: rural
          • type:rural
          • Map:20
      • 1218: Feature (Point, 2 properties)
        • type:Feature
        • id:1355
        • geometry: Point (21.17, -15.28)
          • type:Point
          • coordinates: [21.167286681081176, -15.276975635168178]
            • 0:21.167286681081176
            • 1:-15.276975635168178
        • properties: rural
          • type:rural
          • Map:90
      • 1219: Feature (Point, 2 properties)
        • type:Feature
        • id:1356
        • geometry: Point (27.21, -3.02)
          • type:Point
          • coordinates: [27.206920322407257, -3.0181382119372073]
            • 0:27.206920322407257
            • 1:-3.0181382119372073
        • properties: rural
          • type:rural
          • Map:10
      • 1220: Feature (Point, 2 properties)
        • type:Feature
        • id:1357
        • geometry: Point (-2.97, 23.27)
          • type:Point
          • coordinates: [-2.9700334581299477, 23.269451517140514]
            • 0:-2.9700334581299477
            • 1:23.269451517140514
        • properties: rural
          • type:rural
          • Map:60
      • 1221: Feature (Point, 2 properties)
        • type:Feature
        • id:1358
        • geometry: Point (46.28, -23.42)
          • type:Point
          • coordinates: [46.27994980291439, -23.41949701695058]
            • 0:46.27994980291439
            • 1:-23.41949701695058
        • properties: rural
          • type:rural
          • Map:30
      • 1222: Feature (Point, 2 properties)
        • type:Feature
        • id:1359
        • geometry: Point (34.08, -8.11)
          • type:Point
          • coordinates: [34.08374631802016, -8.11312900514873]
            • 0:34.08374631802016
            • 1:-8.11312900514873
        • properties: rural
          • type:rural
          • Map:10
      • 1223: Feature (Point, 2 properties)
        • type:Feature
        • id:1360
        • geometry: Point (26.84, -5.96)
          • type:Point
          • coordinates: [26.837956122436953, -5.961099476903811]
            • 0:26.837956122436953
            • 1:-5.961099476903811
        • properties: rural
          • type:rural
          • Map:20
      • 1224: Feature (Point, 2 properties)
        • type:Feature
        • id:1361
        • geometry: Point (41.91, 8.79)
          • type:Point
          • coordinates: [41.91309455474957, 8.792971624748143]
            • 0:41.91309455474957
            • 1:8.792971624748143
        • properties: rural
          • type:rural
          • Map:20
      • 1225: Feature (Point, 2 properties)
        • type:Feature
        • id:1362
        • geometry: Point (9.67, 3.57)
          • type:Point
          • coordinates: [9.665014287349287, 3.573735935446794]
            • 0:9.665014287349287
            • 1:3.573735935446794
        • properties: rural
          • type:rural
          • Map:95
      • 1226: Feature (Point, 2 properties)
        • type:Feature
        • id:1363
        • geometry: Point (36.99, -0.22)
          • type:Point
          • coordinates: [36.985950628985414, -0.21934341148228195]
            • 0:36.985950628985414
            • 1:-0.21934341148228195
        • properties: rural
          • type:rural
          • Map:30
      • 1227: Feature (Point, 2 properties)
        • type:Feature
        • id:1364
        • geometry: Point (14.91, -12.96)
          • type:Point
          • coordinates: [14.90937433686632, -12.964620871131661]
            • 0:14.90937433686632
            • 1:-12.964620871131661
        • properties: rural
          • type:rural
          • Map:10
      • 1228: Feature (Point, 2 properties)
        • type:Feature
        • id:1365
        • geometry: Point (28.77, -0.77)
          • type:Point
          • coordinates: [28.765673047211333, -0.7702247523763294]
            • 0:28.765673047211333
            • 1:-0.7702247523763294
        • properties: rural
          • type:rural
          • Map:10
      • 1229: Feature (Point, 2 properties)
        • type:Feature
        • id:1366
        • geometry: Point (15.20, -6.78)
          • type:Point
          • coordinates: [15.196685217462239, -6.780641586963042]
            • 0:15.196685217462239
            • 1:-6.780641586963042
        • properties: rural
          • type:rural
          • Map:30
      • 1230: Feature (Point, 2 properties)
        • type:Feature
        • id:1367
        • geometry: Point (32.11, -12.82)
          • type:Point
          • coordinates: [32.10574200868101, -12.822887740653691]
            • 0:32.10574200868101
            • 1:-12.822887740653691
        • properties: rural
          • type:rural
          • Map:20
      • 1231: Feature (Point, 2 properties)
        • type:Feature
        • id:1368
        • geometry: Point (27.74, -19.68)
          • type:Point
          • coordinates: [27.735178253302696, -19.67609896401152]
            • 0:27.735178253302696
            • 1:-19.67609896401152
        • properties: rural
          • type:rural
          • Map:20
      • 1232: Feature (Point, 2 properties)
        • type:Feature
        • id:1369
        • geometry: Point (48.95, -15.24)
          • type:Point
          • coordinates: [48.945451646972174, -15.238516706369905]
            • 0:48.945451646972174
            • 1:-15.238516706369905
        • properties: rural
          • type:rural
          • Map:30
      • 1233: Feature (Point, 2 properties)
        • type:Feature
        • id:1370
        • geometry: Point (-6.20, 21.23)
          • type:Point
          • coordinates: [-6.196348186580114, 21.231379250125407]
            • 0:-6.196348186580114
            • 1:21.231379250125407
        • properties: rural
          • type:rural
          • Map:60
      • 1234: Feature (Point, 2 properties)
        • type:Feature
        • id:1371
        • geometry: Point (-14.54, 16.49)
          • type:Point
          • coordinates: [-14.543438557067075, 16.48865654553456]
            • 0:-14.543438557067075
            • 1:16.48865654553456
        • properties: rural
          • type:rural
          • Map:30
      • 1235: Feature (Point, 2 properties)
        • type:Feature
        • id:1373
        • geometry: Point (-12.39, 18.82)
          • type:Point
          • coordinates: [-12.393937868653442, 18.820609882797882]
            • 0:-12.393937868653442
            • 1:18.820609882797882
        • properties: rural
          • type:rural
          • Map:60
      • 1236: Feature (Point, 2 properties)
        • type:Feature
        • id:1374
        • geometry: Point (38.37, 14.46)
          • type:Point
          • coordinates: [38.370566917950406, 14.456138846726835]
            • 0:38.370566917950406
            • 1:14.456138846726835
        • properties: rural
          • type:rural
          • Map:30
      • 1237: Feature (Point, 2 properties)
        • type:Feature
        • id:1375
        • geometry: Point (13.40, -7.81)
          • type:Point
          • coordinates: [13.40308029043278, -7.812124983962438]
            • 0:13.40308029043278
            • 1:-7.812124983962438
        • properties: rural
          • type:rural
          • Map:30
      • 1238: Feature (Point, 2 properties)
        • type:Feature
        • id:1376
        • geometry: Point (-2.03, 11.63)
          • type:Point
          • coordinates: [-2.025145112857316, 11.627043511887797]
            • 0:-2.025145112857316
            • 1:11.627043511887797
        • properties: rural
          • type:rural
          • Map:40
      • 1239: Feature (Point, 2 properties)
        • type:Feature
        • id:1377
        • geometry: Point (18.47, -1.95)
          • type:Point
          • coordinates: [18.47236824255646, -1.9498000211933753]
            • 0:18.47236824255646
            • 1:-1.9498000211933753
        • properties: rural
          • type:rural
          • Map:10
      • 1240: Feature (Point, 2 properties)
        • type:Feature
        • id:1378
        • geometry: Point (34.27, -6.77)
          • type:Point
          • coordinates: [34.268350420913244, -6.769810444896562]
            • 0:34.268350420913244
            • 1:-6.769810444896562
        • properties: rural
          • type:rural
          • Map:30
      • 1241: Feature (Point, 2 properties)
        • type:Feature
        • id:1380
        • geometry: Point (39.42, -2.58)
          • type:Point
          • coordinates: [39.42271649950445, -2.5812558399671586]
            • 0:39.42271649950445
            • 1:-2.5812558399671586
        • properties: rural
          • type:rural
          • Map:20
      • 1242: Feature (Point, 2 properties)
        • type:Feature
        • id:1381
        • geometry: Point (32.27, -11.56)
          • type:Point
          • coordinates: [32.272290807416034, -11.560175763144638]
            • 0:32.272290807416034
            • 1:-11.560175763144638
        • properties: rural
          • type:rural
          • Map:10
      • 1243: Feature (Point, 2 properties)
        • type:Feature
        • id:1382
        • geometry: Point (-0.12, 15.56)
          • type:Point
          • coordinates: [-0.12234222944298938, 15.563485211690892]
            • 0:-0.12234222944298938
            • 1:15.563485211690892
        • properties: rural
          • type:rural
          • Map:60
      • 1244: Feature (Point, 2 properties)
        • type:Feature
        • id:1383
        • geometry: Point (-0.65, 18.70)
          • type:Point
          • coordinates: [-0.6547290897328267, 18.69557714073561]
            • 0:-0.6547290897328267
            • 1:18.69557714073561
        • properties: rural
          • type:rural
          • Map:60
      • 1245: Feature (Point, 2 properties)
        • type:Feature
        • id:1384
        • geometry: Point (12.74, 7.69)
          • type:Point
          • coordinates: [12.74457022660622, 7.688423935691138]
            • 0:12.74457022660622
            • 1:7.688423935691138
        • properties: rural
          • type:rural
          • Map:30
      • 1246: Feature (Point, 2 properties)
        • type:Feature
        • id:1385
        • geometry: Point (21.07, -3.70)
          • type:Point
          • coordinates: [21.071186819808954, -3.7026188240839333]
            • 0:21.071186819808954
            • 1:-3.7026188240839333
        • properties: rural
          • type:rural
          • Map:10
      • 1247: Feature (Point, 2 properties)
        • type:Feature
        • id:1387
        • geometry: Point (34.39, 9.65)
          • type:Point
          • coordinates: [34.39312776869971, 9.645070035380288]
            • 0:34.39312776869971
            • 1:9.645070035380288
        • properties: rural
          • type:rural
          • Map:30
      • 1248: Feature (Point, 2 properties)
        • type:Feature
        • id:1390
        • geometry: Point (13.29, -6.64)
          • type:Point
          • coordinates: [13.294923635975948, -6.644118170623147]
            • 0:13.294923635975948
            • 1:-6.644118170623147
        • properties: rural
          • type:rural
          • Map:10
      • 1249: Feature (Point, 2 properties)
        • type:Feature
        • id:1391
        • geometry: Point (44.40, -17.72)
          • type:Point
          • coordinates: [44.39573533615447, -17.718528291252163]
            • 0:44.39573533615447
            • 1:-17.718528291252163
        • properties: rural
          • type:rural
          • Map:30
      • 1250: Feature (Point, 2 properties)
        • type:Feature
        • id:1392
        • geometry: Point (-1.83, 11.98)
          • type:Point
          • coordinates: [-1.8318565926072745, 11.97894799344109]
            • 0:-1.8318565926072745
            • 1:11.97894799344109
        • properties: rural
          • type:rural
          • Map:20
      • 1251: Feature (Point, 2 properties)
        • type:Feature
        • id:1393
        • geometry: Point (16.46, -16.97)
          • type:Point
          • coordinates: [16.458985534935405, -16.96964435784116]
            • 0:16.458985534935405
            • 1:-16.96964435784116
        • properties: rural
          • type:rural
          • Map:20
      • 1252: Feature (Point, 2 properties)
        • type:Feature
        • id:1394
        • geometry: Point (18.80, -15.10)
          • type:Point
          • coordinates: [18.799653750841344, -15.101690437090152]
            • 0:18.799653750841344
            • 1:-15.101690437090152
        • properties: rural
          • type:rural
          • Map:20
      • 1253: Feature (Point, 2 properties)
        • type:Feature
        • id:1395
        • geometry: Point (36.60, -2.54)
          • type:Point
          • coordinates: [36.60087224028641, -2.5425833233036785]
            • 0:36.60087224028641
            • 1:-2.5425833233036785
        • properties: rural
          • type:rural
          • Map:20
      • 1254: Feature (Point, 2 properties)
        • type:Feature
        • id:1396
        • geometry: Point (13.85, -9.02)
          • type:Point
          • coordinates: [13.848321635615502, -9.019367293408392]
            • 0:13.848321635615502
            • 1:-9.019367293408392
        • properties: rural
          • type:rural
          • Map:10
      • 1255: Feature (Point, 2 properties)
        • type:Feature
        • id:1397
        • geometry: Point (13.96, -9.14)
          • type:Point
          • coordinates: [13.958134740386798, -9.144121426056955]
            • 0:13.958134740386798
            • 1:-9.144121426056955
        • properties: rural
          • type:rural
          • Map:30
      • 1256: Feature (Point, 2 properties)
        • type:Feature
        • id:1398
        • geometry: Point (-13.53, 15.45)
          • type:Point
          • coordinates: [-13.534252417183005, 15.44600562240315]
            • 0:-13.534252417183005
            • 1:15.44600562240315
        • properties: rural
          • type:rural
          • Map:30
      • 1257: Feature (Point, 2 properties)
        • type:Feature
        • id:1399
        • geometry: Point (19.32, 0.38)
          • type:Point
          • coordinates: [19.31591159254803, 0.38192276767541383]
            • 0:19.31591159254803
            • 1:0.38192276767541383
        • properties: rural
          • type:rural
          • Map:10
      • 1258: Feature (Point, 2 properties)
        • type:Feature
        • id:1400
        • geometry: Point (28.90, -12.69)
          • type:Point
          • coordinates: [28.904229382595982, -12.693384699850844]
            • 0:28.904229382595982
            • 1:-12.693384699850844
        • properties: rural
          • type:rural
          • Map:10
      • 1259: Feature (Point, 2 properties)
        • type:Feature
        • id:1401
        • geometry: Point (21.52, -3.84)
          • type:Point
          • coordinates: [21.518377768349193, -3.8366851529067145]
            • 0:21.518377768349193
            • 1:-3.8366851529067145
        • properties: rural
          • type:rural
          • Map:10
      • 1260: Feature (Point, 2 properties)
        • type:Feature
        • id:1402
        • geometry: Point (26.05, -14.63)
          • type:Point
          • coordinates: [26.051563207252265, -14.628262116179068]
            • 0:26.051563207252265
            • 1:-14.628262116179068
        • properties: rural
          • type:rural
          • Map:30
      • 1261: Feature (Point, 2 properties)
        • type:Feature
        • id:1403
        • geometry: Point (38.88, 13.56)
          • type:Point
          • coordinates: [38.88092937326735, 13.56160770199839]
            • 0:38.88092937326735
            • 1:13.56160770199839
        • properties: rural
          • type:rural
          • Map:30
      • 1262: Feature (Point, 2 properties)
        • type:Feature
        • id:1404
        • geometry: Point (20.49, 2.26)
          • type:Point
          • coordinates: [20.49355924063335, 2.262588223494155]
            • 0:20.49355924063335
            • 1:2.262588223494155
        • properties: rural
          • type:rural
          • Map:10
      • 1263: Feature (Point, 2 properties)
        • type:Feature
        • id:1405
        • geometry: Point (38.62, 3.43)
          • type:Point
          • coordinates: [38.6176179584395, 3.426187439378178]
            • 0:38.6176179584395
            • 1:3.426187439378178
        • properties: rural
          • type:rural
          • Map:20
      • 1264: Feature (Point, 2 properties)
        • type:Feature
        • id:1406
        • geometry: Point (16.77, -2.87)
          • type:Point
          • coordinates: [16.76598600848677, -2.871567210029511]
            • 0:16.76598600848677
            • 1:-2.871567210029511
        • properties: rural
          • type:rural
          • Map:10
      • 1265: Feature (Point, 2 properties)
        • type:Feature
        • id:1407
        • geometry: Point (44.58, 5.37)
          • type:Point
          • coordinates: [44.577901929751285, 5.368140936050738]
            • 0:44.577901929751285
            • 1:5.368140936050738
        • properties: rural
          • type:rural
          • Map:90
      • 1266: Feature (Point, 2 properties)
        • type:Feature
        • id:1408
        • geometry: Point (34.90, -2.98)
          • type:Point
          • coordinates: [34.89968130063289, -2.9843531394775398]
            • 0:34.89968130063289
            • 1:-2.9843531394775398
        • properties: rural
          • type:rural
          • Map:30
      • 1267: Feature (Point, 2 properties)
        • type:Feature
        • id:1409
        • geometry: Point (25.28, -2.86)
          • type:Point
          • coordinates: [25.283365893442447, -2.8646747034595017]
            • 0:25.283365893442447
            • 1:-2.8646747034595017
        • properties: rural
          • type:rural
          • Map:30
      • 1268: Feature (Point, 2 properties)
        • type:Feature
        • id:1410
        • geometry: Point (25.31, -11.18)
          • type:Point
          • coordinates: [25.313064218202747, -11.180451121818614]
            • 0:25.313064218202747
            • 1:-11.180451121818614
        • properties: rural
          • type:rural
          • Map:10
      • 1269: Feature (Point, 2 properties)
        • type:Feature
        • id:1411
        • geometry: Point (37.30, 9.33)
          • type:Point
          • coordinates: [37.30277785883247, 9.333516889427546]
            • 0:37.30277785883247
            • 1:9.333516889427546
        • properties: rural
          • type:rural
          • Map:90
      • 1270: Feature (Point, 2 properties)
        • type:Feature
        • id:1412
        • geometry: Point (-2.30, 8.39)
          • type:Point
          • coordinates: [-2.304501654240085, 8.392997792174528]
            • 0:-2.304501654240085
            • 1:8.392997792174528
        • properties: rural
          • type:rural
          • Map:80
      • 1271: Feature (Point, 2 properties)
        • type:Feature
        • id:1413
        • geometry: Point (18.16, -3.36)
          • type:Point
          • coordinates: [18.164035947128585, -3.361130888707054]
            • 0:18.164035947128585
            • 1:-3.361130888707054
        • properties: rural
          • type:rural
          • Map:10
      • 1272: Feature (Point, 2 properties)
        • type:Feature
        • id:1414
        • geometry: Point (22.94, -0.76)
          • type:Point
          • coordinates: [22.936819740584586, -0.7637414520154501]
            • 0:22.936819740584586
            • 1:-0.7637414520154501
        • properties: rural
          • type:rural
          • Map:10
      • 1273: Feature (Point, 2 properties)
        • type:Feature
        • id:1417
        • geometry: Point (-11.50, 13.58)
          • type:Point
          • coordinates: [-11.498825592620355, 13.577389102526421]
            • 0:-11.498825592620355
            • 1:13.577389102526421
        • properties: rural
          • type:rural
          • Map:30
      • 1274: Feature (Point, 2 properties)
        • type:Feature
        • id:1418
        • geometry: Point (35.71, -3.06)
          • type:Point
          • coordinates: [35.71090471901453, -3.061897615922598]
            • 0:35.71090471901453
            • 1:-3.061897615922598
        • properties: rural
          • type:rural
          • Map:30
      • 1275: Feature (Point, 2 properties)
        • type:Feature
        • id:1419
        • geometry: Point (30.53, -4.65)
          • type:Point
          • coordinates: [30.53067954660602, -4.654965266072254]
            • 0:30.53067954660602
            • 1:-4.654965266072254
        • properties: rural
          • type:rural
          • Map:40
      • 1276: Feature (Point, 2 properties)
        • type:Feature
        • id:1420
        • geometry: Point (20.59, -0.21)
          • type:Point
          • coordinates: [20.592471422456885, -0.2092339613138867]
            • 0:20.592471422456885
            • 1:-0.2092339613138867
        • properties: rural
          • type:rural
          • Map:10
      • 1277: Feature (Point, 2 properties)
        • type:Feature
        • id:1421
        • geometry: Point (-0.98, 14.91)
          • type:Point
          • coordinates: [-0.983241322760077, 14.905360714150461]
            • 0:-0.983241322760077
            • 1:14.905360714150461
        • properties: rural
          • type:rural
          • Map:30
      • 1278: Feature (Point, 2 properties)
        • type:Feature
        • id:1422
        • geometry: Point (28.77, -20.18)
          • type:Point
          • coordinates: [28.765531245550594, -20.183316728197145]
            • 0:28.765531245550594
            • 1:-20.183316728197145
        • properties: rural
          • type:rural
          • Map:20
      • 1279: Feature (Point, 2 properties)
        • type:Feature
        • id:1423
        • geometry: Point (-1.88, 12.89)
          • type:Point
          • coordinates: [-1.8817277670036632, 12.886429428545338]
            • 0:-1.8817277670036632
            • 1:12.886429428545338
        • properties: rural
          • type:rural
          • Map:40
      • 1280: Feature (Point, 2 properties)
        • type:Feature
        • id:1424
        • geometry: Point (35.07, 6.53)
          • type:Point
          • coordinates: [35.074832492016526, 6.526563585760419]
            • 0:35.074832492016526
            • 1:6.526563585760419
        • properties: rural
          • type:rural
          • Map:30
      • 1281: Feature (Point, 2 properties)
        • type:Feature
        • id:1425
        • geometry: Point (-5.37, 19.55)
          • type:Point
          • coordinates: [-5.369722965614918, 19.551727843533097]
            • 0:-5.369722965614918
            • 1:19.551727843533097
        • properties: rural
          • type:rural
          • Map:60
      • 1282: Feature (Point, 2 properties)
        • type:Feature
        • id:1428
        • geometry: Point (37.27, 2.09)
          • type:Point
          • coordinates: [37.27042740386977, 2.0939471896911344]
            • 0:37.27042740386977
            • 1:2.0939471896911344
        • properties: rural
          • type:rural
          • Map:20
      • 1283: Feature (Point, 2 properties)
        • type:Feature
        • id:1429
        • geometry: Point (25.28, -11.51)
          • type:Point
          • coordinates: [25.28277626964704, -11.512752396251363]
            • 0:25.28277626964704
            • 1:-11.512752396251363
        • properties: rural
          • type:rural
          • Map:10
      • 1284: Feature (Point, 2 properties)
        • type:Feature
        • id:1430
        • geometry: Point (30.43, -12.51)
          • type:Point
          • coordinates: [30.43150976422954, -12.511405631900386]
            • 0:30.43150976422954
            • 1:-12.511405631900386
        • properties: rural
          • type:rural
          • Map:10
      • 1285: Feature (Point, 2 properties)
        • type:Feature
        • id:1431
        • geometry: Point (13.97, -8.04)
          • type:Point
          • coordinates: [13.968903561605652, -8.036229595061325]
            • 0:13.968903561605652
            • 1:-8.036229595061325
        • properties: rural
          • type:rural
          • Map:10
      • 1286: Feature (Point, 2 properties)
        • type:Feature
        • id:1432
        • geometry: Point (-9.71, 15.76)
          • type:Point
          • coordinates: [-9.713580168021446, 15.75839794231049]
            • 0:-9.713580168021446
            • 1:15.75839794231049
        • properties: rural
          • type:rural
          • Map:30
      • 1287: Feature (Point, 2 properties)
        • type:Feature
        • id:1433
        • geometry: Point (33.42, -1.80)
          • type:Point
          • coordinates: [33.423563653302715, -1.79752023830415]
            • 0:33.423563653302715
            • 1:-1.79752023830415
        • properties: rural
          • type:rural
          • Map:80
      • 1288: Feature (Point, 2 properties)
        • type:Feature
        • id:1434
        • geometry: Point (34.64, -1.72)
          • type:Point
          • coordinates: [34.64035240551651, -1.7240785003408798]
            • 0:34.64035240551651
            • 1:-1.7240785003408798
        • properties: rural
          • type:rural
          • Map:20
      • 1289: Feature (Point, 2 properties)
        • type:Feature
        • id:1435
        • geometry: Point (-12.61, 12.74)
          • type:Point
          • coordinates: [-12.611384541089784, 12.739860362339867]
            • 0:-12.611384541089784
            • 1:12.739860362339867
        • properties: rural
          • type:rural
          • Map:10
      • 1290: Feature (Point, 2 properties)
        • type:Feature
        • id:1436
        • geometry: Point (24.91, -7.02)
          • type:Point
          • coordinates: [24.912185949416138, -7.019917913647299]
            • 0:24.912185949416138
            • 1:-7.019917913647299
        • properties: rural
          • type:rural
          • Map:30
      • 1291: Feature (Point, 2 properties)
        • type:Feature
        • id:1437
        • geometry: Point (28.36, -16.30)
          • type:Point
          • coordinates: [28.359246683843907, -16.296370628669354]
            • 0:28.359246683843907
            • 1:-16.296370628669354
        • properties: rural
          • type:rural
          • Map:20
      • 1292: Feature (Point, 2 properties)
        • type:Feature
        • id:1438
        • geometry: Point (-9.35, 25.22)
          • type:Point
          • coordinates: [-9.345059349813404, 25.216962332659033]
            • 0:-9.345059349813404
            • 1:25.216962332659033
        • properties: rural
          • type:rural
          • Map:60
      • 1293: Feature (Point, 2 properties)
        • type:Feature
        • id:1439
        • geometry: Point (-2.60, 9.56)
          • type:Point
          • coordinates: [-2.6019867944482318, 9.559961329992722]
            • 0:-2.6019867944482318
            • 1:9.559961329992722
        • properties: rural
          • type:rural
          • Map:20
      • 1294: Feature (Point, 2 properties)
        • type:Feature
        • id:1440
        • geometry: Point (38.97, -2.74)
          • type:Point
          • coordinates: [38.96586282293505, -2.737336061257983]
            • 0:38.96586282293505
            • 1:-2.737336061257983
        • properties: rural
          • type:rural
          • Map:20
      • 1295: Feature (Point, 2 properties)
        • type:Feature
        • id:1441
        • geometry: Point (-14.11, 15.46)
          • type:Point
          • coordinates: [-14.107985749943829, 15.46409295767532]
            • 0:-14.107985749943829
            • 1:15.46409295767532
        • properties: rural
          • type:rural
          • Map:30
      • 1296: Feature (Point, 2 properties)
        • type:Feature
        • id:1442
        • geometry: Point (48.59, -19.82)
          • type:Point
          • coordinates: [48.58821392836723, -19.82478778913855]
            • 0:48.58821392836723
            • 1:-19.82478778913855
        • properties: rural
          • type:rural
          • Map:30
      • 1297: Feature (Point, 2 properties)
        • type:Feature
        • id:1443
        • geometry: Point (20.84, 1.92)
          • type:Point
          • coordinates: [20.84107596661539, 1.9162147229454305]
            • 0:20.84107596661539
            • 1:1.9162147229454305
        • properties: rural
          • type:rural
          • Map:10
      • 1298: Feature (Point, 2 properties)
        • type:Feature
        • id:1444
        • geometry: Point (30.52, -9.64)
          • type:Point
          • coordinates: [30.518950093453956, -9.63835420068823]
            • 0:30.518950093453956
            • 1:-9.63835420068823
        • properties: rural
          • type:rural
          • Map:10
      • 1299: Feature (Point, 2 properties)
        • type:Feature
        • id:1445
        • geometry: Point (37.56, 3.64)
          • type:Point
          • coordinates: [37.55611967403062, 3.636536226595983]
            • 0:37.55611967403062
            • 1:3.636536226595983
        • properties: rural
          • type:rural
          • Map:30
      • 1300: Feature (Point, 2 properties)
        • type:Feature
        • id:1446
        • geometry: Point (36.65, -4.97)
          • type:Point
          • coordinates: [36.64695758319005, -4.974929515669135]
            • 0:36.64695758319005
            • 1:-4.974929515669135
        • properties: rural
          • type:rural
          • Map:20
      • 1301: Feature (Point, 2 properties)
        • type:Feature
        • id:1447
        • geometry: Point (14.27, -12.45)
          • type:Point
          • coordinates: [14.27132124782154, -12.45470945754461]
            • 0:14.27132124782154
            • 1:-12.45470945754461
        • properties: rural
          • type:rural
          • Map:20
      • 1302: Feature (Point, 2 properties)
        • type:Feature
        • id:1448
        • geometry: Point (-3.35, 18.10)
          • type:Point
          • coordinates: [-3.3484661685727835, 18.096260191058086]
            • 0:-3.3484661685727835
            • 1:18.096260191058086
        • properties: rural
          • type:rural
          • Map:60
      • 1303: Feature (Point, 2 properties)
        • type:Feature
        • id:1449
        • geometry: Point (27.99, -4.85)
          • type:Point
          • coordinates: [27.987882340759782, -4.852726003212591]
            • 0:27.987882340759782
            • 1:-4.852726003212591
        • properties: rural
          • type:rural
          • Map:10
      • 1304: Feature (Point, 2 properties)
        • type:Feature
        • id:1450
        • geometry: Point (-7.32, 16.88)
          • type:Point
          • coordinates: [-7.322301808577234, 16.880443892842813]
            • 0:-7.322301808577234
            • 1:16.880443892842813
        • properties: rural
          • type:rural
          • Map:60
      • 1305: Feature (Point, 2 properties)
        • type:Feature
        • id:1451
        • geometry: Point (30.34, -16.55)
          • type:Point
          • coordinates: [30.335341083621678, -16.551339804768407]
            • 0:30.335341083621678
            • 1:-16.551339804768407
        • properties: rural
          • type:rural
          • Map:20
      • 1306: Feature (Point, 2 properties)
        • type:Feature
        • id:1452
        • geometry: Point (-7.04, 22.03)
          • type:Point
          • coordinates: [-7.036177864582274, 22.02535925147873]
            • 0:-7.036177864582274
            • 1:22.02535925147873
        • properties: rural
          • type:rural
          • Map:60
      • 1307: Feature (Point, 2 properties)
        • type:Feature
        • id:1453
        • geometry: Point (-3.86, 11.53)
          • type:Point
          • coordinates: [-3.864891110333701, 11.525916901331742]
            • 0:-3.864891110333701
            • 1:11.525916901331742
        • properties: rural
          • type:rural
          • Map:20
      • 1308: Feature (Point, 2 properties)
        • type:Feature
        • id:1454
        • geometry: Point (-8.91, 6.47)
          • type:Point
          • coordinates: [-8.906874055771555, 6.471818914207365]
            • 0:-8.906874055771555
            • 1:6.471818914207365
        • properties: rural
          • type:rural
          • Map:10
      • 1309: Feature (Point, 2 properties)
        • type:Feature
        • id:1455
        • geometry: Point (-10.52, 24.09)
          • type:Point
          • coordinates: [-10.516621696736987, 24.089564943924806]
            • 0:-10.516621696736987
            • 1:24.089564943924806
        • properties: rural
          • type:rural
          • Map:60
      • 1310: Feature (Point, 2 properties)
        • type:Feature
        • id:1456
        • geometry: Point (0.55, 20.92)
          • type:Point
          • coordinates: [0.5466230222066506, 20.92206123659377]
            • 0:0.5466230222066506
            • 1:20.92206123659377
        • properties: rural
          • type:rural
          • Map:60
      • 1311: Feature (Point, 2 properties)
        • type:Feature
        • id:1457
        • geometry: Point (1.55, 16.07)
          • type:Point
          • coordinates: [1.5479178712708277, 16.06795536561133]
            • 0:1.5479178712708277
            • 1:16.06795536561133
        • properties: rural
          • type:rural
          • Map:30
      • 1312: Feature (Point, 2 properties)
        • type:Feature
        • id:1458
        • geometry: Point (22.18, -6.90)
          • type:Point
          • coordinates: [22.181315976432714, -6.901668861989686]
            • 0:22.181315976432714
            • 1:-6.901668861989686
        • properties: rural
          • type:rural
          • Map:30
      • 1313: Feature (Point, 2 properties)
        • type:Feature
        • id:1459
        • geometry: Point (39.61, 0.17)
          • type:Point
          • coordinates: [39.614226256778544, 0.17446097044554004]
            • 0:39.614226256778544
            • 1:0.17446097044554004
        • properties: rural
          • type:rural
          • Map:20
      • 1314: Feature (Point, 2 properties)
        • type:Feature
        • id:1460
        • geometry: Point (13.45, -15.24)
          • type:Point
          • coordinates: [13.453781290262114, -15.243740299534291]
            • 0:13.453781290262114
            • 1:-15.243740299534291
        • properties: rural
          • type:rural
          • Map:20
      • 1315: Feature (Point, 2 properties)
        • type:Feature
        • id:1461
        • geometry: Point (19.03, -12.00)
          • type:Point
          • coordinates: [19.027330891306686, -11.996795805967722]
            • 0:19.027330891306686
            • 1:-11.996795805967722
        • properties: rural
          • type:rural
          • Map:10
      • 1316: Feature (Point, 2 properties)
        • type:Feature
        • id:1462
        • geometry: Point (-8.28, 17.76)
          • type:Point
          • coordinates: [-8.27864067723474, 17.75688830196276]
            • 0:-8.27864067723474
            • 1:17.75688830196276
        • properties: rural
          • type:rural
          • Map:60
      • 1317: Feature (Point, 2 properties)
        • type:Feature
        • id:1463
        • geometry: Point (21.94, -0.82)
          • type:Point
          • coordinates: [21.935075545691223, -0.82233784109634]
            • 0:21.935075545691223
            • 1:-0.82233784109634
        • properties: rural
          • type:rural
          • Map:10
      • 1318: Feature (Point, 2 properties)
        • type:Feature
        • id:1464
        • geometry: Point (35.28, 3.55)
          • type:Point
          • coordinates: [35.28019374137828, 3.545235503610832]
            • 0:35.28019374137828
            • 1:3.545235503610832
        • properties: rural
          • type:rural
          • Map:30
      • 1319: Feature (Point, 2 properties)
        • type:Feature
        • id:1465
        • geometry: Point (-12.30, 15.07)
          • type:Point
          • coordinates: [-12.298415377246648, 15.071448918491857]
            • 0:-12.298415377246648
            • 1:15.071448918491857
        • properties: rural
          • type:rural
          • Map:20
      • 1320: Feature (Point, 2 properties)
        • type:Feature
        • id:1466
        • geometry: Point (28.30, -2.40)
          • type:Point
          • coordinates: [28.303975062305764, -2.3992076472647774]
            • 0:28.303975062305764
            • 1:-2.3992076472647774
        • properties: rural
          • type:rural
          • Map:10
      • 1321: Feature (Point, 2 properties)
        • type:Feature
        • id:1468
        • geometry: Point (47.07, 7.20)
          • type:Point
          • coordinates: [47.066836527347924, 7.20061611037921]
            • 0:47.066836527347924
            • 1:7.20061611037921
        • properties: rural
          • type:rural
          • Map:20
      • 1322: Feature (Point, 2 properties)
        • type:Feature
        • id:1469
        • geometry: Point (22.76, 2.04)
          • type:Point
          • coordinates: [22.762289698095692, 2.0397723098287805]
            • 0:22.762289698095692
            • 1:2.0397723098287805
        • properties: rural
          • type:rural
          • Map:10
      • 1323: Feature (Point, 2 properties)
        • type:Feature
        • id:1470
        • geometry: Point (37.97, 3.90)
          • type:Point
          • coordinates: [37.97091617082968, 3.903026279011048]
            • 0:37.97091617082968
            • 1:3.903026279011048
        • properties: rural
          • type:rural
          • Map:30
      • 1324: Feature (Point, 2 properties)
        • type:Feature
        • id:1471
        • geometry: Point (14.64, 3.98)
          • type:Point
          • coordinates: [14.64183294122315, 3.983898677855892]
            • 0:14.64183294122315
            • 1:3.983898677855892
        • properties: rural
          • type:rural
          • Map:10
      • 1325: Feature (Point, 2 properties)
        • type:Feature
        • id:1472
        • geometry: Point (20.77, -13.75)
          • type:Point
          • coordinates: [20.770272227357957, -13.754541212634967]
            • 0:20.770272227357957
            • 1:-13.754541212634967
        • properties: rural
          • type:rural
          • Map:10
      • 1326: Feature (Point, 2 properties)
        • type:Feature
        • id:1473
        • geometry: Point (21.29, 0.38)
          • type:Point
          • coordinates: [21.28761057383195, 0.3812158580802693]
            • 0:21.28761057383195
            • 1:0.3812158580802693
        • properties: rural
          • type:rural
          • Map:10
      • 1327: Feature (Point, 2 properties)
        • type:Feature
        • id:1474
        • geometry: Point (34.73, -10.56)
          • type:Point
          • coordinates: [34.73193157625959, -10.56139603821671]
            • 0:34.73193157625959
            • 1:-10.56139603821671
        • properties: rural
          • type:rural
          • Map:10
      • 1328: Feature (Point, 2 properties)
        • type:Feature
        • id:1475
        • geometry: Point (31.27, -20.86)
          • type:Point
          • coordinates: [31.270920416747895, -20.86158857974734]
            • 0:31.270920416747895
            • 1:-20.86158857974734
        • properties: rural
          • type:rural
          • Map:20
      • 1329: Feature (Point, 2 properties)
        • type:Feature
        • id:1477
        • geometry: Point (29.56, -15.22)
          • type:Point
          • coordinates: [29.56162903173189, -15.215465774688482]
            • 0:29.56162903173189
            • 1:-15.215465774688482
        • properties: rural
          • type:rural
          • Map:20
      • 1330: Feature (Point, 2 properties)
        • type:Feature
        • id:1478
        • geometry: Point (33.82, -3.47)
          • type:Point
          • coordinates: [33.821084724451715, -3.4672546113017164]
            • 0:33.821084724451715
            • 1:-3.4672546113017164
        • properties: rural
          • type:rural
          • Map:40
      • 1331: Feature (Point, 2 properties)
        • type:Feature
        • id:1479
        • geometry: Point (-1.88, 9.39)
          • type:Point
          • coordinates: [-1.8834267887854292, 9.385513017698964]
            • 0:-1.8834267887854292
            • 1:9.385513017698964
        • properties: rural
          • type:rural
          • Map:30
      • 1332: Feature (Point, 2 properties)
        • type:Feature
        • id:1481
        • geometry: Point (27.63, -13.84)
          • type:Point
          • coordinates: [27.628017211327734, -13.844035183971318]
            • 0:27.628017211327734
            • 1:-13.844035183971318
        • properties: rural
          • type:rural
          • Map:30
      • 1333: Feature (Point, 2 properties)
        • type:Feature
        • id:1482
        • geometry: Point (26.77, -9.07)
          • type:Point
          • coordinates: [26.773019376970204, -9.073732886081617]
            • 0:26.773019376970204
            • 1:-9.073732886081617
        • properties: rural
          • type:rural
          • Map:10
      • 1334: Feature (Point, 2 properties)
        • type:Feature
        • id:1483
        • geometry: Point (19.59, 2.84)
          • type:Point
          • coordinates: [19.58685534066198, 2.8431057492009133]
            • 0:19.58685534066198
            • 1:2.8431057492009133
        • properties: rural
          • type:rural
          • Map:10
      • 1335: Feature (Point, 2 properties)
        • type:Feature
        • id:1484
        • geometry: Point (29.45, -6.56)
          • type:Point
          • coordinates: [29.4462783151213, -6.559730169741377]
            • 0:29.4462783151213
            • 1:-6.559730169741377
        • properties: rural
          • type:rural
          • Map:30
      • 1336: Feature (Point, 2 properties)
        • type:Feature
        • id:1486
        • geometry: Point (36.29, -7.99)
          • type:Point
          • coordinates: [36.29337804409978, -7.985781373247601]
            • 0:36.29337804409978
            • 1:-7.985781373247601
        • properties: rural
          • type:rural
          • Map:10
      • 1337: Feature (Point, 2 properties)
        • type:Feature
        • id:1487
        • geometry: Point (-4.52, 16.12)
          • type:Point
          • coordinates: [-4.522390413738778, 16.116079406579306]
            • 0:-4.522390413738778
            • 1:16.116079406579306
        • properties: rural
          • type:rural
          • Map:30
      • 1338: Feature (Point, 2 properties)
        • type:Feature
        • id:1488
        • geometry: Point (-5.18, 15.38)
          • type:Point
          • coordinates: [-5.17965078702466, 15.380071087896466]
            • 0:-5.17965078702466
            • 1:15.380071087896466
        • properties: rural
          • type:rural
          • Map:30
      • 1339: Feature (Point, 2 properties)
        • type:Feature
        • id:1490
        • geometry: Point (42.28, 6.82)
          • type:Point
          • coordinates: [42.28332147791328, 6.82314877223563]
            • 0:42.28332147791328
            • 1:6.82314877223563
        • properties: rural
          • type:rural
          • Map:20
      • 1340: Feature (Point, 2 properties)
        • type:Feature
        • id:1492
        • geometry: Point (35.71, -11.12)
          • type:Point
          • coordinates: [35.70839672372952, -11.11847370234544]
            • 0:35.70839672372952
            • 1:-11.11847370234544
        • properties: rural
          • type:rural
          • Map:10
      • 1341: Feature (Point, 2 properties)
        • type:Feature
        • id:1493
        • geometry: Point (41.99, 11.86)
          • type:Point
          • coordinates: [41.99001684288608, 11.863464395896615]
            • 0:41.99001684288608
            • 1:11.863464395896615
        • properties: rural
          • type:rural
          • Map:60
      • 1342: Feature (Point, 2 properties)
        • type:Feature
        • id:1494
        • geometry: Point (28.66, -19.23)
          • type:Point
          • coordinates: [28.66453374891607, -19.230937541580825]
            • 0:28.66453374891607
            • 1:-19.230937541580825
        • properties: rural
          • type:rural
          • Map:20
      • 1343: Feature (Point, 2 properties)
        • type:Feature
        • id:1495
        • geometry: Point (24.73, -2.98)
          • type:Point
          • coordinates: [24.725072338774282, -2.979837851351286]
            • 0:24.725072338774282
            • 1:-2.979837851351286
        • properties: rural
          • type:rural
          • Map:10
      • 1344: Feature (Point, 2 properties)
        • type:Feature
        • id:1496
        • geometry: Point (20.56, -0.96)
          • type:Point
          • coordinates: [20.56237820898213, -0.9551772431048882]
            • 0:20.56237820898213
            • 1:-0.9551772431048882
        • properties: rural
          • type:rural
          • Map:10
      • 1345: Feature (Point, 2 properties)
        • type:Feature
        • id:1497
        • geometry: Point (-1.39, 17.08)
          • type:Point
          • coordinates: [-1.3884872888601116, 17.08342665054551]
            • 0:-1.3884872888601116
            • 1:17.08342665054551
        • properties: rural
          • type:rural
          • Map:60
      • 1346: Feature (Point, 2 properties)
        • type:Feature
        • id:1498
        • geometry: Point (46.81, -16.20)
          • type:Point
          • coordinates: [46.81108189296186, -16.20293601958573]
            • 0:46.81108189296186
            • 1:-16.20293601958573
        • properties: rural
          • type:rural
          • Map:10
      • 1347: Feature (Point, 2 properties)
        • type:Feature
        • id:1499
        • geometry: Point (36.70, -9.09)
          • type:Point
          • coordinates: [36.704665753450016, -9.087846976325896]
            • 0:36.704665753450016
            • 1:-9.087846976325896
        • properties: rural
          • type:rural
          • Map:10
      • 1348: Feature (Point, 2 properties)
        • type:Feature
        • id:1500
        • geometry: Point (29.27, -20.71)
          • type:Point
          • coordinates: [29.270375556026654, -20.70726536229655]
            • 0:29.270375556026654
            • 1:-20.70726536229655
        • properties: rural
          • type:rural
          • Map:20
      • 1349: Feature (Point, 2 properties)
        • type:Feature
        • id:1501
        • geometry: Point (15.07, 7.17)
          • type:Point
          • coordinates: [15.067352933450229, 7.167696580170126]
            • 0:15.067352933450229
            • 1:7.167696580170126
        • properties: rural
          • type:rural
          • Map:10
      • 1350: Feature (Point, 2 properties)
        • type:Feature
        • id:1502
        • geometry: Point (-0.09, 7.57)
          • type:Point
          • coordinates: [-0.09013465041004537, 7.5684558691263675]
            • 0:-0.09013465041004537
            • 1:7.5684558691263675
        • properties: rural
          • type:rural
          • Map:10
      • 1351: Feature (Point, 2 properties)
        • type:Feature
        • id:1503
        • geometry: Point (30.87, -21.58)
          • type:Point
          • coordinates: [30.8710039760593, -21.58453440934365]
            • 0:30.8710039760593
            • 1:-21.58453440934365
        • properties: rural
          • type:rural
          • Map:20
      • 1352: Feature (Point, 2 properties)
        • type:Feature
        • id:1504
        • geometry: Point (19.31, -12.96)
          • type:Point
          • coordinates: [19.314508850160728, -12.958646360141628]
            • 0:19.314508850160728
            • 1:-12.958646360141628
        • properties: rural
          • type:rural
          • Map:10
      • 1353: Feature (Point, 2 properties)
        • type:Feature
        • id:1505
        • geometry: Point (3.51, 15.73)
          • type:Point
          • coordinates: [3.5051712498908256, 15.731354220118963]
            • 0:3.5051712498908256
            • 1:15.731354220118963
        • properties: rural
          • type:rural
          • Map:30
      • 1354: Feature (Point, 2 properties)
        • type:Feature
        • id:1506
        • geometry: Point (14.48, 6.18)
          • type:Point
          • coordinates: [14.479225179406662, 6.178632866385836]
            • 0:14.479225179406662
            • 1:6.178632866385836
        • properties: rural
          • type:rural
          • Map:10
      • 1355: Feature (Point, 2 properties)
        • type:Feature
        • id:1507
        • geometry: Point (28.03, -9.02)
          • type:Point
          • coordinates: [28.03225824662166, -9.020066352379809]
            • 0:28.03225824662166
            • 1:-9.020066352379809
        • properties: rural
          • type:rural
          • Map:30
      • 1356: Feature (Point, 2 properties)
        • type:Feature
        • id:1508
        • geometry: Point (-8.64, 22.44)
          • type:Point
          • coordinates: [-8.635755895013608, 22.444946453008853]
            • 0:-8.635755895013608
            • 1:22.444946453008853
        • properties: rural
          • type:rural
          • Map:60
      • 1357: Feature (Point, 2 properties)
        • type:Feature
        • id:1509
        • geometry: Point (29.03, -7.53)
          • type:Point
          • coordinates: [29.025699597693905, -7.534953451123279]
            • 0:29.025699597693905
            • 1:-7.534953451123279
        • properties: rural
          • type:rural
          • Map:30
      • 1358: Feature (Point, 2 properties)
        • type:Feature
        • id:1510
        • geometry: Point (10.12, 4.86)
          • type:Point
          • coordinates: [10.120654484272645, 4.864917616767198]
            • 0:10.120654484272645
            • 1:4.864917616767198
        • properties: rural
          • type:rural
          • Map:10
      • 1359: Feature (Point, 2 properties)
        • type:Feature
        • id:1511
        • geometry: Point (23.51, -12.12)
          • type:Point
          • coordinates: [23.51056031584335, -12.120956237085734]
            • 0:23.51056031584335
            • 1:-12.120956237085734
        • properties: rural
          • type:rural
          • Map:10
      • 1360: Feature (Point, 2 properties)
        • type:Feature
        • id:1512
        • geometry: Point (25.42, 1.06)
          • type:Point
          • coordinates: [25.41864472382381, 1.055204981156348]
            • 0:25.41864472382381
            • 1:1.055204981156348
        • properties: rural
          • type:rural
          • Map:10
      • 1361: Feature (Point, 2 properties)
        • type:Feature
        • id:1514
        • geometry: Point (20.65, -14.86)
          • type:Point
          • coordinates: [20.649023589824573, -14.856099650707614]
            • 0:20.649023589824573
            • 1:-14.856099650707614
        • properties: rural
          • type:rural
          • Map:10
      • 1362: Feature (Point, 2 properties)
        • type:Feature
        • id:1515
        • geometry: Point (-7.11, 12.72)
          • type:Point
          • coordinates: [-7.107119648978672, 12.724967731838518]
            • 0:-7.107119648978672
            • 1:12.724967731838518
        • properties: rural
          • type:rural
          • Map:40
      • 1363: Feature (Point, 2 properties)
        • type:Feature
        • id:1516
        • geometry: Point (27.90, 3.83)
          • type:Point
          • coordinates: [27.904507337789187, 3.8326202943929553]
            • 0:27.904507337789187
            • 1:3.8326202943929553
        • properties: rural
          • type:rural
          • Map:20
      • 1364: Feature (Point, 2 properties)
        • type:Feature
        • id:1517
        • geometry: Point (26.98, -15.39)
          • type:Point
          • coordinates: [26.975262226142682, -15.394917807456602]
            • 0:26.975262226142682
            • 1:-15.394917807456602
        • properties: rural
          • type:rural
          • Map:30
      • 1365: Feature (Point, 2 properties)
        • type:Feature
        • id:1518
        • geometry: Point (44.63, 6.77)
          • type:Point
          • coordinates: [44.62999639215705, 6.76754475825247]
            • 0:44.62999639215705
            • 1:6.76754475825247
        • properties: rural
          • type:rural
          • Map:20
      • 1366: Feature (Point, 2 properties)
        • type:Feature
        • id:1519
        • geometry: Point (-8.79, 17.40)
          • type:Point
          • coordinates: [-8.793328842515557, 17.39610962422116]
            • 0:-8.793328842515557
            • 1:17.39610962422116
        • properties: rural
          • type:rural
          • Map:60
      • 1367: Feature (Point, 2 properties)
        • type:Feature
        • id:1520
        • geometry: Point (27.56, 0.33)
          • type:Point
          • coordinates: [27.555473215363428, 0.3287916999115518]
            • 0:27.555473215363428
            • 1:0.3287916999115518
        • properties: rural
          • type:rural
          • Map:10
      • 1368: Feature (Point, 2 properties)
        • type:Feature
        • id:1521
        • geometry: Point (33.71, -6.59)
          • type:Point
          • coordinates: [33.709530077422585, -6.58744069655633]
            • 0:33.709530077422585
            • 1:-6.58744069655633
        • properties: rural
          • type:rural
          • Map:10
      • 1369: Feature (Point, 2 properties)
        • type:Feature
        • id:1523
        • geometry: Point (11.94, 3.21)
          • type:Point
          • coordinates: [11.935366488862911, 3.205588193950703]
            • 0:11.935366488862911
            • 1:3.205588193950703
        • properties: rural
          • type:rural
          • Map:10
      • 1370: Feature (Point, 2 properties)
        • type:Feature
        • id:1524
        • geometry: Point (20.88, -0.43)
          • type:Point
          • coordinates: [20.878607179474557, -0.4271039157958639]
            • 0:20.878607179474557
            • 1:-0.4271039157958639
        • properties: rural
          • type:rural
          • Map:10
      • 1371: Feature (Point, 2 properties)
        • type:Feature
        • id:1525
        • geometry: Point (15.02, 7.42)
          • type:Point
          • coordinates: [15.01892418336374, 7.417331626925847]
            • 0:15.01892418336374
            • 1:7.417331626925847
        • properties: rural
          • type:rural
          • Map:10
      • 1372: Feature (Point, 2 properties)
        • type:Feature
        • id:1526
        • geometry: Point (29.80, -9.07)
          • type:Point
          • coordinates: [29.799453048721972, -9.071590487269154]
            • 0:29.799453048721972
            • 1:-9.071590487269154
        • properties: rural
          • type:rural
          • Map:20
      • 1373: Feature (Point, 2 properties)
        • type:Feature
        • id:1528
        • geometry: Point (-7.52, 24.32)
          • type:Point
          • coordinates: [-7.52257918418423, 24.322858311751858]
            • 0:-7.52257918418423
            • 1:24.322858311751858
        • properties: rural
          • type:rural
          • Map:60
      • 1374: Feature (Point, 2 properties)
        • type:Feature
        • id:1529
        • geometry: Point (3.28, 16.17)
          • type:Point
          • coordinates: [3.284007720163329, 16.172731760751688]
            • 0:3.284007720163329
            • 1:16.172731760751688
        • properties: rural
          • type:rural
          • Map:30
      • 1375: Feature (Point, 2 properties)
        • type:Feature
        • id:1530
        • geometry: Point (-4.53, 18.60)
          • type:Point
          • coordinates: [-4.533957265134335, 18.60074581412786]
            • 0:-4.533957265134335
            • 1:18.60074581412786
        • properties: rural
          • type:rural
          • Map:60
      • 1376: Feature (Point, 2 properties)
        • type:Feature
        • id:1531
        • geometry: Point (35.09, 4.61)
          • type:Point
          • coordinates: [35.08979920451913, 4.611513617015965]
            • 0:35.08979920451913
            • 1:4.611513617015965
        • properties: rural
          • type:rural
          • Map:30
      • 1377: Feature (Point, 2 properties)
        • type:Feature
        • id:1532
        • geometry: Point (19.15, -6.85)
          • type:Point
          • coordinates: [19.147607419167983, -6.8533188636786155]
            • 0:19.147607419167983
            • 1:-6.8533188636786155
        • properties: rural
          • type:rural
          • Map:30
      • 1378: Feature (Point, 2 properties)
        • type:Feature
        • id:1533
        • geometry: Point (23.99, -9.91)
          • type:Point
          • coordinates: [23.98917351049773, -9.913526386445762]
            • 0:23.98917351049773
            • 1:-9.913526386445762
        • properties: rural
          • type:rural
          • Map:30
      • 1379: Feature (Point, 2 properties)
        • type:Feature
        • id:1534
        • geometry: Point (29.11, -11.35)
          • type:Point
          • coordinates: [29.11465108316701, -11.347252779507432]
            • 0:29.11465108316701
            • 1:-11.347252779507432
        • properties: rural
          • type:rural
          • Map:10
      • 1380: Feature (Point, 2 properties)
        • type:Feature
        • id:1535
        • geometry: Point (-9.31, 24.23)
          • type:Point
          • coordinates: [-9.314073759022236, 24.227673470569716]
            • 0:-9.314073759022236
            • 1:24.227673470569716
        • properties: rural
          • type:rural
          • Map:60
      • 1381: Feature (Point, 2 properties)
        • type:Feature
        • id:1537
        • geometry: Point (-16.62, 12.62)
          • type:Point
          • coordinates: [-16.61901354214036, 12.61883310693965]
            • 0:-16.61901354214036
            • 1:12.61883310693965
        • properties: rural
          • type:rural
          • Map:80
      • 1382: Feature (Point, 2 properties)
        • type:Feature
        • id:1538
        • geometry: Point (20.12, -7.46)
          • type:Point
          • coordinates: [20.124980478122854, -7.464432025832034]
            • 0:20.124980478122854
            • 1:-7.464432025832034
        • properties: rural
          • type:rural
          • Map:30
      • 1383: Feature (Point, 2 properties)
        • type:Feature
        • id:1539
        • geometry: Point (27.01, 0.10)
          • type:Point
          • coordinates: [27.005236054795102, 0.10482119378828808]
            • 0:27.005236054795102
            • 1:0.10482119378828808
        • properties: rural
          • type:rural
          • Map:10
      • 1384: Feature (Point, 2 properties)
        • type:Feature
        • id:1540
        • geometry: Point (48.77, -16.32)
          • type:Point
          • coordinates: [48.77033816916466, -16.320732489362644]
            • 0:48.77033816916466
            • 1:-16.320732489362644
        • properties: rural
          • type:rural
          • Map:10
      • 1385: Feature (Point, 2 properties)
        • type:Feature
        • id:1541
        • geometry: Point (27.58, 4.69)
          • type:Point
          • coordinates: [27.580207160437592, 4.691146264426159]
            • 0:27.580207160437592
            • 1:4.691146264426159
        • properties: rural
          • type:rural
          • Map:10
      • 1386: Feature (Point, 2 properties)
        • type:Feature
        • id:1542
        • geometry: Point (34.62, 3.63)
          • type:Point
          • coordinates: [34.61853351682461, 3.6322666738859883]
            • 0:34.61853351682461
            • 1:3.6322666738859883
        • properties: rural
          • type:rural
          • Map:30
      • 1387: Feature (Point, 2 properties)
        • type:Feature
        • id:1543
        • geometry: Point (20.59, -6.25)
          • type:Point
          • coordinates: [20.591237057365262, -6.250019965471589]
            • 0:20.591237057365262
            • 1:-6.250019965471589
        • properties: rural
          • type:rural
          • Map:10
      • 1388: Feature (Point, 2 properties)
        • type:Feature
        • id:1544
        • geometry: Point (44.52, -24.62)
          • type:Point
          • coordinates: [44.51757773415392, -24.620671283362686]
            • 0:44.51757773415392
            • 1:-24.620671283362686
        • properties: rural
          • type:rural
          • Map:20
      • 1389: Feature (Point, 2 properties)
        • type:Feature
        • id:1545
        • geometry: Point (34.66, 7.85)
          • type:Point
          • coordinates: [34.65565819872833, 7.849116576265152]
            • 0:34.65565819872833
            • 1:7.849116576265152
        • properties: rural
          • type:rural
          • Map:10
      • 1390: Feature (Point, 2 properties)
        • type:Feature
        • id:1546
        • geometry: Point (37.89, -9.35)
          • type:Point
          • coordinates: [37.89420962375075, -9.351089754466084]
            • 0:37.89420962375075
            • 1:-9.351089754466084
        • properties: rural
          • type:rural
          • Map:20
      • 1391: Feature (Point, 2 properties)
        • type:Feature
        • id:1547
        • geometry: Point (32.02, -19.75)
          • type:Point
          • coordinates: [32.02301699929446, -19.74888170743651]
            • 0:32.02301699929446
            • 1:-19.74888170743651
        • properties: rural
          • type:rural
          • Map:40
      • 1392: Feature (Point, 2 properties)
        • type:Feature
        • id:1548
        • geometry: Point (31.38, -3.77)
          • type:Point
          • coordinates: [31.37877021191698, -3.7679634957462005]
            • 0:31.37877021191698
            • 1:-3.7679634957462005
        • properties: rural
          • type:rural
          • Map:30
      • 1393: Feature (Point, 2 properties)
        • type:Feature
        • id:1549
        • geometry: Point (16.81, -13.40)
          • type:Point
          • coordinates: [16.807394846195866, -13.398883939837713]
            • 0:16.807394846195866
            • 1:-13.398883939837713
        • properties: rural
          • type:rural
          • Map:30
      • 1394: Feature (Point, 2 properties)
        • type:Feature
        • id:1550
        • geometry: Point (-13.81, 17.33)
          • type:Point
          • coordinates: [-13.812326562531872, 17.333877776087434]
            • 0:-13.812326562531872
            • 1:17.333877776087434
        • properties: rural
          • type:rural
          • Map:30
      • 1395: Feature (Point, 2 properties)
        • type:Feature
        • id:1551
        • geometry: Point (28.44, 0.54)
          • type:Point
          • coordinates: [28.444427456952862, 0.544387602234405]
            • 0:28.444427456952862
            • 1:0.544387602234405
        • properties: rural
          • type:rural
          • Map:10
      • 1396: Feature (Point, 2 properties)
        • type:Feature
        • id:1552
        • geometry: Point (13.08, 9.20)
          • type:Point
          • coordinates: [13.083299256132465, 9.195722436403656]
            • 0:13.083299256132465
            • 1:9.195722436403656
        • properties: rural
          • type:rural
          • Map:20
      • 1397: Feature (Point, 2 properties)
        • type:Feature
        • id:1553
        • geometry: Point (18.72, -1.24)
          • type:Point
          • coordinates: [18.724800514325054, -1.2384226490013057]
            • 0:18.724800514325054
            • 1:-1.2384226490013057
        • properties: rural
          • type:rural
          • Map:10
      • 1398: Feature (Point, 2 properties)
        • type:Feature
        • id:1554
        • geometry: Point (35.91, 8.47)
          • type:Point
          • coordinates: [35.91328104209075, 8.46741990858249]
            • 0:35.91328104209075
            • 1:8.46741990858249
        • properties: rural
          • type:rural
          • Map:10
      • 1399: Feature (Point, 2 properties)
        • type:Feature
        • id:1555
        • geometry: Point (12.86, 7.81)
          • type:Point
          • coordinates: [12.862269199034445, 7.813849148529116]
            • 0:12.862269199034445
            • 1:7.813849148529116
        • properties: rural
          • type:rural
          • Map:10
      • 1400: Feature (Point, 2 properties)
        • type:Feature
        • id:1556
        • geometry: Point (35.90, -1.68)
          • type:Point
          • coordinates: [35.89554458697928, -1.6780147148143154]
            • 0:35.89554458697928
            • 1:-1.6780147148143154
        • properties: rural
          • type:rural
          • Map:20
      • 1401: Feature (Point, 2 properties)
        • type:Feature
        • id:1557
        • geometry: Point (40.65, 14.23)
          • type:Point
          • coordinates: [40.64911096691603, 14.227085294884011]
            • 0:40.64911096691603
            • 1:14.227085294884011
        • properties: rural
          • type:rural
          • Map:60
      • 1402: Feature (Point, 2 properties)
        • type:Feature
        • id:1558
        • geometry: Point (20.93, -3.21)
          • type:Point
          • coordinates: [20.929727720947152, -3.209227783080845]
            • 0:20.929727720947152
            • 1:-3.209227783080845
        • properties: rural
          • type:rural
          • Map:10
      • 1403: Feature (Point, 2 properties)
        • type:Feature
        • id:1559
        • geometry: Point (34.95, 10.61)
          • type:Point
          • coordinates: [34.9525941692238, 10.606021044170603]
            • 0:34.9525941692238
            • 1:10.606021044170603
        • properties: rural
          • type:rural
          • Map:10
      • 1404: Feature (Point, 2 properties)
        • type:Feature
        • id:1560
        • geometry: Point (22.31, -16.09)
          • type:Point
          • coordinates: [22.307468390653533, -16.087204539696643]
            • 0:22.307468390653533
            • 1:-16.087204539696643
        • properties: rural
          • type:rural
          • Map:20
      • 1405: Feature (Point, 2 properties)
        • type:Feature
        • id:1561
        • geometry: Point (13.33, 7.50)
          • type:Point
          • coordinates: [13.328361491725317, 7.504900868621457]
            • 0:13.328361491725317
            • 1:7.504900868621457
        • properties: rural
          • type:rural
          • Map:10
      • 1406: Feature (Point, 2 properties)
        • type:Feature
        • id:1562
        • geometry: Point (44.39, -23.18)
          • type:Point
          • coordinates: [44.39301259233163, -23.17657762520867]
            • 0:44.39301259233163
            • 1:-23.17657762520867
        • properties: rural
          • type:rural
          • Map:30
      • 1407: Feature (Point, 2 properties)
        • type:Feature
        • id:1563
        • geometry: Point (-6.34, 20.20)
          • type:Point
          • coordinates: [-6.342493072235857, 20.199874555232597]
            • 0:-6.342493072235857
            • 1:20.199874555232597
        • properties: rural
          • type:rural
          • Map:60
      • 1408: Feature (Point, 2 properties)
        • type:Feature
        • id:1564
        • geometry: Point (27.29, -13.43)
          • type:Point
          • coordinates: [27.285807949570376, -13.430701291970902]
            • 0:27.285807949570376
            • 1:-13.430701291970902
        • properties: rural
          • type:rural
          • Map:10
      • 1409: Feature (Point, 2 properties)
        • type:Feature
        • id:1565
        • geometry: Point (28.83, -8.97)
          • type:Point
          • coordinates: [28.831406134541986, -8.972948733146719]
            • 0:28.831406134541986
            • 1:-8.972948733146719
        • properties: rural
          • type:rural
          • Map:80
      • 1410: Feature (Point, 2 properties)
        • type:Feature
        • id:1566
        • geometry: Point (39.61, 6.50)
          • type:Point
          • coordinates: [39.609868776954876, 6.502003599107935]
            • 0:39.609868776954876
            • 1:6.502003599107935
        • properties: rural
          • type:rural
          • Map:10
      • 1411: Feature (Point, 2 properties)
        • type:Feature
        • id:1567
        • geometry: Point (-0.67, 15.72)
          • type:Point
          • coordinates: [-0.6687319933999452, 15.7225220717996]
            • 0:-0.6687319933999452
            • 1:15.7225220717996
        • properties: rural
          • type:rural
          • Map:30
      • 1412: Feature (Point, 2 properties)
        • type:Feature
        • id:1568
        • geometry: Point (29.74, 2.49)
          • type:Point
          • coordinates: [29.73706897411542, 2.487831941903584]
            • 0:29.73706897411542
            • 1:2.487831941903584
        • properties: rural
          • type:rural
          • Map:10
      • 1413: Feature (Point, 2 properties)
        • type:Feature
        • id:1569
        • geometry: Point (20.54, -11.74)
          • type:Point
          • coordinates: [20.542652162655184, -11.743152923343539]
            • 0:20.542652162655184
            • 1:-11.743152923343539
        • properties: rural
          • type:rural
          • Map:30
      • 1414: Feature (Point, 2 properties)
        • type:Feature
        • id:1570
        • geometry: Point (38.36, 7.57)
          • type:Point
          • coordinates: [38.35800723495442, 7.566038916902959]
            • 0:38.35800723495442
            • 1:7.566038916902959
        • properties: rural
          • type:rural
          • Map:40
      • 1415: Feature (Point, 2 properties)
        • type:Feature
        • id:1571
        • geometry: Point (-5.00, 19.61)
          • type:Point
          • coordinates: [-5.004515020265837, 19.606105762971445]
            • 0:-5.004515020265837
            • 1:19.606105762971445
        • properties: rural
          • type:rural
          • Map:60
      • 1416: Feature (Point, 2 properties)
        • type:Feature
        • id:1572
        • geometry: Point (25.74, -14.61)
          • type:Point
          • coordinates: [25.744972485738277, -14.608584766203489]
            • 0:25.744972485738277
            • 1:-14.608584766203489
        • properties: rural
          • type:rural
          • Map:10
      • 1417: Feature (Point, 2 properties)
        • type:Feature
        • id:1573
        • geometry: Point (22.44, -10.27)
          • type:Point
          • coordinates: [22.43646606186144, -10.26729344844545]
            • 0:22.43646606186144
            • 1:-10.26729344844545
        • properties: rural
          • type:rural
          • Map:30
      • 1418: Feature (Point, 2 properties)
        • type:Feature
        • id:1574
        • geometry: Point (24.77, -9.38)
          • type:Point
          • coordinates: [24.770228309862098, -9.379045081503934]
            • 0:24.770228309862098
            • 1:-9.379045081503934
        • properties: rural
          • type:rural
          • Map:20
      • 1419: Feature (Point, 2 properties)
        • type:Feature
        • id:1575
        • geometry: Point (27.56, 4.24)
          • type:Point
          • coordinates: [27.561820537628222, 4.243128034634624]
            • 0:27.561820537628222
            • 1:4.243128034634624
        • properties: rural
          • type:rural
          • Map:10
      • 1420: Feature (Point, 2 properties)
        • type:Feature
        • id:1576
        • geometry: Point (-7.18, 17.53)
          • type:Point
          • coordinates: [-7.18429897663483, 17.5256543960982]
            • 0:-7.18429897663483
            • 1:17.5256543960982
        • properties: rural
          • type:rural
          • Map:60
      • 1421: Feature (Point, 2 properties)
        • type:Feature
        • id:1577
        • geometry: Point (26.24, -19.07)
          • type:Point
          • coordinates: [26.23545852106654, -19.06927349036924]
            • 0:26.23545852106654
            • 1:-19.06927349036924
        • properties: rural
          • type:rural
          • Map:20
      • 1422: Feature (Point, 2 properties)
        • type:Feature
        • id:1578
        • geometry: Point (38.13, 1.65)
          • type:Point
          • coordinates: [38.1322995495215, 1.6521959231002392]
            • 0:38.1322995495215
            • 1:1.6521959231002392
        • properties: rural
          • type:rural
          • Map:30
      • 1423: Feature (Point, 2 properties)
        • type:Feature
        • id:1579
        • geometry: Point (-1.18, 8.10)
          • type:Point
          • coordinates: [-1.1781428712376352, 8.095567582414008]
            • 0:-1.1781428712376352
            • 1:8.095567582414008
        • properties: rural
          • type:rural
          • Map:20
      • 1424: Feature (Point, 2 properties)
        • type:Feature
        • id:1580
        • geometry: Point (33.11, -4.04)
          • type:Point
          • coordinates: [33.11403968394057, -4.041710170310387]
            • 0:33.11403968394057
            • 1:-4.041710170310387
        • properties: rural
          • type:rural
          • Map:40
      • 1425: Feature (Point, 2 properties)
        • type:Feature
        • id:1581
        • geometry: Point (25.43, -2.30)
          • type:Point
          • coordinates: [25.432230047245884, -2.295809145705002]
            • 0:25.432230047245884
            • 1:-2.295809145705002
        • properties: rural
          • type:rural
          • Map:10
      • 1426: Feature (Point, 2 properties)
        • type:Feature
        • id:1582
        • geometry: Point (-4.71, 10.44)
          • type:Point
          • coordinates: [-4.711841950059743, 10.439858664437464]
            • 0:-4.711841950059743
            • 1:10.439858664437464
        • properties: rural
          • type:rural
          • Map:10
      • 1427: Feature (Point, 2 properties)
        • type:Feature
        • id:1583
        • geometry: Point (-6.52, 23.53)
          • type:Point
          • coordinates: [-6.518383337794302, 23.529665133686272]
            • 0:-6.518383337794302
            • 1:23.529665133686272
        • properties: rural
          • type:rural
          • Map:60
      • 1428: Feature (Point, 2 properties)
        • type:Feature
        • id:1585
        • geometry: Point (24.63, -6.04)
          • type:Point
          • coordinates: [24.633643977606734, -6.042954912956727]
            • 0:24.633643977606734
            • 1:-6.042954912956727
        • properties: rural
          • type:rural
          • Map:30
      • 1429: Feature (Point, 2 properties)
        • type:Feature
        • id:1586
        • geometry: Point (37.31, 3.10)
          • type:Point
          • coordinates: [37.31092206940548, 3.102715331028559]
            • 0:37.31092206940548
            • 1:3.102715331028559
        • properties: rural
          • type:rural
          • Map:60
      • 1430: Feature (Point, 2 properties)
        • type:Feature
        • id:1587
        • geometry: Point (24.72, -1.77)
          • type:Point
          • coordinates: [24.723083485668198, -1.765441611710567]
            • 0:24.723083485668198
            • 1:-1.765441611710567
        • properties: rural
          • type:rural
          • Map:10
      • 1431: Feature (Point, 2 properties)
        • type:Feature
        • id:1588
        • geometry: Point (44.16, -24.69)
          • type:Point
          • coordinates: [44.161032450196174, -24.688294504791237]
            • 0:44.161032450196174
            • 1:-24.688294504791237
        • properties: rural
          • type:rural
          • Map:20
      • 1432: Feature (Point, 2 properties)
        • type:Feature
        • id:1589
        • geometry: Point (21.05, 3.37)
          • type:Point
          • coordinates: [21.047955030329465, 3.3687190636959996]
            • 0:21.047955030329465
            • 1:3.3687190636959996
        • properties: rural
          • type:rural
          • Map:10
      • 1433: Feature (Point, 2 properties)
        • type:Feature
        • id:1590
        • geometry: Point (24.26, -2.13)
          • type:Point
          • coordinates: [24.26090775899459, -2.1348337172579552]
            • 0:24.26090775899459
            • 1:-2.1348337172579552
        • properties: rural
          • type:rural
          • Map:30
      • 1434: Feature (Point, 2 properties)
        • type:Feature
        • id:1591
        • geometry: Point (13.51, -5.05)
          • type:Point
          • coordinates: [13.511453336700356, -5.053260323856073]
            • 0:13.511453336700356
            • 1:-5.053260323856073
        • properties: rural
          • type:rural
          • Map:10
      • 1435: Feature (Point, 2 properties)
        • type:Feature
        • id:1593
        • geometry: Point (-0.46, 12.74)
          • type:Point
          • coordinates: [-0.4555042426722682, 12.741397501817946]
            • 0:-0.4555042426722682
            • 1:12.741397501817946
        • properties: rural
          • type:rural
          • Map:30
      • 1436: Feature (Point, 2 properties)
        • type:Feature
        • id:1595
        • geometry: Point (47.89, -14.97)
          • type:Point
          • coordinates: [47.89031238410212, -14.965128505082305]
            • 0:47.89031238410212
            • 1:-14.965128505082305
        • properties: rural
          • type:rural
          • Map:30
      • 1437: Feature (Point, 2 properties)
        • type:Feature
        • id:1596
        • geometry: Point (41.79, 5.00)
          • type:Point
          • coordinates: [41.78890858337213, 4.996005226234961]
            • 0:41.78890858337213
            • 1:4.996005226234961
        • properties: rural
          • type:rural
          • Map:20
      • 1438: Feature (Point, 2 properties)
        • type:Feature
        • id:1597
        • geometry: Point (22.71, -10.57)
          • type:Point
          • coordinates: [22.712394071655638, -10.570880728588296]
            • 0:22.712394071655638
            • 1:-10.570880728588296
        • properties: rural
          • type:rural
          • Map:10
      • 1439: Feature (Point, 2 properties)
        • type:Feature
        • id:1598
        • geometry: Point (21.18, -9.20)
          • type:Point
          • coordinates: [21.182637731520572, -9.198196733995866]
            • 0:21.182637731520572
            • 1:-9.198196733995866
        • properties: rural
          • type:rural
          • Map:30
      • 1440: Feature (Point, 2 properties)
        • type:Feature
        • id:1599
        • geometry: Point (-5.95, 17.92)
          • type:Point
          • coordinates: [-5.951661835946992, 17.91789421942168]
            • 0:-5.951661835946992
            • 1:17.91789421942168
        • properties: rural
          • type:rural
          • Map:60
      • 1441: Feature (Point, 2 properties)
        • type:Feature
        • id:1600
        • geometry: Point (45.90, -20.80)
          • type:Point
          • coordinates: [45.89709635194468, -20.79645207610748]
            • 0:45.89709635194468
            • 1:-20.79645207610748
        • properties: rural
          • type:rural
          • Map:30
      • 1442: Feature (Point, 2 properties)
        • type:Feature
        • id:1601
        • geometry: Point (39.21, -1.48)
          • type:Point
          • coordinates: [39.21276194781019, -1.4787906274539935]
            • 0:39.21276194781019
            • 1:-1.4787906274539935
        • properties: rural
          • type:rural
          • Map:20
      • 1443: Feature (Point, 2 properties)
        • type:Feature
        • id:1603
        • geometry: Point (28.81, -13.69)
          • type:Point
          • coordinates: [28.81299402174237, -13.689233229200818]
            • 0:28.81299402174237
            • 1:-13.689233229200818
        • properties: rural
          • type:rural
          • Map:10
      • 1444: Feature (Point, 2 properties)
        • type:Feature
        • id:1604
        • geometry: Point (13.20, 8.36)
          • type:Point
          • coordinates: [13.196346557549711, 8.357197830229355]
            • 0:13.196346557549711
            • 1:8.357197830229355
        • properties: rural
          • type:rural
          • Map:10
      • 1445: Feature (Point, 2 properties)
        • type:Feature
        • id:1605
        • geometry: Point (27.76, -8.09)
          • type:Point
          • coordinates: [27.76110357219961, -8.092546489422075]
            • 0:27.76110357219961
            • 1:-8.092546489422075
        • properties: rural
          • type:rural
          • Map:10
      • 1446: Feature (Point, 2 properties)
        • type:Feature
        • id:1606
        • geometry: Point (-6.55, 24.92)
          • type:Point
          • coordinates: [-6.549737682371023, 24.923634324123828]
            • 0:-6.549737682371023
            • 1:24.923634324123828
        • properties: rural
          • type:rural
          • Map:60
      • 1447: Feature (Point, 2 properties)
        • type:Feature
        • id:1607
        • geometry: Point (-9.92, 14.70)
          • type:Point
          • coordinates: [-9.923591568028021, 14.698934558598085]
            • 0:-9.923591568028021
            • 1:14.698934558598085
        • properties: rural
          • type:rural
          • Map:30
      • 1448: Feature (Point, 2 properties)
        • type:Feature
        • id:1608
        • geometry: Point (26.45, -11.56)
          • type:Point
          • coordinates: [26.451719411062978, -11.558851681716005]
            • 0:26.451719411062978
            • 1:-11.558851681716005
        • properties: rural
          • type:rural
          • Map:10
      • 1449: Feature (Point, 2 properties)
        • type:Feature
        • id:1610
        • geometry: Point (42.94, 5.01)
          • type:Point
          • coordinates: [42.94183266048495, 5.009307649530911]
            • 0:42.94183266048495
            • 1:5.009307649530911
        • properties: rural
          • type:rural
          • Map:30
      • 1450: Feature (Point, 2 properties)
        • type:Feature
        • id:1611
        • geometry: Point (-1.84, 20.50)
          • type:Point
          • coordinates: [-1.8405959681810422, 20.497521162200183]
            • 0:-1.8405959681810422
            • 1:20.497521162200183
        • properties: rural
          • type:rural
          • Map:60
      • 1451: Feature (Point, 2 properties)
        • type:Feature
        • id:1612
        • geometry: Point (-6.97, 24.99)
          • type:Point
          • coordinates: [-6.972992273520795, 24.994644858035258]
            • 0:-6.972992273520795
            • 1:24.994644858035258
        • properties: rural
          • type:rural
          • Map:60
      • 1452: Feature (Point, 2 properties)
        • type:Feature
        • id:1613
        • geometry: Point (26.43, 4.03)
          • type:Point
          • coordinates: [26.43345868646018, 4.031792201999039]
            • 0:26.43345868646018
            • 1:4.031792201999039
        • properties: rural
          • type:rural
          • Map:10
      • 1453: Feature (Point, 2 properties)
        • type:Feature
        • id:1614
        • geometry: Point (33.82, -7.36)
          • type:Point
          • coordinates: [33.81955277996022, -7.361636315644046]
            • 0:33.81955277996022
            • 1:-7.361636315644046
        • properties: rural
          • type:rural
          • Map:10
      • 1454: Feature (Point, 2 properties)
        • type:Feature
        • id:1615
        • geometry: Point (23.48, -3.67)
          • type:Point
          • coordinates: [23.483452886439412, -3.6737317928214597]
            • 0:23.483452886439412
            • 1:-3.6737317928214597
        • properties: rural
          • type:rural
          • Map:10
      • 1455: Feature (Point, 2 properties)
        • type:Feature
        • id:1616
        • geometry: Point (36.42, 3.41)
          • type:Point
          • coordinates: [36.422664521579705, 3.4092218693825247]
            • 0:36.422664521579705
            • 1:3.4092218693825247
        • properties: rural
          • type:rural
          • Map:60
      • 1456: Feature (Point, 2 properties)
        • type:Feature
        • id:1617
        • geometry: Point (44.67, 6.33)
          • type:Point
          • coordinates: [44.67103246468898, 6.326384371886502]
            • 0:44.67103246468898
            • 1:6.326384371886502
        • properties: rural
          • type:rural
          • Map:20
      • 1457: Feature (Point, 2 properties)
        • type:Feature
        • id:1618
        • geometry: Point (15.12, -11.05)
          • type:Point
          • coordinates: [15.118389926291803, -11.047117257041895]
            • 0:15.118389926291803
            • 1:-11.047117257041895
        • properties: rural
          • type:rural
          • Map:30
      • 1458: Feature (Point, 2 properties)
        • type:Feature
        • id:1619
        • geometry: Point (24.28, -15.04)
          • type:Point
          • coordinates: [24.276113729717917, -15.042202217611495]
            • 0:24.276113729717917
            • 1:-15.042202217611495
        • properties: rural
          • type:rural
          • Map:10
      • 1459: Feature (Point, 2 properties)
        • type:Feature
        • id:1620
        • geometry: Point (32.07, -1.66)
          • type:Point
          • coordinates: [32.067485206608296, -1.6561848236733354]
            • 0:32.067485206608296
            • 1:-1.6561848236733354
        • properties: rural
          • type:rural
          • Map:80
      • 1460: Feature (Point, 2 properties)
        • type:Feature
        • id:1621
        • geometry: Point (25.20, 2.81)
          • type:Point
          • coordinates: [25.203350642340446, 2.8128847116135534]
            • 0:25.203350642340446
            • 1:2.8128847116135534
        • properties: rural
          • type:rural
          • Map:10
      • 1461: Feature (Point, 2 properties)
        • type:Feature
        • id:1622
        • geometry: Point (17.76, -17.06)
          • type:Point
          • coordinates: [17.75960049903271, -17.058885855805855]
            • 0:17.75960049903271
            • 1:-17.058885855805855
        • properties: rural
          • type:rural
          • Map:20
      • 1462: Feature (Point, 2 properties)
        • type:Feature
        • id:1623
        • geometry: Point (-15.58, 20.23)
          • type:Point
          • coordinates: [-15.580411228668078, 20.228054968726166]
            • 0:-15.580411228668078
            • 1:20.228054968726166
        • properties: rural
          • type:rural
          • Map:60
      • 1463: Feature (Point, 2 properties)
        • type:Feature
        • id:1624
        • geometry: Point (24.21, -15.48)
          • type:Point
          • coordinates: [24.20848895844666, -15.480118060604509]
            • 0:24.20848895844666
            • 1:-15.480118060604509
        • properties: rural
          • type:rural
          • Map:10
      • 1464: Feature (Point, 2 properties)
        • type:Feature
        • id:1625
        • geometry: Point (47.13, -16.45)
          • type:Point
          • coordinates: [47.13094680020707, -16.45395444745978]
            • 0:47.13094680020707
            • 1:-16.45395444745978
        • properties: rural
          • type:rural
          • Map:30
      • 1465: Feature (Point, 2 properties)
        • type:Feature
        • id:1626
        • geometry: Point (15.70, -5.89)
          • type:Point
          • coordinates: [15.7046398442178, -5.888979363154586]
            • 0:15.7046398442178
            • 1:-5.888979363154586
        • properties: rural
          • type:rural
          • Map:30
      • 1466: Feature (Point, 2 properties)
        • type:Feature
        • id:1627
        • geometry: Point (21.67, -0.05)
          • type:Point
          • coordinates: [21.67223384966092, -0.04605860577201176]
            • 0:21.67223384966092
            • 1:-0.04605860577201176
        • properties: rural
          • type:rural
          • Map:10
      • 1467: Feature (Point, 2 properties)
        • type:Feature
        • id:1628
        • geometry: Point (-13.90, 17.27)
          • type:Point
          • coordinates: [-13.904529895607949, 17.26676885176139]
            • 0:-13.904529895607949
            • 1:17.26676885176139
        • properties: rural
          • type:rural
          • Map:30
      • 1468: Feature (Point, 2 properties)
        • type:Feature
        • id:1629
        • geometry: Point (19.38, -2.26)
          • type:Point
          • coordinates: [19.381486112603852, -2.262365300918796]
            • 0:19.381486112603852
            • 1:-2.262365300918796
        • properties: rural
          • type:rural
          • Map:10
      • 1469: Feature (Point, 2 properties)
        • type:Feature
        • id:1630
        • geometry: Point (36.34, -2.17)
          • type:Point
          • coordinates: [36.3382266066863, -2.1729763059951224]
            • 0:36.3382266066863
            • 1:-2.1729763059951224
        • properties: rural
          • type:rural
          • Map:20
      • 1470: Feature (Point, 2 properties)
        • type:Feature
        • id:1632
        • geometry: Point (13.61, -14.63)
          • type:Point
          • coordinates: [13.612132705683342, -14.632660524058442]
            • 0:13.612132705683342
            • 1:-14.632660524058442
        • properties: rural
          • type:rural
          • Map:20
      • 1471: Feature (Point, 2 properties)
        • type:Feature
        • id:1633
        • geometry: Point (26.13, -13.06)
          • type:Point
          • coordinates: [26.12796104131544, -13.062614454118478]
            • 0:26.12796104131544
            • 1:-13.062614454118478
        • properties: rural
          • type:rural
          • Map:10
      • 1472: Feature (Point, 2 properties)
        • type:Feature
        • id:1634
        • geometry: Point (22.02, -15.93)
          • type:Point
          • coordinates: [22.023767696986777, -15.925961321089291]
            • 0:22.023767696986777
            • 1:-15.925961321089291
        • properties: rural
          • type:rural
          • Map:30
      • 1473: Feature (Point, 2 properties)
        • type:Feature
        • id:1635
        • geometry: Point (27.02, -11.44)
          • type:Point
          • coordinates: [27.015401044223786, -11.436396814429974]
            • 0:27.015401044223786
            • 1:-11.436396814429974
        • properties: rural
          • type:rural
          • Map:10
      • 1474: Feature (Point, 2 properties)
        • type:Feature
        • id:1636
        • geometry: Point (19.72, 3.03)
          • type:Point
          • coordinates: [19.721270475778855, 3.0321710965394106]
            • 0:19.721270475778855
            • 1:3.0321710965394106
        • properties: rural
          • type:rural
          • Map:10
      • 1475: Feature (Point, 2 properties)
        • type:Feature
        • id:1637
        • geometry: Point (30.63, -16.32)
          • type:Point
          • coordinates: [30.630652904933026, -16.320013056806648]
            • 0:30.630652904933026
            • 1:-16.320013056806648
        • properties: rural
          • type:rural
          • Map:20
      • 1476: Feature (Point, 2 properties)
        • type:Feature
        • id:1639
        • geometry: Point (30.56, -10.51)
          • type:Point
          • coordinates: [30.55950976153911, -10.509912546507051]
            • 0:30.55950976153911
            • 1:-10.509912546507051
        • properties: rural
          • type:rural
          • Map:20
      • 1477: Feature (Point, 2 properties)
        • type:Feature
        • id:1640
        • geometry: Point (30.98, -3.37)
          • type:Point
          • coordinates: [30.97933200906497, -3.3741548755560284]
            • 0:30.97933200906497
            • 1:-3.3741548755560284
        • properties: rural
          • type:rural
          • Map:30
      • 1478: Feature (Point, 2 properties)
        • type:Feature
        • id:1641
        • geometry: Point (42.33, 6.63)
          • type:Point
          • coordinates: [42.33081422914268, 6.626003266870155]
            • 0:42.33081422914268
            • 1:6.626003266870155
        • properties: rural
          • type:rural
          • Map:30
      • 1479: Feature (Point, 2 properties)
        • type:Feature
        • id:1642
        • geometry: Point (34.83, 7.20)
          • type:Point
          • coordinates: [34.830942881706186, 7.198842074918582]
            • 0:34.830942881706186
            • 1:7.198842074918582
        • properties: rural
          • type:rural
          • Map:10
      • 1480: Feature (Point, 2 properties)
        • type:Feature
        • id:1643
        • geometry: Point (-15.47, 17.30)
          • type:Point
          • coordinates: [-15.474568098536842, 17.301474952133674]
            • 0:-15.474568098536842
            • 1:17.301474952133674
        • properties: rural
          • type:rural
          • Map:30
      • 1481: Feature (Point, 2 properties)
        • type:Feature
        • id:1644
        • geometry: Point (3.91, 18.65)
          • type:Point
          • coordinates: [3.9142137512860278, 18.65456907918711]
            • 0:3.9142137512860278
            • 1:18.65456907918711
        • properties: rural
          • type:rural
          • Map:60
      • 1482: Feature (Point, 2 properties)
        • type:Feature
        • id:1645
        • geometry: Point (25.24, -10.93)
          • type:Point
          • coordinates: [25.238090876493406, -10.930075840562349]
            • 0:25.238090876493406
            • 1:-10.930075840562349
        • properties: rural
          • type:rural
          • Map:10
      • 1483: Feature (Point, 2 properties)
        • type:Feature
        • id:1646
        • geometry: Point (-8.96, 25.33)
          • type:Point
          • coordinates: [-8.960293128799522, 25.326785159842007]
            • 0:-8.960293128799522
            • 1:25.326785159842007
        • properties: rural
          • type:rural
          • Map:60
      • 1484: Feature (Point, 2 properties)
        • type:Feature
        • id:1647
        • geometry: Point (-0.34, 8.79)
          • type:Point
          • coordinates: [-0.34363820335527107, 8.79194325247295]
            • 0:-0.34363820335527107
            • 1:8.79194325247295
        • properties: rural
          • type:rural
          • Map:30
      • 1485: Feature (Point, 2 properties)
        • type:Feature
        • id:1648
        • geometry: Point (13.32, -13.23)
          • type:Point
          • coordinates: [13.317924717481022, -13.232485190121327]
            • 0:13.317924717481022
            • 1:-13.232485190121327
        • properties: rural
          • type:rural
          • Map:20
      • 1486: Feature (Point, 2 properties)
        • type:Feature
        • id:1649
        • geometry: Point (31.76, -19.59)
          • type:Point
          • coordinates: [31.764335423458387, -19.58548700855467]
            • 0:31.764335423458387
            • 1:-19.58548700855467
        • properties: rural
          • type:rural
          • Map:10
      • 1487: Feature (Point, 2 properties)
        • type:Feature
        • id:1651
        • geometry: Point (0.11, 19.08)
          • type:Point
          • coordinates: [0.11298152143387205, 19.077091084110197]
            • 0:0.11298152143387205
            • 1:19.077091084110197
        • properties: rural
          • type:rural
          • Map:60
      • 1488: Feature (Point, 2 properties)
        • type:Feature
        • id:1652
        • geometry: Point (18.50, -4.77)
          • type:Point
          • coordinates: [18.496759584657877, -4.765838969073915]
            • 0:18.496759584657877
            • 1:-4.765838969073915
        • properties: rural
          • type:rural
          • Map:30
      • 1489: Feature (Point, 2 properties)
        • type:Feature
        • id:1653
        • geometry: Point (18.21, -7.84)
          • type:Point
          • coordinates: [18.210598700709493, -7.837892572705487]
            • 0:18.210598700709493
            • 1:-7.837892572705487
        • properties: rural
          • type:rural
          • Map:30
      • 1490: Feature (Point, 2 properties)
        • type:Feature
        • id:1654
        • geometry: Point (24.16, -10.28)
          • type:Point
          • coordinates: [24.15772370374824, -10.276097025759773]
            • 0:24.15772370374824
            • 1:-10.276097025759773
        • properties: rural
          • type:rural
          • Map:10
      • 1491: Feature (Point, 2 properties)
        • type:Feature
        • id:1655
        • geometry: Point (25.60, 3.99)
          • type:Point
          • coordinates: [25.59879077866922, 3.987875400553989]
            • 0:25.59879077866922
            • 1:3.987875400553989
        • properties: rural
          • type:rural
          • Map:10
      • 1492: Feature (Point, 2 properties)
        • type:Feature
        • id:1656
        • geometry: Point (24.07, -4.69)
          • type:Point
          • coordinates: [24.072121711180866, -4.692909634461042]
            • 0:24.072121711180866
            • 1:-4.692909634461042
        • properties: rural
          • type:rural
          • Map:10
      • 1493: Feature (Point, 2 properties)
        • type:Feature
        • id:1657
        • geometry: Point (41.41, 4.04)
          • type:Point
          • coordinates: [41.40659229870083, 4.035742411967518]
            • 0:41.40659229870083
            • 1:4.035742411967518
        • properties: rural
          • type:rural
          • Map:30
      • 1494: Feature (Point, 2 properties)
        • type:Feature
        • id:1658
        • geometry: Point (-6.58, 11.21)
          • type:Point
          • coordinates: [-6.583014739314144, 11.210307293333955]
            • 0:-6.583014739314144
            • 1:11.210307293333955
        • properties: rural
          • type:rural
          • Map:20
      • 1495: Feature (Point, 2 properties)
        • type:Feature
        • id:1660
        • geometry: Point (40.34, 2.99)
          • type:Point
          • coordinates: [40.336470346121985, 2.9859507732183057]
            • 0:40.336470346121985
            • 1:2.9859507732183057
        • properties: rural
          • type:rural
          • Map:20
      • 1496: Feature (Point, 2 properties)
        • type:Feature
        • id:1661
        • geometry: Point (40.13, 10.64)
          • type:Point
          • coordinates: [40.130183169787365, 10.63951643994541]
            • 0:40.130183169787365
            • 1:10.63951643994541
        • properties: rural
          • type:rural
          • Map:20
      • 1497: Feature (Point, 2 properties)
        • type:Feature
        • id:1662
        • geometry: Point (28.95, -10.77)
          • type:Point
          • coordinates: [28.95296810826587, -10.768516976591197]
            • 0:28.95296810826587
            • 1:-10.768516976591197
        • properties: rural
          • type:rural
          • Map:10
      • 1498: Feature (Point, 2 properties)
        • type:Feature
        • id:1663
        • geometry: Point (37.57, -9.48)
          • type:Point
          • coordinates: [37.56799390142499, -9.47982814046395]
            • 0:37.56799390142499
            • 1:-9.47982814046395
        • properties: rural
          • type:rural
          • Map:10
      • 1499: Feature (Point, 2 properties)
        • type:Feature
        • id:1664
        • geometry: Point (-11.17, 14.97)
          • type:Point
          • coordinates: [-11.168677781039687, 14.974377129253867]
            • 0:-11.168677781039687
            • 1:14.974377129253867
        • properties: rural
          • type:rural
          • Map:30
      • 1500: Feature (Point, 2 properties)
        • type:Feature
        • id:1665
        • geometry: Point (21.01, -9.94)
          • type:Point
          • coordinates: [21.01094421843034, -9.936877780735934]
            • 0:21.01094421843034
            • 1:-9.936877780735934
        • properties: rural
          • type:rural
          • Map:30
      • 1501: Feature (Point, 2 properties)
        • type:Feature
        • id:1666
        • geometry: Point (31.47, -11.36)
          • type:Point
          • coordinates: [31.469692366595407, -11.36441266742169]
            • 0:31.469692366595407
            • 1:-11.36441266742169
        • properties: rural
          • type:rural
          • Map:10
      • 1502: Feature (Point, 2 properties)
        • type:Feature
        • id:1667
        • geometry: Point (36.52, 3.35)
          • type:Point
          • coordinates: [36.523567863594565, 3.346884375778125]
            • 0:36.523567863594565
            • 1:3.346884375778125
        • properties: rural
          • type:rural
          • Map:60
      • 1503: Feature (Point, 2 properties)
        • type:Feature
        • id:1668
        • geometry: Point (15.64, -6.73)
          • type:Point
          • coordinates: [15.637192523336683, -6.729714831638961]
            • 0:15.637192523336683
            • 1:-6.729714831638961
        • properties: rural
          • type:rural
          • Map:10
      • 1504: Feature (Point, 2 properties)
        • type:Feature
        • id:1669
        • geometry: Point (16.22, -13.39)
          • type:Point
          • coordinates: [16.220273843142742, -13.39148009193266]
            • 0:16.220273843142742
            • 1:-13.39148009193266
        • properties: rural
          • type:rural
          • Map:40
      • 1505: Feature (Point, 2 properties)
        • type:Feature
        • id:1670
        • geometry: Point (47.61, -22.22)
          • type:Point
          • coordinates: [47.605459808876404, -22.224786622050434]
            • 0:47.605459808876404
            • 1:-22.224786622050434
        • properties: rural
          • type:rural
          • Map:10
      • 1506: Feature (Point, 2 properties)
        • type:Feature
        • id:1671
        • geometry: Point (45.07, -18.82)
          • type:Point
          • coordinates: [45.07457933479645, -18.817013307451568]
            • 0:45.07457933479645
            • 1:-18.817013307451568
        • properties: rural
          • type:rural
          • Map:30
      • 1507: Feature (Point, 2 properties)
        • type:Feature
        • id:1672
        • geometry: Point (17.84, -16.87)
          • type:Point
          • coordinates: [17.837888982994848, -16.86727532231553]
            • 0:17.837888982994848
            • 1:-16.86727532231553
        • properties: rural
          • type:rural
          • Map:20
      • 1508: Feature (Point, 2 properties)
        • type:Feature
        • id:1673
        • geometry: Point (36.81, 7.27)
          • type:Point
          • coordinates: [36.80782192571858, 7.2732983331049965]
            • 0:36.80782192571858
            • 1:7.2732983331049965
        • properties: rural
          • type:rural
          • Map:20
      • 1509: Feature (Point, 2 properties)
        • type:Feature
        • id:1674
        • geometry: Point (15.82, -14.92)
          • type:Point
          • coordinates: [15.821899595512448, -14.923896081222807]
            • 0:15.821899595512448
            • 1:-14.923896081222807
        • properties: rural
          • type:rural
          • Map:10
      • 1510: Feature (Point, 2 properties)
        • type:Feature
        • id:1675
        • geometry: Point (-3.96, 22.58)
          • type:Point
          • coordinates: [-3.956876314574286, 22.58007448575988]
            • 0:-3.956876314574286
            • 1:22.58007448575988
        • properties: rural
          • type:rural
          • Map:60
      • 1511: Feature (Point, 2 properties)
        • type:Feature
        • id:1676
        • geometry: Point (28.16, -11.18)
          • type:Point
          • coordinates: [28.163471594067495, -11.184424543035867]
            • 0:28.163471594067495
            • 1:-11.184424543035867
        • properties: rural
          • type:rural
          • Map:10
      • 1512: Feature (Point, 2 properties)
        • type:Feature
        • id:1677
        • geometry: Point (-13.59, 13.33)
          • type:Point
          • coordinates: [-13.592432430003184, 13.326462526262974]
            • 0:-13.592432430003184
            • 1:13.326462526262974
        • properties: rural
          • type:rural
          • Map:10
      • 1513: Feature (Point, 2 properties)
        • type:Feature
        • id:1678
        • geometry: Point (13.94, -15.97)
          • type:Point
          • coordinates: [13.93538750477307, -15.96919958938252]
            • 0:13.93538750477307
            • 1:-15.96919958938252
        • properties: rural
          • type:rural
          • Map:20
      • 1514: Feature (Point, 2 properties)
        • type:Feature
        • id:1680
        • geometry: Point (-11.02, 19.69)
          • type:Point
          • coordinates: [-11.019398264490242, 19.68681918172251]
            • 0:-11.019398264490242
            • 1:19.68681918172251
        • properties: rural
          • type:rural
          • Map:60
      • 1515: Feature (Point, 2 properties)
        • type:Feature
        • id:1681
        • geometry: Point (-5.27, 23.94)
          • type:Point
          • coordinates: [-5.271237676225952, 23.93950808807789]
            • 0:-5.271237676225952
            • 1:23.93950808807789
        • properties: rural
          • type:rural
          • Map:60
      • 1516: Feature (Point, 2 properties)
        • type:Feature
        • id:1682
        • geometry: Point (15.54, -9.87)
          • type:Point
          • coordinates: [15.544643387723983, -9.874986726273303]
            • 0:15.544643387723983
            • 1:-9.874986726273303
        • properties: rural
          • type:rural
          • Map:30
      • 1517: Feature (Point, 2 properties)
        • type:Feature
        • id:1683
        • geometry: Point (45.25, 6.70)
          • type:Point
          • coordinates: [45.25255408377028, 6.703548472961175]
            • 0:45.25255408377028
            • 1:6.703548472961175
        • properties: rural
          • type:rural
          • Map:20
      • 1518: Feature (Point, 2 properties)
        • type:Feature
        • id:1684
        • geometry: Point (-10.08, 15.81)
          • type:Point
          • coordinates: [-10.076207973668573, 15.81157945637134]
            • 0:-10.076207973668573
            • 1:15.81157945637134
        • properties: rural
          • type:rural
          • Map:30
      • 1519: Feature (Point, 2 properties)
        • type:Feature
        • id:1686
        • geometry: Point (14.77, 8.58)
          • type:Point
          • coordinates: [14.768293171129592, 8.575462566905458]
            • 0:14.768293171129592
            • 1:8.575462566905458
        • properties: rural
          • type:rural
          • Map:20
      • 1520: Feature (Point, 2 properties)
        • type:Feature
        • id:1687
        • geometry: Point (40.51, -1.49)
          • type:Point
          • coordinates: [40.5129628016903, -1.4892212123374529]
            • 0:40.5129628016903
            • 1:-1.4892212123374529
        • properties: rural
          • type:rural
          • Map:20
      • 1521: Feature (Point, 2 properties)
        • type:Feature
        • id:1690
        • geometry: Point (-15.92, 17.78)
          • type:Point
          • coordinates: [-15.917738139361052, 17.77627666584358]
            • 0:-15.917738139361052
            • 1:17.77627666584358
        • properties: rural
          • type:rural
          • Map:60
      • 1522: Feature (Point, 2 properties)
        • type:Feature
        • id:1692
        • geometry: Point (23.39, -13.16)
          • type:Point
          • coordinates: [23.3920899046944, -13.15538943578522]
            • 0:23.3920899046944
            • 1:-13.15538943578522
        • properties: rural
          • type:rural
          • Map:10
      • 1523: Feature (Point, 2 properties)
        • type:Feature
        • id:1693
        • geometry: Point (27.37, -5.62)
          • type:Point
          • coordinates: [27.37159547274085, -5.619274921229049]
            • 0:27.37159547274085
            • 1:-5.619274921229049
        • properties: rural
          • type:rural
          • Map:10
      • 1524: Feature (Point, 2 properties)
        • type:Feature
        • id:1694
        • geometry: Point (25.22, -0.27)
          • type:Point
          • coordinates: [25.21581989708332, -0.26678842845199985]
            • 0:25.21581989708332
            • 1:-0.26678842845199985
        • properties: rural
          • type:rural
          • Map:10
      • 1525: Feature (Point, 2 properties)
        • type:Feature
        • id:1695
        • geometry: Point (45.49, 5.51)
          • type:Point
          • coordinates: [45.489016852034325, 5.505603795707474]
            • 0:45.489016852034325
            • 1:5.505603795707474
        • properties: rural
          • type:rural
          • Map:20
      • 1526: Feature (Point, 2 properties)
        • type:Feature
        • id:1698
        • geometry: Point (21.46, -8.51)
          • type:Point
          • coordinates: [21.463208167405575, -8.509869950379107]
            • 0:21.463208167405575
            • 1:-8.509869950379107
        • properties: rural
          • type:rural
          • Map:10
      • 1527: Feature (Point, 2 properties)
        • type:Feature
        • id:1699
        • geometry: Point (12.64, -13.65)
          • type:Point
          • coordinates: [12.636851727413175, -13.64564677284805]
            • 0:12.636851727413175
            • 1:-13.64564677284805
        • properties: rural
          • type:rural
          • Map:20
      • 1528: Feature (Point, 2 properties)
        • type:Feature
        • id:1700
        • geometry: Point (-4.84, 19.49)
          • type:Point
          • coordinates: [-4.844341314312739, 19.486914155598658]
            • 0:-4.844341314312739
            • 1:19.486914155598658
        • properties: rural
          • type:rural
          • Map:60
      • 1529: Feature (Point, 2 properties)
        • type:Feature
        • id:1701
        • geometry: Point (33.99, 8.39)
          • type:Point
          • coordinates: [33.99150933148929, 8.386765118317145]
            • 0:33.99150933148929
            • 1:8.386765118317145
        • properties: rural
          • type:rural
          • Map:30
      • 1530: Feature (Point, 2 properties)
        • type:Feature
        • id:1702
        • geometry: Point (-9.03, 13.63)
          • type:Point
          • coordinates: [-9.026982979277141, 13.627150360583249]
            • 0:-9.026982979277141
            • 1:13.627150360583249
        • properties: rural
          • type:rural
          • Map:30
      • 1531: Feature (Point, 2 properties)
        • type:Feature
        • id:1703
        • geometry: Point (28.56, -2.73)
          • type:Point
          • coordinates: [28.55744894079809, -2.7349283310309835]
            • 0:28.55744894079809
            • 1:-2.7349283310309835
        • properties: rural
          • type:rural
          • Map:30
      • 1532: Feature (Point, 2 properties)
        • type:Feature
        • id:1704
        • geometry: Point (29.83, -19.31)
          • type:Point
          • coordinates: [29.834173505406934, -19.311949529083353]
            • 0:29.834173505406934
            • 1:-19.311949529083353
        • properties: rural
          • type:rural
          • Map:20
      • 1533: Feature (Point, 2 properties)
        • type:Feature
        • id:1707
        • geometry: Point (-14.19, 17.66)
          • type:Point
          • coordinates: [-14.186432946777465, 17.655739280916926]
            • 0:-14.186432946777465
            • 1:17.655739280916926
        • properties: rural
          • type:rural
          • Map:60
      • 1534: Feature (Point, 2 properties)
        • type:Feature
        • id:1708
        • geometry: Point (-9.99, 23.06)
          • type:Point
          • coordinates: [-9.990606608086626, 23.056142350323054]
            • 0:-9.990606608086626
            • 1:23.056142350323054
        • properties: rural
          • type:rural
          • Map:60
      • 1535: Feature (Point, 2 properties)
        • type:Feature
        • id:1709
        • geometry: Point (14.93, -6.33)
          • type:Point
          • coordinates: [14.927756841468339, -6.331723892239972]
            • 0:14.927756841468339
            • 1:-6.331723892239972
        • properties: rural
          • type:rural
          • Map:10
      • 1536: Feature (Point, 2 properties)
        • type:Feature
        • id:1710
        • geometry: Point (32.42, -5.25)
          • type:Point
          • coordinates: [32.418371360155156, -5.248773854525714]
            • 0:32.418371360155156
            • 1:-5.248773854525714
        • properties: rural
          • type:rural
          • Map:10
      • 1537: Feature (Point, 2 properties)
        • type:Feature
        • id:1711
        • geometry: Point (35.76, 0.76)
          • type:Point
          • coordinates: [35.75732443381868, 0.7644474016637535]
            • 0:35.75732443381868
            • 1:0.7644474016637535
        • properties: rural
          • type:rural
          • Map:20
      • 1538: Feature (Point, 2 properties)
        • type:Feature
        • id:1712
        • geometry: Point (32.16, -20.13)
          • type:Point
          • coordinates: [32.157967556586975, -20.134932914033303]
            • 0:32.157967556586975
            • 1:-20.134932914033303
        • properties: rural
          • type:rural
          • Map:20
      • 1539: Feature (Point, 2 properties)
        • type:Feature
        • id:1713
        • geometry: Point (38.56, -4.00)
          • type:Point
          • coordinates: [38.55891503832866, -4.002969941230069]
            • 0:38.55891503832866
            • 1:-4.002969941230069
        • properties: rural
          • type:rural
          • Map:20
      • 1540: Feature (Point, 2 properties)
        • type:Feature
        • id:1714
        • geometry: Point (22.03, -16.24)
          • type:Point
          • coordinates: [22.033783951857618, -16.235283661495124]
            • 0:22.033783951857618
            • 1:-16.235283661495124
        • properties: rural
          • type:rural
          • Map:90
      • 1541: Feature (Point, 2 properties)
        • type:Feature
        • id:1716
        • geometry: Point (17.84, -3.20)
          • type:Point
          • coordinates: [17.836893527917614, -3.203852780048066]
            • 0:17.836893527917614
            • 1:-3.203852780048066
        • properties: rural
          • type:rural
          • Map:20
      • 1542: Feature (Point, 2 properties)
        • type:Feature
        • id:1718
        • geometry: Point (35.10, 3.39)
          • type:Point
          • coordinates: [35.09848322045594, 3.392686880847839]
            • 0:35.09848322045594
            • 1:3.392686880847839
        • properties: rural
          • type:rural
          • Map:30
      • 1543: Feature (Point, 2 properties)
        • type:Feature
        • id:1719
        • geometry: Point (-2.54, 17.44)
          • type:Point
          • coordinates: [-2.5436711366361253, 17.43906002095388]
            • 0:-2.5436711366361253
            • 1:17.43906002095388
        • properties: rural
          • type:rural
          • Map:60
      • 1544: Feature (Point, 2 properties)
        • type:Feature
        • id:1720
        • geometry: Point (-8.83, 14.60)
          • type:Point
          • coordinates: [-8.8284002139493, 14.601760239591316]
            • 0:-8.8284002139493
            • 1:14.601760239591316
        • properties: rural
          • type:rural
          • Map:30
      • 1545: Feature (Point, 2 properties)
        • type:Feature
        • id:1721
        • geometry: Point (27.83, -18.32)
          • type:Point
          • coordinates: [27.832849378311277, -18.324872142452556]
            • 0:27.832849378311277
            • 1:-18.324872142452556
        • properties: rural
          • type:rural
          • Map:20
      • 1546: Feature (Point, 2 properties)
        • type:Feature
        • id:1722
        • geometry: Point (36.92, -8.07)
          • type:Point
          • coordinates: [36.91789733050307, -8.067801617242713]
            • 0:36.91789733050307
            • 1:-8.067801617242713
        • properties: rural
          • type:rural
          • Map:40
      • 1547: Feature (Point, 2 properties)
        • type:Feature
        • id:1723
        • geometry: Point (49.83, -15.28)
          • type:Point
          • coordinates: [49.82972775840827, -15.284319709507274]
            • 0:49.82972775840827
            • 1:-15.284319709507274
        • properties: rural
          • type:rural
          • Map:10
      • 1548: Feature (Point, 2 properties)
        • type:Feature
        • id:1724
        • geometry: Point (29.42, -15.09)
          • type:Point
          • coordinates: [29.41782652767525, -15.089587469131251]
            • 0:29.41782652767525
            • 1:-15.089587469131251
        • properties: rural
          • type:rural
          • Map:10
      • 1549: Feature (Point, 2 properties)
        • type:Feature
        • id:1725
        • geometry: Point (35.51, -2.36)
          • type:Point
          • coordinates: [35.5084891895677, -2.3573189947536615]
            • 0:35.5084891895677
            • 1:-2.3573189947536615
        • properties: rural
          • type:rural
          • Map:20
      • 1550: Feature (Point, 2 properties)
        • type:Feature
        • id:1726
        • geometry: Point (-10.02, 14.26)
          • type:Point
          • coordinates: [-10.024633009124159, 14.264817181591908]
            • 0:-10.024633009124159
            • 1:14.264817181591908
        • properties: rural
          • type:rural
          • Map:20
      • 1551: Feature (Point, 2 properties)
        • type:Feature
        • id:1727
        • geometry: Point (49.33, -17.39)
          • type:Point
          • coordinates: [49.325140325218996, -17.393156129565366]
            • 0:49.325140325218996
            • 1:-17.393156129565366
        • properties: rural
          • type:rural
          • Map:10
      • 1552: Feature (Point, 2 properties)
        • type:Feature
        • id:1728
        • geometry: Point (27.60, -6.37)
          • type:Point
          • coordinates: [27.596588650680484, -6.368708012844352]
            • 0:27.596588650680484
            • 1:-6.368708012844352
        • properties: rural
          • type:rural
          • Map:30
      • 1553: Feature (Point, 2 properties)
        • type:Feature
        • id:1729
        • geometry: Point (38.90, -8.90)
          • type:Point
          • coordinates: [38.899811823386955, -8.90397637853246]
            • 0:38.899811823386955
            • 1:-8.90397637853246
        • properties: rural
          • type:rural
          • Map:10
      • 1554: Feature (Point, 2 properties)
        • type:Feature
        • id:1730
        • geometry: Point (38.42, -8.67)
          • type:Point
          • coordinates: [38.422489280533064, -8.667093885980064]
            • 0:38.422489280533064
            • 1:-8.667093885980064
        • properties: rural
          • type:rural
          • Map:30
      • 1555: Feature (Point, 2 properties)
        • type:Feature
        • id:1731
        • geometry: Point (-9.63, 21.81)
          • type:Point
          • coordinates: [-9.629232734484214, 21.81228683200833]
            • 0:-9.629232734484214
            • 1:21.81228683200833
        • properties: rural
          • type:rural
          • Map:60
      • 1556: Feature (Point, 2 properties)
        • type:Feature
        • id:1732
        • geometry: Point (28.63, -13.64)
          • type:Point
          • coordinates: [28.625495778745762, -13.636891210429138]
            • 0:28.625495778745762
            • 1:-13.636891210429138
        • properties: rural
          • type:rural
          • Map:10
      • 1557: Feature (Point, 2 properties)
        • type:Feature
        • id:1733
        • geometry: Point (17.62, -13.19)
          • type:Point
          • coordinates: [17.624168305361504, -13.188714526192097]
            • 0:17.624168305361504
            • 1:-13.188714526192097
        • properties: rural
          • type:rural
          • Map:10
      • 1558: Feature (Point, 2 properties)
        • type:Feature
        • id:1734
        • geometry: Point (19.41, 2.07)
          • type:Point
          • coordinates: [19.410947269370357, 2.067183857741653]
            • 0:19.410947269370357
            • 1:2.067183857741653
        • properties: rural
          • type:rural
          • Map:10
      • 1559: Feature (Point, 2 properties)
        • type:Feature
        • id:1735
        • geometry: Point (-9.11, 24.55)
          • type:Point
          • coordinates: [-9.106130923005129, 24.55193576680709]
            • 0:-9.106130923005129
            • 1:24.55193576680709
        • properties: rural
          • type:rural
          • Map:60
      • 1560: Feature (Point, 2 properties)
        • type:Feature
        • id:1736
        • geometry: Point (15.17, -12.75)
          • type:Point
          • coordinates: [15.168037809276411, -12.749388284384835]
            • 0:15.168037809276411
            • 1:-12.749388284384835
        • properties: rural
          • type:rural
          • Map:10
      • 1561: Feature (Point, 2 properties)
        • type:Feature
        • id:1737
        • geometry: Point (18.55, -7.13)
          • type:Point
          • coordinates: [18.552007538228064, -7.131404932222384]
            • 0:18.552007538228064
            • 1:-7.131404932222384
        • properties: rural
          • type:rural
          • Map:10
      • 1562: Feature (Point, 2 properties)
        • type:Feature
        • id:1739
        • geometry: Point (29.31, -13.88)
          • type:Point
          • coordinates: [29.306578469176472, -13.881501504413297]
            • 0:29.306578469176472
            • 1:-13.881501504413297
        • properties: rural
          • type:rural
          • Map:30
      • 1563: Feature (Point, 2 properties)
        • type:Feature
        • id:1740
        • geometry: Point (24.89, -7.33)
          • type:Point
          • coordinates: [24.885139873114905, -7.326468737521794]
            • 0:24.885139873114905
            • 1:-7.326468737521794
        • properties: rural
          • type:rural
          • Map:30
      • 1564: Feature (Point, 2 properties)
        • type:Feature
        • id:1741
        • geometry: Point (45.73, -23.96)
          • type:Point
          • coordinates: [45.72899111808411, -23.959855538434326]
            • 0:45.72899111808411
            • 1:-23.959855538434326
        • properties: rural
          • type:rural
          • Map:30
      • 1565: Feature (Point, 2 properties)
        • type:Feature
        • id:1742
        • geometry: Point (17.42, -15.92)
          • type:Point
          • coordinates: [17.415183188040253, -15.922737870444076]
            • 0:17.415183188040253
            • 1:-15.922737870444076
        • properties: rural
          • type:rural
          • Map:30
      • 1566: Feature (Point, 2 properties)
        • type:Feature
        • id:1743
        • geometry: Point (14.30, -10.74)
          • type:Point
          • coordinates: [14.297969276085352, -10.737011753853443]
            • 0:14.297969276085352
            • 1:-10.737011753853443
        • properties: rural
          • type:rural
          • Map:10
      • 1567: Feature (Point, 2 properties)
        • type:Feature
        • id:1744
        • geometry: Point (28.20, -1.06)
          • type:Point
          • coordinates: [28.20063228843325, -1.0605776352537277]
            • 0:28.20063228843325
            • 1:-1.0605776352537277
        • properties: rural
          • type:rural
          • Map:10
      • 1568: Feature (Point, 2 properties)
        • type:Feature
        • id:1745
        • geometry: Point (27.20, -9.37)
          • type:Point
          • coordinates: [27.202297238765766, -9.36767167697692]
            • 0:27.202297238765766
            • 1:-9.36767167697692
        • properties: rural
          • type:rural
          • Map:30
      • 1569: Feature (Point, 2 properties)
        • type:Feature
        • id:1746
        • geometry: Point (14.96, -15.63)
          • type:Point
          • coordinates: [14.956068570941808, -15.634545258039745]
            • 0:14.956068570941808
            • 1:-15.634545258039745
        • properties: rural
          • type:rural
          • Map:20
      • 1570: Feature (Point, 2 properties)
        • type:Feature
        • id:1747
        • geometry: Point (18.74, -8.44)
          • type:Point
          • coordinates: [18.740903310796345, -8.438253434268487]
            • 0:18.740903310796345
            • 1:-8.438253434268487
        • properties: rural
          • type:rural
          • Map:10
      • 1571: Feature (Point, 2 properties)
        • type:Feature
        • id:1749
        • geometry: Point (15.73, -6.60)
          • type:Point
          • coordinates: [15.726893522617654, -6.597224450513076]
            • 0:15.726893522617654
            • 1:-6.597224450513076
        • properties: rural
          • type:rural
          • Map:10
      • 1572: Feature (Point, 2 properties)
        • type:Feature
        • id:1750
        • geometry: Point (38.65, -7.21)
          • type:Point
          • coordinates: [38.65343181076, -7.206107572636854]
            • 0:38.65343181076
            • 1:-7.206107572636854
        • properties: rural
          • type:rural
          • Map:10
      • 1573: Feature (Point, 2 properties)
        • type:Feature
        • id:1751
        • geometry: Point (21.83, -7.84)
          • type:Point
          • coordinates: [21.82506774196555, -7.8365394249658715]
            • 0:21.82506774196555
            • 1:-7.8365394249658715
        • properties: rural
          • type:rural
          • Map:30
      • 1574: Feature (Point, 2 properties)
        • type:Feature
        • id:1752
        • geometry: Point (39.29, 4.72)
          • type:Point
          • coordinates: [39.28824128692451, 4.719720519559721]
            • 0:39.28824128692451
            • 1:4.719720519559721
        • properties: rural
          • type:rural
          • Map:20
      • 1575: Feature (Point, 2 properties)
        • type:Feature
        • id:1753
        • geometry: Point (26.57, 3.41)
          • type:Point
          • coordinates: [26.5735361742511, 3.4147117744921553]
            • 0:26.5735361742511
            • 1:3.4147117744921553
        • properties: rural
          • type:rural
          • Map:10
      • 1576: Feature (Point, 2 properties)
        • type:Feature
        • id:1755
        • geometry: Point (17.62, -12.08)
          • type:Point
          • coordinates: [17.616049643685706, -12.080236284388901]
            • 0:17.616049643685706
            • 1:-12.080236284388901
        • properties: rural
          • type:rural
          • Map:20
      • 1577: Feature (Point, 2 properties)
        • type:Feature
        • id:1756
        • geometry: Point (-10.22, 23.30)
          • type:Point
          • coordinates: [-10.220339990563096, 23.299710566300128]
            • 0:-10.220339990563096
            • 1:23.299710566300128
        • properties: rural
          • type:rural
          • Map:60
      • 1578: Feature (Point, 2 properties)
        • type:Feature
        • id:1757
        • geometry: Point (19.07, -9.68)
          • type:Point
          • coordinates: [19.071646767421065, -9.681579389349064]
            • 0:19.071646767421065
            • 1:-9.681579389349064
        • properties: rural
          • type:rural
          • Map:10
      • 1579: Feature (Point, 2 properties)
        • type:Feature
        • id:1758
        • geometry: Point (37.82, -10.27)
          • type:Point
          • coordinates: [37.82292261722339, -10.274088357192083]
            • 0:37.82292261722339
            • 1:-10.274088357192083
        • properties: rural
          • type:rural
          • Map:10
      • 1580: Feature (Point, 2 properties)
        • type:Feature
        • id:1761
        • geometry: Point (31.16, -20.62)
          • type:Point
          • coordinates: [31.1640429004045, -20.62466061461662]
            • 0:31.1640429004045
            • 1:-20.62466061461662
        • properties: rural
          • type:rural
          • Map:10
      • 1581: Feature (Point, 2 properties)
        • type:Feature
        • id:1762
        • geometry: Point (-11.00, 23.57)
          • type:Point
          • coordinates: [-11.004079750357327, 23.571694575136405]
            • 0:-11.004079750357327
            • 1:23.571694575136405
        • properties: rural
          • type:rural
          • Map:60
      • 1582: Feature (Point, 2 properties)
        • type:Feature
        • id:1763
        • geometry: Point (-3.20, 10.86)
          • type:Point
          • coordinates: [-3.200731725374446, 10.861797151692631]
            • 0:-3.200731725374446
            • 1:10.861797151692631
        • properties: rural
          • type:rural
          • Map:20
      • 1583: Feature (Point, 2 properties)
        • type:Feature
        • id:1764
        • geometry: Point (42.80, 4.53)
          • type:Point
          • coordinates: [42.80176993531839, 4.525651746488323]
            • 0:42.80176993531839
            • 1:4.525651746488323
        • properties: rural
          • type:rural
          • Map:20
      • 1584: Feature (Point, 2 properties)
        • type:Feature
        • id:1765
        • geometry: Point (28.36, 0.86)
          • type:Point
          • coordinates: [28.362191945279424, 0.8622970461397069]
            • 0:28.362191945279424
            • 1:0.8622970461397069
        • properties: rural
          • type:rural
          • Map:10
      • 1585: Feature (Point, 2 properties)
        • type:Feature
        • id:1766
        • geometry: Point (36.32, 9.36)
          • type:Point
          • coordinates: [36.31638399901677, 9.364072197514538]
            • 0:36.31638399901677
            • 1:9.364072197514538
        • properties: rural
          • type:rural
          • Map:40
      • 1586: Feature (Point, 2 properties)
        • type:Feature
        • id:1767
        • geometry: Point (45.76, 8.41)
          • type:Point
          • coordinates: [45.75799433971934, 8.411431128964612]
            • 0:45.75799433971934
            • 1:8.411431128964612
        • properties: rural
          • type:rural
          • Map:20
      • 1587: Feature (Point, 2 properties)
        • type:Feature
        • id:1768
        • geometry: Point (45.48, -17.98)
          • type:Point
          • coordinates: [45.47931783823439, -17.97581137515536]
            • 0:45.47931783823439
            • 1:-17.97581137515536
        • properties: rural
          • type:rural
          • Map:30
      • 1588: Feature (Point, 2 properties)
        • type:Feature
        • id:1769
        • geometry: Point (40.75, -1.54)
          • type:Point
          • coordinates: [40.75089418689546, -1.5433680680169768]
            • 0:40.75089418689546
            • 1:-1.5433680680169768
        • properties: rural
          • type:rural
          • Map:20
      • 1589: Feature (Point, 2 properties)
        • type:Feature
        • id:1770
        • geometry: Point (35.74, -7.93)
          • type:Point
          • coordinates: [35.74169361642187, -7.930656630414278]
            • 0:35.74169361642187
            • 1:-7.930656630414278
        • properties: rural
          • type:rural
          • Map:40
      • 1590: Feature (Point, 2 properties)
        • type:Feature
        • id:1771
        • geometry: Point (34.14, -1.39)
          • type:Point
          • coordinates: [34.13925593425585, -1.391655093176389]
            • 0:34.13925593425585
            • 1:-1.391655093176389
        • properties: rural
          • type:rural
          • Map:30
      • 1591: Feature (Point, 2 properties)
        • type:Feature
        • id:1772
        • geometry: Point (28.65, 2.82)
          • type:Point
          • coordinates: [28.6505035614009, 2.8156919267906177]
            • 0:28.6505035614009
            • 1:2.8156919267906177
        • properties: rural
          • type:rural
          • Map:10
      • 1592: Feature (Point, 2 properties)
        • type:Feature
        • id:1773
        • geometry: Point (34.56, -4.11)
          • type:Point
          • coordinates: [34.56094127560686, -4.114953608935087]
            • 0:34.56094127560686
            • 1:-4.114953608935087
        • properties: rural
          • type:rural
          • Map:20
      • 1593: Feature (Point, 2 properties)
        • type:Feature
        • id:1774
        • geometry: Point (40.68, 0.80)
          • type:Point
          • coordinates: [40.675601984926, 0.7962506344813087]
            • 0:40.675601984926
            • 1:0.7962506344813087
        • properties: rural
          • type:rural
          • Map:20
      • 1594: Feature (Point, 2 properties)
        • type:Feature
        • id:1775
        • geometry: Point (13.63, -10.44)
          • type:Point
          • coordinates: [13.6297472193753, -10.444028776562455]
            • 0:13.6297472193753
            • 1:-10.444028776562455
        • properties: rural
          • type:rural
          • Map:30
      • 1595: Feature (Point, 2 properties)
        • type:Feature
        • id:1776
        • geometry: Point (-8.49, 20.62)
          • type:Point
          • coordinates: [-8.488125628894121, 20.62155418695744]
            • 0:-8.488125628894121
            • 1:20.62155418695744
        • properties: rural
          • type:rural
          • Map:60
      • 1596: Feature (Point, 2 properties)
        • type:Feature
        • id:1777
        • geometry: Point (25.89, 4.38)
          • type:Point
          • coordinates: [25.8877733386556, 4.376226260248097]
            • 0:25.8877733386556
            • 1:4.376226260248097
        • properties: rural
          • type:rural
          • Map:10
      • 1597: Feature (Point, 2 properties)
        • type:Feature
        • id:1778
        • geometry: Point (19.62, -14.77)
          • type:Point
          • coordinates: [19.62147745877507, -14.772046239606313]
            • 0:19.62147745877507
            • 1:-14.772046239606313
        • properties: rural
          • type:rural
          • Map:30
      • 1598: Feature (Point, 2 properties)
        • type:Feature
        • id:1779
        • geometry: Point (19.10, -12.48)
          • type:Point
          • coordinates: [19.100586895535802, -12.481485632911326]
            • 0:19.100586895535802
            • 1:-12.481485632911326
        • properties: rural
          • type:rural
          • Map:10
      • 1599: Feature (Point, 2 properties)
        • type:Feature
        • id:1780
        • geometry: Point (48.79, -14.14)
          • type:Point
          • coordinates: [48.78942767181692, -14.144517157321927]
            • 0:48.78942767181692
            • 1:-14.144517157321927
        • properties: rural
          • type:rural
          • Map:30
      • 1600: Feature (Point, 2 properties)
        • type:Feature
        • id:1781
        • geometry: Point (40.05, 8.37)
          • type:Point
          • coordinates: [40.04564798640016, 8.374775705757491]
            • 0:40.04564798640016
            • 1:8.374775705757491
        • properties: rural
          • type:rural
          • Map:40
      • 1601: Feature (Point, 2 properties)
        • type:Feature
        • id:1782
        • geometry: Point (15.76, -7.30)
          • type:Point
          • coordinates: [15.7638467351867, -7.298279507893801]
            • 0:15.7638467351867
            • 1:-7.298279507893801
        • properties: rural
          • type:rural
          • Map:10
      • 1602: Feature (Point, 2 properties)
        • type:Feature
        • id:1783
        • geometry: Point (26.36, -15.71)
          • type:Point
          • coordinates: [26.35735394725645, -15.706959520326162]
            • 0:26.35735394725645
            • 1:-15.706959520326162
        • properties: rural
          • type:rural
          • Map:30
      • 1603: Feature (Point, 2 properties)
        • type:Feature
        • id:1784
        • geometry: Point (-10.76, 13.62)
          • type:Point
          • coordinates: [-10.75778746072887, 13.62319848297235]
            • 0:-10.75778746072887
            • 1:13.62319848297235
        • properties: rural
          • type:rural
          • Map:20
      • 1604: Feature (Point, 2 properties)
        • type:Feature
        • id:1785
        • geometry: Point (24.76, 1.57)
          • type:Point
          • coordinates: [24.763083596086776, 1.5731733919592756]
            • 0:24.763083596086776
            • 1:1.5731733919592756
        • properties: rural
          • type:rural
          • Map:10
      • 1605: Feature (Point, 2 properties)
        • type:Feature
        • id:1786
        • geometry: Point (-0.61, 13.76)
          • type:Point
          • coordinates: [-0.6064681449383991, 13.75817250044397]
            • 0:-0.6064681449383991
            • 1:13.75817250044397
        • properties: rural
          • type:rural
          • Map:30
      • 1606: Feature (Point, 2 properties)
        • type:Feature
        • id:1787
        • geometry: Point (14.37, 5.18)
          • type:Point
          • coordinates: [14.366712107153964, 5.183101501816178]
            • 0:14.366712107153964
            • 1:5.183101501816178
        • properties: rural
          • type:rural
          • Map:10
      • 1607: Feature (Point, 2 properties)
        • type:Feature
        • id:1789
        • geometry: Point (-11.94, 20.64)
          • type:Point
          • coordinates: [-11.940037843740381, 20.6381439422755]
            • 0:-11.940037843740381
            • 1:20.6381439422755
        • properties: rural
          • type:rural
          • Map:60
      • 1608: Feature (Point, 2 properties)
        • type:Feature
        • id:1790
        • geometry: Point (25.85, 2.99)
          • type:Point
          • coordinates: [25.853636418214435, 2.9930330404414045]
            • 0:25.853636418214435
            • 1:2.9930330404414045
        • properties: rural
          • type:rural
          • Map:10
      • 1609: Feature (Point, 2 properties)
        • type:Feature
        • id:1791
        • geometry: Point (15.58, -8.62)
          • type:Point
          • coordinates: [15.584017481896902, -8.621396402711538]
            • 0:15.584017481896902
            • 1:-8.621396402711538
        • properties: rural
          • type:rural
          • Map:30
      • 1610: Feature (Point, 2 properties)
        • type:Feature
        • id:1792
        • geometry: Point (-9.43, 17.53)
          • type:Point
          • coordinates: [-9.433208178004639, 17.527574573473295]
            • 0:-9.433208178004639
            • 1:17.527574573473295
        • properties: rural
          • type:rural
          • Map:60
      • 1611: Feature (Point, 2 properties)
        • type:Feature
        • id:1793
        • geometry: Point (37.97, 13.79)
          • type:Point
          • coordinates: [37.968770739686285, 13.789767163699674]
            • 0:37.968770739686285
            • 1:13.789767163699674
        • properties: rural
          • type:rural
          • Map:20
      • 1612: Feature (Point, 2 properties)
        • type:Feature
        • id:1794
        • geometry: Point (32.95, -2.89)
          • type:Point
          • coordinates: [32.95427577696797, -2.8891909937891245]
            • 0:32.95427577696797
            • 1:-2.8891909937891245
        • properties: rural
          • type:rural
          • Map:30
      • 1613: Feature (Point, 2 properties)
        • type:Feature
        • id:1795
        • geometry: Point (-10.69, 24.63)
          • type:Point
          • coordinates: [-10.693190301990992, 24.630423366298057]
            • 0:-10.693190301990992
            • 1:24.630423366298057
        • properties: rural
          • type:rural
          • Map:60
      • 1614: Feature (Point, 2 properties)
        • type:Feature
        • id:1796
        • geometry: Point (22.15, -12.79)
          • type:Point
          • coordinates: [22.146628994514465, -12.793796595114035]
            • 0:22.146628994514465
            • 1:-12.793796595114035
        • properties: rural
          • type:rural
          • Map:10
      • 1615: Feature (Point, 2 properties)
        • type:Feature
        • id:1797
        • geometry: Point (18.58, -14.49)
          • type:Point
          • coordinates: [18.57726784871934, -14.489740103279571]
            • 0:18.57726784871934
            • 1:-14.489740103279571
        • properties: rural
          • type:rural
          • Map:30
      • 1616: Feature (Point, 2 properties)
        • type:Feature
        • id:1798
        • geometry: Point (15.57, -8.78)
          • type:Point
          • coordinates: [15.568806844617953, -8.777156002664276]
            • 0:15.568806844617953
            • 1:-8.777156002664276
        • properties: rural
          • type:rural
          • Map:30
      • 1617: Feature (Point, 2 properties)
        • type:Feature
        • id:1799
        • geometry: Point (-7.79, 24.91)
          • type:Point
          • coordinates: [-7.79023410235289, 24.90877033504279]
            • 0:-7.79023410235289
            • 1:24.90877033504279
        • properties: rural
          • type:rural
          • Map:60
      • 1618: Feature (Point, 2 properties)
        • type:Feature
        • id:1800
        • geometry: Point (46.98, 7.82)
          • type:Point
          • coordinates: [46.97777310839462, 7.822930469736337]
            • 0:46.97777310839462
            • 1:7.822930469736337
        • properties: rural
          • type:rural
          • Map:20
      • 1619: Feature (Point, 2 properties)
        • type:Feature
        • id:1801
        • geometry: Point (47.82, -21.29)
          • type:Point
          • coordinates: [47.816571191755436, -21.29045662166271]
            • 0:47.816571191755436
            • 1:-21.29045662166271
        • properties: rural
          • type:rural
          • Map:30
      • 1620: Feature (Point, 2 properties)
        • type:Feature
        • id:1802
        • geometry: Point (27.84, -9.77)
          • type:Point
          • coordinates: [27.84324872925671, -9.769300938974254]
            • 0:27.84324872925671
            • 1:-9.769300938974254
        • properties: rural
          • type:rural
          • Map:10
      • 1621: Feature (Point, 2 properties)
        • type:Feature
        • id:1803
        • geometry: Point (-13.56, 20.26)
          • type:Point
          • coordinates: [-13.558324189169708, 20.256011736044037]
            • 0:-13.558324189169708
            • 1:20.256011736044037
        • properties: rural
          • type:rural
          • Map:60
      • 1622: Feature (Point, 2 properties)
        • type:Feature
        • id:1804
        • geometry: Point (-2.51, 14.53)
          • type:Point
          • coordinates: [-2.507484402081226, 14.526615070482048]
            • 0:-2.507484402081226
            • 1:14.526615070482048
        • properties: rural
          • type:rural
          • Map:30
      • 1623: Feature (Point, 2 properties)
        • type:Feature
        • id:1805
        • geometry: Point (34.83, -1.64)
          • type:Point
          • coordinates: [34.83110319634413, -1.6353201580307306]
            • 0:34.83110319634413
            • 1:-1.6353201580307306
        • properties: rural
          • type:rural
          • Map:30
      • 1624: Feature (Point, 2 properties)
        • type:Feature
        • id:1806
        • geometry: Point (38.18, -5.81)
          • type:Point
          • coordinates: [38.177657858566214, -5.810617994306526]
            • 0:38.177657858566214
            • 1:-5.810617994306526
        • properties: rural
          • type:rural
          • Map:10
      • 1625: Feature (Point, 2 properties)
        • type:Feature
        • id:1807
        • geometry: Point (-9.25, 18.43)
          • type:Point
          • coordinates: [-9.24873613483543, 18.427972838000716]
            • 0:-9.24873613483543
            • 1:18.427972838000716
        • properties: rural
          • type:rural
          • Map:60
      • 1626: Feature (Point, 2 properties)
        • type:Feature
        • id:1808
        • geometry: Point (35.29, -9.60)
          • type:Point
          • coordinates: [35.29459492526612, -9.5975079716457]
            • 0:35.29459492526612
            • 1:-9.5975079716457
        • properties: rural
          • type:rural
          • Map:20
      • 1627: Feature (Point, 2 properties)
        • type:Feature
        • id:1809
        • geometry: Point (29.11, -10.18)
          • type:Point
          • coordinates: [29.109893882233656, -10.182067719479594]
            • 0:29.109893882233656
            • 1:-10.182067719479594
        • properties: rural
          • type:rural
          • Map:10
      • 1628: Feature (Point, 2 properties)
        • type:Feature
        • id:1810
        • geometry: Point (-4.94, 22.43)
          • type:Point
          • coordinates: [-4.9356291284064175, 22.426727971971516]
            • 0:-4.9356291284064175
            • 1:22.426727971971516
        • properties: rural
          • type:rural
          • Map:60
      • 1629: Feature (Point, 2 properties)
        • type:Feature
        • id:1811
        • geometry: Point (26.98, -17.11)
          • type:Point
          • coordinates: [26.976087985658314, -17.10579002794792]
            • 0:26.976087985658314
            • 1:-17.10579002794792
        • properties: rural
          • type:rural
          • Map:40
      • 1630: Feature (Point, 2 properties)
        • type:Feature
        • id:1813
        • geometry: Point (-4.56, 21.92)
          • type:Point
          • coordinates: [-4.555544484584033, 21.917244673188648]
            • 0:-4.555544484584033
            • 1:21.917244673188648
        • properties: rural
          • type:rural
          • Map:60
      • 1631: Feature (Point, 2 properties)
        • type:Feature
        • id:1814
        • geometry: Point (45.60, -22.82)
          • type:Point
          • coordinates: [45.60201590948035, -22.819048977709336]
            • 0:45.60201590948035
            • 1:-22.819048977709336
        • properties: rural
          • type:rural
          • Map:30
      • 1632: Feature (Point, 2 properties)
        • type:Feature
        • id:1815
        • geometry: Point (40.71, 13.64)
          • type:Point
          • coordinates: [40.71184469463032, 13.64452517225747]
            • 0:40.71184469463032
            • 1:13.64452517225747
        • properties: rural
          • type:rural
          • Map:60
      • 1633: Feature (Point, 2 properties)
        • type:Feature
        • id:1816
        • geometry: Point (30.09, -10.03)
          • type:Point
          • coordinates: [30.088173444267913, -10.031146374890575]
            • 0:30.088173444267913
            • 1:-10.031146374890575
        • properties: rural
          • type:rural
          • Map:20
      • 1634: Feature (Point, 2 properties)
        • type:Feature
        • id:1817
        • geometry: Point (-7.25, 13.61)
          • type:Point
          • coordinates: [-7.247226780283863, 13.60886886870494]
            • 0:-7.247226780283863
            • 1:13.60886886870494
        • properties: rural
          • type:rural
          • Map:30
      • 1635: Feature (Point, 2 properties)
        • type:Feature
        • id:1818
        • geometry: Point (-7.50, 15.20)
          • type:Point
          • coordinates: [-7.499053930478077, 15.195531269565944]
            • 0:-7.499053930478077
            • 1:15.195531269565944
        • properties: rural
          • type:rural
          • Map:30
      • 1636: Feature (Point, 2 properties)
        • type:Feature
        • id:1819
        • geometry: Point (15.63, -16.41)
          • type:Point
          • coordinates: [15.634928132854913, -16.409960587585992]
            • 0:15.634928132854913
            • 1:-16.409960587585992
        • properties: rural
          • type:rural
          • Map:20
      • 1637: Feature (Point, 2 properties)
        • type:Feature
        • id:1820
        • geometry: Point (16.99, -11.86)
          • type:Point
          • coordinates: [16.99036971668108, -11.864811410299843]
            • 0:16.99036971668108
            • 1:-11.864811410299843
        • properties: rural
          • type:rural
          • Map:30
      • 1638: Feature (Point, 2 properties)
        • type:Feature
        • id:1822
        • geometry: Point (30.65, -9.70)
          • type:Point
          • coordinates: [30.65213145792567, -9.703968789599871]
            • 0:30.65213145792567
            • 1:-9.703968789599871
        • properties: rural
          • type:rural
          • Map:20
      • 1639: Feature (Point, 2 properties)
        • type:Feature
        • id:1823
        • geometry: Point (-3.90, 16.87)
          • type:Point
          • coordinates: [-3.8951200629062335, 16.87160132535201]
            • 0:-3.8951200629062335
            • 1:16.87160132535201
        • properties: rural
          • type:rural
          • Map:30
      • 1640: Feature (Point, 2 properties)
        • type:Feature
        • id:1824
        • geometry: Point (0.87, 12.61)
          • type:Point
          • coordinates: [0.8664487115583481, 12.609243080227328]
            • 0:0.8664487115583481
            • 1:12.609243080227328
        • properties: rural
          • type:rural
          • Map:30
      • 1641: Feature (Point, 2 properties)
        • type:Feature
        • id:1825
        • geometry: Point (25.72, -15.38)
          • type:Point
          • coordinates: [25.724965657363935, -15.384433346890747]
            • 0:25.724965657363935
            • 1:-15.384433346890747
        • properties: rural
          • type:rural
          • Map:10
      • 1642: Feature (Point, 2 properties)
        • type:Feature
        • id:1826
        • geometry: Point (26.64, -19.36)
          • type:Point
          • coordinates: [26.64328056626276, -19.363271646922197]
            • 0:26.64328056626276
            • 1:-19.363271646922197
        • properties: rural
          • type:rural
          • Map:20
      • 1643: Feature (Point, 2 properties)
        • type:Feature
        • id:1827
        • geometry: Point (35.41, 6.98)
          • type:Point
          • coordinates: [35.40689432798763, 6.975753195921276]
            • 0:35.40689432798763
            • 1:6.975753195921276
        • properties: rural
          • type:rural
          • Map:10
      • 1644: Feature (Point, 2 properties)
        • type:Feature
        • id:1829
        • geometry: Point (24.46, -2.77)
          • type:Point
          • coordinates: [24.46199212483833, -2.7652663877803443]
            • 0:24.46199212483833
            • 1:-2.7652663877803443
        • properties: rural
          • type:rural
          • Map:10
      • 1645: Feature (Point, 2 properties)
        • type:Feature
        • id:1830
        • geometry: Point (46.65, -18.85)
          • type:Point
          • coordinates: [46.64758709025916, -18.85332290368481]
            • 0:46.64758709025916
            • 1:-18.85332290368481
        • properties: rural
          • type:rural
          • Map:30
      • 1646: Feature (Point, 2 properties)
        • type:Feature
        • id:1831
        • geometry: Point (29.78, -19.62)
          • type:Point
          • coordinates: [29.779630345106238, -19.618623966680588]
            • 0:29.779630345106238
            • 1:-19.618623966680588
        • properties: rural
          • type:rural
          • Map:30
      • 1647: Feature (Point, 2 properties)
        • type:Feature
        • id:1832
        • geometry: Point (-7.69, 21.58)
          • type:Point
          • coordinates: [-7.687377815103315, 21.582991493373946]
            • 0:-7.687377815103315
            • 1:21.582991493373946
        • properties: rural
          • type:rural
          • Map:60
      • 1648: Feature (Point, 2 properties)
        • type:Feature
        • id:1833
        • geometry: Point (28.67, -3.48)
          • type:Point
          • coordinates: [28.666067176025393, -3.4842419425342164]
            • 0:28.666067176025393
            • 1:-3.4842419425342164
        • properties: rural
          • type:rural
          • Map:10
      • 1649: Feature (Point, 2 properties)
        • type:Feature
        • id:1836
        • geometry: Point (35.88, -10.97)
          • type:Point
          • coordinates: [35.88082889921481, -10.971450508297956]
            • 0:35.88082889921481
            • 1:-10.971450508297956
        • properties: rural
          • type:rural
          • Map:10
      • 1650: Feature (Point, 2 properties)
        • type:Feature
        • id:1837
        • geometry: Point (26.19, -17.94)
          • type:Point
          • coordinates: [26.191235514192044, -17.943997090520444]
            • 0:26.191235514192044
            • 1:-17.943997090520444
        • properties: rural
          • type:rural
          • Map:10
      • 1651: Feature (Point, 2 properties)
        • type:Feature
        • id:1838
        • geometry: Point (12.72, 4.99)
          • type:Point
          • coordinates: [12.715002055503698, 4.988848313747716]
            • 0:12.715002055503698
            • 1:4.988848313747716
        • properties: rural
          • type:rural
          • Map:10
      • 1652: Feature (Point, 2 properties)
        • type:Feature
        • id:1839
        • geometry: Point (-9.90, 21.31)
          • type:Point
          • coordinates: [-9.89503905218439, 21.308545572164327]
            • 0:-9.89503905218439
            • 1:21.308545572164327
        • properties: rural
          • type:rural
          • Map:60
      • 1653: Feature (Point, 2 properties)
        • type:Feature
        • id:1840
        • geometry: Point (25.87, -0.12)
          • type:Point
          • coordinates: [25.871212448074388, -0.12070843375467256]
            • 0:25.871212448074388
            • 1:-0.12070843375467256
        • properties: rural
          • type:rural
          • Map:10
      • 1654: Feature (Point, 2 properties)
        • type:Feature
        • id:1841
        • geometry: Point (31.72, -7.60)
          • type:Point
          • coordinates: [31.720729328067378, -7.603458011738367]
            • 0:31.720729328067378
            • 1:-7.603458011738367
        • properties: rural
          • type:rural
          • Map:80
      • 1655: Feature (Point, 2 properties)
        • type:Feature
        • id:1843
        • geometry: Point (28.03, -6.74)
          • type:Point
          • coordinates: [28.034885906587053, -6.744163313318816]
            • 0:28.034885906587053
            • 1:-6.744163313318816
        • properties: rural
          • type:rural
          • Map:10
      • 1656: Feature (Point, 2 properties)
        • type:Feature
        • id:1844
        • geometry: Point (35.84, 6.57)
          • type:Point
          • coordinates: [35.838086506773436, 6.573183054705614]
            • 0:35.838086506773436
            • 1:6.573183054705614
        • properties: rural
          • type:rural
          • Map:20
      • 1657: Feature (Point, 2 properties)
        • type:Feature
        • id:1845
        • geometry: Point (33.86, -1.29)
          • type:Point
          • coordinates: [33.85910733890749, -1.2907263333734829]
            • 0:33.85910733890749
            • 1:-1.2907263333734829
        • properties: rural
          • type:rural
          • Map:80
      • 1658: Feature (Point, 2 properties)
        • type:Feature
        • id:1846
        • geometry: Point (31.30, -11.38)
          • type:Point
          • coordinates: [31.297847450803797, -11.375086537925926]
            • 0:31.297847450803797
            • 1:-11.375086537925926
        • properties: rural
          • type:rural
          • Map:30
      • 1659: Feature (Point, 2 properties)
        • type:Feature
        • id:1847
        • geometry: Point (27.25, 4.56)
          • type:Point
          • coordinates: [27.25427270517085, 4.563235928220652]
            • 0:27.25427270517085
            • 1:4.563235928220652
        • properties: rural
          • type:rural
          • Map:10
      • 1660: Feature (Point, 2 properties)
        • type:Feature
        • id:1848
        • geometry: Point (31.44, -18.04)
          • type:Point
          • coordinates: [31.437333327402374, -18.043583347659055]
            • 0:31.437333327402374
            • 1:-18.043583347659055
        • properties: rural
          • type:rural
          • Map:30
      • 1661: Feature (Point, 2 properties)
        • type:Feature
        • id:1849
        • geometry: Point (25.99, -17.07)
          • type:Point
          • coordinates: [25.99475925703753, -17.069381577201867]
            • 0:25.99475925703753
            • 1:-17.069381577201867
        • properties: rural
          • type:rural
          • Map:40
      • 1662: Feature (Point, 2 properties)
        • type:Feature
        • id:1851
        • geometry: Point (3.60, 15.61)
          • type:Point
          • coordinates: [3.599671225159338, 15.614919473456718]
            • 0:3.599671225159338
            • 1:15.614919473456718
        • properties: rural
          • type:rural
          • Map:30
      • 1663: Feature (Point, 2 properties)
        • type:Feature
        • id:1853
        • geometry: Point (36.93, -8.12)
          • type:Point
          • coordinates: [36.925160589403326, -8.115486973833947]
            • 0:36.925160589403326
            • 1:-8.115486973833947
        • properties: rural
          • type:rural
          • Map:10
      • 1664: Feature (Point, 2 properties)
        • type:Feature
        • id:1855
        • geometry: Point (35.65, -6.55)
          • type:Point
          • coordinates: [35.64957795913721, -6.549890548658452]
            • 0:35.64957795913721
            • 1:-6.549890548658452
        • properties: rural
          • type:rural
          • Map:20
      • 1665: Feature (Point, 2 properties)
        • type:Feature
        • id:1856
        • geometry: Point (19.16, -15.47)
          • type:Point
          • coordinates: [19.157037593731868, -15.47301208279648]
            • 0:19.157037593731868
            • 1:-15.47301208279648
        • properties: rural
          • type:rural
          • Map:10
      • 1666: Feature (Point, 2 properties)
        • type:Feature
        • id:1857
        • geometry: Point (37.53, 4.92)
          • type:Point
          • coordinates: [37.52520247052283, 4.920363601571564]
            • 0:37.52520247052283
            • 1:4.920363601571564
        • properties: rural
          • type:rural
          • Map:20
      • 1667: Feature (Point, 2 properties)
        • type:Feature
        • id:1858
        • geometry: Point (-9.42, 18.65)
          • type:Point
          • coordinates: [-9.421302567523703, 18.653317221075678]
            • 0:-9.421302567523703
            • 1:18.653317221075678
        • properties: rural
          • type:rural
          • Map:60
      • 1668: Feature (Point, 2 properties)
        • type:Feature
        • id:1859
        • geometry: Point (-6.02, 16.93)
          • type:Point
          • coordinates: [-6.019336373008368, 16.93307736155388]
            • 0:-6.019336373008368
            • 1:16.93307736155388
        • properties: rural
          • type:rural
          • Map:30
      • 1669: Feature (Point, 2 properties)
        • type:Feature
        • id:1860
        • geometry: Point (21.62, -0.25)
          • type:Point
          • coordinates: [21.6220733300017, -0.25331935666016014]
            • 0:21.6220733300017
            • 1:-0.25331935666016014
        • properties: rural
          • type:rural
          • Map:10
      • 1670: Feature (Point, 2 properties)
        • type:Feature
        • id:1861
        • geometry: Point (15.57, -15.16)
          • type:Point
          • coordinates: [15.565909106813903, -15.155716049535023]
            • 0:15.565909106813903
            • 1:-15.155716049535023
        • properties: rural
          • type:rural
          • Map:10
      • 1671: Feature (Point, 2 properties)
        • type:Feature
        • id:1862
        • geometry: Point (23.37, 2.50)
          • type:Point
          • coordinates: [23.365629472265265, 2.497297777773008]
            • 0:23.365629472265265
            • 1:2.497297777773008
        • properties: rural
          • type:rural
          • Map:10
      • 1672: Feature (Point, 2 properties)
        • type:Feature
        • id:1863
        • geometry: Point (44.85, 6.77)
          • type:Point
          • coordinates: [44.85130492788266, 6.770305629052441]
            • 0:44.85130492788266
            • 1:6.770305629052441
        • properties: rural
          • type:rural
          • Map:20
      • 1673: Feature (Point, 2 properties)
        • type:Feature
        • id:1864
        • geometry: Point (-3.17, 14.08)
          • type:Point
          • coordinates: [-3.1749387347093814, 14.07889571138697]
            • 0:-3.1749387347093814
            • 1:14.07889571138697
        • properties: rural
          • type:rural
          • Map:40
      • 1674: Feature (Point, 2 properties)
        • type:Feature
        • id:1865
        • geometry: Point (27.04, -2.02)
          • type:Point
          • coordinates: [27.036258097349055, -2.018709416735214]
            • 0:27.036258097349055
            • 1:-2.018709416735214
        • properties: rural
          • type:rural
          • Map:10
      • 1675: Feature (Point, 2 properties)
        • type:Feature
        • id:1866
        • geometry: Point (35.04, 2.43)
          • type:Point
          • coordinates: [35.041900329356885, 2.43201854933571]
            • 0:35.041900329356885
            • 1:2.43201854933571
        • properties: rural
          • type:rural
          • Map:20
      • 1676: Feature (Point, 2 properties)
        • type:Feature
        • id:1867
        • geometry: Point (35.97, -7.91)
          • type:Point
          • coordinates: [35.96788679509654, -7.911545113735129]
            • 0:35.96788679509654
            • 1:-7.911545113735129
        • properties: rural
          • type:rural
          • Map:10
      • 1677: Feature (Point, 2 properties)
        • type:Feature
        • id:1868
        • geometry: Point (36.83, -0.94)
          • type:Point
          • coordinates: [36.83417517141031, -0.938854700381796]
            • 0:36.83417517141031
            • 1:-0.938854700381796
        • properties: rural
          • type:rural
          • Map:20
      • 1678: Feature (Point, 2 properties)
        • type:Feature
        • id:1869
        • geometry: Point (37.39, 6.41)
          • type:Point
          • coordinates: [37.38557498152541, 6.410168439342379]
            • 0:37.38557498152541
            • 1:6.410168439342379
        • properties: rural
          • type:rural
          • Map:20
      • 1679: Feature (Point, 2 properties)
        • type:Feature
        • id:1870
        • geometry: Point (29.87, -15.82)
          • type:Point
          • coordinates: [29.86735369519279, -15.815617070084304]
            • 0:29.86735369519279
            • 1:-15.815617070084304
        • properties: rural
          • type:rural
          • Map:20
      • 1680: Feature (Point, 2 properties)
        • type:Feature
        • id:1871
        • geometry: Point (23.12, -10.03)
          • type:Point
          • coordinates: [23.118306789406525, -10.033626275101458]
            • 0:23.118306789406525
            • 1:-10.033626275101458
        • properties: rural
          • type:rural
          • Map:30
      • 1681: Feature (Point, 2 properties)
        • type:Feature
        • id:1872
        • geometry: Point (38.77, 3.37)
          • type:Point
          • coordinates: [38.77254666884951, 3.371247196291268]
            • 0:38.77254666884951
            • 1:3.371247196291268
        • properties: rural
          • type:rural
          • Map:20
      • 1682: Feature (Point, 2 properties)
        • type:Feature
        • id:1873
        • geometry: Point (27.11, -7.57)
          • type:Point
          • coordinates: [27.114895477513855, -7.573344243718943]
            • 0:27.114895477513855
            • 1:-7.573344243718943
        • properties: rural
          • type:rural
          • Map:10
      • 1683: Feature (Point, 2 properties)
        • type:Feature
        • id:1874
        • geometry: Point (0.04, 20.59)
          • type:Point
          • coordinates: [0.039220103442377044, 20.592277819003744]
            • 0:0.039220103442377044
            • 1:20.592277819003744
        • properties: rural
          • type:rural
          • Map:60
      • 1684: Feature (Point, 2 properties)
        • type:Feature
        • id:1875
        • geometry: Point (13.12, -13.61)
          • type:Point
          • coordinates: [13.119912703976862, -13.610488990072115]
            • 0:13.119912703976862
            • 1:-13.610488990072115
        • properties: rural
          • type:rural
          • Map:20
      • 1685: Feature (Point, 2 properties)
        • type:Feature
        • id:1876
        • geometry: Point (-5.30, 25.13)
          • type:Point
          • coordinates: [-5.299542079123624, 25.13293470531442]
            • 0:-5.299542079123624
            • 1:25.13293470531442
        • properties: rural
          • type:rural
          • Map:60
      • 1686: Feature (Point, 2 properties)
        • type:Feature
        • id:1877
        • geometry: Point (-0.67, 12.00)
          • type:Point
          • coordinates: [-0.6650953206159226, 12.004989962120403]
            • 0:-0.6650953206159226
            • 1:12.004989962120403
        • properties: rural
          • type:rural
          • Map:40
      • 1687: Feature (Point, 2 properties)
        • type:Feature
        • id:1878
        • geometry: Point (0.24, 15.83)
          • type:Point
          • coordinates: [0.23503308551702934, 15.829872311811965]
            • 0:0.23503308551702934
            • 1:15.829872311811965
        • properties: rural
          • type:rural
          • Map:30
      • 1688: Feature (Point, 2 properties)
        • type:Feature
        • id:1879
        • geometry: Point (-3.72, 15.05)
          • type:Point
          • coordinates: [-3.7242836868887306, 15.049214603991537]
            • 0:-3.7242836868887306
            • 1:15.049214603991537
        • properties: rural
          • type:rural
          • Map:30
      • 1689: Feature (Point, 2 properties)
        • type:Feature
        • id:1880
        • geometry: Point (2.41, 17.05)
          • type:Point
          • coordinates: [2.40721242201733, 17.05273887789114]
            • 0:2.40721242201733
            • 1:17.05273887789114
        • properties: rural
          • type:rural
          • Map:30
      • 1690: Feature (Point, 2 properties)
        • type:Feature
        • id:1881
        • geometry: Point (-1.88, 17.54)
          • type:Point
          • coordinates: [-1.8754381343338622, 17.535828650047392]
            • 0:-1.8754381343338622
            • 1:17.535828650047392
        • properties: rural
          • type:rural
          • Map:60
      • 1691: Feature (Point, 2 properties)
        • type:Feature
        • id:1882
        • geometry: Point (47.34, 7.77)
          • type:Point
          • coordinates: [47.3439386211709, 7.770124576278306]
            • 0:47.3439386211709
            • 1:7.770124576278306
        • properties: rural
          • type:rural
          • Map:20
      • 1692: Feature (Point, 2 properties)
        • type:Feature
        • id:1883
        • geometry: Point (36.63, 1.56)
          • type:Point
          • coordinates: [36.627063807184705, 1.5610974885602584]
            • 0:36.627063807184705
            • 1:1.5610974885602584
        • properties: rural
          • type:rural
          • Map:20
      • 1693: Feature (Point, 2 properties)
        • type:Feature
        • id:1884
        • geometry: Point (22.62, 0.13)
          • type:Point
          • coordinates: [22.615598115933697, 0.12847867609068594]
            • 0:22.615598115933697
            • 1:0.12847867609068594
        • properties: rural
          • type:rural
          • Map:10
      • 1694: Feature (Point, 2 properties)
        • type:Feature
        • id:1886
        • geometry: Point (19.65, 0.52)
          • type:Point
          • coordinates: [19.649309578879276, 0.5167055695539263]
            • 0:19.649309578879276
            • 1:0.5167055695539263
        • properties: rural
          • type:rural
          • Map:10
      • 1695: Feature (Point, 2 properties)
        • type:Feature
        • id:1887
        • geometry: Point (30.72, -19.20)
          • type:Point
          • coordinates: [30.718940445148544, -19.197095369451805]
            • 0:30.718940445148544
            • 1:-19.197095369451805
        • properties: rural
          • type:rural
          • Map:30
      • 1696: Feature (Point, 2 properties)
        • type:Feature
        • id:1889
        • geometry: Point (21.56, 1.14)
          • type:Point
          • coordinates: [21.555883591242704, 1.1444495258111111]
            • 0:21.555883591242704
            • 1:1.1444495258111111
        • properties: rural
          • type:rural
          • Map:10
      • 1697: Feature (Point, 2 properties)
        • type:Feature
        • id:1891
        • geometry: Point (26.16, -8.71)
          • type:Point
          • coordinates: [26.155020964127818, -8.708769755819084]
            • 0:26.155020964127818
            • 1:-8.708769755819084
        • properties: rural
          • type:rural
          • Map:10
      • 1698: Feature (Point, 2 properties)
        • type:Feature
        • id:1892
        • geometry: Point (17.27, -11.11)
          • type:Point
          • coordinates: [17.26850066498879, -11.109256494042254]
            • 0:17.26850066498879
            • 1:-11.109256494042254
        • properties: rural
          • type:rural
          • Map:10
      • 1699: Feature (Point, 2 properties)
        • type:Feature
        • id:1893
        • geometry: Point (24.99, -15.52)
          • type:Point
          • coordinates: [24.987511765660855, -15.516161780833578]
            • 0:24.987511765660855
            • 1:-15.516161780833578
        • properties: rural
          • type:rural
          • Map:10
      • 1700: Feature (Point, 2 properties)
        • type:Feature
        • id:1896
        • geometry: Point (42.69, 6.61)
          • type:Point
          • coordinates: [42.688043013167295, 6.609051014950418]
            • 0:42.688043013167295
            • 1:6.609051014950418
        • properties: rural
          • type:rural
          • Map:20
      • 1701: Feature (Point, 2 properties)
        • type:Feature
        • id:1897
        • geometry: Point (-4.61, 12.83)
          • type:Point
          • coordinates: [-4.607957962994386, 12.834151122891285]
            • 0:-4.607957962994386
            • 1:12.834151122891285
        • properties: rural
          • type:rural
          • Map:20
      • 1702: Feature (Point, 2 properties)
        • type:Feature
        • id:1898
        • geometry: Point (29.98, -13.63)
          • type:Point
          • coordinates: [29.979959021784087, -13.627582993264376]
            • 0:29.979959021784087
            • 1:-13.627582993264376
        • properties: rural
          • type:rural
          • Map:20
      • 1703: Feature (Point, 2 properties)
        • type:Feature
        • id:1899
        • geometry: Point (9.35, 4.98)
          • type:Point
          • coordinates: [9.346822569386571, 4.978143769185958]
            • 0:9.346822569386571
            • 1:4.978143769185958
        • properties: rural
          • type:rural
          • Map:10
      • 1704: Feature (Point, 2 properties)
        • type:Feature
        • id:1901
        • geometry: Point (34.24, -2.67)
          • type:Point
          • coordinates: [34.237114833158216, -2.6734865438060433]
            • 0:34.237114833158216
            • 1:-2.6734865438060433
        • properties: rural
          • type:rural
          • Map:40
      • 1705: Feature (Point, 2 properties)
        • type:Feature
        • id:1902
        • geometry: Point (30.47, -9.20)
          • type:Point
          • coordinates: [30.46679262065508, -9.202820934435273]
            • 0:30.46679262065508
            • 1:-9.202820934435273
        • properties: rural
          • type:rural
          • Map:10
      • 1706: Feature (Point, 2 properties)
        • type:Feature
        • id:1903
        • geometry: Point (13.01, -13.74)
          • type:Point
          • coordinates: [13.012200487719268, -13.74013582641672]
            • 0:13.012200487719268
            • 1:-13.74013582641672
        • properties: rural
          • type:rural
          • Map:20
      • 1707: Feature (Point, 2 properties)
        • type:Feature
        • id:1904
        • geometry: Point (1.15, 12.33)
          • type:Point
          • coordinates: [1.1491628074190363, 12.331927312282762]
            • 0:1.1491628074190363
            • 1:12.331927312282762
        • properties: rural
          • type:rural
          • Map:30
      • 1708: Feature (Point, 2 properties)
        • type:Feature
        • id:1906
        • geometry: Point (24.16, -13.18)
          • type:Point
          • coordinates: [24.160280015566254, -13.177573795643433]
            • 0:24.160280015566254
            • 1:-13.177573795643433
        • properties: rural
          • type:rural
          • Map:10
      • 1709: Feature (Point, 2 properties)
        • type:Feature
        • id:1907
        • geometry: Point (37.39, -2.56)
          • type:Point
          • coordinates: [37.389888219713164, -2.555048967228096]
            • 0:37.389888219713164
            • 1:-2.555048967228096
        • properties: rural
          • type:rural
          • Map:20
      • 1710: Feature (Point, 2 properties)
        • type:Feature
        • id:1908
        • geometry: Point (-12.52, 13.23)
          • type:Point
          • coordinates: [-12.519748740690176, 13.22756790276161]
            • 0:-12.519748740690176
            • 1:13.22756790276161
        • properties: rural
          • type:rural
          • Map:10
      • 1711: Feature (Point, 2 properties)
        • type:Feature
        • id:1909
        • geometry: Point (24.03, -13.93)
          • type:Point
          • coordinates: [24.02645389547706, -13.932995592942907]
            • 0:24.02645389547706
            • 1:-13.932995592942907
        • properties: rural
          • type:rural
          • Map:10
      • 1712: Feature (Point, 2 properties)
        • type:Feature
        • id:1910
        • geometry: Point (-11.33, 19.07)
          • type:Point
          • coordinates: [-11.333824859433076, 19.072627111436134]
            • 0:-11.333824859433076
            • 1:19.072627111436134
        • properties: rural
          • type:rural
          • Map:60
      • 1713: Feature (Point, 2 properties)
        • type:Feature
        • id:1911
        • geometry: Point (38.79, -0.48)
          • type:Point
          • coordinates: [38.78679616061401, -0.4845506366953349]
            • 0:38.78679616061401
            • 1:-0.4845506366953349
        • properties: rural
          • type:rural
          • Map:20
      • 1714: Feature (Point, 2 properties)
        • type:Feature
        • id:1912
        • geometry: Point (-4.17, 21.10)
          • type:Point
          • coordinates: [-4.173002018887036, 21.10324079644151]
            • 0:-4.173002018887036
            • 1:21.10324079644151
        • properties: rural
          • type:rural
          • Map:60
      • 1715: Feature (Point, 2 properties)
        • type:Feature
        • id:1913
        • geometry: Point (40.08, 8.01)
          • type:Point
          • coordinates: [40.07743990741867, 8.010349912769113]
            • 0:40.07743990741867
            • 1:8.010349912769113
        • properties: rural
          • type:rural
          • Map:10
      • 1716: Feature (Point, 2 properties)
        • type:Feature
        • id:1915
        • geometry: Point (19.62, -1.66)
          • type:Point
          • coordinates: [19.61938896311294, -1.6627015959027909]
            • 0:19.61938896311294
            • 1:-1.6627015959027909
        • properties: rural
          • type:rural
          • Map:10
      • 1717: Feature (Point, 2 properties)
        • type:Feature
        • id:1916
        • geometry: Point (-4.35, 22.92)
          • type:Point
          • coordinates: [-4.351154211147166, 22.921880830651347]
            • 0:-4.351154211147166
            • 1:22.921880830651347
        • properties: rural
          • type:rural
          • Map:60
      • 1718: Feature (Point, 2 properties)
        • type:Feature
        • id:1917
        • geometry: Point (30.03, 1.72)
          • type:Point
          • coordinates: [30.032971017177548, 1.7172891522109086]
            • 0:30.032971017177548
            • 1:1.7172891522109086
        • properties: rural
          • type:rural
          • Map:10
      • 1719: Feature (Point, 2 properties)
        • type:Feature
        • id:1918
        • geometry: Point (17.12, -6.77)
          • type:Point
          • coordinates: [17.1249292816941, -6.7678415967779255]
            • 0:17.1249292816941
            • 1:-6.7678415967779255
        • properties: rural
          • type:rural
          • Map:10
      • 1720: Feature (Point, 2 properties)
        • type:Feature
        • id:1919
        • geometry: Point (22.03, -10.39)
          • type:Point
          • coordinates: [22.032079101272235, -10.392291138026529]
            • 0:22.032079101272235
            • 1:-10.392291138026529
        • properties: rural
          • type:rural
          • Map:90
      • 1721: Feature (Point, 2 properties)
        • type:Feature
        • id:1920
        • geometry: Point (37.72, -8.71)
          • type:Point
          • coordinates: [37.71539343132534, -8.709519392510582]
            • 0:37.71539343132534
            • 1:-8.709519392510582
        • properties: rural
          • type:rural
          • Map:20
      • 1722: Feature (Point, 2 properties)
        • type:Feature
        • id:1921
        • geometry: Point (38.08, 9.76)
          • type:Point
          • coordinates: [38.084580956606, 9.763217315757702]
            • 0:38.084580956606
            • 1:9.763217315757702
        • properties: rural
          • type:rural
          • Map:40
      • 1723: Feature (Point, 2 properties)
        • type:Feature
        • id:1922
        • geometry: Point (-3.62, 19.95)
          • type:Point
          • coordinates: [-3.615334249640091, 19.954430673646492]
            • 0:-3.615334249640091
            • 1:19.954430673646492
        • properties: rural
          • type:rural
          • Map:60
      • 1724: Feature (Point, 2 properties)
        • type:Feature
        • id:1924
        • geometry: Point (34.15, 0.03)
          • type:Point
          • coordinates: [34.150934767894974, 0.029877482982604103]
            • 0:34.150934767894974
            • 1:0.029877482982604103
        • properties: rural
          • type:rural
          • Map:30
      • 1725: Feature (Point, 2 properties)
        • type:Feature
        • id:1925
        • geometry: Point (28.92, -19.74)
          • type:Point
          • coordinates: [28.91664091525608, -19.738239507962508]
            • 0:28.91664091525608
            • 1:-19.738239507962508
        • properties: rural
          • type:rural
          • Map:20
      • 1726: Feature (Point, 2 properties)
        • type:Feature
        • id:1926
        • geometry: Point (23.98, 0.50)
          • type:Point
          • coordinates: [23.9785285130917, 0.49972015132829384]
            • 0:23.9785285130917
            • 1:0.49972015132829384
        • properties: rural
          • type:rural
          • Map:10
      • 1727: Feature (Point, 2 properties)
        • type:Feature
        • id:1927
        • geometry: Point (29.22, -20.90)
          • type:Point
          • coordinates: [29.215939149298155, -20.90373552674661]
            • 0:29.215939149298155
            • 1:-20.90373552674661
        • properties: rural
          • type:rural
          • Map:20
      • 1728: Feature (Point, 2 properties)
        • type:Feature
        • id:1928
        • geometry: Point (-10.33, 25.16)
          • type:Point
          • coordinates: [-10.334153353799486, 25.15792348990587]
            • 0:-10.334153353799486
            • 1:25.15792348990587
        • properties: rural
          • type:rural
          • Map:60
      • 1729: Feature (Point, 2 properties)
        • type:Feature
        • id:1929
        • geometry: Point (27.89, -2.52)
          • type:Point
          • coordinates: [27.886755055476634, -2.5173839505328672]
            • 0:27.886755055476634
            • 1:-2.5173839505328672
        • properties: rural
          • type:rural
          • Map:10
      • 1730: Feature (Point, 2 properties)
        • type:Feature
        • id:1930
        • geometry: Point (15.01, -16.23)
          • type:Point
          • coordinates: [15.008395727468685, -16.228016069839423]
            • 0:15.008395727468685
            • 1:-16.228016069839423
        • properties: rural
          • type:rural
          • Map:20
      • 1731: Feature (Point, 2 properties)
        • type:Feature
        • id:1931
        • geometry: Point (-4.53, 14.20)
          • type:Point
          • coordinates: [-4.529848873244952, 14.204226163610393]
            • 0:-4.529848873244952
            • 1:14.204226163610393
        • properties: rural
          • type:rural
          • Map:90
      • 1732: Feature (Point, 2 properties)
        • type:Feature
        • id:1932
        • geometry: Point (26.29, -9.48)
          • type:Point
          • coordinates: [26.291664983309, -9.479881410928392]
            • 0:26.291664983309
            • 1:-9.479881410928392
        • properties: rural
          • type:rural
          • Map:10
      • 1733: Feature (Point, 2 properties)
        • type:Feature
        • id:1933
        • geometry: Point (32.94, -10.65)
          • type:Point
          • coordinates: [32.93622002178147, -10.65468027164383]
            • 0:32.93622002178147
            • 1:-10.65468027164383
        • properties: rural
          • type:rural
          • Map:10
      • 1734: Feature (Point, 2 properties)
        • type:Feature
        • id:1934
        • geometry: Point (40.23, 3.15)
          • type:Point
          • coordinates: [40.22711746563426, 3.147540030169345]
            • 0:40.22711746563426
            • 1:3.147540030169345
        • properties: rural
          • type:rural
          • Map:20
      • 1735: Feature (Point, 2 properties)
        • type:Feature
        • id:1936
        • geometry: Point (34.31, -7.31)
          • type:Point
          • coordinates: [34.31097137621377, -7.307625318649165]
            • 0:34.31097137621377
            • 1:-7.307625318649165
        • properties: rural
          • type:rural
          • Map:10
      • 1736: Feature (Point, 2 properties)
        • type:Feature
        • id:1937
        • geometry: Point (-9.26, 20.64)
          • type:Point
          • coordinates: [-9.255819963810316, 20.639859648923885]
            • 0:-9.255819963810316
            • 1:20.639859648923885
        • properties: rural
          • type:rural
          • Map:60
      • 1737: Feature (Point, 2 properties)
        • type:Feature
        • id:1938
        • geometry: Point (49.62, -15.00)
          • type:Point
          • coordinates: [49.620443078540184, -15.00102278616839]
            • 0:49.620443078540184
            • 1:-15.00102278616839
        • properties: rural
          • type:rural
          • Map:10
      • 1738: Feature (Point, 2 properties)
        • type:Feature
        • id:1939
        • geometry: Point (48.69, -14.10)
          • type:Point
          • coordinates: [48.69159454039136, -14.097887079124899]
            • 0:48.69159454039136
            • 1:-14.097887079124899
        • properties: rural
          • type:rural
          • Map:10
      • 1739: Feature (Point, 2 properties)
        • type:Feature
        • id:1942
        • geometry: Point (32.01, -11.20)
          • type:Point
          • coordinates: [32.00962114518806, -11.19546470414979]
            • 0:32.00962114518806
            • 1:-11.19546470414979
        • properties: rural
          • type:rural
          • Map:10
      • 1740: Feature (Point, 2 properties)
        • type:Feature
        • id:1944
        • geometry: Point (20.68, -12.74)
          • type:Point
          • coordinates: [20.680344125849096, -12.74448605014209]
            • 0:20.680344125849096
            • 1:-12.74448605014209
        • properties: rural
          • type:rural
          • Map:10
      • 1741: Feature (Point, 2 properties)
        • type:Feature
        • id:1945
        • geometry: Point (-10.08, 20.80)
          • type:Point
          • coordinates: [-10.075275127974813, 20.80293566011496]
            • 0:-10.075275127974813
            • 1:20.80293566011496
        • properties: rural
          • type:rural
          • Map:60
      • 1742: Feature (Point, 2 properties)
        • type:Feature
        • id:1946
        • geometry: Point (28.92, -18.51)
          • type:Point
          • coordinates: [28.922951896115745, -18.512782338626746]
            • 0:28.922951896115745
            • 1:-18.512782338626746
        • properties: rural
          • type:rural
          • Map:10
      • 1743: Feature (Point, 2 properties)
        • type:Feature
        • id:1947
        • geometry: Point (-12.02, 18.27)
          • type:Point
          • coordinates: [-12.017594332982467, 18.271401764725365]
            • 0:-12.017594332982467
            • 1:18.271401764725365
        • properties: rural
          • type:rural
          • Map:60
      • 1744: Feature (Point, 2 properties)
        • type:Feature
        • id:1948
        • geometry: Point (-2.20, 9.75)
          • type:Point
          • coordinates: [-2.195148126467041, 9.745298129497137]
            • 0:-2.195148126467041
            • 1:9.745298129497137
        • properties: rural
          • type:rural
          • Map:20
      • 1745: Feature (Point, 2 properties)
        • type:Feature
        • id:1949
        • geometry: Point (-5.50, 13.35)
          • type:Point
          • coordinates: [-5.500855096775133, 13.350356837191388]
            • 0:-5.500855096775133
            • 1:13.350356837191388
        • properties: rural
          • type:rural
          • Map:30
      • 1746: Feature (Point, 2 properties)
        • type:Feature
        • id:1950
        • geometry: Point (-7.83, 21.44)
          • type:Point
          • coordinates: [-7.8276464524474285, 21.43815572983784]
            • 0:-7.8276464524474285
            • 1:21.43815572983784
        • properties: rural
          • type:rural
          • Map:60
      • 1747: Feature (Point, 2 properties)
        • type:Feature
        • id:1951
        • geometry: Point (15.44, 2.94)
          • type:Point
          • coordinates: [15.439256575704325, 2.9445449745149035]
            • 0:15.439256575704325
            • 1:2.9445449745149035
        • properties: rural
          • type:rural
          • Map:10
      • 1748: Feature (Point, 2 properties)
        • type:Feature
        • id:1952
        • geometry: Point (20.92, -7.71)
          • type:Point
          • coordinates: [20.923155459013266, -7.712638389217166]
            • 0:20.923155459013266
            • 1:-7.712638389217166
        • properties: rural
          • type:rural
          • Map:10
      • 1749: Feature (Point, 2 properties)
        • type:Feature
        • id:1953
        • geometry: Point (47.59, -23.10)
          • type:Point
          • coordinates: [47.58964999041757, -23.099276504389575]
            • 0:47.58964999041757
            • 1:-23.099276504389575
        • properties: rural
          • type:rural
          • Map:10
      • 1750: Feature (Point, 2 properties)
        • type:Feature
        • id:1954
        • geometry: Point (-6.44, 15.76)
          • type:Point
          • coordinates: [-6.437267250902635, 15.763880451488182]
            • 0:-6.437267250902635
            • 1:15.763880451488182
        • properties: rural
          • type:rural
          • Map:20
      • 1751: Feature (Point, 2 properties)
        • type:Feature
        • id:1955
        • geometry: Point (14.29, -8.42)
          • type:Point
          • coordinates: [14.28745903649511, -8.417324138629326]
            • 0:14.28745903649511
            • 1:-8.417324138629326
        • properties: rural
          • type:rural
          • Map:10
      • 1752: Feature (Point, 2 properties)
        • type:Feature
        • id:1956
        • geometry: Point (-7.77, 13.04)
          • type:Point
          • coordinates: [-7.774701851627097, 13.037189132430662]
            • 0:-7.774701851627097
            • 1:13.037189132430662
        • properties: rural
          • type:rural
          • Map:40
      • 1753: Feature (Point, 2 properties)
        • type:Feature
        • id:1957
        • geometry: Point (-4.37, 14.67)
          • type:Point
          • coordinates: [-4.366668807566176, 14.671289396917848]
            • 0:-4.366668807566176
            • 1:14.671289396917848
        • properties: rural
          • type:rural
          • Map:90
      • 1754: Feature (Point, 2 properties)
        • type:Feature
        • id:1958
        • geometry: Point (-14.81, 16.72)
          • type:Point
          • coordinates: [-14.80706957307289, 16.715766389276624]
            • 0:-14.80706957307289
            • 1:16.715766389276624
        • properties: rural
          • type:rural
          • Map:30
      • 1755: Feature (Point, 2 properties)
        • type:Feature
        • id:1959
        • geometry: Point (32.47, -2.23)
          • type:Point
          • coordinates: [32.467793777905285, -2.230813591276054]
            • 0:32.467793777905285
            • 1:-2.230813591276054
        • properties: rural
          • type:rural
          • Map:80
      • 1756: Feature (Point, 2 properties)
        • type:Feature
        • id:1960
        • geometry: Point (18.15, -10.73)
          • type:Point
          • coordinates: [18.150895066260546, -10.726011869905856]
            • 0:18.150895066260546
            • 1:-10.726011869905856
        • properties: rural
          • type:rural
          • Map:10
      • 1757: Feature (Point, 2 properties)
        • type:Feature
        • id:1961
        • geometry: Point (23.78, -8.57)
          • type:Point
          • coordinates: [23.781586269651225, -8.57247637657427]
            • 0:23.781586269651225
            • 1:-8.57247637657427
        • properties: rural
          • type:rural
          • Map:30
      • 1758: Feature (Point, 2 properties)
        • type:Feature
        • id:1962
        • geometry: Point (-0.70, 9.12)
          • type:Point
          • coordinates: [-0.7037202010934827, 9.120966313988273]
            • 0:-0.7037202010934827
            • 1:9.120966313988273
        • properties: rural
          • type:rural
          • Map:30
      • 1759: Feature (Point, 2 properties)
        • type:Feature
        • id:1963
        • geometry: Point (-8.35, 22.73)
          • type:Point
          • coordinates: [-8.35020368719953, 22.734248287128523]
            • 0:-8.35020368719953
            • 1:22.734248287128523
        • properties: rural
          • type:rural
          • Map:60
      • 1760: Feature (Point, 2 properties)
        • type:Feature
        • id:1964
        • geometry: Point (-12.04, 19.12)
          • type:Point
          • coordinates: [-12.039099440431823, 19.11928829143392]
            • 0:-12.039099440431823
            • 1:19.11928829143392
        • properties: rural
          • type:rural
          • Map:60
      • 1761: Feature (Point, 2 properties)
        • type:Feature
        • id:1965
        • geometry: Point (-5.81, 16.80)
          • type:Point
          • coordinates: [-5.808762991889184, 16.79530900917579]
            • 0:-5.808762991889184
            • 1:16.79530900917579
        • properties: rural
          • type:rural
          • Map:30
      • 1762: Feature (Point, 2 properties)
        • type:Feature
        • id:1966
        • geometry: Point (20.79, -5.16)
          • type:Point
          • coordinates: [20.790877652746016, -5.1573022912598665]
            • 0:20.790877652746016
            • 1:-5.1573022912598665
        • properties: rural
          • type:rural
          • Map:30
      • 1763: Feature (Point, 2 properties)
        • type:Feature
        • id:1968
        • geometry: Point (-8.67, 13.07)
          • type:Point
          • coordinates: [-8.66709030829746, 13.069724840407845]
            • 0:-8.66709030829746
            • 1:13.069724840407845
        • properties: rural
          • type:rural
          • Map:20
      • 1764: Feature (Point, 2 properties)
        • type:Feature
        • id:1969
        • geometry: Point (48.71, -15.66)
          • type:Point
          • coordinates: [48.70926603386394, -15.657855442753787]
            • 0:48.70926603386394
            • 1:-15.657855442753787
        • properties: rural
          • type:rural
          • Map:30
      • 1765: Feature (Point, 2 properties)
        • type:Feature
        • id:1970
        • geometry: Point (-13.45, 17.96)
          • type:Point
          • coordinates: [-13.445948923668983, 17.95704278246151]
            • 0:-13.445948923668983
            • 1:17.95704278246151
        • properties: rural
          • type:rural
          • Map:60
      • 1766: Feature (Point, 2 properties)
        • type:Feature
        • id:1971
        • geometry: Point (40.70, 12.94)
          • type:Point
          • coordinates: [40.70008651013011, 12.937245607899058]
            • 0:40.70008651013011
            • 1:12.937245607899058
        • properties: rural
          • type:rural
          • Map:60
      • 1767: Feature (Point, 2 properties)
        • type:Feature
        • id:1972
        • geometry: Point (11.11, 4.28)
          • type:Point
          • coordinates: [11.109765285250907, 4.280344367288766]
            • 0:11.109765285250907
            • 1:4.280344367288766
        • properties: rural
          • type:rural
          • Map:30
      • 1768: Feature (Point, 2 properties)
        • type:Feature
        • id:1973
        • geometry: Point (28.87, -9.58)
          • type:Point
          • coordinates: [28.866454284031416, -9.576589841579866]
            • 0:28.866454284031416
            • 1:-9.576589841579866
        • properties: rural
          • type:rural
          • Map:10
      • 1769: Feature (Point, 2 properties)
        • type:Feature
        • id:1974
        • geometry: Point (-4.48, 23.03)
          • type:Point
          • coordinates: [-4.48020635690103, 23.033024385907133]
            • 0:-4.48020635690103
            • 1:23.033024385907133
        • properties: rural
          • type:rural
          • Map:60
      • 1770: Feature (Point, 2 properties)
        • type:Feature
        • id:1975
        • geometry: Point (-4.88, 19.72)
          • type:Point
          • coordinates: [-4.882141478670457, 19.723281846392965]
            • 0:-4.882141478670457
            • 1:19.723281846392965
        • properties: rural
          • type:rural
          • Map:60
      • 1771: Feature (Point, 2 properties)
        • type:Feature
        • id:1976
        • geometry: Point (30.40, -12.57)
          • type:Point
          • coordinates: [30.39974962589206, -12.569828541200847]
            • 0:30.39974962589206
            • 1:-12.569828541200847
        • properties: rural
          • type:rural
          • Map:10
      • 1772: Feature (Point, 2 properties)
        • type:Feature
        • id:1977
        • geometry: Point (26.56, -3.03)
          • type:Point
          • coordinates: [26.564942168642318, -3.0270493257415563]
            • 0:26.564942168642318
            • 1:-3.0270493257415563
        • properties: rural
          • type:rural
          • Map:10
      • 1773: Feature (Point, 2 properties)
        • type:Feature
        • id:1978
        • geometry: Point (-3.08, 16.93)
          • type:Point
          • coordinates: [-3.0750973693563206, 16.927312434010744]
            • 0:-3.0750973693563206
            • 1:16.927312434010744
        • properties: rural
          • type:rural
          • Map:30
      • 1774: Feature (Point, 2 properties)
        • type:Feature
        • id:1979
        • geometry: Point (19.31, -10.60)
          • type:Point
          • coordinates: [19.307039094975067, -10.595841994679773]
            • 0:19.307039094975067
            • 1:-10.595841994679773
        • properties: rural
          • type:rural
          • Map:10
      • 1775: Feature (Point, 2 properties)
        • type:Feature
        • id:1980
        • geometry: Point (36.28, -4.36)
          • type:Point
          • coordinates: [36.27615705033493, -4.3583150138654965]
            • 0:36.27615705033493
            • 1:-4.3583150138654965
        • properties: rural
          • type:rural
          • Map:30
      • 1776: Feature (Point, 2 properties)
        • type:Feature
        • id:1981
        • geometry: Point (-12.42, 19.34)
          • type:Point
          • coordinates: [-12.424856284352149, 19.33592065547923]
            • 0:-12.424856284352149
            • 1:19.33592065547923
        • properties: rural
          • type:rural
          • Map:60
      • 1777: Feature (Point, 2 properties)
        • type:Feature
        • id:1982
        • geometry: Point (34.32, -0.50)
          • type:Point
          • coordinates: [34.32287028329881, -0.4958807382594281]
            • 0:34.32287028329881
            • 1:-0.4958807382594281
        • properties: rural
          • type:rural
          • Map:30
      • 1778: Feature (Point, 2 properties)
        • type:Feature
        • id:1983
        • geometry: Point (32.92, -17.50)
          • type:Point
          • coordinates: [32.92381296183311, -17.498345498426524]
            • 0:32.92381296183311
            • 1:-17.498345498426524
        • properties: rural
          • type:rural
          • Map:20
      • 1779: Feature (Point, 2 properties)
        • type:Feature
        • id:1984
        • geometry: Point (18.30, -5.09)
          • type:Point
          • coordinates: [18.300393562607752, -5.092651484185718]
            • 0:18.300393562607752
            • 1:-5.092651484185718
        • properties: rural
          • type:rural
          • Map:30
      • 1780: Feature (Point, 2 properties)
        • type:Feature
        • id:1985
        • geometry: Point (-7.09, 22.41)
          • type:Point
          • coordinates: [-7.09325610247882, 22.413642610535952]
            • 0:-7.09325610247882
            • 1:22.413642610535952
        • properties: rural
          • type:rural
          • Map:60
      • 1781: Feature (Point, 2 properties)
        • type:Feature
        • id:1986
        • geometry: Point (18.69, 0.67)
          • type:Point
          • coordinates: [18.69176977099818, 0.672726612605066]
            • 0:18.69176977099818
            • 1:0.672726612605066
        • properties: rural
          • type:rural
          • Map:10
      • 1782: Feature (Point, 2 properties)
        • type:Feature
        • id:1987
        • geometry: Point (27.80, -11.91)
          • type:Point
          • coordinates: [27.802598661671194, -11.909776970896406]
            • 0:27.802598661671194
            • 1:-11.909776970896406
        • properties: rural
          • type:rural
          • Map:10
      • 1783: Feature (Point, 2 properties)
        • type:Feature
        • id:1988
        • geometry: Point (23.23, -17.03)
          • type:Point
          • coordinates: [23.232092776625933, -17.025274005534772]
            • 0:23.232092776625933
            • 1:-17.025274005534772
        • properties: rural
          • type:rural
          • Map:30
      • 1784: Feature (Point, 2 properties)
        • type:Feature
        • id:1989
        • geometry: Point (-2.46, 20.30)
          • type:Point
          • coordinates: [-2.4633331211391947, 20.298958130504886]
            • 0:-2.4633331211391947
            • 1:20.298958130504886
        • properties: rural
          • type:rural
          • Map:60
      • 1785: Feature (Point, 2 properties)
        • type:Feature
        • id:1990
        • geometry: Point (-16.80, 14.34)
          • type:Point
          • coordinates: [-16.7994961257357, 14.340935756261612]
            • 0:-16.7994961257357
            • 1:14.340935756261612
        • properties: rural
          • type:rural
          • Map:40
      • 1786: Feature (Point, 2 properties)
        • type:Feature
        • id:1991
        • geometry: Point (33.24, -11.79)
          • type:Point
          • coordinates: [33.23940191546313, -11.79259534941778]
            • 0:33.23940191546313
            • 1:-11.79259534941778
        • properties: rural
          • type:rural
          • Map:20
      • 1787: Feature (Point, 2 properties)
        • type:Feature
        • id:1992
        • geometry: Point (26.23, -3.72)
          • type:Point
          • coordinates: [26.23295011865878, -3.7249353869537014]
            • 0:26.23295011865878
            • 1:-3.7249353869537014
        • properties: rural
          • type:rural
          • Map:10
      • 1788: Feature (Point, 2 properties)
        • type:Feature
        • id:1993
        • geometry: Point (22.46, 3.40)
          • type:Point
          • coordinates: [22.45590502040319, 3.3958785332612424]
            • 0:22.45590502040319
            • 1:3.3958785332612424
        • properties: rural
          • type:rural
          • Map:10
      • 1789: Feature (Point, 2 properties)
        • type:Feature
        • id:1994
        • geometry: Point (-13.90, 14.38)
          • type:Point
          • coordinates: [-13.896079044271712, 14.383261304227984]
            • 0:-13.896079044271712
            • 1:14.383261304227984
        • properties: rural
          • type:rural
          • Map:30
      • 1790: Feature (Point, 2 properties)
        • type:Feature
        • id:1995
        • geometry: Point (28.90, -0.54)
          • type:Point
          • coordinates: [28.901161899832584, -0.5390431738652862]
            • 0:28.901161899832584
            • 1:-0.5390431738652862
        • properties: rural
          • type:rural
          • Map:10
      • 1791: Feature (Point, 2 properties)
        • type:Feature
        • id:1996
        • geometry: Point (22.36, -12.25)
          • type:Point
          • coordinates: [22.358729004715872, -12.247265119046327]
            • 0:22.358729004715872
            • 1:-12.247265119046327
        • properties: rural
          • type:rural
          • Map:30
      • 1792: Feature (Point, 2 properties)
        • type:Feature
        • id:1997
        • geometry: Point (-1.37, 5.64)
          • type:Point
          • coordinates: [-1.3691974706574566, 5.639703605593191]
            • 0:-1.3691974706574566
            • 1:5.639703605593191
        • properties: rural
          • type:rural
          • Map:10
      • 1793: Feature (Point, 2 properties)
        • type:Feature
        • id:1998
        • geometry: Point (27.44, 3.22)
          • type:Point
          • coordinates: [27.43646017088088, 3.223025052131515]
            • 0:27.43646017088088
            • 1:3.223025052131515
        • properties: rural
          • type:rural
          • Map:10
      • 1794: Feature (Point, 2 properties)
        • type:Feature
        • id:1999
        • geometry: Point (21.88, -12.76)
          • type:Point
          • coordinates: [21.879369798717324, -12.760596052173069]
            • 0:21.879369798717324
            • 1:-12.760596052173069
        • properties: rural
          • type:rural
          • Map:30

Built¶

In [41]:
built_pts = built.sample(
    region=all_minigrid_countries_fused_fc,
    scale=1000,
    numPixels=250000, # 250k pixels to get 700 not-null values
    seed=44,
    projection='EPSG:4326',
    geometries=True,
    dropNulls=True
)

# add a property "type" to the built_pts feature collection equal to "built"
built_pts = built_pts.map(lambda f: f.set('type', 'built'))

# export built sample to geojson
geemap.ee_to_geojson(built_pts, 'data/dark_africa/built_pts2.geo.json')
In [42]:
# read in the built_pts
built_pts = geemap.geojson_to_ee('data/dark_africa/built_pts2.geo.json')
# add to map
m.addLayer(built_pts, {'color': 'red'}, 'Built Points')
built_pts
Out[42]:
  • FeatureCollection (502 elements, 3 columns)
    • type:FeatureCollection
    • columns: String
      • type:String
      • Map:Integer
      • system:index:String
    • features: List (502 elements)
      • 0: Feature (Point, 2 properties)
        • type:Feature
        • id:272
        • geometry: Point (39.69, -4.01)
          • type:Point
          • coordinates: [39.68500559956632, -4.00668048167253]
            • 0:39.68500559956632
            • 1:-4.00668048167253
        • properties: built
          • type:built
          • Map:50
      • 1: Feature (Point, 2 properties)
        • type:Feature
        • id:929
        • geometry: Point (-13.82, 13.34)
          • type:Point
          • coordinates: [-13.820859779850917, 13.337086625086913]
            • 0:-13.820859779850917
            • 1:13.337086625086913
        • properties: built
          • type:built
          • Map:50
      • 2: Feature (Point, 2 properties)
        • type:Feature
        • id:1118
        • geometry: Point (32.61, -13.63)
          • type:Point
          • coordinates: [32.60938678629932, -13.631294007764842]
            • 0:32.60938678629932
            • 1:-13.631294007764842
        • properties: built
          • type:built
          • Map:50
      • 3: Feature (Point, 2 properties)
        • type:Feature
        • id:1565
        • geometry: Point (15.22, 10.34)
          • type:Point
          • coordinates: [15.221980300358238, 10.335302529997932]
            • 0:15.221980300358238
            • 1:10.335302529997932
        • properties: built
          • type:built
          • Map:50
      • 4: Feature (Point, 2 properties)
        • type:Feature
        • id:2377
        • geometry: Point (21.64, -5.88)
          • type:Point
          • coordinates: [21.63707082731204, -5.883648602476782]
            • 0:21.63707082731204
            • 1:-5.883648602476782
        • properties: built
          • type:built
          • Map:50
      • 5: Feature (Point, 2 properties)
        • type:Feature
        • id:2486
        • geometry: Point (31.93, -5.07)
          • type:Point
          • coordinates: [31.931241235598954, -5.073712144108704]
            • 0:31.931241235598954
            • 1:-5.073712144108704
        • properties: built
          • type:built
          • Map:50
      • 6: Feature (Point, 2 properties)
        • type:Feature
        • id:2737
        • geometry: Point (14.28, 10.59)
          • type:Point
          • coordinates: [14.275012864757485, 10.589162037252713]
            • 0:14.275012864757485
            • 1:10.589162037252713
        • properties: built
          • type:built
          • Map:50
      • 7: Feature (Point, 2 properties)
        • type:Feature
        • id:3440
        • geometry: Point (14.89, 12.42)
          • type:Point
          • coordinates: [14.887446847052885, 12.42404112866048]
            • 0:14.887446847052885
            • 1:12.42404112866048
        • properties: built
          • type:built
          • Map:50
      • 8: Feature (Point, 2 properties)
        • type:Feature
        • id:3952
        • geometry: Point (30.25, 1.57)
          • type:Point
          • coordinates: [30.245701660110843, 1.5733220604126268]
            • 0:30.245701660110843
            • 1:1.5733220604126268
        • properties: built
          • type:built
          • Map:50
      • 9: Feature (Point, 2 properties)
        • type:Feature
        • id:3967
        • geometry: Point (30.98, -17.85)
          • type:Point
          • coordinates: [30.980643686393048, -17.853648331023685]
            • 0:30.980643686393048
            • 1:-17.853648331023685
        • properties: built
          • type:built
          • Map:50
      • 10: Feature (Point, 2 properties)
        • type:Feature
        • id:4965
        • geometry: Point (23.37, -7.79)
          • type:Point
          • coordinates: [23.370366073960817, -7.791196667842085]
            • 0:23.370366073960817
            • 1:-7.791196667842085
        • properties: built
          • type:built
          • Map:50
      • 11: Feature (Point, 2 properties)
        • type:Feature
        • id:5373
        • geometry: Point (-6.89, 11.09)
          • type:Point
          • coordinates: [-6.894451459094084, 11.089482068159047]
            • 0:-6.894451459094084
            • 1:11.089482068159047
        • properties: built
          • type:built
          • Map:50
      • 12: Feature (Point, 2 properties)
        • type:Feature
        • id:5424
        • geometry: Point (-0.00, 9.45)
          • type:Point
          • coordinates: [-0.001972950115007826, 9.448122295552885]
            • 0:-0.001972950115007826
            • 1:9.448122295552885
        • properties: built
          • type:built
          • Map:50
      • 13: Feature (Point, 2 properties)
        • type:Feature
        • id:6022
        • geometry: Point (14.89, -5.24)
          • type:Point
          • coordinates: [14.891246542644437, -5.243041379346579]
            • 0:14.891246542644437
            • 1:-5.243041379346579
        • properties: built
          • type:built
          • Map:50
      • 14: Feature (Point, 2 properties)
        • type:Feature
        • id:6054
        • geometry: Point (19.57, -5.93)
          • type:Point
          • coordinates: [19.571347609590642, -5.930421041011078]
            • 0:19.571347609590642
            • 1:-5.930421041011078
        • properties: built
          • type:built
          • Map:50
      • 15: Feature (Point, 2 properties)
        • type:Feature
        • id:6101
        • geometry: Point (13.16, -8.94)
          • type:Point
          • coordinates: [13.164941764535781, -8.944287125230327]
            • 0:13.164941764535781
            • 1:-8.944287125230327
        • properties: built
          • type:built
          • Map:50
      • 16: Feature (Point, 2 properties)
        • type:Feature
        • id:7923
        • geometry: Point (13.30, -5.48)
          • type:Point
          • coordinates: [13.300876425005635, -5.4808114046654435]
            • 0:13.300876425005635
            • 1:-5.4808114046654435
        • properties: built
          • type:built
          • Map:50
      • 17: Feature (Point, 2 properties)
        • type:Feature
        • id:8579
        • geometry: Point (-3.02, 14.35)
          • type:Point
          • coordinates: [-3.019504853152448, 14.352190934267865]
            • 0:-3.019504853152448
            • 1:14.352190934267865
        • properties: built
          • type:built
          • Map:50
      • 18: Feature (Point, 2 properties)
        • type:Feature
        • id:8752
        • geometry: Point (-16.93, 14.77)
          • type:Point
          • coordinates: [-16.930251819397128, 14.773647578326063]
            • 0:-16.930251819397128
            • 1:14.773647578326063
        • properties: built
          • type:built
          • Map:50
      • 19: Feature (Point, 2 properties)
        • type:Feature
        • id:9055
        • geometry: Point (27.42, -11.70)
          • type:Point
          • coordinates: [27.42105759920372, -11.698583605322428]
            • 0:27.42105759920372
            • 1:-11.698583605322428
        • properties: built
          • type:built
          • Map:50
      • 20: Feature (Point, 2 properties)
        • type:Feature
        • id:9460
        • geometry: Point (37.62, 7.45)
          • type:Point
          • coordinates: [37.623664277059554, 7.448250645636267]
            • 0:37.623664277059554
            • 1:7.448250645636267
        • properties: built
          • type:built
          • Map:50
      • 21: Feature (Point, 2 properties)
        • type:Feature
        • id:10959
        • geometry: Point (36.99, -1.36)
          • type:Point
          • coordinates: [36.989139854471574, -1.3555357590185824]
            • 0:36.989139854471574
            • 1:-1.3555357590185824
        • properties: built
          • type:built
          • Map:50
      • 22: Feature (Point, 2 properties)
        • type:Feature
        • id:12465
        • geometry: Point (15.74, -12.76)
          • type:Point
          • coordinates: [15.735868712931667, -12.76209498483604]
            • 0:15.735868712931667
            • 1:-12.76209498483604
        • properties: built
          • type:built
          • Map:50
      • 23: Feature (Point, 2 properties)
        • type:Feature
        • id:12752
        • geometry: Point (15.29, -4.47)
          • type:Point
          • coordinates: [15.293814575836453, -4.466234537074072]
            • 0:15.293814575836453
            • 1:-4.466234537074072
        • properties: built
          • type:built
          • Map:50
      • 24: Feature (Point, 2 properties)
        • type:Feature
        • id:12820
        • geometry: Point (-8.06, 12.57)
          • type:Point
          • coordinates: [-8.064378960078166, 12.567158568495707]
            • 0:-8.064378960078166
            • 1:12.567158568495707
        • properties: built
          • type:built
          • Map:50
      • 25: Feature (Point, 2 properties)
        • type:Feature
        • id:14347
        • geometry: Point (-0.03, 14.03)
          • type:Point
          • coordinates: [-0.03266613691061481, 14.030451622175542]
            • 0:-0.03266613691061481
            • 1:14.030451622175542
        • properties: built
          • type:built
          • Map:50
      • 26: Feature (Point, 2 properties)
        • type:Feature
        • id:15010
        • geometry: Point (-16.95, 14.44)
          • type:Point
          • coordinates: [-16.95432602451238, 14.439292871484808]
            • 0:-16.95432602451238
            • 1:14.439292871484808
        • properties: built
          • type:built
          • Map:50
      • 27: Feature (Point, 2 properties)
        • type:Feature
        • id:15012
        • geometry: Point (39.47, 13.52)
          • type:Point
          • coordinates: [39.469220135544006, 13.521592895325632]
            • 0:39.469220135544006
            • 1:13.521592895325632
        • properties: built
          • type:built
          • Map:50
      • 28: Feature (Point, 2 properties)
        • type:Feature
        • id:15111
        • geometry: Point (29.00, -0.26)
          • type:Point
          • coordinates: [29.001815902334258, -0.2557757312901233]
            • 0:29.001815902334258
            • 1:-0.2557757312901233
        • properties: built
          • type:built
          • Map:50
      • 29: Feature (Point, 2 properties)
        • type:Feature
        • id:15755
        • geometry: Point (32.96, -17.94)
          • type:Point
          • coordinates: [32.95612334720087, -17.938900672137127]
            • 0:32.95612334720087
            • 1:-17.938900672137127
        • properties: built
          • type:built
          • Map:50
      • 30: Feature (Point, 2 properties)
        • type:Feature
        • id:16531
        • geometry: Point (0.19, 10.85)
          • type:Point
          • coordinates: [0.18926060292604618, 10.850591558984924]
            • 0:0.18926060292604618
            • 1:10.850591558984924
        • properties: built
          • type:built
          • Map:50
      • 31: Feature (Point, 2 properties)
        • type:Feature
        • id:17022
        • geometry: Point (35.25, 0.56)
          • type:Point
          • coordinates: [35.248525564894685, 0.563641173098986]
            • 0:35.248525564894685
            • 1:0.563641173098986
        • properties: built
          • type:built
          • Map:50
      • 32: Feature (Point, 2 properties)
        • type:Feature
        • id:17318
        • geometry: Point (-16.07, 12.51)
          • type:Point
          • coordinates: [-16.071206478062802, 12.512479579266431]
            • 0:-16.071206478062802
            • 1:12.512479579266431
        • properties: built
          • type:built
          • Map:50
      • 33: Feature (Point, 2 properties)
        • type:Feature
        • id:17642
        • geometry: Point (28.52, -20.17)
          • type:Point
          • coordinates: [28.518047831923823, -20.17457554607782]
            • 0:28.518047831923823
            • 1:-20.17457554607782
        • properties: built
          • type:built
          • Map:50
      • 34: Feature (Point, 2 properties)
        • type:Feature
        • id:18743
        • geometry: Point (11.33, 3.50)
          • type:Point
          • coordinates: [11.330978613939804, 3.49990141489444]
            • 0:11.330978613939804
            • 1:3.49990141489444
        • properties: built
          • type:built
          • Map:50
      • 35: Feature (Point, 2 properties)
        • type:Feature
        • id:19505
        • geometry: Point (-2.35, 12.28)
          • type:Point
          • coordinates: [-2.3531275849435005, 12.27865966914079]
            • 0:-2.3531275849435005
            • 1:12.27865966914079
        • properties: built
          • type:built
          • Map:50
      • 36: Feature (Point, 2 properties)
        • type:Feature
        • id:19880
        • geometry: Point (39.55, 13.47)
          • type:Point
          • coordinates: [39.552367400233614, 13.469430233051343]
            • 0:39.552367400233614
            • 1:13.469430233051343
        • properties: built
          • type:built
          • Map:50
      • 37: Feature (Point, 2 properties)
        • type:Feature
        • id:20055
        • geometry: Point (-2.42, 13.58)
          • type:Point
          • coordinates: [-2.4206039053589334, 13.576437956531857]
            • 0:-2.4206039053589334
            • 1:13.576437956531857
        • properties: built
          • type:built
          • Map:50
      • 38: Feature (Point, 2 properties)
        • type:Feature
        • id:20145
        • geometry: Point (-0.29, 5.73)
          • type:Point
          • coordinates: [-0.2896340846061061, 5.7322390761102335]
            • 0:-0.2896340846061061
            • 1:5.7322390761102335
        • properties: built
          • type:built
          • Map:50
      • 39: Feature (Point, 2 properties)
        • type:Feature
        • id:20254
        • geometry: Point (-16.18, 15.11)
          • type:Point
          • coordinates: [-16.17535749873728, 15.107499377411264]
            • 0:-16.17535749873728
            • 1:15.107499377411264
        • properties: built
          • type:built
          • Map:50
      • 40: Feature (Point, 2 properties)
        • type:Feature
        • id:20914
        • geometry: Point (13.43, -8.94)
          • type:Point
          • coordinates: [13.428783389409064, -8.94287741104314]
            • 0:13.428783389409064
            • 1:-8.94287741104314
        • properties: built
          • type:built
          • Map:50
      • 41: Feature (Point, 2 properties)
        • type:Feature
        • id:22366
        • geometry: Point (15.60, -12.02)
          • type:Point
          • coordinates: [15.60209773060481, -12.024672323166252]
            • 0:15.60209773060481
            • 1:-12.024672323166252
        • properties: built
          • type:built
          • Map:50
      • 42: Feature (Point, 2 properties)
        • type:Feature
        • id:23038
        • geometry: Point (35.74, -6.15)
          • type:Point
          • coordinates: [35.74088525527579, -6.153869880895631]
            • 0:35.74088525527579
            • 1:-6.153869880895631
        • properties: built
          • type:built
          • Map:50
      • 43: Feature (Point, 2 properties)
        • type:Feature
        • id:23407
        • geometry: Point (11.56, 4.04)
          • type:Point
          • coordinates: [11.557897411688247, 4.0372204213123215]
            • 0:11.557897411688247
            • 1:4.0372204213123215
        • properties: built
          • type:built
          • Map:50
      • 44: Feature (Point, 2 properties)
        • type:Feature
        • id:23497
        • geometry: Point (36.89, -1.35)
          • type:Point
          • coordinates: [36.894945022409644, -1.3487529137580123]
            • 0:36.894945022409644
            • 1:-1.3487529137580123
        • properties: built
          • type:built
          • Map:50
      • 45: Feature (Point, 2 properties)
        • type:Feature
        • id:23515
        • geometry: Point (31.90, -3.02)
          • type:Point
          • coordinates: [31.903546940640208, -3.023303138003477]
            • 0:31.903546940640208
            • 1:-3.023303138003477
        • properties: built
          • type:built
          • Map:50
      • 46: Feature (Point, 2 properties)
        • type:Feature
        • id:24198
        • geometry: Point (28.24, -12.56)
          • type:Point
          • coordinates: [28.239522451709153, -12.557119011259644]
            • 0:28.239522451709153
            • 1:-12.557119011259644
        • properties: built
          • type:built
          • Map:50
      • 47: Feature (Point, 2 properties)
        • type:Feature
        • id:24439
        • geometry: Point (-16.93, 14.42)
          • type:Point
          • coordinates: [-16.927544722476632, 14.419036284266882]
            • 0:-16.927544722476632
            • 1:14.419036284266882
        • properties: built
          • type:built
          • Map:50
      • 48: Feature (Point, 2 properties)
        • type:Feature
        • id:25884
        • geometry: Point (29.77, -19.47)
          • type:Point
          • coordinates: [29.76638804293374, -19.465169598936203]
            • 0:29.76638804293374
            • 1:-19.465169598936203
        • properties: built
          • type:built
          • Map:50
      • 49: Feature (Point, 2 properties)
        • type:Feature
        • id:26116
        • geometry: Point (-0.06, 7.05)
          • type:Point
          • coordinates: [-0.060875432530741326, 7.05394261354581]
            • 0:-0.060875432530741326
            • 1:7.05394261354581
        • properties: built
          • type:built
          • Map:50
      • 50: Feature (Point, 2 properties)
        • type:Feature
        • id:26665
        • geometry: Point (-0.24, 5.62)
          • type:Point
          • coordinates: [-0.24383704169321693, 5.621063730406331]
            • 0:-0.24383704169321693
            • 1:5.621063730406331
        • properties: built
          • type:built
          • Map:50
      • 51: Feature (Point, 2 properties)
        • type:Feature
        • id:27776
        • geometry: Point (16.59, -5.69)
          • type:Point
          • coordinates: [16.59152192981582, -5.691980254767178]
            • 0:16.59152192981582
            • 1:-5.691980254767178
        • properties: built
          • type:built
          • Map:50
      • 52: Feature (Point, 2 properties)
        • type:Feature
        • id:27788
        • geometry: Point (13.36, 9.32)
          • type:Point
          • coordinates: [13.355372512500368, 9.320920997631479]
            • 0:13.355372512500368
            • 1:9.320920997631479
        • properties: built
          • type:built
          • Map:50
      • 53: Feature (Point, 2 properties)
        • type:Feature
        • id:28467
        • geometry: Point (14.29, 10.59)
          • type:Point
          • coordinates: [14.293283318151875, 10.59430188024196]
            • 0:14.293283318151875
            • 1:10.59430188024196
        • properties: built
          • type:built
          • Map:50
      • 54: Feature (Point, 2 properties)
        • type:Feature
        • id:28576
        • geometry: Point (38.99, 8.78)
          • type:Point
          • coordinates: [38.99109941284967, 8.784835306849319]
            • 0:38.99109941284967
            • 1:8.784835306849319
        • properties: built
          • type:built
          • Map:50
      • 55: Feature (Point, 2 properties)
        • type:Feature
        • id:28663
        • geometry: Point (29.45, 0.49)
          • type:Point
          • coordinates: [29.449698350741777, 0.4941765445178789]
            • 0:29.449698350741777
            • 1:0.4941765445178789
        • properties: built
          • type:built
          • Map:50
      • 56: Feature (Point, 2 properties)
        • type:Feature
        • id:29118
        • geometry: Point (29.25, 0.87)
          • type:Point
          • coordinates: [29.251524381017884, 0.8674218213085292]
            • 0:29.251524381017884
            • 1:0.8674218213085292
        • properties: built
          • type:built
          • Map:50
      • 57: Feature (Point, 2 properties)
        • type:Feature
        • id:29317
        • geometry: Point (29.24, -1.70)
          • type:Point
          • coordinates: [29.243629086512144, -1.6950609724122383]
            • 0:29.243629086512144
            • 1:-1.6950609724122383
        • properties: built
          • type:built
          • Map:50
      • 58: Feature (Point, 2 properties)
        • type:Feature
        • id:29510
        • geometry: Point (-0.15, 5.72)
          • type:Point
          • coordinates: [-0.15393394256800425, 5.720358430115453]
            • 0:-0.15393394256800425
            • 1:5.720358430115453
        • properties: built
          • type:built
          • Map:50
      • 59: Feature (Point, 2 properties)
        • type:Feature
        • id:29688
        • geometry: Point (13.38, -9.03)
          • type:Point
          • coordinates: [13.380101251315114, -9.033900479989041]
            • 0:13.380101251315114
            • 1:-9.033900479989041
        • properties: built
          • type:built
          • Map:50
      • 60: Feature (Point, 2 properties)
        • type:Feature
        • id:29965
        • geometry: Point (28.34, -15.48)
          • type:Point
          • coordinates: [28.344463890069534, -15.481260158652049]
            • 0:28.344463890069534
            • 1:-15.481260158652049
        • properties: built
          • type:built
          • Map:50
      • 61: Feature (Point, 2 properties)
        • type:Feature
        • id:30204
        • geometry: Point (-1.12, 6.58)
          • type:Point
          • coordinates: [-1.1181002962393771, 6.583198668834337]
            • 0:-1.1181002962393771
            • 1:6.583198668834337
        • properties: built
          • type:built
          • Map:50
      • 62: Feature (Point, 2 properties)
        • type:Feature
        • id:30534
        • geometry: Point (32.62, -13.63)
          • type:Point
          • coordinates: [32.62438749397996, -13.628427766528636]
            • 0:32.62438749397996
            • 1:-13.628427766528636
        • properties: built
          • type:built
          • Map:50
      • 63: Feature (Point, 2 properties)
        • type:Feature
        • id:30874
        • geometry: Point (18.00, -8.76)
          • type:Point
          • coordinates: [18.004333743354973, -8.762938742460598]
            • 0:18.004333743354973
            • 1:-8.762938742460598
        • properties: built
          • type:built
          • Map:50
      • 64: Feature (Point, 2 properties)
        • type:Feature
        • id:32189
        • geometry: Point (13.36, -8.94)
          • type:Point
          • coordinates: [13.357487692788837, -8.940393824044016]
            • 0:13.357487692788837
            • 1:-8.940393824044016
        • properties: built
          • type:built
          • Map:50
      • 65: Feature (Point, 2 properties)
        • type:Feature
        • id:32284
        • geometry: Point (39.22, -6.92)
          • type:Point
          • coordinates: [39.22204638999605, -6.922795606503156]
            • 0:39.22204638999605
            • 1:-6.922795606503156
        • properties: built
          • type:built
          • Map:50
      • 66: Feature (Point, 2 properties)
        • type:Feature
        • id:33183
        • geometry: Point (11.53, 3.79)
          • type:Point
          • coordinates: [11.52997521604206, 3.7938494979423045]
            • 0:11.52997521604206
            • 1:3.7938494979423045
        • properties: built
          • type:built
          • Map:50
      • 67: Feature (Point, 2 properties)
        • type:Feature
        • id:33530
        • geometry: Point (37.65, 7.34)
          • type:Point
          • coordinates: [37.65322705347404, 7.3382748554907]
            • 0:37.65322705347404
            • 1:7.3382748554907
        • properties: built
          • type:built
          • Map:50
      • 68: Feature (Point, 2 properties)
        • type:Feature
        • id:33555
        • geometry: Point (13.71, 4.59)
          • type:Point
          • coordinates: [13.712070397313445, 4.587478927704845]
            • 0:13.712070397313445
            • 1:4.587478927704845
        • properties: built
          • type:built
          • Map:50
      • 69: Feature (Point, 2 properties)
        • type:Feature
        • id:34499
        • geometry: Point (-1.99, 5.29)
          • type:Point
          • coordinates: [-1.9887066945030272, 5.290027334615813]
            • 0:-1.9887066945030272
            • 1:5.290027334615813
        • properties: built
          • type:built
          • Map:50
      • 70: Feature (Point, 2 properties)
        • type:Feature
        • id:34771
        • geometry: Point (39.23, -6.88)
          • type:Point
          • coordinates: [39.2254578768929, -6.87766605233768]
            • 0:39.2254578768929
            • 1:-6.87766605233768
        • properties: built
          • type:built
          • Map:50
      • 71: Feature (Point, 2 properties)
        • type:Feature
        • id:34852
        • geometry: Point (28.25, -12.79)
          • type:Point
          • coordinates: [28.247435742686125, -12.785781181251341]
            • 0:28.247435742686125
            • 1:-12.785781181251341
        • properties: built
          • type:built
          • Map:50
      • 72: Feature (Point, 2 properties)
        • type:Feature
        • id:35568
        • geometry: Point (-0.83, 9.40)
          • type:Point
          • coordinates: [-0.8269644695799477, 9.395442480095149]
            • 0:-0.8269644695799477
            • 1:9.395442480095149
        • properties: built
          • type:built
          • Map:50
      • 73: Feature (Point, 2 properties)
        • type:Feature
        • id:35625
        • geometry: Point (38.86, 9.04)
          • type:Point
          • coordinates: [38.85570103758213, 9.036564576089171]
            • 0:38.85570103758213
            • 1:9.036564576089171
        • properties: built
          • type:built
          • Map:50
      • 74: Feature (Point, 2 properties)
        • type:Feature
        • id:35975
        • geometry: Point (11.57, 6.28)
          • type:Point
          • coordinates: [11.573459541841645, 6.284350721725271]
            • 0:11.573459541841645
            • 1:6.284350721725271
        • properties: built
          • type:built
          • Map:50
      • 75: Feature (Point, 2 properties)
        • type:Feature
        • id:36234
        • geometry: Point (-17.18, 14.81)
          • type:Point
          • coordinates: [-17.179701369287724, 14.812323185591591]
            • 0:-17.179701369287724
            • 1:14.812323185591591
        • properties: built
          • type:built
          • Map:50
      • 76: Feature (Point, 2 properties)
        • type:Feature
        • id:36509
        • geometry: Point (-0.05, 5.74)
          • type:Point
          • coordinates: [-0.05251177460451135, 5.743886428888458]
            • 0:-0.05251177460451135
            • 1:5.743886428888458
        • properties: built
          • type:built
          • Map:50
      • 77: Feature (Point, 2 properties)
        • type:Feature
        • id:37343
        • geometry: Point (-1.98, 5.34)
          • type:Point
          • coordinates: [-1.9830718875728588, 5.335105166217699]
            • 0:-1.9830718875728588
            • 1:5.335105166217699
        • properties: built
          • type:built
          • Map:50
      • 78: Feature (Point, 2 properties)
        • type:Feature
        • id:38518
        • geometry: Point (37.85, 6.95)
          • type:Point
          • coordinates: [37.85365921554678, 6.949234200467434]
            • 0:37.85365921554678
            • 1:6.949234200467434
        • properties: built
          • type:built
          • Map:50
      • 79: Feature (Point, 2 properties)
        • type:Feature
        • id:38536
        • geometry: Point (31.52, -3.36)
          • type:Point
          • coordinates: [31.5228402362377, -3.3573585314973826]
            • 0:31.5228402362377
            • 1:-3.3573585314973826
        • properties: built
          • type:built
          • Map:50
      • 80: Feature (Point, 2 properties)
        • type:Feature
        • id:38589
        • geometry: Point (29.18, -1.65)
          • type:Point
          • coordinates: [29.18442665978546, -1.6544246622663874]
            • 0:29.18442665978546
            • 1:-1.6544246622663874
        • properties: built
          • type:built
          • Map:50
      • 81: Feature (Point, 2 properties)
        • type:Feature
        • id:39493
        • geometry: Point (29.29, 0.09)
          • type:Point
          • coordinates: [29.29338763364205, 0.0894938537488122]
            • 0:29.29338763364205
            • 1:0.0894938537488122
        • properties: built
          • type:built
          • Map:50
      • 82: Feature (Point, 2 properties)
        • type:Feature
        • id:39926
        • geometry: Point (20.44, -9.66)
          • type:Point
          • coordinates: [20.435666100048472, -9.66046768411849]
            • 0:20.435666100048472
            • 1:-9.66046768411849
        • properties: built
          • type:built
          • Map:50
      • 83: Feature (Point, 2 properties)
        • type:Feature
        • id:40062
        • geometry: Point (38.00, 11.86)
          • type:Point
          • coordinates: [38.00466120284362, 11.860578321777995]
            • 0:38.00466120284362
            • 1:11.860578321777995
        • properties: built
          • type:built
          • Map:50
      • 84: Feature (Point, 2 properties)
        • type:Feature
        • id:40357
        • geometry: Point (46.08, -24.07)
          • type:Point
          • coordinates: [46.07829569433302, -24.074781712483073]
            • 0:46.07829569433302
            • 1:-24.074781712483073
        • properties: built
          • type:built
          • Map:50
      • 85: Feature (Point, 2 properties)
        • type:Feature
        • id:40371
        • geometry: Point (37.08, 0.03)
          • type:Point
          • coordinates: [37.07582186380292, 0.030783041637851234]
            • 0:37.07582186380292
            • 1:0.030783041637851234
        • properties: built
          • type:built
          • Map:50
      • 86: Feature (Point, 2 properties)
        • type:Feature
        • id:41073
        • geometry: Point (0.01, 5.67)
          • type:Point
          • coordinates: [0.0053946444727653725, 5.668753514625467]
            • 0:0.0053946444727653725
            • 1:5.668753514625467
        • properties: built
          • type:built
          • Map:50
      • 87: Feature (Point, 2 properties)
        • type:Feature
        • id:41671
        • geometry: Point (32.93, -2.54)
          • type:Point
          • coordinates: [32.93112577152061, -2.5397145084607775]
            • 0:32.93112577152061
            • 1:-2.5397145084607775
        • properties: built
          • type:built
          • Map:50
      • 88: Feature (Point, 2 properties)
        • type:Feature
        • id:41918
        • geometry: Point (29.76, -19.47)
          • type:Point
          • coordinates: [29.75696472724949, -19.465043339958008]
            • 0:29.75696472724949
            • 1:-19.465043339958008
        • properties: built
          • type:built
          • Map:50
      • 89: Feature (Point, 2 properties)
        • type:Feature
        • id:42113
        • geometry: Point (16.94, -12.39)
          • type:Point
          • coordinates: [16.941786121624812, -12.392402045939647]
            • 0:16.941786121624812
            • 1:-12.392402045939647
        • properties: built
          • type:built
          • Map:50
      • 90: Feature (Point, 2 properties)
        • type:Feature
        • id:42267
        • geometry: Point (29.89, -4.96)
          • type:Point
          • coordinates: [29.8903701378611, -4.9638977118585075]
            • 0:29.8903701378611
            • 1:-4.9638977118585075
        • properties: built
          • type:built
          • Map:50
      • 91: Feature (Point, 2 properties)
        • type:Feature
        • id:42604
        • geometry: Point (9.73, 4.07)
          • type:Point
          • coordinates: [9.728880407999513, 4.071270828665758]
            • 0:9.728880407999513
            • 1:4.071270828665758
        • properties: built
          • type:built
          • Map:50
      • 92: Feature (Point, 2 properties)
        • type:Feature
        • id:42662
        • geometry: Point (-0.13, 5.83)
          • type:Point
          • coordinates: [-0.1340396500205633, 5.831931410466785]
            • 0:-0.1340396500205633
            • 1:5.831931410466785
        • properties: built
          • type:built
          • Map:50
      • 93: Feature (Point, 2 properties)
        • type:Feature
        • id:42892
        • geometry: Point (9.67, 4.07)
          • type:Point
          • coordinates: [9.671283316890122, 4.074538153191432]
            • 0:9.671283316890122
            • 1:4.074538153191432
        • properties: built
          • type:built
          • Map:50
      • 94: Feature (Point, 2 properties)
        • type:Feature
        • id:43990
        • geometry: Point (24.80, -14.82)
          • type:Point
          • coordinates: [24.799906024376195, -14.816136346306449]
            • 0:24.799906024376195
            • 1:-14.816136346306449
        • properties: built
          • type:built
          • Map:50
      • 95: Feature (Point, 2 properties)
        • type:Feature
        • id:44041
        • geometry: Point (36.14, -0.31)
          • type:Point
          • coordinates: [36.13655851265482, -0.3120725717172519]
            • 0:36.13655851265482
            • 1:-0.3120725717172519
        • properties: built
          • type:built
          • Map:50
      • 96: Feature (Point, 2 properties)
        • type:Feature
        • id:44603
        • geometry: Point (-0.33, 5.57)
          • type:Point
          • coordinates: [-0.3311682439779056, 5.57020862638285]
            • 0:-0.3311682439779056
            • 1:5.57020862638285
        • properties: built
          • type:built
          • Map:50
      • 97: Feature (Point, 2 properties)
        • type:Feature
        • id:45152
        • geometry: Point (1.27, 6.15)
          • type:Point
          • coordinates: [1.2704765969513394, 6.150016082804417]
            • 0:1.2704765969513394
            • 1:6.150016082804417
        • properties: built
          • type:built
          • Map:50
      • 98: Feature (Point, 2 properties)
        • type:Feature
        • id:45531
        • geometry: Point (13.53, -14.88)
          • type:Point
          • coordinates: [13.533004686054248, -14.879911088742979]
            • 0:13.533004686054248
            • 1:-14.879911088742979
        • properties: built
          • type:built
          • Map:50
      • 99: Feature (Point, 2 properties)
        • type:Feature
        • id:45639
        • geometry: Point (-1.43, 12.45)
          • type:Point
          • coordinates: [-1.4333937189169386, 12.449902524977201]
            • 0:-1.4333937189169386
            • 1:12.449902524977201
        • properties: built
          • type:built
          • Map:50
      • 100: Feature (Point, 2 properties)
        • type:Feature
        • id:46277
        • geometry: Point (39.11, -4.60)
          • type:Point
          • coordinates: [39.110580634380874, -4.603553166805258]
            • 0:39.110580634380874
            • 1:-4.603553166805258
        • properties: built
          • type:built
          • Map:50
      • 101: Feature (Point, 2 properties)
        • type:Feature
        • id:47823
        • geometry: Point (22.27, -5.47)
          • type:Point
          • coordinates: [22.27290397836293, -5.468562225957537]
            • 0:22.27290397836293
            • 1:-5.468562225957537
        • properties: built
          • type:built
          • Map:50
      • 102: Feature (Point, 2 properties)
        • type:Feature
        • id:48100
        • geometry: Point (14.42, 9.08)
          • type:Point
          • coordinates: [14.42473596472891, 9.075658897331778]
            • 0:14.42473596472891
            • 1:9.075658897331778
        • properties: built
          • type:built
          • Map:50
      • 103: Feature (Point, 2 properties)
        • type:Feature
        • id:48982
        • geometry: Point (36.49, 7.90)
          • type:Point
          • coordinates: [36.49466275705744, 7.903427203441513]
            • 0:36.49466275705744
            • 1:7.903427203441513
        • properties: built
          • type:built
          • Map:50
      • 104: Feature (Point, 2 properties)
        • type:Feature
        • id:50068
        • geometry: Point (36.99, -3.54)
          • type:Point
          • coordinates: [36.99147445406942, -3.543680290393258]
            • 0:36.99147445406942
            • 1:-3.543680290393258
        • properties: built
          • type:built
          • Map:50
      • 105: Feature (Point, 2 properties)
        • type:Feature
        • id:50242
        • geometry: Point (9.82, 4.02)
          • type:Point
          • coordinates: [9.81904377375513, 4.021134509932796]
            • 0:9.81904377375513
            • 1:4.021134509932796
        • properties: built
          • type:built
          • Map:50
      • 106: Feature (Point, 2 properties)
        • type:Feature
        • id:50282
        • geometry: Point (28.65, -13.02)
          • type:Point
          • coordinates: [28.64763928607627, -13.022181231109078]
            • 0:28.64763928607627
            • 1:-13.022181231109078
        • properties: built
          • type:built
          • Map:50
      • 107: Feature (Point, 2 properties)
        • type:Feature
        • id:50399
        • geometry: Point (38.80, -10.74)
          • type:Point
          • coordinates: [38.797175829580134, -10.735630852158911]
            • 0:38.797175829580134
            • 1:-10.735630852158911
        • properties: built
          • type:built
          • Map:50
      • 108: Feature (Point, 2 properties)
        • type:Feature
        • id:51464
        • geometry: Point (31.04, -17.84)
          • type:Point
          • coordinates: [31.03794096948984, -17.838323561568203]
            • 0:31.03794096948984
            • 1:-17.838323561568203
        • properties: built
          • type:built
          • Map:50
      • 109: Feature (Point, 2 properties)
        • type:Feature
        • id:52068
        • geometry: Point (35.79, -6.16)
          • type:Point
          • coordinates: [35.79355016281366, -6.1621211225400225]
            • 0:35.79355016281366
            • 1:-6.1621211225400225
        • properties: built
          • type:built
          • Map:50
      • 110: Feature (Point, 2 properties)
        • type:Feature
        • id:52187
        • geometry: Point (11.54, 3.76)
          • type:Point
          • coordinates: [11.53812150111466, 3.763414133264663]
            • 0:11.53812150111466
            • 1:3.763414133264663
        • properties: built
          • type:built
          • Map:50
      • 111: Feature (Point, 2 properties)
        • type:Feature
        • id:52530
        • geometry: Point (13.36, -8.90)
          • type:Point
          • coordinates: [13.355296733058735, -8.904751442513867]
            • 0:13.355296733058735
            • 1:-8.904751442513867
        • properties: built
          • type:built
          • Map:50
      • 112: Feature (Point, 2 properties)
        • type:Feature
        • id:54064
        • geometry: Point (-16.66, 14.99)
          • type:Point
          • coordinates: [-16.662532637217513, 14.985768961409509]
            • 0:-16.662532637217513
            • 1:14.985768961409509
        • properties: built
          • type:built
          • Map:50
      • 113: Feature (Point, 2 properties)
        • type:Feature
        • id:54109
        • geometry: Point (39.27, 10.98)
          • type:Point
          • coordinates: [39.26760672792278, 10.981996262870052]
            • 0:39.26760672792278
            • 1:10.981996262870052
        • properties: built
          • type:built
          • Map:50
      • 114: Feature (Point, 2 properties)
        • type:Feature
        • id:54233
        • geometry: Point (27.00, -7.84)
          • type:Point
          • coordinates: [27.00124338550877, -7.8394238426640275]
            • 0:27.00124338550877
            • 1:-7.8394238426640275
        • properties: built
          • type:built
          • Map:50
      • 115: Feature (Point, 2 properties)
        • type:Feature
        • id:55082
        • geometry: Point (30.89, -19.02)
          • type:Point
          • coordinates: [30.893689649498445, -19.018358452487362]
            • 0:30.893689649498445
            • 1:-19.018358452487362
        • properties: built
          • type:built
          • Map:50
      • 116: Feature (Point, 2 properties)
        • type:Feature
        • id:55098
        • geometry: Point (-7.89, 12.56)
          • type:Point
          • coordinates: [-7.8920739303715735, 12.564164396150272]
            • 0:-7.8920739303715735
            • 1:12.564164396150272
        • properties: built
          • type:built
          • Map:50
      • 117: Feature (Point, 2 properties)
        • type:Feature
        • id:56439
        • geometry: Point (19.80, 3.25)
          • type:Point
          • coordinates: [19.797852749489124, 3.2519099310872916]
            • 0:19.797852749489124
            • 1:3.2519099310872916
        • properties: built
          • type:built
          • Map:50
      • 118: Feature (Point, 2 properties)
        • type:Feature
        • id:57044
        • geometry: Point (-1.65, 6.56)
          • type:Point
          • coordinates: [-1.6453181607067162, 6.555091778399731]
            • 0:-1.6453181607067162
            • 1:6.555091778399731
        • properties: built
          • type:built
          • Map:50
      • 119: Feature (Point, 2 properties)
        • type:Feature
        • id:57065
        • geometry: Point (-1.60, 12.41)
          • type:Point
          • coordinates: [-1.596423139715656, 12.405834673287627]
            • 0:-1.596423139715656
            • 1:12.405834673287627
        • properties: built
          • type:built
          • Map:50
      • 120: Feature (Point, 2 properties)
        • type:Feature
        • id:57691
        • geometry: Point (38.90, -6.46)
          • type:Point
          • coordinates: [38.898638829793164, -6.458180538889647]
            • 0:38.898638829793164
            • 1:-6.458180538889647
        • properties: built
          • type:built
          • Map:50
      • 121: Feature (Point, 2 properties)
        • type:Feature
        • id:60767
        • geometry: Point (-6.00, 12.63)
          • type:Point
          • coordinates: [-5.999718082838035, 12.625115967401277]
            • 0:-5.999718082838035
            • 1:12.625115967401277
        • properties: built
          • type:built
          • Map:50
      • 122: Feature (Point, 2 properties)
        • type:Feature
        • id:61955
        • geometry: Point (-2.07, 13.77)
          • type:Point
          • coordinates: [-2.0705593642071625, 13.77254822296429]
            • 0:-2.0705593642071625
            • 1:13.77254822296429
        • properties: built
          • type:built
          • Map:50
      • 123: Feature (Point, 2 properties)
        • type:Feature
        • id:62564
        • geometry: Point (-3.61, 11.27)
          • type:Point
          • coordinates: [-3.613986255920453, 11.268325760048189]
            • 0:-3.613986255920453
            • 1:11.268325760048189
        • properties: built
          • type:built
          • Map:50
      • 124: Feature (Point, 2 properties)
        • type:Feature
        • id:63732
        • geometry: Point (0.09, 10.52)
          • type:Point
          • coordinates: [0.09366595495879916, 10.519966684159218]
            • 0:0.09366595495879916
            • 1:10.519966684159218
        • properties: built
          • type:built
          • Map:50
      • 125: Feature (Point, 2 properties)
        • type:Feature
        • id:63938
        • geometry: Point (1.23, 6.32)
          • type:Point
          • coordinates: [1.2343296735517197, 6.321267112434412]
            • 0:1.2343296735517197
            • 1:6.321267112434412
        • properties: built
          • type:built
          • Map:50
      • 126: Feature (Point, 2 properties)
        • type:Feature
        • id:64634
        • geometry: Point (1.20, 7.75)
          • type:Point
          • coordinates: [1.2032760608268982, 7.7524208731196245]
            • 0:1.2032760608268982
            • 1:7.7524208731196245
        • properties: built
          • type:built
          • Map:50
      • 127: Feature (Point, 2 properties)
        • type:Feature
        • id:65432
        • geometry: Point (10.09, 5.54)
          • type:Point
          • coordinates: [10.091404071163705, 5.541915750243028]
            • 0:10.091404071163705
            • 1:5.541915750243028
        • properties: built
          • type:built
          • Map:50
      • 128: Feature (Point, 2 properties)
        • type:Feature
        • id:66122
        • geometry: Point (14.92, -9.30)
          • type:Point
          • coordinates: [14.918153494332884, -9.297697868226953]
            • 0:14.918153494332884
            • 1:-9.297697868226953
        • properties: built
          • type:built
          • Map:50
      • 129: Feature (Point, 2 properties)
        • type:Feature
        • id:66414
        • geometry: Point (-7.90, 12.57)
          • type:Point
          • coordinates: [-7.902893708701313, 12.56738913421428]
            • 0:-7.902893708701313
            • 1:12.56738913421428
        • properties: built
          • type:built
          • Map:50
      • 130: Feature (Point, 2 properties)
        • type:Feature
        • id:66432
        • geometry: Point (38.68, 9.04)
          • type:Point
          • coordinates: [38.675313623819484, 9.040944076475869]
            • 0:38.675313623819484
            • 1:9.040944076475869
        • properties: built
          • type:built
          • Map:50
      • 131: Feature (Point, 2 properties)
        • type:Feature
        • id:68224
        • geometry: Point (36.15, -0.32)
          • type:Point
          • coordinates: [36.14834458618435, -0.31610502865331697]
            • 0:36.14834458618435
            • 1:-0.31610502865331697
        • properties: built
          • type:built
          • Map:50
      • 132: Feature (Point, 2 properties)
        • type:Feature
        • id:68810
        • geometry: Point (14.42, -9.68)
          • type:Point
          • coordinates: [14.421267930496157, -9.679537901472482]
            • 0:14.421267930496157
            • 1:-9.679537901472482
        • properties: built
          • type:built
          • Map:50
      • 133: Feature (Point, 2 properties)
        • type:Feature
        • id:68827
        • geometry: Point (-1.64, 6.68)
          • type:Point
          • coordinates: [-1.6354401095399385, 6.6823294305631995]
            • 0:-1.6354401095399385
            • 1:6.6823294305631995
        • properties: built
          • type:built
          • Map:50
      • 134: Feature (Point, 2 properties)
        • type:Feature
        • id:70280
        • geometry: Point (-10.98, 14.99)
          • type:Point
          • coordinates: [-10.979539262092558, 14.992617288922673]
            • 0:-10.979539262092558
            • 1:14.992617288922673
        • properties: built
          • type:built
          • Map:50
      • 135: Feature (Point, 2 properties)
        • type:Feature
        • id:71317
        • geometry: Point (28.90, 0.32)
          • type:Point
          • coordinates: [28.896820465760495, 0.32325995719028244]
            • 0:28.896820465760495
            • 1:0.32325995719028244
        • properties: built
          • type:built
          • Map:50
      • 136: Feature (Point, 2 properties)
        • type:Feature
        • id:71425
        • geometry: Point (28.38, -15.46)
          • type:Point
          • coordinates: [28.375463281705965, -15.46163910046226]
            • 0:28.375463281705965
            • 1:-15.46163910046226
        • properties: built
          • type:built
          • Map:50
      • 137: Feature (Point, 2 properties)
        • type:Feature
        • id:72598
        • geometry: Point (-1.63, 6.38)
          • type:Point
          • coordinates: [-1.6293027738000674, 6.382158664397745]
            • 0:-1.6293027738000674
            • 1:6.382158664397745
        • properties: built
          • type:built
          • Map:50
      • 138: Feature (Point, 2 properties)
        • type:Feature
        • id:73857
        • geometry: Point (37.29, 12.99)
          • type:Point
          • coordinates: [37.29363849527798, 12.98768838943065]
            • 0:37.29363849527798
            • 1:12.98768838943065
        • properties: built
          • type:built
          • Map:50
      • 139: Feature (Point, 2 properties)
        • type:Feature
        • id:74485
        • geometry: Point (39.22, 11.60)
          • type:Point
          • coordinates: [39.220429234196935, 11.59568477624309]
            • 0:39.220429234196935
            • 1:11.59568477624309
        • properties: built
          • type:built
          • Map:50
      • 140: Feature (Point, 2 properties)
        • type:Feature
        • id:74697
        • geometry: Point (18.59, 4.34)
          • type:Point
          • coordinates: [18.59339151944291, 4.338420024691622]
            • 0:18.59339151944291
            • 1:4.338420024691622
        • properties: built
          • type:built
          • Map:50
      • 141: Feature (Point, 2 properties)
        • type:Feature
        • id:74709
        • geometry: Point (1.03, 6.08)
          • type:Point
          • coordinates: [1.0338835769472747, 6.077197288184369]
            • 0:1.0338835769472747
            • 1:6.077197288184369
        • properties: built
          • type:built
          • Map:50
      • 142: Feature (Point, 2 properties)
        • type:Feature
        • id:75475
        • geometry: Point (36.83, -1.22)
          • type:Point
          • coordinates: [36.83042229738255, -1.2195413120464493]
            • 0:36.83042229738255
            • 1:-1.2195413120464493
        • properties: built
          • type:built
          • Map:50
      • 143: Feature (Point, 2 properties)
        • type:Feature
        • id:75562
        • geometry: Point (-0.34, 5.77)
          • type:Point
          • coordinates: [-0.34190305917051145, 5.774747992924007]
            • 0:-0.34190305917051145
            • 1:5.774747992924007
        • properties: built
          • type:built
          • Map:50
      • 144: Feature (Point, 2 properties)
        • type:Feature
        • id:75846
        • geometry: Point (28.21, -12.85)
          • type:Point
          • coordinates: [28.21492999310003, -12.847212653733791]
            • 0:28.21492999310003
            • 1:-12.847212653733791
        • properties: built
          • type:built
          • Map:50
      • 145: Feature (Point, 2 properties)
        • type:Feature
        • id:77194
        • geometry: Point (-8.05, 12.70)
          • type:Point
          • coordinates: [-8.046713062636275, 12.704152684767125]
            • 0:-8.046713062636275
            • 1:12.704152684767125
        • properties: built
          • type:built
          • Map:50
      • 146: Feature (Point, 2 properties)
        • type:Feature
        • id:77419
        • geometry: Point (1.17, 6.94)
          • type:Point
          • coordinates: [1.1693012547414114, 6.939349530729206]
            • 0:1.1693012547414114
            • 1:6.939349530729206
        • properties: built
          • type:built
          • Map:50
      • 147: Feature (Point, 2 properties)
        • type:Feature
        • id:78078
        • geometry: Point (-1.54, 12.28)
          • type:Point
          • coordinates: [-1.544400357865705, 12.27785060565059]
            • 0:-1.544400357865705
            • 1:12.27785060565059
        • properties: built
          • type:built
          • Map:50
      • 148: Feature (Point, 2 properties)
        • type:Feature
        • id:78086
        • geometry: Point (-0.42, 5.51)
          • type:Point
          • coordinates: [-0.41513437036307016, 5.506693216934781]
            • 0:-0.41513437036307016
            • 1:5.506693216934781
        • properties: built
          • type:built
          • Map:50
      • 149: Feature (Point, 2 properties)
        • type:Feature
        • id:78551
        • geometry: Point (13.34, -8.94)
          • type:Point
          • coordinates: [13.337841611591763, -8.941117814405484]
            • 0:13.337841611591763
            • 1:-8.941117814405484
        • properties: built
          • type:built
          • Map:50
      • 150: Feature (Point, 2 properties)
        • type:Feature
        • id:79134
        • geometry: Point (30.95, -17.85)
          • type:Point
          • coordinates: [30.94994038627535, -17.84698010142977]
            • 0:30.94994038627535
            • 1:-17.84698010142977
        • properties: built
          • type:built
          • Map:50
      • 151: Feature (Point, 2 properties)
        • type:Feature
        • id:79704
        • geometry: Point (27.00, -16.80)
          • type:Point
          • coordinates: [26.999344892274973, -16.802666263335254]
            • 0:26.999344892274973
            • 1:-16.802666263335254
        • properties: built
          • type:built
          • Map:50
      • 152: Feature (Point, 2 properties)
        • type:Feature
        • id:80014
        • geometry: Point (47.57, -18.96)
          • type:Point
          • coordinates: [47.57369880812912, -18.95824923623133]
            • 0:47.57369880812912
            • 1:-18.95824923623133
        • properties: built
          • type:built
          • Map:50
      • 153: Feature (Point, 2 properties)
        • type:Feature
        • id:80182
        • geometry: Point (-1.77, 11.54)
          • type:Point
          • coordinates: [-1.7736491205575828, 11.542472611401697]
            • 0:-1.7736491205575828
            • 1:11.542472611401697
        • properties: built
          • type:built
          • Map:50
      • 154: Feature (Point, 2 properties)
        • type:Feature
        • id:80695
        • geometry: Point (40.17, -10.66)
          • type:Point
          • coordinates: [40.17236480776559, -10.655161810074183]
            • 0:40.17236480776559
            • 1:-10.655161810074183
        • properties: built
          • type:built
          • Map:50
      • 155: Feature (Point, 2 properties)
        • type:Feature
        • id:81177
        • geometry: Point (22.35, -10.70)
          • type:Point
          • coordinates: [22.3464297687435, -10.695996792331016]
            • 0:22.3464297687435
            • 1:-10.695996792331016
        • properties: built
          • type:built
          • Map:50
      • 156: Feature (Point, 2 properties)
        • type:Feature
        • id:81184
        • geometry: Point (15.80, -8.92)
          • type:Point
          • coordinates: [15.804847503469547, -8.923972897963496]
            • 0:15.804847503469547
            • 1:-8.923972897963496
        • properties: built
          • type:built
          • Map:50
      • 157: Feature (Point, 2 properties)
        • type:Feature
        • id:81420
        • geometry: Point (-1.97, 13.45)
          • type:Point
          • coordinates: [-1.971952136769311, 13.446618465277812]
            • 0:-1.971952136769311
            • 1:13.446618465277812
        • properties: built
          • type:built
          • Map:50
      • 158: Feature (Point, 2 properties)
        • type:Feature
        • id:82722
        • geometry: Point (-6.32, 10.88)
          • type:Point
          • coordinates: [-6.320004527313149, 10.876939160058747]
            • 0:-6.320004527313149
            • 1:10.876939160058747
        • properties: built
          • type:built
          • Map:50
      • 159: Feature (Point, 2 properties)
        • type:Feature
        • id:82744
        • geometry: Point (38.85, 9.03)
          • type:Point
          • coordinates: [38.85426099941, 9.03199113217889]
            • 0:38.85426099941
            • 1:9.03199113217889
        • properties: built
          • type:built
          • Map:50
      • 160: Feature (Point, 2 properties)
        • type:Feature
        • id:82952
        • geometry: Point (-4.34, 11.08)
          • type:Point
          • coordinates: [-4.338908930315182, 11.076332311482734]
            • 0:-4.338908930315182
            • 1:11.076332311482734
        • properties: built
          • type:built
          • Map:50
      • 161: Feature (Point, 2 properties)
        • type:Feature
        • id:83583
        • geometry: Point (-0.80, 10.16)
          • type:Point
          • coordinates: [-0.8015588513244385, 10.164365251163458]
            • 0:-0.8015588513244385
            • 1:10.164365251163458
        • properties: built
          • type:built
          • Map:50
      • 162: Feature (Point, 2 properties)
        • type:Feature
        • id:83960
        • geometry: Point (1.11, 6.14)
          • type:Point
          • coordinates: [1.1122078070432244, 6.140733360594578]
            • 0:1.1122078070432244
            • 1:6.140733360594578
        • properties: built
          • type:built
          • Map:50
      • 163: Feature (Point, 2 properties)
        • type:Feature
        • id:84185
        • geometry: Point (25.94, -2.96)
          • type:Point
          • coordinates: [25.938699626696252, -2.957427321298062]
            • 0:25.938699626696252
            • 1:-2.957427321298062
        • properties: built
          • type:built
          • Map:50
      • 164: Feature (Point, 2 properties)
        • type:Feature
        • id:84669
        • geometry: Point (37.84, 8.98)
          • type:Point
          • coordinates: [37.83946281875923, 8.979201697222699]
            • 0:37.83946281875923
            • 1:8.979201697222699
        • properties: built
          • type:built
          • Map:50
      • 165: Feature (Point, 2 properties)
        • type:Feature
        • id:84821
        • geometry: Point (39.84, 8.50)
          • type:Point
          • coordinates: [39.83537437271919, 8.49642153528985]
            • 0:39.83537437271919
            • 1:8.49642153528985
        • properties: built
          • type:built
          • Map:50
      • 166: Feature (Point, 2 properties)
        • type:Feature
        • id:85279
        • geometry: Point (35.60, 6.99)
          • type:Point
          • coordinates: [35.597623071982255, 6.9894992959470885]
            • 0:35.597623071982255
            • 1:6.9894992959470885
        • properties: built
          • type:built
          • Map:50
      • 167: Feature (Point, 2 properties)
        • type:Feature
        • id:85861
        • geometry: Point (-4.31, 11.19)
          • type:Point
          • coordinates: [-4.3132759712543205, 11.190024708030505]
            • 0:-4.3132759712543205
            • 1:11.190024708030505
        • properties: built
          • type:built
          • Map:50
      • 168: Feature (Point, 2 properties)
        • type:Feature
        • id:86686
        • geometry: Point (-1.26, 11.83)
          • type:Point
          • coordinates: [-1.258968264900078, 11.826610958084181]
            • 0:-1.258968264900078
            • 1:11.826610958084181
        • properties: built
          • type:built
          • Map:50
      • 169: Feature (Point, 2 properties)
        • type:Feature
        • id:86932
        • geometry: Point (13.30, -8.94)
          • type:Point
          • coordinates: [13.303293449053713, -8.938798787461753]
            • 0:13.303293449053713
            • 1:-8.938798787461753
        • properties: built
          • type:built
          • Map:50
      • 170: Feature (Point, 2 properties)
        • type:Feature
        • id:87869
        • geometry: Point (-1.63, 6.74)
          • type:Point
          • coordinates: [-1.6329044229245904, 6.738416605552773]
            • 0:-1.6329044229245904
            • 1:6.738416605552773
        • properties: built
          • type:built
          • Map:50
      • 171: Feature (Point, 2 properties)
        • type:Feature
        • id:88542
        • geometry: Point (-0.01, 5.77)
          • type:Point
          • coordinates: [-0.01153189526844156, 5.765618474955831]
            • 0:-0.01153189526844156
            • 1:5.765618474955831
        • properties: built
          • type:built
          • Map:50
      • 172: Feature (Point, 2 properties)
        • type:Feature
        • id:88592
        • geometry: Point (42.06, 4.17)
          • type:Point
          • coordinates: [42.05805191332175, 4.171156928362834]
            • 0:42.05805191332175
            • 1:4.171156928362834
        • properties: built
          • type:built
          • Map:50
      • 173: Feature (Point, 2 properties)
        • type:Feature
        • id:88832
        • geometry: Point (28.18, -3.07)
          • type:Point
          • coordinates: [28.183681477875357, -3.0702650485057355]
            • 0:28.183681477875357
            • 1:-3.0702650485057355
        • properties: built
          • type:built
          • Map:50
      • 174: Feature (Point, 2 properties)
        • type:Feature
        • id:89180
        • geometry: Point (9.24, 4.16)
          • type:Point
          • coordinates: [9.241132814982931, 4.1640057927270435]
            • 0:9.241132814982931
            • 1:4.1640057927270435
        • properties: built
          • type:built
          • Map:50
      • 175: Feature (Point, 2 properties)
        • type:Feature
        • id:89848
        • geometry: Point (-17.31, 14.75)
          • type:Point
          • coordinates: [-17.30565708009469, 14.75380331507894]
            • 0:-17.30565708009469
            • 1:14.75380331507894
        • properties: built
          • type:built
          • Map:50
      • 176: Feature (Point, 2 properties)
        • type:Feature
        • id:89997
        • geometry: Point (25.19, 0.52)
          • type:Point
          • coordinates: [25.190844035280907, 0.5211813825282164]
            • 0:25.190844035280907
            • 1:0.5211813825282164
        • properties: built
          • type:built
          • Map:50
      • 177: Feature (Point, 2 properties)
        • type:Feature
        • id:91297
        • geometry: Point (32.61, -3.86)
          • type:Point
          • coordinates: [32.606409550205456, -3.8553141126490638]
            • 0:32.606409550205456
            • 1:-3.8553141126490638
        • properties: built
          • type:built
          • Map:50
      • 178: Feature (Point, 2 properties)
        • type:Feature
        • id:91445
        • geometry: Point (-2.09, 5.64)
          • type:Point
          • coordinates: [-2.093328569811017, 5.636747386258423]
            • 0:-2.093328569811017
            • 1:5.636747386258423
        • properties: built
          • type:built
          • Map:50
      • 179: Feature (Point, 2 properties)
        • type:Feature
        • id:91570
        • geometry: Point (25.74, -6.36)
          • type:Point
          • coordinates: [25.73611749860861, -6.356318111070982]
            • 0:25.73611749860861
            • 1:-6.356318111070982
        • properties: built
          • type:built
          • Map:50
      • 180: Feature (Point, 2 properties)
        • type:Feature
        • id:92104
        • geometry: Point (38.80, -10.73)
          • type:Point
          • coordinates: [38.80393160256038, -10.72646672590029]
            • 0:38.80393160256038
            • 1:-10.72646672590029
        • properties: built
          • type:built
          • Map:50
      • 181: Feature (Point, 2 properties)
        • type:Feature
        • id:92472
        • geometry: Point (13.43, 9.37)
          • type:Point
          • coordinates: [13.42951549228608, 9.365927995471143]
            • 0:13.42951549228608
            • 1:9.365927995471143
        • properties: built
          • type:built
          • Map:50
      • 182: Feature (Point, 2 properties)
        • type:Feature
        • id:92603
        • geometry: Point (36.93, 10.97)
          • type:Point
          • coordinates: [36.93143651577143, 10.965233043343055]
            • 0:36.93143651577143
            • 1:10.965233043343055
        • properties: built
          • type:built
          • Map:50
      • 183: Feature (Point, 2 properties)
        • type:Feature
        • id:92777
        • geometry: Point (48.60, -17.35)
          • type:Point
          • coordinates: [48.60105208751694, -17.350158544212903]
            • 0:48.60105208751694
            • 1:-17.350158544212903
        • properties: built
          • type:built
          • Map:50
      • 184: Feature (Point, 2 properties)
        • type:Feature
        • id:94850
        • geometry: Point (-1.43, 5.18)
          • type:Point
          • coordinates: [-1.4261165925000103, 5.184050675772009]
            • 0:-1.4261165925000103
            • 1:5.184050675772009
        • properties: built
          • type:built
          • Map:50
      • 185: Feature (Point, 2 properties)
        • type:Feature
        • id:95481
        • geometry: Point (-1.57, 10.25)
          • type:Point
          • coordinates: [-1.5681222678880171, 10.247526559994917]
            • 0:-1.5681222678880171
            • 1:10.247526559994917
        • properties: built
          • type:built
          • Map:50
      • 186: Feature (Point, 2 properties)
        • type:Feature
        • id:95549
        • geometry: Point (38.20, 10.46)
          • type:Point
          • coordinates: [38.20382376925656, 10.45962079665409]
            • 0:38.20382376925656
            • 1:10.45962079665409
        • properties: built
          • type:built
          • Map:50
      • 187: Feature (Point, 2 properties)
        • type:Feature
        • id:95931
        • geometry: Point (-17.44, 14.67)
          • type:Point
          • coordinates: [-17.43817629630691, 14.674790036772011]
            • 0:-17.43817629630691
            • 1:14.674790036772011
        • properties: built
          • type:built
          • Map:50
      • 188: Feature (Point, 2 properties)
        • type:Feature
        • id:96037
        • geometry: Point (49.30, -12.30)
          • type:Point
          • coordinates: [49.296549151227744, -12.301990510455088]
            • 0:49.296549151227744
            • 1:-12.301990510455088
        • properties: built
          • type:built
          • Map:50
      • 189: Feature (Point, 2 properties)
        • type:Feature
        • id:96488
        • geometry: Point (-7.96, 12.64)
          • type:Point
          • coordinates: [-7.964284614770341, 12.644187176988984]
            • 0:-7.964284614770341
            • 1:12.644187176988984
        • properties: built
          • type:built
          • Map:50
      • 190: Feature (Point, 2 properties)
        • type:Feature
        • id:96519
        • geometry: Point (40.12, -10.24)
          • type:Point
          • coordinates: [40.11973782021464, -10.238941030283547]
            • 0:40.11973782021464
            • 1:-10.238941030283547
        • properties: built
          • type:built
          • Map:50
      • 191: Feature (Point, 2 properties)
        • type:Feature
        • id:98236
        • geometry: Point (-2.31, 7.34)
          • type:Point
          • coordinates: [-2.3077407391535423, 7.335788428056991]
            • 0:-2.3077407391535423
            • 1:7.335788428056991
        • properties: built
          • type:built
          • Map:50
      • 192: Feature (Point, 2 properties)
        • type:Feature
        • id:98242
        • geometry: Point (39.27, 8.53)
          • type:Point
          • coordinates: [39.274423814941585, 8.5297751261046]
            • 0:39.274423814941585
            • 1:8.5297751261046
        • properties: built
          • type:built
          • Map:50
      • 193: Feature (Point, 2 properties)
        • type:Feature
        • id:98272
        • geometry: Point (37.59, -3.67)
          • type:Point
          • coordinates: [37.59117349660814, -3.6703855723051038]
            • 0:37.59117349660814
            • 1:-3.6703855723051038
        • properties: built
          • type:built
          • Map:50
      • 194: Feature (Point, 2 properties)
        • type:Feature
        • id:99616
        • geometry: Point (1.30, 6.19)
          • type:Point
          • coordinates: [1.304175499925534, 6.18570270390185]
            • 0:1.304175499925534
            • 1:6.18570270390185
        • properties: built
          • type:built
          • Map:50
      • 195: Feature (Point, 2 properties)
        • type:Feature
        • id:101050
        • geometry: Point (-17.46, 14.75)
          • type:Point
          • coordinates: [-17.459711855709887, 14.745817038173005]
            • 0:-17.459711855709887
            • 1:14.745817038173005
        • properties: built
          • type:built
          • Map:50
      • 196: Feature (Point, 2 properties)
        • type:Feature
        • id:101123
        • geometry: Point (11.48, 3.80)
          • type:Point
          • coordinates: [11.483482342489912, 3.801772292679944]
            • 0:11.483482342489912
            • 1:3.801772292679944
        • properties: built
          • type:built
          • Map:50
      • 197: Feature (Point, 2 properties)
        • type:Feature
        • id:101275
        • geometry: Point (39.63, -4.08)
          • type:Point
          • coordinates: [39.63437435339951, -4.077782826180279]
            • 0:39.63437435339951
            • 1:-4.077782826180279
        • properties: built
          • type:built
          • Map:50
      • 198: Feature (Point, 2 properties)
        • type:Feature
        • id:101362
        • geometry: Point (26.74, -10.81)
          • type:Point
          • coordinates: [26.744679373545456, -10.808466841274765]
            • 0:26.744679373545456
            • 1:-10.808466841274765
        • properties: built
          • type:built
          • Map:50
      • 199: Feature (Point, 2 properties)
        • type:Feature
        • id:101700
        • geometry: Point (39.24, -6.10)
          • type:Point
          • coordinates: [39.236630678407884, -6.097203483180386]
            • 0:39.236630678407884
            • 1:-6.097203483180386
        • properties: built
          • type:built
          • Map:50
      • 200: Feature (Point, 2 properties)
        • type:Feature
        • id:102168
        • geometry: Point (38.76, 10.74)
          • type:Point
          • coordinates: [38.76175965967131, 10.74045488263599]
            • 0:38.76175965967131
            • 1:10.74045488263599
        • properties: built
          • type:built
          • Map:50
      • 201: Feature (Point, 2 properties)
        • type:Feature
        • id:102354
        • geometry: Point (33.88, -4.29)
          • type:Point
          • coordinates: [33.88166693766767, -4.293309168238465]
            • 0:33.88166693766767
            • 1:-4.293309168238465
        • properties: built
          • type:built
          • Map:50
      • 202: Feature (Point, 2 properties)
        • type:Feature
        • id:102575
        • geometry: Point (32.84, -9.26)
          • type:Point
          • coordinates: [32.840294866073016, -9.256686127860423]
            • 0:32.840294866073016
            • 1:-9.256686127860423
        • properties: built
          • type:built
          • Map:50
      • 203: Feature (Point, 2 properties)
        • type:Feature
        • id:102581
        • geometry: Point (32.94, -2.52)
          • type:Point
          • coordinates: [32.94441238528673, -2.5237934943927924]
            • 0:32.94441238528673
            • 1:-2.5237934943927924
        • properties: built
          • type:built
          • Map:50
      • 204: Feature (Point, 2 properties)
        • type:Feature
        • id:102818
        • geometry: Point (23.37, -7.79)
          • type:Point
          • coordinates: [23.36892964070571, -7.790704236501009]
            • 0:23.36892964070571
            • 1:-7.790704236501009
        • properties: built
          • type:built
          • Map:50
      • 205: Feature (Point, 2 properties)
        • type:Feature
        • id:103305
        • geometry: Point (13.39, -8.88)
          • type:Point
          • coordinates: [13.388907452781503, -8.87616185245303]
            • 0:13.388907452781503
            • 1:-8.87616185245303
        • properties: built
          • type:built
          • Map:50
      • 206: Feature (Point, 2 properties)
        • type:Feature
        • id:103755
        • geometry: Point (28.33, -15.48)
          • type:Point
          • coordinates: [28.326510964577526, -15.479217157301726]
            • 0:28.326510964577526
            • 1:-15.479217157301726
        • properties: built
          • type:built
          • Map:50
      • 207: Feature (Point, 2 properties)
        • type:Feature
        • id:103938
        • geometry: Point (1.22, 6.34)
          • type:Point
          • coordinates: [1.2190814366566296, 6.342628082129058]
            • 0:1.2190814366566296
            • 1:6.342628082129058
        • properties: built
          • type:built
          • Map:50
      • 208: Feature (Point, 2 properties)
        • type:Feature
        • id:104162
        • geometry: Point (39.27, -6.84)
          • type:Point
          • coordinates: [39.27038194868669, -6.842488723655351]
            • 0:39.27038194868669
            • 1:-6.842488723655351
        • properties: built
          • type:built
          • Map:50
      • 209: Feature (Point, 2 properties)
        • type:Feature
        • id:104240
        • geometry: Point (33.02, -8.43)
          • type:Point
          • coordinates: [33.0213092823149, -8.430309978460416]
            • 0:33.0213092823149
            • 1:-8.430309978460416
        • properties: built
          • type:built
          • Map:50
      • 210: Feature (Point, 2 properties)
        • type:Feature
        • id:104337
        • geometry: Point (36.89, -1.19)
          • type:Point
          • coordinates: [36.88595049651513, -1.194059430925405]
            • 0:36.88595049651513
            • 1:-1.194059430925405
        • properties: built
          • type:built
          • Map:50
      • 211: Feature (Point, 2 properties)
        • type:Feature
        • id:104685
        • geometry: Point (33.45, -8.90)
          • type:Point
          • coordinates: [33.449308637699595, -8.90491461606492]
            • 0:33.449308637699595
            • 1:-8.90491461606492
        • properties: built
          • type:built
          • Map:50
      • 212: Feature (Point, 2 properties)
        • type:Feature
        • id:105285
        • geometry: Point (-17.46, 14.75)
          • type:Point
          • coordinates: [-17.462940134171614, 14.749953867133868]
            • 0:-17.462940134171614
            • 1:14.749953867133868
        • properties: built
          • type:built
          • Map:50
      • 213: Feature (Point, 2 properties)
        • type:Feature
        • id:105807
        • geometry: Point (28.09, -12.85)
          • type:Point
          • coordinates: [28.089778027957244, -12.845537857668292]
            • 0:28.089778027957244
            • 1:-12.845537857668292
        • properties: built
          • type:built
          • Map:50
      • 214: Feature (Point, 2 properties)
        • type:Feature
        • id:106894
        • geometry: Point (29.35, 0.53)
          • type:Point
          • coordinates: [29.35116137760466, 0.5270109393065667]
            • 0:29.35116137760466
            • 1:0.5270109393065667
        • properties: built
          • type:built
          • Map:50
      • 215: Feature (Point, 2 properties)
        • type:Feature
        • id:107598
        • geometry: Point (22.56, -9.13)
          • type:Point
          • coordinates: [22.555074973026645, -9.134811239205835]
            • 0:22.555074973026645
            • 1:-9.134811239205835
        • properties: built
          • type:built
          • Map:50
      • 216: Feature (Point, 2 properties)
        • type:Feature
        • id:109241
        • geometry: Point (-8.14, 11.95)
          • type:Point
          • coordinates: [-8.140030813302927, 11.947775189903773]
            • 0:-8.140030813302927
            • 1:11.947775189903773
        • properties: built
          • type:built
          • Map:50
      • 217: Feature (Point, 2 properties)
        • type:Feature
        • id:109348
        • geometry: Point (39.54, -10.19)
          • type:Point
          • coordinates: [39.53754221377425, -10.192947833045995]
            • 0:39.53754221377425
            • 1:-10.192947833045995
        • properties: built
          • type:built
          • Map:50
      • 218: Feature (Point, 2 properties)
        • type:Feature
        • id:109568
        • geometry: Point (35.72, 0.06)
          • type:Point
          • coordinates: [35.72065060734292, 0.0601606869946129]
            • 0:35.72065060734292
            • 1:0.0601606869946129
        • properties: built
          • type:built
          • Map:50
      • 219: Feature (Point, 2 properties)
        • type:Feature
        • id:109967
        • geometry: Point (39.20, -6.84)
          • type:Point
          • coordinates: [39.20461608407514, -6.8414873926852335]
            • 0:39.20461608407514
            • 1:-6.8414873926852335
        • properties: built
          • type:built
          • Map:50
      • 220: Feature (Point, 2 properties)
        • type:Feature
        • id:110321
        • geometry: Point (-4.64, 13.68)
          • type:Point
          • coordinates: [-4.636123638006546, 13.679554939656906]
            • 0:-4.636123638006546
            • 1:13.679554939656906
        • properties: built
          • type:built
          • Map:50
      • 221: Feature (Point, 2 properties)
        • type:Feature
        • id:110427
        • geometry: Point (-0.39, 11.77)
          • type:Point
          • coordinates: [-0.3898602330415939, 11.772730670041938]
            • 0:-0.3898602330415939
            • 1:11.772730670041938
        • properties: built
          • type:built
          • Map:50
      • 222: Feature (Point, 2 properties)
        • type:Feature
        • id:110702
        • geometry: Point (0.07, 5.76)
          • type:Point
          • coordinates: [0.07058946850667132, 5.761129143035764]
            • 0:0.07058946850667132
            • 1:5.761129143035764
        • properties: built
          • type:built
          • Map:50
      • 223: Feature (Point, 2 properties)
        • type:Feature
        • id:111347
        • geometry: Point (25.59, -10.77)
          • type:Point
          • coordinates: [25.590376888420558, -10.77418962142829]
            • 0:25.590376888420558
            • 1:-10.77418962142829
        • properties: built
          • type:built
          • Map:50
      • 224: Feature (Point, 2 properties)
        • type:Feature
        • id:111533
        • geometry: Point (39.87, -3.62)
          • type:Point
          • coordinates: [39.869537355663724, -3.6160495320689865]
            • 0:39.869537355663724
            • 1:-3.6160495320689865
        • properties: built
          • type:built
          • Map:50
      • 225: Feature (Point, 2 properties)
        • type:Feature
        • id:111986
        • geometry: Point (15.27, -4.41)
          • type:Point
          • coordinates: [15.272960377908177, -4.408030785111263]
            • 0:15.272960377908177
            • 1:-4.408030785111263
        • properties: built
          • type:built
          • Map:50
      • 226: Feature (Point, 2 properties)
        • type:Feature
        • id:112199
        • geometry: Point (19.57, -4.96)
          • type:Point
          • coordinates: [19.569316556308873, -4.959963887789738]
            • 0:19.569316556308873
            • 1:-4.959963887789738
        • properties: built
          • type:built
          • Map:50
      • 227: Feature (Point, 2 properties)
        • type:Feature
        • id:113159
        • geometry: Point (38.71, 7.85)
          • type:Point
          • coordinates: [38.706669813189244, 7.845525233719369]
            • 0:38.706669813189244
            • 1:7.845525233719369
        • properties: built
          • type:built
          • Map:50
      • 228: Feature (Point, 2 properties)
        • type:Feature
        • id:113431
        • geometry: Point (13.29, -8.78)
          • type:Point
          • coordinates: [13.28761283115008, -8.782872030919936]
            • 0:13.28761283115008
            • 1:-8.782872030919936
        • properties: built
          • type:built
          • Map:50
      • 229: Feature (Point, 2 properties)
        • type:Feature
        • id:113532
        • geometry: Point (-1.66, 6.58)
          • type:Point
          • coordinates: [-1.6599374511987837, 6.57545862584935]
            • 0:-1.6599374511987837
            • 1:6.57545862584935
        • properties: built
          • type:built
          • Map:50
      • 230: Feature (Point, 2 properties)
        • type:Feature
        • id:113565
        • geometry: Point (32.75, -9.32)
          • type:Point
          • coordinates: [32.749953522325974, -9.32319736115563]
            • 0:32.749953522325974
            • 1:-9.32319736115563
        • properties: built
          • type:built
          • Map:50
      • 231: Feature (Point, 2 properties)
        • type:Feature
        • id:113856
        • geometry: Point (0.48, 7.16)
          • type:Point
          • coordinates: [0.4792689289336928, 7.158080095691375]
            • 0:0.4792689289336928
            • 1:7.158080095691375
        • properties: built
          • type:built
          • Map:50
      • 232: Feature (Point, 2 properties)
        • type:Feature
        • id:114573
        • geometry: Point (38.99, -7.95)
          • type:Point
          • coordinates: [38.989406280292904, -7.954583627555987]
            • 0:38.989406280292904
            • 1:-7.954583627555987
        • properties: built
          • type:built
          • Map:50
      • 233: Feature (Point, 2 properties)
        • type:Feature
        • id:115316
        • geometry: Point (38.89, 8.98)
          • type:Point
          • coordinates: [38.89392036691453, 8.98124992951385]
            • 0:38.89392036691453
            • 1:8.98124992951385
        • properties: built
          • type:built
          • Map:50
      • 234: Feature (Point, 2 properties)
        • type:Feature
        • id:115985
        • geometry: Point (41.87, 9.58)
          • type:Point
          • coordinates: [41.868302331731144, 9.57877044873236]
            • 0:41.868302331731144
            • 1:9.57877044873236
        • properties: built
          • type:built
          • Map:50
      • 235: Feature (Point, 2 properties)
        • type:Feature
        • id:116013
        • geometry: Point (13.42, 9.34)
          • type:Point
          • coordinates: [13.418483494089564, 9.338142890566868]
            • 0:13.418483494089564
            • 1:9.338142890566868
        • properties: built
          • type:built
          • Map:50
      • 236: Feature (Point, 2 properties)
        • type:Feature
        • id:116653
        • geometry: Point (38.57, 8.89)
          • type:Point
          • coordinates: [38.5747714136383, 8.890319986441666]
            • 0:38.5747714136383
            • 1:8.890319986441666
        • properties: built
          • type:built
          • Map:50
      • 237: Feature (Point, 2 properties)
        • type:Feature
        • id:116753
        • geometry: Point (28.26, -15.43)
          • type:Point
          • coordinates: [28.25814008906415, -15.426669205352397]
            • 0:28.25814008906415
            • 1:-15.426669205352397
        • properties: built
          • type:built
          • Map:50
      • 238: Feature (Point, 2 properties)
        • type:Feature
        • id:117907
        • geometry: Point (26.66, -4.43)
          • type:Point
          • coordinates: [26.663440604379176, -4.434332145696907]
            • 0:26.663440604379176
            • 1:-4.434332145696907
        • properties: built
          • type:built
          • Map:50
      • 239: Feature (Point, 2 properties)
        • type:Feature
        • id:118173
        • geometry: Point (-2.02, 7.08)
          • type:Point
          • coordinates: [-2.023613871458297, 7.084631277016515]
            • 0:-2.023613871458297
            • 1:7.084631277016515
        • properties: built
          • type:built
          • Map:50
      • 240: Feature (Point, 2 properties)
        • type:Feature
        • id:118724
        • geometry: Point (36.99, -1.26)
          • type:Point
          • coordinates: [36.98517554515151, -1.2578601744546405]
            • 0:36.98517554515151
            • 1:-1.2578601744546405
        • properties: built
          • type:built
          • Map:50
      • 241: Feature (Point, 2 properties)
        • type:Feature
        • id:119434
        • geometry: Point (0.64, 6.92)
          • type:Point
          • coordinates: [0.6391031004826323, 6.917016197709984]
            • 0:0.6391031004826323
            • 1:6.917016197709984
        • properties: built
          • type:built
          • Map:50
      • 242: Feature (Point, 2 properties)
        • type:Feature
        • id:119533
        • geometry: Point (29.29, 0.15)
          • type:Point
          • coordinates: [29.286587495601346, 0.1488151816910651]
            • 0:29.286587495601346
            • 1:0.1488151816910651
        • properties: built
          • type:built
          • Map:50
      • 243: Feature (Point, 2 properties)
        • type:Feature
        • id:119961
        • geometry: Point (0.02, 6.15)
          • type:Point
          • coordinates: [0.023527346704810458, 6.147036046382241]
            • 0:0.023527346704810458
            • 1:6.147036046382241
        • properties: built
          • type:built
          • Map:50
      • 244: Feature (Point, 2 properties)
        • type:Feature
        • id:120717
        • geometry: Point (37.57, 10.46)
          • type:Point
          • coordinates: [37.57490695436328, 10.455800344280192]
            • 0:37.57490695436328
            • 1:10.455800344280192
        • properties: built
          • type:built
          • Map:50
      • 245: Feature (Point, 2 properties)
        • type:Feature
        • id:121522
        • geometry: Point (-0.15, 5.75)
          • type:Point
          • coordinates: [-0.15370310502958048, 5.748744725696624]
            • 0:-0.15370310502958048
            • 1:5.748744725696624
        • properties: built
          • type:built
          • Map:50
      • 246: Feature (Point, 2 properties)
        • type:Feature
        • id:121557
        • geometry: Point (29.24, -1.65)
          • type:Point
          • coordinates: [29.236583668199756, -1.6460692187382282]
            • 0:29.236583668199756
            • 1:-1.6460692187382282
        • properties: built
          • type:built
          • Map:50
      • 247: Feature (Point, 2 properties)
        • type:Feature
        • id:122425
        • geometry: Point (-1.61, 6.68)
          • type:Point
          • coordinates: [-1.6136159183695298, 6.680351763061034]
            • 0:-1.6136159183695298
            • 1:6.680351763061034
        • properties: built
          • type:built
          • Map:50
      • 248: Feature (Point, 2 properties)
        • type:Feature
        • id:123013
        • geometry: Point (38.83, 8.99)
          • type:Point
          • coordinates: [38.83243870146636, 8.991926089323705]
            • 0:38.83243870146636
            • 1:8.991926089323705
        • properties: built
          • type:built
          • Map:50
      • 249: Feature (Point, 2 properties)
        • type:Feature
        • id:123750
        • geometry: Point (28.76, -13.09)
          • type:Point
          • coordinates: [28.75682640610477, -13.089406745889532]
            • 0:28.75682640610477
            • 1:-13.089406745889532
        • properties: built
          • type:built
          • Map:50
      • 250: Feature (Point, 2 properties)
        • type:Feature
        • id:123903
        • geometry: Point (39.48, -3.88)
          • type:Point
          • coordinates: [39.481507805989686, -3.8797731798133244]
            • 0:39.481507805989686
            • 1:-3.8797731798133244
        • properties: built
          • type:built
          • Map:50
      • 251: Feature (Point, 2 properties)
        • type:Feature
        • id:124316
        • geometry: Point (-0.25, 5.67)
          • type:Point
          • coordinates: [-0.25310399825745106, 5.668488146911616]
            • 0:-0.25310399825745106
            • 1:5.668488146911616
        • properties: built
          • type:built
          • Map:50
      • 252: Feature (Point, 2 properties)
        • type:Feature
        • id:125120
        • geometry: Point (-6.97, 12.78)
          • type:Point
          • coordinates: [-6.970728955091211, 12.781486381244251]
            • 0:-6.970728955091211
            • 1:12.781486381244251
        • properties: built
          • type:built
          • Map:50
      • 253: Feature (Point, 2 properties)
        • type:Feature
        • id:125241
        • geometry: Point (39.14, -6.81)
          • type:Point
          • coordinates: [39.13705010928655, -6.805711024140213]
            • 0:39.13705010928655
            • 1:-6.805711024140213
        • properties: built
          • type:built
          • Map:50
      • 254: Feature (Point, 2 properties)
        • type:Feature
        • id:125495
        • geometry: Point (0.64, 6.92)
          • type:Point
          • coordinates: [0.640143037450576, 6.9184180995074]
            • 0:0.640143037450576
            • 1:6.9184180995074
        • properties: built
          • type:built
          • Map:50
      • 255: Feature (Point, 2 properties)
        • type:Feature
        • id:126201
        • geometry: Point (27.64, 2.78)
          • type:Point
          • coordinates: [27.638021959421316, 2.777387573779518]
            • 0:27.638021959421316
            • 1:2.777387573779518
        • properties: built
          • type:built
          • Map:50
      • 256: Feature (Point, 2 properties)
        • type:Feature
        • id:127082
        • geometry: Point (-15.81, 16.52)
          • type:Point
          • coordinates: [-15.805892536884869, 16.516397100669376]
            • 0:-15.805892536884869
            • 1:16.516397100669376
        • properties: built
          • type:built
          • Map:50
      • 257: Feature (Point, 2 properties)
        • type:Feature
        • id:127386
        • geometry: Point (38.88, 8.97)
          • type:Point
          • coordinates: [38.88277209579153, 8.967082721138762]
            • 0:38.88277209579153
            • 1:8.967082721138762
        • properties: built
          • type:built
          • Map:50
      • 258: Feature (Point, 2 properties)
        • type:Feature
        • id:127563
        • geometry: Point (15.03, -7.62)
          • type:Point
          • coordinates: [15.031383185762444, -7.616520609514263]
            • 0:15.031383185762444
            • 1:-7.616520609514263
        • properties: built
          • type:built
          • Map:50
      • 259: Feature (Point, 2 properties)
        • type:Feature
        • id:128820
        • geometry: Point (16.02, -10.51)
          • type:Point
          • coordinates: [16.016115933971612, -10.50566521680534]
            • 0:16.016115933971612
            • 1:-10.50566521680534
        • properties: built
          • type:built
          • Map:50
      • 260: Feature (Point, 2 properties)
        • type:Feature
        • id:128935
        • geometry: Point (28.25, -15.36)
          • type:Point
          • coordinates: [28.248681947280385, -15.356309780150468]
            • 0:28.248681947280385
            • 1:-15.356309780150468
        • properties: built
          • type:built
          • Map:50
      • 261: Feature (Point, 2 properties)
        • type:Feature
        • id:129416
        • geometry: Point (27.54, -11.69)
          • type:Point
          • coordinates: [27.53694186264597, -11.6929987400511]
            • 0:27.53694186264597
            • 1:-11.6929987400511
        • properties: built
          • type:built
          • Map:50
      • 262: Feature (Point, 2 properties)
        • type:Feature
        • id:129970
        • geometry: Point (20.16, -11.44)
          • type:Point
          • coordinates: [20.161867116119005, -11.441800503338714]
            • 0:20.161867116119005
            • 1:-11.441800503338714
        • properties: built
          • type:built
          • Map:50
      • 263: Feature (Point, 2 properties)
        • type:Feature
        • id:130226
        • geometry: Point (28.24, -15.42)
          • type:Point
          • coordinates: [28.24206341274969, -15.415335780933514]
            • 0:28.24206341274969
            • 1:-15.415335780933514
        • properties: built
          • type:built
          • Map:50
      • 264: Feature (Point, 2 properties)
        • type:Feature
        • id:130452
        • geometry: Point (28.68, -13.97)
          • type:Point
          • coordinates: [28.680340691999685, -13.96955735569196]
            • 0:28.680340691999685
            • 1:-13.96955735569196
        • properties: built
          • type:built
          • Map:50
      • 265: Feature (Point, 2 properties)
        • type:Feature
        • id:131827
        • geometry: Point (-0.46, 5.51)
          • type:Point
          • coordinates: [-0.45881553188895663, 5.506816127304925]
            • 0:-0.45881553188895663
            • 1:5.506816127304925
        • properties: built
          • type:built
          • Map:50
      • 266: Feature (Point, 2 properties)
        • type:Feature
        • id:132040
        • geometry: Point (1.10, 6.59)
          • type:Point
          • coordinates: [1.1033064160937835, 6.593791669717966]
            • 0:1.1033064160937835
            • 1:6.593791669717966
        • properties: built
          • type:built
          • Map:50
      • 267: Feature (Point, 2 properties)
        • type:Feature
        • id:132091
        • geometry: Point (1.31, 9.66)
          • type:Point
          • coordinates: [1.3098307804381655, 9.655053897670244]
            • 0:1.3098307804381655
            • 1:9.655053897670244
        • properties: built
          • type:built
          • Map:50
      • 268: Feature (Point, 2 properties)
        • type:Feature
        • id:132400
        • geometry: Point (-1.67, 6.69)
          • type:Point
          • coordinates: [-1.6656419164651373, 6.6860312411718255]
            • 0:-1.6656419164651373
            • 1:6.6860312411718255
        • properties: built
          • type:built
          • Map:50
      • 269: Feature (Point, 2 properties)
        • type:Feature
        • id:132618
        • geometry: Point (16.93, -12.42)
          • type:Point
          • coordinates: [16.926112318800598, -12.423727979325003]
            • 0:16.926112318800598
            • 1:-12.423727979325003
        • properties: built
          • type:built
          • Map:50
      • 270: Feature (Point, 2 properties)
        • type:Feature
        • id:133554
        • geometry: Point (29.30, 0.14)
          • type:Point
          • coordinates: [29.29691654021352, 0.13768292202738647]
            • 0:29.29691654021352
            • 1:0.13768292202738647
        • properties: built
          • type:built
          • Map:50
      • 271: Feature (Point, 2 properties)
        • type:Feature
        • id:133812
        • geometry: Point (29.21, -3.26)
          • type:Point
          • coordinates: [29.209970825117164, -3.2616973755012935]
            • 0:29.209970825117164
            • 1:-3.2616973755012935
        • properties: built
          • type:built
          • Map:50
      • 272: Feature (Point, 2 properties)
        • type:Feature
        • id:133884
        • geometry: Point (-6.25, 13.43)
          • type:Point
          • coordinates: [-6.253575867196901, 13.43055727527179]
            • 0:-6.253575867196901
            • 1:13.43055727527179
        • properties: built
          • type:built
          • Map:50
      • 273: Feature (Point, 2 properties)
        • type:Feature
        • id:134415
        • geometry: Point (46.04, -18.77)
          • type:Point
          • coordinates: [46.03988141925372, -18.76897141845754]
            • 0:46.03988141925372
            • 1:-18.76897141845754
        • properties: built
          • type:built
          • Map:50
      • 274: Feature (Point, 2 properties)
        • type:Feature
        • id:134666
        • geometry: Point (15.77, -12.76)
          • type:Point
          • coordinates: [15.770759081244506, -12.760515552971611]
            • 0:15.770759081244506
            • 1:-12.760515552971611
        • properties: built
          • type:built
          • Map:50
      • 275: Feature (Point, 2 properties)
        • type:Feature
        • id:134780
        • geometry: Point (13.66, -8.58)
          • type:Point
          • coordinates: [13.664058875499276, -8.579865974622631]
            • 0:13.664058875499276
            • 1:-8.579865974622631
        • properties: built
          • type:built
          • Map:50
      • 276: Feature (Point, 2 properties)
        • type:Feature
        • id:134875
        • geometry: Point (39.33, -6.87)
          • type:Point
          • coordinates: [39.33379717103402, -6.870015147937088]
            • 0:39.33379717103402
            • 1:-6.870015147937088
        • properties: built
          • type:built
          • Map:50
      • 277: Feature (Point, 2 properties)
        • type:Feature
        • id:135468
        • geometry: Point (13.46, -9.07)
          • type:Point
          • coordinates: [13.462772632506958, -9.071290238144169]
            • 0:13.462772632506958
            • 1:-9.071290238144169
        • properties: built
          • type:built
          • Map:50
      • 278: Feature (Point, 2 properties)
        • type:Feature
        • id:135699
        • geometry: Point (37.32, -3.38)
          • type:Point
          • coordinates: [37.32222595078454, -3.3844909412823867]
            • 0:37.32222595078454
            • 1:-3.3844909412823867
        • properties: built
          • type:built
          • Map:50
      • 279: Feature (Point, 2 properties)
        • type:Feature
        • id:137068
        • geometry: Point (-1.67, 6.62)
          • type:Point
          • coordinates: [-1.6700809531858944, 6.618598136479559]
            • 0:-1.6700809531858944
            • 1:6.618598136479559
        • properties: built
          • type:built
          • Map:50
      • 280: Feature (Point, 2 properties)
        • type:Feature
        • id:137896
        • geometry: Point (1.13, 6.65)
          • type:Point
          • coordinates: [1.1342076992072176, 6.654678319108096]
            • 0:1.1342076992072176
            • 1:6.654678319108096
        • properties: built
          • type:built
          • Map:50
      • 281: Feature (Point, 2 properties)
        • type:Feature
        • id:138145
        • geometry: Point (39.13, 7.96)
          • type:Point
          • coordinates: [39.12825277652104, 7.9599934229838185]
            • 0:39.12825277652104
            • 1:7.9599934229838185
        • properties: built
          • type:built
          • Map:50
      • 282: Feature (Point, 2 properties)
        • type:Feature
        • id:138681
        • geometry: Point (27.44, -11.62)
          • type:Point
          • coordinates: [27.441463820138498, -11.6163871663982]
            • 0:27.441463820138498
            • 1:-11.6163871663982
        • properties: built
          • type:built
          • Map:50
      • 283: Feature (Point, 2 properties)
        • type:Feature
        • id:138754
        • geometry: Point (1.26, 6.18)
          • type:Point
          • coordinates: [1.2553160371340866, 6.177015014583595]
            • 0:1.2553160371340866
            • 1:6.177015014583595
        • properties: built
          • type:built
          • Map:50
      • 284: Feature (Point, 2 properties)
        • type:Feature
        • id:139928
        • geometry: Point (-1.68, 6.97)
          • type:Point
          • coordinates: [-1.6795539767411278, 6.968893553340987]
            • 0:-1.6795539767411278
            • 1:6.968893553340987
        • properties: built
          • type:built
          • Map:50
      • 285: Feature (Point, 2 properties)
        • type:Feature
        • id:139940
        • geometry: Point (-2.29, 7.31)
          • type:Point
          • coordinates: [-2.290548510300786, 7.307515814533116]
            • 0:-2.290548510300786
            • 1:7.307515814533116
        • properties: built
          • type:built
          • Map:50
      • 286: Feature (Point, 2 properties)
        • type:Feature
        • id:140078
        • geometry: Point (28.26, -15.35)
          • type:Point
          • coordinates: [28.255540485225055, -15.353789235102115]
            • 0:28.255540485225055
            • 1:-15.353789235102115
        • properties: built
          • type:built
          • Map:50
      • 287: Feature (Point, 2 properties)
        • type:Feature
        • id:140535
        • geometry: Point (13.29, -8.91)
          • type:Point
          • coordinates: [13.29409869443137, -8.911621713225571]
            • 0:13.29409869443137
            • 1:-8.911621713225571
        • properties: built
          • type:built
          • Map:50
      • 288: Feature (Point, 2 properties)
        • type:Feature
        • id:141843
        • geometry: Point (38.76, 8.96)
          • type:Point
          • coordinates: [38.7559123192889, 8.959032955262892]
            • 0:38.7559123192889
            • 1:8.959032955262892
        • properties: built
          • type:built
          • Map:50
      • 289: Feature (Point, 2 properties)
        • type:Feature
        • id:142099
        • geometry: Point (15.85, -12.21)
          • type:Point
          • coordinates: [15.854529169927579, -12.20913604791885]
            • 0:15.854529169927579
            • 1:-12.20913604791885
        • properties: built
          • type:built
          • Map:50
      • 290: Feature (Point, 2 properties)
        • type:Feature
        • id:143268
        • geometry: Point (35.32, 5.49)
          • type:Point
          • coordinates: [35.32482321419232, 5.4916442272477966]
            • 0:35.32482321419232
            • 1:5.4916442272477966
        • properties: built
          • type:built
          • Map:50
      • 291: Feature (Point, 2 properties)
        • type:Feature
        • id:144648
        • geometry: Point (37.54, -1.14)
          • type:Point
          • coordinates: [37.54478445271552, -1.1430165626703421]
            • 0:37.54478445271552
            • 1:-1.1430165626703421
        • properties: built
          • type:built
          • Map:50
      • 292: Feature (Point, 2 properties)
        • type:Feature
        • id:144918
        • geometry: Point (49.94, -13.86)
          • type:Point
          • coordinates: [49.94396622550387, -13.863822578957596]
            • 0:49.94396622550387
            • 1:-13.863822578957596
        • properties: built
          • type:built
          • Map:50
      • 293: Feature (Point, 2 properties)
        • type:Feature
        • id:146265
        • geometry: Point (31.86, -18.15)
          • type:Point
          • coordinates: [31.855841378065207, -18.151144427625702]
            • 0:31.855841378065207
            • 1:-18.151144427625702
        • properties: built
          • type:built
          • Map:50
      • 294: Feature (Point, 2 properties)
        • type:Feature
        • id:146821
        • geometry: Point (28.07, -12.64)
          • type:Point
          • coordinates: [28.072711311951817, -12.642032587273432]
            • 0:28.072711311951817
            • 1:-12.642032587273432
        • properties: built
          • type:built
          • Map:50
      • 295: Feature (Point, 2 properties)
        • type:Feature
        • id:146828
        • geometry: Point (44.30, -20.30)
          • type:Point
          • coordinates: [44.29810310601142, -20.297254496872807]
            • 0:44.29810310601142
            • 1:-20.297254496872807
        • properties: built
          • type:built
          • Map:50
      • 296: Feature (Point, 2 properties)
        • type:Feature
        • id:148886
        • geometry: Point (22.05, -6.59)
          • type:Point
          • coordinates: [22.054125334431763, -6.589936929259353]
            • 0:22.054125334431763
            • 1:-6.589936929259353
        • properties: built
          • type:built
          • Map:50
      • 297: Feature (Point, 2 properties)
        • type:Feature
        • id:148935
        • geometry: Point (-7.93, 12.48)
          • type:Point
          • coordinates: [-7.927852786950654, 12.477449940528247]
            • 0:-7.927852786950654
            • 1:12.477449940528247
        • properties: built
          • type:built
          • Map:50
      • 298: Feature (Point, 2 properties)
        • type:Feature
        • id:149007
        • geometry: Point (36.93, -1.20)
          • type:Point
          • coordinates: [36.92511746968021, -1.2008712215056478]
            • 0:36.92511746968021
            • 1:-1.2008712215056478
        • properties: built
          • type:built
          • Map:50
      • 299: Feature (Point, 2 properties)
        • type:Feature
        • id:150126
        • geometry: Point (31.04, -5.12)
          • type:Point
          • coordinates: [31.042396522627044, -5.124809224445416]
            • 0:31.042396522627044
            • 1:-5.124809224445416
        • properties: built
          • type:built
          • Map:50
      • 300: Feature (Point, 2 properties)
        • type:Feature
        • id:151104
        • geometry: Point (47.53, -18.99)
          • type:Point
          • coordinates: [47.53092166808485, -18.990926845103694]
            • 0:47.53092166808485
            • 1:-18.990926845103694
        • properties: built
          • type:built
          • Map:50
      • 301: Feature (Point, 2 properties)
        • type:Feature
        • id:151272
        • geometry: Point (-0.33, 5.53)
          • type:Point
          • coordinates: [-0.32941394677666114, 5.526439916672996]
            • 0:-0.32941394677666114
            • 1:5.526439916672996
        • properties: built
          • type:built
          • Map:50
      • 302: Feature (Point, 2 properties)
        • type:Feature
        • id:151322
        • geometry: Point (-2.78, 5.74)
          • type:Point
          • coordinates: [-2.7753730387066615, 5.739268621622128]
            • 0:-2.7753730387066615
            • 1:5.739268621622128
        • properties: built
          • type:built
          • Map:50
      • 303: Feature (Point, 2 properties)
        • type:Feature
        • id:151370
        • geometry: Point (34.32, -8.68)
          • type:Point
          • coordinates: [34.32027556800737, -8.67516067640969]
            • 0:34.32027556800737
            • 1:-8.67516067640969
        • properties: built
          • type:built
          • Map:50
      • 304: Feature (Point, 2 properties)
        • type:Feature
        • id:151537
        • geometry: Point (16.38, -9.56)
          • type:Point
          • coordinates: [16.37898475289886, -9.560081205067059]
            • 0:16.37898475289886
            • 1:-9.560081205067059
        • properties: built
          • type:built
          • Map:50
      • 305: Feature (Point, 2 properties)
        • type:Feature
        • id:151949
        • geometry: Point (9.42, 4.63)
          • type:Point
          • coordinates: [9.424108786263611, 4.6324328760463365]
            • 0:9.424108786263611
            • 1:4.6324328760463365
        • properties: built
          • type:built
          • Map:50
      • 306: Feature (Point, 2 properties)
        • type:Feature
        • id:151950
        • geometry: Point (-1.62, 6.78)
          • type:Point
          • coordinates: [-1.6216469013714634, 6.7818424471541245]
            • 0:-1.6216469013714634
            • 1:6.7818424471541245
        • properties: built
          • type:built
          • Map:50
      • 307: Feature (Point, 2 properties)
        • type:Feature
        • id:151999
        • geometry: Point (13.26, -8.87)
          • type:Point
          • coordinates: [13.257679126275956, -8.867002291931074]
            • 0:13.257679126275956
            • 1:-8.867002291931074
        • properties: built
          • type:built
          • Map:50
      • 308: Feature (Point, 2 properties)
        • type:Feature
        • id:153011
        • geometry: Point (-0.00, 5.70)
          • type:Point
          • coordinates: [-0.002243110446283271, 5.697799162716136]
            • 0:-0.002243110446283271
            • 1:5.697799162716136
        • properties: built
          • type:built
          • Map:50
      • 309: Feature (Point, 2 properties)
        • type:Feature
        • id:154603
        • geometry: Point (-0.37, 5.54)
          • type:Point
          • coordinates: [-0.3698849410590447, 5.542121469346979]
            • 0:-0.3698849410590447
            • 1:5.542121469346979
        • properties: built
          • type:built
          • Map:50
      • 310: Feature (Point, 2 properties)
        • type:Feature
        • id:154854
        • geometry: Point (31.91, -3.45)
          • type:Point
          • coordinates: [31.90574411278689, -3.4502811323705793]
            • 0:31.90574411278689
            • 1:-3.4502811323705793
        • properties: built
          • type:built
          • Map:50
      • 311: Feature (Point, 2 properties)
        • type:Feature
        • id:156444
        • geometry: Point (13.69, 4.58)
          • type:Point
          • coordinates: [13.691908568587257, 4.5799626327073755]
            • 0:13.691908568587257
            • 1:4.5799626327073755
        • properties: built
          • type:built
          • Map:50
      • 312: Feature (Point, 2 properties)
        • type:Feature
        • id:156934
        • geometry: Point (-17.06, 14.76)
          • type:Point
          • coordinates: [-17.06020906728185, 14.759826472737524]
            • 0:-17.06020906728185
            • 1:14.759826472737524
        • properties: built
          • type:built
          • Map:50
      • 313: Feature (Point, 2 properties)
        • type:Feature
        • id:156990
        • geometry: Point (-2.35, 7.36)
          • type:Point
          • coordinates: [-2.351897433824988, 7.357536588596593]
            • 0:-2.351897433824988
            • 1:7.357536588596593
        • properties: built
          • type:built
          • Map:50
      • 314: Feature (Point, 2 properties)
        • type:Feature
        • id:157014
        • geometry: Point (32.27, -19.26)
          • type:Point
          • coordinates: [32.267091188352516, -19.257034485523942]
            • 0:32.267091188352516
            • 1:-19.257034485523942
        • properties: built
          • type:built
          • Map:50
      • 315: Feature (Point, 2 properties)
        • type:Feature
        • id:157032
        • geometry: Point (-0.28, 6.13)
          • type:Point
          • coordinates: [-0.2780485474903151, 6.125565648170754]
            • 0:-0.2780485474903151
            • 1:6.125565648170754
        • properties: built
          • type:built
          • Map:50
      • 316: Feature (Point, 2 properties)
        • type:Feature
        • id:157390
        • geometry: Point (28.47, -14.40)
          • type:Point
          • coordinates: [28.467519679020075, -14.396209796377276]
            • 0:28.467519679020075
            • 1:-14.396209796377276
        • properties: built
          • type:built
          • Map:50
      • 317: Feature (Point, 2 properties)
        • type:Feature
        • id:158074
        • geometry: Point (27.87, -12.45)
          • type:Point
          • coordinates: [27.870225396220526, -12.451821656191479]
            • 0:27.870225396220526
            • 1:-12.451821656191479
        • properties: built
          • type:built
          • Map:50
      • 318: Feature (Point, 2 properties)
        • type:Feature
        • id:158267
        • geometry: Point (-16.29, 12.57)
          • type:Point
          • coordinates: [-16.292129187747324, 12.566300995950566]
            • 0:-16.292129187747324
            • 1:12.566300995950566
        • properties: built
          • type:built
          • Map:50
      • 319: Feature (Point, 2 properties)
        • type:Feature
        • id:158504
        • geometry: Point (-0.13, 5.70)
          • type:Point
          • coordinates: [-0.13016301499064384, 5.701555710834657]
            • 0:-0.13016301499064384
            • 1:5.701555710834657
        • properties: built
          • type:built
          • Map:50
      • 320: Feature (Point, 2 properties)
        • type:Feature
        • id:158588
        • geometry: Point (-1.55, 12.40)
          • type:Point
          • coordinates: [-1.5518811053320554, 12.398721189721734]
            • 0:-1.5518811053320554
            • 1:12.398721189721734
        • properties: built
          • type:built
          • Map:50
      • 321: Feature (Point, 2 properties)
        • type:Feature
        • id:158917
        • geometry: Point (-1.67, 6.94)
          • type:Point
          • coordinates: [-1.6733070426215728, 6.939583590830239]
            • 0:-1.6733070426215728
            • 1:6.939583590830239
        • properties: built
          • type:built
          • Map:50
      • 322: Feature (Point, 2 properties)
        • type:Feature
        • id:159085
        • geometry: Point (35.91, -0.37)
          • type:Point
          • coordinates: [35.90945552647293, -0.36710582587921914]
            • 0:35.90945552647293
            • 1:-0.36710582587921914
        • properties: built
          • type:built
          • Map:50
      • 323: Feature (Point, 2 properties)
        • type:Feature
        • id:160109
        • geometry: Point (-1.61, 12.38)
          • type:Point
          • coordinates: [-1.6107956569367732, 12.382929613888754]
            • 0:-1.6107956569367732
            • 1:12.382929613888754
        • properties: built
          • type:built
          • Map:50
      • 324: Feature (Point, 2 properties)
        • type:Feature
        • id:160432
        • geometry: Point (-0.35, 5.67)
          • type:Point
          • coordinates: [-0.35224182552551114, 5.674590407304653]
            • 0:-0.35224182552551114
            • 1:5.674590407304653
        • properties: built
          • type:built
          • Map:50
      • 325: Feature (Point, 2 properties)
        • type:Feature
        • id:161962
        • geometry: Point (-1.94, 7.59)
          • type:Point
          • coordinates: [-1.9394310503938976, 7.588564903543932]
            • 0:-1.9394310503938976
            • 1:7.588564903543932
        • properties: built
          • type:built
          • Map:50
      • 326: Feature (Point, 2 properties)
        • type:Feature
        • id:162146
        • geometry: Point (-0.65, 6.19)
          • type:Point
          • coordinates: [-0.6527243392644232, 6.192392287292681]
            • 0:-0.6527243392644232
            • 1:6.192392287292681
        • properties: built
          • type:built
          • Map:50
      • 327: Feature (Point, 2 properties)
        • type:Feature
        • id:162986
        • geometry: Point (34.72, -4.79)
          • type:Point
          • coordinates: [34.71602637220883, -4.794458149355289]
            • 0:34.71602637220883
            • 1:-4.794458149355289
        • properties: built
          • type:built
          • Map:50
      • 328: Feature (Point, 2 properties)
        • type:Feature
        • id:163727
        • geometry: Point (28.42, -13.14)
          • type:Point
          • coordinates: [28.41863604849824, -13.141367273885074]
            • 0:28.41863604849824
            • 1:-13.141367273885074
        • properties: built
          • type:built
          • Map:50
      • 329: Feature (Point, 2 properties)
        • type:Feature
        • id:163997
        • geometry: Point (-2.97, 7.29)
          • type:Point
          • coordinates: [-2.972376367085544, 7.289762672567071]
            • 0:-2.972376367085544
            • 1:7.289762672567071
        • properties: built
          • type:built
          • Map:50
      • 330: Feature (Point, 2 properties)
        • type:Feature
        • id:164521
        • geometry: Point (11.56, 3.80)
          • type:Point
          • coordinates: [11.563913954697801, 3.8018407111540737]
            • 0:11.563913954697801
            • 1:3.8018407111540737
        • properties: built
          • type:built
          • Map:50
      • 331: Feature (Point, 2 properties)
        • type:Feature
        • id:164539
        • geometry: Point (34.84, -8.88)
          • type:Point
          • coordinates: [34.83985335880607, -8.878708664574305]
            • 0:34.83985335880607
            • 1:-8.878708664574305
        • properties: built
          • type:built
          • Map:50
      • 332: Feature (Point, 2 properties)
        • type:Feature
        • id:164585
        • geometry: Point (-0.82, 13.15)
          • type:Point
          • coordinates: [-0.8204710940355447, 13.150878102228486]
            • 0:-0.8204710940355447
            • 1:13.150878102228486
        • properties: built
          • type:built
          • Map:50
      • 333: Feature (Point, 2 properties)
        • type:Feature
        • id:165438
        • geometry: Point (1.33, 9.13)
          • type:Point
          • coordinates: [1.329437213604588, 9.125156773093915]
            • 0:1.329437213604588
            • 1:9.125156773093915
        • properties: built
          • type:built
          • Map:50
      • 334: Feature (Point, 2 properties)
        • type:Feature
        • id:166382
        • geometry: Point (32.95, -2.63)
          • type:Point
          • coordinates: [32.95385445253435, -2.6286028430125836]
            • 0:32.95385445253435
            • 1:-2.6286028430125836
        • properties: built
          • type:built
          • Map:50
      • 335: Feature (Point, 2 properties)
        • type:Feature
        • id:166987
        • geometry: Point (28.79, 4.48)
          • type:Point
          • coordinates: [28.792317860756043, 4.484640184631813]
            • 0:28.792317860756043
            • 1:4.484640184631813
        • properties: built
          • type:built
          • Map:50
      • 336: Feature (Point, 2 properties)
        • type:Feature
        • id:167179
        • geometry: Point (-15.87, 14.87)
          • type:Point
          • coordinates: [-15.867837353626266, 14.869970497985872]
            • 0:-15.867837353626266
            • 1:14.869970497985872
        • properties: built
          • type:built
          • Map:50
      • 337: Feature (Point, 2 properties)
        • type:Feature
        • id:167184
        • geometry: Point (39.34, -6.95)
          • type:Point
          • coordinates: [39.343297581757795, -6.947866014528943]
            • 0:39.343297581757795
            • 1:-6.947866014528943
        • properties: built
          • type:built
          • Map:50
      • 338: Feature (Point, 2 properties)
        • type:Feature
        • id:167203
        • geometry: Point (37.35, -3.35)
          • type:Point
          • coordinates: [37.35254262315405, -3.353004673744847]
            • 0:37.35254262315405
            • 1:-3.353004673744847
        • properties: built
          • type:built
          • Map:50
      • 339: Feature (Point, 2 properties)
        • type:Feature
        • id:167568
        • geometry: Point (-10.36, 6.54)
          • type:Point
          • coordinates: [-10.364839323406343, 6.536466767510179]
            • 0:-10.364839323406343
            • 1:6.536466767510179
        • properties: built
          • type:built
          • Map:50
      • 340: Feature (Point, 2 properties)
        • type:Feature
        • id:168756
        • geometry: Point (-1.57, 6.77)
          • type:Point
          • coordinates: [-1.5680889880834463, 6.7721693222472545]
            • 0:-1.5680889880834463
            • 1:6.7721693222472545
        • properties: built
          • type:built
          • Map:50
      • 341: Feature (Point, 2 properties)
        • type:Feature
        • id:169109
        • geometry: Point (16.94, -12.35)
          • type:Point
          • coordinates: [16.941642982775143, -12.353403663434646]
            • 0:16.941642982775143
            • 1:-12.353403663434646
        • properties: built
          • type:built
          • Map:50
      • 342: Feature (Point, 2 properties)
        • type:Feature
        • id:169339
        • geometry: Point (25.90, -2.96)
          • type:Point
          • coordinates: [25.895696521547105, -2.9605750832388487]
            • 0:25.895696521547105
            • 1:-2.9605750832388487
        • properties: built
          • type:built
          • Map:50
      • 343: Feature (Point, 2 properties)
        • type:Feature
        • id:169696
        • geometry: Point (-0.52, 5.51)
          • type:Point
          • coordinates: [-0.5183719015612747, 5.508058126786116]
            • 0:-0.5183719015612747
            • 1:5.508058126786116
        • properties: built
          • type:built
          • Map:50
      • 344: Feature (Point, 2 properties)
        • type:Feature
        • id:169813
        • geometry: Point (30.98, -17.97)
          • type:Point
          • coordinates: [30.979335081361775, -17.97380081500582]
            • 0:30.979335081361775
            • 1:-17.97380081500582
        • properties: built
          • type:built
          • Map:50
      • 345: Feature (Point, 2 properties)
        • type:Feature
        • id:170808
        • geometry: Point (37.26, -0.62)
          • type:Point
          • coordinates: [37.256295988993344, -0.6233805402839082]
            • 0:37.256295988993344
            • 1:-0.6233805402839082
        • properties: built
          • type:built
          • Map:50
      • 346: Feature (Point, 2 properties)
        • type:Feature
        • id:170969
        • geometry: Point (33.44, -8.91)
          • type:Point
          • coordinates: [33.442705584888, -8.913944058782345]
            • 0:33.442705584888
            • 1:-8.913944058782345
        • properties: built
          • type:built
          • Map:50
      • 347: Feature (Point, 2 properties)
        • type:Feature
        • id:172231
        • geometry: Point (-16.60, 15.02)
          • type:Point
          • coordinates: [-16.595924765182094, 15.017659124779692]
            • 0:-16.595924765182094
            • 1:15.017659124779692
        • properties: built
          • type:built
          • Map:50
      • 348: Feature (Point, 2 properties)
        • type:Feature
        • id:172728
        • geometry: Point (26.44, -1.46)
          • type:Point
          • coordinates: [26.441191249898747, -1.4637939852863433]
            • 0:26.441191249898747
            • 1:-1.4637939852863433
        • properties: built
          • type:built
          • Map:50
      • 349: Feature (Point, 2 properties)
        • type:Feature
        • id:173580
        • geometry: Point (40.17, 7.13)
          • type:Point
          • coordinates: [40.16685300974515, 7.127636509126139]
            • 0:40.16685300974515
            • 1:7.127636509126139
        • properties: built
          • type:built
          • Map:50
      • 350: Feature (Point, 2 properties)
        • type:Feature
        • id:173673
        • geometry: Point (1.17, 6.20)
          • type:Point
          • coordinates: [1.1657375714469178, 6.19977976178727]
            • 0:1.1657375714469178
            • 1:6.19977976178727
        • properties: built
          • type:built
          • Map:50
      • 351: Feature (Point, 2 properties)
        • type:Feature
        • id:174642
        • geometry: Point (10.40, 5.17)
          • type:Point
          • coordinates: [10.404583814944113, 5.168443851172264]
            • 0:10.404583814944113
            • 1:5.168443851172264
        • properties: built
          • type:built
          • Map:50
      • 352: Feature (Point, 2 properties)
        • type:Feature
        • id:174711
        • geometry: Point (27.45, -11.59)
          • type:Point
          • coordinates: [27.44603462958376, -11.594114610685148]
            • 0:27.44603462958376
            • 1:-11.594114610685148
        • properties: built
          • type:built
          • Map:50
      • 353: Feature (Point, 2 properties)
        • type:Feature
        • id:174744
        • geometry: Point (35.77, -7.16)
          • type:Point
          • coordinates: [35.770825488931706, -7.1605646257182425]
            • 0:35.770825488931706
            • 1:-7.1605646257182425
        • properties: built
          • type:built
          • Map:50
      • 354: Feature (Point, 2 properties)
        • type:Feature
        • id:175248
        • geometry: Point (11.46, 3.84)
          • type:Point
          • coordinates: [11.461333308626013, 3.835021934412245]
            • 0:11.461333308626013
            • 1:3.835021934412245
        • properties: built
          • type:built
          • Map:50
      • 355: Feature (Point, 2 properties)
        • type:Feature
        • id:175784
        • geometry: Point (28.21, -3.06)
          • type:Point
          • coordinates: [28.205007435990375, -3.0611443033577217]
            • 0:28.205007435990375
            • 1:-3.0611443033577217
        • properties: built
          • type:built
          • Map:50
      • 356: Feature (Point, 2 properties)
        • type:Feature
        • id:175897
        • geometry: Point (15.73, -12.77)
          • type:Point
          • coordinates: [15.734519042397116, -12.768913275721522]
            • 0:15.734519042397116
            • 1:-12.768913275721522
        • properties: built
          • type:built
          • Map:50
      • 357: Feature (Point, 2 properties)
        • type:Feature
        • id:178082
        • geometry: Point (-1.52, 6.81)
          • type:Point
          • coordinates: [-1.5240105998696596, 6.806922806309856]
            • 0:-1.5240105998696596
            • 1:6.806922806309856
        • properties: built
          • type:built
          • Map:50
      • 358: Feature (Point, 2 properties)
        • type:Feature
        • id:178810
        • geometry: Point (-0.03, 14.03)
          • type:Point
          • coordinates: [-0.030994225602402167, 14.031469640868563]
            • 0:-0.030994225602402167
            • 1:14.031469640868563
        • properties: built
          • type:built
          • Map:50
      • 359: Feature (Point, 2 properties)
        • type:Feature
        • id:179190
        • geometry: Point (39.28, -6.86)
          • type:Point
          • coordinates: [39.28357781093423, -6.862263938053737]
            • 0:39.28357781093423
            • 1:-6.862263938053737
        • properties: built
          • type:built
          • Map:50
      • 360: Feature (Point, 2 properties)
        • type:Feature
        • id:179204
        • geometry: Point (38.18, 7.84)
          • type:Point
          • coordinates: [38.17543564323586, 7.841703018153067]
            • 0:38.17543564323586
            • 1:7.841703018153067
        • properties: built
          • type:built
          • Map:50
      • 361: Feature (Point, 2 properties)
        • type:Feature
        • id:179585
        • geometry: Point (-1.21, 5.61)
          • type:Point
          • coordinates: [-1.2058945826255523, 5.605535350480885]
            • 0:-1.2058945826255523
            • 1:5.605535350480885
        • properties: built
          • type:built
          • Map:50
      • 362: Feature (Point, 2 properties)
        • type:Feature
        • id:180133
        • geometry: Point (38.51, 7.01)
          • type:Point
          • coordinates: [38.50676911258496, 7.008071968951687]
            • 0:38.50676911258496
            • 1:7.008071968951687
        • properties: built
          • type:built
          • Map:50
      • 363: Feature (Point, 2 properties)
        • type:Feature
        • id:180427
        • geometry: Point (27.48, -11.66)
          • type:Point
          • coordinates: [27.475353768537225, -11.657110497523057]
            • 0:27.475353768537225
            • 1:-11.657110497523057
        • properties: built
          • type:built
          • Map:50
      • 364: Feature (Point, 2 properties)
        • type:Feature
        • id:181210
        • geometry: Point (-8.73, 12.44)
          • type:Point
          • coordinates: [-8.734675916761608, 12.439669473355465]
            • 0:-8.734675916761608
            • 1:12.439669473355465
        • properties: built
          • type:built
          • Map:50
      • 365: Feature (Point, 2 properties)
        • type:Feature
        • id:181663
        • geometry: Point (-0.21, 5.67)
          • type:Point
          • coordinates: [-0.20573595974622597, 5.671996215959528]
            • 0:-0.20573595974622597
            • 1:5.671996215959528
        • properties: built
          • type:built
          • Map:50
      • 366: Feature (Point, 2 properties)
        • type:Feature
        • id:182015
        • geometry: Point (-0.35, 5.54)
          • type:Point
          • coordinates: [-0.35032405009225376, 5.535952827901585]
            • 0:-0.35032405009225376
            • 1:5.535952827901585
        • properties: built
          • type:built
          • Map:50
      • 367: Feature (Point, 2 properties)
        • type:Feature
        • id:182325
        • geometry: Point (-2.29, 6.09)
          • type:Point
          • coordinates: [-2.2899415080891328, 6.09336674534577]
            • 0:-2.2899415080891328
            • 1:6.09336674534577
        • properties: built
          • type:built
          • Map:50
      • 368: Feature (Point, 2 properties)
        • type:Feature
        • id:182339
        • geometry: Point (-0.48, 5.53)
          • type:Point
          • coordinates: [-0.48497876579751215, 5.526980274793088]
            • 0:-0.48497876579751215
            • 1:5.526980274793088
        • properties: built
          • type:built
          • Map:50
      • 369: Feature (Point, 2 properties)
        • type:Feature
        • id:182341
        • geometry: Point (0.91, 6.47)
          • type:Point
          • coordinates: [0.9100638324466704, 6.465662515623235]
            • 0:0.9100638324466704
            • 1:6.465662515623235
        • properties: built
          • type:built
          • Map:50
      • 370: Feature (Point, 2 properties)
        • type:Feature
        • id:183228
        • geometry: Point (-7.88, 12.69)
          • type:Point
          • coordinates: [-7.882741434139096, 12.686543822507534]
            • 0:-7.882741434139096
            • 1:12.686543822507534
        • properties: built
          • type:built
          • Map:50
      • 371: Feature (Point, 2 properties)
        • type:Feature
        • id:183232
        • geometry: Point (-0.45, 5.53)
          • type:Point
          • coordinates: [-0.45118415778321036, 5.5255942647050516]
            • 0:-0.45118415778321036
            • 1:5.5255942647050516
        • properties: built
          • type:built
          • Map:50
      • 372: Feature (Point, 2 properties)
        • type:Feature
        • id:185066
        • geometry: Point (18.16, -3.89)
          • type:Point
          • coordinates: [18.157180925467035, -3.8871364521410467]
            • 0:18.157180925467035
            • 1:-3.8871364521410467
        • properties: built
          • type:built
          • Map:50
      • 373: Feature (Point, 2 properties)
        • type:Feature
        • id:185094
        • geometry: Point (15.96, -9.10)
          • type:Point
          • coordinates: [15.959933205448149, -9.095844004708797]
            • 0:15.959933205448149
            • 1:-9.095844004708797
        • properties: built
          • type:built
          • Map:50
      • 374: Feature (Point, 2 properties)
        • type:Feature
        • id:185328
        • geometry: Point (15.39, -12.88)
          • type:Point
          • coordinates: [15.393164330132146, -12.877927992619425]
            • 0:15.393164330132146
            • 1:-12.877927992619425
        • properties: built
          • type:built
          • Map:50
      • 375: Feature (Point, 2 properties)
        • type:Feature
        • id:185352
        • geometry: Point (-17.18, 14.71)
          • type:Point
          • coordinates: [-17.184956294978424, 14.71362399192085]
            • 0:-17.184956294978424
            • 1:14.71362399192085
        • properties: built
          • type:built
          • Map:50
      • 376: Feature (Point, 2 properties)
        • type:Feature
        • id:185683
        • geometry: Point (36.93, 10.95)
          • type:Point
          • coordinates: [36.9279611253056, 10.953787236812389]
            • 0:36.9279611253056
            • 1:10.953787236812389
        • properties: built
          • type:built
          • Map:50
      • 377: Feature (Point, 2 properties)
        • type:Feature
        • id:187232
        • geometry: Point (9.65, 4.08)
          • type:Point
          • coordinates: [9.649423997926023, 4.080001203350684]
            • 0:9.649423997926023
            • 1:4.080001203350684
        • properties: built
          • type:built
          • Map:50
      • 378: Feature (Point, 2 properties)
        • type:Feature
        • id:188495
        • geometry: Point (25.87, -10.75)
          • type:Point
          • coordinates: [25.874157390960583, -10.746325938622512]
            • 0:25.874157390960583
            • 1:-10.746325938622512
        • properties: built
          • type:built
          • Map:50
      • 379: Feature (Point, 2 properties)
        • type:Feature
        • id:189035
        • geometry: Point (13.36, -12.63)
          • type:Point
          • coordinates: [13.360220031688822, -12.627512700065967]
            • 0:13.360220031688822
            • 1:-12.627512700065967
        • properties: built
          • type:built
          • Map:50
      • 380: Feature (Point, 2 properties)
        • type:Feature
        • id:189193
        • geometry: Point (25.42, -10.73)
          • type:Point
          • coordinates: [25.42368426896263, -10.730544035730942]
            • 0:25.42368426896263
            • 1:-10.730544035730942
        • properties: built
          • type:built
          • Map:50
      • 381: Feature (Point, 2 properties)
        • type:Feature
        • id:189296
        • geometry: Point (32.67, -13.67)
          • type:Point
          • coordinates: [32.669870876211576, -13.667396407581831]
            • 0:32.669870876211576
            • 1:-13.667396407581831
        • properties: built
          • type:built
          • Map:50
      • 382: Feature (Point, 2 properties)
        • type:Feature
        • id:190827
        • geometry: Point (-0.27, 6.06)
          • type:Point
          • coordinates: [-0.2684694694762149, 6.058069877498032]
            • 0:-0.2684694694762149
            • 1:6.058069877498032
        • properties: built
          • type:built
          • Map:50
      • 383: Feature (Point, 2 properties)
        • type:Feature
        • id:191694
        • geometry: Point (25.54, -10.77)
          • type:Point
          • coordinates: [25.540197264732576, -10.77116573425723]
            • 0:25.540197264732576
            • 1:-10.77116573425723
        • properties: built
          • type:built
          • Map:50
      • 384: Feature (Point, 2 properties)
        • type:Feature
        • id:192481
        • geometry: Point (-15.43, 12.65)
          • type:Point
          • coordinates: [-15.427518657981565, 12.650189146196514]
            • 0:-15.427518657981565
            • 1:12.650189146196514
        • properties: built
          • type:built
          • Map:50
      • 385: Feature (Point, 2 properties)
        • type:Feature
        • id:192635
        • geometry: Point (26.76, -10.99)
          • type:Point
          • coordinates: [26.763091029193454, -10.99356208060319]
            • 0:26.763091029193454
            • 1:-10.99356208060319
        • properties: built
          • type:built
          • Map:50
      • 386: Feature (Point, 2 properties)
        • type:Feature
        • id:192681
        • geometry: Point (-16.35, 14.48)
          • type:Point
          • coordinates: [-16.34596400316908, 14.476953009121411]
            • 0:-16.34596400316908
            • 1:14.476953009121411
        • properties: built
          • type:built
          • Map:50
      • 387: Feature (Point, 2 properties)
        • type:Feature
        • id:192782
        • geometry: Point (-12.21, 14.45)
          • type:Point
          • coordinates: [-12.21079341644245, 14.450013523877871]
            • 0:-12.21079341644245
            • 1:14.450013523877871
        • properties: built
          • type:built
          • Map:50
      • 388: Feature (Point, 2 properties)
        • type:Feature
        • id:193293
        • geometry: Point (26.65, -10.78)
          • type:Point
          • coordinates: [26.645372296233234, -10.775723419128292]
            • 0:26.645372296233234
            • 1:-10.775723419128292
        • properties: built
          • type:built
          • Map:50
      • 389: Feature (Point, 2 properties)
        • type:Feature
        • id:193321
        • geometry: Point (-1.52, 12.43)
          • type:Point
          • coordinates: [-1.519305605892005, 12.428935232216892]
            • 0:-1.519305605892005
            • 1:12.428935232216892
        • properties: built
          • type:built
          • Map:50
      • 390: Feature (Point, 2 properties)
        • type:Feature
        • id:193722
        • geometry: Point (13.59, -12.38)
          • type:Point
          • coordinates: [13.590745187128318, -12.37680353612286]
            • 0:13.590745187128318
            • 1:-12.37680353612286
        • properties: built
          • type:built
          • Map:50
      • 391: Feature (Point, 2 properties)
        • type:Feature
        • id:194168
        • geometry: Point (0.98, 6.03)
          • type:Point
          • coordinates: [0.9811157210695022, 6.027523306542005]
            • 0:0.9811157210695022
            • 1:6.027523306542005
        • properties: built
          • type:built
          • Map:50
      • 392: Feature (Point, 2 properties)
        • type:Feature
        • id:194975
        • geometry: Point (-2.77, 10.86)
          • type:Point
          • coordinates: [-2.765881903462652, 10.862468191847611]
            • 0:-2.765881903462652
            • 1:10.862468191847611
        • properties: built
          • type:built
          • Map:50
      • 393: Feature (Point, 2 properties)
        • type:Feature
        • id:195091
        • geometry: Point (13.28, 6.46)
          • type:Point
          • coordinates: [13.277313370713781, 6.464344124710674]
            • 0:13.277313370713781
            • 1:6.464344124710674
        • properties: built
          • type:built
          • Map:50
      • 394: Feature (Point, 2 properties)
        • type:Feature
        • id:195707
        • geometry: Point (32.61, -3.85)
          • type:Point
          • coordinates: [32.61280919035518, -3.8523210766507727]
            • 0:32.61280919035518
            • 1:-3.8523210766507727
        • properties: built
          • type:built
          • Map:50
      • 395: Feature (Point, 2 properties)
        • type:Feature
        • id:196284
        • geometry: Point (37.57, 10.44)
          • type:Point
          • coordinates: [37.5668299753275, 10.439847873583979]
            • 0:37.5668299753275
            • 1:10.439847873583979
        • properties: built
          • type:built
          • Map:50
      • 396: Feature (Point, 2 properties)
        • type:Feature
        • id:197081
        • geometry: Point (22.23, 2.82)
          • type:Point
          • coordinates: [22.225753012908054, 2.8248369765282697]
            • 0:22.225753012908054
            • 1:2.8248369765282697
        • properties: built
          • type:built
          • Map:50
      • 397: Feature (Point, 2 properties)
        • type:Feature
        • id:197266
        • geometry: Point (0.59, 5.99)
          • type:Point
          • coordinates: [0.5930702162207461, 5.989400668698698]
            • 0:0.5930702162207461
            • 1:5.989400668698698
        • properties: built
          • type:built
          • Map:50
      • 398: Feature (Point, 2 properties)
        • type:Feature
        • id:197731
        • geometry: Point (29.80, -8.44)
          • type:Point
          • coordinates: [29.802932368016627, -8.441795648401866]
            • 0:29.802932368016627
            • 1:-8.441795648401866
        • properties: built
          • type:built
          • Map:50
      • 399: Feature (Point, 2 properties)
        • type:Feature
        • id:200320
        • geometry: Point (-0.83, 9.44)
          • type:Point
          • coordinates: [-0.8290549406374502, 9.438885072897419]
            • 0:-0.8290549406374502
            • 1:9.438885072897419
        • properties: built
          • type:built
          • Map:50
      • 400: Feature (Point, 2 properties)
        • type:Feature
        • id:200502
        • geometry: Point (-13.32, 15.60)
          • type:Point
          • coordinates: [-13.32110431863629, 15.600733896905757]
            • 0:-13.32110431863629
            • 1:15.600733896905757
        • properties: built
          • type:built
          • Map:50
      • 401: Feature (Point, 2 properties)
        • type:Feature
        • id:201075
        • geometry: Point (-2.32, 13.41)
          • type:Point
          • coordinates: [-2.3150775406883115, 13.41389096314524]
            • 0:-2.3150775406883115
            • 1:13.41389096314524
        • properties: built
          • type:built
          • Map:50
      • 402: Feature (Point, 2 properties)
        • type:Feature
        • id:202337
        • geometry: Point (39.09, -5.10)
          • type:Point
          • coordinates: [39.09052623027756, -5.099516104141315]
            • 0:39.09052623027756
            • 1:-5.099516104141315
        • properties: built
          • type:built
          • Map:50
      • 403: Feature (Point, 2 properties)
        • type:Feature
        • id:202480
        • geometry: Point (-3.18, 10.32)
          • type:Point
          • coordinates: [-3.1793321364385774, 10.32438125228999]
            • 0:-3.1793321364385774
            • 1:10.32438125228999
        • properties: built
          • type:built
          • Map:50
      • 404: Feature (Point, 2 properties)
        • type:Feature
        • id:202965
        • geometry: Point (25.88, -12.50)
          • type:Point
          • coordinates: [25.87752150217767, -12.50228516731341]
            • 0:25.87752150217767
            • 1:-12.50228516731341
        • properties: built
          • type:built
          • Map:50
      • 405: Feature (Point, 2 properties)
        • type:Feature
        • id:203161
        • geometry: Point (36.95, -1.20)
          • type:Point
          • coordinates: [36.94971992267022, -1.2028771002180458]
            • 0:36.94971992267022
            • 1:-1.2028771002180458
        • properties: built
          • type:built
          • Map:50
      • 406: Feature (Point, 2 properties)
        • type:Feature
        • id:203438
        • geometry: Point (44.29, 6.73)
          • type:Point
          • coordinates: [44.285675035618816, 6.732659904229941]
            • 0:44.285675035618816
            • 1:6.732659904229941
        • properties: built
          • type:built
          • Map:50
      • 407: Feature (Point, 2 properties)
        • type:Feature
        • id:203471
        • geometry: Point (-0.40, 5.82)
          • type:Point
          • coordinates: [-0.4035642169282321, 5.816336980289678]
            • 0:-0.4035642169282321
            • 1:5.816336980289678
        • properties: built
          • type:built
          • Map:50
      • 408: Feature (Point, 2 properties)
        • type:Feature
        • id:203483
        • geometry: Point (20.83, -7.40)
          • type:Point
          • coordinates: [20.827720660672387, -7.404017253479474]
            • 0:20.827720660672387
            • 1:-7.404017253479474
        • properties: built
          • type:built
          • Map:50
      • 409: Feature (Point, 2 properties)
        • type:Feature
        • id:204174
        • geometry: Point (32.05, -10.56)
          • type:Point
          • coordinates: [32.05427806194159, -10.55884373283275]
            • 0:32.05427806194159
            • 1:-10.55884373283275
        • properties: built
          • type:built
          • Map:50
      • 410: Feature (Point, 2 properties)
        • type:Feature
        • id:204568
        • geometry: Point (-1.56, 6.64)
          • type:Point
          • coordinates: [-1.5591049457408654, 6.636710162191884]
            • 0:-1.5591049457408654
            • 1:6.636710162191884
        • properties: built
          • type:built
          • Map:50
      • 411: Feature (Point, 2 properties)
        • type:Feature
        • id:205017
        • geometry: Point (13.57, 7.35)
          • type:Point
          • coordinates: [13.56931034962532, 7.347939173087799]
            • 0:13.56931034962532
            • 1:7.347939173087799
        • properties: built
          • type:built
          • Map:50
      • 412: Feature (Point, 2 properties)
        • type:Feature
        • id:205432
        • geometry: Point (1.16, 7.31)
          • type:Point
          • coordinates: [1.1604596612582045, 7.305794095277212]
            • 0:1.1604596612582045
            • 1:7.305794095277212
        • properties: built
          • type:built
          • Map:50
      • 413: Feature (Point, 2 properties)
        • type:Feature
        • id:206025
        • geometry: Point (39.70, -4.02)
          • type:Point
          • coordinates: [39.69804384473433, -4.018873572580836]
            • 0:39.69804384473433
            • 1:-4.018873572580836
        • properties: built
          • type:built
          • Map:50
      • 414: Feature (Point, 2 properties)
        • type:Feature
        • id:207630
        • geometry: Point (28.34, -5.61)
          • type:Point
          • coordinates: [28.336380197859203, -5.608045117882386]
            • 0:28.336380197859203
            • 1:-5.608045117882386
        • properties: built
          • type:built
          • Map:50
      • 415: Feature (Point, 2 properties)
        • type:Feature
        • id:208681
        • geometry: Point (9.32, 4.20)
          • type:Point
          • coordinates: [9.318504813958722, 4.200950024556424]
            • 0:9.318504813958722
            • 1:4.200950024556424
        • properties: built
          • type:built
          • Map:50
      • 416: Feature (Point, 2 properties)
        • type:Feature
        • id:209742
        • geometry: Point (33.82, 8.39)
          • type:Point
          • coordinates: [33.823920929766395, 8.390283621422292]
            • 0:33.823920929766395
            • 1:8.390283621422292
        • properties: built
          • type:built
          • Map:50
      • 417: Feature (Point, 2 properties)
        • type:Feature
        • id:210110
        • geometry: Point (-16.00, 18.09)
          • type:Point
          • coordinates: [-16.003471446832897, 18.085296151456372]
            • 0:-16.003471446832897
            • 1:18.085296151456372
        • properties: built
          • type:built
          • Map:50
      • 418: Feature (Point, 2 properties)
        • type:Feature
        • id:210153
        • geometry: Point (13.88, -11.19)
          • type:Point
          • coordinates: [13.87776555138942, -11.190159321255905]
            • 0:13.87776555138942
            • 1:-11.190159321255905
        • properties: built
          • type:built
          • Map:50
      • 419: Feature (Point, 2 properties)
        • type:Feature
        • id:210785
        • geometry: Point (36.13, -0.31)
          • type:Point
          • coordinates: [36.131806108805776, -0.31166708994447606]
            • 0:36.131806108805776
            • 1:-0.31166708994447606
        • properties: built
          • type:built
          • Map:50
      • 420: Feature (Point, 2 properties)
        • type:Feature
        • id:211225
        • geometry: Point (29.27, 0.14)
          • type:Point
          • coordinates: [29.27439381860158, 0.14100562853149853]
            • 0:29.27439381860158
            • 1:0.14100562853149853
        • properties: built
          • type:built
          • Map:50
      • 421: Feature (Point, 2 properties)
        • type:Feature
        • id:211353
        • geometry: Point (14.99, 8.65)
          • type:Point
          • coordinates: [14.994058802351045, 8.646903632550428]
            • 0:14.994058802351045
            • 1:8.646903632550428
        • properties: built
          • type:built
          • Map:50
      • 422: Feature (Point, 2 properties)
        • type:Feature
        • id:212381
        • geometry: Point (37.15, 11.40)
          • type:Point
          • coordinates: [37.15025492029667, 11.404127605842445]
            • 0:37.15025492029667
            • 1:11.404127605842445
        • properties: built
          • type:built
          • Map:50
      • 423: Feature (Point, 2 properties)
        • type:Feature
        • id:212581
        • geometry: Point (-6.11, 13.82)
          • type:Point
          • coordinates: [-6.113073622921795, 13.824375082038014]
            • 0:-6.113073622921795
            • 1:13.824375082038014
        • properties: built
          • type:built
          • Map:50
      • 424: Feature (Point, 2 properties)
        • type:Feature
        • id:212958
        • geometry: Point (1.18, 7.32)
          • type:Point
          • coordinates: [1.1757485618116787, 7.322324776209426]
            • 0:1.1757485618116787
            • 1:7.322324776209426
        • properties: built
          • type:built
          • Map:50
      • 425: Feature (Point, 2 properties)
        • type:Feature
        • id:214019
        • geometry: Point (39.46, 13.47)
          • type:Point
          • coordinates: [39.46054318126876, 13.474982813486927]
            • 0:39.46054318126876
            • 1:13.474982813486927
        • properties: built
          • type:built
          • Map:50
      • 426: Feature (Point, 2 properties)
        • type:Feature
        • id:214466
        • geometry: Point (35.30, 0.52)
          • type:Point
          • coordinates: [35.29943133793155, 0.5244452210353301]
            • 0:35.29943133793155
            • 1:0.5244452210353301
        • properties: built
          • type:built
          • Map:50
      • 427: Feature (Point, 2 properties)
        • type:Feature
        • id:214571
        • geometry: Point (-8.02, 12.54)
          • type:Point
          • coordinates: [-8.01561720906048, 12.540645077622518]
            • 0:-8.01561720906048
            • 1:12.540645077622518
        • properties: built
          • type:built
          • Map:50
      • 428: Feature (Point, 2 properties)
        • type:Feature
        • id:214637
        • geometry: Point (16.34, -9.56)
          • type:Point
          • coordinates: [16.340181543699067, -9.563067435690732]
            • 0:16.340181543699067
            • 1:-9.563067435690732
        • properties: built
          • type:built
          • Map:50
      • 429: Feature (Point, 2 properties)
        • type:Feature
        • id:214903
        • geometry: Point (28.30, -15.45)
          • type:Point
          • coordinates: [28.303217704128713, -15.44756466868794]
            • 0:28.303217704128713
            • 1:-15.44756466868794
        • properties: built
          • type:built
          • Map:50
      • 430: Feature (Point, 2 properties)
        • type:Feature
        • id:215088
        • geometry: Point (15.51, -4.36)
          • type:Point
          • coordinates: [15.505226732723537, -4.364860674758923]
            • 0:15.505226732723537
            • 1:-4.364860674758923
        • properties: built
          • type:built
          • Map:50
      • 431: Feature (Point, 2 properties)
        • type:Feature
        • id:215113
        • geometry: Point (28.40, -13.13)
          • type:Point
          • coordinates: [28.39903029626327, -13.126855128145033]
            • 0:28.39903029626327
            • 1:-13.126855128145033
        • properties: built
          • type:built
          • Map:50
      • 432: Feature (Point, 2 properties)
        • type:Feature
        • id:215802
        • geometry: Point (-17.31, 14.75)
          • type:Point
          • coordinates: [-17.309024513895103, 14.752211424466266]
            • 0:-17.309024513895103
            • 1:14.752211424466266
        • properties: built
          • type:built
          • Map:50
      • 433: Feature (Point, 2 properties)
        • type:Feature
        • id:216529
        • geometry: Point (29.18, -5.92)
          • type:Point
          • coordinates: [29.183961642713562, -5.923886389553442]
            • 0:29.183961642713562
            • 1:-5.923886389553442
        • properties: built
          • type:built
          • Map:50
      • 434: Feature (Point, 2 properties)
        • type:Feature
        • id:216591
        • geometry: Point (31.81, -1.32)
          • type:Point
          • coordinates: [31.814840747608077, -1.323617149367394]
            • 0:31.814840747608077
            • 1:-1.323617149367394
        • properties: built
          • type:built
          • Map:50
      • 435: Feature (Point, 2 properties)
        • type:Feature
        • id:217039
        • geometry: Point (23.31, -16.09)
          • type:Point
          • coordinates: [23.308741832683676, -16.091776129892615]
            • 0:23.308741832683676
            • 1:-16.091776129892615
        • properties: built
          • type:built
          • Map:50
      • 436: Feature (Point, 2 properties)
        • type:Feature
        • id:218373
        • geometry: Point (-10.72, 6.34)
          • type:Point
          • coordinates: [-10.721379295686063, 6.335769720732428]
            • 0:-10.721379295686063
            • 1:6.335769720732428
        • properties: built
          • type:built
          • Map:50
      • 437: Feature (Point, 2 properties)
        • type:Feature
        • id:218471
        • geometry: Point (-13.76, 13.13)
          • type:Point
          • coordinates: [-13.759670263640736, 13.130790049452976]
            • 0:-13.759670263640736
            • 1:13.130790049452976
        • properties: built
          • type:built
          • Map:50
      • 438: Feature (Point, 2 properties)
        • type:Feature
        • id:219467
        • geometry: Point (39.16, -6.91)
          • type:Point
          • coordinates: [39.15741670056208, -6.909751216039168]
            • 0:39.15741670056208
            • 1:-6.909751216039168
        • properties: built
          • type:built
          • Map:50
      • 439: Feature (Point, 2 properties)
        • type:Feature
        • id:219799
        • geometry: Point (10.39, 5.49)
          • type:Point
          • coordinates: [10.393317287236849, 5.48884261034795]
            • 0:10.393317287236849
            • 1:5.48884261034795
        • properties: built
          • type:built
          • Map:50
      • 440: Feature (Point, 2 properties)
        • type:Feature
        • id:220016
        • geometry: Point (1.68, 6.45)
          • type:Point
          • coordinates: [1.67773913279488, 6.447365462140377]
            • 0:1.67773913279488
            • 1:6.447365462140377
        • properties: built
          • type:built
          • Map:50
      • 441: Feature (Point, 2 properties)
        • type:Feature
        • id:220552
        • geometry: Point (25.39, -10.65)
          • type:Point
          • coordinates: [25.39115451549919, -10.647474684976023]
            • 0:25.39115451549919
            • 1:-10.647474684976023
        • properties: built
          • type:built
          • Map:50
      • 442: Feature (Point, 2 properties)
        • type:Feature
        • id:220840
        • geometry: Point (39.34, -6.88)
          • type:Point
          • coordinates: [39.344935195491345, -6.878850770434177]
            • 0:39.344935195491345
            • 1:-6.878850770434177
        • properties: built
          • type:built
          • Map:50
      • 443: Feature (Point, 2 properties)
        • type:Feature
        • id:221427
        • geometry: Point (10.27, 5.14)
          • type:Point
          • coordinates: [10.268148942363533, 5.1397494044418375]
            • 0:10.268148942363533
            • 1:5.1397494044418375
        • properties: built
          • type:built
          • Map:50
      • 444: Feature (Point, 2 properties)
        • type:Feature
        • id:221560
        • geometry: Point (13.49, -14.85)
          • type:Point
          • coordinates: [13.489883730964095, -14.849716835770545]
            • 0:13.489883730964095
            • 1:-14.849716835770545
        • properties: built
          • type:built
          • Map:50
      • 445: Feature (Point, 2 properties)
        • type:Feature
        • id:221996
        • geometry: Point (15.74, -12.76)
          • type:Point
          • coordinates: [15.740232169069005, -12.764317046481889]
            • 0:15.740232169069005
            • 1:-12.764317046481889
        • properties: built
          • type:built
          • Map:50
      • 446: Feature (Point, 2 properties)
        • type:Feature
        • id:223591
        • geometry: Point (36.76, -1.22)
          • type:Point
          • coordinates: [36.7602124379824, -1.216020815555289]
            • 0:36.7602124379824
            • 1:-1.216020815555289
        • properties: built
          • type:built
          • Map:50
      • 447: Feature (Point, 2 properties)
        • type:Feature
        • id:223798
        • geometry: Point (1.22, 6.22)
          • type:Point
          • coordinates: [1.2237335027116292, 6.2222760301331075]
            • 0:1.2237335027116292
            • 1:6.2222760301331075
        • properties: built
          • type:built
          • Map:50
      • 448: Feature (Point, 2 properties)
        • type:Feature
        • id:223849
        • geometry: Point (27.89, -12.54)
          • type:Point
          • coordinates: [27.893240009467526, -12.539725518153372]
            • 0:27.893240009467526
            • 1:-12.539725518153372
        • properties: built
          • type:built
          • Map:50
      • 449: Feature (Point, 2 properties)
        • type:Feature
        • id:224632
        • geometry: Point (20.84, -7.40)
          • type:Point
          • coordinates: [20.837809531401472, -7.396809756877903]
            • 0:20.837809531401472
            • 1:-7.396809756877903
        • properties: built
          • type:built
          • Map:50
      • 450: Feature (Point, 2 properties)
        • type:Feature
        • id:225720
        • geometry: Point (-0.86, 9.40)
          • type:Point
          • coordinates: [-0.8637346280316435, 9.402642945123626]
            • 0:-0.8637346280316435
            • 1:9.402642945123626
        • properties: built
          • type:built
          • Map:50
      • 451: Feature (Point, 2 properties)
        • type:Feature
        • id:226220
        • geometry: Point (31.13, -17.89)
          • type:Point
          • coordinates: [31.13003589431564, -17.893402933825513]
            • 0:31.13003589431564
            • 1:-17.893402933825513
        • properties: built
          • type:built
          • Map:50
      • 452: Feature (Point, 2 properties)
        • type:Feature
        • id:226656
        • geometry: Point (32.79, -5.01)
          • type:Point
          • coordinates: [32.78895040958611, -5.007126524587871]
            • 0:32.78895040958611
            • 1:-5.007126524587871
        • properties: built
          • type:built
          • Map:50
      • 453: Feature (Point, 2 properties)
        • type:Feature
        • id:226968
        • geometry: Point (32.17, -3.63)
          • type:Point
          • coordinates: [32.168917300174925, -3.634797738977383]
            • 0:32.168917300174925
            • 1:-3.634797738977383
        • properties: built
          • type:built
          • Map:50
      • 454: Feature (Point, 2 properties)
        • type:Feature
        • id:227124
        • geometry: Point (-15.93, 18.13)
          • type:Point
          • coordinates: [-15.925545653857217, 18.12950466536611]
            • 0:-15.925545653857217
            • 1:18.12950466536611
        • properties: built
          • type:built
          • Map:50
      • 455: Feature (Point, 2 properties)
        • type:Feature
        • id:227166
        • geometry: Point (36.88, -3.37)
          • type:Point
          • coordinates: [36.88428505552549, -3.37319821530704]
            • 0:36.88428505552549
            • 1:-3.37319821530704
        • properties: built
          • type:built
          • Map:50
      • 456: Feature (Point, 2 properties)
        • type:Feature
        • id:227450
        • geometry: Point (1.28, 6.15)
          • type:Point
          • coordinates: [1.2793264514364557, 6.145931633327817]
            • 0:1.2793264514364557
            • 1:6.145931633327817
        • properties: built
          • type:built
          • Map:50
      • 457: Feature (Point, 2 properties)
        • type:Feature
        • id:227605
        • geometry: Point (-1.96, 7.39)
          • type:Point
          • coordinates: [-1.9557595366567175, 7.3880724179374235]
            • 0:-1.9557595366567175
            • 1:7.3880724179374235
        • properties: built
          • type:built
          • Map:50
      • 458: Feature (Point, 2 properties)
        • type:Feature
        • id:228320
        • geometry: Point (-0.51, 8.56)
          • type:Point
          • coordinates: [-0.5125404836706587, 8.555665702673856]
            • 0:-0.5125404836706587
            • 1:8.555665702673856
        • properties: built
          • type:built
          • Map:50
      • 459: Feature (Point, 2 properties)
        • type:Feature
        • id:229057
        • geometry: Point (23.72, -7.17)
          • type:Point
          • coordinates: [23.717504567767893, -7.165381051305359]
            • 0:23.717504567767893
            • 1:-7.165381051305359
        • properties: built
          • type:built
          • Map:50
      • 460: Feature (Point, 2 properties)
        • type:Feature
        • id:229754
        • geometry: Point (-1.76, 4.89)
          • type:Point
          • coordinates: [-1.7587046258573011, 4.893453384264397]
            • 0:-1.7587046258573011
            • 1:4.893453384264397
        • properties: built
          • type:built
          • Map:50
      • 461: Feature (Point, 2 properties)
        • type:Feature
        • id:230275
        • geometry: Point (-7.96, 12.68)
          • type:Point
          • coordinates: [-7.960601853245251, 12.680140127899469]
            • 0:-7.960601853245251
            • 1:12.680140127899469
        • properties: built
          • type:built
          • Map:50
      • 462: Feature (Point, 2 properties)
        • type:Feature
        • id:230690
        • geometry: Point (-16.07, 14.17)
          • type:Point
          • coordinates: [-16.069242513480123, 14.16841265786374]
            • 0:-16.069242513480123
            • 1:14.16841265786374
        • properties: built
          • type:built
          • Map:50
      • 463: Feature (Point, 2 properties)
        • type:Feature
        • id:231411
        • geometry: Point (27.56, -11.68)
          • type:Point
          • coordinates: [27.55648559688395, -11.680397506273907]
            • 0:27.55648559688395
            • 1:-11.680397506273907
        • properties: built
          • type:built
          • Map:50
      • 464: Feature (Point, 2 properties)
        • type:Feature
        • id:232114
        • geometry: Point (23.95, -6.75)
          • type:Point
          • coordinates: [23.952264971435273, -6.745938461529275]
            • 0:23.952264971435273
            • 1:-6.745938461529275
        • properties: built
          • type:built
          • Map:50
      • 465: Feature (Point, 2 properties)
        • type:Feature
        • id:232739
        • geometry: Point (-0.86, 9.40)
          • type:Point
          • coordinates: [-0.858602834967413, 9.404276820047563]
            • 0:-0.858602834967413
            • 1:9.404276820047563
        • properties: built
          • type:built
          • Map:50
      • 466: Feature (Point, 2 properties)
        • type:Feature
        • id:232778
        • geometry: Point (39.65, -4.04)
          • type:Point
          • coordinates: [39.654340856139136, -4.042280442091473]
            • 0:39.654340856139136
            • 1:-4.042280442091473
        • properties: built
          • type:built
          • Map:50
      • 467: Feature (Point, 2 properties)
        • type:Feature
        • id:233176
        • geometry: Point (1.19, 6.22)
          • type:Point
          • coordinates: [1.1905176680850726, 6.221781237806143]
            • 0:1.1905176680850726
            • 1:6.221781237806143
        • properties: built
          • type:built
          • Map:50
      • 468: Feature (Point, 2 properties)
        • type:Feature
        • id:233237
        • geometry: Point (28.87, 0.32)
          • type:Point
          • coordinates: [28.87227499612079, 0.32134421110998057]
            • 0:28.87227499612079
            • 1:0.32134421110998057
        • properties: built
          • type:built
          • Map:50
      • 469: Feature (Point, 2 properties)
        • type:Feature
        • id:233556
        • geometry: Point (29.18, -5.93)
          • type:Point
          • coordinates: [29.184976622585392, -5.9291337324601345]
            • 0:29.184976622585392
            • 1:-5.9291337324601345
        • properties: built
          • type:built
          • Map:50
      • 470: Feature (Point, 2 properties)
        • type:Feature
        • id:233904
        • geometry: Point (13.40, -8.96)
          • type:Point
          • coordinates: [13.398450645412332, -8.961582269015517]
            • 0:13.398450645412332
            • 1:-8.961582269015517
        • properties: built
          • type:built
          • Map:50
      • 471: Feature (Point, 2 properties)
        • type:Feature
        • id:233969
        • geometry: Point (-7.86, 12.60)
          • type:Point
          • coordinates: [-7.863673440125632, 12.603165634261737]
            • 0:-7.863673440125632
            • 1:12.603165634261737
        • properties: built
          • type:built
          • Map:50
      • 472: Feature (Point, 2 properties)
        • type:Feature
        • id:234197
        • geometry: Point (0.20, 10.87)
          • type:Point
          • coordinates: [0.20112158033434496, 10.870196380417632]
            • 0:0.20112158033434496
            • 1:10.870196380417632
        • properties: built
          • type:built
          • Map:50
      • 473: Feature (Point, 2 properties)
        • type:Feature
        • id:235100
        • geometry: Point (39.22, -6.77)
          • type:Point
          • coordinates: [39.22427907064191, -6.767619976077202]
            • 0:39.22427907064191
            • 1:-6.767619976077202
        • properties: built
          • type:built
          • Map:50
      • 474: Feature (Point, 2 properties)
        • type:Feature
        • id:237279
        • geometry: Point (31.78, -2.79)
          • type:Point
          • coordinates: [31.77863516926204, -2.7859200416560435]
            • 0:31.77863516926204
            • 1:-2.7859200416560435
        • properties: built
          • type:built
          • Map:50
      • 475: Feature (Point, 2 properties)
        • type:Feature
        • id:237833
        • geometry: Point (-0.46, 5.70)
          • type:Point
          • coordinates: [-0.4623857859797795, 5.7037145876664335]
            • 0:-0.4623857859797795
            • 1:5.7037145876664335
        • properties: built
          • type:built
          • Map:50
      • 476: Feature (Point, 2 properties)
        • type:Feature
        • id:238494
        • geometry: Point (33.65, -5.44)
          • type:Point
          • coordinates: [33.649575229821195, -5.435096464642431]
            • 0:33.649575229821195
            • 1:-5.435096464642431
        • properties: built
          • type:built
          • Map:50
      • 477: Feature (Point, 2 properties)
        • type:Feature
        • id:238698
        • geometry: Point (-1.93, 7.55)
          • type:Point
          • coordinates: [-1.9342039018173145, 7.5512123591760885]
            • 0:-1.9342039018173145
            • 1:7.5512123591760885
        • properties: built
          • type:built
          • Map:50
      • 478: Feature (Point, 2 properties)
        • type:Feature
        • id:238838
        • geometry: Point (-1.57, 6.46)
          • type:Point
          • coordinates: [-1.573070078603878, 6.459217918905807]
            • 0:-1.573070078603878
            • 1:6.459217918905807
        • properties: built
          • type:built
          • Map:50
      • 479: Feature (Point, 2 properties)
        • type:Feature
        • id:239279
        • geometry: Point (-0.28, 5.57)
          • type:Point
          • coordinates: [-0.28388792201260366, 5.567838216020383]
            • 0:-0.28388792201260366
            • 1:5.567838216020383
        • properties: built
          • type:built
          • Map:50
      • 480: Feature (Point, 2 properties)
        • type:Feature
        • id:239506
        • geometry: Point (-17.49, 14.74)
          • type:Point
          • coordinates: [-17.48595464469254, 14.744908578309143]
            • 0:-17.48595464469254
            • 1:14.744908578309143
        • properties: built
          • type:built
          • Map:50
      • 481: Feature (Point, 2 properties)
        • type:Feature
        • id:239673
        • geometry: Point (-1.55, 12.43)
          • type:Point
          • coordinates: [-1.5493621349332765, 12.426608681836615]
            • 0:-1.5493621349332765
            • 1:12.426608681836615
        • properties: built
          • type:built
          • Map:50
      • 482: Feature (Point, 2 properties)
        • type:Feature
        • id:240179
        • geometry: Point (27.45, -20.16)
          • type:Point
          • coordinates: [27.451301490509195, -20.15653232783315]
            • 0:27.451301490509195
            • 1:-20.15653232783315
        • properties: built
          • type:built
          • Map:50
      • 483: Feature (Point, 2 properties)
        • type:Feature
        • id:241235
        • geometry: Point (29.37, 0.74)
          • type:Point
          • coordinates: [29.366729222496062, 0.7357963932822152]
            • 0:29.366729222496062
            • 1:0.7357963932822152
        • properties: built
          • type:built
          • Map:50
      • 484: Feature (Point, 2 properties)
        • type:Feature
        • id:241545
        • geometry: Point (12.26, 3.78)
          • type:Point
          • coordinates: [12.259408976160403, 3.7841389194996955]
            • 0:12.259408976160403
            • 1:3.7841389194996955
        • properties: built
          • type:built
          • Map:50
      • 485: Feature (Point, 2 properties)
        • type:Feature
        • id:241986
        • geometry: Point (-0.06, 7.06)
          • type:Point
          • coordinates: [-0.055764080991029856, 7.060731929717098]
            • 0:-0.055764080991029856
            • 1:7.060731929717098
        • properties: built
          • type:built
          • Map:50
      • 486: Feature (Point, 2 properties)
        • type:Feature
        • id:242353
        • geometry: Point (-6.46, 12.65)
          • type:Point
          • coordinates: [-6.461484972635683, 12.647799564000106]
            • 0:-6.461484972635683
            • 1:12.647799564000106
        • properties: built
          • type:built
          • Map:50
      • 487: Feature (Point, 2 properties)
        • type:Feature
        • id:243437
        • geometry: Point (-1.66, 7.69)
          • type:Point
          • coordinates: [-1.6593213331398988, 7.690273026939427]
            • 0:-1.6593213331398988
            • 1:7.690273026939427
        • properties: built
          • type:built
          • Map:50
      • 488: Feature (Point, 2 properties)
        • type:Feature
        • id:243585
        • geometry: Point (-17.30, 14.72)
          • type:Point
          • coordinates: [-17.297040088949124, 14.724630339699356]
            • 0:-17.297040088949124
            • 1:14.724630339699356
        • properties: built
          • type:built
          • Map:50
      • 489: Feature (Point, 2 properties)
        • type:Feature
        • id:243979
        • geometry: Point (-17.37, 14.77)
          • type:Point
          • coordinates: [-17.368163745653774, 14.772670279256248]
            • 0:-17.368163745653774
            • 1:14.772670279256248
        • properties: built
          • type:built
          • Map:50
      • 490: Feature (Point, 2 properties)
        • type:Feature
        • id:244198
        • geometry: Point (-0.38, 5.67)
          • type:Point
          • coordinates: [-0.3829100154251998, 5.666656966870958]
            • 0:-0.3829100154251998
            • 1:5.666656966870958
        • properties: built
          • type:built
          • Map:50
      • 491: Feature (Point, 2 properties)
        • type:Feature
        • id:244325
        • geometry: Point (-12.75, 15.06)
          • type:Point
          • coordinates: [-12.745482109234459, 15.062718351972212]
            • 0:-12.745482109234459
            • 1:15.062718351972212
        • properties: built
          • type:built
          • Map:50
      • 492: Feature (Point, 2 properties)
        • type:Feature
        • id:244386
        • geometry: Point (-7.93, 12.40)
          • type:Point
          • coordinates: [-7.933055744933221, 12.395882740764435]
            • 0:-7.933055744933221
            • 1:12.395882740764435
        • properties: built
          • type:built
          • Map:50
      • 493: Feature (Point, 2 properties)
        • type:Feature
        • id:244503
        • geometry: Point (-5.49, 12.38)
          • type:Point
          • coordinates: [-5.488557367104356, 12.384673119686566]
            • 0:-5.488557367104356
            • 1:12.384673119686566
        • properties: built
          • type:built
          • Map:50
      • 494: Feature (Point, 2 properties)
        • type:Feature
        • id:244973
        • geometry: Point (37.65, -6.82)
          • type:Point
          • coordinates: [37.64699690387277, -6.816640903494173]
            • 0:37.64699690387277
            • 1:-6.816640903494173
        • properties: built
          • type:built
          • Map:50
      • 495: Feature (Point, 2 properties)
        • type:Feature
        • id:245012
        • geometry: Point (13.88, -11.19)
          • type:Point
          • coordinates: [13.87730231008117, -11.191840742358332]
            • 0:13.87730231008117
            • 1:-11.191840742358332
        • properties: built
          • type:built
          • Map:50
      • 496: Feature (Point, 2 properties)
        • type:Feature
        • id:245589
        • geometry: Point (-0.31, 5.61)
          • type:Point
          • coordinates: [-0.3134581337558986, 5.6088281161267295]
            • 0:-0.3134581337558986
            • 1:5.6088281161267295
        • properties: built
          • type:built
          • Map:50
      • 497: Feature (Point, 2 properties)
        • type:Feature
        • id:245741
        • geometry: Point (38.57, 9.06)
          • type:Point
          • coordinates: [38.56539245289898, 9.057541273494268]
            • 0:38.56539245289898
            • 1:9.057541273494268
        • properties: built
          • type:built
          • Map:50
      • 498: Feature (Point, 2 properties)
        • type:Feature
        • id:247089
        • geometry: Point (39.28, -6.91)
          • type:Point
          • coordinates: [39.28128822295217, -6.9110092839668]
            • 0:39.28128822295217
            • 1:-6.9110092839668
        • properties: built
          • type:built
          • Map:50
      • 499: Feature (Point, 2 properties)
        • type:Feature
        • id:248657
        • geometry: Point (0.18, 8.69)
          • type:Point
          • coordinates: [0.18095275754837994, 8.690922513258416]
            • 0:0.18095275754837994
            • 1:8.690922513258416
        • properties: built
          • type:built
          • Map:50
      • 500: Feature (Point, 2 properties)
        • type:Feature
        • id:248896
        • geometry: Point (28.92, -11.21)
          • type:Point
          • coordinates: [28.915060969062477, -11.210814158347064]
            • 0:28.915060969062477
            • 1:-11.210814158347064
        • properties: built
          • type:built
          • Map:50
      • 501: Feature (Point, 2 properties)
        • type:Feature
        • id:249531
        • geometry: Point (23.55, -6.11)
          • type:Point
          • coordinates: [23.55197237628789, -6.1110219986689245]
            • 0:23.55197237628789
            • 1:-6.1110219986689245
        • properties: built
          • type:built
          • Map:50

Ocean¶

In [43]:
# sample ocean polygon
ocean_pts = landcover.sample(
    region=ocean_feat,
    scale=1000,
    numPixels=800,
    seed=44,
    projection='EPSG:4326',
    geometries=True,
    dropNulls=False
)

# add a property "type" to the ocean_pts feature collection equal to "ocean"
ocean_pts = ocean_pts.map(lambda f: f.set('type', 'ocean'))

# export sample to geojson
geemap.ee_to_geojson(ocean_pts, 'data/dark_africa/ocean_pts2.geo.json')
In [44]:
# read in the ocean_pts
ocean_pts = geemap.geojson_to_ee('data/dark_africa/ocean_pts2.geo.json')
# add to map
m.addLayer(ocean_pts, {'color': 'blue'}, 'Ocean Points')
ocean_pts
Out[44]:
  • FeatureCollection (800 elements, 2 columns)
    • type:FeatureCollection
    • columns: String
      • type:String
      • system:index:String
    • features: List (800 elements)
      • 0: Feature (Point, 1 property)
        • type:Feature
        • id:0
        • geometry: Point (1.90, -6.86)
          • type:Point
          • coordinates: [1.8976781936109561, -6.860147141351567]
            • 0:1.8976781936109561
            • 1:-6.860147141351567
        • properties: ocean
          • type:ocean
      • 1: Feature (Point, 1 property)
        • type:Feature
        • id:1
        • geometry: Point (-6.85, -0.88)
          • type:Point
          • coordinates: [-6.845470713548079, -0.8807590441327804]
            • 0:-6.845470713548079
            • 1:-0.8807590441327804
        • properties: ocean
          • type:ocean
      • 2: Feature (Point, 1 property)
        • type:Feature
        • id:2
        • geometry: Point (-5.25, -0.72)
          • type:Point
          • coordinates: [-5.254299363949992, -0.7211507502033165]
            • 0:-5.254299363949992
            • 1:-0.7211507502033165
        • properties: ocean
          • type:ocean
      • 3: Feature (Point, 1 property)
        • type:Feature
        • id:3
        • geometry: Point (0.72, -7.97)
          • type:Point
          • coordinates: [0.7220924669577309, -7.970742806762298]
            • 0:0.7220924669577309
            • 1:-7.970742806762298
        • properties: ocean
          • type:ocean
      • 4: Feature (Point, 1 property)
        • type:Feature
        • id:4
        • geometry: Point (-5.59, 0.46)
          • type:Point
          • coordinates: [-5.593758525090523, 0.4613486161536147]
            • 0:-5.593758525090523
            • 1:0.4613486161536147
        • properties: ocean
          • type:ocean
      • 5: Feature (Point, 1 property)
        • type:Feature
        • id:5
        • geometry: Point (-14.98, -3.60)
          • type:Point
          • coordinates: [-14.978417182546801, -3.5977505548526296]
            • 0:-14.978417182546801
            • 1:-3.5977505548526296
        • properties: ocean
          • type:ocean
      • 6: Feature (Point, 1 property)
        • type:Feature
        • id:6
        • geometry: Point (4.72, -5.72)
          • type:Point
          • coordinates: [4.7194266217092125, -5.716864067614238]
            • 0:4.7194266217092125
            • 1:-5.716864067614238
        • properties: ocean
          • type:ocean
      • 7: Feature (Point, 1 property)
        • type:Feature
        • id:7
        • geometry: Point (-5.94, 2.00)
          • type:Point
          • coordinates: [-5.943480969721405, 2.0020365530180606]
            • 0:-5.943480969721405
            • 1:2.0020365530180606
        • properties: ocean
          • type:ocean
      • 8: Feature (Point, 1 property)
        • type:Feature
        • id:8
        • geometry: Point (2.66, -6.94)
          • type:Point
          • coordinates: [2.661162775341466, -6.938776318674966]
            • 0:2.661162775341466
            • 1:-6.938776318674966
        • properties: ocean
          • type:ocean
      • 9: Feature (Point, 1 property)
        • type:Feature
        • id:9
        • geometry: Point (1.86, -3.54)
          • type:Point
          • coordinates: [1.86130875186967, -3.5375928436923165]
            • 0:1.86130875186967
            • 1:-3.5375928436923165
        • properties: ocean
          • type:ocean
      • 10: Feature (Point, 1 property)
        • type:Feature
        • id:10
        • geometry: Point (-12.76, -4.14)
          • type:Point
          • coordinates: [-12.759818609560625, -4.139847469202656]
            • 0:-12.759818609560625
            • 1:-4.139847469202656
        • properties: ocean
          • type:ocean
      • 11: Feature (Point, 1 property)
        • type:Feature
        • id:11
        • geometry: Point (-7.45, 0.11)
          • type:Point
          • coordinates: [-7.453723522233851, 0.1076714806324472]
            • 0:-7.453723522233851
            • 1:0.1076714806324472
        • properties: ocean
          • type:ocean
      • 12: Feature (Point, 1 property)
        • type:Feature
        • id:12
        • geometry: Point (-11.22, -4.03)
          • type:Point
          • coordinates: [-11.22154347778856, -4.030983702829917]
            • 0:-11.22154347778856
            • 1:-4.030983702829917
        • properties: ocean
          • type:ocean
      • 13: Feature (Point, 1 property)
        • type:Feature
        • id:13
        • geometry: Point (2.98, 0.67)
          • type:Point
          • coordinates: [2.980888671915031, 0.6714964977812904]
            • 0:2.980888671915031
            • 1:0.6714964977812904
        • properties: ocean
          • type:ocean
      • 14: Feature (Point, 1 property)
        • type:Feature
        • id:14
        • geometry: Point (5.48, -4.93)
          • type:Point
          • coordinates: [5.483485274268455, -4.93314266402812]
            • 0:5.483485274268455
            • 1:-4.93314266402812
        • properties: ocean
          • type:ocean
      • 15: Feature (Point, 1 property)
        • type:Feature
        • id:15
        • geometry: Point (-9.69, 0.04)
          • type:Point
          • coordinates: [-9.685568782358253, 0.03879051562419372]
            • 0:-9.685568782358253
            • 1:0.03879051562419372
        • properties: ocean
          • type:ocean
      • 16: Feature (Point, 1 property)
        • type:Feature
        • id:16
        • geometry: Point (0.07, -8.28)
          • type:Point
          • coordinates: [0.0676739995792442, -8.282125777641088]
            • 0:0.0676739995792442
            • 1:-8.282125777641088
        • properties: ocean
          • type:ocean
      • 17: Feature (Point, 1 property)
        • type:Feature
        • id:17
        • geometry: Point (-0.33, -0.34)
          • type:Point
          • coordinates: [-0.3262481214602222, -0.34401571007789544]
            • 0:-0.3262481214602222
            • 1:-0.34401571007789544
        • properties: ocean
          • type:ocean
      • 18: Feature (Point, 1 property)
        • type:Feature
        • id:18
        • geometry: Point (-9.29, -7.64)
          • type:Point
          • coordinates: [-9.286831799241755, -7.64243745459677]
            • 0:-9.286831799241755
            • 1:-7.64243745459677
        • properties: ocean
          • type:ocean
      • 19: Feature (Point, 1 property)
        • type:Feature
        • id:19
        • geometry: Point (0.66, -2.77)
          • type:Point
          • coordinates: [0.6563151056735459, -2.7704785929800506]
            • 0:0.6563151056735459
            • 1:-2.7704785929800506
        • properties: ocean
          • type:ocean
      • 20: Feature (Point, 1 property)
        • type:Feature
        • id:20
        • geometry: Point (-9.10, -1.92)
          • type:Point
          • coordinates: [-9.100231998923478, -1.92031462806021]
            • 0:-9.100231998923478
            • 1:-1.92031462806021
        • properties: ocean
          • type:ocean
      • 21: Feature (Point, 1 property)
        • type:Feature
        • id:21
        • geometry: Point (-10.79, -6.88)
          • type:Point
          • coordinates: [-10.786291362198938, -6.881252189660858]
            • 0:-10.786291362198938
            • 1:-6.881252189660858
        • properties: ocean
          • type:ocean
      • 22: Feature (Point, 1 property)
        • type:Feature
        • id:22
        • geometry: Point (-0.21, -1.69)
          • type:Point
          • coordinates: [-0.20615536491897535, -1.6853137565753493]
            • 0:-0.20615536491897535
            • 1:-1.6853137565753493
        • properties: ocean
          • type:ocean
      • 23: Feature (Point, 1 property)
        • type:Feature
        • id:23
        • geometry: Point (-7.59, -7.10)
          • type:Point
          • coordinates: [-7.585789533073107, -7.097159599512525]
            • 0:-7.585789533073107
            • 1:-7.097159599512525
        • properties: ocean
          • type:ocean
      • 24: Feature (Point, 1 property)
        • type:Feature
        • id:24
        • geometry: Point (3.37, -2.54)
          • type:Point
          • coordinates: [3.3684475710117634, -2.5434594145193428]
            • 0:3.3684475710117634
            • 1:-2.5434594145193428
        • properties: ocean
          • type:ocean
      • 25: Feature (Point, 1 property)
        • type:Feature
        • id:25
        • geometry: Point (-0.98, 0.78)
          • type:Point
          • coordinates: [-0.9765913664561137, 0.7820952176008978]
            • 0:-0.9765913664561137
            • 1:0.7820952176008978
        • properties: ocean
          • type:ocean
      • 26: Feature (Point, 1 property)
        • type:Feature
        • id:26
        • geometry: Point (-2.43, -2.81)
          • type:Point
          • coordinates: [-2.4327841529053083, -2.813324570719414]
            • 0:-2.4327841529053083
            • 1:-2.813324570719414
        • properties: ocean
          • type:ocean
      • 27: Feature (Point, 1 property)
        • type:Feature
        • id:27
        • geometry: Point (-11.68, -5.81)
          • type:Point
          • coordinates: [-11.683518030140283, -5.805046453304221]
            • 0:-11.683518030140283
            • 1:-5.805046453304221
        • properties: ocean
          • type:ocean
      • 28: Feature (Point, 1 property)
        • type:Feature
        • id:28
        • geometry: Point (-13.12, -4.15)
          • type:Point
          • coordinates: [-13.118742180790191, -4.146344567922402]
            • 0:-13.118742180790191
            • 1:-4.146344567922402
        • properties: ocean
          • type:ocean
      • 29: Feature (Point, 1 property)
        • type:Feature
        • id:29
        • geometry: Point (-1.89, 1.93)
          • type:Point
          • coordinates: [-1.8943858131267788, 1.9313367767122955]
            • 0:-1.8943858131267788
            • 1:1.9313367767122955
        • properties: ocean
          • type:ocean
      • 30: Feature (Point, 1 property)
        • type:Feature
        • id:30
        • geometry: Point (-9.84, -7.92)
          • type:Point
          • coordinates: [-9.840607978927881, -7.920322873649874]
            • 0:-9.840607978927881
            • 1:-7.920322873649874
        • properties: ocean
          • type:ocean
      • 31: Feature (Point, 1 property)
        • type:Feature
        • id:31
        • geometry: Point (-5.85, 0.58)
          • type:Point
          • coordinates: [-5.852032157958891, 0.5820849430151175]
            • 0:-5.852032157958891
            • 1:0.5820849430151175
        • properties: ocean
          • type:ocean
      • 32: Feature (Point, 1 property)
        • type:Feature
        • id:32
        • geometry: Point (-2.35, -8.68)
          • type:Point
          • coordinates: [-2.351010495742129, -8.682804130757678]
            • 0:-2.351010495742129
            • 1:-8.682804130757678
        • properties: ocean
          • type:ocean
      • 33: Feature (Point, 1 property)
        • type:Feature
        • id:33
        • geometry: Point (-9.48, -6.62)
          • type:Point
          • coordinates: [-9.477981467312674, -6.621729467973601]
            • 0:-9.477981467312674
            • 1:-6.621729467973601
        • properties: ocean
          • type:ocean
      • 34: Feature (Point, 1 property)
        • type:Feature
        • id:34
        • geometry: Point (-7.29, 0.41)
          • type:Point
          • coordinates: [-7.292059140452686, 0.4097886356637461]
            • 0:-7.292059140452686
            • 1:0.4097886356637461
        • properties: ocean
          • type:ocean
      • 35: Feature (Point, 1 property)
        • type:Feature
        • id:35
        • geometry: Point (-2.82, -7.46)
          • type:Point
          • coordinates: [-2.8238185528870408, -7.456619386073729]
            • 0:-2.8238185528870408
            • 1:-7.456619386073729
        • properties: ocean
          • type:ocean
      • 36: Feature (Point, 1 property)
        • type:Feature
        • id:36
        • geometry: Point (-10.25, -1.25)
          • type:Point
          • coordinates: [-10.251532758813685, -1.2546026801945511]
            • 0:-10.251532758813685
            • 1:-1.2546026801945511
        • properties: ocean
          • type:ocean
      • 37: Feature (Point, 1 property)
        • type:Feature
        • id:37
        • geometry: Point (-14.13, -4.49)
          • type:Point
          • coordinates: [-14.129357961409621, -4.485924467727662]
            • 0:-14.129357961409621
            • 1:-4.485924467727662
        • properties: ocean
          • type:ocean
      • 38: Feature (Point, 1 property)
        • type:Feature
        • id:38
        • geometry: Point (-9.87, -5.50)
          • type:Point
          • coordinates: [-9.872754718373278, -5.4976905324277885]
            • 0:-9.872754718373278
            • 1:-5.4976905324277885
        • properties: ocean
          • type:ocean
      • 39: Feature (Point, 1 property)
        • type:Feature
        • id:39
        • geometry: Point (-0.10, -5.10)
          • type:Point
          • coordinates: [-0.09927951990150531, -5.098105905925057]
            • 0:-0.09927951990150531
            • 1:-5.098105905925057
        • properties: ocean
          • type:ocean
      • 40: Feature (Point, 1 property)
        • type:Feature
        • id:40
        • geometry: Point (1.29, -1.13)
          • type:Point
          • coordinates: [1.294403983772041, -1.126900852432725]
            • 0:1.294403983772041
            • 1:-1.126900852432725
        • properties: ocean
          • type:ocean
      • 41: Feature (Point, 1 property)
        • type:Feature
        • id:41
        • geometry: Point (0.75, 0.30)
          • type:Point
          • coordinates: [0.7501907925336644, 0.3028009564173769]
            • 0:0.7501907925336644
            • 1:0.3028009564173769
        • properties: ocean
          • type:ocean
      • 42: Feature (Point, 1 property)
        • type:Feature
        • id:42
        • geometry: Point (2.03, -8.06)
          • type:Point
          • coordinates: [2.0254815450123376, -8.055292331539205]
            • 0:2.0254815450123376
            • 1:-8.055292331539205
        • properties: ocean
          • type:ocean
      • 43: Feature (Point, 1 property)
        • type:Feature
        • id:43
        • geometry: Point (0.11, -5.86)
          • type:Point
          • coordinates: [0.10971596372454546, -5.85990024805747]
            • 0:0.10971596372454546
            • 1:-5.85990024805747
        • properties: ocean
          • type:ocean
      • 44: Feature (Point, 1 property)
        • type:Feature
        • id:44
        • geometry: Point (-5.44, 1.00)
          • type:Point
          • coordinates: [-5.439147214745567, 1.0003191347726088]
            • 0:-5.439147214745567
            • 1:1.0003191347726088
        • properties: ocean
          • type:ocean
      • 45: Feature (Point, 1 property)
        • type:Feature
        • id:45
        • geometry: Point (-10.11, -8.61)
          • type:Point
          • coordinates: [-10.110041669075056, -8.609107186017887]
            • 0:-10.110041669075056
            • 1:-8.609107186017887
        • properties: ocean
          • type:ocean
      • 46: Feature (Point, 1 property)
        • type:Feature
        • id:46
        • geometry: Point (-12.88, -7.78)
          • type:Point
          • coordinates: [-12.883674626991755, -7.782908639529334]
            • 0:-12.883674626991755
            • 1:-7.782908639529334
        • properties: ocean
          • type:ocean
      • 47: Feature (Point, 1 property)
        • type:Feature
        • id:47
        • geometry: Point (-0.44, -0.77)
          • type:Point
          • coordinates: [-0.440625673047498, -0.773040999049973]
            • 0:-0.440625673047498
            • 1:-0.773040999049973
        • properties: ocean
          • type:ocean
      • 48: Feature (Point, 1 property)
        • type:Feature
        • id:48
        • geometry: Point (-15.40, -2.74)
          • type:Point
          • coordinates: [-15.396656712327207, -2.74069283858927]
            • 0:-15.396656712327207
            • 1:-2.74069283858927
        • properties: ocean
          • type:ocean
      • 49: Feature (Point, 1 property)
        • type:Feature
        • id:49
        • geometry: Point (-12.21, -5.90)
          • type:Point
          • coordinates: [-12.208662848450418, -5.898054620216746]
            • 0:-12.208662848450418
            • 1:-5.898054620216746
        • properties: ocean
          • type:ocean
      • 50: Feature (Point, 1 property)
        • type:Feature
        • id:50
        • geometry: Point (5.61, -6.01)
          • type:Point
          • coordinates: [5.60931275359926, -6.0111150294062154]
            • 0:5.60931275359926
            • 1:-6.0111150294062154
        • properties: ocean
          • type:ocean
      • 51: Feature (Point, 1 property)
        • type:Feature
        • id:51
        • geometry: Point (-4.34, 1.14)
          • type:Point
          • coordinates: [-4.34257792695673, 1.1355569944153439]
            • 0:-4.34257792695673
            • 1:1.1355569944153439
        • properties: ocean
          • type:ocean
      • 52: Feature (Point, 1 property)
        • type:Feature
        • id:52
        • geometry: Point (0.99, -6.93)
          • type:Point
          • coordinates: [0.9859843680278622, -6.9301298758633605]
            • 0:0.9859843680278622
            • 1:-6.9301298758633605
        • properties: ocean
          • type:ocean
      • 53: Feature (Point, 1 property)
        • type:Feature
        • id:53
        • geometry: Point (3.65, -3.61)
          • type:Point
          • coordinates: [3.6456508078955245, -3.6136134851678263]
            • 0:3.6456508078955245
            • 1:-3.6136134851678263
        • properties: ocean
          • type:ocean
      • 54: Feature (Point, 1 property)
        • type:Feature
        • id:54
        • geometry: Point (-14.70, -8.05)
          • type:Point
          • coordinates: [-14.69763191062472, -8.0513694901709]
            • 0:-14.69763191062472
            • 1:-8.0513694901709
        • properties: ocean
          • type:ocean
      • 55: Feature (Point, 1 property)
        • type:Feature
        • id:55
        • geometry: Point (-3.24, -2.87)
          • type:Point
          • coordinates: [-3.2426213775688018, -2.871391416279025]
            • 0:-3.2426213775688018
            • 1:-2.871391416279025
        • properties: ocean
          • type:ocean
      • 56: Feature (Point, 1 property)
        • type:Feature
        • id:56
        • geometry: Point (0.45, -5.62)
          • type:Point
          • coordinates: [0.44836747578500724, -5.6156854646079255]
            • 0:0.44836747578500724
            • 1:-5.6156854646079255
        • properties: ocean
          • type:ocean
      • 57: Feature (Point, 1 property)
        • type:Feature
        • id:57
        • geometry: Point (-4.48, -0.84)
          • type:Point
          • coordinates: [-4.484596021243561, -0.8374503646506791]
            • 0:-4.484596021243561
            • 1:-0.8374503646506791
        • properties: ocean
          • type:ocean
      • 58: Feature (Point, 1 property)
        • type:Feature
        • id:58
        • geometry: Point (-3.84, 1.47)
          • type:Point
          • coordinates: [-3.8387260840804887, 1.4728303699049567]
            • 0:-3.8387260840804887
            • 1:1.4728303699049567
        • properties: ocean
          • type:ocean
      • 59: Feature (Point, 1 property)
        • type:Feature
        • id:59
        • geometry: Point (-7.52, -4.05)
          • type:Point
          • coordinates: [-7.522215746092042, -4.046368017133845]
            • 0:-7.522215746092042
            • 1:-4.046368017133845
        • properties: ocean
          • type:ocean
      • 60: Feature (Point, 1 property)
        • type:Feature
        • id:60
        • geometry: Point (-1.06, -1.90)
          • type:Point
          • coordinates: [-1.060903891584494, -1.8952122055521354]
            • 0:-1.060903891584494
            • 1:-1.8952122055521354
        • properties: ocean
          • type:ocean
      • 61: Feature (Point, 1 property)
        • type:Feature
        • id:61
        • geometry: Point (-10.85, -1.80)
          • type:Point
          • coordinates: [-10.847419206827414, -1.7955589337490454]
            • 0:-10.847419206827414
            • 1:-1.7955589337490454
        • properties: ocean
          • type:ocean
      • 62: Feature (Point, 1 property)
        • type:Feature
        • id:62
        • geometry: Point (2.84, -4.15)
          • type:Point
          • coordinates: [2.839178741819248, -4.146846753233579]
            • 0:2.839178741819248
            • 1:-4.146846753233579
        • properties: ocean
          • type:ocean
      • 63: Feature (Point, 1 property)
        • type:Feature
        • id:63
        • geometry: Point (3.56, -3.32)
          • type:Point
          • coordinates: [3.5570310286346056, -3.3155854307447568]
            • 0:3.5570310286346056
            • 1:-3.3155854307447568
        • properties: ocean
          • type:ocean
      • 64: Feature (Point, 1 property)
        • type:Feature
        • id:64
        • geometry: Point (-8.32, -2.12)
          • type:Point
          • coordinates: [-8.3206318469767, -2.1245160915071155]
            • 0:-8.3206318469767
            • 1:-2.1245160915071155
        • properties: ocean
          • type:ocean
      • 65: Feature (Point, 1 property)
        • type:Feature
        • id:65
        • geometry: Point (-3.63, -0.90)
          • type:Point
          • coordinates: [-3.6329690828257677, -0.9019148541604758]
            • 0:-3.6329690828257677
            • 1:-0.9019148541604758
        • properties: ocean
          • type:ocean
      • 66: Feature (Point, 1 property)
        • type:Feature
        • id:66
        • geometry: Point (-4.46, -2.68)
          • type:Point
          • coordinates: [-4.461692388151818, -2.6754564253095676]
            • 0:-4.461692388151818
            • 1:-2.6754564253095676
        • properties: ocean
          • type:ocean
      • 67: Feature (Point, 1 property)
        • type:Feature
        • id:67
        • geometry: Point (-11.24, 0.01)
          • type:Point
          • coordinates: [-11.235379234105627, 0.005853372981292557]
            • 0:-11.235379234105627
            • 1:0.005853372981292557
        • properties: ocean
          • type:ocean
      • 68: Feature (Point, 1 property)
        • type:Feature
        • id:68
        • geometry: Point (3.17, -4.99)
          • type:Point
          • coordinates: [3.174058591850077, -4.991560081455807]
            • 0:3.174058591850077
            • 1:-4.991560081455807
        • properties: ocean
          • type:ocean
      • 69: Feature (Point, 1 property)
        • type:Feature
        • id:69
        • geometry: Point (4.76, -4.25)
          • type:Point
          • coordinates: [4.763473716574866, -4.254123380433379]
            • 0:4.763473716574866
            • 1:-4.254123380433379
        • properties: ocean
          • type:ocean
      • 70: Feature (Point, 1 property)
        • type:Feature
        • id:70
        • geometry: Point (4.88, -7.72)
          • type:Point
          • coordinates: [4.877980492174656, -7.722598580202799]
            • 0:4.877980492174656
            • 1:-7.722598580202799
        • properties: ocean
          • type:ocean
      • 71: Feature (Point, 1 property)
        • type:Feature
        • id:71
        • geometry: Point (-10.51, -5.05)
          • type:Point
          • coordinates: [-10.50900699092955, -5.049945924494271]
            • 0:-10.50900699092955
            • 1:-5.049945924494271
        • properties: ocean
          • type:ocean
      • 72: Feature (Point, 1 property)
        • type:Feature
        • id:72
        • geometry: Point (-12.65, -3.92)
          • type:Point
          • coordinates: [-12.646479269761725, -3.918963132235592]
            • 0:-12.646479269761725
            • 1:-3.918963132235592
        • properties: ocean
          • type:ocean
      • 73: Feature (Point, 1 property)
        • type:Feature
        • id:73
        • geometry: Point (5.99, -4.11)
          • type:Point
          • coordinates: [5.985040393443983, -4.106266525115946]
            • 0:5.985040393443983
            • 1:-4.106266525115946
        • properties: ocean
          • type:ocean
      • 74: Feature (Point, 1 property)
        • type:Feature
        • id:74
        • geometry: Point (-1.81, -0.92)
          • type:Point
          • coordinates: [-1.8107798315328394, -0.9163178000952417]
            • 0:-1.8107798315328394
            • 1:-0.9163178000952417
        • properties: ocean
          • type:ocean
      • 75: Feature (Point, 1 property)
        • type:Feature
        • id:75
        • geometry: Point (-13.23, -5.47)
          • type:Point
          • coordinates: [-13.227210139685893, -5.472839926824624]
            • 0:-13.227210139685893
            • 1:-5.472839926824624
        • properties: ocean
          • type:ocean
      • 76: Feature (Point, 1 property)
        • type:Feature
        • id:76
        • geometry: Point (2.71, -1.75)
          • type:Point
          • coordinates: [2.7123545872418524, -1.7506128830897918]
            • 0:2.7123545872418524
            • 1:-1.7506128830897918
        • properties: ocean
          • type:ocean
      • 77: Feature (Point, 1 property)
        • type:Feature
        • id:77
        • geometry: Point (-2.54, -7.99)
          • type:Point
          • coordinates: [-2.5405112008266104, -7.989531022846472]
            • 0:-2.5405112008266104
            • 1:-7.989531022846472
        • properties: ocean
          • type:ocean
      • 78: Feature (Point, 1 property)
        • type:Feature
        • id:78
        • geometry: Point (1.51, -0.72)
          • type:Point
          • coordinates: [1.5135101955572756, -0.7214708390312029]
            • 0:1.5135101955572756
            • 1:-0.7214708390312029
        • properties: ocean
          • type:ocean
      • 79: Feature (Point, 1 property)
        • type:Feature
        • id:79
        • geometry: Point (-13.21, -1.83)
          • type:Point
          • coordinates: [-13.211489074546291, -1.830486929129871]
            • 0:-13.211489074546291
            • 1:-1.830486929129871
        • properties: ocean
          • type:ocean
      • 80: Feature (Point, 1 property)
        • type:Feature
        • id:80
        • geometry: Point (-10.90, -5.08)
          • type:Point
          • coordinates: [-10.898549601924824, -5.082231042492394]
            • 0:-10.898549601924824
            • 1:-5.082231042492394
        • properties: ocean
          • type:ocean
      • 81: Feature (Point, 1 property)
        • type:Feature
        • id:81
        • geometry: Point (-12.67, -4.41)
          • type:Point
          • coordinates: [-12.671028126745354, -4.411951530417943]
            • 0:-12.671028126745354
            • 1:-4.411951530417943
        • properties: ocean
          • type:ocean
      • 82: Feature (Point, 1 property)
        • type:Feature
        • id:82
        • geometry: Point (-14.62, -0.73)
          • type:Point
          • coordinates: [-14.623755059460851, -0.7297094209709762]
            • 0:-14.623755059460851
            • 1:-0.7297094209709762
        • properties: ocean
          • type:ocean
      • 83: Feature (Point, 1 property)
        • type:Feature
        • id:83
        • geometry: Point (-2.35, -2.40)
          • type:Point
          • coordinates: [-2.348530251792514, -2.3997580137078485]
            • 0:-2.348530251792514
            • 1:-2.3997580137078485
        • properties: ocean
          • type:ocean
      • 84: Feature (Point, 1 property)
        • type:Feature
        • id:84
        • geometry: Point (1.04, -3.10)
          • type:Point
          • coordinates: [1.0369546307475972, -3.102750776326394]
            • 0:1.0369546307475972
            • 1:-3.102750776326394
        • properties: ocean
          • type:ocean
      • 85: Feature (Point, 1 property)
        • type:Feature
        • id:85
        • geometry: Point (3.22, -0.60)
          • type:Point
          • coordinates: [3.2240591630603217, -0.6026881218888918]
            • 0:3.2240591630603217
            • 1:-0.6026881218888918
        • properties: ocean
          • type:ocean
      • 86: Feature (Point, 1 property)
        • type:Feature
        • id:86
        • geometry: Point (4.54, -5.95)
          • type:Point
          • coordinates: [4.539756973224657, -5.945290717778378]
            • 0:4.539756973224657
            • 1:-5.945290717778378
        • properties: ocean
          • type:ocean
      • 87: Feature (Point, 1 property)
        • type:Feature
        • id:87
        • geometry: Point (-9.81, -7.27)
          • type:Point
          • coordinates: [-9.805297639383273, -7.269562043881521]
            • 0:-9.805297639383273
            • 1:-7.269562043881521
        • properties: ocean
          • type:ocean
      • 88: Feature (Point, 1 property)
        • type:Feature
        • id:88
        • geometry: Point (-8.93, 1.49)
          • type:Point
          • coordinates: [-8.934105228751973, 1.4890818032084314]
            • 0:-8.934105228751973
            • 1:1.4890818032084314
        • properties: ocean
          • type:ocean
      • 89: Feature (Point, 1 property)
        • type:Feature
        • id:89
        • geometry: Point (1.58, -1.84)
          • type:Point
          • coordinates: [1.5813657982961844, -1.8422588426389215]
            • 0:1.5813657982961844
            • 1:-1.8422588426389215
        • properties: ocean
          • type:ocean
      • 90: Feature (Point, 1 property)
        • type:Feature
        • id:90
        • geometry: Point (-8.61, -7.54)
          • type:Point
          • coordinates: [-8.611437690255949, -7.535110545691998]
            • 0:-8.611437690255949
            • 1:-7.535110545691998
        • properties: ocean
          • type:ocean
      • 91: Feature (Point, 1 property)
        • type:Feature
        • id:91
        • geometry: Point (-12.17, -3.17)
          • type:Point
          • coordinates: [-12.170872635747182, -3.172836917279048]
            • 0:-12.170872635747182
            • 1:-3.172836917279048
        • properties: ocean
          • type:ocean
      • 92: Feature (Point, 1 property)
        • type:Feature
        • id:92
        • geometry: Point (5.44, -6.33)
          • type:Point
          • coordinates: [5.437805113645997, -6.326797268869278]
            • 0:5.437805113645997
            • 1:-6.326797268869278
        • properties: ocean
          • type:ocean
      • 93: Feature (Point, 1 property)
        • type:Feature
        • id:93
        • geometry: Point (3.06, -7.27)
          • type:Point
          • coordinates: [3.0618293139876367, -7.271857443243439]
            • 0:3.0618293139876367
            • 1:-7.271857443243439
        • properties: ocean
          • type:ocean
      • 94: Feature (Point, 1 property)
        • type:Feature
        • id:94
        • geometry: Point (-11.34, -2.93)
          • type:Point
          • coordinates: [-11.344627138594165, -2.9332353622078067]
            • 0:-11.344627138594165
            • 1:-2.9332353622078067
        • properties: ocean
          • type:ocean
      • 95: Feature (Point, 1 property)
        • type:Feature
        • id:95
        • geometry: Point (3.89, -4.56)
          • type:Point
          • coordinates: [3.8912917694810742, -4.561374541767847]
            • 0:3.8912917694810742
            • 1:-4.561374541767847
        • properties: ocean
          • type:ocean
      • 96: Feature (Point, 1 property)
        • type:Feature
        • id:96
        • geometry: Point (3.23, -6.19)
          • type:Point
          • coordinates: [3.234714169701507, -6.185256661848514]
            • 0:3.234714169701507
            • 1:-6.185256661848514
        • properties: ocean
          • type:ocean
      • 97: Feature (Point, 1 property)
        • type:Feature
        • id:97
        • geometry: Point (1.17, -4.44)
          • type:Point
          • coordinates: [1.174959881270421, -4.441340447187308]
            • 0:1.174959881270421
            • 1:-4.441340447187308
        • properties: ocean
          • type:ocean
      • 98: Feature (Point, 1 property)
        • type:Feature
        • id:98
        • geometry: Point (-7.87, -2.25)
          • type:Point
          • coordinates: [-7.872780155415496, -2.2538452901888406]
            • 0:-7.872780155415496
            • 1:-2.2538452901888406
        • properties: ocean
          • type:ocean
      • 99: Feature (Point, 1 property)
        • type:Feature
        • id:99
        • geometry: Point (-0.95, 0.92)
          • type:Point
          • coordinates: [-0.9518530175518788, 0.9210699054937296]
            • 0:-0.9518530175518788
            • 1:0.9210699054937296
        • properties: ocean
          • type:ocean
      • 100: Feature (Point, 1 property)
        • type:Feature
        • id:100
        • geometry: Point (-6.78, -8.36)
          • type:Point
          • coordinates: [-6.783555553798805, -8.355514714963336]
            • 0:-6.783555553798805
            • 1:-8.355514714963336
        • properties: ocean
          • type:ocean
      • 101: Feature (Point, 1 property)
        • type:Feature
        • id:101
        • geometry: Point (-9.60, -5.43)
          • type:Point
          • coordinates: [-9.60468844677235, -5.4281975476470015]
            • 0:-9.60468844677235
            • 1:-5.4281975476470015
        • properties: ocean
          • type:ocean
      • 102: Feature (Point, 1 property)
        • type:Feature
        • id:102
        • geometry: Point (-0.37, -0.89)
          • type:Point
          • coordinates: [-0.3652278577579622, -0.8878245572963394]
            • 0:-0.3652278577579622
            • 1:-0.8878245572963394
        • properties: ocean
          • type:ocean
      • 103: Feature (Point, 1 property)
        • type:Feature
        • id:103
        • geometry: Point (-9.59, 1.18)
          • type:Point
          • coordinates: [-9.588220886951756, 1.184661362441539]
            • 0:-9.588220886951756
            • 1:1.184661362441539
        • properties: ocean
          • type:ocean
      • 104: Feature (Point, 1 property)
        • type:Feature
        • id:104
        • geometry: Point (-12.94, -7.02)
          • type:Point
          • coordinates: [-12.941565490249477, -7.018701372155896]
            • 0:-12.941565490249477
            • 1:-7.018701372155896
        • properties: ocean
          • type:ocean
      • 105: Feature (Point, 1 property)
        • type:Feature
        • id:105
        • geometry: Point (-0.34, -0.52)
          • type:Point
          • coordinates: [-0.3415826788679872, -0.5244929437374483]
            • 0:-0.3415826788679872
            • 1:-0.5244929437374483
        • properties: ocean
          • type:ocean
      • 106: Feature (Point, 1 property)
        • type:Feature
        • id:106
        • geometry: Point (0.62, -6.56)
          • type:Point
          • coordinates: [0.616238662586535, -6.5587133585721205]
            • 0:0.616238662586535
            • 1:-6.5587133585721205
        • properties: ocean
          • type:ocean
      • 107: Feature (Point, 1 property)
        • type:Feature
        • id:107
        • geometry: Point (-2.98, -4.12)
          • type:Point
          • coordinates: [-2.980384126537266, -4.120134049518461]
            • 0:-2.980384126537266
            • 1:-4.120134049518461
        • properties: ocean
          • type:ocean
      • 108: Feature (Point, 1 property)
        • type:Feature
        • id:108
        • geometry: Point (-6.02, -5.85)
          • type:Point
          • coordinates: [-6.019779644214668, -5.8490722399412745]
            • 0:-6.019779644214668
            • 1:-5.8490722399412745
        • properties: ocean
          • type:ocean
      • 109: Feature (Point, 1 property)
        • type:Feature
        • id:109
        • geometry: Point (-2.90, -3.28)
          • type:Point
          • coordinates: [-2.904049115491782, -3.2808469515087357]
            • 0:-2.904049115491782
            • 1:-3.2808469515087357
        • properties: ocean
          • type:ocean
      • 110: Feature (Point, 1 property)
        • type:Feature
        • id:110
        • geometry: Point (-0.30, 0.80)
          • type:Point
          • coordinates: [-0.3022462271848515, 0.7976157902916912]
            • 0:-0.3022462271848515
            • 1:0.7976157902916912
        • properties: ocean
          • type:ocean
      • 111: Feature (Point, 1 property)
        • type:Feature
        • id:111
        • geometry: Point (-13.32, -3.71)
          • type:Point
          • coordinates: [-13.320102585970215, -3.713401105745046]
            • 0:-13.320102585970215
            • 1:-3.713401105745046
        • properties: ocean
          • type:ocean
      • 112: Feature (Point, 1 property)
        • type:Feature
        • id:112
        • geometry: Point (-4.19, -0.62)
          • type:Point
          • coordinates: [-4.1887141081582415, -0.6174708489851101]
            • 0:-4.1887141081582415
            • 1:-0.6174708489851101
        • properties: ocean
          • type:ocean
      • 113: Feature (Point, 1 property)
        • type:Feature
        • id:113
        • geometry: Point (-4.46, -6.12)
          • type:Point
          • coordinates: [-4.461394923723827, -6.11799866144235]
            • 0:-4.461394923723827
            • 1:-6.11799866144235
        • properties: ocean
          • type:ocean
      • 114: Feature (Point, 1 property)
        • type:Feature
        • id:114
        • geometry: Point (-9.22, -6.16)
          • type:Point
          • coordinates: [-9.219106105333152, -6.158950486978542]
            • 0:-9.219106105333152
            • 1:-6.158950486978542
        • properties: ocean
          • type:ocean
      • 115: Feature (Point, 1 property)
        • type:Feature
        • id:115
        • geometry: Point (-6.39, 2.29)
          • type:Point
          • coordinates: [-6.391591689563106, 2.285418243991859]
            • 0:-6.391591689563106
            • 1:2.285418243991859
        • properties: ocean
          • type:ocean
      • 116: Feature (Point, 1 property)
        • type:Feature
        • id:116
        • geometry: Point (2.22, 1.18)
          • type:Point
          • coordinates: [2.2240726277152247, 1.1788545954862186]
            • 0:2.2240726277152247
            • 1:1.1788545954862186
        • properties: ocean
          • type:ocean
      • 117: Feature (Point, 1 property)
        • type:Feature
        • id:117
        • geometry: Point (0.78, -5.80)
          • type:Point
          • coordinates: [0.7820484696182626, -5.7963517064872825]
            • 0:0.7820484696182626
            • 1:-5.7963517064872825
        • properties: ocean
          • type:ocean
      • 118: Feature (Point, 1 property)
        • type:Feature
        • id:118
        • geometry: Point (-12.11, -4.88)
          • type:Point
          • coordinates: [-12.112623343150844, -4.881568973282391]
            • 0:-12.112623343150844
            • 1:-4.881568973282391
        • properties: ocean
          • type:ocean
      • 119: Feature (Point, 1 property)
        • type:Feature
        • id:119
        • geometry: Point (-7.37, -4.48)
          • type:Point
          • coordinates: [-7.372176424771432, -4.476875300059864]
            • 0:-7.372176424771432
            • 1:-4.476875300059864
        • properties: ocean
          • type:ocean
      • 120: Feature (Point, 1 property)
        • type:Feature
        • id:120
        • geometry: Point (-6.81, -5.21)
          • type:Point
          • coordinates: [-6.808333087478576, -5.208619165618535]
            • 0:-6.808333087478576
            • 1:-5.208619165618535
        • properties: ocean
          • type:ocean
      • 121: Feature (Point, 1 property)
        • type:Feature
        • id:121
        • geometry: Point (-10.11, -2.16)
          • type:Point
          • coordinates: [-10.105236747854372, -2.158804984282929]
            • 0:-10.105236747854372
            • 1:-2.158804984282929
        • properties: ocean
          • type:ocean
      • 122: Feature (Point, 1 property)
        • type:Feature
        • id:122
        • geometry: Point (-15.47, -1.37)
          • type:Point
          • coordinates: [-15.470764662192437, -1.3653821474120735]
            • 0:-15.470764662192437
            • 1:-1.3653821474120735
        • properties: ocean
          • type:ocean
      • 123: Feature (Point, 1 property)
        • type:Feature
        • id:123
        • geometry: Point (-12.00, -6.76)
          • type:Point
          • coordinates: [-12.003754724239668, -6.7626359153499935]
            • 0:-12.003754724239668
            • 1:-6.7626359153499935
        • properties: ocean
          • type:ocean
      • 124: Feature (Point, 1 property)
        • type:Feature
        • id:124
        • geometry: Point (0.21, 1.70)
          • type:Point
          • coordinates: [0.20847664506204233, 1.7001439063160133]
            • 0:0.20847664506204233
            • 1:1.7001439063160133
        • properties: ocean
          • type:ocean
      • 125: Feature (Point, 1 property)
        • type:Feature
        • id:125
        • geometry: Point (-2.38, -4.89)
          • type:Point
          • coordinates: [-2.3786562351351503, -4.890896131469051]
            • 0:-2.3786562351351503
            • 1:-4.890896131469051
        • properties: ocean
          • type:ocean
      • 126: Feature (Point, 1 property)
        • type:Feature
        • id:126
        • geometry: Point (2.41, -7.20)
          • type:Point
          • coordinates: [2.410875025645815, -7.19995125054124]
            • 0:2.410875025645815
            • 1:-7.19995125054124
        • properties: ocean
          • type:ocean
      • 127: Feature (Point, 1 property)
        • type:Feature
        • id:127
        • geometry: Point (-12.53, -3.77)
          • type:Point
          • coordinates: [-12.531508491161754, -3.7655447159201922]
            • 0:-12.531508491161754
            • 1:-3.7655447159201922
        • properties: ocean
          • type:ocean
      • 128: Feature (Point, 1 property)
        • type:Feature
        • id:128
        • geometry: Point (-1.77, -8.69)
          • type:Point
          • coordinates: [-1.7703037835843878, -8.688123847807837]
            • 0:-1.7703037835843878
            • 1:-8.688123847807837
        • properties: ocean
          • type:ocean
      • 129: Feature (Point, 1 property)
        • type:Feature
        • id:129
        • geometry: Point (0.18, -2.71)
          • type:Point
          • coordinates: [0.17894661691092573, -2.7104004397624597]
            • 0:0.17894661691092573
            • 1:-2.7104004397624597
        • properties: ocean
          • type:ocean
      • 130: Feature (Point, 1 property)
        • type:Feature
        • id:130
        • geometry: Point (-10.80, 1.25)
          • type:Point
          • coordinates: [-10.80114112343949, 1.2506697982838935]
            • 0:-10.80114112343949
            • 1:1.2506697982838935
        • properties: ocean
          • type:ocean
      • 131: Feature (Point, 1 property)
        • type:Feature
        • id:131
        • geometry: Point (-9.83, -4.65)
          • type:Point
          • coordinates: [-9.833198146373562, -4.651646098280682]
            • 0:-9.833198146373562
            • 1:-4.651646098280682
        • properties: ocean
          • type:ocean
      • 132: Feature (Point, 1 property)
        • type:Feature
        • id:132
        • geometry: Point (-3.07, -3.88)
          • type:Point
          • coordinates: [-3.068932496957954, -3.878988611712441]
            • 0:-3.068932496957954
            • 1:-3.878988611712441
        • properties: ocean
          • type:ocean
      • 133: Feature (Point, 1 property)
        • type:Feature
        • id:133
        • geometry: Point (-14.00, -7.88)
          • type:Point
          • coordinates: [-13.997287905140684, -7.876218858118671]
            • 0:-13.997287905140684
            • 1:-7.876218858118671
        • properties: ocean
          • type:ocean
      • 134: Feature (Point, 1 property)
        • type:Feature
        • id:134
        • geometry: Point (-10.53, -7.92)
          • type:Point
          • coordinates: [-10.528623955889785, -7.919070360111609]
            • 0:-10.528623955889785
            • 1:-7.919070360111609
        • properties: ocean
          • type:ocean
      • 135: Feature (Point, 1 property)
        • type:Feature
        • id:135
        • geometry: Point (1.66, 0.50)
          • type:Point
          • coordinates: [1.6635808975591366, 0.4965797194026611]
            • 0:1.6635808975591366
            • 1:0.4965797194026611
        • properties: ocean
          • type:ocean
      • 136: Feature (Point, 1 property)
        • type:Feature
        • id:136
        • geometry: Point (-9.23, -2.74)
          • type:Point
          • coordinates: [-9.232491666366567, -2.7373225231065947]
            • 0:-9.232491666366567
            • 1:-2.7373225231065947
        • properties: ocean
          • type:ocean
      • 137: Feature (Point, 1 property)
        • type:Feature
        • id:137
        • geometry: Point (-0.13, -5.80)
          • type:Point
          • coordinates: [-0.13461175024942215, -5.801405044386391]
            • 0:-0.13461175024942215
            • 1:-5.801405044386391
        • properties: ocean
          • type:ocean
      • 138: Feature (Point, 1 property)
        • type:Feature
        • id:138
        • geometry: Point (-4.80, -6.42)
          • type:Point
          • coordinates: [-4.799236476656166, -6.419015667878358]
            • 0:-4.799236476656166
            • 1:-6.419015667878358
        • properties: ocean
          • type:ocean
      • 139: Feature (Point, 1 property)
        • type:Feature
        • id:139
        • geometry: Point (-13.92, -4.95)
          • type:Point
          • coordinates: [-13.923076627541832, -4.95317649940898]
            • 0:-13.923076627541832
            • 1:-4.95317649940898
        • properties: ocean
          • type:ocean
      • 140: Feature (Point, 1 property)
        • type:Feature
        • id:140
        • geometry: Point (-13.24, 0.74)
          • type:Point
          • coordinates: [-13.243368024008069, 0.7364601380765541]
            • 0:-13.243368024008069
            • 1:0.7364601380765541
        • properties: ocean
          • type:ocean
      • 141: Feature (Point, 1 property)
        • type:Feature
        • id:141
        • geometry: Point (2.19, -1.37)
          • type:Point
          • coordinates: [2.1937620719962068, -1.3668705481404884]
            • 0:2.1937620719962068
            • 1:-1.3668705481404884
        • properties: ocean
          • type:ocean
      • 142: Feature (Point, 1 property)
        • type:Feature
        • id:142
        • geometry: Point (-2.37, -5.86)
          • type:Point
          • coordinates: [-2.3743912963578215, -5.8570110730176586]
            • 0:-2.3743912963578215
            • 1:-5.8570110730176586
        • properties: ocean
          • type:ocean
      • 143: Feature (Point, 1 property)
        • type:Feature
        • id:143
        • geometry: Point (-4.68, 1.51)
          • type:Point
          • coordinates: [-4.681367927053341, 1.5050763298650518]
            • 0:-4.681367927053341
            • 1:1.5050763298650518
        • properties: ocean
          • type:ocean
      • 144: Feature (Point, 1 property)
        • type:Feature
        • id:144
        • geometry: Point (-8.82, -7.65)
          • type:Point
          • coordinates: [-8.815056593814095, -7.6478599757068455]
            • 0:-8.815056593814095
            • 1:-7.6478599757068455
        • properties: ocean
          • type:ocean
      • 145: Feature (Point, 1 property)
        • type:Feature
        • id:145
        • geometry: Point (-3.52, -0.16)
          • type:Point
          • coordinates: [-3.5171658933687104, -0.16483508045844572]
            • 0:-3.5171658933687104
            • 1:-0.16483508045844572
        • properties: ocean
          • type:ocean
      • 146: Feature (Point, 1 property)
        • type:Feature
        • id:146
        • geometry: Point (-3.53, -3.90)
          • type:Point
          • coordinates: [-3.5304295362379294, -3.8953133726540545]
            • 0:-3.5304295362379294
            • 1:-3.8953133726540545
        • properties: ocean
          • type:ocean
      • 147: Feature (Point, 1 property)
        • type:Feature
        • id:147
        • geometry: Point (3.62, -6.88)
          • type:Point
          • coordinates: [3.623470303730241, -6.881217198001882]
            • 0:3.623470303730241
            • 1:-6.881217198001882
        • properties: ocean
          • type:ocean
      • 148: Feature (Point, 1 property)
        • type:Feature
        • id:148
        • geometry: Point (-5.52, -2.06)
          • type:Point
          • coordinates: [-5.51654327544784, -2.061323121740319]
            • 0:-5.51654327544784
            • 1:-2.061323121740319
        • properties: ocean
          • type:ocean
      • 149: Feature (Point, 1 property)
        • type:Feature
        • id:149
        • geometry: Point (-1.24, -3.33)
          • type:Point
          • coordinates: [-1.2439503673310044, -3.326386132708231]
            • 0:-1.2439503673310044
            • 1:-3.326386132708231
        • properties: ocean
          • type:ocean
      • 150: Feature (Point, 1 property)
        • type:Feature
        • id:150
        • geometry: Point (-13.18, -3.97)
          • type:Point
          • coordinates: [-13.178871998612225, -3.9670664544251077]
            • 0:-13.178871998612225
            • 1:-3.9670664544251077
        • properties: ocean
          • type:ocean
      • 151: Feature (Point, 1 property)
        • type:Feature
        • id:151
        • geometry: Point (2.03, -2.34)
          • type:Point
          • coordinates: [2.027539240672806, -2.3428238072414715]
            • 0:2.027539240672806
            • 1:-2.3428238072414715
        • properties: ocean
          • type:ocean
      • 152: Feature (Point, 1 property)
        • type:Feature
        • id:152
        • geometry: Point (-10.36, -7.09)
          • type:Point
          • coordinates: [-10.361485582808944, -7.088184402897265]
            • 0:-10.361485582808944
            • 1:-7.088184402897265
        • properties: ocean
          • type:ocean
      • 153: Feature (Point, 1 property)
        • type:Feature
        • id:153
        • geometry: Point (-9.95, -3.82)
          • type:Point
          • coordinates: [-9.945236160047376, -3.823816407113254]
            • 0:-9.945236160047376
            • 1:-3.823816407113254
        • properties: ocean
          • type:ocean
      • 154: Feature (Point, 1 property)
        • type:Feature
        • id:154
        • geometry: Point (-5.89, -2.82)
          • type:Point
          • coordinates: [-5.889472439750374, -2.8246183767512996]
            • 0:-5.889472439750374
            • 1:-2.8246183767512996
        • properties: ocean
          • type:ocean
      • 155: Feature (Point, 1 property)
        • type:Feature
        • id:155
        • geometry: Point (-7.02, -0.67)
          • type:Point
          • coordinates: [-7.015551979314013, -0.6673154608292668]
            • 0:-7.015551979314013
            • 1:-0.6673154608292668
        • properties: ocean
          • type:ocean
      • 156: Feature (Point, 1 property)
        • type:Feature
        • id:156
        • geometry: Point (0.11, -5.74)
          • type:Point
          • coordinates: [0.11054375735640892, -5.736223767676691]
            • 0:0.11054375735640892
            • 1:-5.736223767676691
        • properties: ocean
          • type:ocean
      • 157: Feature (Point, 1 property)
        • type:Feature
        • id:157
        • geometry: Point (-10.13, -0.13)
          • type:Point
          • coordinates: [-10.129651349291104, -0.13298551276578183]
            • 0:-10.129651349291104
            • 1:-0.13298551276578183
        • properties: ocean
          • type:ocean
      • 158: Feature (Point, 1 property)
        • type:Feature
        • id:158
        • geometry: Point (-3.64, -6.78)
          • type:Point
          • coordinates: [-3.6357761831756115, -6.781350677935596]
            • 0:-3.6357761831756115
            • 1:-6.781350677935596
        • properties: ocean
          • type:ocean
      • 159: Feature (Point, 1 property)
        • type:Feature
        • id:159
        • geometry: Point (0.89, -6.63)
          • type:Point
          • coordinates: [0.8904229771475755, -6.631886609212554]
            • 0:0.8904229771475755
            • 1:-6.631886609212554
        • properties: ocean
          • type:ocean
      • 160: Feature (Point, 1 property)
        • type:Feature
        • id:160
        • geometry: Point (-10.35, -4.80)
          • type:Point
          • coordinates: [-10.35444510471099, -4.804975072363901]
            • 0:-10.35444510471099
            • 1:-4.804975072363901
        • properties: ocean
          • type:ocean
      • 161: Feature (Point, 1 property)
        • type:Feature
        • id:161
        • geometry: Point (-4.81, -5.84)
          • type:Point
          • coordinates: [-4.806945419065043, -5.839649790446602]
            • 0:-4.806945419065043
            • 1:-5.839649790446602
        • properties: ocean
          • type:ocean
      • 162: Feature (Point, 1 property)
        • type:Feature
        • id:162
        • geometry: Point (2.03, 1.33)
          • type:Point
          • coordinates: [2.029004761475438, 1.3256165919744918]
            • 0:2.029004761475438
            • 1:1.3256165919744918
        • properties: ocean
          • type:ocean
      • 163: Feature (Point, 1 property)
        • type:Feature
        • id:163
        • geometry: Point (-3.99, -0.72)
          • type:Point
          • coordinates: [-3.98729924233657, -0.7150837272235792]
            • 0:-3.98729924233657
            • 1:-0.7150837272235792
        • properties: ocean
          • type:ocean
      • 164: Feature (Point, 1 property)
        • type:Feature
        • id:164
        • geometry: Point (-0.24, -4.07)
          • type:Point
          • coordinates: [-0.2442993386713275, -4.068630865731483]
            • 0:-0.2442993386713275
            • 1:-4.068630865731483
        • properties: ocean
          • type:ocean
      • 165: Feature (Point, 1 property)
        • type:Feature
        • id:165
        • geometry: Point (-10.27, -6.21)
          • type:Point
          • coordinates: [-10.272775419094371, -6.21117837603412]
            • 0:-10.272775419094371
            • 1:-6.21117837603412
        • properties: ocean
          • type:ocean
      • 166: Feature (Point, 1 property)
        • type:Feature
        • id:166
        • geometry: Point (-11.24, 1.81)
          • type:Point
          • coordinates: [-11.24370978825115, 1.8082158685361063]
            • 0:-11.24370978825115
            • 1:1.8082158685361063
        • properties: ocean
          • type:ocean
      • 167: Feature (Point, 1 property)
        • type:Feature
        • id:167
        • geometry: Point (-13.43, -0.34)
          • type:Point
          • coordinates: [-13.429188833756507, -0.3388514997398947]
            • 0:-13.429188833756507
            • 1:-0.3388514997398947
        • properties: ocean
          • type:ocean
      • 168: Feature (Point, 1 property)
        • type:Feature
        • id:168
        • geometry: Point (-1.29, 0.49)
          • type:Point
          • coordinates: [-1.2892745639564596, 0.4907935187412209]
            • 0:-1.2892745639564596
            • 1:0.4907935187412209
        • properties: ocean
          • type:ocean
      • 169: Feature (Point, 1 property)
        • type:Feature
        • id:169
        • geometry: Point (-10.69, -3.90)
          • type:Point
          • coordinates: [-10.694025603897135, -3.8987346874528925]
            • 0:-10.694025603897135
            • 1:-3.8987346874528925
        • properties: ocean
          • type:ocean
      • 170: Feature (Point, 1 property)
        • type:Feature
        • id:170
        • geometry: Point (-7.99, -3.99)
          • type:Point
          • coordinates: [-7.990400829017317, -3.991686093697574]
            • 0:-7.990400829017317
            • 1:-3.991686093697574
        • properties: ocean
          • type:ocean
      • 171: Feature (Point, 1 property)
        • type:Feature
        • id:171
        • geometry: Point (4.19, -7.16)
          • type:Point
          • coordinates: [4.190941094502881, -7.1554671457092205]
            • 0:4.190941094502881
            • 1:-7.1554671457092205
        • properties: ocean
          • type:ocean
      • 172: Feature (Point, 1 property)
        • type:Feature
        • id:172
        • geometry: Point (0.19, -7.76)
          • type:Point
          • coordinates: [0.19127237929492363, -7.760934494105745]
            • 0:0.19127237929492363
            • 1:-7.760934494105745
        • properties: ocean
          • type:ocean
      • 173: Feature (Point, 1 property)
        • type:Feature
        • id:173
        • geometry: Point (-8.24, 0.84)
          • type:Point
          • coordinates: [-8.235339724409815, 0.8432872624897958]
            • 0:-8.235339724409815
            • 1:0.8432872624897958
        • properties: ocean
          • type:ocean
      • 174: Feature (Point, 1 property)
        • type:Feature
        • id:174
        • geometry: Point (-10.11, -3.68)
          • type:Point
          • coordinates: [-10.110140931603615, -3.6839210115980516]
            • 0:-10.110140931603615
            • 1:-3.6839210115980516
        • properties: ocean
          • type:ocean
      • 175: Feature (Point, 1 property)
        • type:Feature
        • id:175
        • geometry: Point (-1.17, -6.35)
          • type:Point
          • coordinates: [-1.1734340701917798, -6.352093004842416]
            • 0:-1.1734340701917798
            • 1:-6.352093004842416
        • properties: ocean
          • type:ocean
      • 176: Feature (Point, 1 property)
        • type:Feature
        • id:176
        • geometry: Point (-1.20, -8.58)
          • type:Point
          • coordinates: [-1.1989401088039675, -8.575275648697398]
            • 0:-1.1989401088039675
            • 1:-8.575275648697398
        • properties: ocean
          • type:ocean
      • 177: Feature (Point, 1 property)
        • type:Feature
        • id:177
        • geometry: Point (2.57, -4.35)
          • type:Point
          • coordinates: [2.5683835924292513, -4.347791804120864]
            • 0:2.5683835924292513
            • 1:-4.347791804120864
        • properties: ocean
          • type:ocean
      • 178: Feature (Point, 1 property)
        • type:Feature
        • id:178
        • geometry: Point (1.81, -1.95)
          • type:Point
          • coordinates: [1.805691916177644, -1.9472409242274789]
            • 0:1.805691916177644
            • 1:-1.9472409242274789
        • properties: ocean
          • type:ocean
      • 179: Feature (Point, 1 property)
        • type:Feature
        • id:179
        • geometry: Point (1.96, 1.57)
          • type:Point
          • coordinates: [1.9582743928303183, 1.5721441796082831]
            • 0:1.9582743928303183
            • 1:1.5721441796082831
        • properties: ocean
          • type:ocean
      • 180: Feature (Point, 1 property)
        • type:Feature
        • id:180
        • geometry: Point (-1.91, -0.73)
          • type:Point
          • coordinates: [-1.9103662908222487, -0.7290616262783275]
            • 0:-1.9103662908222487
            • 1:-0.7290616262783275
        • properties: ocean
          • type:ocean
      • 181: Feature (Point, 1 property)
        • type:Feature
        • id:181
        • geometry: Point (-0.34, -7.87)
          • type:Point
          • coordinates: [-0.3446047849216233, -7.86945698617428]
            • 0:-0.3446047849216233
            • 1:-7.86945698617428
        • properties: ocean
          • type:ocean
      • 182: Feature (Point, 1 property)
        • type:Feature
        • id:182
        • geometry: Point (-6.51, -3.01)
          • type:Point
          • coordinates: [-6.509623995933316, -3.0059945234503274]
            • 0:-6.509623995933316
            • 1:-3.0059945234503274
        • properties: ocean
          • type:ocean
      • 183: Feature (Point, 1 property)
        • type:Feature
        • id:183
        • geometry: Point (-1.80, 1.30)
          • type:Point
          • coordinates: [-1.7986768939585758, 1.2997063230797488]
            • 0:-1.7986768939585758
            • 1:1.2997063230797488
        • properties: ocean
          • type:ocean
      • 184: Feature (Point, 1 property)
        • type:Feature
        • id:184
        • geometry: Point (2.43, -6.09)
          • type:Point
          • coordinates: [2.4324087060524127, -6.092968215860012]
            • 0:2.4324087060524127
            • 1:-6.092968215860012
        • properties: ocean
          • type:ocean
      • 185: Feature (Point, 1 property)
        • type:Feature
        • id:185
        • geometry: Point (-5.40, 1.76)
          • type:Point
          • coordinates: [-5.404839152190846, 1.7584182388811218]
            • 0:-5.404839152190846
            • 1:1.7584182388811218
        • properties: ocean
          • type:ocean
      • 186: Feature (Point, 1 property)
        • type:Feature
        • id:186
        • geometry: Point (-15.07, -4.93)
          • type:Point
          • coordinates: [-15.072565032590607, -4.929117129397147]
            • 0:-15.072565032590607
            • 1:-4.929117129397147
        • properties: ocean
          • type:ocean
      • 187: Feature (Point, 1 property)
        • type:Feature
        • id:187
        • geometry: Point (-13.18, 0.01)
          • type:Point
          • coordinates: [-13.18444745844367, 0.009233887597948987]
            • 0:-13.18444745844367
            • 1:0.009233887597948987
        • properties: ocean
          • type:ocean
      • 188: Feature (Point, 1 property)
        • type:Feature
        • id:188
        • geometry: Point (-14.86, -3.32)
          • type:Point
          • coordinates: [-14.857183276579951, -3.3201294727985546]
            • 0:-14.857183276579951
            • 1:-3.3201294727985546
        • properties: ocean
          • type:ocean
      • 189: Feature (Point, 1 property)
        • type:Feature
        • id:189
        • geometry: Point (-14.41, -2.07)
          • type:Point
          • coordinates: [-14.408310687162201, -2.0691579972701577]
            • 0:-14.408310687162201
            • 1:-2.0691579972701577
        • properties: ocean
          • type:ocean
      • 190: Feature (Point, 1 property)
        • type:Feature
        • id:190
        • geometry: Point (-12.54, 0.42)
          • type:Point
          • coordinates: [-12.539691527037762, 0.4201667890671447]
            • 0:-12.539691527037762
            • 1:0.4201667890671447
        • properties: ocean
          • type:ocean
      • 191: Feature (Point, 1 property)
        • type:Feature
        • id:191
        • geometry: Point (-5.47, 1.80)
          • type:Point
          • coordinates: [-5.472778562818521, 1.7990671904184385]
            • 0:-5.472778562818521
            • 1:1.7990671904184385
        • properties: ocean
          • type:ocean
      • 192: Feature (Point, 1 property)
        • type:Feature
        • id:192
        • geometry: Point (-1.79, -4.73)
          • type:Point
          • coordinates: [-1.7939587967771586, -4.72791101421079]
            • 0:-1.7939587967771586
            • 1:-4.72791101421079
        • properties: ocean
          • type:ocean
      • 193: Feature (Point, 1 property)
        • type:Feature
        • id:193
        • geometry: Point (-7.73, -3.49)
          • type:Point
          • coordinates: [-7.733035148177863, -3.491993074993734]
            • 0:-7.733035148177863
            • 1:-3.491993074993734
        • properties: ocean
          • type:ocean
      • 194: Feature (Point, 1 property)
        • type:Feature
        • id:194
        • geometry: Point (-1.99, -6.04)
          • type:Point
          • coordinates: [-1.9893280394564101, -6.039294071098537]
            • 0:-1.9893280394564101
            • 1:-6.039294071098537
        • properties: ocean
          • type:ocean
      • 195: Feature (Point, 1 property)
        • type:Feature
        • id:195
        • geometry: Point (-14.16, -7.00)
          • type:Point
          • coordinates: [-14.159005848016797, -6.999767025231132]
            • 0:-14.159005848016797
            • 1:-6.999767025231132
        • properties: ocean
          • type:ocean
      • 196: Feature (Point, 1 property)
        • type:Feature
        • id:196
        • geometry: Point (5.75, -4.41)
          • type:Point
          • coordinates: [5.75459538285705, -4.408235747870061]
            • 0:5.75459538285705
            • 1:-4.408235747870061
        • properties: ocean
          • type:ocean
      • 197: Feature (Point, 1 property)
        • type:Feature
        • id:197
        • geometry: Point (-1.70, 1.16)
          • type:Point
          • coordinates: [-1.7048230698142388, 1.163493923036268]
            • 0:-1.7048230698142388
            • 1:1.163493923036268
        • properties: ocean
          • type:ocean
      • 198: Feature (Point, 1 property)
        • type:Feature
        • id:198
        • geometry: Point (-4.73, -1.50)
          • type:Point
          • coordinates: [-4.734130982360509, -1.4969339088011562]
            • 0:-4.734130982360509
            • 1:-1.4969339088011562
        • properties: ocean
          • type:ocean
      • 199: Feature (Point, 1 property)
        • type:Feature
        • id:199
        • geometry: Point (-1.63, -1.57)
          • type:Point
          • coordinates: [-1.629753288144693, -1.5749266266363224]
            • 0:-1.629753288144693
            • 1:-1.5749266266363224
        • properties: ocean
          • type:ocean
      • 200: Feature (Point, 1 property)
        • type:Feature
        • id:200
        • geometry: Point (-9.75, 0.31)
          • type:Point
          • coordinates: [-9.75477905345765, 0.31404297614934323]
            • 0:-9.75477905345765
            • 1:0.31404297614934323
        • properties: ocean
          • type:ocean
      • 201: Feature (Point, 1 property)
        • type:Feature
        • id:201
        • geometry: Point (-6.78, 0.55)
          • type:Point
          • coordinates: [-6.781356574634544, 0.5510582598348122]
            • 0:-6.781356574634544
            • 1:0.5510582598348122
        • properties: ocean
          • type:ocean
      • 202: Feature (Point, 1 property)
        • type:Feature
        • id:202
        • geometry: Point (-11.25, -0.98)
          • type:Point
          • coordinates: [-11.246153106343971, -0.9842814585461402]
            • 0:-11.246153106343971
            • 1:-0.9842814585461402
        • properties: ocean
          • type:ocean
      • 203: Feature (Point, 1 property)
        • type:Feature
        • id:203
        • geometry: Point (-12.65, -5.16)
          • type:Point
          • coordinates: [-12.647388943164813, -5.161096280335546]
            • 0:-12.647388943164813
            • 1:-5.161096280335546
        • properties: ocean
          • type:ocean
      • 204: Feature (Point, 1 property)
        • type:Feature
        • id:204
        • geometry: Point (-14.44, -2.82)
          • type:Point
          • coordinates: [-14.438341939584605, -2.8176231805974]
            • 0:-14.438341939584605
            • 1:-2.8176231805974
        • properties: ocean
          • type:ocean
      • 205: Feature (Point, 1 property)
        • type:Feature
        • id:205
        • geometry: Point (2.92, -0.86)
          • type:Point
          • coordinates: [2.9164094132081892, -0.8649561998750559]
            • 0:2.9164094132081892
            • 1:-0.8649561998750559
        • properties: ocean
          • type:ocean
      • 206: Feature (Point, 1 property)
        • type:Feature
        • id:206
        • geometry: Point (-2.09, -2.92)
          • type:Point
          • coordinates: [-2.0894298289191884, -2.9214884982105134]
            • 0:-2.0894298289191884
            • 1:-2.9214884982105134
        • properties: ocean
          • type:ocean
      • 207: Feature (Point, 1 property)
        • type:Feature
        • id:207
        • geometry: Point (-3.94, -8.22)
          • type:Point
          • coordinates: [-3.942152008319405, -8.220583574327039]
            • 0:-3.942152008319405
            • 1:-8.220583574327039
        • properties: ocean
          • type:ocean
      • 208: Feature (Point, 1 property)
        • type:Feature
        • id:208
        • geometry: Point (-4.46, -8.50)
          • type:Point
          • coordinates: [-4.46493445808133, -8.500784714334596]
            • 0:-4.46493445808133
            • 1:-8.500784714334596
        • properties: ocean
          • type:ocean
      • 209: Feature (Point, 1 property)
        • type:Feature
        • id:209
        • geometry: Point (4.56, -2.40)
          • type:Point
          • coordinates: [4.558577333302045, -2.3990666226281965]
            • 0:4.558577333302045
            • 1:-2.3990666226281965
        • properties: ocean
          • type:ocean
      • 210: Feature (Point, 1 property)
        • type:Feature
        • id:210
        • geometry: Point (-7.19, -3.09)
          • type:Point
          • coordinates: [-7.1910332496037155, -3.0862176645457553]
            • 0:-7.1910332496037155
            • 1:-3.0862176645457553
        • properties: ocean
          • type:ocean
      • 211: Feature (Point, 1 property)
        • type:Feature
        • id:211
        • geometry: Point (-12.94, -3.07)
          • type:Point
          • coordinates: [-12.936519490796401, -3.07208512692125]
            • 0:-12.936519490796401
            • 1:-3.07208512692125
        • properties: ocean
          • type:ocean
      • 212: Feature (Point, 1 property)
        • type:Feature
        • id:212
        • geometry: Point (-9.09, -7.95)
          • type:Point
          • coordinates: [-9.089927950703034, -7.952587548614599]
            • 0:-9.089927950703034
            • 1:-7.952587548614599
        • properties: ocean
          • type:ocean
      • 213: Feature (Point, 1 property)
        • type:Feature
        • id:213
        • geometry: Point (2.34, -0.51)
          • type:Point
          • coordinates: [2.3393397172572734, -0.5076721238265804]
            • 0:2.3393397172572734
            • 1:-0.5076721238265804
        • properties: ocean
          • type:ocean
      • 214: Feature (Point, 1 property)
        • type:Feature
        • id:214
        • geometry: Point (-7.62, -6.68)
          • type:Point
          • coordinates: [-7.615935157873864, -6.678020766908986]
            • 0:-7.615935157873864
            • 1:-6.678020766908986
        • properties: ocean
          • type:ocean
      • 215: Feature (Point, 1 property)
        • type:Feature
        • id:215
        • geometry: Point (-10.69, -0.70)
          • type:Point
          • coordinates: [-10.688307857538023, -0.7014487011222164]
            • 0:-10.688307857538023
            • 1:-0.7014487011222164
        • properties: ocean
          • type:ocean
      • 216: Feature (Point, 1 property)
        • type:Feature
        • id:216
        • geometry: Point (-1.30, -2.55)
          • type:Point
          • coordinates: [-1.3045915434572242, -2.54537828306337]
            • 0:-1.3045915434572242
            • 1:-2.54537828306337
        • properties: ocean
          • type:ocean
      • 217: Feature (Point, 1 property)
        • type:Feature
        • id:217
        • geometry: Point (-1.79, -5.95)
          • type:Point
          • coordinates: [-1.7886474413116338, -5.947160094690062]
            • 0:-1.7886474413116338
            • 1:-5.947160094690062
        • properties: ocean
          • type:ocean
      • 218: Feature (Point, 1 property)
        • type:Feature
        • id:218
        • geometry: Point (-12.94, -7.48)
          • type:Point
          • coordinates: [-12.939349039219206, -7.481195359920881]
            • 0:-12.939349039219206
            • 1:-7.481195359920881
        • properties: ocean
          • type:ocean
      • 219: Feature (Point, 1 property)
        • type:Feature
        • id:219
        • geometry: Point (-8.16, 0.28)
          • type:Point
          • coordinates: [-8.1583840510542, 0.2771590242833724]
            • 0:-8.1583840510542
            • 1:0.2771590242833724
        • properties: ocean
          • type:ocean
      • 220: Feature (Point, 1 property)
        • type:Feature
        • id:220
        • geometry: Point (-7.05, -0.79)
          • type:Point
          • coordinates: [-7.051532175436774, -0.7902192719710818]
            • 0:-7.051532175436774
            • 1:-0.7902192719710818
        • properties: ocean
          • type:ocean
      • 221: Feature (Point, 1 property)
        • type:Feature
        • id:221
        • geometry: Point (2.34, 0.38)
          • type:Point
          • coordinates: [2.3394747815018078, 0.38497452695245843]
            • 0:2.3394747815018078
            • 1:0.38497452695245843
        • properties: ocean
          • type:ocean
      • 222: Feature (Point, 1 property)
        • type:Feature
        • id:222
        • geometry: Point (-5.62, -4.96)
          • type:Point
          • coordinates: [-5.6216241935808196, -4.9635372820879144]
            • 0:-5.6216241935808196
            • 1:-4.9635372820879144
        • properties: ocean
          • type:ocean
      • 223: Feature (Point, 1 property)
        • type:Feature
        • id:223
        • geometry: Point (-11.84, 1.16)
          • type:Point
          • coordinates: [-11.835113963839726, 1.1573614668839902]
            • 0:-11.835113963839726
            • 1:1.1573614668839902
        • properties: ocean
          • type:ocean
      • 224: Feature (Point, 1 property)
        • type:Feature
        • id:224
        • geometry: Point (-15.23, -3.70)
          • type:Point
          • coordinates: [-15.227283564234368, -3.6950675601627383]
            • 0:-15.227283564234368
            • 1:-3.6950675601627383
        • properties: ocean
          • type:ocean
      • 225: Feature (Point, 1 property)
        • type:Feature
        • id:225
        • geometry: Point (-15.09, -5.29)
          • type:Point
          • coordinates: [-15.092310281322924, -5.291371354694142]
            • 0:-15.092310281322924
            • 1:-5.291371354694142
        • properties: ocean
          • type:ocean
      • 226: Feature (Point, 1 property)
        • type:Feature
        • id:226
        • geometry: Point (1.70, -2.25)
          • type:Point
          • coordinates: [1.6970154729779439, -2.2466743948726693]
            • 0:1.6970154729779439
            • 1:-2.2466743948726693
        • properties: ocean
          • type:ocean
      • 227: Feature (Point, 1 property)
        • type:Feature
        • id:227
        • geometry: Point (4.19, -3.72)
          • type:Point
          • coordinates: [4.193585217599336, -3.716123431676649]
            • 0:4.193585217599336
            • 1:-3.716123431676649
        • properties: ocean
          • type:ocean
      • 228: Feature (Point, 1 property)
        • type:Feature
        • id:228
        • geometry: Point (-10.50, -6.87)
          • type:Point
          • coordinates: [-10.503528591817313, -6.86626095690626]
            • 0:-10.503528591817313
            • 1:-6.86626095690626
        • properties: ocean
          • type:ocean
      • 229: Feature (Point, 1 property)
        • type:Feature
        • id:229
        • geometry: Point (-14.41, -3.73)
          • type:Point
          • coordinates: [-14.407557298204825, -3.73124461669244]
            • 0:-14.407557298204825
            • 1:-3.73124461669244
        • properties: ocean
          • type:ocean
      • 230: Feature (Point, 1 property)
        • type:Feature
        • id:230
        • geometry: Point (-15.22, -2.13)
          • type:Point
          • coordinates: [-15.218449747481984, -2.128368592680202]
            • 0:-15.218449747481984
            • 1:-2.128368592680202
        • properties: ocean
          • type:ocean
      • 231: Feature (Point, 1 property)
        • type:Feature
        • id:231
        • geometry: Point (-1.22, 1.14)
          • type:Point
          • coordinates: [-1.2171199992829385, 1.1433787780705211]
            • 0:-1.2171199992829385
            • 1:1.1433787780705211
        • properties: ocean
          • type:ocean
      • 232: Feature (Point, 1 property)
        • type:Feature
        • id:232
        • geometry: Point (-4.92, -0.96)
          • type:Point
          • coordinates: [-4.924505679087718, -0.9565415129354997]
            • 0:-4.924505679087718
            • 1:-0.9565415129354997
        • properties: ocean
          • type:ocean
      • 233: Feature (Point, 1 property)
        • type:Feature
        • id:233
        • geometry: Point (-4.07, -5.00)
          • type:Point
          • coordinates: [-4.069900699679299, -4.996410369455573]
            • 0:-4.069900699679299
            • 1:-4.996410369455573
        • properties: ocean
          • type:ocean
      • 234: Feature (Point, 1 property)
        • type:Feature
        • id:234
        • geometry: Point (-8.90, -6.61)
          • type:Point
          • coordinates: [-8.898007125605984, -6.6052535392713665]
            • 0:-8.898007125605984
            • 1:-6.6052535392713665
        • properties: ocean
          • type:ocean
      • 235: Feature (Point, 1 property)
        • type:Feature
        • id:235
        • geometry: Point (-12.01, -7.31)
          • type:Point
          • coordinates: [-12.008418275640116, -7.309698228124841]
            • 0:-12.008418275640116
            • 1:-7.309698228124841
        • properties: ocean
          • type:ocean
      • 236: Feature (Point, 1 property)
        • type:Feature
        • id:236
        • geometry: Point (-5.69, -5.30)
          • type:Point
          • coordinates: [-5.6861536971001, -5.302214649971822]
            • 0:-5.6861536971001
            • 1:-5.302214649971822
        • properties: ocean
          • type:ocean
      • 237: Feature (Point, 1 property)
        • type:Feature
        • id:237
        • geometry: Point (-2.82, -5.73)
          • type:Point
          • coordinates: [-2.8240698573629945, -5.72528964326956]
            • 0:-2.8240698573629945
            • 1:-5.72528964326956
        • properties: ocean
          • type:ocean
      • 238: Feature (Point, 1 property)
        • type:Feature
        • id:238
        • geometry: Point (-5.32, -5.27)
          • type:Point
          • coordinates: [-5.321745744158744, -5.268691992282669]
            • 0:-5.321745744158744
            • 1:-5.268691992282669
        • properties: ocean
          • type:ocean
      • 239: Feature (Point, 1 property)
        • type:Feature
        • id:239
        • geometry: Point (-9.97, -3.98)
          • type:Point
          • coordinates: [-9.968167214343776, -3.97834425001924]
            • 0:-9.968167214343776
            • 1:-3.97834425001924
        • properties: ocean
          • type:ocean
      • 240: Feature (Point, 1 property)
        • type:Feature
        • id:240
        • geometry: Point (-8.52, -7.38)
          • type:Point
          • coordinates: [-8.518458201447174, -7.381996230206891]
            • 0:-8.518458201447174
            • 1:-7.381996230206891
        • properties: ocean
          • type:ocean
      • 241: Feature (Point, 1 property)
        • type:Feature
        • id:241
        • geometry: Point (-9.61, -4.58)
          • type:Point
          • coordinates: [-9.608821156716864, -4.57895573246244]
            • 0:-9.608821156716864
            • 1:-4.57895573246244
        • properties: ocean
          • type:ocean
      • 242: Feature (Point, 1 property)
        • type:Feature
        • id:242
        • geometry: Point (2.83, -1.73)
          • type:Point
          • coordinates: [2.833094525325443, -1.7303181809967276]
            • 0:2.833094525325443
            • 1:-1.7303181809967276
        • properties: ocean
          • type:ocean
      • 243: Feature (Point, 1 property)
        • type:Feature
        • id:243
        • geometry: Point (-4.59, -4.17)
          • type:Point
          • coordinates: [-4.589176150231962, -4.171366246560854]
            • 0:-4.589176150231962
            • 1:-4.171366246560854
        • properties: ocean
          • type:ocean
      • 244: Feature (Point, 1 property)
        • type:Feature
        • id:244
        • geometry: Point (-2.78, -3.95)
          • type:Point
          • coordinates: [-2.7798036993440483, -3.9494455492020357]
            • 0:-2.7798036993440483
            • 1:-3.9494455492020357
        • properties: ocean
          • type:ocean
      • 245: Feature (Point, 1 property)
        • type:Feature
        • id:245
        • geometry: Point (-11.57, 1.59)
          • type:Point
          • coordinates: [-11.56750064738082, 1.5879186805674081]
            • 0:-11.56750064738082
            • 1:1.5879186805674081
        • properties: ocean
          • type:ocean
      • 246: Feature (Point, 1 property)
        • type:Feature
        • id:246
        • geometry: Point (0.54, -7.60)
          • type:Point
          • coordinates: [0.5373952873036775, -7.600354535703331]
            • 0:0.5373952873036775
            • 1:-7.600354535703331
        • properties: ocean
          • type:ocean
      • 247: Feature (Point, 1 property)
        • type:Feature
        • id:247
        • geometry: Point (-1.68, -4.83)
          • type:Point
          • coordinates: [-1.680762179752617, -4.831638596053397]
            • 0:-1.680762179752617
            • 1:-4.831638596053397
        • properties: ocean
          • type:ocean
      • 248: Feature (Point, 1 property)
        • type:Feature
        • id:248
        • geometry: Point (-9.59, -3.77)
          • type:Point
          • coordinates: [-9.587960727019627, -3.765440276628895]
            • 0:-9.587960727019627
            • 1:-3.765440276628895
        • properties: ocean
          • type:ocean
      • 249: Feature (Point, 1 property)
        • type:Feature
        • id:249
        • geometry: Point (-10.89, -4.53)
          • type:Point
          • coordinates: [-10.88851890504608, -4.525417316599049]
            • 0:-10.88851890504608
            • 1:-4.525417316599049
        • properties: ocean
          • type:ocean
      • 250: Feature (Point, 1 property)
        • type:Feature
        • id:250
        • geometry: Point (-5.81, 1.39)
          • type:Point
          • coordinates: [-5.812967524660663, 1.3899572270792024]
            • 0:-5.812967524660663
            • 1:1.3899572270792024
        • properties: ocean
          • type:ocean
      • 251: Feature (Point, 1 property)
        • type:Feature
        • id:251
        • geometry: Point (-14.80, -2.10)
          • type:Point
          • coordinates: [-14.799092662497443, -2.099429904702344]
            • 0:-14.799092662497443
            • 1:-2.099429904702344
        • properties: ocean
          • type:ocean
      • 252: Feature (Point, 1 property)
        • type:Feature
        • id:252
        • geometry: Point (3.76, -7.16)
          • type:Point
          • coordinates: [3.763959228137238, -7.159889249917298]
            • 0:3.763959228137238
            • 1:-7.159889249917298
        • properties: ocean
          • type:ocean
      • 253: Feature (Point, 1 property)
        • type:Feature
        • id:253
        • geometry: Point (3.16, -7.88)
          • type:Point
          • coordinates: [3.164977289419213, -7.884179600375183]
            • 0:3.164977289419213
            • 1:-7.884179600375183
        • properties: ocean
          • type:ocean
      • 254: Feature (Point, 1 property)
        • type:Feature
        • id:254
        • geometry: Point (-2.37, -5.39)
          • type:Point
          • coordinates: [-2.365733446464107, -5.388701156353414]
            • 0:-2.365733446464107
            • 1:-5.388701156353414
        • properties: ocean
          • type:ocean
      • 255: Feature (Point, 1 property)
        • type:Feature
        • id:255
        • geometry: Point (-11.22, -7.35)
          • type:Point
          • coordinates: [-11.216866051959242, -7.354571903959089]
            • 0:-11.216866051959242
            • 1:-7.354571903959089
        • properties: ocean
          • type:ocean
      • 256: Feature (Point, 1 property)
        • type:Feature
        • id:256
        • geometry: Point (-6.15, -8.06)
          • type:Point
          • coordinates: [-6.149449040926318, -8.059509043119636]
            • 0:-6.149449040926318
            • 1:-8.059509043119636
        • properties: ocean
          • type:ocean
      • 257: Feature (Point, 1 property)
        • type:Feature
        • id:257
        • geometry: Point (4.39, -6.73)
          • type:Point
          • coordinates: [4.392750358848457, -6.725250843765911]
            • 0:4.392750358848457
            • 1:-6.725250843765911
        • properties: ocean
          • type:ocean
      • 258: Feature (Point, 1 property)
        • type:Feature
        • id:258
        • geometry: Point (1.35, -6.74)
          • type:Point
          • coordinates: [1.3462342192127446, -6.736204636392637]
            • 0:1.3462342192127446
            • 1:-6.736204636392637
        • properties: ocean
          • type:ocean
      • 259: Feature (Point, 1 property)
        • type:Feature
        • id:259
        • geometry: Point (4.88, -6.69)
          • type:Point
          • coordinates: [4.883950628373373, -6.688901267570728]
            • 0:4.883950628373373
            • 1:-6.688901267570728
        • properties: ocean
          • type:ocean
      • 260: Feature (Point, 1 property)
        • type:Feature
        • id:260
        • geometry: Point (2.02, -7.66)
          • type:Point
          • coordinates: [2.0178783559270594, -7.661269928410267]
            • 0:2.0178783559270594
            • 1:-7.661269928410267
        • properties: ocean
          • type:ocean
      • 261: Feature (Point, 1 property)
        • type:Feature
        • id:261
        • geometry: Point (2.54, -1.92)
          • type:Point
          • coordinates: [2.539664128973871, -1.924616775971382]
            • 0:2.539664128973871
            • 1:-1.924616775971382
        • properties: ocean
          • type:ocean
      • 262: Feature (Point, 1 property)
        • type:Feature
        • id:262
        • geometry: Point (-14.57, -5.36)
          • type:Point
          • coordinates: [-14.566827511188581, -5.361972807542737]
            • 0:-14.566827511188581
            • 1:-5.361972807542737
        • properties: ocean
          • type:ocean
      • 263: Feature (Point, 1 property)
        • type:Feature
        • id:263
        • geometry: Point (-1.22, -3.34)
          • type:Point
          • coordinates: [-1.223858311970011, -3.341611445839383]
            • 0:-1.223858311970011
            • 1:-3.341611445839383
        • properties: ocean
          • type:ocean
      • 264: Feature (Point, 1 property)
        • type:Feature
        • id:264
        • geometry: Point (-5.36, 0.37)
          • type:Point
          • coordinates: [-5.360440119543139, 0.3682369065487887]
            • 0:-5.360440119543139
            • 1:0.3682369065487887
        • properties: ocean
          • type:ocean
      • 265: Feature (Point, 1 property)
        • type:Feature
        • id:265
        • geometry: Point (5.78, -5.45)
          • type:Point
          • coordinates: [5.782629473593965, -5.453344987152032]
            • 0:5.782629473593965
            • 1:-5.453344987152032
        • properties: ocean
          • type:ocean
      • 266: Feature (Point, 1 property)
        • type:Feature
        • id:266
        • geometry: Point (-1.86, -7.45)
          • type:Point
          • coordinates: [-1.8632782213761105, -7.452071991214712]
            • 0:-1.8632782213761105
            • 1:-7.452071991214712
        • properties: ocean
          • type:ocean
      • 267: Feature (Point, 1 property)
        • type:Feature
        • id:267
        • geometry: Point (-11.79, -3.84)
          • type:Point
          • coordinates: [-11.792333601514963, -3.842898708781923]
            • 0:-11.792333601514963
            • 1:-3.842898708781923
        • properties: ocean
          • type:ocean
      • 268: Feature (Point, 1 property)
        • type:Feature
        • id:268
        • geometry: Point (-1.56, -7.55)
          • type:Point
          • coordinates: [-1.5638025842573715, -7.545297601982041]
            • 0:-1.5638025842573715
            • 1:-7.545297601982041
        • properties: ocean
          • type:ocean
      • 269: Feature (Point, 1 property)
        • type:Feature
        • id:269
        • geometry: Point (-8.07, -3.26)
          • type:Point
          • coordinates: [-8.070767639349398, -3.2607990318141695]
            • 0:-8.070767639349398
            • 1:-3.2607990318141695
        • properties: ocean
          • type:ocean
      • 270: Feature (Point, 1 property)
        • type:Feature
        • id:270
        • geometry: Point (-3.52, 2.00)
          • type:Point
          • coordinates: [-3.5196216519487247, 1.9980088423996307]
            • 0:-3.5196216519487247
            • 1:1.9980088423996307
        • properties: ocean
          • type:ocean
      • 271: Feature (Point, 1 property)
        • type:Feature
        • id:271
        • geometry: Point (2.93, -2.17)
          • type:Point
          • coordinates: [2.929978237313777, -2.1718476200771066]
            • 0:2.929978237313777
            • 1:-2.1718476200771066
        • properties: ocean
          • type:ocean
      • 272: Feature (Point, 1 property)
        • type:Feature
        • id:272
        • geometry: Point (2.54, -2.32)
          • type:Point
          • coordinates: [2.542149714655227, -2.321386108510139]
            • 0:2.542149714655227
            • 1:-2.321386108510139
        • properties: ocean
          • type:ocean
      • 273: Feature (Point, 1 property)
        • type:Feature
        • id:273
        • geometry: Point (-4.24, 0.99)
          • type:Point
          • coordinates: [-4.239834984104101, 0.9852648515551535]
            • 0:-4.239834984104101
            • 1:0.9852648515551535
        • properties: ocean
          • type:ocean
      • 274: Feature (Point, 1 property)
        • type:Feature
        • id:274
        • geometry: Point (-3.68, -1.70)
          • type:Point
          • coordinates: [-3.6845714341988303, -1.704829748482105]
            • 0:-3.6845714341988303
            • 1:-1.704829748482105
        • properties: ocean
          • type:ocean
      • 275: Feature (Point, 1 property)
        • type:Feature
        • id:275
        • geometry: Point (-9.15, -2.31)
          • type:Point
          • coordinates: [-9.152422171928523, -2.314193758590306]
            • 0:-9.152422171928523
            • 1:-2.314193758590306
        • properties: ocean
          • type:ocean
      • 276: Feature (Point, 1 property)
        • type:Feature
        • id:276
        • geometry: Point (-4.24, -0.47)
          • type:Point
          • coordinates: [-4.241731033198119, -0.4677254059527349]
            • 0:-4.241731033198119
            • 1:-0.4677254059527349
        • properties: ocean
          • type:ocean
      • 277: Feature (Point, 1 property)
        • type:Feature
        • id:277
        • geometry: Point (3.47, -2.76)
          • type:Point
          • coordinates: [3.4729811996128843, -2.7588873433523373]
            • 0:3.4729811996128843
            • 1:-2.7588873433523373
        • properties: ocean
          • type:ocean
      • 278: Feature (Point, 1 property)
        • type:Feature
        • id:278
        • geometry: Point (-13.39, 1.47)
          • type:Point
          • coordinates: [-13.385863985182386, 1.4748285023827497]
            • 0:-13.385863985182386
            • 1:1.4748285023827497
        • properties: ocean
          • type:ocean
      • 279: Feature (Point, 1 property)
        • type:Feature
        • id:279
        • geometry: Point (2.73, -5.45)
          • type:Point
          • coordinates: [2.7308548219145727, -5.448194637665809]
            • 0:2.7308548219145727
            • 1:-5.448194637665809
        • properties: ocean
          • type:ocean
      • 280: Feature (Point, 1 property)
        • type:Feature
        • id:280
        • geometry: Point (-8.80, -2.94)
          • type:Point
          • coordinates: [-8.800487567147862, -2.936408649193254]
            • 0:-8.800487567147862
            • 1:-2.936408649193254
        • properties: ocean
          • type:ocean
      • 281: Feature (Point, 1 property)
        • type:Feature
        • id:281
        • geometry: Point (-0.55, -2.95)
          • type:Point
          • coordinates: [-0.5537558808746587, -2.954576817797686]
            • 0:-0.5537558808746587
            • 1:-2.954576817797686
        • properties: ocean
          • type:ocean
      • 282: Feature (Point, 1 property)
        • type:Feature
        • id:282
        • geometry: Point (-1.12, -3.16)
          • type:Point
          • coordinates: [-1.1248527916855948, -3.1570440695119877]
            • 0:-1.1248527916855948
            • 1:-3.1570440695119877
        • properties: ocean
          • type:ocean
      • 283: Feature (Point, 1 property)
        • type:Feature
        • id:283
        • geometry: Point (-12.18, -0.47)
          • type:Point
          • coordinates: [-12.184023890166939, -0.47311756330639465]
            • 0:-12.184023890166939
            • 1:-0.47311756330639465
        • properties: ocean
          • type:ocean
      • 284: Feature (Point, 1 property)
        • type:Feature
        • id:284
        • geometry: Point (-2.45, -0.09)
          • type:Point
          • coordinates: [-2.4509337371152786, -0.09261231177284329]
            • 0:-2.4509337371152786
            • 1:-0.09261231177284329
        • properties: ocean
          • type:ocean
      • 285: Feature (Point, 1 property)
        • type:Feature
        • id:285
        • geometry: Point (-6.00, -7.60)
          • type:Point
          • coordinates: [-5.996364054782074, -7.59524365603819]
            • 0:-5.996364054782074
            • 1:-7.59524365603819
        • properties: ocean
          • type:ocean
      • 286: Feature (Point, 1 property)
        • type:Feature
        • id:286
        • geometry: Point (-4.85, 1.91)
          • type:Point
          • coordinates: [-4.851740271985048, 1.908910492717702]
            • 0:-4.851740271985048
            • 1:1.908910492717702
        • properties: ocean
          • type:ocean
      • 287: Feature (Point, 1 property)
        • type:Feature
        • id:287
        • geometry: Point (0.87, 0.08)
          • type:Point
          • coordinates: [0.8708577379135395, 0.08441392502696121]
            • 0:0.8708577379135395
            • 1:0.08441392502696121
        • properties: ocean
          • type:ocean
      • 288: Feature (Point, 1 property)
        • type:Feature
        • id:288
        • geometry: Point (2.60, -7.24)
          • type:Point
          • coordinates: [2.595066235398746, -7.239263629419975]
            • 0:2.595066235398746
            • 1:-7.239263629419975
        • properties: ocean
          • type:ocean
      • 289: Feature (Point, 1 property)
        • type:Feature
        • id:289
        • geometry: Point (-2.57, 0.27)
          • type:Point
          • coordinates: [-2.572096565430874, 0.27475899382690816]
            • 0:-2.572096565430874
            • 1:0.27475899382690816
        • properties: ocean
          • type:ocean
      • 290: Feature (Point, 1 property)
        • type:Feature
        • id:290
        • geometry: Point (3.27, -4.25)
          • type:Point
          • coordinates: [3.269051277098515, -4.246746344559157]
            • 0:3.269051277098515
            • 1:-4.246746344559157
        • properties: ocean
          • type:ocean
      • 291: Feature (Point, 1 property)
        • type:Feature
        • id:291
        • geometry: Point (-12.16, -0.07)
          • type:Point
          • coordinates: [-12.15964733866998, -0.06920502257036462]
            • 0:-12.15964733866998
            • 1:-0.06920502257036462
        • properties: ocean
          • type:ocean
      • 292: Feature (Point, 1 property)
        • type:Feature
        • id:292
        • geometry: Point (0.23, -7.57)
          • type:Point
          • coordinates: [0.22622649457702965, -7.573571675097056]
            • 0:0.22622649457702965
            • 1:-7.573571675097056
        • properties: ocean
          • type:ocean
      • 293: Feature (Point, 1 property)
        • type:Feature
        • id:293
        • geometry: Point (-10.68, 0.78)
          • type:Point
          • coordinates: [-10.68022506482838, 0.7840955850403054]
            • 0:-10.68022506482838
            • 1:0.7840955850403054
        • properties: ocean
          • type:ocean
      • 294: Feature (Point, 1 property)
        • type:Feature
        • id:294
        • geometry: Point (-9.65, -4.82)
          • type:Point
          • coordinates: [-9.652444605475086, -4.819452643717285]
            • 0:-9.652444605475086
            • 1:-4.819452643717285
        • properties: ocean
          • type:ocean
      • 295: Feature (Point, 1 property)
        • type:Feature
        • id:295
        • geometry: Point (-3.27, -4.70)
          • type:Point
          • coordinates: [-3.2704983825689284, -4.699706113060289]
            • 0:-3.2704983825689284
            • 1:-4.699706113060289
        • properties: ocean
          • type:ocean
      • 296: Feature (Point, 1 property)
        • type:Feature
        • id:296
        • geometry: Point (0.72, -0.80)
          • type:Point
          • coordinates: [0.7229003534793649, -0.7997751417212609]
            • 0:0.7229003534793649
            • 1:-0.7997751417212609
        • properties: ocean
          • type:ocean
      • 297: Feature (Point, 1 property)
        • type:Feature
        • id:297
        • geometry: Point (2.75, -1.48)
          • type:Point
          • coordinates: [2.7515107409249127, -1.4784423083188167]
            • 0:2.7515107409249127
            • 1:-1.4784423083188167
        • properties: ocean
          • type:ocean
      • 298: Feature (Point, 1 property)
        • type:Feature
        • id:298
        • geometry: Point (-0.55, 1.70)
          • type:Point
          • coordinates: [-0.5514154274895695, 1.7011725032445093]
            • 0:-0.5514154274895695
            • 1:1.7011725032445093
        • properties: ocean
          • type:ocean
      • 299: Feature (Point, 1 property)
        • type:Feature
        • id:299
        • geometry: Point (-15.02, -7.43)
          • type:Point
          • coordinates: [-15.017672372105576, -7.429422111867322]
            • 0:-15.017672372105576
            • 1:-7.429422111867322
        • properties: ocean
          • type:ocean
      • 300: Feature (Point, 1 property)
        • type:Feature
        • id:300
        • geometry: Point (-7.00, -6.35)
          • type:Point
          • coordinates: [-7.00348639606685, -6.353718589787673]
            • 0:-7.00348639606685
            • 1:-6.353718589787673
        • properties: ocean
          • type:ocean
      • 301: Feature (Point, 1 property)
        • type:Feature
        • id:301
        • geometry: Point (2.61, -5.25)
          • type:Point
          • coordinates: [2.612583286627464, -5.252336964754022]
            • 0:2.612583286627464
            • 1:-5.252336964754022
        • properties: ocean
          • type:ocean
      • 302: Feature (Point, 1 property)
        • type:Feature
        • id:302
        • geometry: Point (0.48, 1.67)
          • type:Point
          • coordinates: [0.479571660226756, 1.6683203889831417]
            • 0:0.479571660226756
            • 1:1.6683203889831417
        • properties: ocean
          • type:ocean
      • 303: Feature (Point, 1 property)
        • type:Feature
        • id:303
        • geometry: Point (4.60, -4.44)
          • type:Point
          • coordinates: [4.600209947130069, -4.444515803589982]
            • 0:4.600209947130069
            • 1:-4.444515803589982
        • properties: ocean
          • type:ocean
      • 304: Feature (Point, 1 property)
        • type:Feature
        • id:304
        • geometry: Point (0.10, -2.83)
          • type:Point
          • coordinates: [0.09963677185368702, -2.831215136716251]
            • 0:0.09963677185368702
            • 1:-2.831215136716251
        • properties: ocean
          • type:ocean
      • 305: Feature (Point, 1 property)
        • type:Feature
        • id:305
        • geometry: Point (-1.19, -2.49)
          • type:Point
          • coordinates: [-1.1855125633827879, -2.4949642348641468]
            • 0:-1.1855125633827879
            • 1:-2.4949642348641468
        • properties: ocean
          • type:ocean
      • 306: Feature (Point, 1 property)
        • type:Feature
        • id:306
        • geometry: Point (-12.46, -2.03)
          • type:Point
          • coordinates: [-12.460837793137124, -2.027447132730336]
            • 0:-12.460837793137124
            • 1:-2.027447132730336
        • properties: ocean
          • type:ocean
      • 307: Feature (Point, 1 property)
        • type:Feature
        • id:307
        • geometry: Point (-9.15, -2.01)
          • type:Point
          • coordinates: [-9.146577149108335, -2.0101855928258923]
            • 0:-9.146577149108335
            • 1:-2.0101855928258923
        • properties: ocean
          • type:ocean
      • 308: Feature (Point, 1 property)
        • type:Feature
        • id:308
        • geometry: Point (-11.33, -0.93)
          • type:Point
          • coordinates: [-11.332781556738766, -0.9343903945287144]
            • 0:-11.332781556738766
            • 1:-0.9343903945287144
        • properties: ocean
          • type:ocean
      • 309: Feature (Point, 1 property)
        • type:Feature
        • id:309
        • geometry: Point (0.73, -2.16)
          • type:Point
          • coordinates: [0.7252562755448546, -2.1638089194409957]
            • 0:0.7252562755448546
            • 1:-2.1638089194409957
        • properties: ocean
          • type:ocean
      • 310: Feature (Point, 1 property)
        • type:Feature
        • id:310
        • geometry: Point (1.25, -8.19)
          • type:Point
          • coordinates: [1.2541059720350152, -8.185792720487509]
            • 0:1.2541059720350152
            • 1:-8.185792720487509
        • properties: ocean
          • type:ocean
      • 311: Feature (Point, 1 property)
        • type:Feature
        • id:311
        • geometry: Point (-11.28, -7.54)
          • type:Point
          • coordinates: [-11.279649192572215, -7.539649451329472]
            • 0:-11.279649192572215
            • 1:-7.539649451329472
        • properties: ocean
          • type:ocean
      • 312: Feature (Point, 1 property)
        • type:Feature
        • id:312
        • geometry: Point (-15.59, -3.02)
          • type:Point
          • coordinates: [-15.586857317655307, -3.0248811206697312]
            • 0:-15.586857317655307
            • 1:-3.0248811206697312
        • properties: ocean
          • type:ocean
      • 313: Feature (Point, 1 property)
        • type:Feature
        • id:313
        • geometry: Point (2.83, -1.09)
          • type:Point
          • coordinates: [2.8301658175733726, -1.0915143489310737]
            • 0:2.8301658175733726
            • 1:-1.0915143489310737
        • properties: ocean
          • type:ocean
      • 314: Feature (Point, 1 property)
        • type:Feature
        • id:314
        • geometry: Point (-14.14, -2.03)
          • type:Point
          • coordinates: [-14.135630948926952, -2.034008270311104]
            • 0:-14.135630948926952
            • 1:-2.034008270311104
        • properties: ocean
          • type:ocean
      • 315: Feature (Point, 1 property)
        • type:Feature
        • id:315
        • geometry: Point (-6.01, -3.74)
          • type:Point
          • coordinates: [-6.009240876064207, -3.7385480449719006]
            • 0:-6.009240876064207
            • 1:-3.7385480449719006
        • properties: ocean
          • type:ocean
      • 316: Feature (Point, 1 property)
        • type:Feature
        • id:316
        • geometry: Point (-15.20, 0.40)
          • type:Point
          • coordinates: [-15.198242038829424, 0.40273147798605824]
            • 0:-15.198242038829424
            • 1:0.40273147798605824
        • properties: ocean
          • type:ocean
      • 317: Feature (Point, 1 property)
        • type:Feature
        • id:317
        • geometry: Point (-1.01, -7.36)
          • type:Point
          • coordinates: [-1.0120940223296935, -7.361982885924404]
            • 0:-1.0120940223296935
            • 1:-7.361982885924404
        • properties: ocean
          • type:ocean
      • 318: Feature (Point, 1 property)
        • type:Feature
        • id:318
        • geometry: Point (-13.67, -2.29)
          • type:Point
          • coordinates: [-13.67463379472709, -2.291090344450339]
            • 0:-13.67463379472709
            • 1:-2.291090344450339
        • properties: ocean
          • type:ocean
      • 319: Feature (Point, 1 property)
        • type:Feature
        • id:319
        • geometry: Point (-10.06, -1.04)
          • type:Point
          • coordinates: [-10.062940391451638, -1.0390733556645342]
            • 0:-10.062940391451638
            • 1:-1.0390733556645342
        • properties: ocean
          • type:ocean
      • 320: Feature (Point, 1 property)
        • type:Feature
        • id:320
        • geometry: Point (-4.69, -6.35)
          • type:Point
          • coordinates: [-4.686811652484992, -6.35425535459143]
            • 0:-4.686811652484992
            • 1:-6.35425535459143
        • properties: ocean
          • type:ocean
      • 321: Feature (Point, 1 property)
        • type:Feature
        • id:321
        • geometry: Point (-8.26, -2.89)
          • type:Point
          • coordinates: [-8.258215266369424, -2.889542621600953]
            • 0:-8.258215266369424
            • 1:-2.889542621600953
        • properties: ocean
          • type:ocean
      • 322: Feature (Point, 1 property)
        • type:Feature
        • id:322
        • geometry: Point (-6.23, -7.78)
          • type:Point
          • coordinates: [-6.233090993195179, -7.784949947579546]
            • 0:-6.233090993195179
            • 1:-7.784949947579546
        • properties: ocean
          • type:ocean
      • 323: Feature (Point, 1 property)
        • type:Feature
        • id:323
        • geometry: Point (0.56, -7.83)
          • type:Point
          • coordinates: [0.5633345812376186, -7.830537012476953]
            • 0:0.5633345812376186
            • 1:-7.830537012476953
        • properties: ocean
          • type:ocean
      • 324: Feature (Point, 1 property)
        • type:Feature
        • id:324
        • geometry: Point (-0.88, -7.34)
          • type:Point
          • coordinates: [-0.8780699631809281, -7.337540680155393]
            • 0:-0.8780699631809281
            • 1:-7.337540680155393
        • properties: ocean
          • type:ocean
      • 325: Feature (Point, 1 property)
        • type:Feature
        • id:325
        • geometry: Point (-15.25, -5.31)
          • type:Point
          • coordinates: [-15.248090374206418, -5.31163948759487]
            • 0:-15.248090374206418
            • 1:-5.31163948759487
        • properties: ocean
          • type:ocean
      • 326: Feature (Point, 1 property)
        • type:Feature
        • id:326
        • geometry: Point (-6.42, -0.29)
          • type:Point
          • coordinates: [-6.417639666522761, -0.2856529585605912]
            • 0:-6.417639666522761
            • 1:-0.2856529585605912
        • properties: ocean
          • type:ocean
      • 327: Feature (Point, 1 property)
        • type:Feature
        • id:327
        • geometry: Point (-12.84, -2.29)
          • type:Point
          • coordinates: [-12.840290900391954, -2.293058183197694]
            • 0:-12.840290900391954
            • 1:-2.293058183197694
        • properties: ocean
          • type:ocean
      • 328: Feature (Point, 1 property)
        • type:Feature
        • id:328
        • geometry: Point (0.32, -1.02)
          • type:Point
          • coordinates: [0.31990251894121785, -1.0247724395450575]
            • 0:0.31990251894121785
            • 1:-1.0247724395450575
        • properties: ocean
          • type:ocean
      • 329: Feature (Point, 1 property)
        • type:Feature
        • id:329
        • geometry: Point (2.75, -6.81)
          • type:Point
          • coordinates: [2.7516494536016323, -6.808558743713251]
            • 0:2.7516494536016323
            • 1:-6.808558743713251
        • properties: ocean
          • type:ocean
      • 330: Feature (Point, 1 property)
        • type:Feature
        • id:330
        • geometry: Point (3.18, -0.29)
          • type:Point
          • coordinates: [3.180249103096003, -0.29275799986166223]
            • 0:3.180249103096003
            • 1:-0.29275799986166223
        • properties: ocean
          • type:ocean
      • 331: Feature (Point, 1 property)
        • type:Feature
        • id:331
        • geometry: Point (5.46, -4.56)
          • type:Point
          • coordinates: [5.457945402168383, -4.56045756118664]
            • 0:5.457945402168383
            • 1:-4.56045756118664
        • properties: ocean
          • type:ocean
      • 332: Feature (Point, 1 property)
        • type:Feature
        • id:332
        • geometry: Point (0.92, -4.33)
          • type:Point
          • coordinates: [0.9179187180135838, -4.329078207435161]
            • 0:0.9179187180135838
            • 1:-4.329078207435161
        • properties: ocean
          • type:ocean
      • 333: Feature (Point, 1 property)
        • type:Feature
        • id:333
        • geometry: Point (-6.81, -7.92)
          • type:Point
          • coordinates: [-6.811290884515653, -7.9196601191439155]
            • 0:-6.811290884515653
            • 1:-7.9196601191439155
        • properties: ocean
          • type:ocean
      • 334: Feature (Point, 1 property)
        • type:Feature
        • id:334
        • geometry: Point (3.71, -5.08)
          • type:Point
          • coordinates: [3.706490063653621, -5.080573893833864]
            • 0:3.706490063653621
            • 1:-5.080573893833864
        • properties: ocean
          • type:ocean
      • 335: Feature (Point, 1 property)
        • type:Feature
        • id:335
        • geometry: Point (-12.47, 0.75)
          • type:Point
          • coordinates: [-12.46971085212095, 0.7544225654713057]
            • 0:-12.46971085212095
            • 1:0.7544225654713057
        • properties: ocean
          • type:ocean
      • 336: Feature (Point, 1 property)
        • type:Feature
        • id:336
        • geometry: Point (1.84, -2.90)
          • type:Point
          • coordinates: [1.8357380167535904, -2.8992358504613516]
            • 0:1.8357380167535904
            • 1:-2.8992358504613516
        • properties: ocean
          • type:ocean
      • 337: Feature (Point, 1 property)
        • type:Feature
        • id:337
        • geometry: Point (-5.05, -0.14)
          • type:Point
          • coordinates: [-5.053005589556245, -0.13694905263025026]
            • 0:-5.053005589556245
            • 1:-0.13694905263025026
        • properties: ocean
          • type:ocean
      • 338: Feature (Point, 1 property)
        • type:Feature
        • id:338
        • geometry: Point (-11.93, -7.85)
          • type:Point
          • coordinates: [-11.926496667505997, -7.853630699034129]
            • 0:-11.926496667505997
            • 1:-7.853630699034129
        • properties: ocean
          • type:ocean
      • 339: Feature (Point, 1 property)
        • type:Feature
        • id:339
        • geometry: Point (4.03, -2.24)
          • type:Point
          • coordinates: [4.033543682537292, -2.241037572283908]
            • 0:4.033543682537292
            • 1:-2.241037572283908
        • properties: ocean
          • type:ocean
      • 340: Feature (Point, 1 property)
        • type:Feature
        • id:340
        • geometry: Point (-3.37, -8.21)
          • type:Point
          • coordinates: [-3.374973016362875, -8.205250946356198]
            • 0:-3.374973016362875
            • 1:-8.205250946356198
        • properties: ocean
          • type:ocean
      • 341: Feature (Point, 1 property)
        • type:Feature
        • id:341
        • geometry: Point (-5.60, -0.42)
          • type:Point
          • coordinates: [-5.603050538052389, -0.423395907500707]
            • 0:-5.603050538052389
            • 1:-0.423395907500707
        • properties: ocean
          • type:ocean
      • 342: Feature (Point, 1 property)
        • type:Feature
        • id:342
        • geometry: Point (1.90, -3.36)
          • type:Point
          • coordinates: [1.897018780318176, -3.360553306489037]
            • 0:1.897018780318176
            • 1:-3.360553306489037
        • properties: ocean
          • type:ocean
      • 343: Feature (Point, 1 property)
        • type:Feature
        • id:343
        • geometry: Point (1.70, -1.99)
          • type:Point
          • coordinates: [1.702006523770946, -1.9902630690058922]
            • 0:1.702006523770946
            • 1:-1.9902630690058922
        • properties: ocean
          • type:ocean
      • 344: Feature (Point, 1 property)
        • type:Feature
        • id:344
        • geometry: Point (-12.54, -5.34)
          • type:Point
          • coordinates: [-12.541577431576403, -5.342921814593167]
            • 0:-12.541577431576403
            • 1:-5.342921814593167
        • properties: ocean
          • type:ocean
      • 345: Feature (Point, 1 property)
        • type:Feature
        • id:345
        • geometry: Point (-4.48, -0.11)
          • type:Point
          • coordinates: [-4.482434504017865, -0.11385778311589748]
            • 0:-4.482434504017865
            • 1:-0.11385778311589748
        • properties: ocean
          • type:ocean
      • 346: Feature (Point, 1 property)
        • type:Feature
        • id:346
        • geometry: Point (2.50, -1.55)
          • type:Point
          • coordinates: [2.49955239535053, -1.547468862054158]
            • 0:2.49955239535053
            • 1:-1.547468862054158
        • properties: ocean
          • type:ocean
      • 347: Feature (Point, 1 property)
        • type:Feature
        • id:347
        • geometry: Point (-12.01, -1.10)
          • type:Point
          • coordinates: [-12.005412458108939, -1.103038249751867]
            • 0:-12.005412458108939
            • 1:-1.103038249751867
        • properties: ocean
          • type:ocean
      • 348: Feature (Point, 1 property)
        • type:Feature
        • id:348
        • geometry: Point (5.52, -5.22)
          • type:Point
          • coordinates: [5.51544730633421, -5.222289383550129]
            • 0:5.51544730633421
            • 1:-5.222289383550129
        • properties: ocean
          • type:ocean
      • 349: Feature (Point, 1 property)
        • type:Feature
        • id:349
        • geometry: Point (-11.99, -8.17)
          • type:Point
          • coordinates: [-11.992206151798843, -8.169799250121164]
            • 0:-11.992206151798843
            • 1:-8.169799250121164
        • properties: ocean
          • type:ocean
      • 350: Feature (Point, 1 property)
        • type:Feature
        • id:350
        • geometry: Point (-10.78, 0.83)
          • type:Point
          • coordinates: [-10.781382097186206, 0.8271333785222205]
            • 0:-10.781382097186206
            • 1:0.8271333785222205
        • properties: ocean
          • type:ocean
      • 351: Feature (Point, 1 property)
        • type:Feature
        • id:351
        • geometry: Point (4.20, -2.02)
          • type:Point
          • coordinates: [4.200681379142113, -2.0153358679082602]
            • 0:4.200681379142113
            • 1:-2.0153358679082602
        • properties: ocean
          • type:ocean
      • 352: Feature (Point, 1 property)
        • type:Feature
        • id:352
        • geometry: Point (-0.20, 0.95)
          • type:Point
          • coordinates: [-0.2019427380833554, 0.9451939192011257]
            • 0:-0.2019427380833554
            • 1:0.9451939192011257
        • properties: ocean
          • type:ocean
      • 353: Feature (Point, 1 property)
        • type:Feature
        • id:353
        • geometry: Point (2.65, -4.88)
          • type:Point
          • coordinates: [2.646920988809175, -4.879961250404778]
            • 0:2.646920988809175
            • 1:-4.879961250404778
        • properties: ocean
          • type:ocean
      • 354: Feature (Point, 1 property)
        • type:Feature
        • id:354
        • geometry: Point (-3.10, 0.16)
          • type:Point
          • coordinates: [-3.10350690084975, 0.16276346569129718]
            • 0:-3.10350690084975
            • 1:0.16276346569129718
        • properties: ocean
          • type:ocean
      • 355: Feature (Point, 1 property)
        • type:Feature
        • id:355
        • geometry: Point (-4.32, -5.65)
          • type:Point
          • coordinates: [-4.320063063439577, -5.653982174457235]
            • 0:-4.320063063439577
            • 1:-5.653982174457235
        • properties: ocean
          • type:ocean
      • 356: Feature (Point, 1 property)
        • type:Feature
        • id:356
        • geometry: Point (-1.24, -0.37)
          • type:Point
          • coordinates: [-1.2420575530333795, -0.3677989717758156]
            • 0:-1.2420575530333795
            • 1:-0.3677989717758156
        • properties: ocean
          • type:ocean
      • 357: Feature (Point, 1 property)
        • type:Feature
        • id:357
        • geometry: Point (-1.96, 0.28)
          • type:Point
          • coordinates: [-1.9626235158790604, 0.2826706543643057]
            • 0:-1.9626235158790604
            • 1:0.2826706543643057
        • properties: ocean
          • type:ocean
      • 358: Feature (Point, 1 property)
        • type:Feature
        • id:358
        • geometry: Point (1.07, -0.79)
          • type:Point
          • coordinates: [1.0715644067165366, -0.7944538635159542]
            • 0:1.0715644067165366
            • 1:-0.7944538635159542
        • properties: ocean
          • type:ocean
      • 359: Feature (Point, 1 property)
        • type:Feature
        • id:359
        • geometry: Point (-6.75, -0.69)
          • type:Point
          • coordinates: [-6.748445219266475, -0.6885188890847959]
            • 0:-6.748445219266475
            • 1:-0.6885188890847959
        • properties: ocean
          • type:ocean
      • 360: Feature (Point, 1 property)
        • type:Feature
        • id:360
        • geometry: Point (1.74, -5.65)
          • type:Point
          • coordinates: [1.7435349833208655, -5.648914486969205]
            • 0:1.7435349833208655
            • 1:-5.648914486969205
        • properties: ocean
          • type:ocean
      • 361: Feature (Point, 1 property)
        • type:Feature
        • id:361
        • geometry: Point (-12.88, -0.12)
          • type:Point
          • coordinates: [-12.883728950915422, -0.12134094767861485]
            • 0:-12.883728950915422
            • 1:-0.12134094767861485
        • properties: ocean
          • type:ocean
      • 362: Feature (Point, 1 property)
        • type:Feature
        • id:362
        • geometry: Point (1.41, -3.42)
          • type:Point
          • coordinates: [1.4054658608544448, -3.423946336464804]
            • 0:1.4054658608544448
            • 1:-3.423946336464804
        • properties: ocean
          • type:ocean
      • 363: Feature (Point, 1 property)
        • type:Feature
        • id:363
        • geometry: Point (-13.74, -8.14)
          • type:Point
          • coordinates: [-13.744927037736701, -8.13701604538215]
            • 0:-13.744927037736701
            • 1:-8.13701604538215
        • properties: ocean
          • type:ocean
      • 364: Feature (Point, 1 property)
        • type:Feature
        • id:364
        • geometry: Point (-1.19, -7.17)
          • type:Point
          • coordinates: [-1.1926987488057723, -7.1747449098933265]
            • 0:-1.1926987488057723
            • 1:-7.1747449098933265
        • properties: ocean
          • type:ocean
      • 365: Feature (Point, 1 property)
        • type:Feature
        • id:365
        • geometry: Point (2.25, -3.57)
          • type:Point
          • coordinates: [2.252327463891871, -3.5700363129948904]
            • 0:2.252327463891871
            • 1:-3.5700363129948904
        • properties: ocean
          • type:ocean
      • 366: Feature (Point, 1 property)
        • type:Feature
        • id:366
        • geometry: Point (-15.17, -1.19)
          • type:Point
          • coordinates: [-15.170861831768978, -1.1914341458222064]
            • 0:-15.170861831768978
            • 1:-1.1914341458222064
        • properties: ocean
          • type:ocean
      • 367: Feature (Point, 1 property)
        • type:Feature
        • id:367
        • geometry: Point (-6.27, -1.02)
          • type:Point
          • coordinates: [-6.271770802448638, -1.0221999530030472]
            • 0:-6.271770802448638
            • 1:-1.0221999530030472
        • properties: ocean
          • type:ocean
      • 368: Feature (Point, 1 property)
        • type:Feature
        • id:368
        • geometry: Point (-10.23, -5.17)
          • type:Point
          • coordinates: [-10.231364403056329, -5.174078187390057]
            • 0:-10.231364403056329
            • 1:-5.174078187390057
        • properties: ocean
          • type:ocean
      • 369: Feature (Point, 1 property)
        • type:Feature
        • id:369
        • geometry: Point (-12.69, -1.35)
          • type:Point
          • coordinates: [-12.688391335630376, -1.3520127373491182]
            • 0:-12.688391335630376
            • 1:-1.3520127373491182
        • properties: ocean
          • type:ocean
      • 370: Feature (Point, 1 property)
        • type:Feature
        • id:370
        • geometry: Point (-1.79, -4.92)
          • type:Point
          • coordinates: [-1.793637538665483, -4.919682759998241]
            • 0:-1.793637538665483
            • 1:-4.919682759998241
        • properties: ocean
          • type:ocean
      • 371: Feature (Point, 1 property)
        • type:Feature
        • id:371
        • geometry: Point (-10.61, 0.36)
          • type:Point
          • coordinates: [-10.610757820768603, 0.3623428921739158]
            • 0:-10.610757820768603
            • 1:0.3623428921739158
        • properties: ocean
          • type:ocean
      • 372: Feature (Point, 1 property)
        • type:Feature
        • id:372
        • geometry: Point (-7.78, 0.47)
          • type:Point
          • coordinates: [-7.782949153984796, 0.4735345474592591]
            • 0:-7.782949153984796
            • 1:0.4735345474592591
        • properties: ocean
          • type:ocean
      • 373: Feature (Point, 1 property)
        • type:Feature
        • id:373
        • geometry: Point (-2.86, -1.32)
          • type:Point
          • coordinates: [-2.864232041874141, -1.3190827167671217]
            • 0:-2.864232041874141
            • 1:-1.3190827167671217
        • properties: ocean
          • type:ocean
      • 374: Feature (Point, 1 property)
        • type:Feature
        • id:374
        • geometry: Point (5.06, -5.55)
          • type:Point
          • coordinates: [5.060442986781666, -5.549442180585084]
            • 0:5.060442986781666
            • 1:-5.549442180585084
        • properties: ocean
          • type:ocean
      • 375: Feature (Point, 1 property)
        • type:Feature
        • id:375
        • geometry: Point (-6.08, -2.44)
          • type:Point
          • coordinates: [-6.077799869558725, -2.4449759983260893]
            • 0:-6.077799869558725
            • 1:-2.4449759983260893
        • properties: ocean
          • type:ocean
      • 376: Feature (Point, 1 property)
        • type:Feature
        • id:376
        • geometry: Point (-6.27, -5.07)
          • type:Point
          • coordinates: [-6.267969774424287, -5.066107708820665]
            • 0:-6.267969774424287
            • 1:-5.066107708820665
        • properties: ocean
          • type:ocean
      • 377: Feature (Point, 1 property)
        • type:Feature
        • id:377
        • geometry: Point (-1.03, -0.62)
          • type:Point
          • coordinates: [-1.0327084652934309, -0.61983084543285]
            • 0:-1.0327084652934309
            • 1:-0.61983084543285
        • properties: ocean
          • type:ocean
      • 378: Feature (Point, 1 property)
        • type:Feature
        • id:378
        • geometry: Point (-12.47, 0.61)
          • type:Point
          • coordinates: [-12.46841117441587, 0.6121286535790336]
            • 0:-12.46841117441587
            • 1:0.6121286535790336
        • properties: ocean
          • type:ocean
      • 379: Feature (Point, 1 property)
        • type:Feature
        • id:379
        • geometry: Point (-5.97, -4.28)
          • type:Point
          • coordinates: [-5.970654949834742, -4.28378250141743]
            • 0:-5.970654949834742
            • 1:-4.28378250141743
        • properties: ocean
          • type:ocean
      • 380: Feature (Point, 1 property)
        • type:Feature
        • id:380
        • geometry: Point (-7.69, -6.24)
          • type:Point
          • coordinates: [-7.692196094154807, -6.244494472575149]
            • 0:-7.692196094154807
            • 1:-6.244494472575149
        • properties: ocean
          • type:ocean
      • 381: Feature (Point, 1 property)
        • type:Feature
        • id:381
        • geometry: Point (1.20, -7.83)
          • type:Point
          • coordinates: [1.1977164868806847, -7.829666136838795]
            • 0:1.1977164868806847
            • 1:-7.829666136838795
        • properties: ocean
          • type:ocean
      • 382: Feature (Point, 1 property)
        • type:Feature
        • id:382
        • geometry: Point (5.02, -3.88)
          • type:Point
          • coordinates: [5.02395164272689, -3.880924386723655]
            • 0:5.02395164272689
            • 1:-3.880924386723655
        • properties: ocean
          • type:ocean
      • 383: Feature (Point, 1 property)
        • type:Feature
        • id:383
        • geometry: Point (-4.82, 1.73)
          • type:Point
          • coordinates: [-4.820104921451542, 1.73267106060411]
            • 0:-4.820104921451542
            • 1:1.73267106060411
        • properties: ocean
          • type:ocean
      • 384: Feature (Point, 1 property)
        • type:Feature
        • id:384
        • geometry: Point (-7.10, -2.07)
          • type:Point
          • coordinates: [-7.104467778908159, -2.069255332915922]
            • 0:-7.104467778908159
            • 1:-2.069255332915922
        • properties: ocean
          • type:ocean
      • 385: Feature (Point, 1 property)
        • type:Feature
        • id:385
        • geometry: Point (-0.35, -5.39)
          • type:Point
          • coordinates: [-0.34687964345042477, -5.3934211234725735]
            • 0:-0.34687964345042477
            • 1:-5.3934211234725735
        • properties: ocean
          • type:ocean
      • 386: Feature (Point, 1 property)
        • type:Feature
        • id:386
        • geometry: Point (-12.68, -0.21)
          • type:Point
          • coordinates: [-12.682960168317436, -0.2078471371651031]
            • 0:-12.682960168317436
            • 1:-0.2078471371651031
        • properties: ocean
          • type:ocean
      • 387: Feature (Point, 1 property)
        • type:Feature
        • id:387
        • geometry: Point (-9.85, 0.21)
          • type:Point
          • coordinates: [-9.852480958166506, 0.20969199492777535]
            • 0:-9.852480958166506
            • 1:0.20969199492777535
        • properties: ocean
          • type:ocean
      • 388: Feature (Point, 1 property)
        • type:Feature
        • id:388
        • geometry: Point (2.60, 0.61)
          • type:Point
          • coordinates: [2.602878082184694, 0.6137992235463736]
            • 0:2.602878082184694
            • 1:0.6137992235463736
        • properties: ocean
          • type:ocean
      • 389: Feature (Point, 1 property)
        • type:Feature
        • id:389
        • geometry: Point (3.67, -4.89)
          • type:Point
          • coordinates: [3.6732078361573834, -4.8864178605107895]
            • 0:3.6732078361573834
            • 1:-4.8864178605107895
        • properties: ocean
          • type:ocean
      • 390: Feature (Point, 1 property)
        • type:Feature
        • id:390
        • geometry: Point (1.63, -7.24)
          • type:Point
          • coordinates: [1.6327537179229568, -7.239940768249723]
            • 0:1.6327537179229568
            • 1:-7.239940768249723
        • properties: ocean
          • type:ocean
      • 391: Feature (Point, 1 property)
        • type:Feature
        • id:391
        • geometry: Point (-7.48, -7.46)
          • type:Point
          • coordinates: [-7.478053408793995, -7.45958849609311]
            • 0:-7.478053408793995
            • 1:-7.45958849609311
        • properties: ocean
          • type:ocean
      • 392: Feature (Point, 1 property)
        • type:Feature
        • id:392
        • geometry: Point (-14.78, -7.06)
          • type:Point
          • coordinates: [-14.778785027136568, -7.062649089950595]
            • 0:-14.778785027136568
            • 1:-7.062649089950595
        • properties: ocean
          • type:ocean
      • 393: Feature (Point, 1 property)
        • type:Feature
        • id:393
        • geometry: Point (-12.80, 1.46)
          • type:Point
          • coordinates: [-12.801734778427605, 1.4606399845745137]
            • 0:-12.801734778427605
            • 1:1.4606399845745137
        • properties: ocean
          • type:ocean
      • 394: Feature (Point, 1 property)
        • type:Feature
        • id:394
        • geometry: Point (3.42, -3.06)
          • type:Point
          • coordinates: [3.4219866311008627, -3.059305615491905]
            • 0:3.4219866311008627
            • 1:-3.059305615491905
        • properties: ocean
          • type:ocean
      • 395: Feature (Point, 1 property)
        • type:Feature
        • id:395
        • geometry: Point (1.83, -0.32)
          • type:Point
          • coordinates: [1.8317809262100995, -0.31501049825147176]
            • 0:1.8317809262100995
            • 1:-0.31501049825147176
        • properties: ocean
          • type:ocean
      • 396: Feature (Point, 1 property)
        • type:Feature
        • id:396
        • geometry: Point (-7.82, -6.71)
          • type:Point
          • coordinates: [-7.815389602504347, -6.707266457929104]
            • 0:-7.815389602504347
            • 1:-6.707266457929104
        • properties: ocean
          • type:ocean
      • 397: Feature (Point, 1 property)
        • type:Feature
        • id:397
        • geometry: Point (4.14, -1.81)
          • type:Point
          • coordinates: [4.143397226825384, -1.8106714088945612]
            • 0:4.143397226825384
            • 1:-1.8106714088945612
        • properties: ocean
          • type:ocean
      • 398: Feature (Point, 1 property)
        • type:Feature
        • id:398
        • geometry: Point (-3.19, -6.44)
          • type:Point
          • coordinates: [-3.186748085133963, -6.441150591828409]
            • 0:-3.186748085133963
            • 1:-6.441150591828409
        • properties: ocean
          • type:ocean
      • 399: Feature (Point, 1 property)
        • type:Feature
        • id:399
        • geometry: Point (4.68, -6.17)
          • type:Point
          • coordinates: [4.680503104032639, -6.166182077252172]
            • 0:4.680503104032639
            • 1:-6.166182077252172
        • properties: ocean
          • type:ocean
      • 400: Feature (Point, 1 property)
        • type:Feature
        • id:400
        • geometry: Point (0.30, -3.03)
          • type:Point
          • coordinates: [0.2969770534950752, -3.0285577132125643]
            • 0:0.2969770534950752
            • 1:-3.0285577132125643
        • properties: ocean
          • type:ocean
      • 401: Feature (Point, 1 property)
        • type:Feature
        • id:401
        • geometry: Point (-9.69, -3.70)
          • type:Point
          • coordinates: [-9.690682606457008, -3.698236723215367]
            • 0:-9.690682606457008
            • 1:-3.698236723215367
        • properties: ocean
          • type:ocean
      • 402: Feature (Point, 1 property)
        • type:Feature
        • id:402
        • geometry: Point (2.47, -3.87)
          • type:Point
          • coordinates: [2.4745699492204967, -3.874308633417147]
            • 0:2.4745699492204967
            • 1:-3.874308633417147
        • properties: ocean
          • type:ocean
      • 403: Feature (Point, 1 property)
        • type:Feature
        • id:403
        • geometry: Point (-10.90, -1.81)
          • type:Point
          • coordinates: [-10.89585362074186, -1.8128052918528479]
            • 0:-10.89585362074186
            • 1:-1.8128052918528479
        • properties: ocean
          • type:ocean
      • 404: Feature (Point, 1 property)
        • type:Feature
        • id:404
        • geometry: Point (-4.48, 1.08)
          • type:Point
          • coordinates: [-4.482701372827812, 1.0751558653373092]
            • 0:-4.482701372827812
            • 1:1.0751558653373092
        • properties: ocean
          • type:ocean
      • 405: Feature (Point, 1 property)
        • type:Feature
        • id:405
        • geometry: Point (1.85, 0.96)
          • type:Point
          • coordinates: [1.8531961759281903, 0.9598942320241151]
            • 0:1.8531961759281903
            • 1:0.9598942320241151
        • properties: ocean
          • type:ocean
      • 406: Feature (Point, 1 property)
        • type:Feature
        • id:406
        • geometry: Point (-9.92, 1.46)
          • type:Point
          • coordinates: [-9.921307341047523, 1.4592259587175747]
            • 0:-9.921307341047523
            • 1:1.4592259587175747
        • properties: ocean
          • type:ocean
      • 407: Feature (Point, 1 property)
        • type:Feature
        • id:407
        • geometry: Point (-12.50, 2.19)
          • type:Point
          • coordinates: [-12.496979553864511, 2.1893445075171707]
            • 0:-12.496979553864511
            • 1:2.1893445075171707
        • properties: ocean
          • type:ocean
      • 408: Feature (Point, 1 property)
        • type:Feature
        • id:408
        • geometry: Point (3.50, -3.45)
          • type:Point
          • coordinates: [3.5024039650394494, -3.447557832379979]
            • 0:3.5024039650394494
            • 1:-3.447557832379979
        • properties: ocean
          • type:ocean
      • 409: Feature (Point, 1 property)
        • type:Feature
        • id:409
        • geometry: Point (-9.86, -5.62)
          • type:Point
          • coordinates: [-9.864763039177488, -5.621326328622992]
            • 0:-9.864763039177488
            • 1:-5.621326328622992
        • properties: ocean
          • type:ocean
      • 410: Feature (Point, 1 property)
        • type:Feature
        • id:410
        • geometry: Point (-14.91, -1.34)
          • type:Point
          • coordinates: [-14.910063859410176, -1.3423539608570112]
            • 0:-14.910063859410176
            • 1:-1.3423539608570112
        • properties: ocean
          • type:ocean
      • 411: Feature (Point, 1 property)
        • type:Feature
        • id:411
        • geometry: Point (0.13, -4.71)
          • type:Point
          • coordinates: [0.12823508488024352, -4.705133191950168]
            • 0:0.12823508488024352
            • 1:-4.705133191950168
        • properties: ocean
          • type:ocean
      • 412: Feature (Point, 1 property)
        • type:Feature
        • id:412
        • geometry: Point (-10.35, -3.96)
          • type:Point
          • coordinates: [-10.35139750375127, -3.960569470482974]
            • 0:-10.35139750375127
            • 1:-3.960569470482974
        • properties: ocean
          • type:ocean
      • 413: Feature (Point, 1 property)
        • type:Feature
        • id:413
        • geometry: Point (-11.37, -4.11)
          • type:Point
          • coordinates: [-11.372979507940386, -4.112988533624167]
            • 0:-11.372979507940386
            • 1:-4.112988533624167
        • properties: ocean
          • type:ocean
      • 414: Feature (Point, 1 property)
        • type:Feature
        • id:414
        • geometry: Point (-8.45, -1.55)
          • type:Point
          • coordinates: [-8.44917323634617, -1.553544665364811]
            • 0:-8.44917323634617
            • 1:-1.553544665364811
        • properties: ocean
          • type:ocean
      • 415: Feature (Point, 1 property)
        • type:Feature
        • id:415
        • geometry: Point (0.40, -0.39)
          • type:Point
          • coordinates: [0.401076320138507, -0.3915728837555647]
            • 0:0.401076320138507
            • 1:-0.3915728837555647
        • properties: ocean
          • type:ocean
      • 416: Feature (Point, 1 property)
        • type:Feature
        • id:416
        • geometry: Point (-1.59, -4.42)
          • type:Point
          • coordinates: [-1.5906490068998749, -4.424893032883192]
            • 0:-1.5906490068998749
            • 1:-4.424893032883192
        • properties: ocean
          • type:ocean
      • 417: Feature (Point, 1 property)
        • type:Feature
        • id:417
        • geometry: Point (-12.84, -0.65)
          • type:Point
          • coordinates: [-12.84459268302677, -0.6524127393760053]
            • 0:-12.84459268302677
            • 1:-0.6524127393760053
        • properties: ocean
          • type:ocean
      • 418: Feature (Point, 1 property)
        • type:Feature
        • id:418
        • geometry: Point (0.18, 0.68)
          • type:Point
          • coordinates: [0.1831307870643503, 0.6789676657763971]
            • 0:0.1831307870643503
            • 1:0.6789676657763971
        • properties: ocean
          • type:ocean
      • 419: Feature (Point, 1 property)
        • type:Feature
        • id:419
        • geometry: Point (-12.34, -8.44)
          • type:Point
          • coordinates: [-12.34315404598523, -8.436771609165307]
            • 0:-12.34315404598523
            • 1:-8.436771609165307
        • properties: ocean
          • type:ocean
      • 420: Feature (Point, 1 property)
        • type:Feature
        • id:420
        • geometry: Point (-8.45, -0.14)
          • type:Point
          • coordinates: [-8.445929441525172, -0.13602556737439442]
            • 0:-8.445929441525172
            • 1:-0.13602556737439442
        • properties: ocean
          • type:ocean
      • 421: Feature (Point, 1 property)
        • type:Feature
        • id:421
        • geometry: Point (-11.49, -8.20)
          • type:Point
          • coordinates: [-11.494172969023513, -8.198879872208614]
            • 0:-11.494172969023513
            • 1:-8.198879872208614
        • properties: ocean
          • type:ocean
      • 422: Feature (Point, 1 property)
        • type:Feature
        • id:422
        • geometry: Point (-7.38, 0.74)
          • type:Point
          • coordinates: [-7.384635032101888, 0.7366430671646347]
            • 0:-7.384635032101888
            • 1:0.7366430671646347
        • properties: ocean
          • type:ocean
      • 423: Feature (Point, 1 property)
        • type:Feature
        • id:423
        • geometry: Point (-10.08, -4.23)
          • type:Point
          • coordinates: [-10.083655819780418, -4.231035561793329]
            • 0:-10.083655819780418
            • 1:-4.231035561793329
        • properties: ocean
          • type:ocean
      • 424: Feature (Point, 1 property)
        • type:Feature
        • id:424
        • geometry: Point (-0.43, -2.58)
          • type:Point
          • coordinates: [-0.42698672588880515, -2.5814979254623185]
            • 0:-0.42698672588880515
            • 1:-2.5814979254623185
        • properties: ocean
          • type:ocean
      • 425: Feature (Point, 1 property)
        • type:Feature
        • id:425
        • geometry: Point (-1.76, -8.73)
          • type:Point
          • coordinates: [-1.758853166771066, -8.733096732242883]
            • 0:-1.758853166771066
            • 1:-8.733096732242883
        • properties: ocean
          • type:ocean
      • 426: Feature (Point, 1 property)
        • type:Feature
        • id:426
        • geometry: Point (-0.87, -1.36)
          • type:Point
          • coordinates: [-0.8722584634454263, -1.3565066778127584]
            • 0:-0.8722584634454263
            • 1:-1.3565066778127584
        • properties: ocean
          • type:ocean
      • 427: Feature (Point, 1 property)
        • type:Feature
        • id:427
        • geometry: Point (-0.24, 1.92)
          • type:Point
          • coordinates: [-0.23598685550478646, 1.9207686167823301]
            • 0:-0.23598685550478646
            • 1:1.9207686167823301
        • properties: ocean
          • type:ocean
      • 428: Feature (Point, 1 property)
        • type:Feature
        • id:428
        • geometry: Point (-8.31, -0.03)
          • type:Point
          • coordinates: [-8.307600851484146, -0.026201715823991535]
            • 0:-8.307600851484146
            • 1:-0.026201715823991535
        • properties: ocean
          • type:ocean
      • 429: Feature (Point, 1 property)
        • type:Feature
        • id:429
        • geometry: Point (-4.97, -5.45)
          • type:Point
          • coordinates: [-4.973837076287464, -5.447756502609762]
            • 0:-4.973837076287464
            • 1:-5.447756502609762
        • properties: ocean
          • type:ocean
      • 430: Feature (Point, 1 property)
        • type:Feature
        • id:430
        • geometry: Point (-12.15, -7.36)
          • type:Point
          • coordinates: [-12.154522009119093, -7.36200215227415]
            • 0:-12.154522009119093
            • 1:-7.36200215227415
        • properties: ocean
          • type:ocean
      • 431: Feature (Point, 1 property)
        • type:Feature
        • id:431
        • geometry: Point (-3.21, -7.08)
          • type:Point
          • coordinates: [-3.213710318748178, -7.083392650967902]
            • 0:-3.213710318748178
            • 1:-7.083392650967902
        • properties: ocean
          • type:ocean
      • 432: Feature (Point, 1 property)
        • type:Feature
        • id:432
        • geometry: Point (-4.91, -5.48)
          • type:Point
          • coordinates: [-4.908012415614659, -5.4838926825549805]
            • 0:-4.908012415614659
            • 1:-5.4838926825549805
        • properties: ocean
          • type:ocean
      • 433: Feature (Point, 1 property)
        • type:Feature
        • id:433
        • geometry: Point (-3.60, -0.59)
          • type:Point
          • coordinates: [-3.598926189076672, -0.5889505749448561]
            • 0:-3.598926189076672
            • 1:-0.5889505749448561
        • properties: ocean
          • type:ocean
      • 434: Feature (Point, 1 property)
        • type:Feature
        • id:434
        • geometry: Point (-4.36, -4.09)
          • type:Point
          • coordinates: [-4.3559505505229925, -4.085028016503481]
            • 0:-4.3559505505229925
            • 1:-4.085028016503481
        • properties: ocean
          • type:ocean
      • 435: Feature (Point, 1 property)
        • type:Feature
        • id:435
        • geometry: Point (-4.17, -7.27)
          • type:Point
          • coordinates: [-4.166760166230417, -7.266494418555554]
            • 0:-4.166760166230417
            • 1:-7.266494418555554
        • properties: ocean
          • type:ocean
      • 436: Feature (Point, 1 property)
        • type:Feature
        • id:436
        • geometry: Point (-5.25, -4.17)
          • type:Point
          • coordinates: [-5.250906159205608, -4.1685184612259585]
            • 0:-5.250906159205608
            • 1:-4.1685184612259585
        • properties: ocean
          • type:ocean
      • 437: Feature (Point, 1 property)
        • type:Feature
        • id:437
        • geometry: Point (-13.25, -1.28)
          • type:Point
          • coordinates: [-13.247617145849834, -1.2786140397372838]
            • 0:-13.247617145849834
            • 1:-1.2786140397372838
        • properties: ocean
          • type:ocean
      • 438: Feature (Point, 1 property)
        • type:Feature
        • id:438
        • geometry: Point (-6.31, 2.15)
          • type:Point
          • coordinates: [-6.311518376514357, 2.147391264625071]
            • 0:-6.311518376514357
            • 1:2.147391264625071
        • properties: ocean
          • type:ocean
      • 439: Feature (Point, 1 property)
        • type:Feature
        • id:439
        • geometry: Point (1.57, -1.36)
          • type:Point
          • coordinates: [1.5696727092460985, -1.3559519340101691]
            • 0:1.5696727092460985
            • 1:-1.3559519340101691
        • properties: ocean
          • type:ocean
      • 440: Feature (Point, 1 property)
        • type:Feature
        • id:440
        • geometry: Point (-6.24, -1.08)
          • type:Point
          • coordinates: [-6.244210926208814, -1.082706341726319]
            • 0:-6.244210926208814
            • 1:-1.082706341726319
        • properties: ocean
          • type:ocean
      • 441: Feature (Point, 1 property)
        • type:Feature
        • id:441
        • geometry: Point (-9.08, -4.45)
          • type:Point
          • coordinates: [-9.076557925220936, -4.446032377666485]
            • 0:-9.076557925220936
            • 1:-4.446032377666485
        • properties: ocean
          • type:ocean
      • 442: Feature (Point, 1 property)
        • type:Feature
        • id:442
        • geometry: Point (-4.03, -4.67)
          • type:Point
          • coordinates: [-4.030884246023767, -4.665902305138177]
            • 0:-4.030884246023767
            • 1:-4.665902305138177
        • properties: ocean
          • type:ocean
      • 443: Feature (Point, 1 property)
        • type:Feature
        • id:443
        • geometry: Point (-2.55, -3.10)
          • type:Point
          • coordinates: [-2.546342378981184, -3.0973020027605838]
            • 0:-2.546342378981184
            • 1:-3.0973020027605838
        • properties: ocean
          • type:ocean
      • 444: Feature (Point, 1 property)
        • type:Feature
        • id:444
        • geometry: Point (-9.28, -1.04)
          • type:Point
          • coordinates: [-9.27944177529792, -1.0431946887269028]
            • 0:-9.27944177529792
            • 1:-1.0431946887269028
        • properties: ocean
          • type:ocean
      • 445: Feature (Point, 1 property)
        • type:Feature
        • id:445
        • geometry: Point (-10.61, -2.15)
          • type:Point
          • coordinates: [-10.613044715767002, -2.152231572047396]
            • 0:-10.613044715767002
            • 1:-2.152231572047396
        • properties: ocean
          • type:ocean
      • 446: Feature (Point, 1 property)
        • type:Feature
        • id:446
        • geometry: Point (-7.83, 0.58)
          • type:Point
          • coordinates: [-7.831240202785244, 0.579794236334029]
            • 0:-7.831240202785244
            • 1:0.579794236334029
        • properties: ocean
          • type:ocean
      • 447: Feature (Point, 1 property)
        • type:Feature
        • id:447
        • geometry: Point (-7.81, -1.93)
          • type:Point
          • coordinates: [-7.8110689063415535, -1.9266895652687879]
            • 0:-7.8110689063415535
            • 1:-1.9266895652687879
        • properties: ocean
          • type:ocean
      • 448: Feature (Point, 1 property)
        • type:Feature
        • id:448
        • geometry: Point (-9.40, 0.38)
          • type:Point
          • coordinates: [-9.396104373827708, 0.3765479088336454]
            • 0:-9.396104373827708
            • 1:0.3765479088336454
        • properties: ocean
          • type:ocean
      • 449: Feature (Point, 1 property)
        • type:Feature
        • id:449
        • geometry: Point (-3.43, 1.55)
          • type:Point
          • coordinates: [-3.431027128988253, 1.546814840563113]
            • 0:-3.431027128988253
            • 1:1.546814840563113
        • properties: ocean
          • type:ocean
      • 450: Feature (Point, 1 property)
        • type:Feature
        • id:450
        • geometry: Point (-6.86, -5.53)
          • type:Point
          • coordinates: [-6.856674837467246, -5.531181503240113]
            • 0:-6.856674837467246
            • 1:-5.531181503240113
        • properties: ocean
          • type:ocean
      • 451: Feature (Point, 1 property)
        • type:Feature
        • id:451
        • geometry: Point (-14.39, -1.54)
          • type:Point
          • coordinates: [-14.393876764772207, -1.5355934287038282]
            • 0:-14.393876764772207
            • 1:-1.5355934287038282
        • properties: ocean
          • type:ocean
      • 452: Feature (Point, 1 property)
        • type:Feature
        • id:452
        • geometry: Point (-9.88, -0.61)
          • type:Point
          • coordinates: [-9.87810287991772, -0.6080514434165581]
            • 0:-9.87810287991772
            • 1:-0.6080514434165581
        • properties: ocean
          • type:ocean
      • 453: Feature (Point, 1 property)
        • type:Feature
        • id:453
        • geometry: Point (4.16, -7.72)
          • type:Point
          • coordinates: [4.155141869789636, -7.723481836597364]
            • 0:4.155141869789636
            • 1:-7.723481836597364
        • properties: ocean
          • type:ocean
      • 454: Feature (Point, 1 property)
        • type:Feature
        • id:454
        • geometry: Point (-0.67, 1.78)
          • type:Point
          • coordinates: [-0.6721291130248537, 1.7767549018825537]
            • 0:-0.6721291130248537
            • 1:1.7767549018825537
        • properties: ocean
          • type:ocean
      • 455: Feature (Point, 1 property)
        • type:Feature
        • id:455
        • geometry: Point (-2.00, -8.32)
          • type:Point
          • coordinates: [-1.9992674245514441, -8.31675401923661]
            • 0:-1.9992674245514441
            • 1:-8.31675401923661
        • properties: ocean
          • type:ocean
      • 456: Feature (Point, 1 property)
        • type:Feature
        • id:456
        • geometry: Point (-9.23, -8.61)
          • type:Point
          • coordinates: [-9.225019568390886, -8.61299274162438]
            • 0:-9.225019568390886
            • 1:-8.61299274162438
        • properties: ocean
          • type:ocean
      • 457: Feature (Point, 1 property)
        • type:Feature
        • id:457
        • geometry: Point (-4.50, -5.47)
          • type:Point
          • coordinates: [-4.500722492340078, -5.4693884541335125]
            • 0:-4.500722492340078
            • 1:-5.4693884541335125
        • properties: ocean
          • type:ocean
      • 458: Feature (Point, 1 property)
        • type:Feature
        • id:458
        • geometry: Point (-8.22, -0.84)
          • type:Point
          • coordinates: [-8.222806655567718, -0.8415143927679577]
            • 0:-8.222806655567718
            • 1:-0.8415143927679577
        • properties: ocean
          • type:ocean
      • 459: Feature (Point, 1 property)
        • type:Feature
        • id:459
        • geometry: Point (2.72, -0.47)
          • type:Point
          • coordinates: [2.721970249482629, -0.468306703214763]
            • 0:2.721970249482629
            • 1:-0.468306703214763
        • properties: ocean
          • type:ocean
      • 460: Feature (Point, 1 property)
        • type:Feature
        • id:460
        • geometry: Point (4.91, -6.65)
          • type:Point
          • coordinates: [4.909904219611571, -6.646265967495634]
            • 0:4.909904219611571
            • 1:-6.646265967495634
        • properties: ocean
          • type:ocean
      • 461: Feature (Point, 1 property)
        • type:Feature
        • id:461
        • geometry: Point (5.71, -4.23)
          • type:Point
          • coordinates: [5.705818968814826, -4.231620209460666]
            • 0:5.705818968814826
            • 1:-4.231620209460666
        • properties: ocean
          • type:ocean
      • 462: Feature (Point, 1 property)
        • type:Feature
        • id:462
        • geometry: Point (-6.53, -8.48)
          • type:Point
          • coordinates: [-6.532145518266806, -8.480661412699988]
            • 0:-6.532145518266806
            • 1:-8.480661412699988
        • properties: ocean
          • type:ocean
      • 463: Feature (Point, 1 property)
        • type:Feature
        • id:463
        • geometry: Point (-12.51, -7.51)
          • type:Point
          • coordinates: [-12.508506355679406, -7.514643487648808]
            • 0:-12.508506355679406
            • 1:-7.514643487648808
        • properties: ocean
          • type:ocean
      • 464: Feature (Point, 1 property)
        • type:Feature
        • id:464
        • geometry: Point (-8.69, -3.15)
          • type:Point
          • coordinates: [-8.685904115924052, -3.1506624771548863]
            • 0:-8.685904115924052
            • 1:-3.1506624771548863
        • properties: ocean
          • type:ocean
      • 465: Feature (Point, 1 property)
        • type:Feature
        • id:465
        • geometry: Point (-10.82, -0.83)
          • type:Point
          • coordinates: [-10.816787372602876, -0.8342115358912932]
            • 0:-10.816787372602876
            • 1:-0.8342115358912932
        • properties: ocean
          • type:ocean
      • 466: Feature (Point, 1 property)
        • type:Feature
        • id:466
        • geometry: Point (2.82, -2.71)
          • type:Point
          • coordinates: [2.8181020070318894, -2.710762341994873]
            • 0:2.8181020070318894
            • 1:-2.710762341994873
        • properties: ocean
          • type:ocean
      • 467: Feature (Point, 1 property)
        • type:Feature
        • id:467
        • geometry: Point (-6.70, -1.70)
          • type:Point
          • coordinates: [-6.698632090214639, -1.701843498296366]
            • 0:-6.698632090214639
            • 1:-1.701843498296366
        • properties: ocean
          • type:ocean
      • 468: Feature (Point, 1 property)
        • type:Feature
        • id:468
        • geometry: Point (-4.20, -0.05)
          • type:Point
          • coordinates: [-4.197424671471794, -0.05250448147297831]
            • 0:-4.197424671471794
            • 1:-0.05250448147297831
        • properties: ocean
          • type:ocean
      • 469: Feature (Point, 1 property)
        • type:Feature
        • id:469
        • geometry: Point (-10.48, -5.75)
          • type:Point
          • coordinates: [-10.478344997081942, -5.746805569886642]
            • 0:-10.478344997081942
            • 1:-5.746805569886642
        • properties: ocean
          • type:ocean
      • 470: Feature (Point, 1 property)
        • type:Feature
        • id:470
        • geometry: Point (-1.26, -3.25)
          • type:Point
          • coordinates: [-1.2590319011044078, -3.2507901952206915]
            • 0:-1.2590319011044078
            • 1:-3.2507901952206915
        • properties: ocean
          • type:ocean
      • 471: Feature (Point, 1 property)
        • type:Feature
        • id:471
        • geometry: Point (-7.08, -3.55)
          • type:Point
          • coordinates: [-7.077972615425579, -3.551762235866579]
            • 0:-7.077972615425579
            • 1:-3.551762235866579
        • properties: ocean
          • type:ocean
      • 472: Feature (Point, 1 property)
        • type:Feature
        • id:472
        • geometry: Point (2.12, 0.46)
          • type:Point
          • coordinates: [2.1206112633175023, 0.46057130456816237]
            • 0:2.1206112633175023
            • 1:0.46057130456816237
        • properties: ocean
          • type:ocean
      • 473: Feature (Point, 1 property)
        • type:Feature
        • id:473
        • geometry: Point (1.57, -7.92)
          • type:Point
          • coordinates: [1.5700146517307605, -7.923400608146369]
            • 0:1.5700146517307605
            • 1:-7.923400608146369
        • properties: ocean
          • type:ocean
      • 474: Feature (Point, 1 property)
        • type:Feature
        • id:474
        • geometry: Point (-9.11, -5.75)
          • type:Point
          • coordinates: [-9.10691745418092, -5.7458950676666]
            • 0:-9.10691745418092
            • 1:-5.7458950676666
        • properties: ocean
          • type:ocean
      • 475: Feature (Point, 1 property)
        • type:Feature
        • id:475
        • geometry: Point (-14.91, -7.03)
          • type:Point
          • coordinates: [-14.905393992925308, -7.02984521922163]
            • 0:-14.905393992925308
            • 1:-7.02984521922163
        • properties: ocean
          • type:ocean
      • 476: Feature (Point, 1 property)
        • type:Feature
        • id:476
        • geometry: Point (-4.12, 0.19)
          • type:Point
          • coordinates: [-4.123965563871558, 0.18823380154674033]
            • 0:-4.123965563871558
            • 1:0.18823380154674033
        • properties: ocean
          • type:ocean
      • 477: Feature (Point, 1 property)
        • type:Feature
        • id:477
        • geometry: Point (-2.25, -1.26)
          • type:Point
          • coordinates: [-2.24939087845316, -1.2550926720684128]
            • 0:-2.24939087845316
            • 1:-1.2550926720684128
        • properties: ocean
          • type:ocean
      • 478: Feature (Point, 1 property)
        • type:Feature
        • id:478
        • geometry: Point (-6.46, -7.82)
          • type:Point
          • coordinates: [-6.457394854979214, -7.8150708224025145]
            • 0:-6.457394854979214
            • 1:-7.8150708224025145
        • properties: ocean
          • type:ocean
      • 479: Feature (Point, 1 property)
        • type:Feature
        • id:479
        • geometry: Point (-13.48, -1.38)
          • type:Point
          • coordinates: [-13.479512316069767, -1.3778172309269394]
            • 0:-13.479512316069767
            • 1:-1.3778172309269394
        • properties: ocean
          • type:ocean
      • 480: Feature (Point, 1 property)
        • type:Feature
        • id:480
        • geometry: Point (-2.60, -0.26)
          • type:Point
          • coordinates: [-2.6035466307492277, -0.25849346789434596]
            • 0:-2.6035466307492277
            • 1:-0.25849346789434596
        • properties: ocean
          • type:ocean
      • 481: Feature (Point, 1 property)
        • type:Feature
        • id:481
        • geometry: Point (-14.19, -5.99)
          • type:Point
          • coordinates: [-14.190680998671775, -5.988179966718621]
            • 0:-14.190680998671775
            • 1:-5.988179966718621
        • properties: ocean
          • type:ocean
      • 482: Feature (Point, 1 property)
        • type:Feature
        • id:482
        • geometry: Point (3.92, -1.01)
          • type:Point
          • coordinates: [3.9158858059470942, -1.0093322517569077]
            • 0:3.9158858059470942
            • 1:-1.0093322517569077
        • properties: ocean
          • type:ocean
      • 483: Feature (Point, 1 property)
        • type:Feature
        • id:483
        • geometry: Point (1.79, -4.67)
          • type:Point
          • coordinates: [1.79070400303867, -4.665691551457924]
            • 0:1.79070400303867
            • 1:-4.665691551457924
        • properties: ocean
          • type:ocean
      • 484: Feature (Point, 1 property)
        • type:Feature
        • id:484
        • geometry: Point (5.09, -3.22)
          • type:Point
          • coordinates: [5.088750374602131, -3.21671360341047]
            • 0:5.088750374602131
            • 1:-3.21671360341047
        • properties: ocean
          • type:ocean
      • 485: Feature (Point, 1 property)
        • type:Feature
        • id:485
        • geometry: Point (-14.99, 0.26)
          • type:Point
          • coordinates: [-14.99401439167306, 0.2641137061845625]
            • 0:-14.99401439167306
            • 1:0.2641137061845625
        • properties: ocean
          • type:ocean
      • 486: Feature (Point, 1 property)
        • type:Feature
        • id:486
        • geometry: Point (-10.85, -2.14)
          • type:Point
          • coordinates: [-10.847720746530088, -2.1353571577676553]
            • 0:-10.847720746530088
            • 1:-2.1353571577676553
        • properties: ocean
          • type:ocean
      • 487: Feature (Point, 1 property)
        • type:Feature
        • id:487
        • geometry: Point (5.58, -5.46)
          • type:Point
          • coordinates: [5.584778021894568, -5.457230740286838]
            • 0:5.584778021894568
            • 1:-5.457230740286838
        • properties: ocean
          • type:ocean
      • 488: Feature (Point, 1 property)
        • type:Feature
        • id:488
        • geometry: Point (3.23, -4.46)
          • type:Point
          • coordinates: [3.23279483702196, -4.4615148258598]
            • 0:3.23279483702196
            • 1:-4.4615148258598
        • properties: ocean
          • type:ocean
      • 489: Feature (Point, 1 property)
        • type:Feature
        • id:489
        • geometry: Point (-11.29, -1.08)
          • type:Point
          • coordinates: [-11.289828730816339, -1.0765222005774429]
            • 0:-11.289828730816339
            • 1:-1.0765222005774429
        • properties: ocean
          • type:ocean
      • 490: Feature (Point, 1 property)
        • type:Feature
        • id:490
        • geometry: Point (2.13, -0.53)
          • type:Point
          • coordinates: [2.1293727382822594, -0.5300459380371126]
            • 0:2.1293727382822594
            • 1:-0.5300459380371126
        • properties: ocean
          • type:ocean
      • 491: Feature (Point, 1 property)
        • type:Feature
        • id:491
        • geometry: Point (-4.09, -3.66)
          • type:Point
          • coordinates: [-4.08920581189241, -3.6618584291394813]
            • 0:-4.08920581189241
            • 1:-3.6618584291394813
        • properties: ocean
          • type:ocean
      • 492: Feature (Point, 1 property)
        • type:Feature
        • id:492
        • geometry: Point (-4.21, -8.49)
          • type:Point
          • coordinates: [-4.213910764606244, -8.488630551714856]
            • 0:-4.213910764606244
            • 1:-8.488630551714856
        • properties: ocean
          • type:ocean
      • 493: Feature (Point, 1 property)
        • type:Feature
        • id:493
        • geometry: Point (-15.22, -6.26)
          • type:Point
          • coordinates: [-15.223643438222808, -6.260911512923685]
            • 0:-15.223643438222808
            • 1:-6.260911512923685
        • properties: ocean
          • type:ocean
      • 494: Feature (Point, 1 property)
        • type:Feature
        • id:494
        • geometry: Point (-8.80, -1.56)
          • type:Point
          • coordinates: [-8.803488071626036, -1.5645505953905416]
            • 0:-8.803488071626036
            • 1:-1.5645505953905416
        • properties: ocean
          • type:ocean
      • 495: Feature (Point, 1 property)
        • type:Feature
        • id:495
        • geometry: Point (3.78, -1.25)
          • type:Point
          • coordinates: [3.780189881965067, -1.2468992439580588]
            • 0:3.780189881965067
            • 1:-1.2468992439580588
        • properties: ocean
          • type:ocean
      • 496: Feature (Point, 1 property)
        • type:Feature
        • id:496
        • geometry: Point (1.90, -3.36)
          • type:Point
          • coordinates: [1.8968543811368608, -3.355258535596116]
            • 0:1.8968543811368608
            • 1:-3.355258535596116
        • properties: ocean
          • type:ocean
      • 497: Feature (Point, 1 property)
        • type:Feature
        • id:497
        • geometry: Point (-4.93, 0.75)
          • type:Point
          • coordinates: [-4.932396298330802, 0.7547400022059664]
            • 0:-4.932396298330802
            • 1:0.7547400022059664
        • properties: ocean
          • type:ocean
      • 498: Feature (Point, 1 property)
        • type:Feature
        • id:498
        • geometry: Point (-12.57, -5.64)
          • type:Point
          • coordinates: [-12.572355704949992, -5.6435126567702945]
            • 0:-12.572355704949992
            • 1:-5.6435126567702945
        • properties: ocean
          • type:ocean
      • 499: Feature (Point, 1 property)
        • type:Feature
        • id:499
        • geometry: Point (-7.33, -1.93)
          • type:Point
          • coordinates: [-7.32544462191146, -1.926486240582249]
            • 0:-7.32544462191146
            • 1:-1.926486240582249
        • properties: ocean
          • type:ocean
      • 500: Feature (Point, 1 property)
        • type:Feature
        • id:500
        • geometry: Point (-9.52, -1.33)
          • type:Point
          • coordinates: [-9.523544055713108, -1.330749308373857]
            • 0:-9.523544055713108
            • 1:-1.330749308373857
        • properties: ocean
          • type:ocean
      • 501: Feature (Point, 2 properties)
        • type:Feature
        • id:501
        • geometry: Point (-14.55, -7.79)
          • type:Point
          • coordinates: [-14.5457063938476, -7.794250844170092]
            • 0:-14.5457063938476
            • 1:-7.794250844170092
        • properties: ocean
          • type:ocean
          • Map:80
      • 502: Feature (Point, 1 property)
        • type:Feature
        • id:502
        • geometry: Point (-5.56, -2.31)
          • type:Point
          • coordinates: [-5.562791448500785, -2.307144121242912]
            • 0:-5.562791448500785
            • 1:-2.307144121242912
        • properties: ocean
          • type:ocean
      • 503: Feature (Point, 1 property)
        • type:Feature
        • id:503
        • geometry: Point (5.37, -5.89)
          • type:Point
          • coordinates: [5.371587339192803, -5.888730795105104]
            • 0:5.371587339192803
            • 1:-5.888730795105104
        • properties: ocean
          • type:ocean
      • 504: Feature (Point, 1 property)
        • type:Feature
        • id:504
        • geometry: Point (-14.49, -0.71)
          • type:Point
          • coordinates: [-14.489227944981241, -0.7149338346932024]
            • 0:-14.489227944981241
            • 1:-0.7149338346932024
        • properties: ocean
          • type:ocean
      • 505: Feature (Point, 1 property)
        • type:Feature
        • id:505
        • geometry: Point (-8.31, -4.52)
          • type:Point
          • coordinates: [-8.312182502279144, -4.5233108873111965]
            • 0:-8.312182502279144
            • 1:-4.5233108873111965
        • properties: ocean
          • type:ocean
      • 506: Feature (Point, 1 property)
        • type:Feature
        • id:506
        • geometry: Point (-11.59, -0.73)
          • type:Point
          • coordinates: [-11.59406243604651, -0.7310560689675588]
            • 0:-11.59406243604651
            • 1:-0.7310560689675588
        • properties: ocean
          • type:ocean
      • 507: Feature (Point, 1 property)
        • type:Feature
        • id:507
        • geometry: Point (1.26, -3.98)
          • type:Point
          • coordinates: [1.2551462946440792, -3.983098387829197]
            • 0:1.2551462946440792
            • 1:-3.983098387829197
        • properties: ocean
          • type:ocean
      • 508: Feature (Point, 1 property)
        • type:Feature
        • id:508
        • geometry: Point (-1.67, -3.58)
          • type:Point
          • coordinates: [-1.6673987209201357, -3.575633126563766]
            • 0:-1.6673987209201357
            • 1:-3.575633126563766
        • properties: ocean
          • type:ocean
      • 509: Feature (Point, 1 property)
        • type:Feature
        • id:509
        • geometry: Point (-3.06, -7.83)
          • type:Point
          • coordinates: [-3.055617071710213, -7.828570083538572]
            • 0:-3.055617071710213
            • 1:-7.828570083538572
        • properties: ocean
          • type:ocean
      • 510: Feature (Point, 1 property)
        • type:Feature
        • id:510
        • geometry: Point (-15.37, -2.99)
          • type:Point
          • coordinates: [-15.370083456254381, -2.9904789739716016]
            • 0:-15.370083456254381
            • 1:-2.9904789739716016
        • properties: ocean
          • type:ocean
      • 511: Feature (Point, 1 property)
        • type:Feature
        • id:511
        • geometry: Point (-4.22, 1.72)
          • type:Point
          • coordinates: [-4.22044049048511, 1.7191854408560405]
            • 0:-4.22044049048511
            • 1:1.7191854408560405
        • properties: ocean
          • type:ocean
      • 512: Feature (Point, 1 property)
        • type:Feature
        • id:512
        • geometry: Point (3.91, -3.06)
          • type:Point
          • coordinates: [3.914531855008059, -3.061020525056674]
            • 0:3.914531855008059
            • 1:-3.061020525056674
        • properties: ocean
          • type:ocean
      • 513: Feature (Point, 1 property)
        • type:Feature
        • id:513
        • geometry: Point (-11.48, -5.69)
          • type:Point
          • coordinates: [-11.477656435479274, -5.693464188138038]
            • 0:-11.477656435479274
            • 1:-5.693464188138038
        • properties: ocean
          • type:ocean
      • 514: Feature (Point, 1 property)
        • type:Feature
        • id:514
        • geometry: Point (3.41, -3.79)
          • type:Point
          • coordinates: [3.4073234748139645, -3.785039556641165]
            • 0:3.4073234748139645
            • 1:-3.785039556641165
        • properties: ocean
          • type:ocean
      • 515: Feature (Point, 1 property)
        • type:Feature
        • id:515
        • geometry: Point (-12.81, -4.85)
          • type:Point
          • coordinates: [-12.811118196584824, -4.84700281723881]
            • 0:-12.811118196584824
            • 1:-4.84700281723881
        • properties: ocean
          • type:ocean
      • 516: Feature (Point, 1 property)
        • type:Feature
        • id:516
        • geometry: Point (-11.65, -7.52)
          • type:Point
          • coordinates: [-11.646762193693046, -7.516090217227504]
            • 0:-11.646762193693046
            • 1:-7.516090217227504
        • properties: ocean
          • type:ocean
      • 517: Feature (Point, 1 property)
        • type:Feature
        • id:517
        • geometry: Point (-11.98, -5.45)
          • type:Point
          • coordinates: [-11.980524046367602, -5.449761666112995]
            • 0:-11.980524046367602
            • 1:-5.449761666112995
        • properties: ocean
          • type:ocean
      • 518: Feature (Point, 1 property)
        • type:Feature
        • id:518
        • geometry: Point (-11.97, -3.18)
          • type:Point
          • coordinates: [-11.973115187724419, -3.1840126834693594]
            • 0:-11.973115187724419
            • 1:-3.1840126834693594
        • properties: ocean
          • type:ocean
      • 519: Feature (Point, 1 property)
        • type:Feature
        • id:519
        • geometry: Point (-12.62, -5.79)
          • type:Point
          • coordinates: [-12.62421450333649, -5.788030922580528]
            • 0:-12.62421450333649
            • 1:-5.788030922580528
        • properties: ocean
          • type:ocean
      • 520: Feature (Point, 1 property)
        • type:Feature
        • id:520
        • geometry: Point (0.04, -0.99)
          • type:Point
          • coordinates: [0.03733993895008344, -0.9944979715417964]
            • 0:0.03733993895008344
            • 1:-0.9944979715417964
        • properties: ocean
          • type:ocean
      • 521: Feature (Point, 1 property)
        • type:Feature
        • id:521
        • geometry: Point (-7.17, -6.94)
          • type:Point
          • coordinates: [-7.174685804045772, -6.937544537929997]
            • 0:-7.174685804045772
            • 1:-6.937544537929997
        • properties: ocean
          • type:ocean
      • 522: Feature (Point, 1 property)
        • type:Feature
        • id:522
        • geometry: Point (-4.72, -2.25)
          • type:Point
          • coordinates: [-4.724331257841259, -2.245765159945552]
            • 0:-4.724331257841259
            • 1:-2.245765159945552
        • properties: ocean
          • type:ocean
      • 523: Feature (Point, 1 property)
        • type:Feature
        • id:523
        • geometry: Point (-11.24, 0.08)
          • type:Point
          • coordinates: [-11.244935877331596, 0.08298885156848933]
            • 0:-11.244935877331596
            • 1:0.08298885156848933
        • properties: ocean
          • type:ocean
      • 524: Feature (Point, 1 property)
        • type:Feature
        • id:524
        • geometry: Point (-2.33, 1.88)
          • type:Point
          • coordinates: [-2.328926892525882, 1.8765807126392697]
            • 0:-2.328926892525882
            • 1:1.8765807126392697
        • properties: ocean
          • type:ocean
      • 525: Feature (Point, 1 property)
        • type:Feature
        • id:525
        • geometry: Point (-11.11, -1.46)
          • type:Point
          • coordinates: [-11.11415950592648, -1.459508059616843]
            • 0:-11.11415950592648
            • 1:-1.459508059616843
        • properties: ocean
          • type:ocean
      • 526: Feature (Point, 1 property)
        • type:Feature
        • id:526
        • geometry: Point (-2.43, -5.56)
          • type:Point
          • coordinates: [-2.4268542437364875, -5.563345863729389]
            • 0:-2.4268542437364875
            • 1:-5.563345863729389
        • properties: ocean
          • type:ocean
      • 527: Feature (Point, 1 property)
        • type:Feature
        • id:527
        • geometry: Point (-5.73, -3.48)
          • type:Point
          • coordinates: [-5.731659484152502, -3.4814396179761866]
            • 0:-5.731659484152502
            • 1:-3.4814396179761866
        • properties: ocean
          • type:ocean
      • 528: Feature (Point, 1 property)
        • type:Feature
        • id:528
        • geometry: Point (-5.85, -2.90)
          • type:Point
          • coordinates: [-5.84871463458983, -2.8998522700567477]
            • 0:-5.84871463458983
            • 1:-2.8998522700567477
        • properties: ocean
          • type:ocean
      • 529: Feature (Point, 1 property)
        • type:Feature
        • id:529
        • geometry: Point (-8.90, 2.23)
          • type:Point
          • coordinates: [-8.896983298141642, 2.225308428623993]
            • 0:-8.896983298141642
            • 1:2.225308428623993
        • properties: ocean
          • type:ocean
      • 530: Feature (Point, 1 property)
        • type:Feature
        • id:530
        • geometry: Point (2.63, -7.25)
          • type:Point
          • coordinates: [2.627955566363895, -7.251607330645279]
            • 0:2.627955566363895
            • 1:-7.251607330645279
        • properties: ocean
          • type:ocean
      • 531: Feature (Point, 1 property)
        • type:Feature
        • id:531
        • geometry: Point (-7.75, -7.27)
          • type:Point
          • coordinates: [-7.750786878550137, -7.267662044701464]
            • 0:-7.750786878550137
            • 1:-7.267662044701464
        • properties: ocean
          • type:ocean
      • 532: Feature (Point, 1 property)
        • type:Feature
        • id:532
        • geometry: Point (-9.87, -7.18)
          • type:Point
          • coordinates: [-9.868110990401059, -7.182853265470408]
            • 0:-9.868110990401059
            • 1:-7.182853265470408
        • properties: ocean
          • type:ocean
      • 533: Feature (Point, 1 property)
        • type:Feature
        • id:533
        • geometry: Point (-8.51, -7.73)
          • type:Point
          • coordinates: [-8.508344972464066, -7.725986147366956]
            • 0:-8.508344972464066
            • 1:-7.725986147366956
        • properties: ocean
          • type:ocean
      • 534: Feature (Point, 1 property)
        • type:Feature
        • id:534
        • geometry: Point (3.72, -6.99)
          • type:Point
          • coordinates: [3.7198002062974194, -6.994342567922781]
            • 0:3.7198002062974194
            • 1:-6.994342567922781
        • properties: ocean
          • type:ocean
      • 535: Feature (Point, 1 property)
        • type:Feature
        • id:535
        • geometry: Point (-7.34, -3.97)
          • type:Point
          • coordinates: [-7.343997418487628, -3.97420460048066]
            • 0:-7.343997418487628
            • 1:-3.97420460048066
        • properties: ocean
          • type:ocean
      • 536: Feature (Point, 1 property)
        • type:Feature
        • id:536
        • geometry: Point (-0.84, -0.98)
          • type:Point
          • coordinates: [-0.8415116096422646, -0.9847020780815017]
            • 0:-0.8415116096422646
            • 1:-0.9847020780815017
        • properties: ocean
          • type:ocean
      • 537: Feature (Point, 1 property)
        • type:Feature
        • id:537
        • geometry: Point (2.75, 0.31)
          • type:Point
          • coordinates: [2.750484572167164, 0.31108886455888723]
            • 0:2.750484572167164
            • 1:0.31108886455888723
        • properties: ocean
          • type:ocean
      • 538: Feature (Point, 1 property)
        • type:Feature
        • id:538
        • geometry: Point (-13.51, -6.45)
          • type:Point
          • coordinates: [-13.510662792858462, -6.449209871625669]
            • 0:-13.510662792858462
            • 1:-6.449209871625669
        • properties: ocean
          • type:ocean
      • 539: Feature (Point, 1 property)
        • type:Feature
        • id:539
        • geometry: Point (-7.60, -4.67)
          • type:Point
          • coordinates: [-7.602843299921581, -4.67195353770327]
            • 0:-7.602843299921581
            • 1:-4.67195353770327
        • properties: ocean
          • type:ocean
      • 540: Feature (Point, 1 property)
        • type:Feature
        • id:540
        • geometry: Point (2.17, -2.63)
          • type:Point
          • coordinates: [2.172812490351315, -2.629748158992045]
            • 0:2.172812490351315
            • 1:-2.629748158992045
        • properties: ocean
          • type:ocean
      • 541: Feature (Point, 1 property)
        • type:Feature
        • id:541
        • geometry: Point (-15.67, -3.76)
          • type:Point
          • coordinates: [-15.671136988531737, -3.76335726554518]
            • 0:-15.671136988531737
            • 1:-3.76335726554518
        • properties: ocean
          • type:ocean
      • 542: Feature (Point, 1 property)
        • type:Feature
        • id:542
        • geometry: Point (1.78, -2.91)
          • type:Point
          • coordinates: [1.7836540870547093, -2.9122028445693044]
            • 0:1.7836540870547093
            • 1:-2.9122028445693044
        • properties: ocean
          • type:ocean
      • 543: Feature (Point, 1 property)
        • type:Feature
        • id:543
        • geometry: Point (-1.46, -3.06)
          • type:Point
          • coordinates: [-1.462892179313058, -3.0644023077325873]
            • 0:-1.462892179313058
            • 1:-3.0644023077325873
        • properties: ocean
          • type:ocean
      • 544: Feature (Point, 1 property)
        • type:Feature
        • id:544
        • geometry: Point (-3.39, -7.16)
          • type:Point
          • coordinates: [-3.3876464109302753, -7.156678064299431]
            • 0:-3.3876464109302753
            • 1:-7.156678064299431
        • properties: ocean
          • type:ocean
      • 545: Feature (Point, 1 property)
        • type:Feature
        • id:545
        • geometry: Point (-13.57, -3.01)
          • type:Point
          • coordinates: [-13.56984595613714, -3.0055787240774694]
            • 0:-13.56984595613714
            • 1:-3.0055787240774694
        • properties: ocean
          • type:ocean
      • 546: Feature (Point, 1 property)
        • type:Feature
        • id:546
        • geometry: Point (-11.75, -3.01)
          • type:Point
          • coordinates: [-11.75086027049236, -3.014748935337366]
            • 0:-11.75086027049236
            • 1:-3.014748935337366
        • properties: ocean
          • type:ocean
      • 547: Feature (Point, 1 property)
        • type:Feature
        • id:547
        • geometry: Point (-6.22, -2.58)
          • type:Point
          • coordinates: [-6.218492442303127, -2.582074027264009]
            • 0:-6.218492442303127
            • 1:-2.582074027264009
        • properties: ocean
          • type:ocean
      • 548: Feature (Point, 1 property)
        • type:Feature
        • id:548
        • geometry: Point (-2.94, 1.30)
          • type:Point
          • coordinates: [-2.9427680704688943, 1.29893529678991]
            • 0:-2.9427680704688943
            • 1:1.29893529678991
        • properties: ocean
          • type:ocean
      • 549: Feature (Point, 1 property)
        • type:Feature
        • id:549
        • geometry: Point (-0.79, -1.77)
          • type:Point
          • coordinates: [-0.7949989209824696, -1.7720449806846497]
            • 0:-0.7949989209824696
            • 1:-1.7720449806846497
        • properties: ocean
          • type:ocean
      • 550: Feature (Point, 1 property)
        • type:Feature
        • id:550
        • geometry: Point (-11.51, -7.27)
          • type:Point
          • coordinates: [-11.507049057963876, -7.273348307645455]
            • 0:-11.507049057963876
            • 1:-7.273348307645455
        • properties: ocean
          • type:ocean
      • 551: Feature (Point, 1 property)
        • type:Feature
        • id:551
        • geometry: Point (-6.31, -1.70)
          • type:Point
          • coordinates: [-6.312233576582198, -1.7034392295117347]
            • 0:-6.312233576582198
            • 1:-1.7034392295117347
        • properties: ocean
          • type:ocean
      • 552: Feature (Point, 1 property)
        • type:Feature
        • id:552
        • geometry: Point (-6.09, -6.62)
          • type:Point
          • coordinates: [-6.094256712751345, -6.619127371770118]
            • 0:-6.094256712751345
            • 1:-6.619127371770118
        • properties: ocean
          • type:ocean
      • 553: Feature (Point, 1 property)
        • type:Feature
        • id:553
        • geometry: Point (-7.53, -2.76)
          • type:Point
          • coordinates: [-7.528336272525196, -2.7559409000764585]
            • 0:-7.528336272525196
            • 1:-2.7559409000764585
        • properties: ocean
          • type:ocean
      • 554: Feature (Point, 1 property)
        • type:Feature
        • id:554
        • geometry: Point (-6.32, -5.98)
          • type:Point
          • coordinates: [-6.324177773339653, -5.98109057304512]
            • 0:-6.324177773339653
            • 1:-5.98109057304512
        • properties: ocean
          • type:ocean
      • 555: Feature (Point, 1 property)
        • type:Feature
        • id:555
        • geometry: Point (-7.54, -7.18)
          • type:Point
          • coordinates: [-7.535116063840209, -7.175792097303421]
            • 0:-7.535116063840209
            • 1:-7.175792097303421
        • properties: ocean
          • type:ocean
      • 556: Feature (Point, 1 property)
        • type:Feature
        • id:556
        • geometry: Point (-5.25, 0.14)
          • type:Point
          • coordinates: [-5.24852197261264, 0.1444989023462615]
            • 0:-5.24852197261264
            • 1:0.1444989023462615
        • properties: ocean
          • type:ocean
      • 557: Feature (Point, 1 property)
        • type:Feature
        • id:557
        • geometry: Point (-0.25, -0.35)
          • type:Point
          • coordinates: [-0.24806181471372868, -0.35489691118103844]
            • 0:-0.24806181471372868
            • 1:-0.35489691118103844
        • properties: ocean
          • type:ocean
      • 558: Feature (Point, 1 property)
        • type:Feature
        • id:558
        • geometry: Point (-12.77, -4.00)
          • type:Point
          • coordinates: [-12.769540231550092, -4.001354542063611]
            • 0:-12.769540231550092
            • 1:-4.001354542063611
        • properties: ocean
          • type:ocean
      • 559: Feature (Point, 1 property)
        • type:Feature
        • id:559
        • geometry: Point (-6.17, -4.20)
          • type:Point
          • coordinates: [-6.173698332414219, -4.202224329738677]
            • 0:-6.173698332414219
            • 1:-4.202224329738677
        • properties: ocean
          • type:ocean
      • 560: Feature (Point, 1 property)
        • type:Feature
        • id:560
        • geometry: Point (-8.41, -1.72)
          • type:Point
          • coordinates: [-8.406478912725245, -1.721011202670507]
            • 0:-8.406478912725245
            • 1:-1.721011202670507
        • properties: ocean
          • type:ocean
      • 561: Feature (Point, 1 property)
        • type:Feature
        • id:561
        • geometry: Point (-11.59, -4.63)
          • type:Point
          • coordinates: [-11.591693812394992, -4.62845642031707]
            • 0:-11.591693812394992
            • 1:-4.62845642031707
        • properties: ocean
          • type:ocean
      • 562: Feature (Point, 1 property)
        • type:Feature
        • id:562
        • geometry: Point (-11.46, 0.28)
          • type:Point
          • coordinates: [-11.463274478772002, 0.28177655971546073]
            • 0:-11.463274478772002
            • 1:0.28177655971546073
        • properties: ocean
          • type:ocean
      • 563: Feature (Point, 1 property)
        • type:Feature
        • id:563
        • geometry: Point (-0.13, -7.36)
          • type:Point
          • coordinates: [-0.12833791984547147, -7.3619320816810205]
            • 0:-0.12833791984547147
            • 1:-7.3619320816810205
        • properties: ocean
          • type:ocean
      • 564: Feature (Point, 1 property)
        • type:Feature
        • id:564
        • geometry: Point (-1.28, -2.01)
          • type:Point
          • coordinates: [-1.2845050066453776, -2.0148147647704344]
            • 0:-1.2845050066453776
            • 1:-2.0148147647704344
        • properties: ocean
          • type:ocean
      • 565: Feature (Point, 1 property)
        • type:Feature
        • id:565
        • geometry: Point (-5.63, 1.28)
          • type:Point
          • coordinates: [-5.6342888738635075, 1.2810610931695756]
            • 0:-5.6342888738635075
            • 1:1.2810610931695756
        • properties: ocean
          • type:ocean
      • 566: Feature (Point, 1 property)
        • type:Feature
        • id:566
        • geometry: Point (-5.38, -5.86)
          • type:Point
          • coordinates: [-5.382719557367291, -5.856466122955315]
            • 0:-5.382719557367291
            • 1:-5.856466122955315
        • properties: ocean
          • type:ocean
      • 567: Feature (Point, 1 property)
        • type:Feature
        • id:567
        • geometry: Point (-0.61, 0.60)
          • type:Point
          • coordinates: [-0.6125878994279077, 0.6021492491061369]
            • 0:-0.6125878994279077
            • 1:0.6021492491061369
        • properties: ocean
          • type:ocean
      • 568: Feature (Point, 1 property)
        • type:Feature
        • id:568
        • geometry: Point (-13.84, -1.63)
          • type:Point
          • coordinates: [-13.839490522298371, -1.6290180586120804]
            • 0:-13.839490522298371
            • 1:-1.6290180586120804
        • properties: ocean
          • type:ocean
      • 569: Feature (Point, 1 property)
        • type:Feature
        • id:569
        • geometry: Point (-11.62, -7.73)
          • type:Point
          • coordinates: [-11.618249027195946, -7.73096403047632]
            • 0:-11.618249027195946
            • 1:-7.73096403047632
        • properties: ocean
          • type:ocean
      • 570: Feature (Point, 1 property)
        • type:Feature
        • id:570
        • geometry: Point (1.30, -7.19)
          • type:Point
          • coordinates: [1.2960061614444507, -7.192827979014164]
            • 0:1.2960061614444507
            • 1:-7.192827979014164
        • properties: ocean
          • type:ocean
      • 571: Feature (Point, 1 property)
        • type:Feature
        • id:571
        • geometry: Point (3.21, -3.79)
          • type:Point
          • coordinates: [3.20815320409867, -3.7898269125144464]
            • 0:3.20815320409867
            • 1:-3.7898269125144464
        • properties: ocean
          • type:ocean
      • 572: Feature (Point, 1 property)
        • type:Feature
        • id:572
        • geometry: Point (3.19, -7.19)
          • type:Point
          • coordinates: [3.1911319905150024, -7.19397061779696]
            • 0:3.1911319905150024
            • 1:-7.19397061779696
        • properties: ocean
          • type:ocean
      • 573: Feature (Point, 1 property)
        • type:Feature
        • id:573
        • geometry: Point (-8.76, -7.58)
          • type:Point
          • coordinates: [-8.758981402177866, -7.579737063945424]
            • 0:-8.758981402177866
            • 1:-7.579737063945424
        • properties: ocean
          • type:ocean
      • 574: Feature (Point, 1 property)
        • type:Feature
        • id:574
        • geometry: Point (-13.66, -5.99)
          • type:Point
          • coordinates: [-13.656267398178283, -5.989633652718502]
            • 0:-13.656267398178283
            • 1:-5.989633652718502
        • properties: ocean
          • type:ocean
      • 575: Feature (Point, 1 property)
        • type:Feature
        • id:575
        • geometry: Point (3.42, -5.73)
          • type:Point
          • coordinates: [3.4164334401069434, -5.729671324083745]
            • 0:3.4164334401069434
            • 1:-5.729671324083745
        • properties: ocean
          • type:ocean
      • 576: Feature (Point, 1 property)
        • type:Feature
        • id:576
        • geometry: Point (-1.31, -0.54)
          • type:Point
          • coordinates: [-1.309872107969862, -0.537742740410845]
            • 0:-1.309872107969862
            • 1:-0.537742740410845
        • properties: ocean
          • type:ocean
      • 577: Feature (Point, 1 property)
        • type:Feature
        • id:577
        • geometry: Point (-1.22, 1.47)
          • type:Point
          • coordinates: [-1.2238998316389595, 1.4720797638956231]
            • 0:-1.2238998316389595
            • 1:1.4720797638956231
        • properties: ocean
          • type:ocean
      • 578: Feature (Point, 1 property)
        • type:Feature
        • id:578
        • geometry: Point (-1.11, 2.00)
          • type:Point
          • coordinates: [-1.1075279044402233, 1.997759105619051]
            • 0:-1.1075279044402233
            • 1:1.997759105619051
        • properties: ocean
          • type:ocean
      • 579: Feature (Point, 1 property)
        • type:Feature
        • id:579
        • geometry: Point (-11.48, -5.69)
          • type:Point
          • coordinates: [-11.475340646416191, -5.686476202435397]
            • 0:-11.475340646416191
            • 1:-5.686476202435397
        • properties: ocean
          • type:ocean
      • 580: Feature (Point, 1 property)
        • type:Feature
        • id:580
        • geometry: Point (-6.85, -4.39)
          • type:Point
          • coordinates: [-6.8525285521165, -4.387107368444355]
            • 0:-6.8525285521165
            • 1:-4.387107368444355
        • properties: ocean
          • type:ocean
      • 581: Feature (Point, 1 property)
        • type:Feature
        • id:581
        • geometry: Point (-0.92, 2.12)
          • type:Point
          • coordinates: [-0.9245783558611609, 2.1231363232569134]
            • 0:-0.9245783558611609
            • 1:2.1231363232569134
        • properties: ocean
          • type:ocean
      • 582: Feature (Point, 1 property)
        • type:Feature
        • id:582
        • geometry: Point (-12.47, 1.25)
          • type:Point
          • coordinates: [-12.470984229844898, 1.248311933283433]
            • 0:-12.470984229844898
            • 1:1.248311933283433
        • properties: ocean
          • type:ocean
      • 583: Feature (Point, 1 property)
        • type:Feature
        • id:583
        • geometry: Point (-8.95, -7.40)
          • type:Point
          • coordinates: [-8.946516258596686, -7.40117497578655]
            • 0:-8.946516258596686
            • 1:-7.40117497578655
        • properties: ocean
          • type:ocean
      • 584: Feature (Point, 1 property)
        • type:Feature
        • id:584
        • geometry: Point (3.97, -2.52)
          • type:Point
          • coordinates: [3.9704895453383964, -2.5168461701383023]
            • 0:3.9704895453383964
            • 1:-2.5168461701383023
        • properties: ocean
          • type:ocean
      • 585: Feature (Point, 1 property)
        • type:Feature
        • id:585
        • geometry: Point (-8.93, -0.00)
          • type:Point
          • coordinates: [-8.934555311976267, -0.0008148096500185566]
            • 0:-8.934555311976267
            • 1:-0.0008148096500185566
        • properties: ocean
          • type:ocean
      • 586: Feature (Point, 1 property)
        • type:Feature
        • id:586
        • geometry: Point (-6.42, -1.84)
          • type:Point
          • coordinates: [-6.422226047360633, -1.8400301242796815]
            • 0:-6.422226047360633
            • 1:-1.8400301242796815
        • properties: ocean
          • type:ocean
      • 587: Feature (Point, 1 property)
        • type:Feature
        • id:587
        • geometry: Point (-7.65, -3.65)
          • type:Point
          • coordinates: [-7.653370174300517, -3.6453284497931278]
            • 0:-7.653370174300517
            • 1:-3.6453284497931278
        • properties: ocean
          • type:ocean
      • 588: Feature (Point, 1 property)
        • type:Feature
        • id:588
        • geometry: Point (-2.05, -0.87)
          • type:Point
          • coordinates: [-2.0462519744982113, -0.874970399550907]
            • 0:-2.0462519744982113
            • 1:-0.874970399550907
        • properties: ocean
          • type:ocean
      • 589: Feature (Point, 1 property)
        • type:Feature
        • id:589
        • geometry: Point (-4.21, -4.73)
          • type:Point
          • coordinates: [-4.210868012882464, -4.731741915536798]
            • 0:-4.210868012882464
            • 1:-4.731741915536798
        • properties: ocean
          • type:ocean
      • 590: Feature (Point, 1 property)
        • type:Feature
        • id:590
        • geometry: Point (-3.81, 0.62)
          • type:Point
          • coordinates: [-3.805413607704923, 0.6243966395696896]
            • 0:-3.805413607704923
            • 1:0.6243966395696896
        • properties: ocean
          • type:ocean
      • 591: Feature (Point, 1 property)
        • type:Feature
        • id:591
        • geometry: Point (-2.08, -1.24)
          • type:Point
          • coordinates: [-2.08428285963655, -1.2421394923728333]
            • 0:-2.08428285963655
            • 1:-1.2421394923728333
        • properties: ocean
          • type:ocean
      • 592: Feature (Point, 1 property)
        • type:Feature
        • id:592
        • geometry: Point (2.07, -5.42)
          • type:Point
          • coordinates: [2.0745818892106547, -5.421685820004277]
            • 0:2.0745818892106547
            • 1:-5.421685820004277
        • properties: ocean
          • type:ocean
      • 593: Feature (Point, 1 property)
        • type:Feature
        • id:593
        • geometry: Point (-7.63, -5.11)
          • type:Point
          • coordinates: [-7.6333760610297805, -5.108510772695602]
            • 0:-7.6333760610297805
            • 1:-5.108510772695602
        • properties: ocean
          • type:ocean
      • 594: Feature (Point, 1 property)
        • type:Feature
        • id:594
        • geometry: Point (-2.41, -0.99)
          • type:Point
          • coordinates: [-2.4132595659238683, -0.9918888476170816]
            • 0:-2.4132595659238683
            • 1:-0.9918888476170816
        • properties: ocean
          • type:ocean
      • 595: Feature (Point, 1 property)
        • type:Feature
        • id:595
        • geometry: Point (-1.29, 0.09)
          • type:Point
          • coordinates: [-1.2880592925494456, 0.09228689535396882]
            • 0:-1.2880592925494456
            • 1:0.09228689535396882
        • properties: ocean
          • type:ocean
      • 596: Feature (Point, 1 property)
        • type:Feature
        • id:596
        • geometry: Point (-10.46, -1.87)
          • type:Point
          • coordinates: [-10.458404755171687, -1.8674221348388016]
            • 0:-10.458404755171687
            • 1:-1.8674221348388016
        • properties: ocean
          • type:ocean
      • 597: Feature (Point, 1 property)
        • type:Feature
        • id:597
        • geometry: Point (-13.22, 0.88)
          • type:Point
          • coordinates: [-13.224848317520504, 0.8785905282937032]
            • 0:-13.224848317520504
            • 1:0.8785905282937032
        • properties: ocean
          • type:ocean
      • 598: Feature (Point, 1 property)
        • type:Feature
        • id:598
        • geometry: Point (3.94, -1.34)
          • type:Point
          • coordinates: [3.9433339929053424, -1.3372346201402041]
            • 0:3.9433339929053424
            • 1:-1.3372346201402041
        • properties: ocean
          • type:ocean
      • 599: Feature (Point, 1 property)
        • type:Feature
        • id:599
        • geometry: Point (-11.91, -6.82)
          • type:Point
          • coordinates: [-11.914678390627124, -6.822044091789873]
            • 0:-11.914678390627124
            • 1:-6.822044091789873
        • properties: ocean
          • type:ocean
      • 600: Feature (Point, 1 property)
        • type:Feature
        • id:600
        • geometry: Point (-4.26, -1.35)
          • type:Point
          • coordinates: [-4.264560661403595, -1.352654422594995]
            • 0:-4.264560661403595
            • 1:-1.352654422594995
        • properties: ocean
          • type:ocean
      • 601: Feature (Point, 1 property)
        • type:Feature
        • id:601
        • geometry: Point (-6.10, -5.55)
          • type:Point
          • coordinates: [-6.096887459634636, -5.548644598493816]
            • 0:-6.096887459634636
            • 1:-5.548644598493816
        • properties: ocean
          • type:ocean
      • 602: Feature (Point, 1 property)
        • type:Feature
        • id:602
        • geometry: Point (-13.29, -7.31)
          • type:Point
          • coordinates: [-13.287054467439757, -7.314228693292929]
            • 0:-13.287054467439757
            • 1:-7.314228693292929
        • properties: ocean
          • type:ocean
      • 603: Feature (Point, 1 property)
        • type:Feature
        • id:603
        • geometry: Point (-8.58, -6.85)
          • type:Point
          • coordinates: [-8.583898800934163, -6.846535637612537]
            • 0:-8.583898800934163
            • 1:-6.846535637612537
        • properties: ocean
          • type:ocean
      • 604: Feature (Point, 1 property)
        • type:Feature
        • id:604
        • geometry: Point (4.77, -4.46)
          • type:Point
          • coordinates: [4.773132636864642, -4.463683827508904]
            • 0:4.773132636864642
            • 1:-4.463683827508904
        • properties: ocean
          • type:ocean
      • 605: Feature (Point, 1 property)
        • type:Feature
        • id:605
        • geometry: Point (-1.16, -3.72)
          • type:Point
          • coordinates: [-1.1623548855507566, -3.7195608905745825]
            • 0:-1.1623548855507566
            • 1:-3.7195608905745825
        • properties: ocean
          • type:ocean
      • 606: Feature (Point, 1 property)
        • type:Feature
        • id:606
        • geometry: Point (-15.16, -6.71)
          • type:Point
          • coordinates: [-15.159046187502323, -6.711030189126026]
            • 0:-15.159046187502323
            • 1:-6.711030189126026
        • properties: ocean
          • type:ocean
      • 607: Feature (Point, 1 property)
        • type:Feature
        • id:607
        • geometry: Point (-6.85, -3.33)
          • type:Point
          • coordinates: [-6.849961728749459, -3.3296235669321876]
            • 0:-6.849961728749459
            • 1:-3.3296235669321876
        • properties: ocean
          • type:ocean
      • 608: Feature (Point, 1 property)
        • type:Feature
        • id:608
        • geometry: Point (-8.83, 0.93)
          • type:Point
          • coordinates: [-8.830767230498367, 0.9314059907029539]
            • 0:-8.830767230498367
            • 1:0.9314059907029539
        • properties: ocean
          • type:ocean
      • 609: Feature (Point, 1 property)
        • type:Feature
        • id:609
        • geometry: Point (3.18, -2.38)
          • type:Point
          • coordinates: [3.184031774406523, -2.3780663663104447]
            • 0:3.184031774406523
            • 1:-2.3780663663104447
        • properties: ocean
          • type:ocean
      • 610: Feature (Point, 1 property)
        • type:Feature
        • id:610
        • geometry: Point (-15.44, -4.28)
          • type:Point
          • coordinates: [-15.440148937267116, -4.279469992099974]
            • 0:-15.440148937267116
            • 1:-4.279469992099974
        • properties: ocean
          • type:ocean
      • 611: Feature (Point, 1 property)
        • type:Feature
        • id:611
        • geometry: Point (2.13, -5.87)
          • type:Point
          • coordinates: [2.127908895506388, -5.871911577233867]
            • 0:2.127908895506388
            • 1:-5.871911577233867
        • properties: ocean
          • type:ocean
      • 612: Feature (Point, 1 property)
        • type:Feature
        • id:612
        • geometry: Point (5.23, -6.58)
          • type:Point
          • coordinates: [5.230385817853244, -6.575635732497708]
            • 0:5.230385817853244
            • 1:-6.575635732497708
        • properties: ocean
          • type:ocean
      • 613: Feature (Point, 1 property)
        • type:Feature
        • id:613
        • geometry: Point (-10.63, -5.42)
          • type:Point
          • coordinates: [-10.628701245940025, -5.423391990229656]
            • 0:-10.628701245940025
            • 1:-5.423391990229656
        • properties: ocean
          • type:ocean
      • 614: Feature (Point, 1 property)
        • type:Feature
        • id:614
        • geometry: Point (-2.41, -1.57)
          • type:Point
          • coordinates: [-2.4106040182402526, -1.5737455555587498]
            • 0:-2.4106040182402526
            • 1:-1.5737455555587498
        • properties: ocean
          • type:ocean
      • 615: Feature (Point, 1 property)
        • type:Feature
        • id:615
        • geometry: Point (-5.37, -0.65)
          • type:Point
          • coordinates: [-5.3739934041433814, -0.6466492203484668]
            • 0:-5.3739934041433814
            • 1:-0.6466492203484668
        • properties: ocean
          • type:ocean
      • 616: Feature (Point, 1 property)
        • type:Feature
        • id:616
        • geometry: Point (-7.18, -5.49)
          • type:Point
          • coordinates: [-7.184774590779502, -5.4895470066172845]
            • 0:-7.184774590779502
            • 1:-5.4895470066172845
        • properties: ocean
          • type:ocean
      • 617: Feature (Point, 1 property)
        • type:Feature
        • id:617
        • geometry: Point (-5.99, -0.67)
          • type:Point
          • coordinates: [-5.989619937878678, -0.6742467811173329]
            • 0:-5.989619937878678
            • 1:-0.6742467811173329
        • properties: ocean
          • type:ocean
      • 618: Feature (Point, 1 property)
        • type:Feature
        • id:618
        • geometry: Point (1.78, -1.56)
          • type:Point
          • coordinates: [1.7823637938533106, -1.5582201332286323]
            • 0:1.7823637938533106
            • 1:-1.5582201332286323
        • properties: ocean
          • type:ocean
      • 619: Feature (Point, 1 property)
        • type:Feature
        • id:619
        • geometry: Point (-8.49, 1.91)
          • type:Point
          • coordinates: [-8.485247607300757, 1.907790615385944]
            • 0:-8.485247607300757
            • 1:1.907790615385944
        • properties: ocean
          • type:ocean
      • 620: Feature (Point, 1 property)
        • type:Feature
        • id:620
        • geometry: Point (-14.90, -7.37)
          • type:Point
          • coordinates: [-14.901161278162444, -7.366956621708925]
            • 0:-14.901161278162444
            • 1:-7.366956621708925
        • properties: ocean
          • type:ocean
      • 621: Feature (Point, 1 property)
        • type:Feature
        • id:621
        • geometry: Point (-12.03, -3.06)
          • type:Point
          • coordinates: [-12.030919373306217, -3.0633645275441657]
            • 0:-12.030919373306217
            • 1:-3.0633645275441657
        • properties: ocean
          • type:ocean
      • 622: Feature (Point, 1 property)
        • type:Feature
        • id:622
        • geometry: Point (-3.93, -6.76)
          • type:Point
          • coordinates: [-3.9269065637384273, -6.7594006646201885]
            • 0:-3.9269065637384273
            • 1:-6.7594006646201885
        • properties: ocean
          • type:ocean
      • 623: Feature (Point, 1 property)
        • type:Feature
        • id:623
        • geometry: Point (4.73, -6.93)
          • type:Point
          • coordinates: [4.731524063192005, -6.929835824847854]
            • 0:4.731524063192005
            • 1:-6.929835824847854
        • properties: ocean
          • type:ocean
      • 624: Feature (Point, 1 property)
        • type:Feature
        • id:624
        • geometry: Point (-4.57, -2.16)
          • type:Point
          • coordinates: [-4.570045710338711, -2.1645221596548567]
            • 0:-4.570045710338711
            • 1:-2.1645221596548567
        • properties: ocean
          • type:ocean
      • 625: Feature (Point, 1 property)
        • type:Feature
        • id:625
        • geometry: Point (-13.79, -4.01)
          • type:Point
          • coordinates: [-13.793091300619801, -4.012515289522764]
            • 0:-13.793091300619801
            • 1:-4.012515289522764
        • properties: ocean
          • type:ocean
      • 626: Feature (Point, 1 property)
        • type:Feature
        • id:626
        • geometry: Point (-14.36, -0.30)
          • type:Point
          • coordinates: [-14.357668933159394, -0.2994744028667772]
            • 0:-14.357668933159394
            • 1:-0.2994744028667772
        • properties: ocean
          • type:ocean
      • 627: Feature (Point, 1 property)
        • type:Feature
        • id:627
        • geometry: Point (-2.73, -3.96)
          • type:Point
          • coordinates: [-2.7303900191503527, -3.95923213426164]
            • 0:-2.7303900191503527
            • 1:-3.95923213426164
        • properties: ocean
          • type:ocean
      • 628: Feature (Point, 1 property)
        • type:Feature
        • id:628
        • geometry: Point (-5.01, -4.78)
          • type:Point
          • coordinates: [-5.013122595798325, -4.776303060258286]
            • 0:-5.013122595798325
            • 1:-4.776303060258286
        • properties: ocean
          • type:ocean
      • 629: Feature (Point, 1 property)
        • type:Feature
        • id:629
        • geometry: Point (-3.06, -6.51)
          • type:Point
          • coordinates: [-3.0629795190028464, -6.51369536978903]
            • 0:-3.0629795190028464
            • 1:-6.51369536978903
        • properties: ocean
          • type:ocean
      • 630: Feature (Point, 1 property)
        • type:Feature
        • id:630
        • geometry: Point (-4.33, -0.86)
          • type:Point
          • coordinates: [-4.325537084046008, -0.864553139270008]
            • 0:-4.325537084046008
            • 1:-0.864553139270008
        • properties: ocean
          • type:ocean
      • 631: Feature (Point, 1 property)
        • type:Feature
        • id:631
        • geometry: Point (-2.12, -0.12)
          • type:Point
          • coordinates: [-2.118579482036784, -0.11583912930551837]
            • 0:-2.118579482036784
            • 1:-0.11583912930551837
        • properties: ocean
          • type:ocean
      • 632: Feature (Point, 1 property)
        • type:Feature
        • id:632
        • geometry: Point (-14.74, -7.87)
          • type:Point
          • coordinates: [-14.739758427113198, -7.868790713558695]
            • 0:-14.739758427113198
            • 1:-7.868790713558695
        • properties: ocean
          • type:ocean
      • 633: Feature (Point, 1 property)
        • type:Feature
        • id:633
        • geometry: Point (0.24, 1.15)
          • type:Point
          • coordinates: [0.24229843167566478, 1.1485813841454005]
            • 0:0.24229843167566478
            • 1:1.1485813841454005
        • properties: ocean
          • type:ocean
      • 634: Feature (Point, 1 property)
        • type:Feature
        • id:634
        • geometry: Point (-8.92, 0.42)
          • type:Point
          • coordinates: [-8.9212646568329, 0.4194156593266925]
            • 0:-8.9212646568329
            • 1:0.4194156593266925
        • properties: ocean
          • type:ocean
      • 635: Feature (Point, 1 property)
        • type:Feature
        • id:635
        • geometry: Point (-3.46, -0.89)
          • type:Point
          • coordinates: [-3.4607857499675254, -0.8949822740487399]
            • 0:-3.4607857499675254
            • 1:-0.8949822740487399
        • properties: ocean
          • type:ocean
      • 636: Feature (Point, 1 property)
        • type:Feature
        • id:636
        • geometry: Point (-10.54, -3.47)
          • type:Point
          • coordinates: [-10.537755117469702, -3.4743383789370896]
            • 0:-10.537755117469702
            • 1:-3.4743383789370896
        • properties: ocean
          • type:ocean
      • 637: Feature (Point, 1 property)
        • type:Feature
        • id:637
        • geometry: Point (-7.10, -6.08)
          • type:Point
          • coordinates: [-7.100774940232932, -6.084349651338211]
            • 0:-7.100774940232932
            • 1:-6.084349651338211
        • properties: ocean
          • type:ocean
      • 638: Feature (Point, 1 property)
        • type:Feature
        • id:638
        • geometry: Point (-3.67, -0.42)
          • type:Point
          • coordinates: [-3.666956140965642, -0.416022711459907]
            • 0:-3.666956140965642
            • 1:-0.416022711459907
        • properties: ocean
          • type:ocean
      • 639: Feature (Point, 1 property)
        • type:Feature
        • id:639
        • geometry: Point (-5.62, -4.33)
          • type:Point
          • coordinates: [-5.615255499024819, -4.3346877312791126]
            • 0:-5.615255499024819
            • 1:-4.3346877312791126
        • properties: ocean
          • type:ocean
      • 640: Feature (Point, 1 property)
        • type:Feature
        • id:640
        • geometry: Point (6.21, -4.32)
          • type:Point
          • coordinates: [6.205304513119769, -4.317839064846756]
            • 0:6.205304513119769
            • 1:-4.317839064846756
        • properties: ocean
          • type:ocean
      • 641: Feature (Point, 1 property)
        • type:Feature
        • id:641
        • geometry: Point (4.96, -3.59)
          • type:Point
          • coordinates: [4.958318405943951, -3.5903328661200593]
            • 0:4.958318405943951
            • 1:-3.5903328661200593
        • properties: ocean
          • type:ocean
      • 642: Feature (Point, 1 property)
        • type:Feature
        • id:642
        • geometry: Point (-5.16, -5.45)
          • type:Point
          • coordinates: [-5.155232145829897, -5.450976553564606]
            • 0:-5.155232145829897
            • 1:-5.450976553564606
        • properties: ocean
          • type:ocean
      • 643: Feature (Point, 1 property)
        • type:Feature
        • id:643
        • geometry: Point (-13.38, -8.23)
          • type:Point
          • coordinates: [-13.379715171870837, -8.233343392937993]
            • 0:-13.379715171870837
            • 1:-8.233343392937993
        • properties: ocean
          • type:ocean
      • 644: Feature (Point, 1 property)
        • type:Feature
        • id:644
        • geometry: Point (0.90, -0.51)
          • type:Point
          • coordinates: [0.8972971930027727, -0.510774248907662]
            • 0:0.8972971930027727
            • 1:-0.510774248907662
        • properties: ocean
          • type:ocean
      • 645: Feature (Point, 1 property)
        • type:Feature
        • id:645
        • geometry: Point (-3.02, -2.89)
          • type:Point
          • coordinates: [-3.0246582087489897, -2.8865439904204786]
            • 0:-3.0246582087489897
            • 1:-2.8865439904204786
        • properties: ocean
          • type:ocean
      • 646: Feature (Point, 1 property)
        • type:Feature
        • id:646
        • geometry: Point (4.82, -6.85)
          • type:Point
          • coordinates: [4.818779523746835, -6.851219984365954]
            • 0:4.818779523746835
            • 1:-6.851219984365954
        • properties: ocean
          • type:ocean
      • 647: Feature (Point, 1 property)
        • type:Feature
        • id:647
        • geometry: Point (-9.57, -2.22)
          • type:Point
          • coordinates: [-9.572500605063174, -2.21835314286543]
            • 0:-9.572500605063174
            • 1:-2.21835314286543
        • properties: ocean
          • type:ocean
      • 648: Feature (Point, 1 property)
        • type:Feature
        • id:648
        • geometry: Point (-7.36, 0.85)
          • type:Point
          • coordinates: [-7.35729490163064, 0.8451980950132911]
            • 0:-7.35729490163064
            • 1:0.8451980950132911
        • properties: ocean
          • type:ocean
      • 649: Feature (Point, 1 property)
        • type:Feature
        • id:649
        • geometry: Point (-15.60, -5.50)
          • type:Point
          • coordinates: [-15.602149377596767, -5.502288745178678]
            • 0:-15.602149377596767
            • 1:-5.502288745178678
        • properties: ocean
          • type:ocean
      • 650: Feature (Point, 1 property)
        • type:Feature
        • id:650
        • geometry: Point (-1.23, -2.95)
          • type:Point
          • coordinates: [-1.2316098046694257, -2.9500712951814463]
            • 0:-1.2316098046694257
            • 1:-2.9500712951814463
        • properties: ocean
          • type:ocean
      • 651: Feature (Point, 1 property)
        • type:Feature
        • id:651
        • geometry: Point (0.10, 1.88)
          • type:Point
          • coordinates: [0.10274928511420645, 1.8774142376159308]
            • 0:0.10274928511420645
            • 1:1.8774142376159308
        • properties: ocean
          • type:ocean
      • 652: Feature (Point, 1 property)
        • type:Feature
        • id:652
        • geometry: Point (-14.32, -2.85)
          • type:Point
          • coordinates: [-14.320883784814557, -2.85321613060317]
            • 0:-14.320883784814557
            • 1:-2.85321613060317
        • properties: ocean
          • type:ocean
      • 653: Feature (Point, 1 property)
        • type:Feature
        • id:653
        • geometry: Point (-8.76, -4.20)
          • type:Point
          • coordinates: [-8.758307332533331, -4.198535597091713]
            • 0:-8.758307332533331
            • 1:-4.198535597091713
        • properties: ocean
          • type:ocean
      • 654: Feature (Point, 1 property)
        • type:Feature
        • id:654
        • geometry: Point (5.26, -3.97)
          • type:Point
          • coordinates: [5.262984846275643, -3.9672301281665447]
            • 0:5.262984846275643
            • 1:-3.9672301281665447
        • properties: ocean
          • type:ocean
      • 655: Feature (Point, 1 property)
        • type:Feature
        • id:655
        • geometry: Point (-11.84, -4.28)
          • type:Point
          • coordinates: [-11.836886713107463, -4.283484941722946]
            • 0:-11.836886713107463
            • 1:-4.283484941722946
        • properties: ocean
          • type:ocean
      • 656: Feature (Point, 1 property)
        • type:Feature
        • id:656
        • geometry: Point (-14.83, -7.43)
          • type:Point
          • coordinates: [-14.82862058861552, -7.432554631927523]
            • 0:-14.82862058861552
            • 1:-7.432554631927523
        • properties: ocean
          • type:ocean
      • 657: Feature (Point, 1 property)
        • type:Feature
        • id:657
        • geometry: Point (-11.17, -6.16)
          • type:Point
          • coordinates: [-11.173184424200537, -6.158379444089655]
            • 0:-11.173184424200537
            • 1:-6.158379444089655
        • properties: ocean
          • type:ocean
      • 658: Feature (Point, 1 property)
        • type:Feature
        • id:658
        • geometry: Point (-2.90, -0.40)
          • type:Point
          • coordinates: [-2.903006058879127, -0.3999421371036304]
            • 0:-2.903006058879127
            • 1:-0.3999421371036304
        • properties: ocean
          • type:ocean
      • 659: Feature (Point, 1 property)
        • type:Feature
        • id:659
        • geometry: Point (0.30, 0.50)
          • type:Point
          • coordinates: [0.29892908376430194, 0.5000394132100958]
            • 0:0.29892908376430194
            • 1:0.5000394132100958
        • properties: ocean
          • type:ocean
      • 660: Feature (Point, 1 property)
        • type:Feature
        • id:660
        • geometry: Point (-15.48, -1.97)
          • type:Point
          • coordinates: [-15.48055071013321, -1.967907783729135]
            • 0:-15.48055071013321
            • 1:-1.967907783729135
        • properties: ocean
          • type:ocean
      • 661: Feature (Point, 1 property)
        • type:Feature
        • id:661
        • geometry: Point (-12.03, 0.66)
          • type:Point
          • coordinates: [-12.02573581599202, 0.6647490538944912]
            • 0:-12.02573581599202
            • 1:0.6647490538944912
        • properties: ocean
          • type:ocean
      • 662: Feature (Point, 1 property)
        • type:Feature
        • id:662
        • geometry: Point (1.58, -3.67)
          • type:Point
          • coordinates: [1.5804463965390112, -3.6740054030443727]
            • 0:1.5804463965390112
            • 1:-3.6740054030443727
        • properties: ocean
          • type:ocean
      • 663: Feature (Point, 1 property)
        • type:Feature
        • id:663
        • geometry: Point (-5.81, -7.36)
          • type:Point
          • coordinates: [-5.809579870216705, -7.357394483845862]
            • 0:-5.809579870216705
            • 1:-7.357394483845862
        • properties: ocean
          • type:ocean
      • 664: Feature (Point, 1 property)
        • type:Feature
        • id:664
        • geometry: Point (-0.79, -1.28)
          • type:Point
          • coordinates: [-0.7906638274512017, -1.2835500120575063]
            • 0:-0.7906638274512017
            • 1:-1.2835500120575063
        • properties: ocean
          • type:ocean
      • 665: Feature (Point, 1 property)
        • type:Feature
        • id:665
        • geometry: Point (-4.35, -7.72)
          • type:Point
          • coordinates: [-4.349686168893733, -7.719735734932836]
            • 0:-4.349686168893733
            • 1:-7.719735734932836
        • properties: ocean
          • type:ocean
      • 666: Feature (Point, 1 property)
        • type:Feature
        • id:666
        • geometry: Point (-5.95, -4.52)
          • type:Point
          • coordinates: [-5.9501787365788426, -4.518958138939099]
            • 0:-5.9501787365788426
            • 1:-4.518958138939099
        • properties: ocean
          • type:ocean
      • 667: Feature (Point, 1 property)
        • type:Feature
        • id:667
        • geometry: Point (1.03, -7.98)
          • type:Point
          • coordinates: [1.0253039975904674, -7.978225153435569]
            • 0:1.0253039975904674
            • 1:-7.978225153435569
        • properties: ocean
          • type:ocean
      • 668: Feature (Point, 1 property)
        • type:Feature
        • id:668
        • geometry: Point (-2.98, -2.23)
          • type:Point
          • coordinates: [-2.9766485390720683, -2.227599587850862]
            • 0:-2.9766485390720683
            • 1:-2.227599587850862
        • properties: ocean
          • type:ocean
      • 669: Feature (Point, 1 property)
        • type:Feature
        • id:669
        • geometry: Point (-10.24, -6.23)
          • type:Point
          • coordinates: [-10.241697699166894, -6.2312674127215235]
            • 0:-10.241697699166894
            • 1:-6.2312674127215235
        • properties: ocean
          • type:ocean
      • 670: Feature (Point, 1 property)
        • type:Feature
        • id:670
        • geometry: Point (-0.94, -3.03)
          • type:Point
          • coordinates: [-0.9428514016912921, -3.034533326592699]
            • 0:-0.9428514016912921
            • 1:-3.034533326592699
        • properties: ocean
          • type:ocean
      • 671: Feature (Point, 1 property)
        • type:Feature
        • id:671
        • geometry: Point (4.40, -3.76)
          • type:Point
          • coordinates: [4.39904906912447, -3.758825994631238]
            • 0:4.39904906912447
            • 1:-3.758825994631238
        • properties: ocean
          • type:ocean
      • 672: Feature (Point, 1 property)
        • type:Feature
        • id:672
        • geometry: Point (2.51, -6.74)
          • type:Point
          • coordinates: [2.5063241874022526, -6.7396167750311795]
            • 0:2.5063241874022526
            • 1:-6.7396167750311795
        • properties: ocean
          • type:ocean
      • 673: Feature (Point, 1 property)
        • type:Feature
        • id:673
        • geometry: Point (-4.08, -6.88)
          • type:Point
          • coordinates: [-4.083984537464978, -6.879649834294127]
            • 0:-4.083984537464978
            • 1:-6.879649834294127
        • properties: ocean
          • type:ocean
      • 674: Feature (Point, 1 property)
        • type:Feature
        • id:674
        • geometry: Point (-3.90, 1.33)
          • type:Point
          • coordinates: [-3.9048706878901727, 1.3337624812983337]
            • 0:-3.9048706878901727
            • 1:1.3337624812983337
        • properties: ocean
          • type:ocean
      • 675: Feature (Point, 1 property)
        • type:Feature
        • id:675
        • geometry: Point (-6.87, -4.80)
          • type:Point
          • coordinates: [-6.872283452918207, -4.799560461697474]
            • 0:-6.872283452918207
            • 1:-4.799560461697474
        • properties: ocean
          • type:ocean
      • 676: Feature (Point, 1 property)
        • type:Feature
        • id:676
        • geometry: Point (-4.09, -7.43)
          • type:Point
          • coordinates: [-4.0865128281665655, -7.429670988844538]
            • 0:-4.0865128281665655
            • 1:-7.429670988844538
        • properties: ocean
          • type:ocean
      • 677: Feature (Point, 1 property)
        • type:Feature
        • id:677
        • geometry: Point (-11.39, -6.95)
          • type:Point
          • coordinates: [-11.391032294285612, -6.954425719726292]
            • 0:-11.391032294285612
            • 1:-6.954425719726292
        • properties: ocean
          • type:ocean
      • 678: Feature (Point, 1 property)
        • type:Feature
        • id:678
        • geometry: Point (-9.23, -8.53)
          • type:Point
          • coordinates: [-9.225966867142567, -8.529456147562305]
            • 0:-9.225966867142567
            • 1:-8.529456147562305
        • properties: ocean
          • type:ocean
      • 679: Feature (Point, 1 property)
        • type:Feature
        • id:679
        • geometry: Point (-10.42, -7.26)
          • type:Point
          • coordinates: [-10.420356780886458, -7.260734068795531]
            • 0:-10.420356780886458
            • 1:-7.260734068795531
        • properties: ocean
          • type:ocean
      • 680: Feature (Point, 1 property)
        • type:Feature
        • id:680
        • geometry: Point (1.64, -0.41)
          • type:Point
          • coordinates: [1.6356414907010963, -0.40989505213070376]
            • 0:1.6356414907010963
            • 1:-0.40989505213070376
        • properties: ocean
          • type:ocean
      • 681: Feature (Point, 1 property)
        • type:Feature
        • id:681
        • geometry: Point (4.19, -4.15)
          • type:Point
          • coordinates: [4.189749717194689, -4.15144386160764]
            • 0:4.189749717194689
            • 1:-4.15144386160764
        • properties: ocean
          • type:ocean
      • 682: Feature (Point, 1 property)
        • type:Feature
        • id:682
        • geometry: Point (-7.72, -6.75)
          • type:Point
          • coordinates: [-7.724633649423958, -6.746073660973467]
            • 0:-7.724633649423958
            • 1:-6.746073660973467
        • properties: ocean
          • type:ocean
      • 683: Feature (Point, 1 property)
        • type:Feature
        • id:683
        • geometry: Point (-2.18, 1.07)
          • type:Point
          • coordinates: [-2.183657854909528, 1.0741392458841568]
            • 0:-2.183657854909528
            • 1:1.0741392458841568
        • properties: ocean
          • type:ocean
      • 684: Feature (Point, 1 property)
        • type:Feature
        • id:684
        • geometry: Point (-6.96, 1.70)
          • type:Point
          • coordinates: [-6.956134911402177, 1.6973615334989072]
            • 0:-6.956134911402177
            • 1:1.6973615334989072
        • properties: ocean
          • type:ocean
      • 685: Feature (Point, 1 property)
        • type:Feature
        • id:685
        • geometry: Point (-11.63, -0.82)
          • type:Point
          • coordinates: [-11.634131253891866, -0.8248928634411787]
            • 0:-11.634131253891866
            • 1:-0.8248928634411787
        • properties: ocean
          • type:ocean
      • 686: Feature (Point, 1 property)
        • type:Feature
        • id:686
        • geometry: Point (-14.13, -3.92)
          • type:Point
          • coordinates: [-14.128685465642153, -3.91512002606518]
            • 0:-14.128685465642153
            • 1:-3.91512002606518
        • properties: ocean
          • type:ocean
      • 687: Feature (Point, 1 property)
        • type:Feature
        • id:687
        • geometry: Point (1.05, -0.59)
          • type:Point
          • coordinates: [1.0479679896442033, -0.5900568574011767]
            • 0:1.0479679896442033
            • 1:-0.5900568574011767
        • properties: ocean
          • type:ocean
      • 688: Feature (Point, 1 property)
        • type:Feature
        • id:688
        • geometry: Point (-4.66, -2.01)
          • type:Point
          • coordinates: [-4.6643406833622185, -2.012920799270938]
            • 0:-4.6643406833622185
            • 1:-2.012920799270938
        • properties: ocean
          • type:ocean
      • 689: Feature (Point, 1 property)
        • type:Feature
        • id:689
        • geometry: Point (-6.16, 0.23)
          • type:Point
          • coordinates: [-6.159861929306787, 0.23116231883014224]
            • 0:-6.159861929306787
            • 1:0.23116231883014224
        • properties: ocean
          • type:ocean
      • 690: Feature (Point, 1 property)
        • type:Feature
        • id:690
        • geometry: Point (-10.82, 1.36)
          • type:Point
          • coordinates: [-10.817687239192715, 1.3589383834218853]
            • 0:-10.817687239192715
            • 1:1.3589383834218853
        • properties: ocean
          • type:ocean
      • 691: Feature (Point, 1 property)
        • type:Feature
        • id:691
        • geometry: Point (-4.90, -7.73)
          • type:Point
          • coordinates: [-4.9047079606873885, -7.727668687096047]
            • 0:-4.9047079606873885
            • 1:-7.727668687096047
        • properties: ocean
          • type:ocean
      • 692: Feature (Point, 1 property)
        • type:Feature
        • id:692
        • geometry: Point (-0.69, -1.37)
          • type:Point
          • coordinates: [-0.6876147346312695, -1.3715709070146151]
            • 0:-0.6876147346312695
            • 1:-1.3715709070146151
        • properties: ocean
          • type:ocean
      • 693: Feature (Point, 1 property)
        • type:Feature
        • id:693
        • geometry: Point (-14.62, -2.05)
          • type:Point
          • coordinates: [-14.620207475582294, -2.0475520777828193]
            • 0:-14.620207475582294
            • 1:-2.0475520777828193
        • properties: ocean
          • type:ocean
      • 694: Feature (Point, 1 property)
        • type:Feature
        • id:694
        • geometry: Point (-1.60, 1.20)
          • type:Point
          • coordinates: [-1.5992029942464636, 1.1987380074583596]
            • 0:-1.5992029942464636
            • 1:1.1987380074583596
        • properties: ocean
          • type:ocean
      • 695: Feature (Point, 1 property)
        • type:Feature
        • id:695
        • geometry: Point (-14.36, -1.61)
          • type:Point
          • coordinates: [-14.363427009934213, -1.6071017348423358]
            • 0:-14.363427009934213
            • 1:-1.6071017348423358
        • properties: ocean
          • type:ocean
      • 696: Feature (Point, 1 property)
        • type:Feature
        • id:696
        • geometry: Point (-4.69, 1.83)
          • type:Point
          • coordinates: [-4.6871780097269555, 1.8283390349349657]
            • 0:-4.6871780097269555
            • 1:1.8283390349349657
        • properties: ocean
          • type:ocean
      • 697: Feature (Point, 1 property)
        • type:Feature
        • id:697
        • geometry: Point (-1.13, -3.16)
          • type:Point
          • coordinates: [-1.1273033820293716, -3.160486820049891]
            • 0:-1.1273033820293716
            • 1:-3.160486820049891
        • properties: ocean
          • type:ocean
      • 698: Feature (Point, 1 property)
        • type:Feature
        • id:698
        • geometry: Point (-10.30, -3.23)
          • type:Point
          • coordinates: [-10.29622495032776, -3.231439174916794]
            • 0:-10.29622495032776
            • 1:-3.231439174916794
        • properties: ocean
          • type:ocean
      • 699: Feature (Point, 1 property)
        • type:Feature
        • id:699
        • geometry: Point (-8.05, -8.49)
          • type:Point
          • coordinates: [-8.048871999282364, -8.488861575962176]
            • 0:-8.048871999282364
            • 1:-8.488861575962176
        • properties: ocean
          • type:ocean
      • 700: Feature (Point, 1 property)
        • type:Feature
        • id:700
        • geometry: Point (-7.72, -0.64)
          • type:Point
          • coordinates: [-7.718749560357901, -0.6352908690536536]
            • 0:-7.718749560357901
            • 1:-0.6352908690536536
        • properties: ocean
          • type:ocean
      • 701: Feature (Point, 1 property)
        • type:Feature
        • id:701
        • geometry: Point (-7.60, -2.02)
          • type:Point
          • coordinates: [-7.600989061841175, -2.0184306334900994]
            • 0:-7.600989061841175
            • 1:-2.0184306334900994
        • properties: ocean
          • type:ocean
      • 702: Feature (Point, 1 property)
        • type:Feature
        • id:702
        • geometry: Point (-7.10, 0.59)
          • type:Point
          • coordinates: [-7.09615129435104, 0.5875672982105185]
            • 0:-7.09615129435104
            • 1:0.5875672982105185
        • properties: ocean
          • type:ocean
      • 703: Feature (Point, 1 property)
        • type:Feature
        • id:703
        • geometry: Point (-0.53, -0.75)
          • type:Point
          • coordinates: [-0.5300641753123163, -0.7482112507314481]
            • 0:-0.5300641753123163
            • 1:-0.7482112507314481
        • properties: ocean
          • type:ocean
      • 704: Feature (Point, 1 property)
        • type:Feature
        • id:704
        • geometry: Point (-5.60, -2.97)
          • type:Point
          • coordinates: [-5.604260808974198, -2.9691996163981815]
            • 0:-5.604260808974198
            • 1:-2.9691996163981815
        • properties: ocean
          • type:ocean
      • 705: Feature (Point, 1 property)
        • type:Feature
        • id:705
        • geometry: Point (-6.79, 0.56)
          • type:Point
          • coordinates: [-6.794393215155742, 0.5642218678319004]
            • 0:-6.794393215155742
            • 1:0.5642218678319004
        • properties: ocean
          • type:ocean
      • 706: Feature (Point, 1 property)
        • type:Feature
        • id:706
        • geometry: Point (-14.34, -0.73)
          • type:Point
          • coordinates: [-14.342622210390115, -0.7344040812836108]
            • 0:-14.342622210390115
            • 1:-0.7344040812836108
        • properties: ocean
          • type:ocean
      • 707: Feature (Point, 1 property)
        • type:Feature
        • id:707
        • geometry: Point (-14.53, -2.05)
          • type:Point
          • coordinates: [-14.531836558411129, -2.051685458046673]
            • 0:-14.531836558411129
            • 1:-2.051685458046673
        • properties: ocean
          • type:ocean
      • 708: Feature (Point, 1 property)
        • type:Feature
        • id:708
        • geometry: Point (1.96, 0.66)
          • type:Point
          • coordinates: [1.9630958593048902, 0.659542258465987]
            • 0:1.9630958593048902
            • 1:0.659542258465987
        • properties: ocean
          • type:ocean
      • 709: Feature (Point, 1 property)
        • type:Feature
        • id:709
        • geometry: Point (-8.18, -4.84)
          • type:Point
          • coordinates: [-8.182913763121384, -4.84358579078553]
            • 0:-8.182913763121384
            • 1:-4.84358579078553
        • properties: ocean
          • type:ocean
      • 710: Feature (Point, 1 property)
        • type:Feature
        • id:710
        • geometry: Point (-5.25, -4.89)
          • type:Point
          • coordinates: [-5.253323548410706, -4.894848835138436]
            • 0:-5.253323548410706
            • 1:-4.894848835138436
        • properties: ocean
          • type:ocean
      • 711: Feature (Point, 1 property)
        • type:Feature
        • id:711
        • geometry: Point (-8.10, 0.62)
          • type:Point
          • coordinates: [-8.100488410348538, 0.6225367752403964]
            • 0:-8.100488410348538
            • 1:0.6225367752403964
        • properties: ocean
          • type:ocean
      • 712: Feature (Point, 1 property)
        • type:Feature
        • id:712
        • geometry: Point (1.73, -1.12)
          • type:Point
          • coordinates: [1.7312997509067647, -1.1175369168680127]
            • 0:1.7312997509067647
            • 1:-1.1175369168680127
        • properties: ocean
          • type:ocean
      • 713: Feature (Point, 1 property)
        • type:Feature
        • id:713
        • geometry: Point (2.25, -7.29)
          • type:Point
          • coordinates: [2.2470006545266568, -7.288181480134657]
            • 0:2.2470006545266568
            • 1:-7.288181480134657
        • properties: ocean
          • type:ocean
      • 714: Feature (Point, 1 property)
        • type:Feature
        • id:714
        • geometry: Point (-7.92, -1.58)
          • type:Point
          • coordinates: [-7.923158728003281, -1.5790751427502745]
            • 0:-7.923158728003281
            • 1:-1.5790751427502745
        • properties: ocean
          • type:ocean
      • 715: Feature (Point, 1 property)
        • type:Feature
        • id:715
        • geometry: Point (-13.25, 0.50)
          • type:Point
          • coordinates: [-13.246716153330583, 0.5038877996321072]
            • 0:-13.246716153330583
            • 1:0.5038877996321072
        • properties: ocean
          • type:ocean
      • 716: Feature (Point, 1 property)
        • type:Feature
        • id:716
        • geometry: Point (-10.40, 0.52)
          • type:Point
          • coordinates: [-10.396012241709313, 0.5205871544439121]
            • 0:-10.396012241709313
            • 1:0.5205871544439121
        • properties: ocean
          • type:ocean
      • 717: Feature (Point, 1 property)
        • type:Feature
        • id:717
        • geometry: Point (-5.48, -3.20)
          • type:Point
          • coordinates: [-5.479781215686927, -3.195901600834858]
            • 0:-5.479781215686927
            • 1:-3.195901600834858
        • properties: ocean
          • type:ocean
      • 718: Feature (Point, 1 property)
        • type:Feature
        • id:718
        • geometry: Point (-4.13, -3.60)
          • type:Point
          • coordinates: [-4.127203808861332, -3.599669192880516]
            • 0:-4.127203808861332
            • 1:-3.599669192880516
        • properties: ocean
          • type:ocean
      • 719: Feature (Point, 1 property)
        • type:Feature
        • id:719
        • geometry: Point (-13.56, -8.20)
          • type:Point
          • coordinates: [-13.559945277860692, -8.203619435709163]
            • 0:-13.559945277860692
            • 1:-8.203619435709163
        • properties: ocean
          • type:ocean
      • 720: Feature (Point, 1 property)
        • type:Feature
        • id:720
        • geometry: Point (-4.86, 1.06)
          • type:Point
          • coordinates: [-4.862450809756346, 1.063290953419473]
            • 0:-4.862450809756346
            • 1:1.063290953419473
        • properties: ocean
          • type:ocean
      • 721: Feature (Point, 1 property)
        • type:Feature
        • id:721
        • geometry: Point (-6.80, -7.67)
          • type:Point
          • coordinates: [-6.799055552271713, -7.673930340469701]
            • 0:-6.799055552271713
            • 1:-7.673930340469701
        • properties: ocean
          • type:ocean
      • 722: Feature (Point, 1 property)
        • type:Feature
        • id:722
        • geometry: Point (-13.23, -3.74)
          • type:Point
          • coordinates: [-13.226018872361786, -3.739288190898466]
            • 0:-13.226018872361786
            • 1:-3.739288190898466
        • properties: ocean
          • type:ocean
      • 723: Feature (Point, 1 property)
        • type:Feature
        • id:723
        • geometry: Point (-1.95, 0.97)
          • type:Point
          • coordinates: [-1.9502284065081101, 0.9656862871839962]
            • 0:-1.9502284065081101
            • 1:0.9656862871839962
        • properties: ocean
          • type:ocean
      • 724: Feature (Point, 1 property)
        • type:Feature
        • id:724
        • geometry: Point (-7.07, -8.56)
          • type:Point
          • coordinates: [-7.070334611383403, -8.55884491591393]
            • 0:-7.070334611383403
            • 1:-8.55884491591393
        • properties: ocean
          • type:ocean
      • 725: Feature (Point, 1 property)
        • type:Feature
        • id:725
        • geometry: Point (-8.80, -7.07)
          • type:Point
          • coordinates: [-8.800927836125165, -7.065318662744695]
            • 0:-8.800927836125165
            • 1:-7.065318662744695
        • properties: ocean
          • type:ocean
      • 726: Feature (Point, 1 property)
        • type:Feature
        • id:726
        • geometry: Point (2.39, 0.59)
          • type:Point
          • coordinates: [2.386965493687038, 0.5936363255301583]
            • 0:2.386965493687038
            • 1:0.5936363255301583
        • properties: ocean
          • type:ocean
      • 727: Feature (Point, 1 property)
        • type:Feature
        • id:727
        • geometry: Point (-12.28, -1.17)
          • type:Point
          • coordinates: [-12.284117689429854, -1.1730828307286707]
            • 0:-12.284117689429854
            • 1:-1.1730828307286707
        • properties: ocean
          • type:ocean
      • 728: Feature (Point, 1 property)
        • type:Feature
        • id:728
        • geometry: Point (-4.17, -6.26)
          • type:Point
          • coordinates: [-4.169095759117259, -6.256663908944804]
            • 0:-4.169095759117259
            • 1:-6.256663908944804
        • properties: ocean
          • type:ocean
      • 729: Feature (Point, 1 property)
        • type:Feature
        • id:729
        • geometry: Point (-2.62, -1.75)
          • type:Point
          • coordinates: [-2.6151301840147387, -1.7492708192263418]
            • 0:-2.6151301840147387
            • 1:-1.7492708192263418
        • properties: ocean
          • type:ocean
      • 730: Feature (Point, 1 property)
        • type:Feature
        • id:730
        • geometry: Point (-12.38, -5.13)
          • type:Point
          • coordinates: [-12.379430062355155, -5.131612512009484]
            • 0:-12.379430062355155
            • 1:-5.131612512009484
        • properties: ocean
          • type:ocean
      • 731: Feature (Point, 1 property)
        • type:Feature
        • id:731
        • geometry: Point (-7.66, 1.09)
          • type:Point
          • coordinates: [-7.662098605616371, 1.0933913408306386]
            • 0:-7.662098605616371
            • 1:1.0933913408306386
        • properties: ocean
          • type:ocean
      • 732: Feature (Point, 1 property)
        • type:Feature
        • id:732
        • geometry: Point (-12.93, -5.81)
          • type:Point
          • coordinates: [-12.931631703168721, -5.814074911419948]
            • 0:-12.931631703168721
            • 1:-5.814074911419948
        • properties: ocean
          • type:ocean
      • 733: Feature (Point, 1 property)
        • type:Feature
        • id:733
        • geometry: Point (-7.60, -4.52)
          • type:Point
          • coordinates: [-7.598155837078562, -4.517269657382684]
            • 0:-7.598155837078562
            • 1:-4.517269657382684
        • properties: ocean
          • type:ocean
      • 734: Feature (Point, 1 property)
        • type:Feature
        • id:734
        • geometry: Point (-0.86, -3.80)
          • type:Point
          • coordinates: [-0.858554290504136, -3.7993659403602456]
            • 0:-0.858554290504136
            • 1:-3.7993659403602456
        • properties: ocean
          • type:ocean
      • 735: Feature (Point, 1 property)
        • type:Feature
        • id:735
        • geometry: Point (-5.44, 0.56)
          • type:Point
          • coordinates: [-5.4426844835725525, 0.5626507331707133]
            • 0:-5.4426844835725525
            • 1:0.5626507331707133
        • properties: ocean
          • type:ocean
      • 736: Feature (Point, 1 property)
        • type:Feature
        • id:736
        • geometry: Point (-3.65, -5.94)
          • type:Point
          • coordinates: [-3.6537324667016926, -5.944058124974734]
            • 0:-3.6537324667016926
            • 1:-5.944058124974734
        • properties: ocean
          • type:ocean
      • 737: Feature (Point, 1 property)
        • type:Feature
        • id:737
        • geometry: Point (-12.25, 0.26)
          • type:Point
          • coordinates: [-12.2517211276605, 0.2568521148906582]
            • 0:-12.2517211276605
            • 1:0.2568521148906582
        • properties: ocean
          • type:ocean
      • 738: Feature (Point, 1 property)
        • type:Feature
        • id:738
        • geometry: Point (-9.07, -3.03)
          • type:Point
          • coordinates: [-9.072925792745423, -3.0297446677558155]
            • 0:-9.072925792745423
            • 1:-3.0297446677558155
        • properties: ocean
          • type:ocean
      • 739: Feature (Point, 1 property)
        • type:Feature
        • id:739
        • geometry: Point (-7.57, -5.72)
          • type:Point
          • coordinates: [-7.56527242504272, -5.7160668798392935]
            • 0:-7.56527242504272
            • 1:-5.7160668798392935
        • properties: ocean
          • type:ocean
      • 740: Feature (Point, 1 property)
        • type:Feature
        • id:740
        • geometry: Point (-3.74, -6.87)
          • type:Point
          • coordinates: [-3.735999755595832, -6.870678673508518]
            • 0:-3.735999755595832
            • 1:-6.870678673508518
        • properties: ocean
          • type:ocean
      • 741: Feature (Point, 1 property)
        • type:Feature
        • id:741
        • geometry: Point (-9.14, 0.04)
          • type:Point
          • coordinates: [-9.14113845471888, 0.03991406494681652]
            • 0:-9.14113845471888
            • 1:0.03991406494681652
        • properties: ocean
          • type:ocean
      • 742: Feature (Point, 1 property)
        • type:Feature
        • id:742
        • geometry: Point (-4.60, 1.26)
          • type:Point
          • coordinates: [-4.59773720986626, 1.2556141008776478]
            • 0:-4.59773720986626
            • 1:1.2556141008776478
        • properties: ocean
          • type:ocean
      • 743: Feature (Point, 1 property)
        • type:Feature
        • id:743
        • geometry: Point (-12.81, -1.60)
          • type:Point
          • coordinates: [-12.807362462797286, -1.5996264175871673]
            • 0:-12.807362462797286
            • 1:-1.5996264175871673
        • properties: ocean
          • type:ocean
      • 744: Feature (Point, 1 property)
        • type:Feature
        • id:744
        • geometry: Point (-3.20, -2.30)
          • type:Point
          • coordinates: [-3.2013169625955693, -2.3026022320005275]
            • 0:-3.2013169625955693
            • 1:-2.3026022320005275
        • properties: ocean
          • type:ocean
      • 745: Feature (Point, 1 property)
        • type:Feature
        • id:745
        • geometry: Point (-11.49, -8.50)
          • type:Point
          • coordinates: [-11.490378318775976, -8.49892821471508]
            • 0:-11.490378318775976
            • 1:-8.49892821471508
        • properties: ocean
          • type:ocean
      • 746: Feature (Point, 1 property)
        • type:Feature
        • id:746
        • geometry: Point (-9.93, -7.42)
          • type:Point
          • coordinates: [-9.930651596817183, -7.418819174578378]
            • 0:-9.930651596817183
            • 1:-7.418819174578378
        • properties: ocean
          • type:ocean
      • 747: Feature (Point, 1 property)
        • type:Feature
        • id:747
        • geometry: Point (4.17, -6.29)
          • type:Point
          • coordinates: [4.170551048090284, -6.288817560722876]
            • 0:4.170551048090284
            • 1:-6.288817560722876
        • properties: ocean
          • type:ocean
      • 748: Feature (Point, 1 property)
        • type:Feature
        • id:748
        • geometry: Point (-7.31, -6.30)
          • type:Point
          • coordinates: [-7.312361813882494, -6.298540703254132]
            • 0:-7.312361813882494
            • 1:-6.298540703254132
        • properties: ocean
          • type:ocean
      • 749: Feature (Point, 1 property)
        • type:Feature
        • id:749
        • geometry: Point (-3.01, -7.50)
          • type:Point
          • coordinates: [-3.009762707871996, -7.496225324853956]
            • 0:-3.009762707871996
            • 1:-7.496225324853956
        • properties: ocean
          • type:ocean
      • 750: Feature (Point, 1 property)
        • type:Feature
        • id:750
        • geometry: Point (-5.33, -3.93)
          • type:Point
          • coordinates: [-5.331791810905555, -3.926145461988946]
            • 0:-5.331791810905555
            • 1:-3.926145461988946
        • properties: ocean
          • type:ocean
      • 751: Feature (Point, 1 property)
        • type:Feature
        • id:751
        • geometry: Point (-8.69, -1.26)
          • type:Point
          • coordinates: [-8.693043203650193, -1.2602001457357876]
            • 0:-8.693043203650193
            • 1:-1.2602001457357876
        • properties: ocean
          • type:ocean
      • 752: Feature (Point, 1 property)
        • type:Feature
        • id:752
        • geometry: Point (-6.54, 1.39)
          • type:Point
          • coordinates: [-6.5424226981962175, 1.3881742771077212]
            • 0:-6.5424226981962175
            • 1:1.3881742771077212
        • properties: ocean
          • type:ocean
      • 753: Feature (Point, 1 property)
        • type:Feature
        • id:753
        • geometry: Point (-1.31, -3.75)
          • type:Point
          • coordinates: [-1.310984949984181, -3.7484137990653013]
            • 0:-1.310984949984181
            • 1:-3.7484137990653013
        • properties: ocean
          • type:ocean
      • 754: Feature (Point, 1 property)
        • type:Feature
        • id:754
        • geometry: Point (-10.30, -4.61)
          • type:Point
          • coordinates: [-10.29980840112614, -4.6121600083902]
            • 0:-10.29980840112614
            • 1:-4.6121600083902
        • properties: ocean
          • type:ocean
      • 755: Feature (Point, 1 property)
        • type:Feature
        • id:755
        • geometry: Point (-2.46, -7.97)
          • type:Point
          • coordinates: [-2.457846319660476, -7.965912075607761]
            • 0:-2.457846319660476
            • 1:-7.965912075607761
        • properties: ocean
          • type:ocean
      • 756: Feature (Point, 1 property)
        • type:Feature
        • id:756
        • geometry: Point (2.54, -4.29)
          • type:Point
          • coordinates: [2.53801365606339, -4.287890749091373]
            • 0:2.53801365606339
            • 1:-4.287890749091373
        • properties: ocean
          • type:ocean
      • 757: Feature (Point, 1 property)
        • type:Feature
        • id:757
        • geometry: Point (-11.42, -3.48)
          • type:Point
          • coordinates: [-11.422267556550919, -3.4766274062109637]
            • 0:-11.422267556550919
            • 1:-3.4766274062109637
        • properties: ocean
          • type:ocean
      • 758: Feature (Point, 1 property)
        • type:Feature
        • id:758
        • geometry: Point (-13.99, -8.07)
          • type:Point
          • coordinates: [-13.992198666555842, -8.068661088812341]
            • 0:-13.992198666555842
            • 1:-8.068661088812341
        • properties: ocean
          • type:ocean
      • 759: Feature (Point, 1 property)
        • type:Feature
        • id:759
        • geometry: Point (-10.87, -2.67)
          • type:Point
          • coordinates: [-10.871194822779632, -2.671253672846131]
            • 0:-10.871194822779632
            • 1:-2.671253672846131
        • properties: ocean
          • type:ocean
      • 760: Feature (Point, 1 property)
        • type:Feature
        • id:760
        • geometry: Point (-11.72, -3.36)
          • type:Point
          • coordinates: [-11.721143749221913, -3.358255845361652]
            • 0:-11.721143749221913
            • 1:-3.358255845361652
        • properties: ocean
          • type:ocean
      • 761: Feature (Point, 1 property)
        • type:Feature
        • id:761
        • geometry: Point (-14.89, -0.46)
          • type:Point
          • coordinates: [-14.888382111727626, -0.45850472725069047]
            • 0:-14.888382111727626
            • 1:-0.45850472725069047
        • properties: ocean
          • type:ocean
      • 762: Feature (Point, 1 property)
        • type:Feature
        • id:762
        • geometry: Point (-14.17, -7.53)
          • type:Point
          • coordinates: [-14.17338446074699, -7.52854784419407]
            • 0:-14.17338446074699
            • 1:-7.52854784419407
        • properties: ocean
          • type:ocean
      • 763: Feature (Point, 1 property)
        • type:Feature
        • id:763
        • geometry: Point (1.52, -2.41)
          • type:Point
          • coordinates: [1.524586732607341, -2.4081104995290312]
            • 0:1.524586732607341
            • 1:-2.4081104995290312
        • properties: ocean
          • type:ocean
      • 764: Feature (Point, 1 property)
        • type:Feature
        • id:764
        • geometry: Point (-0.14, 0.78)
          • type:Point
          • coordinates: [-0.1422314785166125, 0.7750895558774752]
            • 0:-0.1422314785166125
            • 1:0.7750895558774752
        • properties: ocean
          • type:ocean
      • 765: Feature (Point, 1 property)
        • type:Feature
        • id:765
        • geometry: Point (-5.48, -7.17)
          • type:Point
          • coordinates: [-5.482638939055463, -7.171706643785813]
            • 0:-5.482638939055463
            • 1:-7.171706643785813
        • properties: ocean
          • type:ocean
      • 766: Feature (Point, 1 property)
        • type:Feature
        • id:766
        • geometry: Point (3.87, -1.45)
          • type:Point
          • coordinates: [3.8733839231273475, -1.4547776710278386]
            • 0:3.8733839231273475
            • 1:-1.4547776710278386
        • properties: ocean
          • type:ocean
      • 767: Feature (Point, 1 property)
        • type:Feature
        • id:767
        • geometry: Point (-3.76, -3.15)
          • type:Point
          • coordinates: [-3.75906477378604, -3.152102064924335]
            • 0:-3.75906477378604
            • 1:-3.152102064924335
        • properties: ocean
          • type:ocean
      • 768: Feature (Point, 1 property)
        • type:Feature
        • id:768
        • geometry: Point (-6.74, -0.66)
          • type:Point
          • coordinates: [-6.74028989112436, -0.6643532883305362]
            • 0:-6.74028989112436
            • 1:-0.6643532883305362
        • properties: ocean
          • type:ocean
      • 769: Feature (Point, 1 property)
        • type:Feature
        • id:769
        • geometry: Point (-5.27, -3.84)
          • type:Point
          • coordinates: [-5.273170837048959, -3.838182761681198]
            • 0:-5.273170837048959
            • 1:-3.838182761681198
        • properties: ocean
          • type:ocean
      • 770: Feature (Point, 1 property)
        • type:Feature
        • id:770
        • geometry: Point (2.98, -4.49)
          • type:Point
          • coordinates: [2.975429730540379, -4.4863675391250055]
            • 0:2.975429730540379
            • 1:-4.4863675391250055
        • properties: ocean
          • type:ocean
      • 771: Feature (Point, 1 property)
        • type:Feature
        • id:771
        • geometry: Point (5.46, -3.99)
          • type:Point
          • coordinates: [5.461701806525146, -3.9877258860534885]
            • 0:5.461701806525146
            • 1:-3.9877258860534885
        • properties: ocean
          • type:ocean
      • 772: Feature (Point, 1 property)
        • type:Feature
        • id:772
        • geometry: Point (0.55, 0.94)
          • type:Point
          • coordinates: [0.545730349948413, 0.9423695273523598]
            • 0:0.545730349948413
            • 1:0.9423695273523598
        • properties: ocean
          • type:ocean
      • 773: Feature (Point, 1 property)
        • type:Feature
        • id:773
        • geometry: Point (-8.19, -2.67)
          • type:Point
          • coordinates: [-8.194958216076662, -2.6722795542736386]
            • 0:-8.194958216076662
            • 1:-2.6722795542736386
        • properties: ocean
          • type:ocean
      • 774: Feature (Point, 1 property)
        • type:Feature
        • id:774
        • geometry: Point (-5.23, -8.12)
          • type:Point
          • coordinates: [-5.2298415550786945, -8.118908626682806]
            • 0:-5.2298415550786945
            • 1:-8.118908626682806
        • properties: ocean
          • type:ocean
      • 775: Feature (Point, 1 property)
        • type:Feature
        • id:775
        • geometry: Point (-12.98, -5.20)
          • type:Point
          • coordinates: [-12.975421017796407, -5.201273324032349]
            • 0:-12.975421017796407
            • 1:-5.201273324032349
        • properties: ocean
          • type:ocean
      • 776: Feature (Point, 1 property)
        • type:Feature
        • id:776
        • geometry: Point (-1.07, 0.46)
          • type:Point
          • coordinates: [-1.0731148162784299, 0.4612247913155016]
            • 0:-1.0731148162784299
            • 1:0.4612247913155016
        • properties: ocean
          • type:ocean
      • 777: Feature (Point, 1 property)
        • type:Feature
        • id:777
        • geometry: Point (-6.39, -3.79)
          • type:Point
          • coordinates: [-6.3927242258758685, -3.789092783483915]
            • 0:-6.3927242258758685
            • 1:-3.789092783483915
        • properties: ocean
          • type:ocean
      • 778: Feature (Point, 1 property)
        • type:Feature
        • id:778
        • geometry: Point (-10.49, -6.15)
          • type:Point
          • coordinates: [-10.486024666520716, -6.154663910761801]
            • 0:-10.486024666520716
            • 1:-6.154663910761801
        • properties: ocean
          • type:ocean
      • 779: Feature (Point, 1 property)
        • type:Feature
        • id:779
        • geometry: Point (-3.11, -8.40)
          • type:Point
          • coordinates: [-3.113669308790438, -8.401041819888038]
            • 0:-3.113669308790438
            • 1:-8.401041819888038
        • properties: ocean
          • type:ocean
      • 780: Feature (Point, 1 property)
        • type:Feature
        • id:780
        • geometry: Point (-8.40, -0.44)
          • type:Point
          • coordinates: [-8.40284389530534, -0.44485584561278496]
            • 0:-8.40284389530534
            • 1:-0.44485584561278496
        • properties: ocean
          • type:ocean
      • 781: Feature (Point, 1 property)
        • type:Feature
        • id:781
        • geometry: Point (1.83, -8.26)
          • type:Point
          • coordinates: [1.8254628928639405, -8.25720741913917]
            • 0:1.8254628928639405
            • 1:-8.25720741913917
        • properties: ocean
          • type:ocean
      • 782: Feature (Point, 1 property)
        • type:Feature
        • id:782
        • geometry: Point (-2.60, -3.99)
          • type:Point
          • coordinates: [-2.60185255542691, -3.9872425621847576]
            • 0:-2.60185255542691
            • 1:-3.9872425621847576
        • properties: ocean
          • type:ocean
      • 783: Feature (Point, 1 property)
        • type:Feature
        • id:783
        • geometry: Point (-5.75, -6.63)
          • type:Point
          • coordinates: [-5.751048363059944, -6.6291015976984475]
            • 0:-5.751048363059944
            • 1:-6.6291015976984475
        • properties: ocean
          • type:ocean
      • 784: Feature (Point, 1 property)
        • type:Feature
        • id:784
        • geometry: Point (3.52, -2.73)
          • type:Point
          • coordinates: [3.5240020315900664, -2.72831958570374]
            • 0:3.5240020315900664
            • 1:-2.72831958570374
        • properties: ocean
          • type:ocean
      • 785: Feature (Point, 1 property)
        • type:Feature
        • id:785
        • geometry: Point (2.00, -2.66)
          • type:Point
          • coordinates: [2.000699346578157, -2.663564305077088]
            • 0:2.000699346578157
            • 1:-2.663564305077088
        • properties: ocean
          • type:ocean
      • 786: Feature (Point, 1 property)
        • type:Feature
        • id:786
        • geometry: Point (1.95, -6.80)
          • type:Point
          • coordinates: [1.9497801003414086, -6.795176157742219]
            • 0:1.9497801003414086
            • 1:-6.795176157742219
        • properties: ocean
          • type:ocean
      • 787: Feature (Point, 1 property)
        • type:Feature
        • id:787
        • geometry: Point (0.98, -3.07)
          • type:Point
          • coordinates: [0.9772153093844598, -3.068012506416964]
            • 0:0.9772153093844598
            • 1:-3.068012506416964
        • properties: ocean
          • type:ocean
      • 788: Feature (Point, 1 property)
        • type:Feature
        • id:788
        • geometry: Point (2.89, -3.01)
          • type:Point
          • coordinates: [2.8893237349974905, -3.005285196573097]
            • 0:2.8893237349974905
            • 1:-3.005285196573097
        • properties: ocean
          • type:ocean
      • 789: Feature (Point, 1 property)
        • type:Feature
        • id:789
        • geometry: Point (-9.27, -6.36)
          • type:Point
          • coordinates: [-9.272089840967299, -6.356004625952175]
            • 0:-9.272089840967299
            • 1:-6.356004625952175
        • properties: ocean
          • type:ocean
      • 790: Feature (Point, 1 property)
        • type:Feature
        • id:790
        • geometry: Point (3.97, -7.81)
          • type:Point
          • coordinates: [3.97071808976602, -7.806856377491073]
            • 0:3.97071808976602
            • 1:-7.806856377491073
        • properties: ocean
          • type:ocean
      • 791: Feature (Point, 1 property)
        • type:Feature
        • id:791
        • geometry: Point (-5.60, -3.83)
          • type:Point
          • coordinates: [-5.60270883818367, -3.8283792937262615]
            • 0:-5.60270883818367
            • 1:-3.8283792937262615
        • properties: ocean
          • type:ocean
      • 792: Feature (Point, 1 property)
        • type:Feature
        • id:792
        • geometry: Point (-12.19, -6.00)
          • type:Point
          • coordinates: [-12.191423235322098, -6.001761122394659]
            • 0:-12.191423235322098
            • 1:-6.001761122394659
        • properties: ocean
          • type:ocean
      • 793: Feature (Point, 1 property)
        • type:Feature
        • id:793
        • geometry: Point (-10.53, -1.73)
          • type:Point
          • coordinates: [-10.52794060084981, -1.733900734430023]
            • 0:-10.52794060084981
            • 1:-1.733900734430023
        • properties: ocean
          • type:ocean
      • 794: Feature (Point, 1 property)
        • type:Feature
        • id:794
        • geometry: Point (1.29, -1.90)
          • type:Point
          • coordinates: [1.2947425074553043, -1.9031987342456793]
            • 0:1.2947425074553043
            • 1:-1.9031987342456793
        • properties: ocean
          • type:ocean
      • 795: Feature (Point, 1 property)
        • type:Feature
        • id:795
        • geometry: Point (0.72, 1.60)
          • type:Point
          • coordinates: [0.7191516201177042, 1.6029994194405903]
            • 0:0.7191516201177042
            • 1:1.6029994194405903
        • properties: ocean
          • type:ocean
      • 796: Feature (Point, 1 property)
        • type:Feature
        • id:796
        • geometry: Point (-3.78, -4.21)
          • type:Point
          • coordinates: [-3.7801342534744973, -4.209788657927874]
            • 0:-3.7801342534744973
            • 1:-4.209788657927874
        • properties: ocean
          • type:ocean
      • 797: Feature (Point, 1 property)
        • type:Feature
        • id:797
        • geometry: Point (-11.09, 1.08)
          • type:Point
          • coordinates: [-11.08759143649715, 1.075263961145763]
            • 0:-11.08759143649715
            • 1:1.075263961145763
        • properties: ocean
          • type:ocean
      • 798: Feature (Point, 1 property)
        • type:Feature
        • id:798
        • geometry: Point (-2.26, 1.39)
          • type:Point
          • coordinates: [-2.2632342560512617, 1.3923941788147078]
            • 0:-2.2632342560512617
            • 1:1.3923941788147078
        • properties: ocean
          • type:ocean
      • 799: Feature (Point, 1 property)
        • type:Feature
        • id:799
        • geometry: Point (2.24, -8.15)
          • type:Point
          • coordinates: [2.24448095398032, -8.1516862092901]
            • 0:2.24448095398032
            • 1:-8.1516862092901
        • properties: ocean
          • type:ocean

Desert¶

In [45]:
# sample ocean polygon
desert_pts = landcover.sample(
    region=desert_feat,
    scale=1000,
    numPixels=800,
    seed=44,
    projection='EPSG:4326',
    geometries=True,
    dropNulls=True
)

# add a property "type" to the desert_pts feature collection equal to "desert"
desert_pts = desert_pts.map(lambda f: f.set('type', 'desert'))

# export sample to geojson
geemap.ee_to_geojson(desert_pts, 'data/dark_africa/desert_pts2.geo.json')
In [46]:
# read in the desert_pts
desert_pts = geemap.geojson_to_ee('data/dark_africa/desert_pts2.geo.json')
# add to map
m.addLayer(desert_pts, {'color': 'brown'}, 'Desert Points')
desert_pts
Out[46]:
  • FeatureCollection (800 elements, 3 columns)
    • type:FeatureCollection
    • columns: String
      • type:String
      • Map:Integer
      • system:index:String
    • features: List (800 elements)
      • 0: Feature (Point, 2 properties)
        • type:Feature
        • id:0
        • geometry: Point (12.20, 20.56)
          • type:Point
          • coordinates: [12.198672752152248, 20.56189715020328]
            • 0:12.198672752152248
            • 1:20.56189715020328
        • properties: desert
          • type:desert
          • Map:60
      • 1: Feature (Point, 2 properties)
        • type:Feature
        • id:1
        • geometry: Point (15.45, 20.72)
          • type:Point
          • coordinates: [15.450544251074943, 20.72104722146467]
            • 0:15.450544251074943
            • 1:20.72104722146467
        • properties: desert
          • type:desert
          • Map:60
      • 2: Feature (Point, 2 properties)
        • type:Feature
        • id:2
        • geometry: Point (15.80, 20.17)
          • type:Point
          • coordinates: [15.804713951592175, 20.169210925162297]
            • 0:15.804713951592175
            • 1:20.169210925162297
        • properties: desert
          • type:desert
          • Map:60
      • 3: Feature (Point, 2 properties)
        • type:Feature
        • id:3
        • geometry: Point (24.60, 21.95)
          • type:Point
          • coordinates: [24.59617638350737, 21.94604576914312]
            • 0:24.59617638350737
            • 1:21.94604576914312
        • properties: desert
          • type:desert
          • Map:60
      • 4: Feature (Point, 2 properties)
        • type:Feature
        • id:4
        • geometry: Point (13.59, 20.59)
          • type:Point
          • coordinates: [13.587909171076108, 20.58604740619454]
            • 0:13.587909171076108
            • 1:20.58604740619454
        • properties: desert
          • type:desert
          • Map:60
      • 5: Feature (Point, 2 properties)
        • type:Feature
        • id:5
        • geometry: Point (14.76, 16.76)
          • type:Point
          • coordinates: [14.755889016831924, 16.756949041821187]
            • 0:14.755889016831924
            • 1:16.756949041821187
        • properties: desert
          • type:desert
          • Map:60
      • 6: Feature (Point, 2 properties)
        • type:Feature
        • id:6
        • geometry: Point (15.96, 17.79)
          • type:Point
          • coordinates: [15.95598200180879, 17.79254749056092]
            • 0:15.95598200180879
            • 1:17.79254749056092
        • properties: desert
          • type:desert
          • Map:60
      • 7: Feature (Point, 2 properties)
        • type:Feature
        • id:7
        • geometry: Point (28.81, 18.11)
          • type:Point
          • coordinates: [28.80975147078901, 18.107786632701963]
            • 0:28.80975147078901
            • 1:18.107786632701963
        • properties: desert
          • type:desert
          • Map:60
      • 8: Feature (Point, 2 properties)
        • type:Feature
        • id:8
        • geometry: Point (14.08, 19.29)
          • type:Point
          • coordinates: [14.080711557407431, 19.292433800481472]
            • 0:14.080711557407431
            • 1:19.292433800481472
        • properties: desert
          • type:desert
          • Map:60
      • 9: Feature (Point, 2 properties)
        • type:Feature
        • id:9
        • geometry: Point (26.42, 21.56)
          • type:Point
          • coordinates: [26.422746512246068, 21.55566595707695]
            • 0:26.422746512246068
            • 1:21.55566595707695
        • properties: desert
          • type:desert
          • Map:60
      • 10: Feature (Point, 2 properties)
        • type:Feature
        • id:10
        • geometry: Point (21.78, 18.18)
          • type:Point
          • coordinates: [21.783622696309106, 18.180059036611617]
            • 0:21.783622696309106
            • 1:18.180059036611617
        • properties: desert
          • type:desert
          • Map:60
      • 11: Feature (Point, 2 properties)
        • type:Feature
        • id:11
        • geometry: Point (25.21, 19.08)
          • type:Point
          • coordinates: [25.206906194229546, 19.083814439854834]
            • 0:25.206906194229546
            • 1:19.083814439854834
        • properties: desert
          • type:desert
          • Map:60
      • 12: Feature (Point, 2 properties)
        • type:Feature
        • id:12
        • geometry: Point (22.01, 18.82)
          • type:Point
          • coordinates: [22.00701915605991, 18.823677740354164]
            • 0:22.00701915605991
            • 1:18.823677740354164
        • properties: desert
          • type:desert
          • Map:60
      • 13: Feature (Point, 2 properties)
        • type:Feature
        • id:13
        • geometry: Point (25.82, 22.46)
          • type:Point
          • coordinates: [25.817924369936488, 22.46344694707273]
            • 0:25.817924369936488
            • 1:22.46344694707273
        • properties: desert
          • type:desert
          • Map:60
      • 14: Feature (Point, 2 properties)
        • type:Feature
        • id:14
        • geometry: Point (17.47, 16.44)
          • type:Point
          • coordinates: [17.465850945421707, 16.44025497908579]
            • 0:17.465850945421707
            • 1:16.44025497908579
        • properties: desert
          • type:desert
          • Map:60
      • 15: Feature (Point, 2 properties)
        • type:Feature
        • id:15
        • geometry: Point (15.04, 19.48)
          • type:Point
          • coordinates: [15.038436719815207, 19.479248991796382]
            • 0:15.038436719815207
            • 1:19.479248991796382
        • properties: desert
          • type:desert
          • Map:60
      • 16: Feature (Point, 2 properties)
        • type:Feature
        • id:16
        • geometry: Point (25.67, 21.27)
          • type:Point
          • coordinates: [25.669709425853238, 21.27046143560778]
            • 0:25.669709425853238
            • 1:21.27046143560778
        • properties: desert
          • type:desert
          • Map:60
      • 17: Feature (Point, 2 properties)
        • type:Feature
        • id:17
        • geometry: Point (27.05, 20.67)
          • type:Point
          • coordinates: [27.05230077167444, 20.668569688815328]
            • 0:27.05230077167444
            • 1:20.668569688815328
        • properties: desert
          • type:desert
          • Map:60
      • 18: Feature (Point, 2 properties)
        • type:Feature
        • id:18
        • geometry: Point (27.57, 18.40)
          • type:Point
          • coordinates: [27.574602779016455, 18.399983349434603]
            • 0:27.574602779016455
            • 1:18.399983349434603
        • properties: desert
          • type:desert
          • Map:60
      • 19: Feature (Point, 2 properties)
        • type:Feature
        • id:19
        • geometry: Point (16.32, 17.69)
          • type:Point
          • coordinates: [16.317339328775688, 17.693826862783848]
            • 0:16.317339328775688
            • 1:17.693826862783848
        • properties: desert
          • type:desert
          • Map:60
      • 20: Feature (Point, 2 properties)
        • type:Feature
        • id:20
        • geometry: Point (21.23, 20.11)
          • type:Point
          • coordinates: [21.22973011631948, 20.114159060439754]
            • 0:21.22973011631948
            • 1:20.114159060439754
        • properties: desert
          • type:desert
          • Map:60
      • 21: Feature (Point, 2 properties)
        • type:Feature
        • id:21
        • geometry: Point (15.31, 21.13)
          • type:Point
          • coordinates: [15.310074504156725, 21.133612238186014]
            • 0:15.310074504156725
            • 1:21.133612238186014
        • properties: desert
          • type:desert
          • Map:60
      • 22: Feature (Point, 2 properties)
        • type:Feature
        • id:22
        • geometry: Point (20.16, 18.75)
          • type:Point
          • coordinates: [20.161074588029482, 18.74662936544515]
            • 0:20.161074588029482
            • 1:18.74662936544515
        • properties: desert
          • type:desert
          • Map:60
      • 23: Feature (Point, 2 properties)
        • type:Feature
        • id:23
        • geometry: Point (26.40, 18.76)
          • type:Point
          • coordinates: [26.400990444041636, 18.761814277657045]
            • 0:26.400990444041636
            • 1:18.761814277657045
        • properties: desert
          • type:desert
          • Map:60
      • 24: Feature (Point, 2 properties)
        • type:Feature
        • id:24
        • geometry: Point (25.44, 22.06)
          • type:Point
          • coordinates: [25.44455125567515, 22.05701505611395]
            • 0:25.44455125567515
            • 1:22.05701505611395
        • properties: desert
          • type:desert
          • Map:60
      • 25: Feature (Point, 2 properties)
        • type:Feature
        • id:25
        • geometry: Point (18.50, 17.11)
          • type:Point
          • coordinates: [18.498536506251654, 17.112566573639903]
            • 0:18.498536506251654
            • 1:17.112566573639903
        • properties: desert
          • type:desert
          • Map:60
      • 26: Feature (Point, 2 properties)
        • type:Feature
        • id:26
        • geometry: Point (17.90, 21.19)
          • type:Point
          • coordinates: [17.896809039169067, 21.18726103790213]
            • 0:17.896809039169067
            • 1:21.18726103790213
        • properties: desert
          • type:desert
          • Map:60
      • 27: Feature (Point, 2 properties)
        • type:Feature
        • id:27
        • geometry: Point (14.90, 20.67)
          • type:Point
          • coordinates: [14.898120411661054, 20.667601413234117]
            • 0:14.898120411661054
            • 1:20.667601413234117
        • properties: desert
          • type:desert
          • Map:60
      • 28: Feature (Point, 2 properties)
        • type:Feature
        • id:28
        • geometry: Point (21.70, 18.03)
          • type:Point
          • coordinates: [21.699008773161175, 18.03047744618211]
            • 0:21.699008773161175
            • 1:18.03047744618211
        • properties: desert
          • type:desert
          • Map:60
      • 29: Feature (Point, 2 properties)
        • type:Feature
        • id:29
        • geometry: Point (27.98, 21.03)
          • type:Point
          • coordinates: [27.977274463503342, 21.02663195459481]
            • 0:27.977274463503342
            • 1:21.02663195459481
        • properties: desert
          • type:desert
          • Map:60
      • 30: Feature (Point, 2 properties)
        • type:Feature
        • id:30
        • geometry: Point (25.93, 20.37)
          • type:Point
          • coordinates: [25.929997613985776, 20.365417189322148]
            • 0:25.929997613985776
            • 1:20.365417189322148
        • properties: desert
          • type:desert
          • Map:60
      • 31: Feature (Point, 2 properties)
        • type:Feature
        • id:31
        • geometry: Point (13.42, 20.59)
          • type:Point
          • coordinates: [13.416568417774142, 20.58908437662902]
            • 0:13.416568417774142
            • 1:20.58908437662902
        • properties: desert
          • type:desert
          • Map:60
      • 32: Feature (Point, 2 properties)
        • type:Feature
        • id:32
        • geometry: Point (28.25, 19.04)
          • type:Point
          • coordinates: [28.254054747708903, 19.044885907634384]
            • 0:28.254054747708903
            • 1:19.044885907634384
        • properties: desert
          • type:desert
          • Map:60
      • 33: Feature (Point, 2 properties)
        • type:Feature
        • id:33
        • geometry: Point (25.21, 19.35)
          • type:Point
          • coordinates: [25.210173547365123, 19.349940050296222]
            • 0:25.210173547365123
            • 1:19.349940050296222
        • properties: desert
          • type:desert
          • Map:60
      • 34: Feature (Point, 2 properties)
        • type:Feature
        • id:34
        • geometry: Point (25.61, 19.10)
          • type:Point
          • coordinates: [25.60677979851642, 19.10306717325082]
            • 0:25.60677979851642
            • 1:19.10306717325082
        • properties: desert
          • type:desert
          • Map:60
      • 35: Feature (Point, 2 properties)
        • type:Feature
        • id:35
        • geometry: Point (26.47, 19.15)
          • type:Point
          • coordinates: [26.471444172505556, 19.150284137567077]
            • 0:26.471444172505556
            • 1:19.150284137567077
        • properties: desert
          • type:desert
          • Map:60
      • 36: Feature (Point, 2 properties)
        • type:Feature
        • id:36
        • geometry: Point (17.24, 19.27)
          • type:Point
          • coordinates: [17.239942821033825, 19.266034394763118]
            • 0:17.239942821033825
            • 1:19.266034394763118
        • properties: desert
          • type:desert
          • Map:60
      • 37: Feature (Point, 2 properties)
        • type:Feature
        • id:37
        • geometry: Point (22.04, 17.60)
          • type:Point
          • coordinates: [22.041436395289363, 17.598793993508256]
            • 0:22.041436395289363
            • 1:17.598793993508256
        • properties: desert
          • type:desert
          • Map:60
      • 38: Feature (Point, 2 properties)
        • type:Feature
        • id:38
        • geometry: Point (21.42, 21.41)
          • type:Point
          • coordinates: [21.416538783199616, 21.40970565766803]
            • 0:21.416538783199616
            • 1:21.40970565766803
        • properties: desert
          • type:desert
          • Map:60
      • 39: Feature (Point, 2 properties)
        • type:Feature
        • id:39
        • geometry: Point (14.61, 19.09)
          • type:Point
          • coordinates: [14.612355525458128, 19.087385269917593]
            • 0:14.612355525458128
            • 1:19.087385269917593
        • properties: desert
          • type:desert
          • Map:60
      • 40: Feature (Point, 2 properties)
        • type:Feature
        • id:40
        • geometry: Point (22.96, 18.70)
          • type:Point
          • coordinates: [22.960161793981808, 18.696685896000616]
            • 0:22.960161793981808
            • 1:18.696685896000616
        • properties: desert
          • type:desert
          • Map:60
      • 41: Feature (Point, 2 properties)
        • type:Feature
        • id:41
        • geometry: Point (17.32, 16.95)
          • type:Point
          • coordinates: [17.315228370537945, 16.95455638484755]
            • 0:17.315228370537945
            • 1:16.95455638484755
        • properties: desert
          • type:desert
          • Map:60
      • 42: Feature (Point, 2 properties)
        • type:Feature
        • id:42
        • geometry: Point (12.08, 19.83)
          • type:Point
          • coordinates: [12.075700221027535, 19.827910446754014]
            • 0:12.075700221027535
            • 1:19.827910446754014
        • properties: desert
          • type:desert
          • Map:60
      • 43: Feature (Point, 2 properties)
        • type:Feature
        • id:43
        • geometry: Point (27.75, 21.00)
          • type:Point
          • coordinates: [27.747159543204557, 21.004070182012935]
            • 0:27.747159543204557
            • 1:21.004070182012935
        • properties: desert
          • type:desert
          • Map:60
      • 44: Feature (Point, 2 properties)
        • type:Feature
        • id:44
        • geometry: Point (13.21, 20.23)
          • type:Point
          • coordinates: [13.212114674770136, 20.231750436881487]
            • 0:13.212114674770136
            • 1:20.231750436881487
        • properties: desert
          • type:desert
          • Map:60
      • 45: Feature (Point, 2 properties)
        • type:Feature
        • id:45
        • geometry: Point (26.78, 20.46)
          • type:Point
          • coordinates: [26.781719467219432, 20.462557492246884]
            • 0:26.781719467219432
            • 1:20.462557492246884
        • properties: desert
          • type:desert
          • Map:60
      • 46: Feature (Point, 2 properties)
        • type:Feature
        • id:46
        • geometry: Point (28.30, 17.90)
          • type:Point
          • coordinates: [28.30020940831134, 17.89978627760156]
            • 0:28.30020940831134
            • 1:17.89978627760156
        • properties: desert
          • type:desert
          • Map:60
      • 47: Feature (Point, 2 properties)
        • type:Feature
        • id:47
        • geometry: Point (19.96, 19.00)
          • type:Point
          • coordinates: [19.957953193043103, 18.99807884922637]
            • 0:19.957953193043103
            • 1:18.99807884922637
        • properties: desert
          • type:desert
          • Map:60
      • 48: Feature (Point, 2 properties)
        • type:Feature
        • id:48
        • geometry: Point (18.34, 15.86)
          • type:Point
          • coordinates: [18.344886134413645, 15.859813523602575]
            • 0:18.344886134413645
            • 1:15.859813523602575
        • properties: desert
          • type:desert
          • Map:60
      • 49: Feature (Point, 2 properties)
        • type:Feature
        • id:49
        • geometry: Point (25.10, 18.32)
          • type:Point
          • coordinates: [25.101410430029542, 18.322875165223365]
            • 0:25.101410430029542
            • 1:18.322875165223365
        • properties: desert
          • type:desert
          • Map:60
      • 50: Feature (Point, 2 properties)
        • type:Feature
        • id:50
        • geometry: Point (15.50, 16.20)
          • type:Point
          • coordinates: [15.497083801177897, 16.196582766591717]
            • 0:15.497083801177897
            • 1:16.196582766591717
        • properties: desert
          • type:desert
          • Map:60
      • 51: Feature (Point, 2 properties)
        • type:Feature
        • id:51
        • geometry: Point (28.92, 19.17)
          • type:Point
          • coordinates: [28.916112403632436, 19.17318226099911]
            • 0:28.916112403632436
            • 1:19.17318226099911
        • properties: desert
          • type:desert
          • Map:60
      • 52: Feature (Point, 2 properties)
        • type:Feature
        • id:52
        • geometry: Point (21.03, 17.32)
          • type:Point
          • coordinates: [21.03307767881115, 17.315950139491015]
            • 0:21.03307767881115
            • 1:17.315950139491015
        • properties: desert
          • type:desert
          • Map:60
      • 53: Feature (Point, 2 properties)
        • type:Feature
        • id:53
        • geometry: Point (25.48, 22.19)
          • type:Point
          • coordinates: [25.479905915744958, 22.18894185337455]
            • 0:25.479905915744958
            • 1:22.18894185337455
        • properties: desert
          • type:desert
          • Map:60
      • 54: Feature (Point, 2 properties)
        • type:Feature
        • id:54
        • geometry: Point (12.68, 18.38)
          • type:Point
          • coordinates: [12.682369429285876, 18.382931280198882]
            • 0:12.682369429285876
            • 1:18.382931280198882
        • properties: desert
          • type:desert
          • Map:60
      • 55: Feature (Point, 2 properties)
        • type:Feature
        • id:55
        • geometry: Point (18.67, 20.50)
          • type:Point
          • coordinates: [18.67454443108427, 20.50061424628251]
            • 0:18.67454443108427
            • 1:20.50061424628251
        • properties: desert
          • type:desert
          • Map:60
      • 56: Feature (Point, 2 properties)
        • type:Feature
        • id:56
        • geometry: Point (27.53, 21.12)
          • type:Point
          • coordinates: [27.527180106599936, 21.117508305877255]
            • 0:27.527180106599936
            • 1:21.117508305877255
        • properties: desert
          • type:desert
          • Map:60
      • 57: Feature (Point, 2 properties)
        • type:Feature
        • id:57
        • geometry: Point (16.08, 20.13)
          • type:Point
          • coordinates: [16.079877390702862, 20.13364636198871]
            • 0:16.079877390702862
            • 1:20.13364636198871
        • properties: desert
          • type:desert
          • Map:60
      • 58: Feature (Point, 2 properties)
        • type:Feature
        • id:58
        • geometry: Point (28.60, 19.34)
          • type:Point
          • coordinates: [28.59953267096698, 19.34349935671626]
            • 0:28.59953267096698
            • 1:19.34349935671626
        • properties: desert
          • type:desert
          • Map:60
      • 59: Feature (Point, 2 properties)
        • type:Feature
        • id:59
        • geometry: Point (19.05, 21.59)
          • type:Point
          • coordinates: [19.051962326918414, 21.591355989477545]
            • 0:19.051962326918414
            • 1:21.591355989477545
        • properties: desert
          • type:desert
          • Map:60
      • 60: Feature (Point, 2 properties)
        • type:Feature
        • id:60
        • geometry: Point (25.14, 17.08)
          • type:Point
          • coordinates: [25.136682715207087, 17.083904035903597]
            • 0:25.136682715207087
            • 1:17.083904035903597
        • properties: desert
          • type:desert
          • Map:60
      • 61: Feature (Point, 2 properties)
        • type:Feature
        • id:61
        • geometry: Point (18.06, 19.02)
          • type:Point
          • coordinates: [18.06133491422452, 19.017747392778972]
            • 0:18.06133491422452
            • 1:19.017747392778972
        • properties: desert
          • type:desert
          • Map:60
      • 62: Feature (Point, 2 properties)
        • type:Feature
        • id:62
        • geometry: Point (24.96, 17.74)
          • type:Point
          • coordinates: [24.9558695648155, 17.73742528502636]
            • 0:24.9558695648155
            • 1:17.73742528502636
        • properties: desert
          • type:desert
          • Map:60
      • 63: Feature (Point, 2 properties)
        • type:Feature
        • id:63
        • geometry: Point (11.89, 20.35)
          • type:Point
          • coordinates: [11.89256959559569, 20.35126612694011]
            • 0:11.89256959559569
            • 1:20.35126612694011
        • properties: desert
          • type:desert
          • Map:60
      • 64: Feature (Point, 2 properties)
        • type:Feature
        • id:64
        • geometry: Point (19.18, 21.81)
          • type:Point
          • coordinates: [19.180867272700716, 21.807794898335672]
            • 0:19.180867272700716
            • 1:21.807794898335672
        • properties: desert
          • type:desert
          • Map:60
      • 65: Feature (Point, 2 properties)
        • type:Feature
        • id:65
        • geometry: Point (15.48, 20.81)
          • type:Point
          • coordinates: [15.475717529075494, 20.80669432359743]
            • 0:15.475717529075494
            • 1:20.80669432359743
        • properties: desert
          • type:desert
          • Map:60
      • 66: Feature (Point, 2 properties)
        • type:Feature
        • id:66
        • geometry: Point (19.34, 19.56)
          • type:Point
          • coordinates: [19.339220509009937, 19.55878276256079]
            • 0:19.339220509009937
            • 1:19.55878276256079
        • properties: desert
          • type:desert
          • Map:60
      • 67: Feature (Point, 2 properties)
        • type:Feature
        • id:67
        • geometry: Point (16.21, 17.80)
          • type:Point
          • coordinates: [16.209810497789647, 17.802703545155236]
            • 0:16.209810497789647
            • 1:17.802703545155236
        • properties: desert
          • type:desert
          • Map:60
      • 68: Feature (Point, 2 properties)
        • type:Feature
        • id:68
        • geometry: Point (27.97, 17.31)
          • type:Point
          • coordinates: [27.97302092546028, 17.307805603328646]
            • 0:27.97302092546028
            • 1:17.307805603328646
        • properties: desert
          • type:desert
          • Map:60
      • 69: Feature (Point, 2 properties)
        • type:Feature
        • id:69
        • geometry: Point (18.67, 17.73)
          • type:Point
          • coordinates: [18.668463036989902, 17.732781627441717]
            • 0:18.668463036989902
            • 1:17.732781627441717
        • properties: desert
          • type:desert
          • Map:60
      • 70: Feature (Point, 2 properties)
        • type:Feature
        • id:70
        • geometry: Point (12.57, 17.36)
          • type:Point
          • coordinates: [12.569182665094422, 17.3588387337649]
            • 0:12.569182665094422
            • 1:17.3588387337649
        • properties: desert
          • type:desert
          • Map:60
      • 71: Feature (Point, 2 properties)
        • type:Feature
        • id:71
        • geometry: Point (18.34, 21.81)
          • type:Point
          • coordinates: [18.336710622412173, 21.8074864620309]
            • 0:18.336710622412173
            • 1:21.8074864620309
        • properties: desert
          • type:desert
          • Map:60
      • 72: Feature (Point, 2 properties)
        • type:Feature
        • id:72
        • geometry: Point (28.04, 19.50)
          • type:Point
          • coordinates: [28.03948005780826, 19.50489076400461]
            • 0:28.03948005780826
            • 1:19.50489076400461
        • properties: desert
          • type:desert
          • Map:60
      • 73: Feature (Point, 2 properties)
        • type:Feature
        • id:73
        • geometry: Point (13.04, 17.45)
          • type:Point
          • coordinates: [13.03742141333148, 17.45184438613228]
            • 0:13.03742141333148
            • 1:17.45184438613228
        • properties: desert
          • type:desert
          • Map:60
      • 74: Feature (Point, 2 properties)
        • type:Feature
        • id:74
        • geometry: Point (17.48, 19.10)
          • type:Point
          • coordinates: [17.4787028854679, 19.096303672816717]
            • 0:17.4787028854679
            • 1:19.096303672816717
        • properties: desert
          • type:desert
          • Map:60
      • 75: Feature (Point, 2 properties)
        • type:Feature
        • id:75
        • geometry: Point (28.67, 19.01)
          • type:Point
          • coordinates: [28.66782243593905, 19.00954746579613]
            • 0:28.66782243593905
            • 1:19.00954746579613
        • properties: desert
          • type:desert
          • Map:60
      • 76: Feature (Point, 2 properties)
        • type:Feature
        • id:76
        • geometry: Point (25.66, 21.80)
          • type:Point
          • coordinates: [25.66387814980376, 21.79824828461223]
            • 0:25.66387814980376
            • 1:21.79824828461223
        • properties: desert
          • type:desert
          • Map:60
      • 77: Feature (Point, 2 properties)
        • type:Feature
        • id:77
        • geometry: Point (27.19, 19.17)
          • type:Point
          • coordinates: [27.18608404775899, 19.1731995947063]
            • 0:27.18608404775899
            • 1:19.1731995947063
        • properties: desert
          • type:desert
          • Map:60
      • 78: Feature (Point, 2 properties)
        • type:Feature
        • id:78
        • geometry: Point (15.24, 18.93)
          • type:Point
          • coordinates: [15.237895376957717, 18.92692893121473]
            • 0:15.237895376957717
            • 1:18.92692893121473
        • properties: desert
          • type:desert
          • Map:60
      • 79: Feature (Point, 2 properties)
        • type:Feature
        • id:79
        • geometry: Point (18.83, 17.10)
          • type:Point
          • coordinates: [18.828266919709034, 17.09847879705292]
            • 0:18.828266919709034
            • 1:17.09847879705292
        • properties: desert
          • type:desert
          • Map:60
      • 80: Feature (Point, 2 properties)
        • type:Feature
        • id:80
        • geometry: Point (16.80, 19.97)
          • type:Point
          • coordinates: [16.796311478007606, 19.969916135031795]
            • 0:16.796311478007606
            • 1:19.969916135031795
        • properties: desert
          • type:desert
          • Map:60
      • 81: Feature (Point, 2 properties)
        • type:Feature
        • id:81
        • geometry: Point (22.30, 18.21)
          • type:Point
          • coordinates: [22.297859669527675, 18.20736660959358]
            • 0:22.297859669527675
            • 1:18.20736660959358
        • properties: desert
          • type:desert
          • Map:60
      • 82: Feature (Point, 2 properties)
        • type:Feature
        • id:82
        • geometry: Point (11.69, 18.69)
          • type:Point
          • coordinates: [11.689736366793714, 18.693335211555485]
            • 0:11.689736366793714
            • 1:18.693335211555485
        • properties: desert
          • type:desert
          • Map:60
      • 83: Feature (Point, 2 properties)
        • type:Feature
        • id:83
        • geometry: Point (16.18, 18.77)
          • type:Point
          • coordinates: [16.176310081874, 18.76732416801332]
            • 0:16.176310081874
            • 1:18.76732416801332
        • properties: desert
          • type:desert
          • Map:60
      • 84: Feature (Point, 2 properties)
        • type:Feature
        • id:84
        • geometry: Point (26.56, 17.23)
          • type:Point
          • coordinates: [26.563664895138228, 17.22699427922012]
            • 0:26.563664895138228
            • 1:17.22699427922012
        • properties: desert
          • type:desert
          • Map:60
      • 85: Feature (Point, 2 properties)
        • type:Feature
        • id:85
        • geometry: Point (15.21, 17.26)
          • type:Point
          • coordinates: [15.205736264134995, 17.264468543353146]
            • 0:15.205736264134995
            • 1:17.264468543353146
        • properties: desert
          • type:desert
          • Map:60
      • 86: Feature (Point, 2 properties)
        • type:Feature
        • id:86
        • geometry: Point (15.52, 18.11)
          • type:Point
          • coordinates: [15.515101874579013, 18.106675244944537]
            • 0:15.515101874579013
            • 1:18.106675244944537
        • properties: desert
          • type:desert
          • Map:60
      • 87: Feature (Point, 2 properties)
        • type:Feature
        • id:87
        • geometry: Point (26.47, 19.01)
          • type:Point
          • coordinates: [26.466309461703148, 19.005894630492513]
            • 0:26.466309461703148
            • 1:19.005894630492513
        • properties: desert
          • type:desert
          • Map:60
      • 88: Feature (Point, 2 properties)
        • type:Feature
        • id:88
        • geometry: Point (12.86, 19.57)
          • type:Point
          • coordinates: [12.855454304219075, 19.56749419856088]
            • 0:12.855454304219075
            • 1:19.56749419856088
        • properties: desert
          • type:desert
          • Map:60
      • 89: Feature (Point, 2 properties)
        • type:Feature
        • id:89
        • geometry: Point (27.02, 17.39)
          • type:Point
          • coordinates: [27.020539363763344, 17.388739336401454]
            • 0:27.020539363763344
            • 1:17.388739336401454
        • properties: desert
          • type:desert
          • Map:60
      • 90: Feature (Point, 2 properties)
        • type:Feature
        • id:90
        • geometry: Point (23.47, 22.10)
          • type:Point
          • coordinates: [23.471876089764713, 22.103410490669646]
            • 0:23.471876089764713
            • 1:22.103410490669646
        • properties: desert
          • type:desert
          • Map:60
      • 91: Feature (Point, 2 properties)
        • type:Feature
        • id:91
        • geometry: Point (20.20, 18.45)
          • type:Point
          • coordinates: [20.197692363887622, 18.450578931251446]
            • 0:20.197692363887622
            • 1:18.450578931251446
        • properties: desert
          • type:desert
          • Map:60
      • 92: Feature (Point, 2 properties)
        • type:Feature
        • id:92
        • geometry: Point (14.93, 16.49)
          • type:Point
          • coordinates: [14.927579370302082, 16.486385573939224]
            • 0:14.927579370302082
            • 1:16.486385573939224
        • properties: desert
          • type:desert
          • Map:60
      • 93: Feature (Point, 2 properties)
        • type:Feature
        • id:93
        • geometry: Point (14.98, 17.81)
          • type:Point
          • coordinates: [14.975529026388555, 17.811188373913335]
            • 0:14.975529026388555
            • 1:17.811188373913335
        • properties: desert
          • type:desert
          • Map:60
      • 94: Feature (Point, 2 properties)
        • type:Feature
        • id:94
        • geometry: Point (19.99, 18.80)
          • type:Point
          • coordinates: [19.98777012799743, 18.800657514569334]
            • 0:19.98777012799743
            • 1:18.800657514569334
        • properties: desert
          • type:desert
          • Map:60
      • 95: Feature (Point, 2 properties)
        • type:Feature
        • id:95
        • geometry: Point (26.70, 17.47)
          • type:Point
          • coordinates: [26.698373906449913, 17.46519937135244]
            • 0:26.698373906449913
            • 1:17.46519937135244
        • properties: desert
          • type:desert
          • Map:60
      • 96: Feature (Point, 2 properties)
        • type:Feature
        • id:96
        • geometry: Point (15.79, 18.51)
          • type:Point
          • coordinates: [15.794693175715677, 18.506580553082607]
            • 0:15.794693175715677
            • 1:18.506580553082607
        • properties: desert
          • type:desert
          • Map:60
      • 97: Feature (Point, 2 properties)
        • type:Feature
        • id:97
        • geometry: Point (21.95, 17.90)
          • type:Point
          • coordinates: [21.953930091905363, 17.90304401628515]
            • 0:21.953930091905363
            • 1:17.90304401628515
        • properties: desert
          • type:desert
          • Map:60
      • 98: Feature (Point, 2 properties)
        • type:Feature
        • id:98
        • geometry: Point (18.10, 20.19)
          • type:Point
          • coordinates: [18.10346857111034, 20.188184216493045]
            • 0:18.10346857111034
            • 1:20.188184216493045
        • properties: desert
          • type:desert
          • Map:60
      • 99: Feature (Point, 2 properties)
        • type:Feature
        • id:99
        • geometry: Point (18.75, 16.74)
          • type:Point
          • coordinates: [18.754902370274042, 16.73993648803825]
            • 0:18.754902370274042
            • 1:16.73993648803825
        • properties: desert
          • type:desert
          • Map:60
      • 100: Feature (Point, 2 properties)
        • type:Feature
        • id:100
        • geometry: Point (26.83, 19.96)
          • type:Point
          • coordinates: [26.830301305466165, 19.959544417745345]
            • 0:26.830301305466165
            • 1:19.959544417745345
        • properties: desert
          • type:desert
          • Map:60
      • 101: Feature (Point, 2 properties)
        • type:Feature
        • id:101
        • geometry: Point (23.67, 19.26)
          • type:Point
          • coordinates: [23.674524158344546, 19.25683292470468]
            • 0:23.674524158344546
            • 1:19.25683292470468
        • properties: desert
          • type:desert
          • Map:60
      • 102: Feature (Point, 2 properties)
        • type:Feature
        • id:102
        • geometry: Point (20.07, 18.96)
          • type:Point
          • coordinates: [20.0654118544097, 18.961392980767002]
            • 0:20.0654118544097
            • 1:18.961392980767002
        • properties: desert
          • type:desert
          • Map:60
      • 103: Feature (Point, 2 properties)
        • type:Feature
        • id:103
        • geometry: Point (13.86, 18.90)
          • type:Point
          • coordinates: [13.864877688903022, 18.895150456677545]
            • 0:13.864877688903022
            • 1:18.895150456677545
        • properties: desert
          • type:desert
          • Map:60
      • 104: Feature (Point, 2 properties)
        • type:Feature
        • id:104
        • geometry: Point (26.91, 17.94)
          • type:Point
          • coordinates: [26.91229362684375, 17.942348665920658]
            • 0:26.91229362684375
            • 1:17.942348665920658
        • properties: desert
          • type:desert
          • Map:60
      • 105: Feature (Point, 2 properties)
        • type:Feature
        • id:105
        • geometry: Point (27.09, 20.67)
          • type:Point
          • coordinates: [27.089871837408886, 20.669595957048518]
            • 0:27.089871837408886
            • 1:20.669595957048518
        • properties: desert
          • type:desert
          • Map:60
      • 106: Feature (Point, 2 properties)
        • type:Feature
        • id:106
        • geometry: Point (13.21, 19.60)
          • type:Point
          • coordinates: [13.209698185558416, 19.602381504345686]
            • 0:13.209698185558416
            • 1:19.602381504345686
        • properties: desert
          • type:desert
          • Map:60
      • 107: Feature (Point, 2 properties)
        • type:Feature
        • id:107
        • geometry: Point (20.69, 20.29)
          • type:Point
          • coordinates: [20.687887682897685, 20.28896856913465]
            • 0:20.687887682897685
            • 1:20.28896856913465
        • properties: desert
          • type:desert
          • Map:60
      • 108: Feature (Point, 2 properties)
        • type:Feature
        • id:108
        • geometry: Point (24.07, 19.30)
          • type:Point
          • coordinates: [24.066193530112113, 19.30158798526262]
            • 0:24.066193530112113
            • 1:19.30158798526262
        • properties: desert
          • type:desert
          • Map:60
      • 109: Feature (Point, 2 properties)
        • type:Feature
        • id:109
        • geometry: Point (19.13, 20.64)
          • type:Point
          • coordinates: [19.12548451599013, 20.64272558219962]
            • 0:19.12548451599013
            • 1:20.64272558219962
        • properties: desert
          • type:desert
          • Map:60
      • 110: Feature (Point, 2 properties)
        • type:Feature
        • id:110
        • geometry: Point (18.42, 16.54)
          • type:Point
          • coordinates: [18.416800939068526, 16.53788527150695]
            • 0:18.416800939068526
            • 1:16.53788527150695
        • properties: desert
          • type:desert
          • Map:60
      • 111: Feature (Point, 2 properties)
        • type:Feature
        • id:111
        • geometry: Point (20.87, 17.96)
          • type:Point
          • coordinates: [20.86585383236832, 17.958736228326522]
            • 0:20.86585383236832
            • 1:17.958736228326522
        • properties: desert
          • type:desert
          • Map:60
      • 112: Feature (Point, 2 properties)
        • type:Feature
        • id:112
        • geometry: Point (15.44, 20.44)
          • type:Point
          • coordinates: [15.435722945412888, 20.44102229930613]
            • 0:15.435722945412888
            • 1:20.44102229930613
        • properties: desert
          • type:desert
          • Map:60
      • 113: Feature (Point, 2 properties)
        • type:Feature
        • id:113
        • geometry: Point (22.58, 20.96)
          • type:Point
          • coordinates: [22.575546921094357, 20.957083749784132]
            • 0:22.575546921094357
            • 1:20.957083749784132
        • properties: desert
          • type:desert
          • Map:60
      • 114: Feature (Point, 2 properties)
        • type:Feature
        • id:114
        • geometry: Point (24.15, 19.74)
          • type:Point
          • coordinates: [24.150023195249272, 19.738179681195632]
            • 0:24.150023195249272
            • 1:19.738179681195632
        • properties: desert
          • type:desert
          • Map:60
      • 115: Feature (Point, 2 properties)
        • type:Feature
        • id:115
        • geometry: Point (27.86, 19.43)
          • type:Point
          • coordinates: [27.858637934180358, 19.43155516397888]
            • 0:27.858637934180358
            • 1:19.43155516397888
        • properties: desert
          • type:desert
          • Map:60
      • 116: Feature (Point, 2 properties)
        • type:Feature
        • id:116
        • geometry: Point (28.88, 19.71)
          • type:Point
          • coordinates: [28.883426052211174, 19.707056118347186]
            • 0:28.883426052211174
            • 1:19.707056118347186
        • properties: desert
          • type:desert
          • Map:60
      • 117: Feature (Point, 2 properties)
        • type:Feature
        • id:117
        • geometry: Point (20.94, 17.62)
          • type:Point
          • coordinates: [20.94076896899693, 17.61923819213977]
            • 0:20.94076896899693
            • 1:17.61923819213977
        • properties: desert
          • type:desert
          • Map:60
      • 118: Feature (Point, 2 properties)
        • type:Feature
        • id:118
        • geometry: Point (23.30, 18.42)
          • type:Point
          • coordinates: [23.296661938552134, 18.41892858339129]
            • 0:23.296661938552134
            • 1:18.41892858339129
        • properties: desert
          • type:desert
          • Map:60
      • 119: Feature (Point, 2 properties)
        • type:Feature
        • id:119
        • geometry: Point (21.12, 20.30)
          • type:Point
          • coordinates: [21.121262222395774, 20.29524350249386]
            • 0:21.121262222395774
            • 1:20.29524350249386
        • properties: desert
          • type:desert
          • Map:60
      • 120: Feature (Point, 2 properties)
        • type:Feature
        • id:120
        • geometry: Point (21.02, 21.29)
          • type:Point
          • coordinates: [21.018523665375337, 21.290867398746666]
            • 0:21.018523665375337
            • 1:21.290867398746666
        • properties: desert
          • type:desert
          • Map:60
      • 121: Feature (Point, 2 properties)
        • type:Feature
        • id:121
        • geometry: Point (18.92, 19.33)
          • type:Point
          • coordinates: [18.922310127628666, 19.329487561599144]
            • 0:18.922310127628666
            • 1:19.329487561599144
        • properties: desert
          • type:desert
          • Map:60
      • 122: Feature (Point, 2 properties)
        • type:Feature
        • id:122
        • geometry: Point (14.84, 16.35)
          • type:Point
          • coordinates: [14.83830305278017, 16.35395702077321]
            • 0:14.83830305278017
            • 1:16.35395702077321
        • properties: desert
          • type:desert
          • Map:60
      • 123: Feature (Point, 2 properties)
        • type:Feature
        • id:123
        • geometry: Point (14.10, 20.13)
          • type:Point
          • coordinates: [14.102980997741396, 20.130814897422205]
            • 0:14.102980997741396
            • 1:20.130814897422205
        • properties: desert
          • type:desert
          • Map:60
      • 124: Feature (Point, 2 properties)
        • type:Feature
        • id:124
        • geometry: Point (28.96, 19.88)
          • type:Point
          • coordinates: [28.963873458610582, 19.88206004955665]
            • 0:28.963873458610582
            • 1:19.88206004955665
        • properties: desert
          • type:desert
          • Map:60
      • 125: Feature (Point, 2 properties)
        • type:Feature
        • id:125
        • geometry: Point (21.57, 20.51)
          • type:Point
          • coordinates: [21.570320866590148, 20.514876609247327]
            • 0:21.570320866590148
            • 1:20.514876609247327
        • properties: desert
          • type:desert
          • Map:60
      • 126: Feature (Point, 2 properties)
        • type:Feature
        • id:126
        • geometry: Point (23.46, 17.06)
          • type:Point
          • coordinates: [23.460055973865018, 17.06275814522082]
            • 0:23.460055973865018
            • 1:17.06275814522082
        • properties: desert
          • type:desert
          • Map:60
      • 127: Feature (Point, 2 properties)
        • type:Feature
        • id:127
        • geometry: Point (21.17, 18.29)
          • type:Point
          • coordinates: [21.170345918399708, 18.28642887814053]
            • 0:21.170345918399708
            • 1:18.28642887814053
        • properties: desert
          • type:desert
          • Map:60
      • 128: Feature (Point, 2 properties)
        • type:Feature
        • id:128
        • geometry: Point (27.98, 19.64)
          • type:Point
          • coordinates: [27.978023693442672, 19.636907700610827]
            • 0:27.978023693442672
            • 1:19.636907700610827
        • properties: desert
          • type:desert
          • Map:60
      • 129: Feature (Point, 2 properties)
        • type:Feature
        • id:129
        • geometry: Point (20.60, 18.45)
          • type:Point
          • coordinates: [20.603307389247632, 18.44993553771659]
            • 0:20.603307389247632
            • 1:18.44993553771659
        • properties: desert
          • type:desert
          • Map:60
      • 130: Feature (Point, 2 properties)
        • type:Feature
        • id:130
        • geometry: Point (15.97, 16.68)
          • type:Point
          • coordinates: [15.969256319768919, 16.67799870086374]
            • 0:15.969256319768919
            • 1:16.67799870086374
        • properties: desert
          • type:desert
          • Map:60
      • 131: Feature (Point, 2 properties)
        • type:Feature
        • id:131
        • geometry: Point (23.01, 18.88)
          • type:Point
          • coordinates: [23.0147964284906, 18.88320275902313]
            • 0:23.0147964284906
            • 1:18.88320275902313
        • properties: desert
          • type:desert
          • Map:60
      • 132: Feature (Point, 2 properties)
        • type:Feature
        • id:132
        • geometry: Point (20.33, 20.30)
          • type:Point
          • coordinates: [20.330562480531405, 20.30009491992415]
            • 0:20.330562480531405
            • 1:20.30009491992415
        • properties: desert
          • type:desert
          • Map:60
      • 133: Feature (Point, 2 properties)
        • type:Feature
        • id:133
        • geometry: Point (17.27, 16.93)
          • type:Point
          • coordinates: [17.26990549650947, 16.926439613547863]
            • 0:17.26990549650947
            • 1:16.926439613547863
        • properties: desert
          • type:desert
          • Map:60
      • 134: Feature (Point, 2 properties)
        • type:Feature
        • id:134
        • geometry: Point (25.26, 21.02)
          • type:Point
          • coordinates: [25.264868142006023, 21.015036676882954]
            • 0:25.264868142006023
            • 1:21.015036676882954
        • properties: desert
          • type:desert
          • Map:60
      • 135: Feature (Point, 2 properties)
        • type:Feature
        • id:135
        • geometry: Point (28.85, 17.43)
          • type:Point
          • coordinates: [28.853859690214293, 17.433640240485797]
            • 0:28.853859690214293
            • 1:17.433640240485797
        • properties: desert
          • type:desert
          • Map:60
      • 136: Feature (Point, 2 properties)
        • type:Feature
        • id:136
        • geometry: Point (20.85, 19.40)
          • type:Point
          • coordinates: [20.854576322663036, 19.39668759020225]
            • 0:20.854576322663036
            • 1:19.39668759020225
        • properties: desert
          • type:desert
          • Map:60
      • 137: Feature (Point, 2 properties)
        • type:Feature
        • id:137
        • geometry: Point (21.38, 22.06)
          • type:Point
          • coordinates: [21.378152958219665, 22.057246315425132]
            • 0:21.378152958219665
            • 1:22.057246315425132
        • properties: desert
          • type:desert
          • Map:60
      • 138: Feature (Point, 2 properties)
        • type:Feature
        • id:138
        • geometry: Point (25.37, 18.76)
          • type:Point
          • coordinates: [25.374004516584897, 18.759743312089665]
            • 0:25.374004516584897
            • 1:18.759743312089665
        • properties: desert
          • type:desert
          • Map:60
      • 139: Feature (Point, 2 properties)
        • type:Feature
        • id:139
        • geometry: Point (22.94, 17.67)
          • type:Point
          • coordinates: [22.935445293476228, 17.66615929278086]
            • 0:22.935445293476228
            • 1:17.66615929278086
        • properties: desert
          • type:desert
          • Map:60
      • 140: Feature (Point, 2 properties)
        • type:Feature
        • id:140
        • geometry: Point (17.34, 15.85)
          • type:Point
          • coordinates: [17.33807124506168, 15.847497222895147]
            • 0:17.33807124506168
            • 1:15.847497222895147
        • properties: desert
          • type:desert
          • Map:60
      • 141: Feature (Point, 2 properties)
        • type:Feature
        • id:141
        • geometry: Point (24.50, 18.51)
          • type:Point
          • coordinates: [24.496820686342772, 18.50809306485779]
            • 0:24.496820686342772
            • 1:18.50809306485779
        • properties: desert
          • type:desert
          • Map:60
      • 142: Feature (Point, 2 properties)
        • type:Feature
        • id:142
        • geometry: Point (23.29, 20.16)
          • type:Point
          • coordinates: [23.287948449506718, 20.160171168125903]
            • 0:23.287948449506718
            • 1:20.160171168125903
        • properties: desert
          • type:desert
          • Map:60
      • 143: Feature (Point, 2 properties)
        • type:Feature
        • id:143
        • geometry: Point (12.88, 19.89)
          • type:Point
          • coordinates: [12.882574800529175, 19.89032196445133]
            • 0:12.882574800529175
            • 1:19.89032196445133
        • properties: desert
          • type:desert
          • Map:60
      • 144: Feature (Point, 2 properties)
        • type:Feature
        • id:144
        • geometry: Point (24.67, 21.15)
          • type:Point
          • coordinates: [24.673702265804472, 21.15190725489229]
            • 0:24.673702265804472
            • 1:21.15190725489229
        • properties: desert
          • type:desert
          • Map:60
      • 145: Feature (Point, 2 properties)
        • type:Feature
        • id:145
        • geometry: Point (19.57, 17.57)
          • type:Point
          • coordinates: [19.56690287502114, 17.56885260761051]
            • 0:19.56690287502114
            • 1:17.56885260761051
        • properties: desert
          • type:desert
          • Map:60
      • 146: Feature (Point, 2 properties)
        • type:Feature
        • id:146
        • geometry: Point (20.74, 19.91)
          • type:Point
          • coordinates: [20.73951335330708, 19.91024022264796]
            • 0:20.73951335330708
            • 1:19.91024022264796
        • properties: desert
          • type:desert
          • Map:60
      • 147: Feature (Point, 2 properties)
        • type:Feature
        • id:147
        • geometry: Point (16.51, 16.66)
          • type:Point
          • coordinates: [16.510755423502108, 16.657437800615263]
            • 0:16.510755423502108
            • 1:16.657437800615263
        • properties: desert
          • type:desert
          • Map:60
      • 148: Feature (Point, 2 properties)
        • type:Feature
        • id:148
        • geometry: Point (18.33, 19.67)
          • type:Point
          • coordinates: [18.333586597174232, 19.665777464789432]
            • 0:18.333586597174232
            • 1:19.665777464789432
        • properties: desert
          • type:desert
          • Map:60
      • 149: Feature (Point, 2 properties)
        • type:Feature
        • id:149
        • geometry: Point (17.93, 18.44)
          • type:Point
          • coordinates: [17.93180691581956, 18.444263198724897]
            • 0:17.93180691581956
            • 1:18.444263198724897
        • properties: desert
          • type:desert
          • Map:60
      • 150: Feature (Point, 2 properties)
        • type:Feature
        • id:150
        • geometry: Point (21.36, 18.01)
          • type:Point
          • coordinates: [21.360144039568347, 18.010895476241544]
            • 0:21.360144039568347
            • 1:18.010895476241544
        • properties: desert
          • type:desert
          • Map:60
      • 151: Feature (Point, 2 properties)
        • type:Feature
        • id:151
        • geometry: Point (26.13, 21.58)
          • type:Point
          • coordinates: [26.13058488227073, 21.576054006021]
            • 0:26.13058488227073
            • 1:21.576054006021
        • properties: desert
          • type:desert
          • Map:60
      • 152: Feature (Point, 2 properties)
        • type:Feature
        • id:152
        • geometry: Point (25.61, 19.61)
          • type:Point
          • coordinates: [25.60732664392408, 19.61040831585765]
            • 0:25.60732664392408
            • 1:19.61040831585765
        • properties: desert
          • type:desert
          • Map:60
      • 153: Feature (Point, 2 properties)
        • type:Feature
        • id:153
        • geometry: Point (19.11, 19.55)
          • type:Point
          • coordinates: [19.113666036534184, 19.554151846945054]
            • 0:19.113666036534184
            • 1:19.554151846945054
        • properties: desert
          • type:desert
          • Map:60
      • 154: Feature (Point, 2 properties)
        • type:Feature
        • id:154
        • geometry: Point (19.54, 19.57)
          • type:Point
          • coordinates: [19.543505440403248, 19.569802259559783]
            • 0:19.543505440403248
            • 1:19.569802259559783
        • properties: desert
          • type:desert
          • Map:60
      • 155: Feature (Point, 2 properties)
        • type:Feature
        • id:155
        • geometry: Point (15.33, 20.57)
          • type:Point
          • coordinates: [15.329795555078851, 20.565336007382218]
            • 0:15.329795555078851
            • 1:20.565336007382218
        • properties: desert
          • type:desert
          • Map:60
      • 156: Feature (Point, 2 properties)
        • type:Feature
        • id:156
        • geometry: Point (12.86, 20.81)
          • type:Point
          • coordinates: [12.863483943284361, 20.806660588087187]
            • 0:12.863483943284361
            • 1:20.806660588087187
        • properties: desert
          • type:desert
          • Map:60
      • 157: Feature (Point, 2 properties)
        • type:Feature
        • id:157
        • geometry: Point (15.23, 19.30)
          • type:Point
          • coordinates: [15.233104206584933, 19.29563879229311]
            • 0:15.233104206584933
            • 1:19.29563879229311
        • properties: desert
          • type:desert
          • Map:60
      • 158: Feature (Point, 2 properties)
        • type:Feature
        • id:158
        • geometry: Point (25.92, 18.73)
          • type:Point
          • coordinates: [25.923719514537847, 18.731180752535717]
            • 0:25.923719514537847
            • 1:18.731180752535717
        • properties: desert
          • type:desert
          • Map:60
      • 159: Feature (Point, 2 properties)
        • type:Feature
        • id:159
        • geometry: Point (26.26, 16.93)
          • type:Point
          • coordinates: [26.261375539411297, 16.925647110397495]
            • 0:26.261375539411297
            • 1:16.925647110397495
        • properties: desert
          • type:desert
          • Map:60
      • 160: Feature (Point, 2 properties)
        • type:Feature
        • id:160
        • geometry: Point (18.60, 21.86)
          • type:Point
          • coordinates: [18.60431058873661, 21.85792335833031]
            • 0:18.60431058873661
            • 1:21.85792335833031
        • properties: desert
          • type:desert
          • Map:60
      • 161: Feature (Point, 2 properties)
        • type:Feature
        • id:161
        • geometry: Point (24.16, 19.15)
          • type:Point
          • coordinates: [24.164516997058808, 19.1528597099097]
            • 0:24.164516997058808
            • 1:19.1528597099097
        • properties: desert
          • type:desert
          • Map:60
      • 162: Feature (Point, 2 properties)
        • type:Feature
        • id:162
        • geometry: Point (25.38, 22.59)
          • type:Point
          • coordinates: [25.376197152935127, 22.585385222324234]
            • 0:25.376197152935127
            • 1:22.585385222324234
        • properties: desert
          • type:desert
          • Map:60
      • 163: Feature (Point, 2 properties)
        • type:Feature
        • id:163
        • geometry: Point (15.44, 20.58)
          • type:Point
          • coordinates: [15.440129277042045, 20.57517304608772]
            • 0:15.440129277042045
            • 1:20.57517304608772
        • properties: desert
          • type:desert
          • Map:60
      • 164: Feature (Point, 2 properties)
        • type:Feature
        • id:164
        • geometry: Point (27.63, 20.82)
          • type:Point
          • coordinates: [27.630836562472997, 20.82101720309016]
            • 0:27.630836562472997
            • 1:20.82101720309016
        • properties: desert
          • type:desert
          • Map:60
      • 165: Feature (Point, 2 properties)
        • type:Feature
        • id:165
        • geometry: Point (22.38, 21.46)
          • type:Point
          • coordinates: [22.379773417425554, 21.464029659536227]
            • 0:22.379773417425554
            • 1:21.464029659536227
        • properties: desert
          • type:desert
          • Map:60
      • 166: Feature (Point, 2 properties)
        • type:Feature
        • id:166
        • geometry: Point (11.97, 19.07)
          • type:Point
          • coordinates: [11.967781128736902, 19.074009798808635]
            • 0:11.967781128736902
            • 1:19.074009798808635
        • properties: desert
          • type:desert
          • Map:60
      • 167: Feature (Point, 2 properties)
        • type:Feature
        • id:167
        • geometry: Point (13.39, 17.31)
          • type:Point
          • coordinates: [13.39379628635231, 17.30749263048851]
            • 0:13.39379628635231
            • 1:17.30749263048851
        • properties: desert
          • type:desert
          • Map:60
      • 168: Feature (Point, 2 properties)
        • type:Feature
        • id:168
        • geometry: Point (18.00, 18.10)
          • type:Point
          • coordinates: [18.00156781663439, 18.10021904700868]
            • 0:18.00156781663439
            • 1:18.10021904700868
        • properties: desert
          • type:desert
          • Map:60
      • 169: Feature (Point, 2 properties)
        • type:Feature
        • id:169
        • geometry: Point (17.34, 21.00)
          • type:Point
          • coordinates: [17.343415040580208, 21.00089120939895]
            • 0:17.343415040580208
            • 1:21.00089120939895
        • properties: desert
          • type:desert
          • Map:60
      • 170: Feature (Point, 2 properties)
        • type:Feature
        • id:170
        • geometry: Point (18.98, 21.60)
          • type:Point
          • coordinates: [18.97899389800657, 21.60257014126829]
            • 0:18.97899389800657
            • 1:21.60257014126829
        • properties: desert
          • type:desert
          • Map:60
      • 171: Feature (Point, 2 properties)
        • type:Feature
        • id:171
        • geometry: Point (13.23, 18.68)
          • type:Point
          • coordinates: [13.227669413500566, 18.675225351504317]
            • 0:13.227669413500566
            • 1:18.675225351504317
        • properties: desert
          • type:desert
          • Map:60
      • 172: Feature (Point, 2 properties)
        • type:Feature
        • id:172
        • geometry: Point (24.64, 21.58)
          • type:Point
          • coordinates: [24.639288496478876, 21.582605347416752]
            • 0:24.639288496478876
            • 1:21.582605347416752
        • properties: desert
          • type:desert
          • Map:60
      • 173: Feature (Point, 2 properties)
        • type:Feature
        • id:173
        • geometry: Point (23.50, 21.65)
          • type:Point
          • coordinates: [23.500434393709583, 21.64763657533457]
            • 0:23.500434393709583
            • 1:21.64763657533457
        • properties: desert
          • type:desert
          • Map:60
      • 174: Feature (Point, 2 properties)
        • type:Feature
        • id:174
        • geometry: Point (18.74, 20.07)
          • type:Point
          • coordinates: [18.73596688533894, 20.065000025520703]
            • 0:18.73596688533894
            • 1:20.065000025520703
        • properties: desert
          • type:desert
          • Map:60
      • 175: Feature (Point, 2 properties)
        • type:Feature
        • id:175
        • geometry: Point (23.20, 20.98)
          • type:Point
          • coordinates: [23.20451491924101, 20.98165066016969]
            • 0:23.20451491924101
            • 1:20.98165066016969
        • properties: desert
          • type:desert
          • Map:60
      • 176: Feature (Point, 2 properties)
        • type:Feature
        • id:176
        • geometry: Point (27.18, 20.08)
          • type:Point
          • coordinates: [27.17645000342212, 20.07548598555757]
            • 0:27.17645000342212
            • 1:20.07548598555757
        • properties: desert
          • type:desert
          • Map:60
      • 177: Feature (Point, 2 properties)
        • type:Feature
        • id:177
        • geometry: Point (24.43, 17.73)
          • type:Point
          • coordinates: [24.43032416529394, 17.73060954033188]
            • 0:24.43032416529394
            • 1:17.73060954033188
        • properties: desert
          • type:desert
          • Map:60
      • 178: Feature (Point, 2 properties)
        • type:Feature
        • id:178
        • geometry: Point (26.18, 21.48)
          • type:Point
          • coordinates: [26.18270961864031, 21.48403403852101]
            • 0:26.18270961864031
            • 1:21.48403403852101
        • properties: desert
          • type:desert
          • Map:60
      • 179: Feature (Point, 2 properties)
        • type:Feature
        • id:179
        • geometry: Point (29.09, 19.28)
          • type:Point
          • coordinates: [29.091578877056136, 19.277554975232643]
            • 0:29.091578877056136
            • 1:19.277554975232643
        • properties: desert
          • type:desert
          • Map:60
      • 180: Feature (Point, 2 properties)
        • type:Feature
        • id:180
        • geometry: Point (27.95, 20.11)
          • type:Point
          • coordinates: [27.951034935568615, 20.114031343789783]
            • 0:27.951034935568615
            • 1:20.114031343789783
        • properties: desert
          • type:desert
          • Map:60
      • 181: Feature (Point, 2 properties)
        • type:Feature
        • id:181
        • geometry: Point (25.26, 21.09)
          • type:Point
          • coordinates: [25.256683703384606, 21.08782310875052]
            • 0:25.256683703384606
            • 1:21.08782310875052
        • properties: desert
          • type:desert
          • Map:60
      • 182: Feature (Point, 2 properties)
        • type:Feature
        • id:182
        • geometry: Point (18.55, 20.69)
          • type:Point
          • coordinates: [18.54712343785325, 20.691802293940004]
            • 0:18.54712343785325
            • 1:20.691802293940004
        • properties: desert
          • type:desert
          • Map:60
      • 183: Feature (Point, 2 properties)
        • type:Feature
        • id:183
        • geometry: Point (28.10, 20.56)
          • type:Point
          • coordinates: [28.101351818197248, 20.555232740134795]
            • 0:28.101351818197248
            • 1:20.555232740134795
        • properties: desert
          • type:desert
          • Map:60
      • 184: Feature (Point, 2 properties)
        • type:Feature
        • id:184
        • geometry: Point (23.77, 17.33)
          • type:Point
          • coordinates: [23.765519466593677, 17.328320355702854]
            • 0:23.765519466593677
            • 1:17.328320355702854
        • properties: desert
          • type:desert
          • Map:60
      • 185: Feature (Point, 2 properties)
        • type:Feature
        • id:185
        • geometry: Point (12.22, 20.14)
          • type:Point
          • coordinates: [12.21620982087215, 20.13889830181169]
            • 0:12.21620982087215
            • 1:20.13889830181169
        • properties: desert
          • type:desert
          • Map:60
      • 186: Feature (Point, 2 properties)
        • type:Feature
        • id:186
        • geometry: Point (29.30, 18.12)
          • type:Point
          • coordinates: [29.30392394955931, 18.12321985950178]
            • 0:29.30392394955931
            • 1:18.12321985950178
        • properties: desert
          • type:desert
          • Map:60
      • 187: Feature (Point, 2 properties)
        • type:Feature
        • id:187
        • geometry: Point (13.21, 17.46)
          • type:Point
          • coordinates: [13.212708817674438, 17.46200198945039]
            • 0:13.212708817674438
            • 1:17.46200198945039
        • properties: desert
          • type:desert
          • Map:60
      • 188: Feature (Point, 2 properties)
        • type:Feature
        • id:188
        • geometry: Point (14.64, 16.79)
          • type:Point
          • coordinates: [14.644961503786256, 16.79080597313734]
            • 0:14.644961503786256
            • 1:16.79080597313734
        • properties: desert
          • type:desert
          • Map:60
      • 189: Feature (Point, 2 properties)
        • type:Feature
        • id:189
        • geometry: Point (20.60, 16.54)
          • type:Point
          • coordinates: [20.600993098991463, 16.538728447572243]
            • 0:20.600993098991463
            • 1:16.538728447572243
        • properties: desert
          • type:desert
          • Map:60
      • 190: Feature (Point, 2 properties)
        • type:Feature
        • id:190
        • geometry: Point (12.84, 18.07)
          • type:Point
          • coordinates: [12.840630126359608, 18.074763719190017]
            • 0:12.840630126359608
            • 1:18.074763719190017
        • properties: desert
          • type:desert
          • Map:60
      • 191: Feature (Point, 2 properties)
        • type:Feature
        • id:191
        • geometry: Point (12.20, 20.10)
          • type:Point
          • coordinates: [12.201734519799388, 20.095742724021576]
            • 0:12.201734519799388
            • 1:20.095742724021576
        • properties: desert
          • type:desert
          • Map:60
      • 192: Feature (Point, 2 properties)
        • type:Feature
        • id:192
        • geometry: Point (20.80, 21.06)
          • type:Point
          • coordinates: [20.80069542176705, 21.061210241433248]
            • 0:20.80069542176705
            • 1:21.061210241433248
        • properties: desert
          • type:desert
          • Map:60
      • 193: Feature (Point, 2 properties)
        • type:Feature
        • id:193
        • geometry: Point (20.82, 19.34)
          • type:Point
          • coordinates: [20.815916978483575, 19.34043682253803]
            • 0:20.815916978483575
            • 1:19.34043682253803
        • properties: desert
          • type:desert
          • Map:60
      • 194: Feature (Point, 2 properties)
        • type:Feature
        • id:194
        • geometry: Point (23.30, 20.41)
          • type:Point
          • coordinates: [23.302476090578867, 20.414922462643354]
            • 0:23.302476090578867
            • 1:20.414922462643354
        • properties: desert
          • type:desert
          • Map:60
      • 195: Feature (Point, 2 properties)
        • type:Feature
        • id:195
        • geometry: Point (26.54, 17.45)
          • type:Point
          • coordinates: [26.543790905846873, 17.447361981163805]
            • 0:26.543790905846873
            • 1:17.447361981163805
        • properties: desert
          • type:desert
          • Map:60
      • 196: Feature (Point, 2 properties)
        • type:Feature
        • id:196
        • geometry: Point (24.55, 16.89)
          • type:Point
          • coordinates: [24.5462138486863, 16.88683327215874]
            • 0:24.5462138486863
            • 1:16.88683327215874
        • properties: desert
          • type:desert
          • Map:60
      • 197: Feature (Point, 2 properties)
        • type:Feature
        • id:197
        • geometry: Point (19.33, 16.72)
          • type:Point
          • coordinates: [19.333335442029842, 16.720200187309327]
            • 0:19.333335442029842
            • 1:16.720200187309327
        • properties: desert
          • type:desert
          • Map:60
      • 198: Feature (Point, 2 properties)
        • type:Feature
        • id:198
        • geometry: Point (17.47, 19.72)
          • type:Point
          • coordinates: [17.46816637385888, 19.72283573889074]
            • 0:17.46816637385888
            • 1:19.72283573889074
        • properties: desert
          • type:desert
          • Map:60
      • 199: Feature (Point, 2 properties)
        • type:Feature
        • id:199
        • geometry: Point (17.65, 18.92)
          • type:Point
          • coordinates: [17.64942213375395, 18.91595560433131]
            • 0:17.64942213375395
            • 1:18.91595560433131
        • properties: desert
          • type:desert
          • Map:60
      • 200: Feature (Point, 2 properties)
        • type:Feature
        • id:200
        • geometry: Point (25.73, 21.52)
          • type:Point
          • coordinates: [25.732274599620563, 21.52085194028149]
            • 0:25.732274599620563
            • 1:21.52085194028149
        • properties: desert
          • type:desert
          • Map:60
      • 201: Feature (Point, 2 properties)
        • type:Feature
        • id:201
        • geometry: Point (23.02, 22.53)
          • type:Point
          • coordinates: [23.01844754653798, 22.52593588436753]
            • 0:23.01844754653798
            • 1:22.52593588436753
        • properties: desert
          • type:desert
          • Map:60
      • 202: Feature (Point, 2 properties)
        • type:Feature
        • id:202
        • geometry: Point (16.48, 18.84)
          • type:Point
          • coordinates: [16.483763200066385, 18.841576017148075]
            • 0:16.483763200066385
            • 1:18.841576017148075
        • properties: desert
          • type:desert
          • Map:60
      • 203: Feature (Point, 2 properties)
        • type:Feature
        • id:203
        • geometry: Point (23.65, 18.18)
          • type:Point
          • coordinates: [23.653504264818086, 18.18421052170486]
            • 0:23.653504264818086
            • 1:18.18421052170486
        • properties: desert
          • type:desert
          • Map:60
      • 204: Feature (Point, 2 properties)
        • type:Feature
        • id:204
        • geometry: Point (14.36, 17.09)
          • type:Point
          • coordinates: [14.357476676421825, 17.09395024791121]
            • 0:14.357476676421825
            • 1:17.09395024791121
        • properties: desert
          • type:desert
          • Map:60
      • 205: Feature (Point, 2 properties)
        • type:Feature
        • id:205
        • geometry: Point (14.75, 18.17)
          • type:Point
          • coordinates: [14.747267387229797, 18.167476322118386]
            • 0:14.747267387229797
            • 1:18.167476322118386
        • properties: desert
          • type:desert
          • Map:60
      • 206: Feature (Point, 2 properties)
        • type:Feature
        • id:206
        • geometry: Point (17.81, 21.43)
          • type:Point
          • coordinates: [17.806364533176065, 21.434574600434434]
            • 0:17.806364533176065
            • 1:21.434574600434434
        • properties: desert
          • type:desert
          • Map:60
      • 207: Feature (Point, 2 properties)
        • type:Feature
        • id:207
        • geometry: Point (23.92, 22.40)
          • type:Point
          • coordinates: [23.919642184790128, 22.400616236463577]
            • 0:23.919642184790128
            • 1:22.400616236463577
        • properties: desert
          • type:desert
          • Map:60
      • 208: Feature (Point, 2 properties)
        • type:Feature
        • id:208
        • geometry: Point (27.81, 19.11)
          • type:Point
          • coordinates: [27.809690849880464, 19.11427076302284]
            • 0:27.809690849880464
            • 1:19.11427076302284
        • properties: desert
          • type:desert
          • Map:60
      • 209: Feature (Point, 2 properties)
        • type:Feature
        • id:209
        • geometry: Point (29.12, 17.66)
          • type:Point
          • coordinates: [29.11665356467578, 17.661578862966714]
            • 0:29.11665356467578
            • 1:17.661578862966714
        • properties: desert
          • type:desert
          • Map:60
      • 210: Feature (Point, 2 properties)
        • type:Feature
        • id:210
        • geometry: Point (20.30, 19.27)
          • type:Point
          • coordinates: [20.301177852517057, 19.27151112739377]
            • 0:20.301177852517057
            • 1:19.27151112739377
        • properties: desert
          • type:desert
          • Map:60
      • 211: Feature (Point, 2 properties)
        • type:Feature
        • id:211
        • geometry: Point (19.81, 18.13)
          • type:Point
          • coordinates: [19.81182202768835, 18.131622244702672]
            • 0:19.81182202768835
            • 1:18.131622244702672
        • properties: desert
          • type:desert
          • Map:60
      • 212: Feature (Point, 2 properties)
        • type:Feature
        • id:212
        • geometry: Point (26.17, 20.15)
          • type:Point
          • coordinates: [26.16678301592274, 20.154751568101624]
            • 0:26.16678301592274
            • 1:20.154751568101624
        • properties: desert
          • type:desert
          • Map:60
      • 213: Feature (Point, 2 properties)
        • type:Feature
        • id:213
        • geometry: Point (15.52, 17.73)
          • type:Point
          • coordinates: [15.523232320023263, 17.731271732643236]
            • 0:15.523232320023263
            • 1:17.731271732643236
        • properties: desert
          • type:desert
          • Map:60
      • 214: Feature (Point, 2 properties)
        • type:Feature
        • id:214
        • geometry: Point (22.16, 22.16)
          • type:Point
          • coordinates: [22.160150261786775, 22.163065197418433]
            • 0:22.160150261786775
            • 1:22.163065197418433
        • properties: desert
          • type:desert
          • Map:60
      • 215: Feature (Point, 2 properties)
        • type:Feature
        • id:215
        • geometry: Point (16.12, 19.07)
          • type:Point
          • coordinates: [16.1182107372377, 19.07265484102442]
            • 0:16.1182107372377
            • 1:19.07265484102442
        • properties: desert
          • type:desert
          • Map:60
      • 216: Feature (Point, 2 properties)
        • type:Feature
        • id:216
        • geometry: Point (13.55, 21.01)
          • type:Point
          • coordinates: [13.554643100297417, 21.00959037866236]
            • 0:13.554643100297417
            • 1:21.00959037866236
        • properties: desert
          • type:desert
          • Map:60
      • 217: Feature (Point, 2 properties)
        • type:Feature
        • id:217
        • geometry: Point (22.98, 20.62)
          • type:Point
          • coordinates: [22.97661954977047, 20.61839068655814]
            • 0:22.97661954977047
            • 1:20.61839068655814
        • properties: desert
          • type:desert
          • Map:60
      • 218: Feature (Point, 2 properties)
        • type:Feature
        • id:218
        • geometry: Point (27.74, 17.90)
          • type:Point
          • coordinates: [27.743169634706852, 17.904451660718337]
            • 0:27.743169634706852
            • 1:17.904451660718337
        • properties: desert
          • type:desert
          • Map:60
      • 219: Feature (Point, 2 properties)
        • type:Feature
        • id:219
        • geometry: Point (23.62, 20.80)
          • type:Point
          • coordinates: [23.618969113430346, 20.796120691259958]
            • 0:23.618969113430346
            • 1:20.796120691259958
        • properties: desert
          • type:desert
          • Map:60
      • 220: Feature (Point, 2 properties)
        • type:Feature
        • id:220
        • geometry: Point (15.35, 20.70)
          • type:Point
          • coordinates: [15.345910821251382, 20.70430435070417]
            • 0:15.345910821251382
            • 1:20.70430435070417
        • properties: desert
          • type:desert
          • Map:60
      • 221: Feature (Point, 2 properties)
        • type:Feature
        • id:221
        • geometry: Point (28.95, 19.46)
          • type:Point
          • coordinates: [28.950499167699867, 19.46168281532229]
            • 0:28.950499167699867
            • 1:19.46168281532229
        • properties: desert
          • type:desert
          • Map:60
      • 222: Feature (Point, 2 properties)
        • type:Feature
        • id:222
        • geometry: Point (20.43, 21.46)
          • type:Point
          • coordinates: [20.433751378372918, 21.458873885732775]
            • 0:20.433751378372918
            • 1:21.458873885732775
        • properties: desert
          • type:desert
          • Map:60
      • 223: Feature (Point, 2 properties)
        • type:Feature
        • id:223
        • geometry: Point (17.53, 16.22)
          • type:Point
          • coordinates: [17.53088556566128, 16.22121449256616]
            • 0:17.53088556566128
            • 1:16.22121449256616
        • properties: desert
          • type:desert
          • Map:60
      • 224: Feature (Point, 2 properties)
        • type:Feature
        • id:224
        • geometry: Point (21.44, 16.74)
          • type:Point
          • coordinates: [21.4365881969296, 16.74349364471043]
            • 0:21.4365881969296
            • 1:16.74349364471043
        • properties: desert
          • type:desert
          • Map:60
      • 225: Feature (Point, 2 properties)
        • type:Feature
        • id:225
        • geometry: Point (23.23, 17.17)
          • type:Point
          • coordinates: [23.233980232177753, 17.167201793064145]
            • 0:23.233980232177753
            • 1:17.167201793064145
        • properties: desert
          • type:desert
          • Map:60
      • 226: Feature (Point, 2 properties)
        • type:Feature
        • id:226
        • geometry: Point (23.41, 18.37)
          • type:Point
          • coordinates: [23.405272453211012, 18.367649271051015]
            • 0:23.405272453211012
            • 1:18.367649271051015
        • properties: desert
          • type:desert
          • Map:60
      • 227: Feature (Point, 2 properties)
        • type:Feature
        • id:227
        • geometry: Point (14.59, 17.14)
          • type:Point
          • coordinates: [14.591908985198563, 17.135463955867078]
            • 0:14.591908985198563
            • 1:17.135463955867078
        • properties: desert
          • type:desert
          • Map:60
      • 228: Feature (Point, 2 properties)
        • type:Feature
        • id:228
        • geometry: Point (22.40, 22.29)
          • type:Point
          • coordinates: [22.398075269938275, 22.2922796553689]
            • 0:22.398075269938275
            • 1:22.2922796553689
        • properties: desert
          • type:desert
          • Map:60
      • 229: Feature (Point, 2 properties)
        • type:Feature
        • id:229
        • geometry: Point (20.61, 17.50)
          • type:Point
          • coordinates: [20.612726332857175, 17.504267281926225]
            • 0:20.612726332857175
            • 1:17.504267281926225
        • properties: desert
          • type:desert
          • Map:60
      • 230: Feature (Point, 2 properties)
        • type:Feature
        • id:230
        • geometry: Point (11.92, 18.17)
          • type:Point
          • coordinates: [11.915090502463924, 18.167148534488447]
            • 0:11.915090502463924
            • 1:18.167148534488447
        • properties: desert
          • type:desert
          • Map:60
      • 231: Feature (Point, 2 properties)
        • type:Feature
        • id:231
        • geometry: Point (25.64, 22.41)
          • type:Point
          • coordinates: [25.639126182310694, 22.406987213238878]
            • 0:25.639126182310694
            • 1:22.406987213238878
        • properties: desert
          • type:desert
          • Map:60
      • 232: Feature (Point, 2 properties)
        • type:Feature
        • id:232
        • geometry: Point (16.66, 19.74)
          • type:Point
          • coordinates: [16.66451483484067, 19.738061719194608]
            • 0:16.66451483484067
            • 1:19.738061719194608
        • properties: desert
          • type:desert
          • Map:60
      • 233: Feature (Point, 2 properties)
        • type:Feature
        • id:233
        • geometry: Point (23.13, 19.06)
          • type:Point
          • coordinates: [23.130225450699875, 19.056906589733302]
            • 0:23.130225450699875
            • 1:19.056906589733302
        • properties: desert
          • type:desert
          • Map:60
      • 234: Feature (Point, 2 properties)
        • type:Feature
        • id:234
        • geometry: Point (25.90, 18.65)
          • type:Point
          • coordinates: [25.904995653032003, 18.646753077617106]
            • 0:25.904995653032003
            • 1:18.646753077617106
        • properties: desert
          • type:desert
          • Map:60
      • 235: Feature (Point, 2 properties)
        • type:Feature
        • id:235
        • geometry: Point (16.32, 21.44)
          • type:Point
          • coordinates: [16.31616633374025, 21.441239189142866]
            • 0:16.31616633374025
            • 1:21.441239189142866
        • properties: desert
          • type:desert
          • Map:60
      • 236: Feature (Point, 2 properties)
        • type:Feature
        • id:236
        • geometry: Point (21.27, 21.14)
          • type:Point
          • coordinates: [21.269125927046247, 21.14436154262647]
            • 0:21.269125927046247
            • 1:21.14436154262647
        • properties: desert
          • type:desert
          • Map:60
      • 237: Feature (Point, 2 properties)
        • type:Feature
        • id:237
        • geometry: Point (23.42, 19.83)
          • type:Point
          • coordinates: [23.41584206834321, 19.83156265900753]
            • 0:23.41584206834321
            • 1:19.83156265900753
        • properties: desert
          • type:desert
          • Map:60
      • 238: Feature (Point, 2 properties)
        • type:Feature
        • id:238
        • geometry: Point (22.56, 19.92)
          • type:Point
          • coordinates: [22.5642756563784, 19.91940545312676]
            • 0:22.5642756563784
            • 1:19.91940545312676
        • properties: desert
          • type:desert
          • Map:60
      • 239: Feature (Point, 2 properties)
        • type:Feature
        • id:239
        • geometry: Point (19.05, 19.41)
          • type:Point
          • coordinates: [19.04972809037593, 19.41306008705401]
            • 0:19.04972809037593
            • 1:19.41306008705401
        • properties: desert
          • type:desert
          • Map:60
      • 240: Feature (Point, 2 properties)
        • type:Feature
        • id:240
        • geometry: Point (22.99, 22.34)
          • type:Point
          • coordinates: [22.993253396863437, 22.34064732796193]
            • 0:22.993253396863437
            • 1:22.34064732796193
        • properties: desert
          • type:desert
          • Map:60
      • 241: Feature (Point, 2 properties)
        • type:Feature
        • id:241
        • geometry: Point (21.77, 19.92)
          • type:Point
          • coordinates: [21.76626107897404, 19.923422970694233]
            • 0:21.76626107897404
            • 1:19.923422970694233
        • properties: desert
          • type:desert
          • Map:60
      • 242: Feature (Point, 2 properties)
        • type:Feature
        • id:242
        • geometry: Point (27.92, 17.53)
          • type:Point
          • coordinates: [27.91950851534634, 17.533769656876995]
            • 0:27.91950851534634
            • 1:17.533769656876995
        • properties: desert
          • type:desert
          • Map:60
      • 243: Feature (Point, 2 properties)
        • type:Feature
        • id:243
        • geometry: Point (19.08, 21.61)
          • type:Point
          • coordinates: [19.08479674984345, 21.614065262457853]
            • 0:19.08479674984345
            • 1:21.614065262457853
        • properties: desert
          • type:desert
          • Map:60
      • 244: Feature (Point, 2 properties)
        • type:Feature
        • id:244
        • geometry: Point (13.88, 21.00)
          • type:Point
          • coordinates: [13.883001922637625, 21.004936327853393]
            • 0:13.883001922637625
            • 1:21.004936327853393
        • properties: desert
          • type:desert
          • Map:60
      • 245: Feature (Point, 2 properties)
        • type:Feature
        • id:245
        • geometry: Point (17.24, 16.17)
          • type:Point
          • coordinates: [17.235147834468286, 16.168269544415075]
            • 0:17.235147834468286
            • 1:16.168269544415075
        • properties: desert
          • type:desert
          • Map:60
      • 246: Feature (Point, 2 properties)
        • type:Feature
        • id:246
        • geometry: Point (15.15, 21.50)
          • type:Point
          • coordinates: [15.145977692792588, 21.49751922828113]
            • 0:15.145977692792588
            • 1:21.49751922828113
        • properties: desert
          • type:desert
          • Map:60
      • 247: Feature (Point, 2 properties)
        • type:Feature
        • id:247
        • geometry: Point (20.89, 21.12)
          • type:Point
          • coordinates: [20.893874600194973, 21.118449248190842]
            • 0:20.893874600194973
            • 1:21.118449248190842
        • properties: desert
          • type:desert
          • Map:60
      • 248: Feature (Point, 2 properties)
        • type:Feature
        • id:248
        • geometry: Point (18.98, 21.88)
          • type:Point
          • coordinates: [18.984886242896128, 21.878594580221005]
            • 0:18.984886242896128
            • 1:21.878594580221005
        • properties: desert
          • type:desert
          • Map:60
      • 249: Feature (Point, 2 properties)
        • type:Feature
        • id:249
        • geometry: Point (16.85, 20.63)
          • type:Point
          • coordinates: [16.847587242970285, 20.63069929126921]
            • 0:16.847587242970285
            • 1:20.63069929126921
        • properties: desert
          • type:desert
          • Map:60
      • 250: Feature (Point, 2 properties)
        • type:Feature
        • id:250
        • geometry: Point (12.52, 20.34)
          • type:Point
          • coordinates: [12.521671421704887, 20.337203251043988]
            • 0:12.521671421704887
            • 1:20.337203251043988
        • properties: desert
          • type:desert
          • Map:60
      • 251: Feature (Point, 2 properties)
        • type:Feature
        • id:251
        • geometry: Point (12.01, 18.33)
          • type:Point
          • coordinates: [12.005570657066608, 18.331583290907215]
            • 0:12.005570657066608
            • 1:18.331583290907215
        • properties: desert
          • type:desert
          • Map:60
      • 252: Feature (Point, 2 properties)
        • type:Feature
        • id:252
        • geometry: Point (13.17, 19.43)
          • type:Point
          • coordinates: [13.165586767838839, 19.434838183342496]
            • 0:13.165586767838839
            • 1:19.434838183342496
        • properties: desert
          • type:desert
          • Map:60
      • 253: Feature (Point, 2 properties)
        • type:Feature
        • id:253
        • geometry: Point (15.02, 16.86)
          • type:Point
          • coordinates: [15.018058057845382, 16.857139438102585]
            • 0:15.018058057845382
            • 1:16.857139438102585
        • properties: desert
          • type:desert
          • Map:60
      • 254: Feature (Point, 2 properties)
        • type:Feature
        • id:254
        • geometry: Point (22.45, 20.34)
          • type:Point
          • coordinates: [22.44754567494373, 20.343041966663186]
            • 0:22.44754567494373
            • 1:20.343041966663186
        • properties: desert
          • type:desert
          • Map:60
      • 255: Feature (Point, 2 properties)
        • type:Feature
        • id:255
        • geometry: Point (15.91, 21.33)
          • type:Point
          • coordinates: [15.909314816106308, 21.33270035437016]
            • 0:15.909314816106308
            • 1:21.33270035437016
        • properties: desert
          • type:desert
          • Map:60
      • 256: Feature (Point, 2 properties)
        • type:Feature
        • id:256
        • geometry: Point (27.56, 18.84)
          • type:Point
          • coordinates: [27.56271813655422, 18.84016601047519]
            • 0:27.56271813655422
            • 1:18.84016601047519
        • properties: desert
          • type:desert
          • Map:60
      • 257: Feature (Point, 2 properties)
        • type:Feature
        • id:257
        • geometry: Point (14.05, 18.34)
          • type:Point
          • coordinates: [14.051296358584935, 18.338301709544414]
            • 0:14.051296358584935
            • 1:18.338301709544414
        • properties: desert
          • type:desert
          • Map:60
      • 258: Feature (Point, 2 properties)
        • type:Feature
        • id:258
        • geometry: Point (21.71, 17.32)
          • type:Point
          • coordinates: [21.709715216651862, 17.31912192110249]
            • 0:21.709715216651862
            • 1:17.31912192110249
        • properties: desert
          • type:desert
          • Map:60
      • 259: Feature (Point, 2 properties)
        • type:Feature
        • id:259
        • geometry: Point (14.72, 21.54)
          • type:Point
          • coordinates: [14.722555272709503, 21.540280201722727]
            • 0:14.722555272709503
            • 1:21.540280201722727
        • properties: desert
          • type:desert
          • Map:60
      • 260: Feature (Point, 2 properties)
        • type:Feature
        • id:260
        • geometry: Point (22.66, 17.01)
          • type:Point
          • coordinates: [22.664146414143122, 17.00506615706596]
            • 0:22.664146414143122
            • 1:17.00506615706596
        • properties: desert
          • type:desert
          • Map:60
      • 261: Feature (Point, 2 properties)
        • type:Feature
        • id:261
        • geometry: Point (24.97, 18.32)
          • type:Point
          • coordinates: [24.974218029553512, 18.319873925960255]
            • 0:24.974218029553512
            • 1:18.319873925960255
        • properties: desert
          • type:desert
          • Map:60
      • 262: Feature (Point, 2 properties)
        • type:Feature
        • id:262
        • geometry: Point (23.50, 17.38)
          • type:Point
          • coordinates: [23.498550263897744, 17.381178937563835]
            • 0:23.498550263897744
            • 1:17.381178937563835
        • properties: desert
          • type:desert
          • Map:60
      • 263: Feature (Point, 2 properties)
        • type:Feature
        • id:263
        • geometry: Point (17.96, 18.44)
          • type:Point
          • coordinates: [17.96401705667196, 18.43863768206916]
            • 0:17.96401705667196
            • 1:18.43863768206916
        • properties: desert
          • type:desert
          • Map:60
      • 264: Feature (Point, 2 properties)
        • type:Feature
        • id:264
        • geometry: Point (14.09, 20.27)
          • type:Point
          • coordinates: [14.091616947555064, 20.27308344132869]
            • 0:14.091616947555064
            • 1:20.27308344132869
        • properties: desert
          • type:desert
          • Map:60
      • 265: Feature (Point, 2 properties)
        • type:Feature
        • id:265
        • geometry: Point (11.88, 19.24)
          • type:Point
          • coordinates: [11.883999361501486, 19.24185455277605]
            • 0:11.883999361501486
            • 1:19.24185455277605
        • properties: desert
          • type:desert
          • Map:60
      • 266: Feature (Point, 2 properties)
        • type:Feature
        • id:266
        • geometry: Point (25.71, 19.97)
          • type:Point
          • coordinates: [25.710112862924053, 19.96939225411701]
            • 0:25.710112862924053
            • 1:19.96939225411701
        • properties: desert
          • type:desert
          • Map:60
      • 267: Feature (Point, 2 properties)
        • type:Feature
        • id:267
        • geometry: Point (21.51, 18.59)
          • type:Point
          • coordinates: [21.510279638444537, 18.592301300755526]
            • 0:21.510279638444537
            • 1:18.592301300755526
        • properties: desert
          • type:desert
          • Map:60
      • 268: Feature (Point, 2 properties)
        • type:Feature
        • id:268
        • geometry: Point (25.64, 20.19)
          • type:Point
          • coordinates: [25.639652107186496, 20.18600111481762]
            • 0:25.639652107186496
            • 1:20.18600111481762
        • properties: desert
          • type:desert
          • Map:60
      • 269: Feature (Point, 2 properties)
        • type:Feature
        • id:269
        • geometry: Point (20.40, 19.44)
          • type:Point
          • coordinates: [20.397970139951415, 19.435672145687725]
            • 0:20.397970139951415
            • 1:19.435672145687725
        • properties: desert
          • type:desert
          • Map:60
      • 270: Feature (Point, 2 properties)
        • type:Feature
        • id:270
        • geometry: Point (27.69, 21.24)
          • type:Point
          • coordinates: [27.689053645903815, 21.242911106773036]
            • 0:27.689053645903815
            • 1:21.242911106773036
        • properties: desert
          • type:desert
          • Map:60
      • 271: Feature (Point, 2 properties)
        • type:Feature
        • id:271
        • geometry: Point (25.60, 18.20)
          • type:Point
          • coordinates: [25.60346598370994, 18.198112501925973]
            • 0:25.60346598370994
            • 1:18.198112501925973
        • properties: desert
          • type:desert
          • Map:60
      • 272: Feature (Point, 2 properties)
        • type:Feature
        • id:272
        • geometry: Point (24.88, 18.22)
          • type:Point
          • coordinates: [24.881826242890405, 18.223762967492554]
            • 0:24.881826242890405
            • 1:18.223762967492554
        • properties: desert
          • type:desert
          • Map:60
      • 273: Feature (Point, 2 properties)
        • type:Feature
        • id:273
        • geometry: Point (13.56, 19.74)
          • type:Point
          • coordinates: [13.558648772706205, 19.73837540856286]
            • 0:13.558648772706205
            • 1:19.73837540856286
        • properties: desert
          • type:desert
          • Map:60
      • 274: Feature (Point, 2 properties)
        • type:Feature
        • id:274
        • geometry: Point (16.96, 20.52)
          • type:Point
          • coordinates: [16.957197044219356, 20.516488415545826]
            • 0:16.957197044219356
            • 1:20.516488415545826
        • properties: desert
          • type:desert
          • Map:60
      • 275: Feature (Point, 2 properties)
        • type:Feature
        • id:275
        • geometry: Point (21.08, 19.74)
          • type:Point
          • coordinates: [21.07525746674104, 19.74417396391533]
            • 0:21.07525746674104
            • 1:19.74417396391533
        • properties: desert
          • type:desert
          • Map:60
      • 276: Feature (Point, 2 properties)
        • type:Feature
        • id:276
        • geometry: Point (15.21, 20.44)
          • type:Point
          • coordinates: [15.21245231537464, 20.44287960882855]
            • 0:15.21245231537464
            • 1:20.44287960882855
        • properties: desert
          • type:desert
          • Map:60
      • 277: Feature (Point, 2 properties)
        • type:Feature
        • id:277
        • geometry: Point (25.43, 22.10)
          • type:Point
          • coordinates: [25.425118238429867, 22.100922401324084]
            • 0:25.425118238429867
            • 1:22.100922401324084
        • properties: desert
          • type:desert
          • Map:60
      • 278: Feature (Point, 2 properties)
        • type:Feature
        • id:278
        • geometry: Point (25.51, 22.76)
          • type:Point
          • coordinates: [25.506633657020526, 22.759631518813986]
            • 0:25.506633657020526
            • 1:22.759631518813986
        • properties: desert
          • type:desert
          • Map:60
      • 279: Feature (Point, 2 properties)
        • type:Feature
        • id:279
        • geometry: Point (13.57, 18.43)
          • type:Point
          • coordinates: [13.565173838408725, 18.42918407038928]
            • 0:13.565173838408725
            • 1:18.42918407038928
        • properties: desert
          • type:desert
          • Map:60
      • 280: Feature (Point, 2 properties)
        • type:Feature
        • id:280
        • geometry: Point (18.10, 21.59)
          • type:Point
          • coordinates: [18.104088656295545, 21.592949573691193]
            • 0:18.104088656295545
            • 1:21.592949573691193
        • properties: desert
          • type:desert
          • Map:60
      • 281: Feature (Point, 2 properties)
        • type:Feature
        • id:281
        • geometry: Point (16.49, 18.14)
          • type:Point
          • coordinates: [16.494953950220957, 18.1409033041066]
            • 0:16.494953950220957
            • 1:18.1409033041066
        • properties: desert
          • type:desert
          • Map:60
      • 282: Feature (Point, 2 properties)
        • type:Feature
        • id:282
        • geometry: Point (16.48, 18.41)
          • type:Point
          • coordinates: [16.484134755085094, 18.410655989332138]
            • 0:16.484134755085094
            • 1:18.410655989332138
        • properties: desert
          • type:desert
          • Map:60
      • 283: Feature (Point, 2 properties)
        • type:Feature
        • id:283
        • geometry: Point (17.63, 16.86)
          • type:Point
          • coordinates: [17.625421993218314, 16.856960384508348]
            • 0:17.625421993218314
            • 1:16.856960384508348
        • properties: desert
          • type:desert
          • Map:60
      • 284: Feature (Point, 2 properties)
        • type:Feature
        • id:284
        • geometry: Point (28.13, 19.90)
          • type:Point
          • coordinates: [28.130098228680982, 19.89785214443322]
            • 0:28.130098228680982
            • 1:19.89785214443322
        • properties: desert
          • type:desert
          • Map:60
      • 285: Feature (Point, 2 properties)
        • type:Feature
        • id:285
        • geometry: Point (26.05, 19.68)
          • type:Point
          • coordinates: [26.054941427166966, 19.681103356118083]
            • 0:26.054941427166966
            • 1:19.681103356118083
        • properties: desert
          • type:desert
          • Map:60
      • 286: Feature (Point, 2 properties)
        • type:Feature
        • id:286
        • geometry: Point (15.06, 21.50)
          • type:Point
          • coordinates: [15.057250873779847, 21.497072782735415]
            • 0:15.057250873779847
            • 1:21.497072782735415
        • properties: desert
          • type:desert
          • Map:60
      • 287: Feature (Point, 2 properties)
        • type:Feature
        • id:287
        • geometry: Point (16.88, 17.41)
          • type:Point
          • coordinates: [16.88249330721692, 17.41019174883578]
            • 0:16.88249330721692
            • 1:17.41019174883578
        • properties: desert
          • type:desert
          • Map:60
      • 288: Feature (Point, 2 properties)
        • type:Feature
        • id:288
        • geometry: Point (13.81, 19.15)
          • type:Point
          • coordinates: [13.808936163170486, 19.14807287605992]
            • 0:13.808936163170486
            • 1:19.14807287605992
        • properties: desert
          • type:desert
          • Map:60
      • 289: Feature (Point, 2 properties)
        • type:Feature
        • id:289
        • geometry: Point (16.39, 19.46)
          • type:Point
          • coordinates: [16.391139656275207, 19.45630989313521]
            • 0:16.391139656275207
            • 1:19.45630989313521
        • properties: desert
          • type:desert
          • Map:60
      • 290: Feature (Point, 2 properties)
        • type:Feature
        • id:290
        • geometry: Point (25.69, 17.64)
          • type:Point
          • coordinates: [25.6862485255438, 17.64477848226499]
            • 0:25.6862485255438
            • 1:17.64477848226499
        • properties: desert
          • type:desert
          • Map:60
      • 291: Feature (Point, 2 properties)
        • type:Feature
        • id:291
        • geometry: Point (17.72, 16.41)
          • type:Point
          • coordinates: [17.72203069853264, 16.414612950572394]
            • 0:17.72203069853264
            • 1:16.414612950572394
        • properties: desert
          • type:desert
          • Map:60
      • 292: Feature (Point, 2 properties)
        • type:Feature
        • id:292
        • geometry: Point (24.28, 21.69)
          • type:Point
          • coordinates: [24.275112544086273, 21.685755625986822]
            • 0:24.275112544086273
            • 1:21.685755625986822
        • properties: desert
          • type:desert
          • Map:60
      • 293: Feature (Point, 2 properties)
        • type:Feature
        • id:293
        • geometry: Point (15.58, 17.60)
          • type:Point
          • coordinates: [15.576722914647796, 17.597078362950832]
            • 0:15.576722914647796
            • 1:17.597078362950832
        • properties: desert
          • type:desert
          • Map:60
      • 294: Feature (Point, 2 properties)
        • type:Feature
        • id:294
        • geometry: Point (14.81, 21.18)
          • type:Point
          • coordinates: [14.81069816294904, 21.17578635739896]
            • 0:14.81069816294904
            • 1:21.17578635739896
        • properties: desert
          • type:desert
          • Map:60
      • 295: Feature (Point, 2 properties)
        • type:Feature
        • id:295
        • geometry: Point (14.28, 21.11)
          • type:Point
          • coordinates: [14.282239619636428, 21.110591041788407]
            • 0:14.282239619636428
            • 1:21.110591041788407
        • properties: desert
          • type:desert
          • Map:60
      • 296: Feature (Point, 2 properties)
        • type:Feature
        • id:296
        • geometry: Point (22.02, 18.85)
          • type:Point
          • coordinates: [22.022617443730464, 18.852879629619494]
            • 0:22.022617443730464
            • 1:18.852879629619494
        • properties: desert
          • type:desert
          • Map:60
      • 297: Feature (Point, 2 properties)
        • type:Feature
        • id:297
        • geometry: Point (25.46, 18.39)
          • type:Point
          • coordinates: [25.456499835964962, 18.39391617563276]
            • 0:25.456499835964962
            • 1:18.39391617563276
        • properties: desert
          • type:desert
          • Map:60
      • 298: Feature (Point, 2 properties)
        • type:Feature
        • id:298
        • geometry: Point (28.24, 20.72)
          • type:Point
          • coordinates: [28.24409794011679, 20.720721481208486]
            • 0:28.24409794011679
            • 1:20.720721481208486
        • properties: desert
          • type:desert
          • Map:60
      • 299: Feature (Point, 2 properties)
        • type:Feature
        • id:299
        • geometry: Point (13.83, 17.54)
          • type:Point
          • coordinates: [13.833420037574456, 17.540047108564256]
            • 0:13.833420037574456
            • 1:17.540047108564256
        • properties: desert
          • type:desert
          • Map:60
      • 300: Feature (Point, 2 properties)
        • type:Feature
        • id:300
        • geometry: Point (22.56, 21.36)
          • type:Point
          • coordinates: [22.561027958422464, 21.36390009764273]
            • 0:22.561027958422464
            • 1:21.36390009764273
        • properties: desert
          • type:desert
          • Map:60
      • 301: Feature (Point, 2 properties)
        • type:Feature
        • id:301
        • geometry: Point (24.29, 17.51)
          • type:Point
          • coordinates: [24.28614227699113, 17.505280732011517]
            • 0:24.28614227699113
            • 1:17.505280732011517
        • properties: desert
          • type:desert
          • Map:60
      • 302: Feature (Point, 2 properties)
        • type:Feature
        • id:302
        • geometry: Point (17.11, 15.89)
          • type:Point
          • coordinates: [17.11372586005203, 15.892623534806946]
            • 0:17.11372586005203
            • 1:15.892623534806946
        • properties: desert
          • type:desert
          • Map:60
      • 303: Feature (Point, 2 properties)
        • type:Feature
        • id:303
        • geometry: Point (21.17, 22.42)
          • type:Point
          • coordinates: [21.172011531210405, 22.42249329035209]
            • 0:21.172011531210405
            • 1:22.42249329035209
        • properties: desert
          • type:desert
          • Map:60
      • 304: Feature (Point, 2 properties)
        • type:Feature
        • id:304
        • geometry: Point (27.24, 20.90)
          • type:Point
          • coordinates: [27.24007022532373, 20.904866681320883]
            • 0:27.24007022532373
            • 1:20.904866681320883
        • properties: desert
          • type:desert
          • Map:60
      • 305: Feature (Point, 2 properties)
        • type:Feature
        • id:305
        • geometry: Point (18.23, 18.65)
          • type:Point
          • coordinates: [18.228116521963486, 18.64616479595795]
            • 0:18.228116521963486
            • 1:18.64616479595795
        • properties: desert
          • type:desert
          • Map:60
      • 306: Feature (Point, 2 properties)
        • type:Feature
        • id:306
        • geometry: Point (18.05, 18.34)
          • type:Point
          • coordinates: [18.05175964034296, 18.338173942213086]
            • 0:18.05175964034296
            • 1:18.338173942213086
        • properties: desert
          • type:desert
          • Map:60
      • 307: Feature (Point, 2 properties)
        • type:Feature
        • id:307
        • geometry: Point (21.11, 20.10)
          • type:Point
          • coordinates: [21.11435323077338, 20.101922291735878]
            • 0:21.11435323077338
            • 1:20.101922291735878
        • properties: desert
          • type:desert
          • Map:60
      • 308: Feature (Point, 2 properties)
        • type:Feature
        • id:308
        • geometry: Point (16.37, 18.80)
          • type:Point
          • coordinates: [16.370444142379544, 18.80401463338317]
            • 0:16.370444142379544
            • 1:18.80401463338317
        • properties: desert
          • type:desert
          • Map:60
      • 309: Feature (Point, 2 properties)
        • type:Feature
        • id:309
        • geometry: Point (16.79, 17.37)
          • type:Point
          • coordinates: [16.791700398759765, 17.365673179842197]
            • 0:16.791700398759765
            • 1:17.365673179842197
        • properties: desert
          • type:desert
          • Map:60
      • 310: Feature (Point, 2 properties)
        • type:Feature
        • id:310
        • geometry: Point (29.31, 18.68)
          • type:Point
          • coordinates: [29.30577300356319, 18.682271018211477]
            • 0:29.30577300356319
            • 1:18.682271018211477
        • properties: desert
          • type:desert
          • Map:60
      • 311: Feature (Point, 2 properties)
        • type:Feature
        • id:311
        • geometry: Point (15.44, 21.22)
          • type:Point
          • coordinates: [15.440372505147417, 21.21769459279991]
            • 0:15.440372505147417
            • 1:21.21769459279991
        • properties: desert
          • type:desert
          • Map:60
      • 312: Feature (Point, 2 properties)
        • type:Feature
        • id:312
        • geometry: Point (12.06, 17.83)
          • type:Point
          • coordinates: [12.062127859630051, 17.834526063411914]
            • 0:12.062127859630051
            • 1:17.834526063411914
        • properties: desert
          • type:desert
          • Map:60
      • 313: Feature (Point, 2 properties)
        • type:Feature
        • id:313
        • geometry: Point (14.32, 18.80)
          • type:Point
          • coordinates: [14.320561323981682, 18.803525741768237]
            • 0:14.320561323981682
            • 1:18.803525741768237
        • properties: desert
          • type:desert
          • Map:60
      • 314: Feature (Point, 2 properties)
        • type:Feature
        • id:314
        • geometry: Point (14.06, 17.14)
          • type:Point
          • coordinates: [14.060362930609909, 17.141817286124322]
            • 0:14.060362930609909
            • 1:17.141817286124322
        • properties: desert
          • type:desert
          • Map:60
      • 315: Feature (Point, 2 properties)
        • type:Feature
        • id:315
        • geometry: Point (21.43, 19.04)
          • type:Point
          • coordinates: [21.427371172724307, 19.038601242178668]
            • 0:21.427371172724307
            • 1:19.038601242178668
        • properties: desert
          • type:desert
          • Map:60
      • 316: Feature (Point, 2 properties)
        • type:Feature
        • id:316
        • geometry: Point (10.74, 19.67)
          • type:Point
          • coordinates: [10.736877787220843, 19.674850250669273]
            • 0:10.736877787220843
            • 1:19.674850250669273
        • properties: desert
          • type:desert
          • Map:60
      • 317: Feature (Point, 2 properties)
        • type:Feature
        • id:317
        • geometry: Point (24.88, 20.73)
          • type:Point
          • coordinates: [24.87867492142927, 20.725868869005208]
            • 0:24.87867492142927
            • 1:20.725868869005208
        • properties: desert
          • type:desert
          • Map:60
      • 318: Feature (Point, 2 properties)
        • type:Feature
        • id:318
        • geometry: Point (19.43, 16.98)
          • type:Point
          • coordinates: [19.427191772792295, 16.975588774344295]
            • 0:19.427191772792295
            • 1:16.975588774344295
        • properties: desert
          • type:desert
          • Map:60
      • 319: Feature (Point, 2 properties)
        • type:Feature
        • id:319
        • geometry: Point (16.90, 19.34)
          • type:Point
          • coordinates: [16.899039007593103, 19.343272393111867]
            • 0:16.899039007593103
            • 1:19.343272393111867
        • properties: desert
          • type:desert
          • Map:60
      • 320: Feature (Point, 2 properties)
        • type:Feature
        • id:320
        • geometry: Point (24.53, 19.47)
          • type:Point
          • coordinates: [24.528971131724585, 19.468746369377037]
            • 0:24.528971131724585
            • 1:19.468746369377037
        • properties: desert
          • type:desert
          • Map:60
      • 321: Feature (Point, 2 properties)
        • type:Feature
        • id:321
        • geometry: Point (19.48, 19.79)
          • type:Point
          • coordinates: [19.478297343503005, 19.792639809576695]
            • 0:19.478297343503005
            • 1:19.792639809576695
        • properties: desert
          • type:desert
          • Map:60
      • 322: Feature (Point, 2 properties)
        • type:Feature
        • id:322
        • geometry: Point (27.74, 18.31)
          • type:Point
          • coordinates: [27.739192838591336, 18.31100542361304]
            • 0:27.739192838591336
            • 1:18.31100542361304
        • properties: desert
          • type:desert
          • Map:60
      • 323: Feature (Point, 2 properties)
        • type:Feature
        • id:323
        • geometry: Point (29.14, 18.76)
          • type:Point
          • coordinates: [29.14358632729517, 18.763229546867457]
            • 0:29.14358632729517
            • 1:18.763229546867457
        • properties: desert
          • type:desert
          • Map:60
      • 324: Feature (Point, 2 properties)
        • type:Feature
        • id:324
        • geometry: Point (24.73, 20.85)
          • type:Point
          • coordinates: [24.72895232492098, 20.848644606501317]
            • 0:24.72895232492098
            • 1:20.848644606501317
        • properties: desert
          • type:desert
          • Map:60
      • 325: Feature (Point, 2 properties)
        • type:Feature
        • id:325
        • geometry: Point (23.23, 17.10)
          • type:Point
          • coordinates: [23.2296740121135, 17.101846498381168]
            • 0:23.2296740121135
            • 1:17.101846498381168
        • properties: desert
          • type:desert
          • Map:60
      • 326: Feature (Point, 2 properties)
        • type:Feature
        • id:326
        • geometry: Point (14.72, 20.59)
          • type:Point
          • coordinates: [14.718598627860072, 20.58904542996802]
            • 0:14.718598627860072
            • 1:20.58904542996802
        • properties: desert
          • type:desert
          • Map:60
      • 327: Feature (Point, 2 properties)
        • type:Feature
        • id:327
        • geometry: Point (18.43, 18.18)
          • type:Point
          • coordinates: [18.43180205971494, 18.178393882953227]
            • 0:18.43180205971494
            • 1:18.178393882953227
        • properties: desert
          • type:desert
          • Map:60
      • 328: Feature (Point, 2 properties)
        • type:Feature
        • id:328
        • geometry: Point (21.25, 18.85)
          • type:Point
          • coordinates: [21.25299468090075, 18.848083599546825]
            • 0:21.25299468090075
            • 1:18.848083599546825
        • properties: desert
          • type:desert
          • Map:60
      • 329: Feature (Point, 2 properties)
        • type:Feature
        • id:329
        • geometry: Point (14.36, 19.18)
          • type:Point
          • coordinates: [14.355798348934336, 19.182254011497545]
            • 0:14.355798348934336
            • 1:19.182254011497545
        • properties: desert
          • type:desert
          • Map:60
      • 330: Feature (Point, 2 properties)
        • type:Feature
        • id:330
        • geometry: Point (15.80, 16.52)
          • type:Point
          • coordinates: [15.80443822310963, 16.520882945505175]
            • 0:15.80443822310963
            • 1:16.520882945505175
        • properties: desert
          • type:desert
          • Map:60
      • 331: Feature (Point, 2 properties)
        • type:Feature
        • id:331
        • geometry: Point (20.20, 22.27)
          • type:Point
          • coordinates: [20.197361149149554, 22.27253510673527]
            • 0:20.197361149149554
            • 1:22.27253510673527
        • properties: desert
          • type:desert
          • Map:60
      • 332: Feature (Point, 2 properties)
        • type:Feature
        • id:332
        • geometry: Point (27.06, 21.24)
          • type:Point
          • coordinates: [27.05982176251306, 21.24485442275673]
            • 0:27.05982176251306
            • 1:21.24485442275673
        • properties: desert
          • type:desert
          • Map:60
      • 333: Feature (Point, 2 properties)
        • type:Feature
        • id:333
        • geometry: Point (26.67, 19.54)
          • type:Point
          • coordinates: [26.674101586281946, 19.541857362967864]
            • 0:26.674101586281946
            • 1:19.541857362967864
        • properties: desert
          • type:desert
          • Map:60
      • 334: Feature (Point, 2 properties)
        • type:Feature
        • id:334
        • geometry: Point (17.38, 18.37)
          • type:Point
          • coordinates: [17.37505967526601, 18.36791179826795]
            • 0:17.37505967526601
            • 1:18.36791179826795
        • properties: desert
          • type:desert
          • Map:60
      • 335: Feature (Point, 2 properties)
        • type:Feature
        • id:335
        • geometry: Point (12.74, 18.02)
          • type:Point
          • coordinates: [12.739316097070967, 18.022971470410905]
            • 0:12.739316097070967
            • 1:18.022971470410905
        • properties: desert
          • type:desert
          • Map:60
      • 336: Feature (Point, 2 properties)
        • type:Feature
        • id:336
        • geometry: Point (23.49, 18.19)
          • type:Point
          • coordinates: [23.492517958226593, 18.189340794031953]
            • 0:23.492517958226593
            • 1:18.189340794031953
        • properties: desert
          • type:desert
          • Map:60
      • 337: Feature (Point, 2 properties)
        • type:Feature
        • id:337
        • geometry: Point (25.58, 21.64)
          • type:Point
          • coordinates: [25.58282883043123, 21.64311462287195]
            • 0:25.58282883043123
            • 1:21.64311462287195
        • properties: desert
          • type:desert
          • Map:60
      • 338: Feature (Point, 2 properties)
        • type:Feature
        • id:338
        • geometry: Point (12.90, 20.52)
          • type:Point
          • coordinates: [12.896258611032138, 20.51869051803434]
            • 0:12.896258611032138
            • 1:20.51869051803434
        • properties: desert
          • type:desert
          • Map:60
      • 339: Feature (Point, 2 properties)
        • type:Feature
        • id:339
        • geometry: Point (15.83, 16.44)
          • type:Point
          • coordinates: [15.832616513920042, 16.439511920002264]
            • 0:15.832616513920042
            • 1:16.439511920002264
        • properties: desert
          • type:desert
          • Map:60
      • 340: Feature (Point, 2 properties)
        • type:Feature
        • id:340
        • geometry: Point (28.21, 18.37)
          • type:Point
          • coordinates: [28.208860597816646, 18.367471973178112]
            • 0:28.208860597816646
            • 1:18.367471973178112
        • properties: desert
          • type:desert
          • Map:60
      • 341: Feature (Point, 2 properties)
        • type:Feature
        • id:341
        • geometry: Point (14.73, 20.72)
          • type:Point
          • coordinates: [14.730294700535344, 20.720767536855156]
            • 0:14.730294700535344
            • 1:20.720767536855156
        • properties: desert
          • type:desert
          • Map:60
      • 342: Feature (Point, 2 properties)
        • type:Feature
        • id:342
        • geometry: Point (23.49, 18.07)
          • type:Point
          • coordinates: [23.488679211249753, 18.06855406815444]
            • 0:23.488679211249753
            • 1:18.06855406815444
        • properties: desert
          • type:desert
          • Map:60
      • 343: Feature (Point, 2 properties)
        • type:Feature
        • id:343
        • geometry: Point (23.48, 18.43)
          • type:Point
          • coordinates: [23.476047639534336, 18.429265289855667]
            • 0:23.476047639534336
            • 1:18.429265289855667
        • properties: desert
          • type:desert
          • Map:60
      • 344: Feature (Point, 2 properties)
        • type:Feature
        • id:344
        • geometry: Point (28.35, 19.38)
          • type:Point
          • coordinates: [28.348060568229734, 19.37966475852583]
            • 0:28.348060568229734
            • 1:19.37966475852583
        • properties: desert
          • type:desert
          • Map:60
      • 345: Feature (Point, 2 properties)
        • type:Feature
        • id:345
        • geometry: Point (14.78, 20.35)
          • type:Point
          • coordinates: [14.782926837474085, 20.35282638857431]
            • 0:14.782926837474085
            • 1:20.35282638857431
        • properties: desert
          • type:desert
          • Map:60
      • 346: Feature (Point, 2 properties)
        • type:Feature
        • id:346
        • geometry: Point (24.99, 18.42)
          • type:Point
          • coordinates: [24.99452343700182, 18.41722072107118]
            • 0:24.99452343700182
            • 1:18.41722072107118
        • properties: desert
          • type:desert
          • Map:60
      • 347: Feature (Point, 2 properties)
        • type:Feature
        • id:347
        • geometry: Point (17.08, 18.13)
          • type:Point
          • coordinates: [17.07879972888376, 18.12905831413315]
            • 0:17.07879972888376
            • 1:18.12905831413315
        • properties: desert
          • type:desert
          • Map:60
      • 348: Feature (Point, 2 properties)
        • type:Feature
        • id:348
        • geometry: Point (16.94, 16.38)
          • type:Point
          • coordinates: [16.93714589694027, 16.379808450500644]
            • 0:16.93714589694027
            • 1:16.379808450500644
        • properties: desert
          • type:desert
          • Map:60
      • 349: Feature (Point, 2 properties)
        • type:Feature
        • id:349
        • geometry: Point (17.15, 21.73)
          • type:Point
          • coordinates: [17.153207115708085, 21.725552770358497]
            • 0:17.153207115708085
            • 1:21.725552770358497
        • properties: desert
          • type:desert
          • Map:60
      • 350: Feature (Point, 2 properties)
        • type:Feature
        • id:350
        • geometry: Point (15.77, 17.35)
          • type:Point
          • coordinates: [15.76629328194766, 17.354595099228742]
            • 0:15.76629328194766
            • 1:17.354595099228742
        • properties: desert
          • type:desert
          • Map:60
      • 351: Feature (Point, 2 properties)
        • type:Feature
        • id:351
        • geometry: Point (28.88, 17.66)
          • type:Point
          • coordinates: [28.881362933160318, 17.6551436877053]
            • 0:28.881362933160318
            • 1:17.6551436877053
        • properties: desert
          • type:desert
          • Map:60
      • 352: Feature (Point, 2 properties)
        • type:Feature
        • id:352
        • geometry: Point (19.99, 16.44)
          • type:Point
          • coordinates: [19.991616925951373, 16.443932795096675]
            • 0:19.991616925951373
            • 1:16.443932795096675
        • properties: desert
          • type:desert
          • Map:60
      • 353: Feature (Point, 2 properties)
        • type:Feature
        • id:353
        • geometry: Point (24.44, 17.59)
          • type:Point
          • coordinates: [24.437659620965498, 17.590118684052356]
            • 0:24.437659620965498
            • 1:17.590118684052356
        • properties: desert
          • type:desert
          • Map:60
      • 354: Feature (Point, 2 properties)
        • type:Feature
        • id:354
        • geometry: Point (15.41, 19.47)
          • type:Point
          • coordinates: [15.41222410613041, 19.465531173676844]
            • 0:15.41222410613041
            • 1:19.465531173676844
        • properties: desert
          • type:desert
          • Map:60
      • 355: Feature (Point, 2 properties)
        • type:Feature
        • id:355
        • geometry: Point (24.49, 18.59)
          • type:Point
          • coordinates: [24.488267205304158, 18.594393403980536]
            • 0:24.488267205304158
            • 1:18.594393403980536
        • properties: desert
          • type:desert
          • Map:60
      • 356: Feature (Point, 2 properties)
        • type:Feature
        • id:356
        • geometry: Point (18.62, 19.18)
          • type:Point
          • coordinates: [18.622474399550786, 19.181256581678852]
            • 0:18.622474399550786
            • 1:19.181256581678852
        • properties: desert
          • type:desert
          • Map:60
      • 357: Feature (Point, 2 properties)
        • type:Feature
        • id:357
        • geometry: Point (27.81, 20.06)
          • type:Point
          • coordinates: [27.812586412768223, 20.060430808983316]
            • 0:27.812586412768223
            • 1:20.060430808983316
        • properties: desert
          • type:desert
          • Map:60
      • 358: Feature (Point, 2 properties)
        • type:Feature
        • id:358
        • geometry: Point (17.81, 16.57)
          • type:Point
          • coordinates: [17.80519714446865, 16.56618656382952]
            • 0:17.80519714446865
            • 1:16.56618656382952
        • properties: desert
          • type:desert
          • Map:60
      • 359: Feature (Point, 2 properties)
        • type:Feature
        • id:359
        • geometry: Point (15.06, 20.81)
          • type:Point
          • coordinates: [15.060694190304364, 20.809132685359536]
            • 0:15.060694190304364
            • 1:20.809132685359536
        • properties: desert
          • type:desert
          • Map:60
      • 360: Feature (Point, 2 properties)
        • type:Feature
        • id:360
        • geometry: Point (26.92, 17.10)
          • type:Point
          • coordinates: [26.920266608370877, 17.09991715614189]
            • 0:26.920266608370877
            • 1:17.09991715614189
        • properties: desert
          • type:desert
          • Map:60
      • 361: Feature (Point, 2 properties)
        • type:Feature
        • id:361
        • geometry: Point (13.11, 17.88)
          • type:Point
          • coordinates: [13.107183470059438, 17.879287452460943]
            • 0:13.107183470059438
            • 1:17.879287452460943
        • properties: desert
          • type:desert
          • Map:60
      • 362: Feature (Point, 2 properties)
        • type:Feature
        • id:362
        • geometry: Point (22.61, 18.12)
          • type:Point
          • coordinates: [22.605105711692413, 18.121313119567276]
            • 0:22.605105711692413
            • 1:18.121313119567276
        • properties: desert
          • type:desert
          • Map:60
      • 363: Feature (Point, 2 properties)
        • type:Feature
        • id:363
        • geometry: Point (16.09, 17.08)
          • type:Point
          • coordinates: [16.088682115487686, 17.07972628677301]
            • 0:16.088682115487686
            • 1:17.07972628677301
        • properties: desert
          • type:desert
          • Map:60
      • 364: Feature (Point, 2 properties)
        • type:Feature
        • id:364
        • geometry: Point (24.69, 20.65)
          • type:Point
          • coordinates: [24.68827659194661, 20.64722997891647]
            • 0:24.68827659194661
            • 1:20.64722997891647
        • properties: desert
          • type:desert
          • Map:60
      • 365: Feature (Point, 2 properties)
        • type:Feature
        • id:365
        • geometry: Point (24.06, 17.97)
          • type:Point
          • coordinates: [24.06445951550555, 17.966072142749702]
            • 0:24.06445951550555
            • 1:17.966072142749702
        • properties: desert
          • type:desert
          • Map:60
      • 366: Feature (Point, 2 properties)
        • type:Feature
        • id:366
        • geometry: Point (11.92, 17.87)
          • type:Point
          • coordinates: [11.915350941252425, 17.873556014364823]
            • 0:11.915350941252425
            • 1:17.873556014364823
        • properties: desert
          • type:desert
          • Map:60
      • 367: Feature (Point, 2 properties)
        • type:Feature
        • id:367
        • geometry: Point (16.54, 19.95)
          • type:Point
          • coordinates: [16.536056632131785, 19.95490264934622]
            • 0:16.536056632131785
            • 1:19.95490264934622
        • properties: desert
          • type:desert
          • Map:60
      • 368: Feature (Point, 2 properties)
        • type:Feature
        • id:368
        • geometry: Point (15.83, 21.15)
          • type:Point
          • coordinates: [15.827298274498473, 21.15194598618802]
            • 0:15.827298274498473
            • 1:21.15194598618802
        • properties: desert
          • type:desert
          • Map:60
      • 369: Feature (Point, 2 properties)
        • type:Feature
        • id:369
        • geometry: Point (18.13, 17.30)
          • type:Point
          • coordinates: [18.134426312001523, 17.299293561982868]
            • 0:18.134426312001523
            • 1:17.299293561982868
        • properties: desert
          • type:desert
          • Map:60
      • 370: Feature (Point, 2 properties)
        • type:Feature
        • id:370
        • geometry: Point (21.14, 20.99)
          • type:Point
          • coordinates: [21.143899412860545, 20.992768039235454]
            • 0:21.143899412860545
            • 1:20.992768039235454
        • properties: desert
          • type:desert
          • Map:60
      • 371: Feature (Point, 2 properties)
        • type:Feature
        • id:371
        • geometry: Point (15.29, 18.36)
          • type:Point
          • coordinates: [15.286808812664907, 18.357686283341035]
            • 0:15.286808812664907
            • 1:18.357686283341035
        • properties: desert
          • type:desert
          • Map:60
      • 372: Feature (Point, 2 properties)
        • type:Feature
        • id:372
        • geometry: Point (24.50, 20.23)
          • type:Point
          • coordinates: [24.501307363775936, 20.233828667433386]
            • 0:24.501307363775936
            • 1:20.233828667433386
        • properties: desert
          • type:desert
          • Map:60
      • 373: Feature (Point, 2 properties)
        • type:Feature
        • id:373
        • geometry: Point (28.55, 19.79)
          • type:Point
          • coordinates: [28.549038591730728, 19.789166031412655]
            • 0:28.549038591730728
            • 1:19.789166031412655
        • properties: desert
          • type:desert
          • Map:60
      • 374: Feature (Point, 2 properties)
        • type:Feature
        • id:374
        • geometry: Point (16.30, 17.19)
          • type:Point
          • coordinates: [16.296842166538077, 17.18758609367498]
            • 0:16.296842166538077
            • 1:17.18758609367498
        • properties: desert
          • type:desert
          • Map:60
      • 375: Feature (Point, 2 properties)
        • type:Feature
        • id:375
        • geometry: Point (17.96, 20.49)
          • type:Point
          • coordinates: [17.959012926749566, 20.487875546596026]
            • 0:17.959012926749566
            • 1:20.487875546596026
        • properties: desert
          • type:desert
          • Map:60
      • 376: Feature (Point, 2 properties)
        • type:Feature
        • id:376
        • geometry: Point (21.12, 21.00)
          • type:Point
          • coordinates: [21.121674671855647, 20.998957119457536]
            • 0:21.121674671855647
            • 1:20.998957119457536
        • properties: desert
          • type:desert
          • Map:60
      • 377: Feature (Point, 2 properties)
        • type:Feature
        • id:377
        • geometry: Point (18.94, 19.10)
          • type:Point
          • coordinates: [18.93761867353319, 19.097996808244684]
            • 0:18.93761867353319
            • 1:19.097996808244684
        • properties: desert
          • type:desert
          • Map:60
      • 378: Feature (Point, 2 properties)
        • type:Feature
        • id:378
        • geometry: Point (12.77, 18.08)
          • type:Point
          • coordinates: [12.768593163406505, 18.082643964337592]
            • 0:12.768593163406505
            • 1:18.082643964337592
        • properties: desert
          • type:desert
          • Map:60
      • 379: Feature (Point, 2 properties)
        • type:Feature
        • id:379
        • geometry: Point (21.85, 19.35)
          • type:Point
          • coordinates: [21.845224775908356, 19.34793439969682]
            • 0:21.845224775908356
            • 1:19.34793439969682
        • properties: desert
          • type:desert
          • Map:60
      • 380: Feature (Point, 2 properties)
        • type:Feature
        • id:380
        • geometry: Point (22.75, 21.08)
          • type:Point
          • coordinates: [22.745147774125137, 21.082986383815097]
            • 0:22.745147774125137
            • 1:21.082986383815097
        • properties: desert
          • type:desert
          • Map:60
      • 381: Feature (Point, 2 properties)
        • type:Feature
        • id:381
        • geometry: Point (23.96, 22.40)
          • type:Point
          • coordinates: [23.964349669960054, 22.401025470640338]
            • 0:23.964349669960054
            • 1:22.401025470640338
        • properties: desert
          • type:desert
          • Map:60
      • 382: Feature (Point, 2 properties)
        • type:Feature
        • id:382
        • geometry: Point (19.37, 17.26)
          • type:Point
          • coordinates: [19.374322945276912, 17.264841721607265]
            • 0:19.374322945276912
            • 1:17.264841721607265
        • properties: desert
          • type:desert
          • Map:60
      • 383: Feature (Point, 2 properties)
        • type:Feature
        • id:383
        • geometry: Point (21.45, 16.95)
          • type:Point
          • coordinates: [21.450949099678688, 16.948618279607338]
            • 0:21.450949099678688
            • 1:16.948618279607338
        • properties: desert
          • type:desert
          • Map:60
      • 384: Feature (Point, 2 properties)
        • type:Feature
        • id:384
        • geometry: Point (17.83, 20.17)
          • type:Point
          • coordinates: [17.832396872922384, 20.166727463073467]
            • 0:17.832396872922384
            • 1:20.166727463073467
        • properties: desert
          • type:desert
          • Map:60
      • 385: Feature (Point, 2 properties)
        • type:Feature
        • id:385
        • geometry: Point (28.02, 19.80)
          • type:Point
          • coordinates: [28.02393201171196, 19.800643622268566]
            • 0:28.02393201171196
            • 1:19.800643622268566
        • properties: desert
          • type:desert
          • Map:60
      • 386: Feature (Point, 2 properties)
        • type:Feature
        • id:386
        • geometry: Point (13.04, 18.16)
          • type:Point
          • coordinates: [13.036382853542557, 18.157618602409862]
            • 0:13.036382853542557
            • 1:18.157618602409862
        • properties: desert
          • type:desert
          • Map:60
      • 387: Feature (Point, 2 properties)
        • type:Feature
        • id:387
        • geometry: Point (14.68, 19.40)
          • type:Point
          • coordinates: [14.68278225714869, 19.40256023932948]
            • 0:14.68278225714869
            • 1:19.40256023932948
        • properties: desert
          • type:desert
          • Map:60
      • 388: Feature (Point, 2 properties)
        • type:Feature
        • id:388
        • geometry: Point (17.74, 15.97)
          • type:Point
          • coordinates: [17.735360115955146, 15.973113876085119]
            • 0:17.735360115955146
            • 1:15.973113876085119
        • properties: desert
          • type:desert
          • Map:60
      • 389: Feature (Point, 2 properties)
        • type:Feature
        • id:389
        • geometry: Point (26.23, 17.42)
          • type:Point
          • coordinates: [26.234985516519448, 17.4246113912486]
            • 0:26.234985516519448
            • 1:17.4246113912486
        • properties: desert
          • type:desert
          • Map:60
      • 390: Feature (Point, 2 properties)
        • type:Feature
        • id:390
        • geometry: Point (27.18, 21.59)
          • type:Point
          • coordinates: [27.179186278497873, 21.589784278448555]
            • 0:27.179186278497873
            • 1:21.589784278448555
        • properties: desert
          • type:desert
          • Map:60
      • 391: Feature (Point, 2 properties)
        • type:Feature
        • id:391
        • geometry: Point (25.84, 19.77)
          • type:Point
          • coordinates: [25.836300825279128, 19.76822538519648]
            • 0:25.836300825279128
            • 1:19.76822538519648
        • properties: desert
          • type:desert
          • Map:60
      • 392: Feature (Point, 2 properties)
        • type:Feature
        • id:392
        • geometry: Point (16.99, 16.54)
          • type:Point
          • coordinates: [16.98909483474592, 16.539608059985902]
            • 0:16.98909483474592
            • 1:16.539608059985902
        • properties: desert
          • type:desert
          • Map:60
      • 393: Feature (Point, 2 properties)
        • type:Feature
        • id:393
        • geometry: Point (12.74, 17.33)
          • type:Point
          • coordinates: [12.739142545387946, 17.333124557440847]
            • 0:12.739142545387946
            • 1:17.333124557440847
        • properties: desert
          • type:desert
          • Map:60
      • 394: Feature (Point, 2 properties)
        • type:Feature
        • id:394
        • geometry: Point (28.27, 17.49)
          • type:Point
          • coordinates: [28.265678098658526, 17.490110599033653]
            • 0:28.265678098658526
            • 1:17.490110599033653
        • properties: desert
          • type:desert
          • Map:60
      • 395: Feature (Point, 2 properties)
        • type:Feature
        • id:395
        • geometry: Point (15.97, 17.65)
          • type:Point
          • coordinates: [15.970628997279464, 17.651449140139295]
            • 0:15.970628997279464
            • 1:17.651449140139295
        • properties: desert
          • type:desert
          • Map:60
      • 396: Feature (Point, 2 properties)
        • type:Feature
        • id:396
        • geometry: Point (23.42, 21.06)
          • type:Point
          • coordinates: [23.42059145612689, 21.062325956188047]
            • 0:23.42059145612689
            • 1:21.062325956188047
        • properties: desert
          • type:desert
          • Map:60
      • 397: Feature (Point, 2 properties)
        • type:Feature
        • id:397
        • geometry: Point (12.72, 19.55)
          • type:Point
          • coordinates: [12.716893434990258, 19.548946856314316]
            • 0:12.716893434990258
            • 1:19.548946856314316
        • properties: desert
          • type:desert
          • Map:60
      • 398: Feature (Point, 2 properties)
        • type:Feature
        • id:398
        • geometry: Point (24.97, 19.25)
          • type:Point
          • coordinates: [24.97092126881646, 19.248300639761904]
            • 0:24.97092126881646
            • 1:19.248300639761904
        • properties: desert
          • type:desert
          • Map:60
      • 399: Feature (Point, 2 properties)
        • type:Feature
        • id:399
        • geometry: Point (15.12, 17.85)
          • type:Point
          • coordinates: [15.119642807055582, 17.848360623604016]
            • 0:15.119642807055582
            • 1:17.848360623604016
        • properties: desert
          • type:desert
          • Map:60
      • 400: Feature (Point, 2 properties)
        • type:Feature
        • id:400
        • geometry: Point (26.04, 17.15)
          • type:Point
          • coordinates: [26.04141022445649, 17.149440807361124]
            • 0:26.04141022445649
            • 1:17.149440807361124
        • properties: desert
          • type:desert
          • Map:60
      • 401: Feature (Point, 2 properties)
        • type:Feature
        • id:401
        • geometry: Point (20.04, 22.14)
          • type:Point
          • coordinates: [20.03884091402147, 22.13512225604328]
            • 0:20.03884091402147
            • 1:22.13512225604328
        • properties: desert
          • type:desert
          • Map:60
      • 402: Feature (Point, 2 properties)
        • type:Feature
        • id:402
        • geometry: Point (24.38, 17.86)
          • type:Point
          • coordinates: [24.38149187302939, 17.859224667675388]
            • 0:24.38149187302939
            • 1:17.859224667675388
        • properties: desert
          • type:desert
          • Map:60
      • 403: Feature (Point, 2 properties)
        • type:Feature
        • id:403
        • geometry: Point (18.08, 19.00)
          • type:Point
          • coordinates: [18.07956904880362, 18.997363283128145]
            • 0:18.07956904880362
            • 1:18.997363283128145
        • properties: desert
          • type:desert
          • Map:60
      • 404: Feature (Point, 2 properties)
        • type:Feature
        • id:404
        • geometry: Point (13.14, 19.77)
          • type:Point
          • coordinates: [13.141980071561768, 19.772316387244892]
            • 0:13.141980071561768
            • 1:19.772316387244892
        • properties: desert
          • type:desert
          • Map:60
      • 405: Feature (Point, 2 properties)
        • type:Feature
        • id:405
        • geometry: Point (28.71, 20.18)
          • type:Point
          • coordinates: [28.70527002416625, 20.178578315532658]
            • 0:28.70527002416625
            • 1:20.178578315532658
        • properties: desert
          • type:desert
          • Map:60
      • 406: Feature (Point, 2 properties)
        • type:Feature
        • id:406
        • geometry: Point (14.55, 17.90)
          • type:Point
          • coordinates: [14.554233198269923, 17.900279724201784]
            • 0:14.554233198269923
            • 1:17.900279724201784
        • properties: desert
          • type:desert
          • Map:60
      • 407: Feature (Point, 2 properties)
        • type:Feature
        • id:407
        • geometry: Point (12.45, 17.40)
          • type:Point
          • coordinates: [12.451471429664315, 17.403840710181786]
            • 0:12.451471429664315
            • 1:17.403840710181786
        • properties: desert
          • type:desert
          • Map:60
      • 408: Feature (Point, 2 properties)
        • type:Feature
        • id:408
        • geometry: Point (15.00, 17.20)
          • type:Point
          • coordinates: [14.997061744801488, 17.202862342340218]
            • 0:14.997061744801488
            • 1:17.202862342340218
        • properties: desert
          • type:desert
          • Map:60
      • 409: Feature (Point, 2 properties)
        • type:Feature
        • id:409
        • geometry: Point (21.09, 21.86)
          • type:Point
          • coordinates: [21.092400312469774, 21.856242717539647]
            • 0:21.092400312469774
            • 1:21.856242717539647
        • properties: desert
          • type:desert
          • Map:60
      • 410: Feature (Point, 2 properties)
        • type:Feature
        • id:410
        • geometry: Point (11.07, 19.36)
          • type:Point
          • coordinates: [11.069396185624566, 19.363340925867174]
            • 0:11.069396185624566
            • 1:19.363340925867174
        • properties: desert
          • type:desert
          • Map:60
      • 411: Feature (Point, 2 properties)
        • type:Feature
        • id:411
        • geometry: Point (20.04, 17.96)
          • type:Point
          • coordinates: [20.043920752805562, 17.96352443685695]
            • 0:20.043920752805562
            • 1:17.96352443685695
        • properties: desert
          • type:desert
          • Map:60
      • 412: Feature (Point, 2 properties)
        • type:Feature
        • id:412
        • geometry: Point (18.15, 20.22)
          • type:Point
          • coordinates: [18.150450608804956, 20.22353539710159]
            • 0:18.150450608804956
            • 1:20.22353539710159
        • properties: desert
          • type:desert
          • Map:60
      • 413: Feature (Point, 2 properties)
        • type:Feature
        • id:413
        • geometry: Point (22.11, 18.76)
          • type:Point
          • coordinates: [22.113382538325503, 18.757776886848784]
            • 0:22.113382538325503
            • 1:18.757776886848784
        • properties: desert
          • type:desert
          • Map:60
      • 414: Feature (Point, 2 properties)
        • type:Feature
        • id:414
        • geometry: Point (22.77, 19.19)
          • type:Point
          • coordinates: [22.765798196963726, 19.188599752003842]
            • 0:22.765798196963726
            • 1:19.188599752003842
        • properties: desert
          • type:desert
          • Map:60
      • 415: Feature (Point, 2 properties)
        • type:Feature
        • id:415
        • geometry: Point (18.31, 16.55)
          • type:Point
          • coordinates: [18.312627311445965, 16.55384039670984]
            • 0:18.312627311445965
            • 1:16.55384039670984
        • properties: desert
          • type:desert
          • Map:60
      • 416: Feature (Point, 2 properties)
        • type:Feature
        • id:416
        • geometry: Point (20.09, 21.34)
          • type:Point
          • coordinates: [20.090857917685373, 21.337495054064853]
            • 0:20.090857917685373
            • 1:21.337495054064853
        • properties: desert
          • type:desert
          • Map:60
      • 417: Feature (Point, 2 properties)
        • type:Feature
        • id:417
        • geometry: Point (18.60, 16.45)
          • type:Point
          • coordinates: [18.604759772968073, 16.45158076859316]
            • 0:18.604759772968073
            • 1:16.45158076859316
        • properties: desert
          • type:desert
          • Map:60
      • 418: Feature (Point, 2 properties)
        • type:Feature
        • id:418
        • geometry: Point (28.54, 19.90)
          • type:Point
          • coordinates: [28.540790112310933, 19.897152684745922]
            • 0:28.540790112310933
            • 1:19.897152684745922
        • properties: desert
          • type:desert
          • Map:60
      • 419: Feature (Point, 2 properties)
        • type:Feature
        • id:419
        • geometry: Point (12.56, 20.46)
          • type:Point
          • coordinates: [12.555253114717196, 20.4612992531943]
            • 0:12.555253114717196
            • 1:20.4612992531943
        • properties: desert
          • type:desert
          • Map:60
      • 420: Feature (Point, 2 properties)
        • type:Feature
        • id:420
        • geometry: Point (22.91, 20.90)
          • type:Point
          • coordinates: [22.91257491827458, 20.904662378241294]
            • 0:22.91257491827458
            • 1:20.904662378241294
        • properties: desert
          • type:desert
          • Map:60
      • 421: Feature (Point, 2 properties)
        • type:Feature
        • id:421
        • geometry: Point (25.69, 21.02)
          • type:Point
          • coordinates: [25.688422213399623, 21.016571766593028]
            • 0:25.688422213399623
            • 1:21.016571766593028
        • properties: desert
          • type:desert
          • Map:60
      • 422: Feature (Point, 2 properties)
        • type:Feature
        • id:422
        • geometry: Point (25.44, 19.70)
          • type:Point
          • coordinates: [25.436619506306393, 19.699242612326564]
            • 0:25.436619506306393
            • 1:19.699242612326564
        • properties: desert
          • type:desert
          • Map:60
      • 423: Feature (Point, 2 properties)
        • type:Feature
        • id:423
        • geometry: Point (19.85, 22.13)
          • type:Point
          • coordinates: [19.846771418753445, 22.126669864383718]
            • 0:19.846771418753445
            • 1:22.126669864383718
        • properties: desert
          • type:desert
          • Map:60
      • 424: Feature (Point, 2 properties)
        • type:Feature
        • id:424
        • geometry: Point (19.56, 18.55)
          • type:Point
          • coordinates: [19.55744803183328, 18.549012614600745]
            • 0:19.55744803183328
            • 1:18.549012614600745
        • properties: desert
          • type:desert
          • Map:60
      • 425: Feature (Point, 2 properties)
        • type:Feature
        • id:425
        • geometry: Point (19.48, 17.32)
          • type:Point
          • coordinates: [19.483974659824796, 17.31640955197621]
            • 0:19.483974659824796
            • 1:17.31640955197621
        • properties: desert
          • type:desert
          • Map:60
      • 426: Feature (Point, 2 properties)
        • type:Feature
        • id:426
        • geometry: Point (27.51, 20.51)
          • type:Point
          • coordinates: [27.507782710318274, 20.508186507537086]
            • 0:27.507782710318274
            • 1:20.508186507537086
        • properties: desert
          • type:desert
          • Map:60
      • 427: Feature (Point, 2 properties)
        • type:Feature
        • id:427
        • geometry: Point (29.11, 16.91)
          • type:Point
          • coordinates: [29.108117290283737, 16.91302451529363]
            • 0:29.108117290283737
            • 1:16.91302451529363
        • properties: desert
          • type:desert
          • Map:60
      • 428: Feature (Point, 2 properties)
        • type:Feature
        • id:428
        • geometry: Point (23.24, 20.74)
          • type:Point
          • coordinates: [23.243442370029545, 20.744694305287958]
            • 0:23.243442370029545
            • 1:20.744694305287958
        • properties: desert
          • type:desert
          • Map:60
      • 429: Feature (Point, 2 properties)
        • type:Feature
        • id:429
        • geometry: Point (20.63, 21.87)
          • type:Point
          • coordinates: [20.63238192588867, 21.872351986937677]
            • 0:20.63238192588867
            • 1:21.872351986937677
        • properties: desert
          • type:desert
          • Map:60
      • 430: Feature (Point, 2 properties)
        • type:Feature
        • id:430
        • geometry: Point (17.01, 21.63)
          • type:Point
          • coordinates: [17.010048275441903, 21.630462089656852]
            • 0:17.010048275441903
            • 1:21.630462089656852
        • properties: desert
          • type:desert
          • Map:60
      • 431: Feature (Point, 2 properties)
        • type:Feature
        • id:431
        • geometry: Point (26.12, 18.97)
          • type:Point
          • coordinates: [26.121698040837288, 18.969276420768388]
            • 0:26.121698040837288
            • 1:18.969276420768388
        • properties: desert
          • type:desert
          • Map:60
      • 432: Feature (Point, 2 properties)
        • type:Feature
        • id:432
        • geometry: Point (24.03, 18.83)
          • type:Point
          • coordinates: [24.027792479934515, 18.828022157332015]
            • 0:24.027792479934515
            • 1:18.828022157332015
        • properties: desert
          • type:desert
          • Map:60
      • 433: Feature (Point, 2 properties)
        • type:Feature
        • id:433
        • geometry: Point (28.81, 19.50)
          • type:Point
          • coordinates: [28.812196120510762, 19.499498144149857]
            • 0:28.812196120510762
            • 1:19.499498144149857
        • properties: desert
          • type:desert
          • Map:60
      • 434: Feature (Point, 2 properties)
        • type:Feature
        • id:434
        • geometry: Point (21.75, 19.15)
          • type:Point
          • coordinates: [21.752259893957433, 19.152666098874644]
            • 0:21.752259893957433
            • 1:19.152666098874644
        • properties: desert
          • type:desert
          • Map:60
      • 435: Feature (Point, 2 properties)
        • type:Feature
        • id:435
        • geometry: Point (23.23, 21.81)
          • type:Point
          • coordinates: [23.231698762321326, 21.8143445044939]
            • 0:23.231698762321326
            • 1:21.8143445044939
        • properties: desert
          • type:desert
          • Map:60
      • 436: Feature (Point, 2 properties)
        • type:Feature
        • id:436
        • geometry: Point (20.22, 20.63)
          • type:Point
          • coordinates: [20.21966712621337, 20.633202346600747]
            • 0:20.21966712621337
            • 1:20.633202346600747
        • properties: desert
          • type:desert
          • Map:60
      • 437: Feature (Point, 2 properties)
        • type:Feature
        • id:437
        • geometry: Point (13.51, 17.91)
          • type:Point
          • coordinates: [13.51185860742839, 17.910281581456257]
            • 0:13.51185860742839
            • 1:17.910281581456257
        • properties: desert
          • type:desert
          • Map:60
      • 438: Feature (Point, 2 properties)
        • type:Feature
        • id:438
        • geometry: Point (28.02, 19.09)
          • type:Point
          • coordinates: [28.01786901621306, 19.08914673009686]
            • 0:28.01786901621306
            • 1:19.08914673009686
        • properties: desert
          • type:desert
          • Map:60
      • 439: Feature (Point, 2 properties)
        • type:Feature
        • id:439
        • geometry: Point (23.39, 18.60)
          • type:Point
          • coordinates: [23.393867702711635, 18.60238708368137]
            • 0:23.393867702711635
            • 1:18.60238708368137
        • properties: desert
          • type:desert
          • Map:60
      • 440: Feature (Point, 2 properties)
        • type:Feature
        • id:440
        • geometry: Point (16.37, 20.17)
          • type:Point
          • coordinates: [16.36868492308917, 20.171230710333667]
            • 0:16.36868492308917
            • 1:20.171230710333667
        • properties: desert
          • type:desert
          • Map:60
      • 441: Feature (Point, 2 properties)
        • type:Feature
        • id:441
        • geometry: Point (22.02, 19.51)
          • type:Point
          • coordinates: [22.016358062079526, 19.50952567749533]
            • 0:22.016358062079526
            • 1:19.50952567749533
        • properties: desert
          • type:desert
          • Map:60
      • 442: Feature (Point, 2 properties)
        • type:Feature
        • id:442
        • geometry: Point (22.51, 19.21)
          • type:Point
          • coordinates: [22.514964539579598, 19.212881780013877]
            • 0:22.514964539579598
            • 1:19.212881780013877
        • properties: desert
          • type:desert
          • Map:60
      • 443: Feature (Point, 2 properties)
        • type:Feature
        • id:443
        • geometry: Point (18.50, 21.00)
          • type:Point
          • coordinates: [18.49994936250185, 20.999855735825975]
            • 0:18.49994936250185
            • 1:20.999855735825975
        • properties: desert
          • type:desert
          • Map:60
      • 444: Feature (Point, 2 properties)
        • type:Feature
        • id:444
        • geometry: Point (20.89, 21.56)
          • type:Point
          • coordinates: [20.88586488594298, 21.557783437600225]
            • 0:20.88586488594298
            • 1:21.557783437600225
        • properties: desert
          • type:desert
          • Map:60
      • 445: Feature (Point, 2 properties)
        • type:Feature
        • id:445
        • geometry: Point (18.77, 19.12)
          • type:Point
          • coordinates: [18.771683284553376, 19.11596430362397]
            • 0:18.771683284553376
            • 1:19.11596430362397
        • properties: desert
          • type:desert
          • Map:60
      • 446: Feature (Point, 2 properties)
        • type:Feature
        • id:446
        • geometry: Point (24.40, 20.47)
          • type:Point
          • coordinates: [24.40276655777155, 20.46613025579551]
            • 0:24.40276655777155
            • 1:20.46613025579551
        • properties: desert
          • type:desert
          • Map:60
      • 447: Feature (Point, 2 properties)
        • type:Feature
        • id:447
        • geometry: Point (18.28, 19.63)
          • type:Point
          • coordinates: [18.277682123876428, 19.628591015233322]
            • 0:18.277682123876428
            • 1:19.628591015233322
        • properties: desert
          • type:desert
          • Map:60
      • 448: Feature (Point, 2 properties)
        • type:Feature
        • id:448
        • geometry: Point (14.50, 19.59)
          • type:Point
          • coordinates: [14.499873161069155, 19.590932474115586]
            • 0:14.499873161069155
            • 1:19.590932474115586
        • properties: desert
          • type:desert
          • Map:60
      • 449: Feature (Point, 2 properties)
        • type:Feature
        • id:449
        • geometry: Point (20.34, 17.11)
          • type:Point
          • coordinates: [20.34064111794607, 17.107453452621485]
            • 0:20.34064111794607
            • 1:17.107453452621485
        • properties: desert
          • type:desert
          • Map:60
      • 450: Feature (Point, 2 properties)
        • type:Feature
        • id:450
        • geometry: Point (21.41, 21.35)
          • type:Point
          • coordinates: [21.410661076808424, 21.35021639389112]
            • 0:21.410661076808424
            • 1:21.35021639389112
        • properties: desert
          • type:desert
          • Map:60
      • 451: Feature (Point, 2 properties)
        • type:Feature
        • id:451
        • geometry: Point (11.95, 18.61)
          • type:Point
          • coordinates: [11.953768682962354, 18.606185992924832]
            • 0:11.953768682962354
            • 1:18.606185992924832
        • properties: desert
          • type:desert
          • Map:60
      • 452: Feature (Point, 2 properties)
        • type:Feature
        • id:452
        • geometry: Point (16.16, 19.41)
          • type:Point
          • coordinates: [16.164718658058412, 19.414275106744977]
            • 0:16.164718658058412
            • 1:19.414275106744977
        • properties: desert
          • type:desert
          • Map:60
      • 453: Feature (Point, 2 properties)
        • type:Feature
        • id:453
        • geometry: Point (12.28, 18.68)
          • type:Point
          • coordinates: [12.278727103979962, 18.68184716346552]
            • 0:12.278727103979962
            • 1:18.68184716346552
        • properties: desert
          • type:desert
          • Map:60
      • 454: Feature (Point, 2 properties)
        • type:Feature
        • id:454
        • geometry: Point (14.66, 21.41)
          • type:Point
          • coordinates: [14.658533216226962, 21.41399388371315]
            • 0:14.658533216226962
            • 1:21.41399388371315
        • properties: desert
          • type:desert
          • Map:60
      • 455: Feature (Point, 2 properties)
        • type:Feature
        • id:455
        • geometry: Point (27.34, 19.50)
          • type:Point
          • coordinates: [27.34089196563548, 19.499906514286042]
            • 0:27.34089196563548
            • 1:19.499906514286042
        • properties: desert
          • type:desert
          • Map:60
      • 456: Feature (Point, 2 properties)
        • type:Feature
        • id:456
        • geometry: Point (26.55, 20.66)
          • type:Point
          • coordinates: [26.54607854129159, 20.65909260276049]
            • 0:26.54607854129159
            • 1:20.65909260276049
        • properties: desert
          • type:desert
          • Map:60
      • 457: Feature (Point, 2 properties)
        • type:Feature
        • id:457
        • geometry: Point (21.39, 21.20)
          • type:Point
          • coordinates: [21.39180328574206, 21.20221842733883]
            • 0:21.39180328574206
            • 1:21.20221842733883
        • properties: desert
          • type:desert
          • Map:60
      • 458: Feature (Point, 2 properties)
        • type:Feature
        • id:458
        • geometry: Point (23.36, 19.57)
          • type:Point
          • coordinates: [23.35519105978253, 19.573899893752493]
            • 0:23.35519105978253
            • 1:19.573899893752493
        • properties: desert
          • type:desert
          • Map:60
      • 459: Feature (Point, 2 properties)
        • type:Feature
        • id:459
        • geometry: Point (15.54, 17.33)
          • type:Point
          • coordinates: [15.53990975242385, 17.327317708857546]
            • 0:15.53990975242385
            • 1:17.327317708857546
        • properties: desert
          • type:desert
          • Map:60
      • 460: Feature (Point, 2 properties)
        • type:Feature
        • id:460
        • geometry: Point (14.26, 17.42)
          • type:Point
          • coordinates: [14.255726690470437, 17.42043757762441]
            • 0:14.255726690470437
            • 1:17.42043757762441
        • properties: desert
          • type:desert
          • Map:60
      • 461: Feature (Point, 2 properties)
        • type:Feature
        • id:461
        • geometry: Point (13.21, 21.07)
          • type:Point
          • coordinates: [13.211884296039944, 21.06618260802954]
            • 0:13.211884296039944
            • 1:21.06618260802954
        • properties: desert
          • type:desert
          • Map:60
      • 462: Feature (Point, 2 properties)
        • type:Feature
        • id:462
        • geometry: Point (25.36, 21.50)
          • type:Point
          • coordinates: [25.364220319166957, 21.50002893305985]
            • 0:25.364220319166957
            • 1:21.50002893305985
        • properties: desert
          • type:desert
          • Map:60
      • 463: Feature (Point, 2 properties)
        • type:Feature
        • id:463
        • geometry: Point (12.88, 20.20)
          • type:Point
          • coordinates: [12.877874422711551, 20.203902673476875]
            • 0:12.877874422711551
            • 1:20.203902673476875
        • properties: desert
          • type:desert
          • Map:60
      • 464: Feature (Point, 2 properties)
        • type:Feature
        • id:464
        • geometry: Point (19.08, 21.86)
          • type:Point
          • coordinates: [19.079358925572105, 21.856717688421067]
            • 0:19.079358925572105
            • 1:21.856717688421067
        • properties: desert
          • type:desert
          • Map:60
      • 465: Feature (Point, 2 properties)
        • type:Feature
        • id:465
        • geometry: Point (16.33, 19.02)
          • type:Point
          • coordinates: [16.3251753886057, 19.020797609304463]
            • 0:16.3251753886057
            • 1:19.020797609304463
        • properties: desert
          • type:desert
          • Map:60
      • 466: Feature (Point, 2 properties)
        • type:Feature
        • id:466
        • geometry: Point (27.86, 17.45)
          • type:Point
          • coordinates: [27.85507203738727, 17.453797220579553]
            • 0:27.85507203738727
            • 1:17.453797220579553
        • properties: desert
          • type:desert
          • Map:60
      • 467: Feature (Point, 2 properties)
        • type:Feature
        • id:467
        • geometry: Point (17.48, 20.00)
          • type:Point
          • coordinates: [17.476292952827894, 20.004126611261196]
            • 0:17.476292952827894
            • 1:20.004126611261196
        • properties: desert
          • type:desert
          • Map:60
      • 468: Feature (Point, 2 properties)
        • type:Feature
        • id:468
        • geometry: Point (14.43, 20.60)
          • type:Point
          • coordinates: [14.430979978523581, 20.60105417682199]
            • 0:14.430979978523581
            • 1:20.60105417682199
        • properties: desert
          • type:desert
          • Map:60
      • 469: Feature (Point, 2 properties)
        • type:Feature
        • id:469
        • geometry: Point (24.67, 18.77)
          • type:Point
          • coordinates: [24.665866554900813, 18.77037392180013]
            • 0:24.665866554900813
            • 1:18.77037392180013
        • properties: desert
          • type:desert
          • Map:60
      • 470: Feature (Point, 2 properties)
        • type:Feature
        • id:470
        • geometry: Point (24.92, 16.95)
          • type:Point
          • coordinates: [24.92446583448352, 16.951349004074313]
            • 0:24.92446583448352
            • 1:16.951349004074313
        • properties: desert
          • type:desert
          • Map:60
      • 471: Feature (Point, 2 properties)
        • type:Feature
        • id:471
        • geometry: Point (19.46, 20.60)
          • type:Point
          • coordinates: [19.4576050174939, 20.597764470625375]
            • 0:19.4576050174939
            • 1:20.597764470625375
        • properties: desert
          • type:desert
          • Map:60
      • 472: Feature (Point, 2 properties)
        • type:Feature
        • id:472
        • geometry: Point (28.90, 19.54)
          • type:Point
          • coordinates: [28.90138636475029, 19.539481271839335]
            • 0:28.90138636475029
            • 1:19.539481271839335
        • properties: desert
          • type:desert
          • Map:60
      • 473: Feature (Point, 2 properties)
        • type:Feature
        • id:473
        • geometry: Point (11.82, 19.99)
          • type:Point
          • coordinates: [11.816151857265849, 19.99092298703814]
            • 0:11.816151857265849
            • 1:19.99092298703814
        • properties: desert
          • type:desert
          • Map:60
      • 474: Feature (Point, 2 properties)
        • type:Feature
        • id:474
        • geometry: Point (23.94, 19.40)
          • type:Point
          • coordinates: [23.939417462073205, 19.399942784296076]
            • 0:23.939417462073205
            • 1:19.399942784296076
        • properties: desert
          • type:desert
          • Map:60
      • 475: Feature (Point, 2 properties)
        • type:Feature
        • id:475
        • geometry: Point (20.64, 16.85)
          • type:Point
          • coordinates: [20.641411667403684, 16.848901323289603]
            • 0:20.641411667403684
            • 1:16.848901323289603
        • properties: desert
          • type:desert
          • Map:60
      • 476: Feature (Point, 2 properties)
        • type:Feature
        • id:476
        • geometry: Point (20.02, 17.56)
          • type:Point
          • coordinates: [20.01832284556179, 17.559706461038292]
            • 0:20.01832284556179
            • 1:17.559706461038292
        • properties: desert
          • type:desert
          • Map:60
      • 477: Feature (Point, 2 properties)
        • type:Feature
        • id:477
        • geometry: Point (28.22, 20.01)
          • type:Point
          • coordinates: [28.216159607564634, 20.009235803270254]
            • 0:28.216159607564634
            • 1:20.009235803270254
        • properties: desert
          • type:desert
          • Map:60
      • 478: Feature (Point, 2 properties)
        • type:Feature
        • id:478
        • geometry: Point (24.39, 21.54)
          • type:Point
          • coordinates: [24.389980532357985, 21.54205074794339]
            • 0:24.389980532357985
            • 1:21.54205074794339
        • properties: desert
          • type:desert
          • Map:60
      • 479: Feature (Point, 2 properties)
        • type:Feature
        • id:479
        • geometry: Point (19.38, 16.52)
          • type:Point
          • coordinates: [19.379504255091774, 16.517011528480797]
            • 0:19.379504255091774
            • 1:16.517011528480797
        • properties: desert
          • type:desert
          • Map:60
      • 480: Feature (Point, 2 properties)
        • type:Feature
        • id:480
        • geometry: Point (28.24, 19.85)
          • type:Point
          • coordinates: [28.237327986237904, 19.848452104242746]
            • 0:28.237327986237904
            • 1:19.848452104242746
        • properties: desert
          • type:desert
          • Map:60
      • 481: Feature (Point, 2 properties)
        • type:Feature
        • id:481
        • geometry: Point (24.72, 17.50)
          • type:Point
          • coordinates: [24.72177200516586, 17.502696090830614]
            • 0:24.72177200516586
            • 1:17.502696090830614
        • properties: desert
          • type:desert
          • Map:60
      • 482: Feature (Point, 2 properties)
        • type:Feature
        • id:482
        • geometry: Point (14.32, 17.73)
          • type:Point
          • coordinates: [14.318311939018832, 17.73174874012343]
            • 0:14.318311939018832
            • 1:17.73174874012343
        • properties: desert
          • type:desert
          • Map:60
      • 483: Feature (Point, 2 properties)
        • type:Feature
        • id:483
        • geometry: Point (22.98, 17.77)
          • type:Point
          • coordinates: [22.984880138215523, 17.766128609863426]
            • 0:22.984880138215523
            • 1:17.766128609863426
        • properties: desert
          • type:desert
          • Map:60
      • 484: Feature (Point, 2 properties)
        • type:Feature
        • id:484
        • geometry: Point (20.60, 17.14)
          • type:Point
          • coordinates: [20.603247186642722, 17.14048710457416]
            • 0:20.603247186642722
            • 1:17.14048710457416
        • properties: desert
          • type:desert
          • Map:60
      • 485: Feature (Point, 2 properties)
        • type:Feature
        • id:485
        • geometry: Point (10.83, 19.66)
          • type:Point
          • coordinates: [10.825194930718373, 19.657713093579844]
            • 0:10.825194930718373
            • 1:19.657713093579844
        • properties: desert
          • type:desert
          • Map:60
      • 486: Feature (Point, 2 properties)
        • type:Feature
        • id:486
        • geometry: Point (18.68, 19.02)
          • type:Point
          • coordinates: [18.677404027888535, 19.017311087482717]
            • 0:18.677404027888535
            • 1:19.017311087482717
        • properties: desert
          • type:desert
          • Map:60
      • 487: Feature (Point, 2 properties)
        • type:Feature
        • id:487
        • geometry: Point (13.71, 16.77)
          • type:Point
          • coordinates: [13.713150312010379, 16.76752334385853]
            • 0:13.713150312010379
            • 1:16.76752334385853
        • properties: desert
          • type:desert
          • Map:60
      • 488: Feature (Point, 2 properties)
        • type:Feature
        • id:488
        • geometry: Point (25.57, 17.60)
          • type:Point
          • coordinates: [25.569190477948496, 17.599106758411594]
            • 0:25.569190477948496
            • 1:17.599106758411594
        • properties: desert
          • type:desert
          • Map:60
      • 489: Feature (Point, 2 properties)
        • type:Feature
        • id:489
        • geometry: Point (16.64, 18.82)
          • type:Point
          • coordinates: [16.639468059943937, 18.824575294534146]
            • 0:16.639468059943937
            • 1:18.824575294534146
        • properties: desert
          • type:desert
          • Map:60
      • 490: Feature (Point, 2 properties)
        • type:Feature
        • id:490
        • geometry: Point (15.51, 17.95)
          • type:Point
          • coordinates: [15.512547006602292, 17.95490550353522]
            • 0:15.512547006602292
            • 1:17.95490550353522
        • properties: desert
          • type:desert
          • Map:60
      • 491: Feature (Point, 2 properties)
        • type:Feature
        • id:491
        • geometry: Point (20.78, 19.53)
          • type:Point
          • coordinates: [20.783951552152626, 19.52696468950173]
            • 0:20.783951552152626
            • 1:19.52696468950173
        • properties: desert
          • type:desert
          • Map:60
      • 492: Feature (Point, 2 properties)
        • type:Feature
        • id:492
        • geometry: Point (26.23, 20.61)
          • type:Point
          • coordinates: [26.23184698150557, 20.607237631363777]
            • 0:26.23184698150557
            • 1:20.607237631363777
        • properties: desert
          • type:desert
          • Map:60
      • 493: Feature (Point, 2 properties)
        • type:Feature
        • id:493
        • geometry: Point (14.95, 17.64)
          • type:Point
          • coordinates: [14.948194231287534, 17.638875402002192]
            • 0:14.948194231287534
            • 1:17.638875402002192
        • properties: desert
          • type:desert
          • Map:60
      • 494: Feature (Point, 2 properties)
        • type:Feature
        • id:494
        • geometry: Point (21.95, 19.92)
          • type:Point
          • coordinates: [21.949153732714716, 19.923364561228272]
            • 0:21.949153732714716
            • 1:19.923364561228272
        • properties: desert
          • type:desert
          • Map:60
      • 495: Feature (Point, 2 properties)
        • type:Feature
        • id:495
        • geometry: Point (13.88, 18.43)
          • type:Point
          • coordinates: [13.877062442603274, 18.433819569432465]
            • 0:13.877062442603274
            • 1:18.433819569432465
        • properties: desert
          • type:desert
          • Map:60
      • 496: Feature (Point, 2 properties)
        • type:Feature
        • id:496
        • geometry: Point (23.49, 18.07)
          • type:Point
          • coordinates: [23.489676050856563, 18.069863371121432]
            • 0:23.489676050856563
            • 1:18.069863371121432
        • properties: desert
          • type:desert
          • Map:60
      • 497: Feature (Point, 2 properties)
        • type:Feature
        • id:497
        • geometry: Point (13.61, 20.24)
          • type:Point
          • coordinates: [13.610321956263308, 20.240476457887564]
            • 0:13.610321956263308
            • 1:20.240476457887564
        • properties: desert
          • type:desert
          • Map:60
      • 498: Feature (Point, 2 properties)
        • type:Feature
        • id:498
        • geometry: Point (28.44, 19.33)
          • type:Point
          • coordinates: [28.435425033046744, 19.325823755366695]
            • 0:28.435425033046744
            • 1:19.325823755366695
        • properties: desert
          • type:desert
          • Map:60
      • 499: Feature (Point, 2 properties)
        • type:Feature
        • id:499
        • geometry: Point (17.26, 20.49)
          • type:Point
          • coordinates: [17.255119303276835, 20.49462651492382]
            • 0:17.255119303276835
            • 1:20.49462651492382
        • properties: desert
          • type:desert
          • Map:60
      • 500: Feature (Point, 2 properties)
        • type:Feature
        • id:500
        • geometry: Point (20.29, 21.72)
          • type:Point
          • coordinates: [20.28899791883416, 21.71823817123198]
            • 0:20.28899791883416
            • 1:21.71823817123198
        • properties: desert
          • type:desert
          • Map:60
      • 501: Feature (Point, 2 properties)
        • type:Feature
        • id:501
        • geometry: Point (13.52, 17.07)
          • type:Point
          • coordinates: [13.523924320482227, 17.071321209801724]
            • 0:13.523924320482227
            • 1:17.071321209801724
        • properties: desert
          • type:desert
          • Map:60
      • 502: Feature (Point, 2 properties)
        • type:Feature
        • id:502
        • geometry: Point (16.78, 21.32)
          • type:Point
          • coordinates: [16.77573023275852, 21.319354057389177]
            • 0:16.77573023275852
            • 1:21.319354057389177
        • properties: desert
          • type:desert
          • Map:60
      • 503: Feature (Point, 2 properties)
        • type:Feature
        • id:503
        • geometry: Point (15.70, 16.62)
          • type:Point
          • coordinates: [15.6998100175337, 16.62405329239252]
            • 0:15.6998100175337
            • 1:16.62405329239252
        • properties: desert
          • type:desert
          • Map:60
      • 504: Feature (Point, 2 properties)
        • type:Feature
        • id:504
        • geometry: Point (23.22, 16.87)
          • type:Point
          • coordinates: [23.2197453906513, 16.874633745806094]
            • 0:23.2197453906513
            • 1:16.874633745806094
        • properties: desert
          • type:desert
          • Map:60
      • 505: Feature (Point, 2 properties)
        • type:Feature
        • id:505
        • geometry: Point (20.39, 21.04)
          • type:Point
          • coordinates: [20.390594536044496, 21.037992936498206]
            • 0:20.390594536044496
            • 1:21.037992936498206
        • properties: desert
          • type:desert
          • Map:60
      • 506: Feature (Point, 2 properties)
        • type:Feature
        • id:506
        • geometry: Point (16.53, 18.29)
          • type:Point
          • coordinates: [16.526839632226803, 18.289522501662148]
            • 0:16.526839632226803
            • 1:18.289522501662148
        • properties: desert
          • type:desert
          • Map:60
      • 507: Feature (Point, 2 properties)
        • type:Feature
        • id:507
        • geometry: Point (22.21, 18.00)
          • type:Point
          • coordinates: [22.205140922661034, 18.004726544468088]
            • 0:22.205140922661034
            • 1:18.004726544468088
        • properties: desert
          • type:desert
          • Map:60
      • 508: Feature (Point, 2 properties)
        • type:Feature
        • id:508
        • geometry: Point (18.63, 21.57)
          • type:Point
          • coordinates: [18.63116511734303, 21.565680477908337]
            • 0:18.63116511734303
            • 1:21.565680477908337
        • properties: desert
          • type:desert
          • Map:60
      • 509: Feature (Point, 2 properties)
        • type:Feature
        • id:509
        • geometry: Point (27.30, 18.80)
          • type:Point
          • coordinates: [27.304150678346755, 18.799226809931316]
            • 0:27.304150678346755
            • 1:18.799226809931316
        • properties: desert
          • type:desert
          • Map:60
      • 510: Feature (Point, 2 properties)
        • type:Feature
        • id:510
        • geometry: Point (12.10, 17.92)
          • type:Point
          • coordinates: [12.103648852064543, 17.92376189906456]
            • 0:12.103648852064543
            • 1:17.92376189906456
        • properties: desert
          • type:desert
          • Map:60
      • 511: Feature (Point, 2 properties)
        • type:Feature
        • id:511
        • geometry: Point (20.80, 17.29)
          • type:Point
          • coordinates: [20.797762763905098, 17.289134443134795]
            • 0:20.797762763905098
            • 1:17.289134443134795
        • properties: desert
          • type:desert
          • Map:60
      • 512: Feature (Point, 2 properties)
        • type:Feature
        • id:512
        • geometry: Point (15.20, 16.89)
          • type:Point
          • coordinates: [15.200211085643897, 16.887828033571154]
            • 0:15.200211085643897
            • 1:16.887828033571154
        • properties: desert
          • type:desert
          • Map:60
      • 513: Feature (Point, 2 properties)
        • type:Feature
        • id:513
        • geometry: Point (15.39, 20.39)
          • type:Point
          • coordinates: [15.393503318387047, 20.391391576700933]
            • 0:15.393503318387047
            • 1:20.391391576700933
        • properties: desert
          • type:desert
          • Map:60
      • 514: Feature (Point, 2 properties)
        • type:Feature
        • id:514
        • geometry: Point (26.04, 17.73)
          • type:Point
          • coordinates: [26.044217973559533, 17.73271465752773]
            • 0:26.044217973559533
            • 1:17.73271465752773
        • properties: desert
          • type:desert
          • Map:60
      • 515: Feature (Point, 2 properties)
        • type:Feature
        • id:515
        • geometry: Point (23.04, 18.13)
          • type:Point
          • coordinates: [23.043412153123985, 18.13137455424371]
            • 0:23.043412153123985
            • 1:18.13137455424371
        • properties: desert
          • type:desert
          • Map:60
      • 516: Feature (Point, 2 properties)
        • type:Feature
        • id:516
        • geometry: Point (12.84, 20.48)
          • type:Point
          • coordinates: [12.840062295194798, 20.477208662567836]
            • 0:12.840062295194798
            • 1:20.477208662567836
        • properties: desert
          • type:desert
          • Map:60
      • 517: Feature (Point, 2 properties)
        • type:Feature
        • id:517
        • geometry: Point (24.36, 18.44)
          • type:Point
          • coordinates: [24.357388283870435, 18.44384168805469]
            • 0:24.357388283870435
            • 1:18.44384168805469
        • properties: desert
          • type:desert
          • Map:60
      • 518: Feature (Point, 2 properties)
        • type:Feature
        • id:518
        • geometry: Point (20.27, 18.53)
          • type:Point
          • coordinates: [20.271090819589876, 18.53312565415488]
            • 0:20.271090819589876
            • 1:18.53312565415488
        • properties: desert
          • type:desert
          • Map:60
      • 519: Feature (Point, 2 properties)
        • type:Feature
        • id:519
        • geometry: Point (24.79, 18.16)
          • type:Point
          • coordinates: [24.788203509356432, 18.158958052135407]
            • 0:24.788203509356432
            • 1:18.158958052135407
        • properties: desert
          • type:desert
          • Map:60
      • 520: Feature (Point, 2 properties)
        • type:Feature
        • id:520
        • geometry: Point (20.76, 18.89)
          • type:Point
          • coordinates: [20.757318882419998, 18.88926271880605]
            • 0:20.757318882419998
            • 1:18.88926271880605
        • properties: desert
          • type:desert
          • Map:60
      • 521: Feature (Point, 2 properties)
        • type:Feature
        • id:521
        • geometry: Point (23.80, 20.98)
          • type:Point
          • coordinates: [23.800771137643256, 20.984916199411185]
            • 0:23.800771137643256
            • 1:20.984916199411185
        • properties: desert
          • type:desert
          • Map:60
      • 522: Feature (Point, 2 properties)
        • type:Feature
        • id:522
        • geometry: Point (18.79, 19.49)
          • type:Point
          • coordinates: [18.793603372246498, 19.486039617402735]
            • 0:18.793603372246498
            • 1:19.486039617402735
        • properties: desert
          • type:desert
          • Map:60
      • 523: Feature (Point, 2 properties)
        • type:Feature
        • id:523
        • geometry: Point (16.26, 17.67)
          • type:Point
          • coordinates: [16.25679660329114, 17.668940250775233]
            • 0:16.25679660329114
            • 1:17.668940250775233
        • properties: desert
          • type:desert
          • Map:60
      • 524: Feature (Point, 2 properties)
        • type:Feature
        • id:524
        • geometry: Point (17.95, 16.18)
          • type:Point
          • coordinates: [17.949147334409368, 16.18091634564846]
            • 0:17.949147334409368
            • 1:16.18091634564846
        • properties: desert
          • type:desert
          • Map:60
      • 525: Feature (Point, 2 properties)
        • type:Feature
        • id:525
        • geometry: Point (17.38, 18.90)
          • type:Point
          • coordinates: [17.380473693415084, 18.90342756539517]
            • 0:17.380473693415084
            • 1:18.90342756539517
        • properties: desert
          • type:desert
          • Map:60
      • 526: Feature (Point, 2 properties)
        • type:Feature
        • id:526
        • geometry: Point (22.81, 20.23)
          • type:Point
          • coordinates: [22.807964591722993, 20.22666875111912]
            • 0:22.807964591722993
            • 1:20.22666875111912
        • properties: desert
          • type:desert
          • Map:60
      • 527: Feature (Point, 2 properties)
        • type:Feature
        • id:527
        • geometry: Point (19.32, 20.58)
          • type:Point
          • coordinates: [19.322072744475523, 20.58051583113594]
            • 0:19.322072744475523
            • 1:20.58051583113594
        • properties: desert
          • type:desert
          • Map:60
      • 528: Feature (Point, 2 properties)
        • type:Feature
        • id:528
        • geometry: Point (19.37, 19.81)
          • type:Point
          • coordinates: [19.370983618435652, 19.814465362087667]
            • 0:19.370983618435652
            • 1:19.814465362087667
        • properties: desert
          • type:desert
          • Map:60
      • 529: Feature (Point, 2 properties)
        • type:Feature
        • id:529
        • geometry: Point (13.11, 18.52)
          • type:Point
          • coordinates: [13.108398517604108, 18.518457629654858]
            • 0:13.108398517604108
            • 1:18.518457629654858
        • properties: desert
          • type:desert
          • Map:60
      • 530: Feature (Point, 2 properties)
        • type:Feature
        • id:530
        • geometry: Point (13.89, 19.04)
          • type:Point
          • coordinates: [13.888288545575765, 19.043124792738496]
            • 0:13.888288545575765
            • 1:19.043124792738496
        • properties: desert
          • type:desert
          • Map:60
      • 531: Feature (Point, 2 properties)
        • type:Feature
        • id:531
        • geometry: Point (22.88, 22.27)
          • type:Point
          • coordinates: [22.883848758933347, 22.26544561638023]
            • 0:22.883848758933347
            • 1:22.26544561638023
        • properties: desert
          • type:desert
          • Map:60
      • 532: Feature (Point, 2 properties)
        • type:Feature
        • id:532
        • geometry: Point (26.95, 18.43)
          • type:Point
          • coordinates: [26.946814256104954, 18.431210275916893]
            • 0:26.946814256104954
            • 1:18.431210275916893
        • properties: desert
          • type:desert
          • Map:60
      • 533: Feature (Point, 2 properties)
        • type:Feature
        • id:533
        • geometry: Point (27.50, 18.56)
          • type:Point
          • coordinates: [27.495996596248414, 18.557044701680862]
            • 0:27.495996596248414
            • 1:18.557044701680862
        • properties: desert
          • type:desert
          • Map:60
      • 534: Feature (Point, 2 properties)
        • type:Feature
        • id:534
        • geometry: Point (13.47, 19.52)
          • type:Point
          • coordinates: [13.469472860783394, 19.522805457088133]
            • 0:13.469472860783394
            • 1:19.522805457088133
        • properties: desert
          • type:desert
          • Map:60
      • 535: Feature (Point, 2 properties)
        • type:Feature
        • id:535
        • geometry: Point (21.06, 19.71)
          • type:Point
          • coordinates: [21.06233478130644, 19.71302369798168]
            • 0:21.06233478130644
            • 1:19.71302369798168
        • properties: desert
          • type:desert
          • Map:60
      • 536: Feature (Point, 2 properties)
        • type:Feature
        • id:536
        • geometry: Point (27.43, 20.51)
          • type:Point
          • coordinates: [27.429942366758304, 20.50668902948418]
            • 0:27.429942366758304
            • 1:20.50668902948418
        • properties: desert
          • type:desert
          • Map:60
      • 537: Feature (Point, 2 properties)
        • type:Feature
        • id:537
        • geometry: Point (18.25, 15.92)
          • type:Point
          • coordinates: [18.24665504199968, 15.922810793873904]
            • 0:18.24665504199968
            • 1:15.922810793873904
        • properties: desert
          • type:desert
          • Map:60
      • 538: Feature (Point, 2 properties)
        • type:Feature
        • id:538
        • geometry: Point (25.73, 17.75)
          • type:Point
          • coordinates: [25.732986929699763, 17.752275422347424]
            • 0:25.732986929699763
            • 1:17.752275422347424
        • properties: desert
          • type:desert
          • Map:60
      • 539: Feature (Point, 2 properties)
        • type:Feature
        • id:539
        • geometry: Point (22.54, 19.27)
          • type:Point
          • coordinates: [22.540491872691426, 19.265500895804035]
            • 0:22.540491872691426
            • 1:19.265500895804035
        • properties: desert
          • type:desert
          • Map:60
      • 540: Feature (Point, 2 properties)
        • type:Feature
        • id:540
        • geometry: Point (24.15, 18.21)
          • type:Point
          • coordinates: [24.15385443525199, 18.205504689802307]
            • 0:24.15385443525199
            • 1:18.205504689802307
        • properties: desert
          • type:desert
          • Map:60
      • 541: Feature (Point, 2 properties)
        • type:Feature
        • id:541
        • geometry: Point (11.13, 18.88)
          • type:Point
          • coordinates: [11.134998587290921, 18.88243330617437]
            • 0:11.134998587290921
            • 1:18.88243330617437
        • properties: desert
          • type:desert
          • Map:60
      • 542: Feature (Point, 2 properties)
        • type:Feature
        • id:542
        • geometry: Point (27.11, 17.33)
          • type:Point
          • coordinates: [27.106018103664265, 17.325197509654906]
            • 0:27.106018103664265
            • 1:17.325197509654906
        • properties: desert
          • type:desert
          • Map:60
      • 543: Feature (Point, 2 properties)
        • type:Feature
        • id:543
        • geometry: Point (28.10, 20.35)
          • type:Point
          • coordinates: [28.104309957093182, 20.351157216055977]
            • 0:28.104309957093182
            • 1:20.351157216055977
        • properties: desert
          • type:desert
          • Map:60
      • 544: Feature (Point, 2 properties)
        • type:Feature
        • id:544
        • geometry: Point (26.39, 18.79)
          • type:Point
          • coordinates: [26.38668338036189, 18.791214682827277]
            • 0:26.38668338036189
            • 1:18.791214682827277
        • properties: desert
          • type:desert
          • Map:60
      • 545: Feature (Point, 2 properties)
        • type:Feature
        • id:545
        • geometry: Point (19.53, 17.87)
          • type:Point
          • coordinates: [19.525500086563387, 17.867059074663405]
            • 0:19.525500086563387
            • 1:17.867059074663405
        • properties: desert
          • type:desert
          • Map:60
      • 546: Feature (Point, 2 properties)
        • type:Feature
        • id:546
        • geometry: Point (20.03, 18.63)
          • type:Point
          • coordinates: [20.025172450294605, 18.629171680003168]
            • 0:20.025172450294605
            • 1:18.629171680003168
        • properties: desert
          • type:desert
          • Map:60
      • 547: Feature (Point, 2 properties)
        • type:Feature
        • id:547
        • geometry: Point (18.98, 19.78)
          • type:Point
          • coordinates: [18.975483512080736, 19.77838152427965]
            • 0:18.975483512080736
            • 1:19.77838152427965
        • properties: desert
          • type:desert
          • Map:60
      • 548: Feature (Point, 2 properties)
        • type:Feature
        • id:548
        • geometry: Point (19.80, 17.35)
          • type:Point
          • coordinates: [19.795674578832266, 17.35491736139696]
            • 0:19.795674578832266
            • 1:17.35491736139696
        • properties: desert
          • type:desert
          • Map:60
      • 549: Feature (Point, 2 properties)
        • type:Feature
        • id:549
        • geometry: Point (19.09, 18.79)
          • type:Point
          • coordinates: [19.092234562497957, 18.787881260851016]
            • 0:19.092234562497957
            • 1:18.787881260851016
        • properties: desert
          • type:desert
          • Map:60
      • 550: Feature (Point, 2 properties)
        • type:Feature
        • id:550
        • geometry: Point (13.20, 20.56)
          • type:Point
          • coordinates: [13.198843733883677, 20.56423440626686]
            • 0:13.198843733883677
            • 1:20.56423440626686
        • properties: desert
          • type:desert
          • Map:60
      • 551: Feature (Point, 2 properties)
        • type:Feature
        • id:551
        • geometry: Point (16.96, 20.44)
          • type:Point
          • coordinates: [16.955110310745145, 20.440261749114658]
            • 0:16.955110310745145
            • 1:20.440261749114658
        • properties: desert
          • type:desert
          • Map:60
      • 552: Feature (Point, 2 properties)
        • type:Feature
        • id:552
        • geometry: Point (25.47, 18.98)
          • type:Point
          • coordinates: [25.470084143859264, 18.97560333434156]
            • 0:25.470084143859264
            • 1:18.97560333434156
        • properties: desert
          • type:desert
          • Map:60
      • 553: Feature (Point, 2 properties)
        • type:Feature
        • id:553
        • geometry: Point (17.53, 21.30)
          • type:Point
          • coordinates: [17.52976561149734, 21.29772435512431]
            • 0:17.52976561149734
            • 1:21.29772435512431
        • properties: desert
          • type:desert
          • Map:60
      • 554: Feature (Point, 2 properties)
        • type:Feature
        • id:554
        • geometry: Point (22.16, 21.22)
          • type:Point
          • coordinates: [22.16394182868048, 21.224205503175252]
            • 0:22.16394182868048
            • 1:21.224205503175252
        • properties: desert
          • type:desert
          • Map:60
      • 555: Feature (Point, 2 properties)
        • type:Feature
        • id:555
        • geometry: Point (26.11, 19.14)
          • type:Point
          • coordinates: [26.11119116740203, 19.140041769766665]
            • 0:26.11119116740203
            • 1:19.140041769766665
        • properties: desert
          • type:desert
          • Map:60
      • 556: Feature (Point, 2 properties)
        • type:Feature
        • id:556
        • geometry: Point (14.97, 19.81)
          • type:Point
          • coordinates: [14.972487985872956, 19.80950182011394]
            • 0:14.972487985872956
            • 1:19.80950182011394
        • properties: desert
          • type:desert
          • Map:60
      • 557: Feature (Point, 2 properties)
        • type:Feature
        • id:557
        • geometry: Point (20.40, 19.08)
          • type:Point
          • coordinates: [20.39896769005491, 19.080042536965326]
            • 0:20.39896769005491
            • 1:19.080042536965326
        • properties: desert
          • type:desert
          • Map:60
      • 558: Feature (Point, 2 properties)
        • type:Feature
        • id:558
        • geometry: Point (21.53, 18.18)
          • type:Point
          • coordinates: [21.53144858869756, 18.180406284964132]
            • 0:21.53144858869756
            • 1:18.180406284964132
        • properties: desert
          • type:desert
          • Map:60
      • 559: Feature (Point, 2 properties)
        • type:Feature
        • id:559
        • geometry: Point (19.87, 21.02)
          • type:Point
          • coordinates: [19.873062630156383, 21.015776638006336]
            • 0:19.873062630156383
            • 1:21.015776638006336
        • properties: desert
          • type:desert
          • Map:60
      • 560: Feature (Point, 2 properties)
        • type:Feature
        • id:560
        • geometry: Point (22.85, 18.89)
          • type:Point
          • coordinates: [22.847160665206584, 18.894625735918073]
            • 0:22.847160665206584
            • 1:18.894625735918073
        • properties: desert
          • type:desert
          • Map:60
      • 561: Feature (Point, 2 properties)
        • type:Feature
        • id:561
        • geometry: Point (22.98, 18.65)
          • type:Point
          • coordinates: [22.98391944178075, 18.646194709509523]
            • 0:22.98391944178075
            • 1:18.646194709509523
        • properties: desert
          • type:desert
          • Map:60
      • 562: Feature (Point, 2 properties)
        • type:Feature
        • id:562
        • geometry: Point (16.71, 16.98)
          • type:Point
          • coordinates: [16.70535253894213, 16.983280013088603]
            • 0:16.70535253894213
            • 1:16.983280013088603
        • properties: desert
          • type:desert
          • Map:60
      • 563: Feature (Point, 2 properties)
        • type:Feature
        • id:563
        • geometry: Point (24.18, 21.47)
          • type:Point
          • coordinates: [24.177123946369107, 21.47053727541797]
            • 0:24.177123946369107
            • 1:21.47053727541797
        • properties: desert
          • type:desert
          • Map:60
      • 564: Feature (Point, 2 properties)
        • type:Feature
        • id:564
        • geometry: Point (18.16, 18.78)
          • type:Point
          • coordinates: [18.163251479368494, 18.77503145298234]
            • 0:18.163251479368494
            • 1:18.77503145298234
        • properties: desert
          • type:desert
          • Map:60
      • 565: Feature (Point, 2 properties)
        • type:Feature
        • id:565
        • geometry: Point (12.86, 20.19)
          • type:Point
          • coordinates: [12.859285236782863, 20.18673496508183]
            • 0:12.859285236782863
            • 1:20.18673496508183
        • properties: desert
          • type:desert
          • Map:60
      • 566: Feature (Point, 2 properties)
        • type:Feature
        • id:566
        • geometry: Point (23.95, 19.39)
          • type:Point
          • coordinates: [23.953830102305165, 19.392141696870876]
            • 0:23.953830102305165
            • 1:19.392141696870876
        • properties: desert
          • type:desert
          • Map:60
      • 567: Feature (Point, 2 properties)
        • type:Feature
        • id:567
        • geometry: Point (18.10, 17.28)
          • type:Point
          • coordinates: [18.100463052521025, 17.280119819511295]
            • 0:18.100463052521025
            • 1:17.280119819511295
        • properties: desert
          • type:desert
          • Map:60
      • 568: Feature (Point, 2 properties)
        • type:Feature
        • id:568
        • geometry: Point (19.86, 16.52)
          • type:Point
          • coordinates: [19.856823937935353, 16.5230820268173]
            • 0:19.856823937935353
            • 1:16.5230820268173
        • properties: desert
          • type:desert
          • Map:60
      • 569: Feature (Point, 2 properties)
        • type:Feature
        • id:569
        • geometry: Point (16.52, 21.61)
          • type:Point
          • coordinates: [16.51627021955595, 21.610355222275377]
            • 0:16.51627021955595
            • 1:21.610355222275377
        • properties: desert
          • type:desert
          • Map:60
      • 570: Feature (Point, 2 properties)
        • type:Feature
        • id:570
        • geometry: Point (21.51, 17.21)
          • type:Point
          • coordinates: [21.51424968456397, 17.21346669861627]
            • 0:21.51424968456397
            • 1:17.21346669861627
        • properties: desert
          • type:desert
          • Map:60
      • 571: Feature (Point, 2 properties)
        • type:Feature
        • id:571
        • geometry: Point (25.69, 17.76)
          • type:Point
          • coordinates: [25.692993100185, 17.76436139020662]
            • 0:25.692993100185
            • 1:17.76436139020662
        • properties: desert
          • type:desert
          • Map:60
      • 572: Feature (Point, 2 properties)
        • type:Feature
        • id:572
        • geometry: Point (15.33, 17.53)
          • type:Point
          • coordinates: [15.326271381670958, 17.533985559189183]
            • 0:15.326271381670958
            • 1:17.533985559189183
        • properties: desert
          • type:desert
          • Map:60
      • 573: Feature (Point, 2 properties)
        • type:Feature
        • id:573
        • geometry: Point (24.37, 21.34)
          • type:Point
          • coordinates: [24.370457608787834, 21.342650152008673]
            • 0:24.370457608787834
            • 1:21.342650152008673
        • properties: desert
          • type:desert
          • Map:60
      • 574: Feature (Point, 2 properties)
        • type:Feature
        • id:574
        • geometry: Point (24.87, 17.72)
          • type:Point
          • coordinates: [24.868388426824904, 17.722355283696118]
            • 0:24.868388426824904
            • 1:17.722355283696118
        • properties: desert
          • type:desert
          • Map:60
      • 575: Feature (Point, 2 properties)
        • type:Feature
        • id:575
        • geometry: Point (16.41, 18.49)
          • type:Point
          • coordinates: [16.41411354437931, 18.487981049692554]
            • 0:16.41411354437931
            • 1:18.487981049692554
        • properties: desert
          • type:desert
          • Map:60
      • 576: Feature (Point, 2 properties)
        • type:Feature
        • id:576
        • geometry: Point (18.46, 19.15)
          • type:Point
          • coordinates: [18.46179386222514, 19.145434403074216]
            • 0:18.46179386222514
            • 1:19.145434403074216
        • properties: desert
          • type:desert
          • Map:60
      • 577: Feature (Point, 2 properties)
        • type:Feature
        • id:577
        • geometry: Point (18.69, 16.31)
          • type:Point
          • coordinates: [18.691706018007658, 16.306217926354194]
            • 0:18.691706018007658
            • 1:16.306217926354194
        • properties: desert
          • type:desert
          • Map:60
      • 578: Feature (Point, 2 properties)
        • type:Feature
        • id:578
        • geometry: Point (14.92, 21.50)
          • type:Point
          • coordinates: [14.920990887661135, 21.497150970410605]
            • 0:14.920990887661135
            • 1:21.497150970410605
        • properties: desert
          • type:desert
          • Map:60
      • 579: Feature (Point, 2 properties)
        • type:Feature
        • id:579
        • geometry: Point (15.40, 20.40)
          • type:Point
          • coordinates: [15.399291306600553, 20.395304305034216]
            • 0:15.399291306600553
            • 1:20.395304305034216
        • properties: desert
          • type:desert
          • Map:60
      • 580: Feature (Point, 2 properties)
        • type:Feature
        • id:580
        • geometry: Point (21.10, 20.18)
          • type:Point
          • coordinates: [21.097133528983836, 20.184944111113897]
            • 0:21.097133528983836
            • 1:20.184944111113897
        • properties: desert
          • type:desert
          • Map:60
      • 581: Feature (Point, 2 properties)
        • type:Feature
        • id:581
        • geometry: Point (15.84, 16.19)
          • type:Point
          • coordinates: [15.841002317372698, 16.186154377921646]
            • 0:15.841002317372698
            • 1:16.186154377921646
        • properties: desert
          • type:desert
          • Map:60
      • 582: Feature (Point, 2 properties)
        • type:Feature
        • id:582
        • geometry: Point (18.50, 16.14)
          • type:Point
          • coordinates: [18.49936528954769, 16.139478147556776]
            • 0:18.49936528954769
            • 1:16.139478147556776
        • properties: desert
          • type:desert
          • Map:60
      • 583: Feature (Point, 2 properties)
        • type:Feature
        • id:583
        • geometry: Point (25.66, 19.91)
          • type:Point
          • coordinates: [25.66092291896435, 19.91321437372168]
            • 0:25.66092291896435
            • 1:19.91321437372168
        • properties: desert
          • type:desert
          • Map:60
      • 584: Feature (Point, 2 properties)
        • type:Feature
        • id:584
        • geometry: Point (27.35, 17.94)
          • type:Point
          • coordinates: [27.352518413681516, 17.93838204634977]
            • 0:27.352518413681516
            • 1:17.93838204634977
        • properties: desert
          • type:desert
          • Map:60
      • 585: Feature (Point, 2 properties)
        • type:Feature
        • id:585
        • geometry: Point (21.79, 22.10)
          • type:Point
          • coordinates: [21.788590309608345, 22.102566006720362]
            • 0:21.788590309608345
            • 1:22.102566006720362
        • properties: desert
          • type:desert
          • Map:60
      • 586: Feature (Point, 2 properties)
        • type:Feature
        • id:586
        • geometry: Point (17.71, 19.97)
          • type:Point
          • coordinates: [17.70549250273413, 19.967898904056334]
            • 0:17.70549250273413
            • 1:19.967898904056334
        • properties: desert
          • type:desert
          • Map:60
      • 587: Feature (Point, 2 properties)
        • type:Feature
        • id:587
        • geometry: Point (20.19, 20.09)
          • type:Point
          • coordinates: [20.19419301266412, 20.08507377973921]
            • 0:20.19419301266412
            • 1:20.08507377973921
        • properties: desert
          • type:desert
          • Map:60
      • 588: Feature (Point, 2 properties)
        • type:Feature
        • id:588
        • geometry: Point (18.59, 17.51)
          • type:Point
          • coordinates: [18.590452502990825, 17.511413217572255]
            • 0:18.590452502990825
            • 1:17.511413217572255
        • properties: desert
          • type:desert
          • Map:60
      • 589: Feature (Point, 2 properties)
        • type:Feature
        • id:589
        • geometry: Point (22.78, 19.04)
          • type:Point
          • coordinates: [22.77706386936825, 19.037089750236525]
            • 0:22.77706386936825
            • 1:19.037089750236525
        • properties: desert
          • type:desert
          • Map:60
      • 590: Feature (Point, 2 properties)
        • type:Feature
        • id:590
        • geometry: Point (23.32, 16.96)
          • type:Point
          • coordinates: [23.315961860144593, 16.956791253934377]
            • 0:23.315961860144593
            • 1:16.956791253934377
        • properties: desert
          • type:desert
          • Map:60
      • 591: Feature (Point, 2 properties)
        • type:Feature
        • id:591
        • geometry: Point (16.91, 19.04)
          • type:Point
          • coordinates: [16.91435374453596, 19.037504745501018]
            • 0:16.91435374453596
            • 1:19.037504745501018
        • properties: desert
          • type:desert
          • Map:60
      • 592: Feature (Point, 2 properties)
        • type:Feature
        • id:592
        • geometry: Point (13.76, 18.61)
          • type:Point
          • coordinates: [13.762800756969046, 18.60899827793226]
            • 0:13.762800756969046
            • 1:18.60899827793226
        • properties: desert
          • type:desert
          • Map:60
      • 593: Feature (Point, 2 properties)
        • type:Feature
        • id:593
        • geometry: Point (22.63, 19.74)
          • type:Point
          • coordinates: [22.63330072554359, 19.736960801975883]
            • 0:22.63330072554359
            • 1:19.736960801975883
        • properties: desert
          • type:desert
          • Map:60
      • 594: Feature (Point, 2 properties)
        • type:Feature
        • id:594
        • geometry: Point (18.60, 17.68)
          • type:Point
          • coordinates: [18.59614609704496, 17.67804372402595]
            • 0:18.59614609704496
            • 1:17.67804372402595
        • properties: desert
          • type:desert
          • Map:60
      • 595: Feature (Point, 2 properties)
        • type:Feature
        • id:595
        • geometry: Point (19.16, 16.79)
          • type:Point
          • coordinates: [19.163382807170784, 16.79250876844316]
            • 0:19.163382807170784
            • 1:16.79250876844316
        • properties: desert
          • type:desert
          • Map:60
      • 596: Feature (Point, 2 properties)
        • type:Feature
        • id:596
        • geometry: Point (18.30, 19.18)
          • type:Point
          • coordinates: [18.29690420313588, 19.181755015923823]
            • 0:18.29690420313588
            • 1:19.181755015923823
        • properties: desert
          • type:desert
          • Map:60
      • 597: Feature (Point, 2 properties)
        • type:Feature
        • id:597
        • geometry: Point (11.60, 19.57)
          • type:Point
          • coordinates: [11.597314118184194, 19.568298725074744]
            • 0:11.597314118184194
            • 1:19.568298725074744
        • properties: desert
          • type:desert
          • Map:60
      • 598: Feature (Point, 2 properties)
        • type:Feature
        • id:598
        • geometry: Point (13.68, 18.53)
          • type:Point
          • coordinates: [13.676837021792027, 18.529197994266713]
            • 0:13.676837021792027
            • 1:18.529197994266713
        • properties: desert
          • type:desert
          • Map:60
      • 599: Feature (Point, 2 properties)
        • type:Feature
        • id:599
        • geometry: Point (14.31, 19.88)
          • type:Point
          • coordinates: [14.314455984918888, 19.880799259383558]
            • 0:14.314455984918888
            • 1:19.880799259383558
        • properties: desert
          • type:desert
          • Map:60
      • 600: Feature (Point, 2 properties)
        • type:Feature
        • id:600
        • geometry: Point (26.15, 21.18)
          • type:Point
          • coordinates: [26.153819950695425, 21.181572593758865]
            • 0:26.153819950695425
            • 1:21.181572593758865
        • properties: desert
          • type:desert
          • Map:60
      • 601: Feature (Point, 2 properties)
        • type:Feature
        • id:601
        • geometry: Point (24.18, 18.81)
          • type:Point
          • coordinates: [24.183711377558943, 18.80914944833803]
            • 0:24.183711377558943
            • 1:18.80914944833803
        • properties: desert
          • type:desert
          • Map:60
      • 602: Feature (Point, 2 properties)
        • type:Feature
        • id:602
        • geometry: Point (27.35, 17.78)
          • type:Point
          • coordinates: [27.34672989334904, 17.77750663528832]
            • 0:27.34672989334904
            • 1:17.77750663528832
        • properties: desert
          • type:desert
          • Map:60
      • 603: Feature (Point, 2 properties)
        • type:Feature
        • id:603
        • geometry: Point (23.79, 20.93)
          • type:Point
          • coordinates: [23.789374559739034, 20.930463616678466]
            • 0:23.789374559739034
            • 1:20.930463616678466
        • properties: desert
          • type:desert
          • Map:60
      • 604: Feature (Point, 2 properties)
        • type:Feature
        • id:604
        • geometry: Point (18.28, 17.72)
          • type:Point
          • coordinates: [18.281164671406497, 17.71505473125013]
            • 0:18.281164671406497
            • 1:17.71505473125013
        • properties: desert
          • type:desert
          • Map:60
      • 605: Feature (Point, 2 properties)
        • type:Feature
        • id:605
        • geometry: Point (24.97, 16.92)
          • type:Point
          • coordinates: [24.968094404904722, 16.92488320595109]
            • 0:24.968094404904722
            • 1:16.92488320595109
        • properties: desert
          • type:desert
          • Map:60
      • 606: Feature (Point, 2 properties)
        • type:Feature
        • id:606
        • geometry: Point (15.79, 16.48)
          • type:Point
          • coordinates: [15.793828104322003, 16.4779195157542]
            • 0:15.793828104322003
            • 1:16.4779195157542
        • properties: desert
          • type:desert
          • Map:60
      • 607: Feature (Point, 2 properties)
        • type:Feature
        • id:607
        • geometry: Point (18.04, 21.55)
          • type:Point
          • coordinates: [18.03761600914316, 21.553920629285336]
            • 0:18.03761600914316
            • 1:21.553920629285336
        • properties: desert
          • type:desert
          • Map:60
      • 608: Feature (Point, 2 properties)
        • type:Feature
        • id:608
        • geometry: Point (25.17, 22.07)
          • type:Point
          • coordinates: [25.167302162472794, 22.070667105775264]
            • 0:25.167302162472794
            • 1:22.070667105775264
        • properties: desert
          • type:desert
          • Map:60
      • 609: Feature (Point, 2 properties)
        • type:Feature
        • id:609
        • geometry: Point (26.00, 18.11)
          • type:Point
          • coordinates: [26.001100020762774, 18.106905121424884]
            • 0:26.001100020762774
            • 1:18.106905121424884
        • properties: desert
          • type:desert
          • Map:60
      • 610: Feature (Point, 2 properties)
        • type:Feature
        • id:610
        • geometry: Point (21.61, 16.86)
          • type:Point
          • coordinates: [21.613708645486803, 16.855175137182076]
            • 0:21.613708645486803
            • 1:16.855175137182076
        • properties: desert
          • type:desert
          • Map:60
      • 611: Feature (Point, 2 properties)
        • type:Feature
        • id:611
        • geometry: Point (26.68, 21.72)
          • type:Point
          • coordinates: [26.681828251113703, 21.72311001534996]
            • 0:26.681828251113703
            • 1:21.72311001534996
        • properties: desert
          • type:desert
          • Map:60
      • 612: Feature (Point, 2 properties)
        • type:Feature
        • id:612
        • geometry: Point (14.47, 16.84)
          • type:Point
          • coordinates: [14.468466463989355, 16.842272889586226]
            • 0:14.468466463989355
            • 1:16.842272889586226
        • properties: desert
          • type:desert
          • Map:60
      • 613: Feature (Point, 2 properties)
        • type:Feature
        • id:613
        • geometry: Point (17.15, 21.53)
          • type:Point
          • coordinates: [17.150346289787013, 21.526158797629467]
            • 0:17.150346289787013
            • 1:21.526158797629467
        • properties: desert
          • type:desert
          • Map:60
      • 614: Feature (Point, 2 properties)
        • type:Feature
        • id:614
        • geometry: Point (16.25, 18.98)
          • type:Point
          • coordinates: [16.254519229102616, 18.979569560922116]
            • 0:16.254519229102616
            • 1:18.979569560922116
        • properties: desert
          • type:desert
          • Map:60
      • 615: Feature (Point, 2 properties)
        • type:Feature
        • id:615
        • geometry: Point (14.96, 20.79)
          • type:Point
          • coordinates: [14.961193668928376, 20.79376824484576]
            • 0:14.961193668928376
            • 1:20.79376824484576
        • properties: desert
          • type:desert
          • Map:60
      • 616: Feature (Point, 2 properties)
        • type:Feature
        • id:616
        • geometry: Point (23.49, 19.42)
          • type:Point
          • coordinates: [23.48539676260113, 19.423143009966015]
            • 0:23.48539676260113
            • 1:19.423143009966015
        • properties: desert
          • type:desert
          • Map:60
      • 617: Feature (Point, 2 properties)
        • type:Feature
        • id:617
        • geometry: Point (16.10, 19.89)
          • type:Point
          • coordinates: [16.09768559189588, 19.889226022460143]
            • 0:16.09768559189588
            • 1:19.889226022460143
        • properties: desert
          • type:desert
          • Map:60
      • 618: Feature (Point, 2 properties)
        • type:Feature
        • id:618
        • geometry: Point (26.13, 21.46)
          • type:Point
          • coordinates: [26.13026478328821, 21.46230517524656]
            • 0:26.13026478328821
            • 1:21.46230517524656
        • properties: desert
          • type:desert
          • Map:60
      • 619: Feature (Point, 2 properties)
        • type:Feature
        • id:619
        • geometry: Point (12.25, 19.71)
          • type:Point
          • coordinates: [12.250941384393728, 19.708402537898014]
            • 0:12.250941384393728
            • 1:19.708402537898014
        • properties: desert
          • type:desert
          • Map:60
      • 620: Feature (Point, 2 properties)
        • type:Feature
        • id:620
        • geometry: Point (14.14, 16.95)
          • type:Point
          • coordinates: [14.136843055646642, 16.949841294738622]
            • 0:14.136843055646642
            • 1:16.949841294738622
        • properties: desert
          • type:desert
          • Map:60
      • 621: Feature (Point, 2 properties)
        • type:Feature
        • id:621
        • geometry: Point (20.04, 18.51)
          • type:Point
          • coordinates: [20.037572235958912, 18.511080486589332]
            • 0:20.037572235958912
            • 1:18.511080486589332
        • properties: desert
          • type:desert
          • Map:60
      • 622: Feature (Point, 2 properties)
        • type:Feature
        • id:622
        • geometry: Point (28.67, 18.69)
          • type:Point
          • coordinates: [28.665349191413615, 18.686685013490486]
            • 0:28.665349191413615
            • 1:18.686685013490486
        • properties: desert
          • type:desert
          • Map:60
      • 623: Feature (Point, 2 properties)
        • type:Feature
        • id:623
        • geometry: Point (13.73, 17.72)
          • type:Point
          • coordinates: [13.733558470064429, 17.720436488947055]
            • 0:13.733558470064429
            • 1:17.720436488947055
        • properties: desert
          • type:desert
          • Map:60
      • 624: Feature (Point, 2 properties)
        • type:Feature
        • id:624
        • geometry: Point (18.52, 19.64)
          • type:Point
          • coordinates: [18.52028328462459, 19.640357037351272]
            • 0:18.52028328462459
            • 1:19.640357037351272
        • properties: desert
          • type:desert
          • Map:60
      • 625: Feature (Point, 2 properties)
        • type:Feature
        • id:625
        • geometry: Point (21.28, 17.75)
          • type:Point
          • coordinates: [21.27912299025973, 17.75363145692587]
            • 0:21.27912299025973
            • 1:17.75363145692587
        • properties: desert
          • type:desert
          • Map:60
      • 626: Feature (Point, 2 properties)
        • type:Feature
        • id:626
        • geometry: Point (11.64, 18.89)
          • type:Point
          • coordinates: [11.639724119296645, 18.8865429780087]
            • 0:11.639724119296645
            • 1:18.8865429780087
        • properties: desert
          • type:desert
          • Map:60
      • 627: Feature (Point, 2 properties)
        • type:Feature
        • id:627
        • geometry: Point (20.19, 20.55)
          • type:Point
          • coordinates: [20.194828210823925, 20.553435065842795]
            • 0:20.194828210823925
            • 1:20.553435065842795
        • properties: desert
          • type:desert
          • Map:60
      • 628: Feature (Point, 2 properties)
        • type:Feature
        • id:628
        • geometry: Point (19.73, 21.83)
          • type:Point
          • coordinates: [19.72506338911822, 21.830022781680665]
            • 0:19.72506338911822
            • 1:21.830022781680665
        • properties: desert
          • type:desert
          • Map:60
      • 629: Feature (Point, 2 properties)
        • type:Feature
        • id:629
        • geometry: Point (25.00, 19.32)
          • type:Point
          • coordinates: [25.000591187545957, 19.324735568665865]
            • 0:25.000591187545957
            • 1:19.324735568665865
        • properties: desert
          • type:desert
          • Map:60
      • 630: Feature (Point, 2 properties)
        • type:Feature
        • id:630
        • geometry: Point (15.99, 20.25)
          • type:Point
          • coordinates: [15.99381752024097, 20.254827170748023]
            • 0:15.99381752024097
            • 1:20.254827170748023
        • properties: desert
          • type:desert
          • Map:60
      • 631: Feature (Point, 2 properties)
        • type:Feature
        • id:631
        • geometry: Point (24.48, 17.10)
          • type:Point
          • coordinates: [24.475399075439118, 17.101859951102327]
            • 0:24.475399075439118
            • 1:17.101859951102327
        • properties: desert
          • type:desert
          • Map:60
      • 632: Feature (Point, 2 properties)
        • type:Feature
        • id:632
        • geometry: Point (13.09, 17.96)
          • type:Point
          • coordinates: [13.088518682828523, 17.960243087790356]
            • 0:13.088518682828523
            • 1:17.960243087790356
        • properties: desert
          • type:desert
          • Map:60
      • 633: Feature (Point, 2 properties)
        • type:Feature
        • id:633
        • geometry: Point (28.24, 17.23)
          • type:Point
          • coordinates: [28.244136310450326, 17.226885466109096]
            • 0:28.244136310450326
            • 1:17.226885466109096
        • properties: desert
          • type:desert
          • Map:60
      • 634: Feature (Point, 2 properties)
        • type:Feature
        • id:634
        • geometry: Point (14.55, 19.79)
          • type:Point
          • coordinates: [14.54841678327449, 19.791628075172003]
            • 0:14.54841678327449
            • 1:19.791628075172003
        • properties: desert
          • type:desert
          • Map:60
      • 635: Feature (Point, 2 properties)
        • type:Feature
        • id:635
        • geometry: Point (15.32, 20.95)
          • type:Point
          • coordinates: [15.318315860738004, 20.948676928647348]
            • 0:15.318315860738004
            • 1:20.948676928647348
        • properties: desert
          • type:desert
          • Map:60
      • 636: Feature (Point, 2 properties)
        • type:Feature
        • id:636
        • geometry: Point (17.74, 21.20)
          • type:Point
          • coordinates: [17.739425436798637, 21.20009568555159]
            • 0:17.739425436798637
            • 1:21.20009568555159
        • properties: desert
          • type:desert
          • Map:60
      • 637: Feature (Point, 2 properties)
        • type:Feature
        • id:637
        • geometry: Point (23.11, 20.53)
          • type:Point
          • coordinates: [23.109825996366283, 20.525071975399506]
            • 0:23.109825996366283
            • 1:20.525071975399506
        • properties: desert
          • type:desert
          • Map:60
      • 638: Feature (Point, 2 properties)
        • type:Feature
        • id:638
        • geometry: Point (23.36, 16.89)
          • type:Point
          • coordinates: [23.36290963425328, 16.889916613857892]
            • 0:23.36290963425328
            • 1:16.889916613857892
        • properties: desert
          • type:desert
          • Map:60
      • 639: Feature (Point, 2 properties)
        • type:Feature
        • id:639
        • geometry: Point (19.62, 21.39)
          • type:Point
          • coordinates: [19.615661717556858, 21.389624391481448]
            • 0:19.615661717556858
            • 1:21.389624391481448
        • properties: desert
          • type:desert
          • Map:60
      • 640: Feature (Point, 2 properties)
        • type:Feature
        • id:640
        • geometry: Point (26.19, 16.89)
          • type:Point
          • coordinates: [26.185449714360256, 16.890852695861895]
            • 0:26.185449714360256
            • 1:16.890852695861895
        • properties: desert
          • type:desert
          • Map:60
      • 641: Feature (Point, 2 properties)
        • type:Feature
        • id:641
        • geometry: Point (19.91, 17.38)
          • type:Point
          • coordinates: [19.907434702127524, 17.379889125654817]
            • 0:19.907434702127524
            • 1:17.379889125654817
        • properties: desert
          • type:desert
          • Map:60
      • 642: Feature (Point, 2 properties)
        • type:Feature
        • id:642
        • geometry: Point (21.81, 20.83)
          • type:Point
          • coordinates: [21.80935018892114, 20.82834170163906]
            • 0:21.80935018892114
            • 1:20.82834170163906
        • properties: desert
          • type:desert
          • Map:60
      • 643: Feature (Point, 2 properties)
        • type:Feature
        • id:643
        • geometry: Point (21.20, 17.06)
          • type:Point
          • coordinates: [21.199303368764976, 17.06128177333789]
            • 0:21.199303368764976
            • 1:17.06128177333789
        • properties: desert
          • type:desert
          • Map:60
      • 644: Feature (Point, 2 properties)
        • type:Feature
        • id:644
        • geometry: Point (15.74, 18.89)
          • type:Point
          • coordinates: [15.739946803051394, 18.889046080437797]
            • 0:15.739946803051394
            • 1:18.889046080437797
        • properties: desert
          • type:desert
          • Map:60
      • 645: Feature (Point, 2 properties)
        • type:Feature
        • id:645
        • geometry: Point (26.87, 20.63)
          • type:Point
          • coordinates: [26.867996488869284, 20.628628112653544]
            • 0:26.867996488869284
            • 1:20.628628112653544
        • properties: desert
          • type:desert
          • Map:60
      • 646: Feature (Point, 2 properties)
        • type:Feature
        • id:646
        • geometry: Point (13.89, 17.57)
          • type:Point
          • coordinates: [13.888349263283473, 17.56898803599673]
            • 0:13.888349263283473
            • 1:17.56898803599673
        • properties: desert
          • type:desert
          • Map:60
      • 647: Feature (Point, 2 properties)
        • type:Feature
        • id:647
        • geometry: Point (20.10, 20.74)
          • type:Point
          • coordinates: [20.102561942954498, 20.738089499629233]
            • 0:20.102561942954498
            • 1:20.738089499629233
        • properties: desert
          • type:desert
          • Map:60
      • 648: Feature (Point, 2 properties)
        • type:Feature
        • id:648
        • geometry: Point (25.51, 19.77)
          • type:Point
          • coordinates: [25.511312519782564, 19.772290939951088]
            • 0:25.511312519782564
            • 1:19.772290939951088
        • properties: desert
          • type:desert
          • Map:60
      • 649: Feature (Point, 2 properties)
        • type:Feature
        • id:649
        • geometry: Point (13.06, 18.78)
          • type:Point
          • coordinates: [13.060962993252414, 18.778757746476526]
            • 0:13.060962993252414
            • 1:18.778757746476526
        • properties: desert
          • type:desert
          • Map:60
      • 650: Feature (Point, 2 properties)
        • type:Feature
        • id:650
        • geometry: Point (16.68, 18.34)
          • type:Point
          • coordinates: [16.68222849014972, 18.33676252925158]
            • 0:16.68222849014972
            • 1:18.33676252925158
        • properties: desert
          • type:desert
          • Map:60
      • 651: Feature (Point, 2 properties)
        • type:Feature
        • id:651
        • geometry: Point (16.96, 15.88)
          • type:Point
          • coordinates: [16.95812056244104, 15.88335568799975]
            • 0:16.95812056244104
            • 1:15.88335568799975
        • properties: desert
          • type:desert
          • Map:60
      • 652: Feature (Point, 2 properties)
        • type:Feature
        • id:652
        • geometry: Point (20.28, 16.70)
          • type:Point
          • coordinates: [20.284545899366954, 16.695600349319637]
            • 0:20.284545899366954
            • 1:16.695600349319637
        • properties: desert
          • type:desert
          • Map:60
      • 653: Feature (Point, 2 properties)
        • type:Feature
        • id:653
        • geometry: Point (20.42, 20.62)
          • type:Point
          • coordinates: [20.418614454059156, 20.6199671562683]
            • 0:20.418614454059156
            • 1:20.6199671562683
        • properties: desert
          • type:desert
          • Map:60
      • 654: Feature (Point, 2 properties)
        • type:Feature
        • id:654
        • geometry: Point (19.23, 16.84)
          • type:Point
          • coordinates: [19.228508985807018, 16.836854791541864]
            • 0:19.228508985807018
            • 1:16.836854791541864
        • properties: desert
          • type:desert
          • Map:60
      • 655: Feature (Point, 2 properties)
        • type:Feature
        • id:655
        • geometry: Point (22.29, 18.56)
          • type:Point
          • coordinates: [22.293571271312935, 18.558684100541406]
            • 0:22.293571271312935
            • 1:18.558684100541406
        • properties: desert
          • type:desert
          • Map:60
      • 656: Feature (Point, 2 properties)
        • type:Feature
        • id:656
        • geometry: Point (14.07, 16.91)
          • type:Point
          • coordinates: [14.06562212781488, 16.907329934825306]
            • 0:14.06562212781488
            • 1:16.907329934825306
        • properties: desert
          • type:desert
          • Map:60
      • 657: Feature (Point, 2 properties)
        • type:Feature
        • id:657
        • geometry: Point (16.88, 21.51)
          • type:Point
          • coordinates: [16.880540029481203, 21.50828849101846]
            • 0:16.880540029481203
            • 1:21.50828849101846
        • properties: desert
          • type:desert
          • Map:60
      • 658: Feature (Point, 2 properties)
        • type:Feature
        • id:658
        • geometry: Point (19.21, 17.51)
          • type:Point
          • coordinates: [19.208732796079737, 17.51365360264232]
            • 0:19.208732796079737
            • 1:17.51365360264232
        • properties: desert
          • type:desert
          • Map:60
      • 659: Feature (Point, 2 properties)
        • type:Feature
        • id:659
        • geometry: Point (17.76, 16.81)
          • type:Point
          • coordinates: [17.759857369571073, 16.814469778797896]
            • 0:17.759857369571073
            • 1:16.814469778797896
        • properties: desert
          • type:desert
          • Map:60
      • 660: Feature (Point, 2 properties)
        • type:Feature
        • id:660
        • geometry: Point (29.68, 17.24)
          • type:Point
          • coordinates: [29.683190188455974, 17.237319601569236]
            • 0:29.683190188455974
            • 1:17.237319601569236
        • properties: desert
          • type:desert
          • Map:60
      • 661: Feature (Point, 2 properties)
        • type:Feature
        • id:661
        • geometry: Point (17.70, 16.29)
          • type:Point
          • coordinates: [17.697387807969395, 16.29290509887929]
            • 0:17.697387807969395
            • 1:16.29290509887929
        • properties: desert
          • type:desert
          • Map:60
      • 662: Feature (Point, 2 properties)
        • type:Feature
        • id:662
        • geometry: Point (15.33, 17.88)
          • type:Point
          • coordinates: [15.33067562950158, 17.87970292534764]
            • 0:15.33067562950158
            • 1:17.87970292534764
        • properties: desert
          • type:desert
          • Map:60
      • 663: Feature (Point, 2 properties)
        • type:Feature
        • id:663
        • geometry: Point (24.60, 20.74)
          • type:Point
          • coordinates: [24.595644878420696, 20.739044342868674]
            • 0:24.595644878420696
            • 1:20.739044342868674
        • properties: desert
          • type:desert
          • Map:60
      • 664: Feature (Point, 2 properties)
        • type:Feature
        • id:664
        • geometry: Point (19.21, 18.91)
          • type:Point
          • coordinates: [19.214322904402017, 18.908673581204187]
            • 0:19.214322904402017
            • 1:18.908673581204187
        • properties: desert
          • type:desert
          • Map:60
      • 665: Feature (Point, 2 properties)
        • type:Feature
        • id:665
        • geometry: Point (25.40, 20.40)
          • type:Point
          • coordinates: [25.39560616052344, 20.40446406986625]
            • 0:25.39560616052344
            • 1:20.40446406986625
        • properties: desert
          • type:desert
          • Map:60
      • 666: Feature (Point, 2 properties)
        • type:Feature
        • id:666
        • geometry: Point (22.00, 19.50)
          • type:Point
          • coordinates: [22.00160806453276, 19.503052553987747]
            • 0:22.00160806453276
            • 1:19.503052553987747
        • properties: desert
          • type:desert
          • Map:60
      • 667: Feature (Point, 2 properties)
        • type:Feature
        • id:667
        • geometry: Point (24.37, 22.20)
          • type:Point
          • coordinates: [24.369489876963115, 22.19772269768908]
            • 0:24.369489876963115
            • 1:22.19772269768908
        • properties: desert
          • type:desert
          • Map:60
      • 668: Feature (Point, 2 properties)
        • type:Feature
        • id:668
        • geometry: Point (17.30, 20.93)
          • type:Point
          • coordinates: [17.30016171974072, 20.93010420017129]
            • 0:17.30016171974072
            • 1:20.93010420017129
        • properties: desert
          • type:desert
          • Map:60
      • 669: Feature (Point, 2 properties)
        • type:Feature
        • id:669
        • geometry: Point (22.14, 21.71)
          • type:Point
          • coordinates: [22.138752949833805, 21.705833281425118]
            • 0:22.138752949833805
            • 1:21.705833281425118
        • properties: desert
          • type:desert
          • Map:60
      • 670: Feature (Point, 2 properties)
        • type:Feature
        • id:670
        • geometry: Point (18.53, 18.49)
          • type:Point
          • coordinates: [18.534635953787006, 18.48878556155466]
            • 0:18.534635953787006
            • 1:18.48878556155466
        • properties: desert
          • type:desert
          • Map:60
      • 671: Feature (Point, 2 properties)
        • type:Feature
        • id:671
        • geometry: Point (25.10, 22.46)
          • type:Point
          • coordinates: [25.09997444887392, 22.45789909561345]
            • 0:25.09997444887392
            • 1:22.45789909561345
        • properties: desert
          • type:desert
          • Map:60
      • 672: Feature (Point, 2 properties)
        • type:Feature
        • id:672
        • geometry: Point (23.74, 17.16)
          • type:Point
          • coordinates: [23.737903062296223, 17.160758521632278]
            • 0:23.737903062296223
            • 1:17.160758521632278
        • properties: desert
          • type:desert
          • Map:60
      • 673: Feature (Point, 2 properties)
        • type:Feature
        • id:673
        • geometry: Point (15.37, 21.41)
          • type:Point
          • coordinates: [15.369695679539198, 21.410164126011615]
            • 0:15.369695679539198
            • 1:21.410164126011615
        • properties: desert
          • type:desert
          • Map:60
      • 674: Feature (Point, 2 properties)
        • type:Feature
        • id:674
        • geometry: Point (20.88, 16.90)
          • type:Point
          • coordinates: [20.87890850256738, 16.89726787464777]
            • 0:20.87890850256738
            • 1:16.89726787464777
        • properties: desert
          • type:desert
          • Map:60
      • 675: Feature (Point, 2 properties)
        • type:Feature
        • id:675
        • geometry: Point (21.33, 20.50)
          • type:Point
          • coordinates: [21.32650226271877, 20.50076207050786]
            • 0:21.32650226271877
            • 1:20.50076207050786
        • properties: desert
          • type:desert
          • Map:60
      • 676: Feature (Point, 2 properties)
        • type:Feature
        • id:676
        • geometry: Point (23.08, 22.16)
          • type:Point
          • coordinates: [23.079997885041294, 22.158275341633477]
            • 0:23.079997885041294
            • 1:22.158275341633477
        • properties: desert
          • type:desert
          • Map:60
      • 677: Feature (Point, 2 properties)
        • type:Feature
        • id:677
        • geometry: Point (14.11, 20.80)
          • type:Point
          • coordinates: [14.11150115450709, 20.803802295612762]
            • 0:14.11150115450709
            • 1:20.803802295612762
        • properties: desert
          • type:desert
          • Map:60
      • 678: Feature (Point, 2 properties)
        • type:Feature
        • id:678
        • geometry: Point (26.61, 20.49)
          • type:Point
          • coordinates: [26.608855013097244, 20.4903406447601]
            • 0:26.608855013097244
            • 1:20.4903406447601
        • properties: desert
          • type:desert
          • Map:60
      • 679: Feature (Point, 2 properties)
        • type:Feature
        • id:679
        • geometry: Point (25.69, 19.76)
          • type:Point
          • coordinates: [25.685386076098098, 19.762359857860364]
            • 0:25.685386076098098
            • 1:19.762359857860364
        • properties: desert
          • type:desert
          • Map:60
      • 680: Feature (Point, 2 properties)
        • type:Feature
        • id:680
        • geometry: Point (15.82, 18.05)
          • type:Point
          • coordinates: [15.819393117451119, 18.046522007465022]
            • 0:15.819393117451119
            • 1:18.046522007465022
        • properties: desert
          • type:desert
          • Map:60
      • 681: Feature (Point, 2 properties)
        • type:Feature
        • id:681
        • geometry: Point (27.32, 17.51)
          • type:Point
          • coordinates: [27.324532127693534, 17.510620238991056]
            • 0:27.324532127693534
            • 1:17.510620238991056
        • properties: desert
          • type:desert
          • Map:60
      • 682: Feature (Point, 2 properties)
        • type:Feature
        • id:682
        • geometry: Point (22.84, 21.64)
          • type:Point
          • coordinates: [22.83604281754195, 21.64085277548637]
            • 0:22.83604281754195
            • 1:21.64085277548637
        • properties: desert
          • type:desert
          • Map:60
      • 683: Feature (Point, 2 properties)
        • type:Feature
        • id:683
        • geometry: Point (19.25, 17.33)
          • type:Point
          • coordinates: [19.247087521769988, 17.32713724417031]
            • 0:19.247087521769988
            • 1:17.32713724417031
        • properties: desert
          • type:desert
          • Map:60
      • 684: Feature (Point, 2 properties)
        • type:Feature
        • id:684
        • geometry: Point (26.52, 19.94)
          • type:Point
          • coordinates: [26.52027805896834, 19.942232993602683]
            • 0:26.52027805896834
            • 1:19.942232993602683
        • properties: desert
          • type:desert
          • Map:60
      • 685: Feature (Point, 2 properties)
        • type:Feature
        • id:685
        • geometry: Point (16.56, 18.36)
          • type:Point
          • coordinates: [16.557780105467426, 18.361353021474855]
            • 0:16.557780105467426
            • 1:18.361353021474855
        • properties: desert
          • type:desert
          • Map:60
      • 686: Feature (Point, 2 properties)
        • type:Feature
        • id:686
        • geometry: Point (21.02, 17.62)
          • type:Point
          • coordinates: [21.01587359872275, 17.616314718678776]
            • 0:21.01587359872275
            • 1:17.616314718678776
        • properties: desert
          • type:desert
          • Map:60
      • 687: Feature (Point, 2 properties)
        • type:Feature
        • id:687
        • geometry: Point (22.65, 18.86)
          • type:Point
          • coordinates: [22.64930277932716, 18.861494627782392]
            • 0:22.64930277932716
            • 1:18.861494627782392
        • properties: desert
          • type:desert
          • Map:60
      • 688: Feature (Point, 2 properties)
        • type:Feature
        • id:688
        • geometry: Point (18.33, 19.61)
          • type:Point
          • coordinates: [18.329131783620355, 19.612647732259898]
            • 0:18.329131783620355
            • 1:19.612647732259898
        • properties: desert
          • type:desert
          • Map:60
      • 689: Feature (Point, 2 properties)
        • type:Feature
        • id:689
        • geometry: Point (14.48, 20.15)
          • type:Point
          • coordinates: [14.478527767002776, 20.146718875644115]
            • 0:14.478527767002776
            • 1:20.146718875644115
        • properties: desert
          • type:desert
          • Map:60
      • 690: Feature (Point, 2 properties)
        • type:Feature
        • id:690
        • geometry: Point (16.04, 16.48)
          • type:Point
          • coordinates: [16.040341956157135, 16.484847487360245]
            • 0:16.040341956157135
            • 1:16.484847487360245
        • properties: desert
          • type:desert
          • Map:60
      • 691: Feature (Point, 2 properties)
        • type:Feature
        • id:691
        • geometry: Point (24.14, 21.60)
          • type:Point
          • coordinates: [24.138151313378792, 21.6037859664789]
            • 0:24.138151313378792
            • 1:21.6037859664789
        • properties: desert
          • type:desert
          • Map:60
      • 692: Feature (Point, 2 properties)
        • type:Feature
        • id:692
        • geometry: Point (19.38, 18.88)
          • type:Point
          • coordinates: [19.3773919505849, 18.87619390093444]
            • 0:19.3773919505849
            • 1:18.87619390093444
        • properties: desert
          • type:desert
          • Map:60
      • 693: Feature (Point, 2 properties)
        • type:Feature
        • id:693
        • geometry: Point (11.44, 18.28)
          • type:Point
          • coordinates: [11.43830169289743, 18.277949603012388]
            • 0:11.43830169289743
            • 1:18.277949603012388
        • properties: desert
          • type:desert
          • Map:60
      • 694: Feature (Point, 2 properties)
        • type:Feature
        • id:694
        • geometry: Point (13.53, 21.14)
          • type:Point
          • coordinates: [13.528127625735648, 21.143116446615487]
            • 0:13.528127625735648
            • 1:21.143116446615487
        • properties: desert
          • type:desert
          • Map:60
      • 695: Feature (Point, 2 properties)
        • type:Feature
        • id:695
        • geometry: Point (11.29, 19.34)
          • type:Point
          • coordinates: [11.29086881697642, 19.33670456019116]
            • 0:11.29086881697642
            • 1:19.33670456019116
        • properties: desert
          • type:desert
          • Map:60
      • 696: Feature (Point, 2 properties)
        • type:Feature
        • id:696
        • geometry: Point (12.95, 19.97)
          • type:Point
          • coordinates: [12.946200071623512, 19.97305950151677]
            • 0:12.946200071623512
            • 1:19.97305950151677
        • properties: desert
          • type:desert
          • Map:60
      • 697: Feature (Point, 2 properties)
        • type:Feature
        • id:697
        • geometry: Point (27.94, 20.48)
          • type:Point
          • coordinates: [27.943759117180115, 20.475050641465817]
            • 0:27.943759117180115
            • 1:20.475050641465817
        • properties: desert
          • type:desert
          • Map:60
      • 698: Feature (Point, 2 properties)
        • type:Feature
        • id:698
        • geometry: Point (18.33, 21.00)
          • type:Point
          • coordinates: [18.326218799046146, 21.000661846661416]
            • 0:18.326218799046146
            • 1:21.000661846661416
        • properties: desert
          • type:desert
          • Map:60
      • 699: Feature (Point, 2 properties)
        • type:Feature
        • id:699
        • geometry: Point (24.50, 22.37)
          • type:Point
          • coordinates: [24.49937048008766, 22.36692987088552]
            • 0:24.49937048008766
            • 1:22.36692987088552
        • properties: desert
          • type:desert
          • Map:60
      • 700: Feature (Point, 2 properties)
        • type:Feature
        • id:700
        • geometry: Point (24.52, 18.75)
          • type:Point
          • coordinates: [24.52398082967603, 18.749645981369543]
            • 0:24.52398082967603
            • 1:18.749645981369543
        • properties: desert
          • type:desert
          • Map:60
      • 701: Feature (Point, 2 properties)
        • type:Feature
        • id:701
        • geometry: Point (16.75, 21.05)
          • type:Point
          • coordinates: [16.7533147593952, 21.048026944451266]
            • 0:16.7533147593952
            • 1:21.048026944451266
        • properties: desert
          • type:desert
          • Map:60
      • 702: Feature (Point, 2 properties)
        • type:Feature
        • id:702
        • geometry: Point (26.07, 18.90)
          • type:Point
          • coordinates: [26.068342911274407, 18.89662237965371]
            • 0:26.068342911274407
            • 1:18.89662237965371
        • properties: desert
          • type:desert
          • Map:60
      • 703: Feature (Point, 2 properties)
        • type:Feature
        • id:703
        • geometry: Point (18.28, 17.01)
          • type:Point
          • coordinates: [18.278855632112236, 17.006839204394947]
            • 0:18.278855632112236
            • 1:17.006839204394947
        • properties: desert
          • type:desert
          • Map:60
      • 704: Feature (Point, 2 properties)
        • type:Feature
        • id:704
        • geometry: Point (17.86, 21.21)
          • type:Point
          • coordinates: [17.861146753925595, 21.210016218115044]
            • 0:17.861146753925595
            • 1:21.210016218115044
        • properties: desert
          • type:desert
          • Map:60
      • 705: Feature (Point, 2 properties)
        • type:Feature
        • id:705
        • geometry: Point (23.18, 22.56)
          • type:Point
          • coordinates: [23.1777479553806, 22.560691660287663]
            • 0:23.1777479553806
            • 1:22.560691660287663
        • properties: desert
          • type:desert
          • Map:60
      • 706: Feature (Point, 2 properties)
        • type:Feature
        • id:706
        • geometry: Point (11.76, 18.80)
          • type:Point
          • coordinates: [11.75685386021703, 18.798454055545847]
            • 0:11.75685386021703
            • 1:18.798454055545847
        • properties: desert
          • type:desert
          • Map:60
      • 707: Feature (Point, 2 properties)
        • type:Feature
        • id:707
        • geometry: Point (14.24, 16.67)
          • type:Point
          • coordinates: [14.236841077821474, 16.668565764195186]
            • 0:14.236841077821474
            • 1:16.668565764195186
        • properties: desert
          • type:desert
          • Map:60
      • 708: Feature (Point, 2 properties)
        • type:Feature
        • id:708
        • geometry: Point (19.40, 16.60)
          • type:Point
          • coordinates: [19.404107418813116, 16.59940924911801]
            • 0:19.404107418813116
            • 1:16.59940924911801
        • properties: desert
          • type:desert
          • Map:60
      • 709: Feature (Point, 2 properties)
        • type:Feature
        • id:709
        • geometry: Point (22.69, 19.37)
          • type:Point
          • coordinates: [22.689300894705386, 19.368352443037278]
            • 0:22.689300894705386
            • 1:19.368352443037278
        • properties: desert
          • type:desert
          • Map:60
      • 710: Feature (Point, 2 properties)
        • type:Feature
        • id:710
        • geometry: Point (21.48, 20.42)
          • type:Point
          • coordinates: [21.4844846907895, 20.42037668160995]
            • 0:21.4844846907895
            • 1:20.42037668160995
        • properties: desert
          • type:desert
          • Map:60
      • 711: Feature (Point, 2 properties)
        • type:Feature
        • id:711
        • geometry: Point (23.79, 21.09)
          • type:Point
          • coordinates: [23.788951608860692, 21.092451526643806]
            • 0:23.788951608860692
            • 1:21.092451526643806
        • properties: desert
          • type:desert
          • Map:60
      • 712: Feature (Point, 2 properties)
        • type:Feature
        • id:712
        • geometry: Point (23.74, 18.64)
          • type:Point
          • coordinates: [23.737143018666305, 18.637264711445148]
            • 0:23.737143018666305
            • 1:18.637264711445148
        • properties: desert
          • type:desert
          • Map:60
      • 713: Feature (Point, 2 properties)
        • type:Feature
        • id:713
        • geometry: Point (23.15, 17.06)
          • type:Point
          • coordinates: [23.152955093694217, 17.064439432280412]
            • 0:23.152955093694217
            • 1:17.064439432280412
        • properties: desert
          • type:desert
          • Map:60
      • 714: Feature (Point, 2 properties)
        • type:Feature
        • id:714
        • geometry: Point (13.38, 20.72)
          • type:Point
          • coordinates: [13.37872316772439, 20.72027754663359]
            • 0:13.37872316772439
            • 1:20.72027754663359
        • properties: desert
          • type:desert
          • Map:60
      • 715: Feature (Point, 2 properties)
        • type:Feature
        • id:715
        • geometry: Point (19.48, 16.19)
          • type:Point
          • coordinates: [19.477896059132345, 16.193260802175647]
            • 0:19.477896059132345
            • 1:16.193260802175647
        • properties: desert
          • type:desert
          • Map:60
      • 716: Feature (Point, 2 properties)
        • type:Feature
        • id:716
        • geometry: Point (14.98, 18.49)
          • type:Point
          • coordinates: [14.982876662991533, 18.49341782471463]
            • 0:14.982876662991533
            • 1:18.49341782471463
        • properties: desert
          • type:desert
          • Map:60
      • 717: Feature (Point, 2 properties)
        • type:Feature
        • id:717
        • geometry: Point (20.04, 19.58)
          • type:Point
          • coordinates: [20.035845555596715, 19.584013836808502]
            • 0:20.035845555596715
            • 1:19.584013836808502
        • properties: desert
          • type:desert
          • Map:60
      • 718: Feature (Point, 2 properties)
        • type:Feature
        • id:718
        • geometry: Point (20.70, 19.52)
          • type:Point
          • coordinates: [20.704803102120067, 19.517226497060985]
            • 0:20.704803102120067
            • 1:19.517226497060985
        • properties: desert
          • type:desert
          • Map:60
      • 719: Feature (Point, 2 properties)
        • type:Feature
        • id:719
        • geometry: Point (16.37, 16.53)
          • type:Point
          • coordinates: [16.37341333154355, 16.525816543860003]
            • 0:16.37341333154355
            • 1:16.525816543860003
        • properties: desert
          • type:desert
          • Map:60
      • 720: Feature (Point, 2 properties)
        • type:Feature
        • id:720
        • geometry: Point (13.00, 20.38)
          • type:Point
          • coordinates: [12.997514399882602, 20.382616438282188]
            • 0:12.997514399882602
            • 1:20.382616438282188
        • properties: desert
          • type:desert
          • Map:60
      • 721: Feature (Point, 2 properties)
        • type:Feature
        • id:721
        • geometry: Point (26.41, 19.47)
          • type:Point
          • coordinates: [26.414996857763487, 19.469700117850408]
            • 0:26.414996857763487
            • 1:19.469700117850408
        • properties: desert
          • type:desert
          • Map:60
      • 722: Feature (Point, 2 properties)
        • type:Feature
        • id:722
        • geometry: Point (20.94, 18.00)
          • type:Point
          • coordinates: [20.937421597352397, 17.997367229466324]
            • 0:20.937421597352397
            • 1:17.997367229466324
        • properties: desert
          • type:desert
          • Map:60
      • 723: Feature (Point, 2 properties)
        • type:Feature
        • id:723
        • geometry: Point (19.00, 17.42)
          • type:Point
          • coordinates: [19.004875772105063, 17.418259200557664]
            • 0:19.004875772105063
            • 1:17.418259200557664
        • properties: desert
          • type:desert
          • Map:60
      • 724: Feature (Point, 2 properties)
        • type:Feature
        • id:724
        • geometry: Point (28.73, 18.39)
          • type:Point
          • coordinates: [28.727701984548982, 18.387223365271005]
            • 0:28.727701984548982
            • 1:18.387223365271005
        • properties: desert
          • type:desert
          • Map:60
      • 725: Feature (Point, 2 properties)
        • type:Feature
        • id:725
        • geometry: Point (24.99, 20.10)
          • type:Point
          • coordinates: [24.99178520297643, 20.103647162318694]
            • 0:24.99178520297643
            • 1:20.103647162318694
        • properties: desert
          • type:desert
          • Map:60
      • 726: Feature (Point, 2 properties)
        • type:Feature
        • id:726
        • geometry: Point (17.93, 15.93)
          • type:Point
          • coordinates: [17.93230535555258, 15.934227581257847]
            • 0:17.93230535555258
            • 1:15.934227581257847
        • properties: desert
          • type:desert
          • Map:60
      • 727: Feature (Point, 2 properties)
        • type:Feature
        • id:727
        • geometry: Point (17.52, 17.74)
          • type:Point
          • coordinates: [17.522950520041622, 17.743116421737547]
            • 0:17.522950520041622
            • 1:17.743116421737547
        • properties: desert
          • type:desert
          • Map:60
      • 728: Feature (Point, 2 properties)
        • type:Feature
        • id:728
        • geometry: Point (25.43, 18.49)
          • type:Point
          • coordinates: [25.425204249552248, 18.48627482392591]
            • 0:25.425204249552248
            • 1:18.48627482392591
        • properties: desert
          • type:desert
          • Map:60
      • 729: Feature (Point, 2 properties)
        • type:Feature
        • id:729
        • geometry: Point (18.04, 18.13)
          • type:Point
          • coordinates: [18.03682902404566, 18.126517707464576]
            • 0:18.03682902404566
            • 1:18.126517707464576
        • properties: desert
          • type:desert
          • Map:60
      • 730: Feature (Point, 2 properties)
        • type:Feature
        • id:730
        • geometry: Point (23.67, 18.30)
          • type:Point
          • coordinates: [23.67387157765618, 18.296400402536]
            • 0:23.67387157765618
            • 1:18.296400402536
        • properties: desert
          • type:desert
          • Map:60
      • 731: Feature (Point, 2 properties)
        • type:Feature
        • id:731
        • geometry: Point (24.85, 20.73)
          • type:Point
          • coordinates: [24.84741917492684, 20.72802717842626]
            • 0:24.84741917492684
            • 1:20.72802717842626
        • properties: desert
          • type:desert
          • Map:60
      • 732: Feature (Point, 2 properties)
        • type:Feature
        • id:732
        • geometry: Point (24.75, 18.03)
          • type:Point
          • coordinates: [24.75049145688762, 18.030952277851338]
            • 0:24.75049145688762
            • 1:18.030952277851338
        • properties: desert
          • type:desert
          • Map:60
      • 733: Feature (Point, 2 properties)
        • type:Feature
        • id:733
        • geometry: Point (22.55, 19.06)
          • type:Point
          • coordinates: [22.546296299547784, 19.06329929581979]
            • 0:22.546296299547784
            • 1:19.06329929581979
        • properties: desert
          • type:desert
          • Map:60
      • 734: Feature (Point, 2 properties)
        • type:Feature
        • id:734
        • geometry: Point (25.18, 16.95)
          • type:Point
          • coordinates: [25.179185443502874, 16.95403304706034]
            • 0:25.179185443502874
            • 1:16.95403304706034
        • properties: desert
          • type:desert
          • Map:60
      • 735: Feature (Point, 2 properties)
        • type:Feature
        • id:735
        • geometry: Point (14.21, 19.94)
          • type:Point
          • coordinates: [14.20946659051383, 19.940428847547583]
            • 0:14.20946659051383
            • 1:19.940428847547583
        • properties: desert
          • type:desert
          • Map:60
      • 736: Feature (Point, 2 properties)
        • type:Feature
        • id:736
        • geometry: Point (24.47, 19.05)
          • type:Point
          • coordinates: [24.46679167966479, 19.046698675109308]
            • 0:24.46679167966479
            • 1:19.046698675109308
        • properties: desert
          • type:desert
          • Map:60
      • 737: Feature (Point, 2 properties)
        • type:Feature
        • id:737
        • geometry: Point (12.75, 18.49)
          • type:Point
          • coordinates: [12.746595188118038, 18.489895733522527]
            • 0:12.746595188118038
            • 1:18.489895733522527
        • properties: desert
          • type:desert
          • Map:60
      • 738: Feature (Point, 2 properties)
        • type:Feature
        • id:738
        • geometry: Point (20.43, 22.25)
          • type:Point
          • coordinates: [20.427622434399318, 22.25252246664215]
            • 0:20.427622434399318
            • 1:22.25252246664215
        • properties: desert
          • type:desert
          • Map:60
      • 739: Feature (Point, 2 properties)
        • type:Feature
        • id:739
        • geometry: Point (22.06, 21.03)
          • type:Point
          • coordinates: [22.059991350192615, 21.026633666695474]
            • 0:22.059991350192615
            • 1:21.026633666695474
        • properties: desert
          • type:desert
          • Map:60
      • 740: Feature (Point, 2 properties)
        • type:Feature
        • id:740
        • geometry: Point (26.16, 18.61)
          • type:Point
          • coordinates: [26.159055038415758, 18.609720033118354]
            • 0:26.159055038415758
            • 1:18.609720033118354
        • properties: desert
          • type:desert
          • Map:60
      • 741: Feature (Point, 2 properties)
        • type:Feature
        • id:741
        • geometry: Point (25.53, 21.80)
          • type:Point
          • coordinates: [25.53068790839387, 21.80292920039941]
            • 0:25.53068790839387
            • 1:21.80292920039941
        • properties: desert
          • type:desert
          • Map:60
      • 742: Feature (Point, 2 properties)
        • type:Feature
        • id:742
        • geometry: Point (22.79, 16.91)
          • type:Point
          • coordinates: [22.78602192352996, 16.90936670827442]
            • 0:22.78602192352996
            • 1:16.90936670827442
        • properties: desert
          • type:desert
          • Map:60
      • 743: Feature (Point, 2 properties)
        • type:Feature
        • id:743
        • geometry: Point (18.24, 17.46)
          • type:Point
          • coordinates: [18.23932281292023, 17.464826076990512]
            • 0:18.23932281292023
            • 1:17.464826076990512
        • properties: desert
          • type:desert
          • Map:60
      • 744: Feature (Point, 2 properties)
        • type:Feature
        • id:744
        • geometry: Point (17.62, 20.72)
          • type:Point
          • coordinates: [17.622272376012493, 20.721512700911134]
            • 0:17.622272376012493
            • 1:20.721512700911134
        • properties: desert
          • type:desert
          • Map:60
      • 745: Feature (Point, 2 properties)
        • type:Feature
        • id:745
        • geometry: Point (16.29, 21.67)
          • type:Point
          • coordinates: [16.293590380891665, 21.665345765272853]
            • 0:16.293590380891665
            • 1:21.665345765272853
        • properties: desert
          • type:desert
          • Map:60
      • 746: Feature (Point, 2 properties)
        • type:Feature
        • id:746
        • geometry: Point (27.06, 18.64)
          • type:Point
          • coordinates: [27.05689351747337, 18.63518767123938]
            • 0:27.05689351747337
            • 1:18.63518767123938
        • properties: desert
          • type:desert
          • Map:60
      • 747: Feature (Point, 2 properties)
        • type:Feature
        • id:747
        • geometry: Point (14.84, 18.75)
          • type:Point
          • coordinates: [14.838339720255165, 18.753072721876883]
            • 0:14.838339720255165
            • 1:18.753072721876883
        • properties: desert
          • type:desert
          • Map:60
      • 748: Feature (Point, 2 properties)
        • type:Feature
        • id:748
        • geometry: Point (24.50, 19.53)
          • type:Point
          • coordinates: [24.496112531137246, 19.525093961607997]
            • 0:24.496112531137246
            • 1:19.525093961607997
        • properties: desert
          • type:desert
          • Map:60
      • 749: Feature (Point, 2 properties)
        • type:Feature
        • id:749
        • geometry: Point (26.69, 18.98)
          • type:Point
          • coordinates: [26.686288885126523, 18.975402139172957]
            • 0:26.686288885126523
            • 1:18.975402139172957
        • properties: desert
          • type:desert
          • Map:60
      • 750: Feature (Point, 2 properties)
        • type:Feature
        • id:750
        • geometry: Point (20.33, 20.24)
          • type:Point
          • coordinates: [20.327932482932894, 20.235605064458678]
            • 0:20.327932482932894
            • 1:20.235605064458678
        • properties: desert
          • type:desert
          • Map:60
      • 751: Feature (Point, 2 properties)
        • type:Feature
        • id:751
        • geometry: Point (22.23, 20.06)
          • type:Point
          • coordinates: [22.232564004083464, 20.060636763495545]
            • 0:22.232564004083464
            • 1:20.060636763495545
        • properties: desert
          • type:desert
          • Map:60
      • 752: Feature (Point, 2 properties)
        • type:Feature
        • id:752
        • geometry: Point (27.41, 18.67)
          • type:Point
          • coordinates: [27.4050215159089, 18.66930057541575]
            • 0:27.4050215159089
            • 1:18.66930057541575
        • properties: desert
          • type:desert
          • Map:60
      • 753: Feature (Point, 2 properties)
        • type:Feature
        • id:753
        • geometry: Point (16.05, 18.76)
          • type:Point
          • coordinates: [16.04986827809619, 18.764718700758188]
            • 0:16.04986827809619
            • 1:18.764718700758188
        • properties: desert
          • type:desert
          • Map:60
      • 754: Feature (Point, 2 properties)
        • type:Feature
        • id:754
        • geometry: Point (19.27, 22.01)
          • type:Point
          • coordinates: [19.267021450891804, 22.01080157090681]
            • 0:19.267021450891804
            • 1:22.01080157090681
        • properties: desert
          • type:desert
          • Map:60
      • 755: Feature (Point, 2 properties)
        • type:Feature
        • id:755
        • geometry: Point (27.08, 19.25)
          • type:Point
          • coordinates: [27.08040953609735, 19.253626870230885]
            • 0:27.08040953609735
            • 1:19.253626870230885
        • properties: desert
          • type:desert
          • Map:60
      • 756: Feature (Point, 2 properties)
        • type:Feature
        • id:756
        • geometry: Point (24.39, 17.75)
          • type:Point
          • coordinates: [24.3916270653018, 17.74968028739146]
            • 0:24.3916270653018
            • 1:17.74968028739146
        • properties: desert
          • type:desert
          • Map:60
      • 757: Feature (Point, 2 properties)
        • type:Feature
        • id:757
        • geometry: Point (20.95, 18.76)
          • type:Point
          • coordinates: [20.949512400664183, 18.756873421915916]
            • 0:20.949512400664183
            • 1:18.756873421915916
        • properties: desert
          • type:desert
          • Map:60
      • 758: Feature (Point, 2 properties)
        • type:Feature
        • id:758
        • geometry: Point (15.51, 17.93)
          • type:Point
          • coordinates: [15.510368455005862, 17.929702671895825]
            • 0:15.510368455005862
            • 1:17.929702671895825
        • properties: desert
          • type:desert
          • Map:60
      • 759: Feature (Point, 2 properties)
        • type:Feature
        • id:759
        • geometry: Point (19.64, 19.00)
          • type:Point
          • coordinates: [19.64230583189432, 19.00293187678358]
            • 0:19.64230583189432
            • 1:19.00293187678358
        • properties: desert
          • type:desert
          • Map:60
      • 760: Feature (Point, 2 properties)
        • type:Feature
        • id:760
        • geometry: Point (20.65, 18.63)
          • type:Point
          • coordinates: [20.654096734957424, 18.634875777593443]
            • 0:20.654096734957424
            • 1:18.634875777593443
        • properties: desert
          • type:desert
          • Map:60
      • 761: Feature (Point, 2 properties)
        • type:Feature
        • id:761
        • geometry: Point (29.61, 17.02)
          • type:Point
          • coordinates: [29.60789492769784, 17.023213407018932]
            • 0:29.60789492769784
            • 1:17.023213407018932
        • properties: desert
          • type:desert
          • Map:60
      • 762: Feature (Point, 2 properties)
        • type:Feature
        • id:762
        • geometry: Point (18.74, 16.90)
          • type:Point
          • coordinates: [18.744500695089435, 16.903973599749364]
            • 0:18.744500695089435
            • 1:16.903973599749364
        • properties: desert
          • type:desert
          • Map:60
      • 763: Feature (Point, 2 properties)
        • type:Feature
        • id:763
        • geometry: Point (23.06, 18.35)
          • type:Point
          • coordinates: [23.06098381170817, 18.352586535496318]
            • 0:23.06098381170817
            • 1:18.352586535496318
        • properties: desert
          • type:desert
          • Map:60
      • 764: Feature (Point, 2 properties)
        • type:Feature
        • id:764
        • geometry: Point (29.01, 17.34)
          • type:Point
          • coordinates: [29.013756220683472, 17.337603068944684]
            • 0:29.013756220683472
            • 1:17.337603068944684
        • properties: desert
          • type:desert
          • Map:60
      • 765: Feature (Point, 2 properties)
        • type:Feature
        • id:765
        • geometry: Point (26.80, 18.39)
          • type:Point
          • coordinates: [26.801152657152915, 18.394154679961794]
            • 0:26.801152657152915
            • 1:18.394154679961794
        • properties: desert
          • type:desert
          • Map:60
      • 766: Feature (Point, 2 properties)
        • type:Feature
        • id:766
        • geometry: Point (13.46, 18.88)
          • type:Point
          • coordinates: [13.457039238005326, 18.878245563783562]
            • 0:13.457039238005326
            • 1:18.878245563783562
        • properties: desert
          • type:desert
          • Map:60
      • 767: Feature (Point, 2 properties)
        • type:Feature
        • id:767
        • geometry: Point (19.60, 19.98)
          • type:Point
          • coordinates: [19.604750336840503, 19.978627371335833]
            • 0:19.604750336840503
            • 1:19.978627371335833
        • properties: desert
          • type:desert
          • Map:60
      • 768: Feature (Point, 2 properties)
        • type:Feature
        • id:768
        • geometry: Point (15.04, 20.80)
          • type:Point
          • coordinates: [15.038171966851392, 20.797990436873857]
            • 0:15.038171966851392
            • 1:20.797990436873857
        • properties: desert
          • type:desert
          • Map:60
      • 769: Feature (Point, 2 properties)
        • type:Feature
        • id:769
        • geometry: Point (19.80, 20.59)
          • type:Point
          • coordinates: [19.79584619126444, 20.593903141135414]
            • 0:19.79584619126444
            • 1:20.593903141135414
        • properties: desert
          • type:desert
          • Map:60
      • 770: Feature (Point, 2 properties)
        • type:Feature
        • id:770
        • geometry: Point (25.99, 21.98)
          • type:Point
          • coordinates: [25.990706519654804, 21.97996703318132]
            • 0:25.990706519654804
            • 1:21.97996703318132
        • properties: desert
          • type:desert
          • Map:60
      • 771: Feature (Point, 2 properties)
        • type:Feature
        • id:771
        • geometry: Point (13.66, 21.26)
          • type:Point
          • coordinates: [13.664026335498797, 21.259255207312023]
            • 0:13.664026335498797
            • 1:21.259255207312023
        • properties: desert
          • type:desert
          • Map:60
      • 772: Feature (Point, 2 properties)
        • type:Feature
        • id:772
        • geometry: Point (28.49, 17.29)
          • type:Point
          • coordinates: [28.488103735696864, 17.291574306242314]
            • 0:28.488103735696864
            • 1:17.291574306242314
        • properties: desert
          • type:desert
          • Map:60
      • 773: Feature (Point, 2 properties)
        • type:Feature
        • id:773
        • geometry: Point (19.45, 19.54)
          • type:Point
          • coordinates: [19.448918813276514, 19.54481592845146]
            • 0:19.448918813276514
            • 1:19.54481592845146
        • properties: desert
          • type:desert
          • Map:60
      • 774: Feature (Point, 2 properties)
        • type:Feature
        • id:774
        • geometry: Point (26.85, 19.58)
          • type:Point
          • coordinates: [26.84547516673804, 19.577543153649426]
            • 0:26.84547516673804
            • 1:19.577543153649426
        • properties: desert
          • type:desert
          • Map:60
      • 775: Feature (Point, 2 properties)
        • type:Feature
        • id:775
        • geometry: Point (23.64, 18.05)
          • type:Point
          • coordinates: [23.63635787106931, 18.046668181398292]
            • 0:23.63635787106931
            • 1:18.046668181398292
        • properties: desert
          • type:desert
          • Map:60
      • 776: Feature (Point, 2 properties)
        • type:Feature
        • id:776
        • geometry: Point (17.91, 18.00)
          • type:Point
          • coordinates: [17.910156988615398, 18.003407753806187]
            • 0:17.910156988615398
            • 1:18.003407753806187
        • properties: desert
          • type:desert
          • Map:60
      • 777: Feature (Point, 2 properties)
        • type:Feature
        • id:777
        • geometry: Point (20.98, 19.52)
          • type:Point
          • coordinates: [20.981205936411136, 19.51838528852077]
            • 0:20.981205936411136
            • 1:19.51838528852077
        • properties: desert
          • type:desert
          • Map:60
      • 778: Feature (Point, 2 properties)
        • type:Feature
        • id:778
        • geometry: Point (21.84, 22.46)
          • type:Point
          • coordinates: [21.843156616666732, 22.455630272532108]
            • 0:21.843156616666732
            • 1:22.455630272532108
        • properties: desert
          • type:desert
          • Map:60
      • 779: Feature (Point, 2 properties)
        • type:Feature
        • id:779
        • geometry: Point (28.35, 18.51)
          • type:Point
          • coordinates: [28.348710117736502, 18.50924825618989]
            • 0:28.348710117736502
            • 1:18.50924825618989
        • properties: desert
          • type:desert
          • Map:60
      • 780: Feature (Point, 2 properties)
        • type:Feature
        • id:780
        • geometry: Point (22.98, 20.44)
          • type:Point
          • coordinates: [22.981434723304897, 20.43800141778978]
            • 0:22.981434723304897
            • 1:20.43800141778978
        • properties: desert
          • type:desert
          • Map:60
      • 781: Feature (Point, 2 properties)
        • type:Feature
        • id:781
        • geometry: Point (26.83, 16.90)
          • type:Point
          • coordinates: [26.828112619985017, 16.898075737659422]
            • 0:26.828112619985017
            • 1:16.898075737659422
        • properties: desert
          • type:desert
          • Map:60
      • 782: Feature (Point, 2 properties)
        • type:Feature
        • id:782
        • geometry: Point (20.14, 20.65)
          • type:Point
          • coordinates: [20.138946300163614, 20.650447909751545]
            • 0:20.138946300163614
            • 1:20.650447909751545
        • properties: desert
          • type:desert
          • Map:60
      • 783: Feature (Point, 2 properties)
        • type:Feature
        • id:783
        • geometry: Point (23.32, 20.97)
          • type:Point
          • coordinates: [23.324949038490068, 20.97405155368672]
            • 0:23.324949038490068
            • 1:20.97405155368672
        • properties: desert
          • type:desert
          • Map:60
      • 784: Feature (Point, 2 properties)
        • type:Feature
        • id:784
        • geometry: Point (15.58, 16.83)
          • type:Point
          • coordinates: [15.575735796205175, 16.834328046044213]
            • 0:15.575735796205175
            • 1:16.834328046044213
        • properties: desert
          • type:desert
          • Map:60
      • 785: Feature (Point, 2 properties)
        • type:Feature
        • id:785
        • geometry: Point (23.84, 18.22)
          • type:Point
          • coordinates: [23.84140558220056, 18.222700535657932]
            • 0:23.84140558220056
            • 1:18.222700535657932
        • properties: desert
          • type:desert
          • Map:60
      • 786: Feature (Point, 2 properties)
        • type:Feature
        • id:786
        • geometry: Point (22.75, 17.23)
          • type:Point
          • coordinates: [22.751952989268357, 17.225484317887158]
            • 0:22.751952989268357
            • 1:17.225484317887158
        • properties: desert
          • type:desert
          • Map:60
      • 787: Feature (Point, 2 properties)
        • type:Feature
        • id:787
        • geometry: Point (26.81, 21.23)
          • type:Point
          • coordinates: [26.814000401586345, 21.2260283768351]
            • 0:26.814000401586345
            • 1:21.2260283768351
        • properties: desert
          • type:desert
          • Map:60
      • 788: Feature (Point, 2 properties)
        • type:Feature
        • id:788
        • geometry: Point (15.52, 17.16)
          • type:Point
          • coordinates: [15.522362692709418, 17.159596903260898]
            • 0:15.522362692709418
            • 1:17.159596903260898
        • properties: desert
          • type:desert
          • Map:60
      • 789: Feature (Point, 2 properties)
        • type:Feature
        • id:789
        • geometry: Point (24.25, 19.90)
          • type:Point
          • coordinates: [24.247078230696367, 19.902928343634184]
            • 0:24.247078230696367
            • 1:19.902928343634184
        • properties: desert
          • type:desert
          • Map:60
      • 790: Feature (Point, 2 properties)
        • type:Feature
        • id:790
        • geometry: Point (12.07, 19.01)
          • type:Point
          • coordinates: [12.074507418298667, 19.008520553063637]
            • 0:12.074507418298667
            • 1:19.008520553063637
        • properties: desert
          • type:desert
          • Map:60
      • 791: Feature (Point, 2 properties)
        • type:Feature
        • id:791
        • geometry: Point (18.91, 21.37)
          • type:Point
          • coordinates: [18.909485183367643, 21.373195893689495]
            • 0:18.909485183367643
            • 1:21.373195893689495
        • properties: desert
          • type:desert
          • Map:60
      • 792: Feature (Point, 2 properties)
        • type:Feature
        • id:792
        • geometry: Point (25.29, 18.32)
          • type:Point
          • coordinates: [25.292927588335587, 18.323232753750254]
            • 0:25.292927588335587
            • 1:18.323232753750254
        • properties: desert
          • type:desert
          • Map:60
      • 793: Feature (Point, 2 properties)
        • type:Feature
        • id:793
        • geometry: Point (18.04, 19.15)
          • type:Point
          • coordinates: [18.035708816310287, 19.15230347553596]
            • 0:18.035708816310287
            • 1:19.15230347553596
        • properties: desert
          • type:desert
          • Map:60
      • 794: Feature (Point, 2 properties)
        • type:Feature
        • id:794
        • geometry: Point (22.78, 18.51)
          • type:Point
          • coordinates: [22.775290111913336, 18.507227317106135]
            • 0:22.775290111913336
            • 1:18.507227317106135
        • properties: desert
          • type:desert
          • Map:60
      • 795: Feature (Point, 2 properties)
        • type:Feature
        • id:795
        • geometry: Point (28.96, 19.79)
          • type:Point
          • coordinates: [28.964671207293843, 19.78930376972312]
            • 0:28.964671207293843
            • 1:19.78930376972312
        • properties: desert
          • type:desert
          • Map:60
      • 796: Feature (Point, 2 properties)
        • type:Feature
        • id:796
        • geometry: Point (14.12, 21.04)
          • type:Point
          • coordinates: [14.122197763830481, 21.044717600441665]
            • 0:14.122197763830481
            • 1:21.044717600441665
        • properties: desert
          • type:desert
          • Map:60
      • 797: Feature (Point, 2 properties)
        • type:Feature
        • id:797
        • geometry: Point (16.38, 16.44)
          • type:Point
          • coordinates: [16.383740014301463, 16.440874519903282]
            • 0:16.383740014301463
            • 1:16.440874519903282
        • properties: desert
          • type:desert
          • Map:60
      • 798: Feature (Point, 2 properties)
        • type:Feature
        • id:798
        • geometry: Point (28.01, 20.67)
          • type:Point
          • coordinates: [28.006907410802146, 20.67073860326352]
            • 0:28.006907410802146
            • 1:20.67073860326352
        • properties: desert
          • type:desert
          • Map:60
      • 799: Feature (Point, 2 properties)
        • type:Feature
        • id:799
        • geometry: Point (12.61, 19.12)
          • type:Point
          • coordinates: [12.606211919279547, 19.118707692049647]
            • 0:12.606211919279547
            • 1:19.118707692049647
        • properties: desert
          • type:desert
          • Map:60

Jungle¶

In [47]:
# sample ocean polygon
jungle_pts = landcover.sample(
    region=jungle_feat,
    scale=1000,
    numPixels=800,
    seed=44,
    projection='EPSG:4326',
    geometries=True,
    dropNulls=True
)

# add a property "type" to the jungle_pts feature collection equal to "jungle"
jungle_pts = jungle_pts.map(lambda f: f.set('type', 'jungle'))

# export sample to geojson
geemap.ee_to_geojson(jungle_pts, 'data/dark_africa/jungle_pts2.geo.json')
In [48]:
# read in the jungle_pts
jungle_pts = geemap.geojson_to_ee('data/dark_africa/jungle_pts2.geo.json')
# add to map
m.addLayer(jungle_pts, {'color': 'green'}, 'Rainforest Points')
jungle_pts
Out[48]:
  • FeatureCollection (800 elements, 3 columns)
    • type:FeatureCollection
    • columns: String
      • type:String
      • Map:Integer
      • system:index:String
    • features: List (800 elements)
      • 0: Feature (Point, 2 properties)
        • type:Feature
        • id:0
        • geometry: Point (22.84, -4.59)
          • type:Point
          • coordinates: [22.83783427149411, -4.589357888404846]
            • 0:22.83783427149411
            • 1:-4.589357888404846
        • properties: jungle
          • type:jungle
          • Map:20
      • 1: Feature (Point, 2 properties)
        • type:Feature
        • id:1
        • geometry: Point (23.10, -1.19)
          • type:Point
          • coordinates: [23.103360401007716, -1.1873335990140645]
            • 0:23.103360401007716
            • 1:-1.1873335990140645
        • properties: jungle
          • type:jungle
          • Map:10
      • 2: Feature (Point, 2 properties)
        • type:Feature
        • id:2
        • geometry: Point (22.83, -0.77)
          • type:Point
          • coordinates: [22.831498272648464, -0.7737412233677322]
            • 0:22.831498272648464
            • 1:-0.7737412233677322
        • properties: jungle
          • type:jungle
          • Map:10
      • 3: Feature (Point, 2 properties)
        • type:Feature
        • id:3
        • geometry: Point (22.04, 0.23)
          • type:Point
          • coordinates: [22.038350768095004, 0.22620343008625465]
            • 0:22.038350768095004
            • 1:0.22620343008625465
        • properties: jungle
          • type:jungle
          • Map:10
      • 4: Feature (Point, 2 properties)
        • type:Feature
        • id:4
        • geometry: Point (23.39, -0.67)
          • type:Point
          • coordinates: [23.39115122623415, -0.6730223155614948]
            • 0:23.39115122623415
            • 1:-0.6730223155614948
        • properties: jungle
          • type:jungle
          • Map:10
      • 5: Feature (Point, 2 properties)
        • type:Feature
        • id:5
        • geometry: Point (25.10, -3.19)
          • type:Point
          • coordinates: [25.10311847856479, -3.1927248655467455]
            • 0:25.10311847856479
            • 1:-3.1927248655467455
        • properties: jungle
          • type:jungle
          • Map:30
      • 6: Feature (Point, 2 properties)
        • type:Feature
        • id:6
        • geometry: Point (20.43, -0.77)
          • type:Point
          • coordinates: [20.4318453160763, -0.7676974383402896]
            • 0:20.4318453160763
            • 1:-0.7676974383402896
        • properties: jungle
          • type:jungle
          • Map:10
      • 7: Feature (Point, 2 properties)
        • type:Feature
        • id:7
        • geometry: Point (19.88, -2.20)
          • type:Point
          • coordinates: [19.878484366494803, -2.204707180782742]
            • 0:19.878484366494803
            • 1:-2.204707180782742
        • properties: jungle
          • type:jungle
          • Map:10
      • 8: Feature (Point, 2 properties)
        • type:Feature
        • id:8
        • geometry: Point (23.84, -5.02)
          • type:Point
          • coordinates: [23.83812415982231, -5.0224689980375405]
            • 0:23.83812415982231
            • 1:-5.0224689980375405
        • properties: jungle
          • type:jungle
          • Map:30
      • 9: Feature (Point, 2 properties)
        • type:Feature
        • id:9
        • geometry: Point (23.86, -3.45)
          • type:Point
          • coordinates: [23.857734885750148, -3.446886729348045]
            • 0:23.857734885750148
            • 1:-3.446886729348045
        • properties: jungle
          • type:jungle
          • Map:10
      • 10: Feature (Point, 2 properties)
        • type:Feature
        • id:10
        • geometry: Point (20.23, -3.44)
          • type:Point
          • coordinates: [20.22712213050791, -3.440568936743278]
            • 0:20.22712213050791
            • 1:-3.440568936743278
        • properties: jungle
          • type:jungle
          • Map:10
      • 11: Feature (Point, 2 properties)
        • type:Feature
        • id:11
        • geometry: Point (20.82, -2.08)
          • type:Point
          • coordinates: [20.82399649545358, -2.0795267717429486]
            • 0:20.82399649545358
            • 1:-2.0795267717429486
        • properties: jungle
          • type:jungle
          • Map:10
      • 12: Feature (Point, 2 properties)
        • type:Feature
        • id:12
        • geometry: Point (24.36, -2.30)
          • type:Point
          • coordinates: [24.356552750697265, -2.303088382537104]
            • 0:24.356552750697265
            • 1:-2.303088382537104
        • properties: jungle
          • type:jungle
          • Map:10
      • 13: Feature (Point, 2 properties)
        • type:Feature
        • id:13
        • geometry: Point (25.17, -2.29)
          • type:Point
          • coordinates: [25.173671078440808, -2.288781628363351]
            • 0:25.173671078440808
            • 1:-2.288781628363351
        • properties: jungle
          • type:jungle
          • Map:10
      • 14: Feature (Point, 2 properties)
        • type:Feature
        • id:14
        • geometry: Point (20.33, -1.32)
          • type:Point
          • coordinates: [20.33137831174662, -1.316194369232658]
            • 0:20.33137831174662
            • 1:-1.316194369232658
        • properties: jungle
          • type:jungle
          • Map:10
      • 15: Feature (Point, 2 properties)
        • type:Feature
        • id:15
        • geometry: Point (23.59, -1.06)
          • type:Point
          • coordinates: [23.589844954478664, -1.0577170425204945]
            • 0:23.589844954478664
            • 1:-1.0577170425204945
        • properties: jungle
          • type:jungle
          • Map:10
      • 16: Feature (Point, 2 properties)
        • type:Feature
        • id:16
        • geometry: Point (22.34, 0.26)
          • type:Point
          • coordinates: [22.343895708870058, 0.25544700380312]
            • 0:22.343895708870058
            • 1:0.25544700380312
        • properties: jungle
          • type:jungle
          • Map:10
      • 17: Feature (Point, 2 properties)
        • type:Feature
        • id:17
        • geometry: Point (24.24, -1.88)
          • type:Point
          • coordinates: [24.24465113879403, -1.8776863383274789]
            • 0:24.24465113879403
            • 1:-1.8776863383274789
        • properties: jungle
          • type:jungle
          • Map:10
      • 18: Feature (Point, 2 properties)
        • type:Feature
        • id:18
        • geometry: Point (20.18, -2.12)
          • type:Point
          • coordinates: [20.18415131494385, -2.1165111572393767]
            • 0:20.18415131494385
            • 1:-2.1165111572393767
        • properties: jungle
          • type:jungle
          • Map:10
      • 19: Feature (Point, 2 properties)
        • type:Feature
        • id:19
        • geometry: Point (23.77, -2.92)
          • type:Point
          • coordinates: [23.767063866963692, -2.923628323595343]
            • 0:23.767063866963692
            • 1:-2.923628323595343
        • properties: jungle
          • type:jungle
          • Map:10
      • 20: Feature (Point, 2 properties)
        • type:Feature
        • id:20
        • geometry: Point (21.87, -1.98)
          • type:Point
          • coordinates: [21.87123064068196, -1.980961264638831]
            • 0:21.87123064068196
            • 1:-1.980961264638831
        • properties: jungle
          • type:jungle
          • Map:10
      • 21: Feature (Point, 2 properties)
        • type:Feature
        • id:21
        • geometry: Point (21.63, -3.26)
          • type:Point
          • coordinates: [21.6307539519223, -3.258356695501441]
            • 0:21.6307539519223
            • 1:-3.258356695501441
        • properties: jungle
          • type:jungle
          • Map:10
      • 22: Feature (Point, 2 properties)
        • type:Feature
        • id:22
        • geometry: Point (23.87, -2.37)
          • type:Point
          • coordinates: [23.866332533881156, -2.3651078051251613]
            • 0:23.866332533881156
            • 1:-2.3651078051251613
        • properties: jungle
          • type:jungle
          • Map:10
      • 23: Feature (Point, 2 properties)
        • type:Feature
        • id:23
        • geometry: Point (20.51, -2.11)
          • type:Point
          • coordinates: [20.509181152438313, -2.1144596474344994]
            • 0:20.509181152438313
            • 1:-2.1144596474344994
        • properties: jungle
          • type:jungle
          • Map:10
      • 24: Feature (Point, 2 properties)
        • type:Feature
        • id:24
        • geometry: Point (24.57, -3.43)
          • type:Point
          • coordinates: [24.57390451789343, -3.4343132750429377]
            • 0:24.57390451789343
            • 1:-3.4343132750429377
        • properties: jungle
          • type:jungle
          • Map:30
      • 25: Feature (Point, 2 properties)
        • type:Feature
        • id:25
        • geometry: Point (21.31, -4.89)
          • type:Point
          • coordinates: [21.309986566957324, -4.89389297213961]
            • 0:21.309986566957324
            • 1:-4.89389297213961
        • properties: jungle
          • type:jungle
          • Map:10
      • 26: Feature (Point, 2 properties)
        • type:Feature
        • id:26
        • geometry: Point (20.81, -0.94)
          • type:Point
          • coordinates: [20.809474528400987, -0.9401965289523443]
            • 0:20.809474528400987
            • 1:-0.9401965289523443
        • properties: jungle
          • type:jungle
          • Map:10
      • 27: Feature (Point, 2 properties)
        • type:Feature
        • id:27
        • geometry: Point (23.18, -1.02)
          • type:Point
          • coordinates: [23.182783474033904, -1.0210887147869905]
            • 0:23.182783474033904
            • 1:-1.0210887147869905
        • properties: jungle
          • type:jungle
          • Map:10
      • 28: Feature (Point, 2 properties)
        • type:Feature
        • id:28
        • geometry: Point (20.17, -3.28)
          • type:Point
          • coordinates: [20.170163791676256, -3.279252242723609]
            • 0:20.170163791676256
            • 1:-3.279252242723609
        • properties: jungle
          • type:jungle
          • Map:10
      • 29: Feature (Point, 2 properties)
        • type:Feature
        • id:29
        • geometry: Point (20.14, -0.84)
          • type:Point
          • coordinates: [20.143326020676174, -0.8372875255635188]
            • 0:20.143326020676174
            • 1:-0.8372875255635188
        • properties: jungle
          • type:jungle
          • Map:10
      • 30: Feature (Point, 2 properties)
        • type:Feature
        • id:30
        • geometry: Point (21.20, -3.40)
          • type:Point
          • coordinates: [21.204301352747038, -3.402087915260198]
            • 0:21.204301352747038
            • 1:-3.402087915260198
        • properties: jungle
          • type:jungle
          • Map:10
      • 31: Feature (Point, 2 properties)
        • type:Feature
        • id:31
        • geometry: Point (23.42, -0.64)
          • type:Point
          • coordinates: [23.423864049944736, -0.6403000262436614]
            • 0:23.423864049944736
            • 1:-0.6403000262436614
        • properties: jungle
          • type:jungle
          • Map:10
      • 32: Feature (Point, 2 properties)
        • type:Feature
        • id:32
        • geometry: Point (20.33, -2.87)
          • type:Point
          • coordinates: [20.327983825143072, -2.870885637141023]
            • 0:20.327983825143072
            • 1:-2.870885637141023
        • properties: jungle
          • type:jungle
          • Map:10
      • 33: Feature (Point, 2 properties)
        • type:Feature
        • id:33
        • geometry: Point (20.93, -2.32)
          • type:Point
          • coordinates: [20.92622661435757, -2.315518444058658]
            • 0:20.92622661435757
            • 1:-2.315518444058658
        • properties: jungle
          • type:jungle
          • Map:10
      • 34: Feature (Point, 2 properties)
        • type:Feature
        • id:34
        • geometry: Point (20.77, -2.20)
          • type:Point
          • coordinates: [20.767446323361057, -2.202552595703778]
            • 0:20.767446323361057
            • 1:-2.202552595703778
        • properties: jungle
          • type:jungle
          • Map:10
      • 35: Feature (Point, 2 properties)
        • type:Feature
        • id:35
        • geometry: Point (20.65, -2.48)
          • type:Point
          • coordinates: [20.64832753059858, -2.4758100987258476]
            • 0:20.64832753059858
            • 1:-2.4758100987258476
        • properties: jungle
          • type:jungle
          • Map:10
      • 36: Feature (Point, 2 properties)
        • type:Feature
        • id:36
        • geometry: Point (23.79, -1.50)
          • type:Point
          • coordinates: [23.794509674835087, -1.4993837587987262]
            • 0:23.794509674835087
            • 1:-1.4993837587987262
        • properties: jungle
          • type:jungle
          • Map:10
      • 37: Feature (Point, 2 properties)
        • type:Feature
        • id:37
        • geometry: Point (19.94, -2.85)
          • type:Point
          • coordinates: [19.941942123207802, -2.853506347422081]
            • 0:19.941942123207802
            • 1:-2.853506347422081
        • properties: jungle
          • type:jungle
          • Map:10
      • 38: Feature (Point, 2 properties)
        • type:Feature
        • id:38
        • geometry: Point (22.34, -3.18)
          • type:Point
          • coordinates: [22.33597195697554, -3.1761922858316227]
            • 0:22.33597195697554
            • 1:-3.1761922858316227
        • properties: jungle
          • type:jungle
          • Map:10
      • 39: Feature (Point, 2 properties)
        • type:Feature
        • id:39
        • geometry: Point (22.84, -3.56)
          • type:Point
          • coordinates: [22.843704952393672, -3.5564480413813953]
            • 0:22.843704952393672
            • 1:-3.5564480413813953
        • properties: jungle
          • type:jungle
          • Map:10
      • 40: Feature (Point, 2 properties)
        • type:Feature
        • id:40
        • geometry: Point (24.45, -2.50)
          • type:Point
          • coordinates: [24.44525008057015, -2.498267514055125]
            • 0:24.44525008057015
            • 1:-2.498267514055125
        • properties: jungle
          • type:jungle
          • Map:10
      • 41: Feature (Point, 2 properties)
        • type:Feature
        • id:41
        • geometry: Point (24.02, -4.41)
          • type:Point
          • coordinates: [24.02149330494459, -4.410800164582784]
            • 0:24.02149330494459
            • 1:-4.410800164582784
        • properties: jungle
          • type:jungle
          • Map:10
      • 42: Feature (Point, 2 properties)
        • type:Feature
        • id:42
        • geometry: Point (24.21, -5.01)
          • type:Point
          • coordinates: [24.20519903274831, -5.006876295665081]
            • 0:24.20519903274831
            • 1:-5.006876295665081
        • properties: jungle
          • type:jungle
          • Map:10
      • 43: Feature (Point, 2 properties)
        • type:Feature
        • id:43
        • geometry: Point (22.66, -3.86)
          • type:Point
          • coordinates: [22.664861682923604, -3.862053795158074]
            • 0:22.664861682923604
            • 1:-3.862053795158074
        • properties: jungle
          • type:jungle
          • Map:10
      • 44: Feature (Point, 2 properties)
        • type:Feature
        • id:44
        • geometry: Point (23.33, -0.28)
          • type:Point
          • coordinates: [23.32721607554447, -0.2806871080345612]
            • 0:23.32721607554447
            • 1:-0.2806871080345612
        • properties: jungle
          • type:jungle
          • Map:10
      • 45: Feature (Point, 2 properties)
        • type:Feature
        • id:45
        • geometry: Point (21.11, -3.71)
          • type:Point
          • coordinates: [21.107428128666303, -3.714255620143341]
            • 0:21.107428128666303
            • 1:-3.714255620143341
        • properties: jungle
          • type:jungle
          • Map:10
      • 46: Feature (Point, 2 properties)
        • type:Feature
        • id:46
        • geometry: Point (19.43, -3.70)
          • type:Point
          • coordinates: [19.434530449556465, -3.704832230810194]
            • 0:19.434530449556465
            • 1:-3.704832230810194
        • properties: jungle
          • type:jungle
          • Map:10
      • 47: Feature (Point, 2 properties)
        • type:Feature
        • id:47
        • geometry: Point (24.08, -2.00)
          • type:Point
          • coordinates: [24.082354343141926, -2.0008939160448125]
            • 0:24.082354343141926
            • 1:-2.0008939160448125
        • properties: jungle
          • type:jungle
          • Map:10
      • 48: Feature (Point, 2 properties)
        • type:Feature
        • id:48
        • geometry: Point (24.76, -2.43)
          • type:Point
          • coordinates: [24.758118745297246, -2.434274175068617]
            • 0:24.758118745297246
            • 1:-2.434274175068617
        • properties: jungle
          • type:jungle
          • Map:10
      • 49: Feature (Point, 2 properties)
        • type:Feature
        • id:49
        • geometry: Point (19.94, -3.84)
          • type:Point
          • coordinates: [19.93944831812045, -3.8428473236771885]
            • 0:19.93944831812045
            • 1:-3.8428473236771885
        • properties: jungle
          • type:jungle
          • Map:10
      • 50: Feature (Point, 2 properties)
        • type:Feature
        • id:50
        • geometry: Point (19.65, -2.05)
          • type:Point
          • coordinates: [19.65488284372796, -2.045800040361392]
            • 0:19.65488284372796
            • 1:-2.045800040361392
        • properties: jungle
          • type:jungle
          • Map:10
      • 51: Feature (Point, 2 properties)
        • type:Feature
        • id:51
        • geometry: Point (23.61, -0.50)
          • type:Point
          • coordinates: [23.608096635131258, -0.500396012277563]
            • 0:23.608096635131258
            • 1:-0.500396012277563
        • properties: jungle
          • type:jungle
          • Map:10
      • 52: Feature (Point, 2 properties)
        • type:Feature
        • id:52
        • geometry: Point (22.57, -4.42)
          • type:Point
          • coordinates: [22.57032410962092, -4.416683506970282]
            • 0:22.57032410962092
            • 1:-4.416683506970282
        • properties: jungle
          • type:jungle
          • Map:10
      • 53: Feature (Point, 2 properties)
        • type:Feature
        • id:53
        • geometry: Point (24.32, -3.86)
          • type:Point
          • coordinates: [24.31807205575343, -3.8597674542133866]
            • 0:24.31807205575343
            • 1:-3.8597674542133866
        • properties: jungle
          • type:jungle
          • Map:10
      • 54: Feature (Point, 2 properties)
        • type:Feature
        • id:54
        • geometry: Point (24.78, -1.04)
          • type:Point
          • coordinates: [24.777063760887284, -1.0406116167022275]
            • 0:24.777063760887284
            • 1:-1.0406116167022275
        • properties: jungle
          • type:jungle
          • Map:10
      • 55: Feature (Point, 2 properties)
        • type:Feature
        • id:55
        • geometry: Point (20.94, -4.08)
          • type:Point
          • coordinates: [20.940975081296948, -4.080135392098323]
            • 0:20.940975081296948
            • 1:-4.080135392098323
        • properties: jungle
          • type:jungle
          • Map:10
      • 56: Feature (Point, 2 properties)
        • type:Feature
        • id:56
        • geometry: Point (22.83, -3.85)
          • type:Point
          • coordinates: [22.83207031359543, -3.851530647705992]
            • 0:22.83207031359543
            • 1:-3.851530647705992
        • properties: jungle
          • type:jungle
          • Map:10
      • 57: Feature (Point, 2 properties)
        • type:Feature
        • id:57
        • geometry: Point (20.58, -1.42)
          • type:Point
          • coordinates: [20.57871040997957, -1.4249677615977085]
            • 0:20.57871040997957
            • 1:-1.4249677615977085
        • properties: jungle
          • type:jungle
          • Map:10
      • 58: Feature (Point, 2 properties)
        • type:Feature
        • id:58
        • geometry: Point (23.85, -0.49)
          • type:Point
          • coordinates: [23.84789471508543, -0.4921090092692885]
            • 0:23.84789471508543
            • 1:-0.4921090092692885
        • properties: jungle
          • type:jungle
          • Map:10
      • 59: Feature (Point, 2 properties)
        • type:Feature
        • id:59
        • geometry: Point (22.80, -2.77)
          • type:Point
          • coordinates: [22.802791327102916, -2.76887479074889]
            • 0:22.802791327102916
            • 1:-2.76887479074889
        • properties: jungle
          • type:jungle
          • Map:10
      • 60: Feature (Point, 2 properties)
        • type:Feature
        • id:60
        • geometry: Point (23.57, -2.25)
          • type:Point
          • coordinates: [23.56949480736364, -2.252128695299655]
            • 0:23.56949480736364
            • 1:-2.252128695299655
        • properties: jungle
          • type:jungle
          • Map:10
      • 61: Feature (Point, 2 properties)
        • type:Feature
        • id:61
        • geometry: Point (21.02, -4.10)
          • type:Point
          • coordinates: [21.02281376907603, -4.0996062667275215]
            • 0:21.02281376907603
            • 1:-4.0996062667275215
        • properties: jungle
          • type:jungle
          • Map:10
      • 62: Feature (Point, 2 properties)
        • type:Feature
        • id:62
        • geometry: Point (23.93, -3.87)
          • type:Point
          • coordinates: [23.9343275134135, -3.8667896563793698]
            • 0:23.9343275134135
            • 1:-3.8667896563793698
        • properties: jungle
          • type:jungle
          • Map:30
      • 63: Feature (Point, 2 properties)
        • type:Feature
        • id:63
        • geometry: Point (24.39, -3.74)
          • type:Point
          • coordinates: [24.38643908445921, -3.738851146279949]
            • 0:24.38643908445921
            • 1:-3.738851146279949
        • properties: jungle
          • type:jungle
          • Map:10
      • 64: Feature (Point, 2 properties)
        • type:Feature
        • id:64
        • geometry: Point (23.05, -1.90)
          • type:Point
          • coordinates: [23.051173834297657, -1.8970087727214973]
            • 0:23.051173834297657
            • 1:-1.8970087727214973
        • properties: jungle
          • type:jungle
          • Map:10
      • 65: Feature (Point, 2 properties)
        • type:Feature
        • id:65
        • geometry: Point (23.13, -1.27)
          • type:Point
          • coordinates: [23.131209640626324, -1.2686929411936563]
            • 0:23.131209640626324
            • 1:-1.2686929411936563
        • properties: jungle
          • type:jungle
          • Map:10
      • 66: Feature (Point, 2 properties)
        • type:Feature
        • id:66
        • geometry: Point (21.32, -1.06)
          • type:Point
          • coordinates: [21.31944331641624, -1.06103580037111]
            • 0:21.31944331641624
            • 1:-1.06103580037111
        • properties: jungle
          • type:jungle
          • Map:10
      • 67: Feature (Point, 2 properties)
        • type:Feature
        • id:67
        • geometry: Point (20.64, -4.60)
          • type:Point
          • coordinates: [20.64055620399623, -4.597522646204296]
            • 0:20.64055620399623
            • 1:-4.597522646204296
        • properties: jungle
          • type:jungle
          • Map:10
      • 68: Feature (Point, 2 properties)
        • type:Feature
        • id:68
        • geometry: Point (23.76, -4.23)
          • type:Point
          • coordinates: [23.76266188892763, -4.227640809646481]
            • 0:23.76266188892763
            • 1:-4.227640809646481
        • properties: jungle
          • type:jungle
          • Map:20
      • 69: Feature (Point, 2 properties)
        • type:Feature
        • id:69
        • geometry: Point (21.20, -0.05)
          • type:Point
          • coordinates: [21.201405190879814, -0.04658258551280429]
            • 0:21.201405190879814
            • 1:-0.04658258551280429
        • properties: jungle
          • type:jungle
          • Map:10
      • 70: Feature (Point, 2 properties)
        • type:Feature
        • id:70
        • geometry: Point (23.74, -0.02)
          • type:Point
          • coordinates: [23.73557905741273, -0.024626845489568353]
            • 0:23.73557905741273
            • 1:-0.024626845489568353
        • properties: jungle
          • type:jungle
          • Map:10
      • 71: Feature (Point, 2 properties)
        • type:Feature
        • id:71
        • geometry: Point (21.43, -1.94)
          • type:Point
          • coordinates: [21.428429841196124, -1.9365464393855116]
            • 0:21.428429841196124
            • 1:-1.9365464393855116
        • properties: jungle
          • type:jungle
          • Map:10
      • 72: Feature (Point, 2 properties)
        • type:Feature
        • id:72
        • geometry: Point (20.29, -3.47)
          • type:Point
          • coordinates: [20.291561016595118, -3.4722916738120726]
            • 0:20.291561016595118
            • 1:-3.4722916738120726
        • properties: jungle
          • type:jungle
          • Map:10
      • 73: Feature (Point, 2 properties)
        • type:Feature
        • id:73
        • geometry: Point (24.23, -0.88)
          • type:Point
          • coordinates: [24.22909750810291, -0.8779899559920028]
            • 0:24.22909750810291
            • 1:-0.8779899559920028
        • properties: jungle
          • type:jungle
          • Map:10
      • 74: Feature (Point, 2 properties)
        • type:Feature
        • id:74
        • geometry: Point (23.67, -1.75)
          • type:Point
          • coordinates: [23.666193211094523, -1.753873270973172]
            • 0:23.666193211094523
            • 1:-1.753873270973172
        • properties: jungle
          • type:jungle
          • Map:10
      • 75: Feature (Point, 2 properties)
        • type:Feature
        • id:75
        • geometry: Point (19.87, -3.35)
          • type:Point
          • coordinates: [19.872014230147954, -3.3473183179921735]
            • 0:19.872014230147954
            • 1:-3.3473183179921735
        • properties: jungle
          • type:jungle
          • Map:10
      • 76: Feature (Point, 2 properties)
        • type:Feature
        • id:76
        • geometry: Point (24.64, -3.02)
          • type:Point
          • coordinates: [24.639364505384883, -3.0202340309554776]
            • 0:24.639364505384883
            • 1:-3.0202340309554776
        • properties: jungle
          • type:jungle
          • Map:10
      • 77: Feature (Point, 2 properties)
        • type:Feature
        • id:77
        • geometry: Point (22.94, 0.07)
          • type:Point
          • coordinates: [22.94126680432888, 0.07375555295840218]
            • 0:22.94126680432888
            • 1:0.07375555295840218
        • properties: jungle
          • type:jungle
          • Map:10
      • 78: Feature (Point, 2 properties)
        • type:Feature
        • id:78
        • geometry: Point (23.65, -5.01)
          • type:Point
          • coordinates: [23.650055588308334, -5.011293167655508]
            • 0:23.650055588308334
            • 1:-5.011293167655508
        • properties: jungle
          • type:jungle
          • Map:10
      • 79: Feature (Point, 2 properties)
        • type:Feature
        • id:79
        • geometry: Point (21.40, -4.91)
          • type:Point
          • coordinates: [21.404352280256724, -4.908580069880297]
            • 0:21.404352280256724
            • 1:-4.908580069880297
        • properties: jungle
          • type:jungle
          • Map:10
      • 80: Feature (Point, 2 properties)
        • type:Feature
        • id:80
        • geometry: Point (22.58, -0.81)
          • type:Point
          • coordinates: [22.5795850420077, -0.8149777193953412]
            • 0:22.5795850420077
            • 1:-0.8149777193953412
        • properties: jungle
          • type:jungle
          • Map:10
      • 81: Feature (Point, 2 properties)
        • type:Feature
        • id:81
        • geometry: Point (20.18, -3.50)
          • type:Point
          • coordinates: [20.183134693024673, -3.504509237857]
            • 0:20.183134693024673
            • 1:-3.504509237857
        • properties: jungle
          • type:jungle
          • Map:10
      • 82: Feature (Point, 2 properties)
        • type:Feature
        • id:82
        • geometry: Point (24.66, -1.32)
          • type:Point
          • coordinates: [24.655089741438708, -1.3244708702410835]
            • 0:24.655089741438708
            • 1:-1.3244708702410835
        • properties: jungle
          • type:jungle
          • Map:10
      • 83: Feature (Point, 2 properties)
        • type:Feature
        • id:83
        • geometry: Point (23.06, -2.15)
          • type:Point
          • coordinates: [23.064304306003297, -2.1469888383805067]
            • 0:23.064304306003297
            • 1:-2.1469888383805067
        • properties: jungle
          • type:jungle
          • Map:10
      • 84: Feature (Point, 2 properties)
        • type:Feature
        • id:84
        • geometry: Point (23.77, -3.12)
          • type:Point
          • coordinates: [23.768093564587595, -3.1197133758022875]
            • 0:23.768093564587595
            • 1:-3.1197133758022875
        • properties: jungle
          • type:jungle
          • Map:10
      • 85: Feature (Point, 2 properties)
        • type:Feature
        • id:85
        • geometry: Point (20.37, -4.73)
          • type:Point
          • coordinates: [20.3681975552904, -4.733452948460204]
            • 0:20.3681975552904
            • 1:-4.733452948460204
        • properties: jungle
          • type:jungle
          • Map:10
      • 86: Feature (Point, 2 properties)
        • type:Feature
        • id:86
        • geometry: Point (20.43, -0.66)
          • type:Point
          • coordinates: [20.431148386034668, -0.6624613221126047]
            • 0:20.431148386034668
            • 1:-0.6624613221126047
        • properties: jungle
          • type:jungle
          • Map:10
      • 87: Feature (Point, 2 properties)
        • type:Feature
        • id:87
        • geometry: Point (20.59, -2.35)
          • type:Point
          • coordinates: [20.59326687738126, -2.3472009507798592]
            • 0:20.59326687738126
            • 1:-2.3472009507798592
        • properties: jungle
          • type:jungle
          • Map:10
      • 88: Feature (Point, 2 properties)
        • type:Feature
        • id:88
        • geometry: Point (19.65, -3.91)
          • type:Point
          • coordinates: [19.654401336070933, -3.906404656089572]
            • 0:19.654401336070933
            • 1:-3.906404656089572
        • properties: jungle
          • type:jungle
          • Map:10
      • 89: Feature (Point, 2 properties)
        • type:Feature
        • id:89
        • geometry: Point (24.30, -2.81)
          • type:Point
          • coordinates: [24.30398349008674, -2.8063136462041927]
            • 0:24.30398349008674
            • 1:-2.8063136462041927
        • properties: jungle
          • type:jungle
          • Map:10
      • 90: Feature (Point, 2 properties)
        • type:Feature
        • id:90
        • geometry: Point (22.27, -4.30)
          • type:Point
          • coordinates: [22.26816255246837, -4.302791484119609]
            • 0:22.26816255246837
            • 1:-4.302791484119609
        • properties: jungle
          • type:jungle
          • Map:10
      • 91: Feature (Point, 2 properties)
        • type:Feature
        • id:91
        • geometry: Point (20.52, -3.62)
          • type:Point
          • coordinates: [20.523759948485463, -3.6215541453429663]
            • 0:20.523759948485463
            • 1:-3.6215541453429663
        • properties: jungle
          • type:jungle
          • Map:10
      • 92: Feature (Point, 2 properties)
        • type:Feature
        • id:92
        • geometry: Point (25.01, -3.27)
          • type:Point
          • coordinates: [25.008561288540488, -3.267363409123484]
            • 0:25.008561288540488
            • 1:-3.267363409123484
        • properties: jungle
          • type:jungle
          • Map:30
      • 93: Feature (Point, 2 properties)
        • type:Feature
        • id:93
        • geometry: Point (24.36, -4.47)
          • type:Point
          • coordinates: [24.357422703940454, -4.473332715242664]
            • 0:24.357422703940454
            • 1:-4.473332715242664
        • properties: jungle
          • type:jungle
          • Map:30
      • 94: Feature (Point, 2 properties)
        • type:Feature
        • id:94
        • geometry: Point (20.70, -3.97)
          • type:Point
          • coordinates: [20.70356434858469, -3.9739108813380417]
            • 0:20.70356434858469
            • 1:-3.9739108813380417
        • properties: jungle
          • type:jungle
          • Map:10
      • 95: Feature (Point, 2 properties)
        • type:Feature
        • id:95
        • geometry: Point (24.09, -4.24)
          • type:Point
          • coordinates: [24.08996095782631, -4.236466011906314]
            • 0:24.08996095782631
            • 1:-4.236466011906314
        • properties: jungle
          • type:jungle
          • Map:10
      • 96: Feature (Point, 2 properties)
        • type:Feature
        • id:96
        • geometry: Point (23.69, -4.90)
          • type:Point
          • coordinates: [23.692742238173274, -4.897353035183249]
            • 0:23.692742238173274
            • 1:-4.897353035183249
        • properties: jungle
          • type:jungle
          • Map:10
      • 97: Feature (Point, 2 properties)
        • type:Feature
        • id:97
        • geometry: Point (23.39, -3.61)
          • type:Point
          • coordinates: [23.392167077648583, -3.6070627538078663]
            • 0:23.392167077648583
            • 1:-3.6070627538078663
        • properties: jungle
          • type:jungle
          • Map:30
      • 98: Feature (Point, 2 properties)
        • type:Feature
        • id:98
        • geometry: Point (22.43, -1.31)
          • type:Point
          • coordinates: [22.432734878097147, -1.3053632680991476]
            • 0:22.432734878097147
            • 1:-1.3053632680991476
        • properties: jungle
          • type:jungle
          • Map:10
      • 99: Feature (Point, 2 properties)
        • type:Feature
        • id:99
        • geometry: Point (21.39, -5.02)
          • type:Point
          • coordinates: [21.39427507324349, -5.0210223086235235]
            • 0:21.39427507324349
            • 1:-5.0210223086235235
        • properties: jungle
          • type:jungle
          • Map:10
      • 100: Feature (Point, 2 properties)
        • type:Feature
        • id:100
        • geometry: Point (20.91, -3.29)
          • type:Point
          • coordinates: [20.905046423624327, -3.2850050686444434]
            • 0:20.905046423624327
            • 1:-3.2850050686444434
        • properties: jungle
          • type:jungle
          • Map:10
      • 101: Feature (Point, 2 properties)
        • type:Feature
        • id:101
        • geometry: Point (21.14, -1.83)
          • type:Point
          • coordinates: [21.13854918875904, -1.8332028738935482]
            • 0:21.13854918875904
            • 1:-1.8332028738935482
        • properties: jungle
          • type:jungle
          • Map:10
      • 102: Feature (Point, 2 properties)
        • type:Feature
        • id:102
        • geometry: Point (24.07, -2.06)
          • type:Point
          • coordinates: [24.067682861730958, -2.0567143090394797]
            • 0:24.067682861730958
            • 1:-2.0567143090394797
        • properties: jungle
          • type:jungle
          • Map:10
      • 103: Feature (Point, 2 properties)
        • type:Feature
        • id:103
        • geometry: Point (19.95, -4.16)
          • type:Point
          • coordinates: [19.952070802459012, -4.161402738779659]
            • 0:19.952070802459012
            • 1:-4.161402738779659
        • properties: jungle
          • type:jungle
          • Map:10
      • 104: Feature (Point, 2 properties)
        • type:Feature
        • id:104
        • geometry: Point (19.59, -3.61)
          • type:Point
          • coordinates: [19.587863345982417, -3.611775532030548]
            • 0:19.587863345982417
            • 1:-3.611775532030548
        • properties: jungle
          • type:jungle
          • Map:10
      • 105: Feature (Point, 2 properties)
        • type:Feature
        • id:105
        • geometry: Point (24.19, -1.94)
          • type:Point
          • coordinates: [24.185311716549506, -1.9366656299181473]
            • 0:24.185311716549506
            • 1:-1.9366656299181473
        • properties: jungle
          • type:jungle
          • Map:10
      • 106: Feature (Point, 2 properties)
        • type:Feature
        • id:106
        • geometry: Point (22.59, -4.21)
          • type:Point
          • coordinates: [22.585584352509045, -4.21009911535647]
            • 0:22.585584352509045
            • 1:-4.21009911535647
        • properties: jungle
          • type:jungle
          • Map:10
      • 107: Feature (Point, 2 properties)
        • type:Feature
        • id:107
        • geometry: Point (21.49, -0.71)
          • type:Point
          • coordinates: [21.493178275672644, -0.7073303215318281]
            • 0:21.493178275672644
            • 1:-0.7073303215318281
        • properties: jungle
          • type:jungle
          • Map:10
      • 108: Feature (Point, 2 properties)
        • type:Feature
        • id:108
        • geometry: Point (21.09, -1.97)
          • type:Point
          • coordinates: [21.092033151399498, -1.9738478658391216]
            • 0:21.092033151399498
            • 1:-1.9738478658391216
        • properties: jungle
          • type:jungle
          • Map:10
      • 109: Feature (Point, 2 properties)
        • type:Feature
        • id:109
        • geometry: Point (21.13, -0.87)
          • type:Point
          • coordinates: [21.131009056371543, -0.8693408519248675]
            • 0:21.131009056371543
            • 1:-0.8693408519248675
        • properties: jungle
          • type:jungle
          • Map:10
      • 110: Feature (Point, 2 properties)
        • type:Feature
        • id:110
        • geometry: Point (21.30, -5.08)
          • type:Point
          • coordinates: [21.303776537214016, -5.07512822899137]
            • 0:21.303776537214016
            • 1:-5.07512822899137
        • properties: jungle
          • type:jungle
          • Map:10
      • 111: Feature (Point, 2 properties)
        • type:Feature
        • id:111
        • geometry: Point (20.23, -3.15)
          • type:Point
          • coordinates: [20.230787048720714, -3.1502122559695]
            • 0:20.230787048720714
            • 1:-3.1502122559695
        • properties: jungle
          • type:jungle
          • Map:10
      • 112: Feature (Point, 2 properties)
        • type:Feature
        • id:112
        • geometry: Point (23.00, -0.94)
          • type:Point
          • coordinates: [23.000293539066902, -0.9354810744153695]
            • 0:23.000293539066902
            • 1:-0.9354810744153695
        • properties: jungle
          • type:jungle
          • Map:10
      • 113: Feature (Point, 2 properties)
        • type:Feature
        • id:113
        • geometry: Point (21.97, -3.06)
          • type:Point
          • coordinates: [21.971790518245434, -3.0620898711507865]
            • 0:21.971790518245434
            • 1:-3.0620898711507865
        • properties: jungle
          • type:jungle
          • Map:30
      • 114: Feature (Point, 2 properties)
        • type:Feature
        • id:114
        • geometry: Point (21.25, -2.38)
          • type:Point
          • coordinates: [21.246647012674995, -2.3820640440404235]
            • 0:21.246647012674995
            • 1:-2.3820640440404235
        • properties: jungle
          • type:jungle
          • Map:10
      • 115: Feature (Point, 2 properties)
        • type:Feature
        • id:115
        • geometry: Point (20.54, -3.10)
          • type:Point
          • coordinates: [20.539396317200314, -3.100880828362849]
            • 0:20.539396317200314
            • 1:-3.100880828362849
        • properties: jungle
          • type:jungle
          • Map:10
      • 116: Feature (Point, 2 properties)
        • type:Feature
        • id:116
        • geometry: Point (25.02, -1.56)
          • type:Point
          • coordinates: [25.016639157852403, -1.5630114819163021]
            • 0:25.016639157852403
            • 1:-1.5630114819163021
        • properties: jungle
          • type:jungle
          • Map:10
      • 117: Feature (Point, 2 properties)
        • type:Feature
        • id:117
        • geometry: Point (22.87, -3.99)
          • type:Point
          • coordinates: [22.866466449817214, -3.985247500611832]
            • 0:22.866466449817214
            • 1:-3.985247500611832
        • properties: jungle
          • type:jungle
          • Map:10
      • 118: Feature (Point, 2 properties)
        • type:Feature
        • id:118
        • geometry: Point (20.17, -3.80)
          • type:Point
          • coordinates: [20.17013534585081, -3.7972965873841296]
            • 0:20.17013534585081
            • 1:-3.7972965873841296
        • properties: jungle
          • type:jungle
          • Map:10
      • 119: Feature (Point, 2 properties)
        • type:Feature
        • id:119
        • geometry: Point (21.96, -2.12)
          • type:Point
          • coordinates: [21.958612325067424, -2.1153591291791867]
            • 0:21.958612325067424
            • 1:-2.1153591291791867
        • properties: jungle
          • type:jungle
          • Map:10
      • 120: Feature (Point, 2 properties)
        • type:Feature
        • id:120
        • geometry: Point (22.36, -2.97)
          • type:Point
          • coordinates: [22.35650989203794, -2.9737585635022032]
            • 0:22.35650989203794
            • 1:-2.9737585635022032
        • properties: jungle
          • type:jungle
          • Map:10
      • 121: Feature (Point, 2 properties)
        • type:Feature
        • id:121
        • geometry: Point (21.06, -4.47)
          • type:Point
          • coordinates: [21.063525599175442, -4.4674778722119335]
            • 0:21.063525599175442
            • 1:-4.4674778722119335
        • properties: jungle
          • type:jungle
          • Map:20
      • 122: Feature (Point, 2 properties)
        • type:Feature
        • id:122
        • geometry: Point (24.19, -1.25)
          • type:Point
          • coordinates: [24.193412717971945, -1.2510666189630897]
            • 0:24.193412717971945
            • 1:-1.2510666189630897
        • properties: jungle
          • type:jungle
          • Map:10
      • 123: Feature (Point, 2 properties)
        • type:Feature
        • id:123
        • geometry: Point (23.13, -0.38)
          • type:Point
          • coordinates: [23.125284992864117, -0.37550487509111063]
            • 0:23.125284992864117
            • 1:-0.37550487509111063
        • properties: jungle
          • type:jungle
          • Map:10
      • 124: Feature (Point, 2 properties)
        • type:Feature
        • id:124
        • geometry: Point (23.98, -0.61)
          • type:Point
          • coordinates: [23.97640501629119, -0.6120745032332565]
            • 0:23.97640501629119
            • 1:-0.6120745032332565
        • properties: jungle
          • type:jungle
          • Map:10
      • 125: Feature (Point, 2 properties)
        • type:Feature
        • id:125
        • geometry: Point (21.97, -2.42)
          • type:Point
          • coordinates: [21.96779980602583, -2.4204232110412827]
            • 0:21.96779980602583
            • 1:-2.4204232110412827
        • properties: jungle
          • type:jungle
          • Map:10
      • 126: Feature (Point, 2 properties)
        • type:Feature
        • id:126
        • geometry: Point (22.87, -4.82)
          • type:Point
          • coordinates: [22.87032273352287, -4.816192026848377]
            • 0:22.87032273352287
            • 1:-4.816192026848377
        • properties: jungle
          • type:jungle
          • Map:10
      • 127: Feature (Point, 2 properties)
        • type:Feature
        • id:127
        • geometry: Point (23.61, -3.05)
          • type:Point
          • coordinates: [23.612440285664253, -3.046874596250544]
            • 0:23.612440285664253
            • 1:-3.046874596250544
        • properties: jungle
          • type:jungle
          • Map:30
      • 128: Feature (Point, 2 properties)
        • type:Feature
        • id:128
        • geometry: Point (20.27, -3.65)
          • type:Point
          • coordinates: [20.274963595929727, -3.651480061359816]
            • 0:20.274963595929727
            • 1:-3.651480061359816
        • properties: jungle
          • type:jungle
          • Map:10
      • 129: Feature (Point, 2 properties)
        • type:Feature
        • id:129
        • geometry: Point (23.66, -2.80)
          • type:Point
          • coordinates: [23.655825580197845, -2.7997129588793683]
            • 0:23.655825580197845
            • 1:-2.7997129588793683
        • properties: jungle
          • type:jungle
          • Map:10
      • 130: Feature (Point, 2 properties)
        • type:Feature
        • id:130
        • geometry: Point (19.99, -1.57)
          • type:Point
          • coordinates: [19.986746503077484, -1.5674803345381267]
            • 0:19.986746503077484
            • 1:-1.5674803345381267
        • properties: jungle
          • type:jungle
          • Map:10
      • 131: Feature (Point, 2 properties)
        • type:Feature
        • id:131
        • geometry: Point (21.10, -1.33)
          • type:Point
          • coordinates: [21.103144928436027, -1.3332354379910631]
            • 0:21.103144928436027
            • 1:-1.3332354379910631
        • properties: jungle
          • type:jungle
          • Map:10
      • 132: Feature (Point, 2 properties)
        • type:Feature
        • id:132
        • geometry: Point (21.42, -0.76)
          • type:Point
          • coordinates: [21.419880242859428, -0.7589977849884078]
            • 0:21.419880242859428
            • 1:-0.7589977849884078
        • properties: jungle
          • type:jungle
          • Map:10
      • 133: Feature (Point, 2 properties)
        • type:Feature
        • id:133
        • geometry: Point (20.47, -1.02)
          • type:Point
          • coordinates: [20.46757719391171, -1.0233500258468295]
            • 0:20.46757719391171
            • 1:-1.0233500258468295
        • properties: jungle
          • type:jungle
          • Map:10
      • 134: Feature (Point, 2 properties)
        • type:Feature
        • id:134
        • geometry: Point (21.56, -3.80)
          • type:Point
          • coordinates: [21.561278052386353, -3.8005502297544695]
            • 0:21.561278052386353
            • 1:-3.8005502297544695
        • properties: jungle
          • type:jungle
          • Map:10
      • 135: Feature (Point, 2 properties)
        • type:Feature
        • id:135
        • geometry: Point (21.20, -0.14)
          • type:Point
          • coordinates: [21.198277602124197, -0.14237227277150097]
            • 0:21.198277602124197
            • 1:-0.14237227277150097
        • properties: jungle
          • type:jungle
          • Map:10
      • 136: Feature (Point, 2 properties)
        • type:Feature
        • id:136
        • geometry: Point (21.66, -1.25)
          • type:Point
          • coordinates: [21.66011306854139, -1.2514862414174897]
            • 0:21.66011306854139
            • 1:-1.2514862414174897
        • properties: jungle
          • type:jungle
          • Map:10
      • 137: Feature (Point, 2 properties)
        • type:Feature
        • id:137
        • geometry: Point (21.39, -0.24)
          • type:Point
          • coordinates: [21.389507541427463, -0.24213277360748844]
            • 0:21.389507541427463
            • 1:-0.24213277360748844
        • properties: jungle
          • type:jungle
          • Map:10
      • 138: Feature (Point, 2 properties)
        • type:Feature
        • id:138
        • geometry: Point (20.67, -1.84)
          • type:Point
          • coordinates: [20.672089755281164, -1.8375040823012159]
            • 0:20.672089755281164
            • 1:-1.8375040823012159
        • properties: jungle
          • type:jungle
          • Map:10
      • 139: Feature (Point, 2 properties)
        • type:Feature
        • id:139
        • geometry: Point (19.87, -2.99)
          • type:Point
          • coordinates: [19.87483710010962, -2.9879664303714284]
            • 0:19.87483710010962
            • 1:-2.9879664303714284
        • properties: jungle
          • type:jungle
          • Map:10
      • 140: Feature (Point, 2 properties)
        • type:Feature
        • id:140
        • geometry: Point (25.25, -1.09)
          • type:Point
          • coordinates: [25.251470901009768, -1.0926785058355897]
            • 0:25.251470901009768
            • 1:-1.0926785058355897
        • properties: jungle
          • type:jungle
          • Map:10
      • 141: Feature (Point, 2 properties)
        • type:Feature
        • id:141
        • geometry: Point (24.62, -2.78)
          • type:Point
          • coordinates: [24.616021308474345, -2.7757273153617494]
            • 0:24.616021308474345
            • 1:-2.7757273153617494
        • properties: jungle
          • type:jungle
          • Map:10
      • 142: Feature (Point, 2 properties)
        • type:Feature
        • id:142
        • geometry: Point (22.03, -0.34)
          • type:Point
          • coordinates: [22.030077859876307, -0.3370202080362158]
            • 0:22.030077859876307
            • 1:-0.3370202080362158
        • properties: jungle
          • type:jungle
          • Map:10
      • 143: Feature (Point, 2 properties)
        • type:Feature
        • id:143
        • geometry: Point (23.63, -0.30)
          • type:Point
          • coordinates: [23.6296204957539, -0.29973784306657963]
            • 0:23.6296204957539
            • 1:-0.29973784306657963
        • properties: jungle
          • type:jungle
          • Map:10
      • 144: Feature (Point, 2 properties)
        • type:Feature
        • id:144
        • geometry: Point (21.71, -3.77)
          • type:Point
          • coordinates: [21.708350549706214, -3.7681731826606657]
            • 0:21.708350549706214
            • 1:-3.7681731826606657
        • properties: jungle
          • type:jungle
          • Map:30
      • 145: Feature (Point, 2 properties)
        • type:Feature
        • id:145
        • geometry: Point (23.43, -1.13)
          • type:Point
          • coordinates: [23.433185850418727, -1.126821464320758]
            • 0:23.433185850418727
            • 1:-1.126821464320758
        • properties: jungle
          • type:jungle
          • Map:10
      • 146: Feature (Point, 2 properties)
        • type:Feature
        • id:146
        • geometry: Point (21.55, -0.78)
          • type:Point
          • coordinates: [21.554897024061013, -0.77734110312422]
            • 0:21.554897024061013
            • 1:-0.77734110312422
        • properties: jungle
          • type:jungle
          • Map:10
      • 147: Feature (Point, 2 properties)
        • type:Feature
        • id:147
        • geometry: Point (24.47, -4.16)
          • type:Point
          • coordinates: [24.46551936700587, -4.164427897671288]
            • 0:24.46551936700587
            • 1:-4.164427897671288
        • properties: jungle
          • type:jungle
          • Map:30
      • 148: Feature (Point, 2 properties)
        • type:Feature
        • id:148
        • geometry: Point (22.19, -0.89)
          • type:Point
          • coordinates: [22.19456848126941, -0.8929395252577829]
            • 0:22.19456848126941
            • 1:-0.8929395252577829
        • properties: jungle
          • type:jungle
          • Map:10
      • 149: Feature (Point, 2 properties)
        • type:Feature
        • id:149
        • geometry: Point (23.08, -2.70)
          • type:Point
          • coordinates: [23.079417256177667, -2.703046468531376]
            • 0:23.079417256177667
            • 1:-2.703046468531376
        • properties: jungle
          • type:jungle
          • Map:10
      • 150: Feature (Point, 2 properties)
        • type:Feature
        • id:150
        • geometry: Point (23.37, -3.44)
          • type:Point
          • coordinates: [23.369013187012985, -3.4416273375810844]
            • 0:23.369013187012985
            • 1:-3.4416273375810844
        • properties: jungle
          • type:jungle
          • Map:10
      • 151: Feature (Point, 2 properties)
        • type:Feature
        • id:151
        • geometry: Point (24.27, -3.07)
          • type:Point
          • coordinates: [24.271380024702246, -3.0745709938012165]
            • 0:24.271380024702246
            • 1:-3.0745709938012165
        • properties: jungle
          • type:jungle
          • Map:10
      • 152: Feature (Point, 2 properties)
        • type:Feature
        • id:152
        • geometry: Point (20.96, -2.65)
          • type:Point
          • coordinates: [20.963440465204464, -2.6505554214521805]
            • 0:20.963440465204464
            • 1:-2.6505554214521805
        • properties: jungle
          • type:jungle
          • Map:10
      • 153: Feature (Point, 2 properties)
        • type:Feature
        • id:153
        • geometry: Point (22.02, -0.98)
          • type:Point
          • coordinates: [22.01708440146059, -0.9751817885817639]
            • 0:22.01708440146059
            • 1:-0.9751817885817639
        • properties: jungle
          • type:jungle
          • Map:10
      • 154: Feature (Point, 2 properties)
        • type:Feature
        • id:154
        • geometry: Point (21.95, -1.09)
          • type:Point
          • coordinates: [21.949139403454552, -1.0905558970290585]
            • 0:21.949139403454552
            • 1:-1.0905558970290585
        • properties: jungle
          • type:jungle
          • Map:10
      • 155: Feature (Point, 2 properties)
        • type:Feature
        • id:155
        • geometry: Point (23.07, -1.02)
          • type:Point
          • coordinates: [23.066269737729602, -1.0230519602098962]
            • 0:23.066269737729602
            • 1:-1.0230519602098962
        • properties: jungle
          • type:jungle
          • Map:10
      • 156: Feature (Point, 2 properties)
        • type:Feature
        • id:156
        • geometry: Point (22.70, -3.82)
          • type:Point
          • coordinates: [22.703329356518413, -3.8199336166614835]
            • 0:22.703329356518413
            • 1:-3.8199336166614835
        • properties: jungle
          • type:jungle
          • Map:10
      • 157: Feature (Point, 2 properties)
        • type:Feature
        • id:157
        • geometry: Point (23.43, -1.33)
          • type:Point
          • coordinates: [23.434915902968147, -1.3332701948549022]
            • 0:23.434915902968147
            • 1:-1.3332701948549022
        • properties: jungle
          • type:jungle
          • Map:10
      • 158: Feature (Point, 2 properties)
        • type:Feature
        • id:158
        • geometry: Point (22.75, -0.21)
          • type:Point
          • coordinates: [22.75443970631332, -0.21475142046467632]
            • 0:22.75443970631332
            • 1:-0.21475142046467632
        • properties: jungle
          • type:jungle
          • Map:10
      • 159: Feature (Point, 2 properties)
        • type:Feature
        • id:159
        • geometry: Point (22.64, -4.29)
          • type:Point
          • coordinates: [22.63696941876442, -4.294172970928609]
            • 0:22.63696941876442
            • 1:-4.294172970928609
        • properties: jungle
          • type:jungle
          • Map:10
      • 160: Feature (Point, 2 properties)
        • type:Feature
        • id:160
        • geometry: Point (21.47, -1.83)
          • type:Point
          • coordinates: [21.469673232919764, -1.8319595062927923]
            • 0:21.469673232919764
            • 1:-1.8319595062927923
        • properties: jungle
          • type:jungle
          • Map:10
      • 161: Feature (Point, 2 properties)
        • type:Feature
        • id:161
        • geometry: Point (21.02, -1.87)
          • type:Point
          • coordinates: [21.018793153821058, -1.8676426933769823]
            • 0:21.018793153821058
            • 1:-1.8676426933769823
        • properties: jungle
          • type:jungle
          • Map:10
      • 162: Feature (Point, 2 properties)
        • type:Feature
        • id:162
        • geometry: Point (24.99, -1.36)
          • type:Point
          • coordinates: [24.98824610004739, -1.3569740086524085]
            • 0:24.98824610004739
            • 1:-1.3569740086524085
        • properties: jungle
          • type:jungle
          • Map:10
      • 163: Feature (Point, 2 properties)
        • type:Feature
        • id:163
        • geometry: Point (20.39, -1.43)
          • type:Point
          • coordinates: [20.389456599026698, -1.4266714049470344]
            • 0:20.389456599026698
            • 1:-1.4266714049470344
        • properties: jungle
          • type:jungle
          • Map:10
      • 164: Feature (Point, 2 properties)
        • type:Feature
        • id:164
        • geometry: Point (23.12, -3.17)
          • type:Point
          • coordinates: [23.122186779875488, -3.1729707974885333]
            • 0:23.122186779875488
            • 1:-3.1729707974885333
        • properties: jungle
          • type:jungle
          • Map:10
      • 165: Feature (Point, 2 properties)
        • type:Feature
        • id:165
        • geometry: Point (22.20, -3.46)
          • type:Point
          • coordinates: [22.198547231777376, -3.4624472684391683]
            • 0:22.198547231777376
            • 1:-3.4624472684391683
        • properties: jungle
          • type:jungle
          • Map:10
      • 166: Feature (Point, 2 properties)
        • type:Feature
        • id:166
        • geometry: Point (24.80, -0.42)
          • type:Point
          • coordinates: [24.798373719328616, -0.42442504482556365]
            • 0:24.798373719328616
            • 1:-0.42442504482556365
        • properties: jungle
          • type:jungle
          • Map:10
      • 167: Feature (Point, 2 properties)
        • type:Feature
        • id:167
        • geometry: Point (24.41, -1.36)
          • type:Point
          • coordinates: [24.40788535719502, -1.3550853860403307]
            • 0:24.40788535719502
            • 1:-1.3550853860403307
        • properties: jungle
          • type:jungle
          • Map:10
      • 168: Feature (Point, 2 properties)
        • type:Feature
        • id:168
        • geometry: Point (23.15, -5.02)
          • type:Point
          • coordinates: [23.15262615727368, -5.020873630711717]
            • 0:23.15262615727368
            • 1:-5.020873630711717
        • properties: jungle
          • type:jungle
          • Map:10
      • 169: Feature (Point, 2 properties)
        • type:Feature
        • id:169
        • geometry: Point (22.87, -1.85)
          • type:Point
          • coordinates: [22.873559379574182, -1.8540947263067094]
            • 0:22.873559379574182
            • 1:-1.8540947263067094
        • properties: jungle
          • type:jungle
          • Map:10
      • 170: Feature (Point, 2 properties)
        • type:Feature
        • id:170
        • geometry: Point (22.82, -2.76)
          • type:Point
          • coordinates: [22.819542945969275, -2.761612267527853]
            • 0:22.819542945969275
            • 1:-2.761612267527853
        • properties: jungle
          • type:jungle
          • Map:10
      • 171: Feature (Point, 2 properties)
        • type:Feature
        • id:171
        • geometry: Point (20.01, -0.87)
          • type:Point
          • coordinates: [20.009646895154095, -0.8664157830486063]
            • 0:20.009646895154095
            • 1:-0.8664157830486063
        • properties: jungle
          • type:jungle
          • Map:10
      • 172: Feature (Point, 2 properties)
        • type:Feature
        • id:172
        • geometry: Point (22.10, 0.16)
          • type:Point
          • coordinates: [22.09788399061458, 0.15935562102142806]
            • 0:22.09788399061458
            • 1:0.15935562102142806
        • properties: jungle
          • type:jungle
          • Map:10
      • 173: Feature (Point, 2 properties)
        • type:Feature
        • id:173
        • geometry: Point (22.09, -3.91)
          • type:Point
          • coordinates: [22.0877258615192, -3.9068188249938176]
            • 0:22.0877258615192
            • 1:-3.9068188249938176
        • properties: jungle
          • type:jungle
          • Map:10
      • 174: Feature (Point, 2 properties)
        • type:Feature
        • id:174
        • geometry: Point (22.28, -1.34)
          • type:Point
          • coordinates: [22.27633897779216, -1.3419060551922746]
            • 0:22.27633897779216
            • 1:-1.3419060551922746
        • properties: jungle
          • type:jungle
          • Map:10
      • 175: Feature (Point, 2 properties)
        • type:Feature
        • id:175
        • geometry: Point (21.88, -3.24)
          • type:Point
          • coordinates: [21.87883713782309, -3.2420118248944196]
            • 0:21.87883713782309
            • 1:-3.2420118248944196
        • properties: jungle
          • type:jungle
          • Map:10
      • 176: Feature (Point, 2 properties)
        • type:Feature
        • id:176
        • geometry: Point (22.81, 0.25)
          • type:Point
          • coordinates: [22.810062847090457, 0.25209781389777686]
            • 0:22.810062847090457
            • 1:0.25209781389777686
        • properties: jungle
          • type:jungle
          • Map:10
      • 177: Feature (Point, 2 properties)
        • type:Feature
        • id:177
        • geometry: Point (23.80, -3.88)
          • type:Point
          • coordinates: [23.79870963296736, -3.8766926726548565]
            • 0:23.79870963296736
            • 1:-3.8766926726548565
        • properties: jungle
          • type:jungle
          • Map:10
      • 178: Feature (Point, 2 properties)
        • type:Feature
        • id:178
        • geometry: Point (24.33, -2.89)
          • type:Point
          • coordinates: [24.332707895498327, -2.8909665037025385]
            • 0:24.332707895498327
            • 1:-2.8909665037025385
        • properties: jungle
          • type:jungle
          • Map:10
      • 179: Feature (Point, 2 properties)
        • type:Feature
        • id:179
        • geometry: Point (25.12, -1.05)
          • type:Point
          • coordinates: [25.123250724356595, -1.0532214292841495]
            • 0:25.123250724356595
            • 1:-1.0532214292841495
        • properties: jungle
          • type:jungle
          • Map:10
      • 180: Feature (Point, 2 properties)
        • type:Feature
        • id:180
        • geometry: Point (23.70, -1.67)
          • type:Point
          • coordinates: [23.696565562414293, -1.6679583389281438]
            • 0:23.696565562414293
            • 1:-1.6679583389281438
        • properties: jungle
          • type:jungle
          • Map:10
      • 181: Feature (Point, 2 properties)
        • type:Feature
        • id:181
        • geometry: Point (21.59, -3.86)
          • type:Point
          • coordinates: [21.590755522055517, -3.862677748564097]
            • 0:21.590755522055517
            • 1:-3.862677748564097
        • properties: jungle
          • type:jungle
          • Map:30
      • 182: Feature (Point, 2 properties)
        • type:Feature
        • id:182
        • geometry: Point (22.55, -1.86)
          • type:Point
          • coordinates: [22.547006975521466, -1.8554618155218532]
            • 0:22.547006975521466
            • 1:-1.8554618155218532
        • properties: jungle
          • type:jungle
          • Map:10
      • 183: Feature (Point, 2 properties)
        • type:Feature
        • id:183
        • geometry: Point (20.47, -1.10)
          • type:Point
          • coordinates: [20.47407814292901, -1.1039470857268354]
            • 0:20.47407814292901
            • 1:-1.1039470857268354
        • properties: jungle
          • type:jungle
          • Map:10
      • 184: Feature (Point, 2 properties)
        • type:Feature
        • id:184
        • geometry: Point (23.22, -4.44)
          • type:Point
          • coordinates: [23.220286038404822, -4.442966354462864]
            • 0:23.220286038404822
            • 1:-4.442966354462864
        • properties: jungle
          • type:jungle
          • Map:10
      • 185: Feature (Point, 2 properties)
        • type:Feature
        • id:185
        • geometry: Point (19.78, -1.98)
          • type:Point
          • coordinates: [19.778755851522025, -1.9804559467197458]
            • 0:19.778755851522025
            • 1:-1.9804559467197458
        • properties: jungle
          • type:jungle
          • Map:10
      • 186: Feature (Point, 2 properties)
        • type:Feature
        • id:186
        • geometry: Point (19.70, -2.47)
          • type:Point
          • coordinates: [19.70245172289017, -2.4677726396539965]
            • 0:19.70245172289017
            • 1:-2.4677726396539965
        • properties: jungle
          • type:jungle
          • Map:10
      • 187: Feature (Point, 2 properties)
        • type:Feature
        • id:187
        • geometry: Point (24.39, -1.18)
          • type:Point
          • coordinates: [24.3914105246929, -1.1776637515855553]
            • 0:24.3914105246929
            • 1:-1.1776637515855553
        • properties: jungle
          • type:jungle
          • Map:10
      • 188: Feature (Point, 2 properties)
        • type:Feature
        • id:188
        • geometry: Point (25.04, -3.03)
          • type:Point
          • coordinates: [25.035822851724983, -3.033628554108344]
            • 0:25.035822851724983
            • 1:-3.033628554108344
        • properties: jungle
          • type:jungle
          • Map:10
      • 189: Feature (Point, 2 properties)
        • type:Feature
        • id:189
        • geometry: Point (24.66, -2.29)
          • type:Point
          • coordinates: [24.662795927124275, -2.2939757565754824]
            • 0:24.662795927124275
            • 1:-2.2939757565754824
        • properties: jungle
          • type:jungle
          • Map:10
      • 190: Feature (Point, 2 properties)
        • type:Feature
        • id:190
        • geometry: Point (24.63, -1.05)
          • type:Point
          • coordinates: [24.63063862360145, -1.0535044615844658]
            • 0:24.63063862360145
            • 1:-1.0535044615844658
        • properties: jungle
          • type:jungle
          • Map:10
      • 191: Feature (Point, 2 properties)
        • type:Feature
        • id:191
        • geometry: Point (19.78, -1.99)
          • type:Point
          • coordinates: [19.781294156512338, -1.9915211956492413]
            • 0:19.781294156512338
            • 1:-1.9915211956492413
        • properties: jungle
          • type:jungle
          • Map:10
      • 192: Feature (Point, 2 properties)
        • type:Feature
        • id:192
        • geometry: Point (21.41, -0.53)
          • type:Point
          • coordinates: [21.410981049220318, -0.5318778285835859]
            • 0:21.410981049220318
            • 1:-0.5318778285835859
        • properties: jungle
          • type:jungle
          • Map:10
      • 193: Feature (Point, 2 properties)
        • type:Feature
        • id:193
        • geometry: Point (21.65, -1.19)
          • type:Point
          • coordinates: [21.645164254169032, -1.192031768075436]
            • 0:21.645164254169032
            • 1:-1.192031768075436
        • properties: jungle
          • type:jungle
          • Map:10
      • 194: Feature (Point, 2 properties)
        • type:Feature
        • id:194
        • geometry: Point (22.00, -0.28)
          • type:Point
          • coordinates: [21.997598026214973, -0.28296530506471207]
            • 0:21.997598026214973
            • 1:-0.28296530506471207
        • properties: jungle
          • type:jungle
          • Map:10
      • 195: Feature (Point, 2 properties)
        • type:Feature
        • id:195
        • geometry: Point (24.03, -4.26)
          • type:Point
          • coordinates: [24.032042487119885, -4.263920248212124]
            • 0:24.032042487119885
            • 1:-4.263920248212124
        • properties: jungle
          • type:jungle
          • Map:10
      • 196: Feature (Point, 2 properties)
        • type:Feature
        • id:196
        • geometry: Point (24.69, -1.20)
          • type:Point
          • coordinates: [24.69028740163234, -1.2018274925621986]
            • 0:24.69028740163234
            • 1:-1.2018274925621986
        • properties: jungle
          • type:jungle
          • Map:10
      • 197: Feature (Point, 2 properties)
        • type:Feature
        • id:197
        • geometry: Point (21.56, -5.04)
          • type:Point
          • coordinates: [21.560110315726043, -5.044868651497371]
            • 0:21.560110315726043
            • 1:-5.044868651497371
        • properties: jungle
          • type:jungle
          • Map:10
      • 198: Feature (Point, 2 properties)
        • type:Feature
        • id:198
        • geometry: Point (22.37, -0.75)
          • type:Point
          • coordinates: [22.36756281073534, -0.7457751620956128]
            • 0:22.36756281073534
            • 1:-0.7457751620956128
        • properties: jungle
          • type:jungle
          • Map:10
      • 199: Feature (Point, 2 properties)
        • type:Feature
        • id:199
        • geometry: Point (23.51, -2.02)
          • type:Point
          • coordinates: [23.513240502265685, -2.0192334557889775]
            • 0:23.513240502265685
            • 1:-2.0192334557889775
        • properties: jungle
          • type:jungle
          • Map:10
      • 200: Feature (Point, 2 properties)
        • type:Feature
        • id:200
        • geometry: Point (21.64, -4.41)
          • type:Point
          • coordinates: [21.64177784055881, -4.410421444525177]
            • 0:21.64177784055881
            • 1:-4.410421444525177
        • properties: jungle
          • type:jungle
          • Map:10
      • 201: Feature (Point, 2 properties)
        • type:Feature
        • id:201
        • geometry: Point (23.07, -0.30)
          • type:Point
          • coordinates: [23.069558809679386, -0.2961246484523784]
            • 0:23.069558809679386
            • 1:-0.2961246484523784
        • properties: jungle
          • type:jungle
          • Map:10
      • 202: Feature (Point, 2 properties)
        • type:Feature
        • id:202
        • geometry: Point (23.20, -2.06)
          • type:Point
          • coordinates: [23.202260537250012, -2.0602122610033775]
            • 0:23.202260537250012
            • 1:-2.0602122610033775
        • properties: jungle
          • type:jungle
          • Map:10
      • 203: Feature (Point, 2 properties)
        • type:Feature
        • id:203
        • geometry: Point (24.08, -3.23)
          • type:Point
          • coordinates: [24.080796513483783, -3.231737521326783]
            • 0:24.080796513483783
            • 1:-3.231737521326783
        • properties: jungle
          • type:jungle
          • Map:10
      • 204: Feature (Point, 2 properties)
        • type:Feature
        • id:204
        • geometry: Point (25.06, -2.79)
          • type:Point
          • coordinates: [25.058773235715783, -2.792584899784797]
            • 0:25.058773235715783
            • 1:-2.792584899784797
        • properties: jungle
          • type:jungle
          • Map:10
      • 205: Feature (Point, 2 properties)
        • type:Feature
        • id:205
        • geometry: Point (20.22, -4.43)
          • type:Point
          • coordinates: [20.21730763595366, -4.4277508745698455]
            • 0:20.21730763595366
            • 1:-4.4277508745698455
        • properties: jungle
          • type:jungle
          • Map:10
      • 206: Feature (Point, 2 properties)
        • type:Feature
        • id:206
        • geometry: Point (22.96, -2.34)
          • type:Point
          • coordinates: [22.957638600045794, -2.3422003774189513]
            • 0:22.957638600045794
            • 1:-2.3422003774189513
        • properties: jungle
          • type:jungle
          • Map:10
      • 207: Feature (Point, 2 properties)
        • type:Feature
        • id:207
        • geometry: Point (22.31, -4.68)
          • type:Point
          • coordinates: [22.311566361258233, -4.679422354291528]
            • 0:22.311566361258233
            • 1:-4.679422354291528
        • properties: jungle
          • type:jungle
          • Map:10
      • 208: Feature (Point, 2 properties)
        • type:Feature
        • id:208
        • geometry: Point (20.42, -2.81)
          • type:Point
          • coordinates: [20.424127768554598, -2.808925717165184]
            • 0:20.424127768554598
            • 1:-2.808925717165184
        • properties: jungle
          • type:jungle
          • Map:10
      • 209: Feature (Point, 2 properties)
        • type:Feature
        • id:209
        • geometry: Point (24.94, -3.64)
          • type:Point
          • coordinates: [24.941658170613827, -3.643664617453883]
            • 0:24.941658170613827
            • 1:-3.643664617453883
        • properties: jungle
          • type:jungle
          • Map:10
      • 210: Feature (Point, 2 properties)
        • type:Feature
        • id:210
        • geometry: Point (21.71, -1.01)
          • type:Point
          • coordinates: [21.706132549835072, -1.006016428427435]
            • 0:21.706132549835072
            • 1:-1.006016428427435
        • properties: jungle
          • type:jungle
          • Map:10
      • 211: Feature (Point, 2 properties)
        • type:Feature
        • id:211
        • geometry: Point (20.43, -3.27)
          • type:Point
          • coordinates: [20.42620168603754, -3.2668849986993136]
            • 0:20.42620168603754
            • 1:-3.2668849986993136
        • properties: jungle
          • type:jungle
          • Map:10
      • 212: Feature (Point, 2 properties)
        • type:Feature
        • id:212
        • geometry: Point (21.09, -3.28)
          • type:Point
          • coordinates: [21.085282052908486, -3.279251965783782]
            • 0:21.085282052908486
            • 1:-3.279251965783782
        • properties: jungle
          • type:jungle
          • Map:10
      • 213: Feature (Point, 2 properties)
        • type:Feature
        • id:213
        • geometry: Point (24.21, -4.51)
          • type:Point
          • coordinates: [24.214423228200715, -4.511456400945334]
            • 0:24.214423228200715
            • 1:-4.511456400945334
        • properties: jungle
          • type:jungle
          • Map:10
      • 214: Feature (Point, 2 properties)
        • type:Feature
        • id:214
        • geometry: Point (22.50, -4.02)
          • type:Point
          • coordinates: [22.5030277974818, -4.024678638910609]
            • 0:22.5030277974818
            • 1:-4.024678638910609
        • properties: jungle
          • type:jungle
          • Map:10
      • 215: Feature (Point, 2 properties)
        • type:Feature
        • id:215
        • geometry: Point (21.28, -4.08)
          • type:Point
          • coordinates: [21.279628805327235, -4.076125273562355]
            • 0:21.279628805327235
            • 1:-4.076125273562355
        • properties: jungle
          • type:jungle
          • Map:10
      • 216: Feature (Point, 2 properties)
        • type:Feature
        • id:216
        • geometry: Point (23.30, -2.42)
          • type:Point
          • coordinates: [23.303336989845068, -2.4223478437237382]
            • 0:23.303336989845068
            • 1:-2.4223478437237382
        • properties: jungle
          • type:jungle
          • Map:10
      • 217: Feature (Point, 2 properties)
        • type:Feature
        • id:217
        • geometry: Point (21.90, -0.29)
          • type:Point
          • coordinates: [21.90476688991852, -0.29155136592586733]
            • 0:21.90476688991852
            • 1:-0.29155136592586733
        • properties: jungle
          • type:jungle
          • Map:10
      • 218: Feature (Point, 2 properties)
        • type:Feature
        • id:218
        • geometry: Point (19.49, -3.65)
          • type:Point
          • coordinates: [19.489981102635618, -3.6534008947435166]
            • 0:19.489981102635618
            • 1:-3.6534008947435166
        • properties: jungle
          • type:jungle
          • Map:10
      • 219: Feature (Point, 2 properties)
        • type:Feature
        • id:219
        • geometry: Point (21.74, -3.18)
          • type:Point
          • coordinates: [21.74026543330614, -3.1827650723873364]
            • 0:21.74026543330614
            • 1:-3.1827650723873364
        • properties: jungle
          • type:jungle
          • Map:10
      • 220: Feature (Point, 2 properties)
        • type:Feature
        • id:220
        • geometry: Point (23.12, -1.15)
          • type:Point
          • coordinates: [23.115845902993232, -1.1498584081848977]
            • 0:23.115845902993232
            • 1:-1.1498584081848977
        • properties: jungle
          • type:jungle
          • Map:10
      • 221: Feature (Point, 2 properties)
        • type:Feature
        • id:221
        • geometry: Point (21.32, 0.07)
          • type:Point
          • coordinates: [21.316210999235825, 0.06707073216032326]
            • 0:21.316210999235825
            • 1:0.06707073216032326
        • properties: jungle
          • type:jungle
          • Map:10
      • 222: Feature (Point, 2 properties)
        • type:Feature
        • id:222
        • geometry: Point (22.52, -2.98)
          • type:Point
          • coordinates: [22.518410435905036, -2.980783590688811]
            • 0:22.518410435905036
            • 1:-2.980783590688811
        • properties: jungle
          • type:jungle
          • Map:10
      • 223: Feature (Point, 2 properties)
        • type:Feature
        • id:223
        • geometry: Point (24.73, -0.72)
          • type:Point
          • coordinates: [24.731594696791106, -0.7232805871482964]
            • 0:24.731594696791106
            • 1:-0.7232805871482964
        • properties: jungle
          • type:jungle
          • Map:10
      • 224: Feature (Point, 2 properties)
        • type:Feature
        • id:224
        • geometry: Point (24.98, -3.20)
          • type:Point
          • coordinates: [24.97728929857604, -3.2003510149574743]
            • 0:24.97728929857604
            • 1:-3.2003510149574743
        • properties: jungle
          • type:jungle
          • Map:10
      • 225: Feature (Point, 2 properties)
        • type:Feature
        • id:225
        • geometry: Point (19.62, -2.49)
          • type:Point
          • coordinates: [19.62282456603028, -2.491292882210177]
            • 0:19.62282456603028
            • 1:-2.491292882210177
        • properties: jungle
          • type:jungle
          • Map:10
      • 226: Feature (Point, 2 properties)
        • type:Feature
        • id:226
        • geometry: Point (24.21, -2.97)
          • type:Point
          • coordinates: [24.21113763282486, -2.9699544991639653]
            • 0:24.21113763282486
            • 1:-2.9699544991639653
        • properties: jungle
          • type:jungle
          • Map:10
      • 227: Feature (Point, 2 properties)
        • type:Feature
        • id:227
        • geometry: Point (24.43, -4.01)
          • type:Point
          • coordinates: [24.434464359404615, -4.013721215100235]
            • 0:24.434464359404615
            • 1:-4.013721215100235
        • properties: jungle
          • type:jungle
          • Map:10
      • 228: Feature (Point, 2 properties)
        • type:Feature
        • id:228
        • geometry: Point (22.51, -4.20)
          • type:Point
          • coordinates: [22.514078104303177, -4.197511405023366]
            • 0:22.514078104303177
            • 1:-4.197511405023366
        • properties: jungle
          • type:jungle
          • Map:10
      • 229: Feature (Point, 2 properties)
        • type:Feature
        • id:229
        • geometry: Point (22.67, -4.14)
          • type:Point
          • coordinates: [22.6729221405216, -4.138770031348876]
            • 0:22.6729221405216
            • 1:-4.138770031348876
        • properties: jungle
          • type:jungle
          • Map:10
      • 230: Feature (Point, 2 properties)
        • type:Feature
        • id:230
        • geometry: Point (24.68, -2.06)
          • type:Point
          • coordinates: [24.67966342388668, -2.055861388591604]
            • 0:24.67966342388668
            • 1:-2.055861388591604
        • properties: jungle
          • type:jungle
          • Map:10
      • 231: Feature (Point, 2 properties)
        • type:Feature
        • id:231
        • geometry: Point (20.61, -0.95)
          • type:Point
          • coordinates: [20.606910305738054, -0.9527764919871192]
            • 0:20.606910305738054
            • 1:-0.9527764919871192
        • properties: jungle
          • type:jungle
          • Map:10
      • 232: Feature (Point, 2 properties)
        • type:Feature
        • id:232
        • geometry: Point (20.75, -1.42)
          • type:Point
          • coordinates: [20.75044013570452, -1.4215166339674175]
            • 0:20.75044013570452
            • 1:-1.4215166339674175
        • properties: jungle
          • type:jungle
          • Map:10
      • 233: Feature (Point, 2 properties)
        • type:Feature
        • id:233
        • geometry: Point (22.15, -0.59)
          • type:Point
          • coordinates: [22.15167067616043, -0.5858426458981494]
            • 0:22.15167067616043
            • 1:-0.5858426458981494
        • properties: jungle
          • type:jungle
          • Map:10
      • 234: Feature (Point, 2 properties)
        • type:Feature
        • id:234
        • geometry: Point (20.54, -1.88)
          • type:Point
          • coordinates: [20.543542360359808, -1.879471357020144]
            • 0:20.543542360359808
            • 1:-1.879471357020144
        • properties: jungle
          • type:jungle
          • Map:10
      • 235: Feature (Point, 2 properties)
        • type:Feature
        • id:235
        • geometry: Point (20.84, -2.67)
          • type:Point
          • coordinates: [20.83622232059555, -2.673001749846367]
            • 0:20.83622232059555
            • 1:-2.673001749846367
        • properties: jungle
          • type:jungle
          • Map:10
      • 236: Feature (Point, 2 properties)
        • type:Feature
        • id:236
        • geometry: Point (22.26, -2.91)
          • type:Point
          • coordinates: [22.258792820368402, -2.9050858819917633]
            • 0:22.258792820368402
            • 1:-2.9050858819917633
        • properties: jungle
          • type:jungle
          • Map:10
      • 237: Feature (Point, 2 properties)
        • type:Feature
        • id:237
        • geometry: Point (22.10, -0.38)
          • type:Point
          • coordinates: [22.101155422521163, -0.3841324943610184]
            • 0:22.101155422521163
            • 1:-0.3841324943610184
        • properties: jungle
          • type:jungle
          • Map:10
      • 238: Feature (Point, 2 properties)
        • type:Feature
        • id:238
        • geometry: Point (21.58, -2.14)
          • type:Point
          • coordinates: [21.575148393621465, -2.1387528689234214]
            • 0:21.575148393621465
            • 1:-2.1387528689234214
        • properties: jungle
          • type:jungle
          • Map:10
      • 239: Feature (Point, 2 properties)
        • type:Feature
        • id:239
        • geometry: Point (21.97, -0.83)
          • type:Point
          • coordinates: [21.97449620559267, -0.8344260978338763]
            • 0:21.97449620559267
            • 1:-0.8344260978338763
        • properties: jungle
          • type:jungle
          • Map:10
      • 240: Feature (Point, 2 properties)
        • type:Feature
        • id:240
        • geometry: Point (22.44, -4.39)
          • type:Point
          • coordinates: [22.436469747150802, -4.390315664646084]
            • 0:22.436469747150802
            • 1:-4.390315664646084
        • properties: jungle
          • type:jungle
          • Map:10
      • 241: Feature (Point, 2 properties)
        • type:Feature
        • id:241
        • geometry: Point (21.71, -1.94)
          • type:Point
          • coordinates: [21.708759042676952, -1.9434758019212874]
            • 0:21.708759042676952
            • 1:-1.9434758019212874
        • properties: jungle
          • type:jungle
          • Map:10
      • 242: Feature (Point, 2 properties)
        • type:Feature
        • id:242
        • geometry: Point (24.68, -3.04)
          • type:Point
          • coordinates: [24.67836960570548, -3.0394504986538546]
            • 0:24.67836960570548
            • 1:-3.0394504986538546
        • properties: jungle
          • type:jungle
          • Map:10
      • 243: Feature (Point, 2 properties)
        • type:Feature
        • id:243
        • geometry: Point (22.81, -2.80)
          • type:Point
          • coordinates: [22.805856968435297, -2.7965626058103523]
            • 0:22.805856968435297
            • 1:-2.7965626058103523
        • properties: jungle
          • type:jungle
          • Map:10
      • 244: Feature (Point, 2 properties)
        • type:Feature
        • id:244
        • geometry: Point (20.65, -3.87)
          • type:Point
          • coordinates: [20.650345777987855, -3.8654640576546893]
            • 0:20.650345777987855
            • 1:-3.8654640576546893
        • properties: jungle
          • type:jungle
          • Map:10
      • 245: Feature (Point, 2 properties)
        • type:Feature
        • id:245
        • geometry: Point (24.69, -0.50)
          • type:Point
          • coordinates: [24.685913668793557, -0.49593437882031066]
            • 0:24.685913668793557
            • 1:-0.49593437882031066
        • properties: jungle
          • type:jungle
          • Map:10
      • 246: Feature (Point, 2 properties)
        • type:Feature
        • id:246
        • geometry: Point (19.52, -3.58)
          • type:Point
          • coordinates: [19.518364883044352, -3.5789510141306105]
            • 0:19.518364883044352
            • 1:-3.5789510141306105
        • properties: jungle
          • type:jungle
          • Map:10
      • 247: Feature (Point, 2 properties)
        • type:Feature
        • id:247
        • geometry: Point (21.42, -0.51)
          • type:Point
          • coordinates: [21.421810853062013, -0.50609914052492]
            • 0:21.421810853062013
            • 1:-0.50609914052492
        • properties: jungle
          • type:jungle
          • Map:10
      • 248: Feature (Point, 2 properties)
        • type:Feature
        • id:248
        • geometry: Point (22.01, -1.78)
          • type:Point
          • coordinates: [22.00525663545899, -1.7769547190511616]
            • 0:22.00525663545899
            • 1:-1.7769547190511616
        • properties: jungle
          • type:jungle
          • Map:10
      • 249: Feature (Point, 2 properties)
        • type:Feature
        • id:249
        • geometry: Point (22.82, -1.41)
          • type:Point
          • coordinates: [22.820432885668506, -1.414463413971531]
            • 0:22.820432885668506
            • 1:-1.414463413971531
        • properties: jungle
          • type:jungle
          • Map:10
      • 250: Feature (Point, 2 properties)
        • type:Feature
        • id:250
        • geometry: Point (23.50, -0.23)
          • type:Point
          • coordinates: [23.49514740486338, -0.2341105969380418]
            • 0:23.49514740486338
            • 1:-0.2341105969380418
        • properties: jungle
          • type:jungle
          • Map:10
      • 251: Feature (Point, 2 properties)
        • type:Feature
        • id:251
        • geometry: Point (25.01, -2.33)
          • type:Point
          • coordinates: [25.012990153899807, -2.3271223892381308]
            • 0:25.012990153899807
            • 1:-2.3271223892381308
        • properties: jungle
          • type:jungle
          • Map:10
      • 252: Feature (Point, 2 properties)
        • type:Feature
        • id:252
        • geometry: Point (20.30, -0.33)
          • type:Point
          • coordinates: [20.301429769949884, -0.33227998278646675]
            • 0:20.301429769949884
            • 1:-0.33227998278646675
        • properties: jungle
          • type:jungle
          • Map:10
      • 253: Feature (Point, 2 properties)
        • type:Feature
        • id:253
        • geometry: Point (24.87, -4.05)
          • type:Point
          • coordinates: [24.870820689324162, -4.0487548409993055]
            • 0:24.870820689324162
            • 1:-4.0487548409993055
        • properties: jungle
          • type:jungle
          • Map:30
      • 254: Feature (Point, 2 properties)
        • type:Feature
        • id:254
        • geometry: Point (20.28, -3.53)
          • type:Point
          • coordinates: [20.28037875615025, -3.5262756739570347]
            • 0:20.28037875615025
            • 1:-3.5262756739570347
        • properties: jungle
          • type:jungle
          • Map:10
      • 255: Feature (Point, 2 properties)
        • type:Feature
        • id:255
        • geometry: Point (21.02, -2.88)
          • type:Point
          • coordinates: [21.01545147538655, -2.881332288265384]
            • 0:21.01545147538655
            • 1:-2.881332288265384
        • properties: jungle
          • type:jungle
          • Map:10
      • 256: Feature (Point, 2 properties)
        • type:Feature
        • id:256
        • geometry: Point (20.36, -2.50)
          • type:Point
          • coordinates: [20.356542359521296, -2.5001594755833083]
            • 0:20.356542359521296
            • 1:-2.5001594755833083
        • properties: jungle
          • type:jungle
          • Map:10
      • 257: Feature (Point, 2 properties)
        • type:Feature
        • id:257
        • geometry: Point (20.11, -0.89)
          • type:Point
          • coordinates: [20.105928834673335, -0.891605286943258]
            • 0:20.105928834673335
            • 1:-0.891605286943258
        • properties: jungle
          • type:jungle
          • Map:10
      • 258: Feature (Point, 2 properties)
        • type:Feature
        • id:258
        • geometry: Point (22.73, -4.43)
          • type:Point
          • coordinates: [22.72764544049289, -4.428062211269739]
            • 0:22.72764544049289
            • 1:-4.428062211269739
        • properties: jungle
          • type:jungle
          • Map:10
      • 259: Feature (Point, 2 properties)
        • type:Feature
        • id:259
        • geometry: Point (19.79, -1.49)
          • type:Point
          • coordinates: [19.786586524806545, -1.4904001735277643]
            • 0:19.786586524806545
            • 1:-1.4904001735277643
        • properties: jungle
          • type:jungle
          • Map:10
      • 260: Feature (Point, 2 properties)
        • type:Feature
        • id:260
        • geometry: Point (22.62, -4.89)
          • type:Point
          • coordinates: [22.62122964113247, -4.888836927540081]
            • 0:22.62122964113247
            • 1:-4.888836927540081
        • properties: jungle
          • type:jungle
          • Map:20
      • 261: Feature (Point, 2 properties)
        • type:Feature
        • id:261
        • geometry: Point (24.54, -3.04)
          • type:Point
          • coordinates: [24.53908881488404, -3.0424890125135655]
            • 0:24.53908881488404
            • 1:-3.0424890125135655
        • properties: jungle
          • type:jungle
          • Map:10
      • 262: Feature (Point, 2 properties)
        • type:Feature
        • id:262
        • geometry: Point (19.69, -2.73)
          • type:Point
          • coordinates: [19.68897366233623, -2.734306014406792]
            • 0:19.68897366233623
            • 1:-2.734306014406792
        • properties: jungle
          • type:jungle
          • Map:10
      • 263: Feature (Point, 2 properties)
        • type:Feature
        • id:263
        • geometry: Point (23.08, -2.71)
          • type:Point
          • coordinates: [23.08018843099467, -2.7125990506051574]
            • 0:23.08018843099467
            • 1:-2.7125990506051574
        • properties: jungle
          • type:jungle
          • Map:10
      • 264: Feature (Point, 2 properties)
        • type:Feature
        • id:264
        • geometry: Point (23.18, -0.50)
          • type:Point
          • coordinates: [23.180885331489293, -0.4998333295000581]
            • 0:23.180885331489293
            • 1:-0.4998333295000581
        • properties: jungle
          • type:jungle
          • Map:10
      • 265: Feature (Point, 2 properties)
        • type:Feature
        • id:265
        • geometry: Point (24.88, -0.42)
          • type:Point
          • coordinates: [24.881658308540125, -0.42380201097912806]
            • 0:24.881658308540125
            • 1:-0.42380201097912806
        • properties: jungle
          • type:jungle
          • Map:10
      • 266: Feature (Point, 2 properties)
        • type:Feature
        • id:266
        • geometry: Point (19.76, -3.02)
          • type:Point
          • coordinates: [19.759609404443605, -3.015793633293639]
            • 0:19.759609404443605
            • 1:-3.015793633293639
        • properties: jungle
          • type:jungle
          • Map:10
      • 267: Feature (Point, 2 properties)
        • type:Feature
        • id:267
        • geometry: Point (20.44, -3.85)
          • type:Point
          • coordinates: [20.440538555407855, -3.851045061410345]
            • 0:20.440538555407855
            • 1:-3.851045061410345
        • properties: jungle
          • type:jungle
          • Map:10
      • 268: Feature (Point, 2 properties)
        • type:Feature
        • id:268
        • geometry: Point (21.18, -3.17)
          • type:Point
          • coordinates: [21.18090903643794, -3.1670990354134787]
            • 0:21.18090903643794
            • 1:-3.1670990354134787
        • properties: jungle
          • type:jungle
          • Map:10
      • 269: Feature (Point, 2 properties)
        • type:Feature
        • id:269
        • geometry: Point (21.75, -1.18)
          • type:Point
          • coordinates: [21.75228130370594, -1.175484105354324]
            • 0:21.75228130370594
            • 1:-1.175484105354324
        • properties: jungle
          • type:jungle
          • Map:10
      • 270: Feature (Point, 2 properties)
        • type:Feature
        • id:270
        • geometry: Point (19.96, -1.44)
          • type:Point
          • coordinates: [19.96020744918538, -1.4374980029840148]
            • 0:19.96020744918538
            • 1:-1.4374980029840148
        • properties: jungle
          • type:jungle
          • Map:10
      • 271: Feature (Point, 2 properties)
        • type:Feature
        • id:271
        • geometry: Point (24.57, -3.21)
          • type:Point
          • coordinates: [24.56918894723505, -3.211959529026329]
            • 0:24.56918894723505
            • 1:-3.211959529026329
        • properties: jungle
          • type:jungle
          • Map:10
      • 272: Feature (Point, 2 properties)
        • type:Feature
        • id:272
        • geometry: Point (24.42, -3.18)
          • type:Point
          • coordinates: [24.41781480435745, -3.178928319167145]
            • 0:24.41781480435745
            • 1:-3.178928319167145
        • properties: jungle
          • type:jungle
          • Map:10
      • 273: Feature (Point, 2 properties)
        • type:Feature
        • id:273
        • geometry: Point (23.59, -0.57)
          • type:Point
          • coordinates: [23.589862236247928, -0.5744405836341437]
            • 0:23.589862236247928
            • 1:-0.5744405836341437
        • properties: jungle
          • type:jungle
          • Map:10
      • 274: Feature (Point, 2 properties)
        • type:Feature
        • id:274
        • geometry: Point (20.71, -1.22)
          • type:Point
          • coordinates: [20.70777999839184, -1.2168810263528833]
            • 0:20.70777999839184
            • 1:-1.2168810263528833
        • properties: jungle
          • type:jungle
          • Map:10
      • 275: Feature (Point, 2 properties)
        • type:Feature
        • id:275
        • geometry: Point (21.76, -1.61)
          • type:Point
          • coordinates: [21.755688508715625, -1.6143414355311938]
            • 0:21.755688508715625
            • 1:-1.6143414355311938
        • properties: jungle
          • type:jungle
          • Map:10
      • 276: Feature (Point, 2 properties)
        • type:Feature
        • id:276
        • geometry: Point (20.36, -1.49)
          • type:Point
          • coordinates: [20.36002043472601, -1.4871630943609717]
            • 0:20.36002043472601
            • 1:-1.4871630943609717
        • properties: jungle
          • type:jungle
          • Map:10
      • 277: Feature (Point, 2 properties)
        • type:Feature
        • id:277
        • geometry: Point (24.54, -3.53)
          • type:Point
          • coordinates: [24.53582119136301, -3.530604261074981]
            • 0:24.53582119136301
            • 1:-3.530604261074981
        • properties: jungle
          • type:jungle
          • Map:30
      • 278: Feature (Point, 2 properties)
        • type:Feature
        • id:278
        • geometry: Point (24.86, -0.39)
          • type:Point
          • coordinates: [24.864464572039367, -0.38536816717567063]
            • 0:24.864464572039367
            • 1:-0.38536816717567063
        • properties: jungle
          • type:jungle
          • Map:10
      • 279: Feature (Point, 2 properties)
        • type:Feature
        • id:279
        • geometry: Point (23.50, -4.29)
          • type:Point
          • coordinates: [23.501132801064173, -4.287463289635782]
            • 0:23.501132801064173
            • 1:-4.287463289635782
        • properties: jungle
          • type:jungle
          • Map:10
      • 280: Feature (Point, 2 properties)
        • type:Feature
        • id:280
        • geometry: Point (23.01, -2.34)
          • type:Point
          • coordinates: [23.006936161276, -2.3422301977541906]
            • 0:23.006936161276
            • 1:-2.3422301977541906
        • properties: jungle
          • type:jungle
          • Map:10
      • 281: Feature (Point, 2 properties)
        • type:Feature
        • id:281
        • geometry: Point (23.38, -2.72)
          • type:Point
          • coordinates: [23.381497861767244, -2.724808934860272]
            • 0:23.381497861767244
            • 1:-2.724808934860272
        • properties: jungle
          • type:jungle
          • Map:10
      • 282: Feature (Point, 2 properties)
        • type:Feature
        • id:282
        • geometry: Point (23.16, -2.67)
          • type:Point
          • coordinates: [23.163934279887513, -2.6707526857902004]
            • 0:23.163934279887513
            • 1:-2.6707526857902004
        • properties: jungle
          • type:jungle
          • Map:10
      • 283: Feature (Point, 2 properties)
        • type:Feature
        • id:283
        • geometry: Point (21.07, -4.95)
          • type:Point
          • coordinates: [21.068306978114695, -4.947792507504703]
            • 0:21.068306978114695
            • 1:-4.947792507504703
        • properties: jungle
          • type:jungle
          • Map:80
      • 284: Feature (Point, 2 properties)
        • type:Feature
        • id:284
        • geometry: Point (23.74, -1.33)
          • type:Point
          • coordinates: [23.744832822827178, -1.3320710399130213]
            • 0:23.744832822827178
            • 1:-1.3320710399130213
        • properties: jungle
          • type:jungle
          • Map:10
      • 285: Feature (Point, 2 properties)
        • type:Feature
        • id:285
        • geometry: Point (20.92, -2.83)
          • type:Point
          • coordinates: [20.919667981068542, -2.831949372863238]
            • 0:20.919667981068542
            • 1:-2.831949372863238
        • properties: jungle
          • type:jungle
          • Map:10
      • 286: Feature (Point, 2 properties)
        • type:Feature
        • id:286
        • geometry: Point (23.71, -0.12)
          • type:Point
          • coordinates: [23.70731233085285, -0.12331103345538698]
            • 0:23.70731233085285
            • 1:-0.12331103345538698
        • properties: jungle
          • type:jungle
          • Map:10
      • 287: Feature (Point, 2 properties)
        • type:Feature
        • id:287
        • geometry: Point (23.92, -4.55)
          • type:Point
          • coordinates: [23.92215585911675, -4.554470898895693]
            • 0:23.92215585911675
            • 1:-4.554470898895693
        • properties: jungle
          • type:jungle
          • Map:10
      • 288: Feature (Point, 2 properties)
        • type:Feature
        • id:288
        • geometry: Point (24.01, -4.92)
          • type:Point
          • coordinates: [24.009590754372756, -4.921761642736383]
            • 0:24.009590754372756
            • 1:-4.921761642736383
        • properties: jungle
          • type:jungle
          • Map:10
      • 289: Feature (Point, 2 properties)
        • type:Feature
        • id:289
        • geometry: Point (23.82, -1.18)
          • type:Point
          • coordinates: [23.824470181313664, -1.1792274428771012]
            • 0:23.824470181313664
            • 1:-1.1792274428771012
        • properties: jungle
          • type:jungle
          • Map:10
      • 290: Feature (Point, 2 properties)
        • type:Feature
        • id:290
        • geometry: Point (24.02, -3.99)
          • type:Point
          • coordinates: [24.01968339363959, -3.994079365080588]
            • 0:24.01968339363959
            • 1:-3.994079365080588
        • properties: jungle
          • type:jungle
          • Map:20
      • 291: Feature (Point, 2 properties)
        • type:Feature
        • id:291
        • geometry: Point (25.18, -1.48)
          • type:Point
          • coordinates: [25.180186562347608, -1.4760044757430166]
            • 0:25.180186562347608
            • 1:-1.4760044757430166
        • properties: jungle
          • type:jungle
          • Map:10
      • 292: Feature (Point, 2 properties)
        • type:Feature
        • id:292
        • geometry: Point (22.01, 0.12)
          • type:Point
          • coordinates: [22.01207112205144, 0.12432047250397617]
            • 0:22.01207112205144
            • 1:0.12432047250397617
        • properties: jungle
          • type:jungle
          • Map:10
      • 293: Feature (Point, 2 properties)
        • type:Feature
        • id:293
        • geometry: Point (20.47, -4.64)
          • type:Point
          • coordinates: [20.46584678032889, -4.640720451000093]
            • 0:20.46584678032889
            • 1:-4.640720451000093
        • properties: jungle
          • type:jungle
          • Map:10
      • 294: Feature (Point, 2 properties)
        • type:Feature
        • id:294
        • geometry: Point (21.95, -2.35)
          • type:Point
          • coordinates: [21.954625766370505, -2.354553629080182]
            • 0:21.954625766370505
            • 1:-2.354553629080182
        • properties: jungle
          • type:jungle
          • Map:10
      • 295: Feature (Point, 2 properties)
        • type:Feature
        • id:295
        • geometry: Point (20.52, -3.51)
          • type:Point
          • coordinates: [20.51731696956594, -3.507538906803403]
            • 0:20.51731696956594
            • 1:-3.507538906803403
        • properties: jungle
          • type:jungle
          • Map:10
      • 296: Feature (Point, 2 properties)
        • type:Feature
        • id:296
        • geometry: Point (24.39, -2.26)
          • type:Point
          • coordinates: [24.39011747836317, -2.261793975502428]
            • 0:24.39011747836317
            • 1:-2.261793975502428
        • properties: jungle
          • type:jungle
          • Map:10
      • 297: Feature (Point, 2 properties)
        • type:Feature
        • id:297
        • geometry: Point (24.73, -2.93)
          • type:Point
          • coordinates: [24.733282668347314, -2.9349924717425404]
            • 0:24.733282668347314
            • 1:-2.9349924717425404
        • properties: jungle
          • type:jungle
          • Map:10
      • 298: Feature (Point, 2 properties)
        • type:Feature
        • id:298
        • geometry: Point (20.38, -0.43)
          • type:Point
          • coordinates: [20.382997247048774, -0.42537327790386653]
            • 0:20.382997247048774
            • 1:-0.42537327790386653
        • properties: jungle
          • type:jungle
          • Map:10
      • 299: Feature (Point, 2 properties)
        • type:Feature
        • id:299
        • geometry: Point (25.01, -2.27)
          • type:Point
          • coordinates: [25.006111418570732, -2.273120321608113]
            • 0:25.006111418570732
            • 1:-2.273120321608113
        • properties: jungle
          • type:jungle
          • Map:10
      • 300: Feature (Point, 2 properties)
        • type:Feature
        • id:300
        • geometry: Point (22.13, -3.42)
          • type:Point
          • coordinates: [22.130505805388502, -3.4190096672456973]
            • 0:22.130505805388502
            • 1:-3.4190096672456973
        • properties: jungle
          • type:jungle
          • Map:10
      • 301: Feature (Point, 2 properties)
        • type:Feature
        • id:301
        • geometry: Point (23.53, -4.20)
          • type:Point
          • coordinates: [23.530029840176905, -4.195006848918433]
            • 0:23.530029840176905
            • 1:-4.195006848918433
        • properties: jungle
          • type:jungle
          • Map:10
      • 302: Feature (Point, 2 properties)
        • type:Feature
        • id:302
        • geometry: Point (24.14, -0.69)
          • type:Point
          • coordinates: [24.14495791893309, -0.6947718441822849]
            • 0:24.14495791893309
            • 1:-0.6947718441822849
        • properties: jungle
          • type:jungle
          • Map:10
      • 303: Feature (Point, 2 properties)
        • type:Feature
        • id:303
        • geometry: Point (21.21, 0.06)
          • type:Point
          • coordinates: [21.210397565766485, 0.05860958980891025]
            • 0:21.210397565766485
            • 1:0.05860958980891025
        • properties: jungle
          • type:jungle
          • Map:10
      • 304: Feature (Point, 2 properties)
        • type:Feature
        • id:304
        • geometry: Point (23.60, -2.82)
          • type:Point
          • coordinates: [23.597069155601233, -2.8239014127704274]
            • 0:23.597069155601233
            • 1:-2.8239014127704274
        • properties: jungle
          • type:jungle
          • Map:10
      • 305: Feature (Point, 2 properties)
        • type:Feature
        • id:305
        • geometry: Point (23.35, -2.43)
          • type:Point
          • coordinates: [23.351218919340802, -2.4308023432925205]
            • 0:23.351218919340802
            • 1:-2.4308023432925205
        • properties: jungle
          • type:jungle
          • Map:10
      • 306: Feature (Point, 2 properties)
        • type:Feature
        • id:306
        • geometry: Point (20.72, -3.39)
          • type:Point
          • coordinates: [20.721573565200124, -3.390030667476255]
            • 0:20.721573565200124
            • 1:-3.390030667476255
        • properties: jungle
          • type:jungle
          • Map:10
      • 307: Feature (Point, 2 properties)
        • type:Feature
        • id:307
        • geometry: Point (21.89, -1.94)
          • type:Point
          • coordinates: [21.885862983388503, -1.9418923240468102]
            • 0:21.885862983388503
            • 1:-1.9418923240468102
        • properties: jungle
          • type:jungle
          • Map:10
      • 308: Feature (Point, 2 properties)
        • type:Feature
        • id:308
        • geometry: Point (21.13, -3.80)
          • type:Point
          • coordinates: [21.129229943855414, -3.8046509403392212]
            • 0:21.129229943855414
            • 1:-3.8046509403392212
        • properties: jungle
          • type:jungle
          • Map:10
      • 309: Feature (Point, 2 properties)
        • type:Feature
        • id:309
        • geometry: Point (23.97, -2.73)
          • type:Point
          • coordinates: [23.972500475372627, -2.730888365645841]
            • 0:23.972500475372627
            • 1:-2.730888365645841
        • properties: jungle
          • type:jungle
          • Map:10
      • 310: Feature (Point, 2 properties)
        • type:Feature
        • id:310
        • geometry: Point (19.32, -3.58)
          • type:Point
          • coordinates: [19.320854749982285, -3.5776550836629544]
            • 0:19.320854749982285
            • 1:-3.5776550836629544
        • properties: jungle
          • type:jungle
          • Map:10
      • 311: Feature (Point, 2 properties)
        • type:Feature
        • id:311
        • geometry: Point (21.11, -3.10)
          • type:Point
          • coordinates: [21.113710968289553, -3.100147891410093]
            • 0:21.113710968289553
            • 1:-3.100147891410093
        • properties: jungle
          • type:jungle
          • Map:10
      • 312: Feature (Point, 2 properties)
        • type:Feature
        • id:312
        • geometry: Point (24.71, -2.53)
          • type:Point
          • coordinates: [24.70657112003727, -2.534601196849717]
            • 0:24.70657112003727
            • 1:-2.534601196849717
        • properties: jungle
          • type:jungle
          • Map:10
      • 313: Feature (Point, 2 properties)
        • type:Feature
        • id:313
        • geometry: Point (24.03, -4.83)
          • type:Point
          • coordinates: [24.029155977632044, -4.833505472640675]
            • 0:24.029155977632044
            • 1:-4.833505472640675
        • properties: jungle
          • type:jungle
          • Map:10
      • 314: Feature (Point, 2 properties)
        • type:Feature
        • id:314
        • geometry: Point (24.84, -2.33)
          • type:Point
          • coordinates: [24.84085243211132, -2.334310686983453]
            • 0:24.84085243211132
            • 1:-2.334310686983453
        • properties: jungle
          • type:jungle
          • Map:10
      • 315: Feature (Point, 2 properties)
        • type:Feature
        • id:315
        • geometry: Point (21.43, -1.07)
          • type:Point
          • coordinates: [21.42683243122085, -1.0734250242397831]
            • 0:21.42683243122085
            • 1:-1.0734250242397831
        • properties: jungle
          • type:jungle
          • Map:10
      • 316: Feature (Point, 2 properties)
        • type:Feature
        • id:316
        • geometry: Point (23.77, 0.01)
          • type:Point
          • coordinates: [23.769370575994678, 0.011668023907578252]
            • 0:23.769370575994678
            • 1:0.011668023907578252
        • properties: jungle
          • type:jungle
          • Map:10
      • 317: Feature (Point, 2 properties)
        • type:Feature
        • id:317
        • geometry: Point (22.27, 0.02)
          • type:Point
          • coordinates: [22.265494342025402, 0.02324557289052324]
            • 0:22.265494342025402
            • 1:0.02324557289052324
        • properties: jungle
          • type:jungle
          • Map:10
      • 318: Feature (Point, 2 properties)
        • type:Feature
        • id:318
        • geometry: Point (21.13, -0.37)
          • type:Point
          • coordinates: [21.126192938321903, -0.36895048300515493]
            • 0:21.126192938321903
            • 1:-0.36895048300515493
        • properties: jungle
          • type:jungle
          • Map:10
      • 319: Feature (Point, 2 properties)
        • type:Feature
        • id:319
        • geometry: Point (23.81, -1.37)
          • type:Point
          • coordinates: [23.80684166530949, -1.3703318122175876]
            • 0:23.80684166530949
            • 1:-1.3703318122175876
        • properties: jungle
          • type:jungle
          • Map:10
      • 320: Feature (Point, 2 properties)
        • type:Feature
        • id:320
        • geometry: Point (21.08, -2.24)
          • type:Point
          • coordinates: [21.081564060448837, -2.24195658495261]
            • 0:21.081564060448837
            • 1:-2.24195658495261
        • properties: jungle
          • type:jungle
          • Map:10
      • 321: Feature (Point, 2 properties)
        • type:Feature
        • id:321
        • geometry: Point (22.05, -1.27)
          • type:Point
          • coordinates: [22.045103636882907, -1.2735654684635118]
            • 0:22.045103636882907
            • 1:-1.2735654684635118
        • properties: jungle
          • type:jungle
          • Map:10
      • 322: Feature (Point, 2 properties)
        • type:Feature
        • id:322
        • geometry: Point (20.12, -2.08)
          • type:Point
          • coordinates: [20.123905331750453, -2.083816159879139]
            • 0:20.123905331750453
            • 1:-2.083816159879139
        • properties: jungle
          • type:jungle
          • Map:10
      • 323: Feature (Point, 2 properties)
        • type:Feature
        • id:323
        • geometry: Point (19.46, -3.51)
          • type:Point
          • coordinates: [19.462952247346678, -3.513946473544614]
            • 0:19.462952247346678
            • 1:-3.513946473544614
        • properties: jungle
          • type:jungle
          • Map:10
      • 324: Feature (Point, 2 properties)
        • type:Feature
        • id:324
        • geometry: Point (22.22, 0.02)
          • type:Point
          • coordinates: [22.2187384209865, 0.02487089450676486]
            • 0:22.2187384209865
            • 1:0.02487089450676486
        • properties: jungle
          • type:jungle
          • Map:10
      • 325: Feature (Point, 2 properties)
        • type:Feature
        • id:325
        • geometry: Point (22.86, -4.76)
          • type:Point
          • coordinates: [22.856110186404127, -4.758819796556849]
            • 0:22.856110186404127
            • 1:-4.758819796556849
        • properties: jungle
          • type:jungle
          • Map:10
      • 326: Feature (Point, 2 properties)
        • type:Feature
        • id:326
        • geometry: Point (23.19, -0.91)
          • type:Point
          • coordinates: [23.185669357940874, -0.913099678372166]
            • 0:23.185669357940874
            • 1:-0.913099678372166
        • properties: jungle
          • type:jungle
          • Map:10
      • 327: Feature (Point, 2 properties)
        • type:Feature
        • id:327
        • geometry: Point (20.61, -3.24)
          • type:Point
          • coordinates: [20.606278020610485, -3.2418011093942587]
            • 0:20.606278020610485
            • 1:-3.2418011093942587
        • properties: jungle
          • type:jungle
          • Map:10
      • 328: Feature (Point, 2 properties)
        • type:Feature
        • id:328
        • geometry: Point (24.21, -2.25)
          • type:Point
          • coordinates: [24.21185173130517, -2.2521204001561044]
            • 0:24.21185173130517
            • 1:-2.2521204001561044
        • properties: jungle
          • type:jungle
          • Map:10
      • 329: Feature (Point, 2 properties)
        • type:Feature
        • id:329
        • geometry: Point (23.81, -5.01)
          • type:Point
          • coordinates: [23.806875419352362, -5.008956724523046]
            • 0:23.806875419352362
            • 1:-5.008956724523046
        • properties: jungle
          • type:jungle
          • Map:30
      • 330: Feature (Point, 2 properties)
        • type:Feature
        • id:330
        • geometry: Point (20.56, -4.99)
          • type:Point
          • coordinates: [20.55672626319934, -4.992964739580712]
            • 0:20.55672626319934
            • 1:-4.992964739580712
        • properties: jungle
          • type:jungle
          • Map:10
      • 331: Feature (Point, 2 properties)
        • type:Feature
        • id:331
        • geometry: Point (20.55, -1.09)
          • type:Point
          • coordinates: [20.552790819726262, -1.0864528871665897]
            • 0:20.552790819726262
            • 1:-1.0864528871665897
        • properties: jungle
          • type:jungle
          • Map:10
      • 332: Feature (Point, 2 properties)
        • type:Feature
        • id:332
        • geometry: Point (23.36, -3.51)
          • type:Point
          • coordinates: [23.35716750032957, -3.5131292186928436]
            • 0:23.35716750032957
            • 1:-3.5131292186928436
        • properties: jungle
          • type:jungle
          • Map:10
      • 333: Feature (Point, 2 properties)
        • type:Feature
        • id:333
        • geometry: Point (20.77, -2.88)
          • type:Point
          • coordinates: [20.767906448369427, -2.875343930313278]
            • 0:20.767906448369427
            • 1:-2.875343930313278
        • properties: jungle
          • type:jungle
          • Map:10
      • 334: Feature (Point, 2 properties)
        • type:Feature
        • id:334
        • geometry: Point (23.22, -5.05)
          • type:Point
          • coordinates: [23.223991657162568, -5.052799390780638]
            • 0:23.223991657162568
            • 1:-5.052799390780638
        • properties: jungle
          • type:jungle
          • Map:10
      • 335: Feature (Point, 2 properties)
        • type:Feature
        • id:335
        • geometry: Point (24.50, -0.84)
          • type:Point
          • coordinates: [24.495001016011372, -0.8439131961156926]
            • 0:24.495001016011372
            • 1:-0.8439131961156926
        • properties: jungle
          • type:jungle
          • Map:10
      • 336: Feature (Point, 2 properties)
        • type:Feature
        • id:336
        • geometry: Point (24.05, -3.22)
          • type:Point
          • coordinates: [24.047847027062726, -3.223237986781254]
            • 0:24.047847027062726
            • 1:-3.223237986781254
        • properties: jungle
          • type:jungle
          • Map:10
      • 337: Feature (Point, 2 properties)
        • type:Feature
        • id:337
        • geometry: Point (21.73, -4.46)
          • type:Point
          • coordinates: [21.731893487567746, -4.459364243138928]
            • 0:21.731893487567746
            • 1:-4.459364243138928
        • properties: jungle
          • type:jungle
          • Map:10
      • 338: Feature (Point, 2 properties)
        • type:Feature
        • id:338
        • geometry: Point (22.12, -4.39)
          • type:Point
          • coordinates: [22.115852918806652, -4.3859319079840535]
            • 0:22.115852918806652
            • 1:-4.3859319079840535
        • properties: jungle
          • type:jungle
          • Map:10
      • 339: Feature (Point, 2 properties)
        • type:Feature
        • id:339
        • geometry: Point (24.85, -3.48)
          • type:Point
          • coordinates: [24.847697670087282, -3.47543162659867]
            • 0:24.847697670087282
            • 1:-3.47543162659867
        • properties: jungle
          • type:jungle
          • Map:30
      • 340: Feature (Point, 2 properties)
        • type:Feature
        • id:340
        • geometry: Point (23.26, 0.08)
          • type:Point
          • coordinates: [23.25931501926055, 0.07700973036558026]
            • 0:23.25931501926055
            • 1:0.07700973036558026
        • properties: jungle
          • type:jungle
          • Map:10
      • 341: Feature (Point, 2 properties)
        • type:Feature
        • id:341
        • geometry: Point (23.23, -1.03)
          • type:Point
          • coordinates: [23.233254421412, -1.0324215327297117]
            • 0:23.233254421412
            • 1:-1.0324215327297117
        • properties: jungle
          • type:jungle
          • Map:10
      • 342: Feature (Point, 2 properties)
        • type:Feature
        • id:342
        • geometry: Point (23.92, -3.39)
          • type:Point
          • coordinates: [23.922118093710633, -3.394149768822981]
            • 0:23.922118093710633
            • 1:-3.394149768822981
        • properties: jungle
          • type:jungle
          • Map:10
      • 343: Feature (Point, 2 properties)
        • type:Feature
        • id:343
        • geometry: Point (24.29, -2.88)
          • type:Point
          • coordinates: [24.291315258273986, -2.8832172580877296]
            • 0:24.291315258273986
            • 1:-2.8832172580877296
        • properties: jungle
          • type:jungle
          • Map:10
      • 344: Feature (Point, 2 properties)
        • type:Feature
        • id:344
        • geometry: Point (20.01, -3.64)
          • type:Point
          • coordinates: [20.00554748068075, -3.6444864786831164]
            • 0:20.00554748068075
            • 1:-3.6444864786831164
        • properties: jungle
          • type:jungle
          • Map:10
      • 345: Feature (Point, 2 properties)
        • type:Feature
        • id:345
        • geometry: Point (20.28, -1.57)
          • type:Point
          • coordinates: [20.283345886234397, -1.5681249245931606]
            • 0:20.283345886234397
            • 1:-1.5681249245931606
        • properties: jungle
          • type:jungle
          • Map:10
      • 346: Feature (Point, 2 properties)
        • type:Feature
        • id:346
        • geometry: Point (24.64, -2.90)
          • type:Point
          • coordinates: [24.643788917533797, -2.9042060532087324]
            • 0:24.643788917533797
            • 1:-2.9042060532087324
        • properties: jungle
          • type:jungle
          • Map:10
      • 347: Feature (Point, 2 properties)
        • type:Feature
        • id:347
        • geometry: Point (20.88, -4.52)
          • type:Point
          • coordinates: [20.878435882517078, -4.522888670661096]
            • 0:20.878435882517078
            • 1:-4.522888670661096
        • properties: jungle
          • type:jungle
          • Map:10
      • 348: Feature (Point, 2 properties)
        • type:Feature
        • id:348
        • geometry: Point (20.15, -1.51)
          • type:Point
          • coordinates: [20.151177065861244, -1.5097185567216145]
            • 0:20.151177065861244
            • 1:-1.5097185567216145
        • properties: jungle
          • type:jungle
          • Map:10
      • 349: Feature (Point, 2 properties)
        • type:Feature
        • id:349
        • geometry: Point (19.86, -2.12)
          • type:Point
          • coordinates: [19.856880874560392, -2.122747729829016]
            • 0:19.856880874560392
            • 1:-2.122747729829016
        • properties: jungle
          • type:jungle
          • Map:10
      • 350: Feature (Point, 2 properties)
        • type:Feature
        • id:350
        • geometry: Point (20.53, -4.73)
          • type:Point
          • coordinates: [20.525584131369047, -4.725076243476633]
            • 0:20.525584131369047
            • 1:-4.725076243476633
        • properties: jungle
          • type:jungle
          • Map:30
      • 351: Feature (Point, 2 properties)
        • type:Feature
        • id:351
        • geometry: Point (24.96, -3.43)
          • type:Point
          • coordinates: [24.962288385587332, -3.4342013114260284]
            • 0:24.962288385587332
            • 1:-3.4342013114260284
        • properties: jungle
          • type:jungle
          • Map:30
      • 352: Feature (Point, 2 properties)
        • type:Feature
        • id:352
        • geometry: Point (24.58, -1.85)
          • type:Point
          • coordinates: [24.583096978445646, -1.847913816684813]
            • 0:24.583096978445646
            • 1:-1.847913816684813
        • properties: jungle
          • type:jungle
          • Map:10
      • 353: Feature (Point, 2 properties)
        • type:Feature
        • id:353
        • geometry: Point (23.65, -4.08)
          • type:Point
          • coordinates: [23.6549037978801, -4.075342622759754]
            • 0:23.6549037978801
            • 1:-4.075342622759754
        • properties: jungle
          • type:jungle
          • Map:10
      • 354: Feature (Point, 2 properties)
        • type:Feature
        • id:354
        • geometry: Point (23.65, -1.10)
          • type:Point
          • coordinates: [23.64595119318976, -1.1032079780758488]
            • 0:23.64595119318976
            • 1:-1.1032079780758488
        • properties: jungle
          • type:jungle
          • Map:10
      • 355: Feature (Point, 2 properties)
        • type:Feature
        • id:355
        • geometry: Point (20.38, -2.94)
          • type:Point
          • coordinates: [20.38462968868929, -2.9431472396664935]
            • 0:20.38462968868929
            • 1:-2.9431472396664935
        • properties: jungle
          • type:jungle
          • Map:10
      • 356: Feature (Point, 2 properties)
        • type:Feature
        • id:356
        • geometry: Point (23.99, -1.69)
          • type:Point
          • coordinates: [23.988774722573144, -1.6880214278746675]
            • 0:23.988774722573144
            • 1:-1.6880214278746675
        • properties: jungle
          • type:jungle
          • Map:10
      • 357: Feature (Point, 2 properties)
        • type:Feature
        • id:357
        • geometry: Point (23.99, -1.31)
          • type:Point
          • coordinates: [23.99224118795933, -1.3079711283121898]
            • 0:23.99224118795933
            • 1:-1.3079711283121898
        • properties: jungle
          • type:jungle
          • Map:10
      • 358: Feature (Point, 2 properties)
        • type:Feature
        • id:358
        • geometry: Point (24.49, -2.34)
          • type:Point
          • coordinates: [24.48636910823807, -2.3353362980002874]
            • 0:24.48636910823807
            • 1:-2.3353362980002874
        • properties: jungle
          • type:jungle
          • Map:10
      • 359: Feature (Point, 2 properties)
        • type:Feature
        • id:359
        • geometry: Point (23.21, -1.18)
          • type:Point
          • coordinates: [23.206852099702783, -1.181341947738519]
            • 0:23.206852099702783
            • 1:-1.181341947738519
        • properties: jungle
          • type:jungle
          • Map:10
      • 360: Feature (Point, 2 properties)
        • type:Feature
        • id:360
        • geometry: Point (23.17, -4.14)
          • type:Point
          • coordinates: [23.172148356154427, -4.142440627245117]
            • 0:23.172148356154427
            • 1:-4.142440627245117
        • properties: jungle
          • type:jungle
          • Map:10
      • 361: Feature (Point, 2 properties)
        • type:Feature
        • id:361
        • geometry: Point (24.68, -1.34)
          • type:Point
          • coordinates: [24.682707954971832, -1.337818109926992]
            • 0:24.682707954971832
            • 1:-1.337818109926992
        • properties: jungle
          • type:jungle
          • Map:10
      • 362: Feature (Point, 2 properties)
        • type:Feature
        • id:362
        • geometry: Point (23.77, -3.31)
          • type:Point
          • coordinates: [23.769084279227044, -3.309316426458497]
            • 0:23.769084279227044
            • 1:-3.309316426458497
        • properties: jungle
          • type:jungle
          • Map:10
      • 363: Feature (Point, 2 properties)
        • type:Feature
        • id:363
        • geometry: Point (20.18, -1.24)
          • type:Point
          • coordinates: [20.183328256491944, -1.2447373522764222]
            • 0:20.183328256491944
            • 1:-1.2447373522764222
        • properties: jungle
          • type:jungle
          • Map:10
      • 364: Feature (Point, 2 properties)
        • type:Feature
        • id:364
        • geometry: Point (22.24, -0.02)
          • type:Point
          • coordinates: [22.239067982109923, -0.022113481873217093]
            • 0:22.239067982109923
            • 1:-0.022113481873217093
        • properties: jungle
          • type:jungle
          • Map:10
      • 365: Feature (Point, 2 properties)
        • type:Feature
        • id:365
        • geometry: Point (23.95, -3.54)
          • type:Point
          • coordinates: [23.953819440134545, -3.5426990729145613]
            • 0:23.953819440134545
            • 1:-3.5426990729145613
        • properties: jungle
          • type:jungle
          • Map:30
      • 366: Feature (Point, 2 properties)
        • type:Feature
        • id:366
        • geometry: Point (24.38, -1.32)
          • type:Point
          • coordinates: [24.375395490487314, -1.3187247587735156]
            • 0:24.375395490487314
            • 1:-1.3187247587735156
        • properties: jungle
          • type:jungle
          • Map:10
      • 367: Feature (Point, 2 properties)
        • type:Feature
        • id:367
        • geometry: Point (22.62, -0.74)
          • type:Point
          • coordinates: [22.620085636599168, -0.7436708915201485]
            • 0:22.620085636599168
            • 1:-0.7436708915201485
        • properties: jungle
          • type:jungle
          • Map:10
      • 368: Feature (Point, 2 properties)
        • type:Feature
        • id:368
        • geometry: Point (22.55, -3.22)
          • type:Point
          • coordinates: [22.55128383306709, -3.219011675239334]
            • 0:22.55128383306709
            • 1:-3.219011675239334
        • properties: jungle
          • type:jungle
          • Map:10
      • 369: Feature (Point, 2 properties)
        • type:Feature
        • id:369
        • geometry: Point (21.20, -4.82)
          • type:Point
          • coordinates: [21.200891670640885, -4.822714167204591]
            • 0:21.200891670640885
            • 1:-4.822714167204591
        • properties: jungle
          • type:jungle
          • Map:10
      • 370: Feature (Point, 2 properties)
        • type:Feature
        • id:370
        • geometry: Point (21.49, -0.49)
          • type:Point
          • coordinates: [21.48883024109043, -0.4940384664312393]
            • 0:21.48883024109043
            • 1:-0.4940384664312393
        • properties: jungle
          • type:jungle
          • Map:10
      • 371: Feature (Point, 2 properties)
        • type:Feature
        • id:371
        • geometry: Point (20.37, -4.39)
          • type:Point
          • coordinates: [20.365651087642732, -4.387033418454663]
            • 0:20.365651087642732
            • 1:-4.387033418454663
        • properties: jungle
          • type:jungle
          • Map:10
      • 372: Feature (Point, 2 properties)
        • type:Feature
        • id:372
        • geometry: Point (21.38, -2.91)
          • type:Point
          • coordinates: [21.38119597324293, -2.911607953369185]
            • 0:21.38119597324293
            • 1:-2.911607953369185
        • properties: jungle
          • type:jungle
          • Map:10
      • 373: Feature (Point, 2 properties)
        • type:Feature
        • id:373
        • geometry: Point (23.26, -1.66)
          • type:Point
          • coordinates: [23.25624288052464, -1.6646991199518753]
            • 0:23.25624288052464
            • 1:-1.6646991199518753
        • properties: jungle
          • type:jungle
          • Map:10
      • 374: Feature (Point, 2 properties)
        • type:Feature
        • id:374
        • geometry: Point (20.29, -1.11)
          • type:Point
          • coordinates: [20.287376664868866, -1.109044868729131]
            • 0:20.287376664868866
            • 1:-1.109044868729131
        • properties: jungle
          • type:jungle
          • Map:10
      • 375: Feature (Point, 2 properties)
        • type:Feature
        • id:375
        • geometry: Point (22.57, -1.54)
          • type:Point
          • coordinates: [22.571526573896072, -1.53886621310575]
            • 0:22.571526573896072
            • 1:-1.53886621310575
        • properties: jungle
          • type:jungle
          • Map:10
      • 376: Feature (Point, 2 properties)
        • type:Feature
        • id:376
        • geometry: Point (22.23, -2.74)
          • type:Point
          • coordinates: [22.227665665752454, -2.7401853789539783]
            • 0:22.227665665752454
            • 1:-2.7401853789539783
        • properties: jungle
          • type:jungle
          • Map:10
      • 377: Feature (Point, 2 properties)
        • type:Feature
        • id:377
        • geometry: Point (23.97, -1.82)
          • type:Point
          • coordinates: [23.96845713873773, -1.8200964286665426]
            • 0:23.96845713873773
            • 1:-1.8200964286665426
        • properties: jungle
          • type:jungle
          • Map:10
      • 378: Feature (Point, 2 properties)
        • type:Feature
        • id:378
        • geometry: Point (24.58, -0.94)
          • type:Point
          • coordinates: [24.575345211377446, -0.9405901987347264]
            • 0:24.575345211377446
            • 1:-0.9405901987347264
        • properties: jungle
          • type:jungle
          • Map:10
      • 379: Feature (Point, 2 properties)
        • type:Feature
        • id:379
        • geometry: Point (21.48, -1.45)
          • type:Point
          • coordinates: [21.475252768953165, -1.45178545128678]
            • 0:21.475252768953165
            • 1:-1.45178545128678
        • properties: jungle
          • type:jungle
          • Map:10
      • 380: Feature (Point, 2 properties)
        • type:Feature
        • id:380
        • geometry: Point (21.99, -3.22)
          • type:Point
          • coordinates: [21.992504426071996, -3.216176790800887]
            • 0:21.992504426071996
            • 1:-3.216176790800887
        • properties: jungle
          • type:jungle
          • Map:10
      • 381: Feature (Point, 2 properties)
        • type:Feature
        • id:381
        • geometry: Point (21.85, 0.22)
          • type:Point
          • coordinates: [21.851252009139902, 0.22164944180355656]
            • 0:21.851252009139902
            • 1:0.22164944180355656
        • properties: jungle
          • type:jungle
          • Map:10
      • 382: Feature (Point, 2 properties)
        • type:Feature
        • id:382
        • geometry: Point (21.22, -0.18)
          • type:Point
          • coordinates: [21.224926546342857, -0.1777504850008393]
            • 0:21.224926546342857
            • 1:-0.1777504850008393
        • properties: jungle
          • type:jungle
          • Map:10
      • 383: Feature (Point, 2 properties)
        • type:Feature
        • id:383
        • geometry: Point (23.66, -0.19)
          • type:Point
          • coordinates: [23.661844271557126, -0.1911470828632507]
            • 0:23.661844271557126
            • 1:-0.1911470828632507
        • properties: jungle
          • type:jungle
          • Map:10
      • 384: Feature (Point, 2 properties)
        • type:Feature
        • id:384
        • geometry: Point (22.47, -1.22)
          • type:Point
          • coordinates: [22.471852386454103, -1.224204582053864]
            • 0:22.471852386454103
            • 1:-1.224204582053864
        • properties: jungle
          • type:jungle
          • Map:10
      • 385: Feature (Point, 2 properties)
        • type:Feature
        • id:385
        • geometry: Point (20.11, -4.04)
          • type:Point
          • coordinates: [20.10796342876794, -4.040168013220384]
            • 0:20.10796342876794
            • 1:-4.040168013220384
        • properties: jungle
          • type:jungle
          • Map:10
      • 386: Feature (Point, 2 properties)
        • type:Feature
        • id:386
        • geometry: Point (24.88, -1.44)
          • type:Point
          • coordinates: [24.876944936757404, -1.4444445086652984]
            • 0:24.876944936757404
            • 1:-1.4444445086652984
        • properties: jungle
          • type:jungle
          • Map:10
      • 387: Feature (Point, 2 properties)
        • type:Feature
        • id:387
        • geometry: Point (21.60, -4.38)
          • type:Point
          • coordinates: [21.604252274818897, -4.375250795004323]
            • 0:21.604252274818897
            • 1:-4.375250795004323
        • properties: jungle
          • type:jungle
          • Map:10
      • 388: Feature (Point, 2 properties)
        • type:Feature
        • id:388
        • geometry: Point (24.86, -2.30)
          • type:Point
          • coordinates: [24.861332267771264, -2.2950253019870006]
            • 0:24.861332267771264
            • 1:-2.2950253019870006
        • properties: jungle
          • type:jungle
          • Map:10
      • 389: Feature (Point, 2 properties)
        • type:Feature
        • id:389
        • geometry: Point (23.93, -4.30)
          • type:Point
          • coordinates: [23.93001667416215, -4.300032237098932]
            • 0:23.93001667416215
            • 1:-4.300032237098932
        • properties: jungle
          • type:jungle
          • Map:10
      • 390: Feature (Point, 2 properties)
        • type:Feature
        • id:390
        • geometry: Point (22.65, -4.66)
          • type:Point
          • coordinates: [22.648533514227967, -4.6619064790849585]
            • 0:22.648533514227967
            • 1:-4.6619064790849585
        • properties: jungle
          • type:jungle
          • Map:20
      • 391: Feature (Point, 2 properties)
        • type:Feature
        • id:391
        • geometry: Point (20.99, -2.85)
          • type:Point
          • coordinates: [20.98805881890557, -2.8505774993233723]
            • 0:20.98805881890557
            • 1:-2.8505774993233723
        • properties: jungle
          • type:jungle
          • Map:10
      • 392: Feature (Point, 2 properties)
        • type:Feature
        • id:392
        • geometry: Point (24.36, -4.18)
          • type:Point
          • coordinates: [24.363117972185346, -4.178757906596298]
            • 0:24.363117972185346
            • 1:-4.178757906596298
        • properties: jungle
          • type:jungle
          • Map:30
      • 393: Feature (Point, 2 properties)
        • type:Feature
        • id:393
        • geometry: Point (23.86, -0.29)
          • type:Point
          • coordinates: [23.85990918769438, -0.28634152755135717]
            • 0:23.85990918769438
            • 1:-0.28634152755135717
        • properties: jungle
          • type:jungle
          • Map:10
      • 394: Feature (Point, 2 properties)
        • type:Feature
        • id:394
        • geometry: Point (24.43, -3.62)
          • type:Point
          • coordinates: [24.429133716894764, -3.6220819309729833]
            • 0:24.429133716894764
            • 1:-3.6220819309729833
        • properties: jungle
          • type:jungle
          • Map:10
      • 395: Feature (Point, 2 properties)
        • type:Feature
        • id:395
        • geometry: Point (24.10, -4.54)
          • type:Point
          • coordinates: [24.10478899796751, -4.536667338371741]
            • 0:24.10478899796751
            • 1:-4.536667338371741
        • properties: jungle
          • type:jungle
          • Map:10
      • 396: Feature (Point, 2 properties)
        • type:Feature
        • id:396
        • geometry: Point (21.87, -3.37)
          • type:Point
          • coordinates: [21.874924786730105, -3.3681931540445635]
            • 0:21.874924786730105
            • 1:-3.3681931540445635
        • properties: jungle
          • type:jungle
          • Map:10
      • 397: Feature (Point, 2 properties)
        • type:Feature
        • id:397
        • geometry: Point (24.15, -4.96)
          • type:Point
          • coordinates: [24.149769088463778, -4.961897607450298]
            • 0:24.149769088463778
            • 1:-4.961897607450298
        • properties: jungle
          • type:jungle
          • Map:10
      • 398: Feature (Point, 2 properties)
        • type:Feature
        • id:398
        • geometry: Point (22.49, -0.26)
          • type:Point
          • coordinates: [22.491996385625328, -0.2605491509116148]
            • 0:22.491996385625328
            • 1:-0.2605491509116148
        • properties: jungle
          • type:jungle
          • Map:10
      • 399: Feature (Point, 2 properties)
        • type:Feature
        • id:399
        • geometry: Point (20.21, -0.96)
          • type:Point
          • coordinates: [20.213009121645854, -0.9571200596672551]
            • 0:20.213009121645854
            • 1:-0.9571200596672551
        • properties: jungle
          • type:jungle
          • Map:10
      • 400: Feature (Point, 2 properties)
        • type:Feature
        • id:400
        • geometry: Point (23.59, -2.93)
          • type:Point
          • coordinates: [23.589909598706004, -2.9341394017677844]
            • 0:23.589909598706004
            • 1:-2.9341394017677844
        • properties: jungle
          • type:jungle
          • Map:10
      • 401: Feature (Point, 2 properties)
        • type:Feature
        • id:401
        • geometry: Point (21.55, -1.25)
          • type:Point
          • coordinates: [21.549891223218104, -1.2450940276542108]
            • 0:21.549891223218104
            • 1:-1.2450940276542108
        • properties: jungle
          • type:jungle
          • Map:10
      • 402: Feature (Point, 2 properties)
        • type:Feature
        • id:402
        • geometry: Point (23.92, -3.69)
          • type:Point
          • coordinates: [23.919961782044243, -3.6947462313472244]
            • 0:23.919961782044243
            • 1:-3.6947462313472244
        • properties: jungle
          • type:jungle
          • Map:10
      • 403: Feature (Point, 2 properties)
        • type:Feature
        • id:403
        • geometry: Point (21.01, -4.08)
          • type:Point
          • coordinates: [21.011544271644286, -4.079187841213386]
            • 0:21.011544271644286
            • 1:-4.079187841213386
        • properties: jungle
          • type:jungle
          • Map:10
      • 404: Feature (Point, 2 properties)
        • type:Feature
        • id:404
        • geometry: Point (23.55, -0.49)
          • type:Point
          • coordinates: [23.551602279248613, -0.49109533807077116]
            • 0:23.551602279248613
            • 1:-0.49109533807077116
        • properties: jungle
          • type:jungle
          • Map:10
      • 405: Feature (Point, 2 properties)
        • type:Feature
        • id:405
        • geometry: Point (24.59, -1.76)
          • type:Point
          • coordinates: [24.58832964811144, -1.761332846499417]
            • 0:24.58832964811144
            • 1:-1.761332846499417
        • properties: jungle
          • type:jungle
          • Map:10
      • 406: Feature (Point, 2 properties)
        • type:Feature
        • id:406
        • geometry: Point (20.17, -4.51)
          • type:Point
          • coordinates: [20.168549160452912, -4.505768469990157]
            • 0:20.168549160452912
            • 1:-4.505768469990157
        • properties: jungle
          • type:jungle
          • Map:10
      • 407: Feature (Point, 2 properties)
        • type:Feature
        • id:407
        • geometry: Point (23.67, 0.13)
          • type:Point
          • coordinates: [23.674650110892713, 0.13445792397526712]
            • 0:23.674650110892713
            • 1:0.13445792397526712
        • properties: jungle
          • type:jungle
          • Map:10
      • 408: Feature (Point, 2 properties)
        • type:Feature
        • id:408
        • geometry: Point (24.33, -3.77)
          • type:Point
          • coordinates: [24.33074561225364, -3.772022500913412]
            • 0:24.33074561225364
            • 1:-3.772022500913412
        • properties: jungle
          • type:jungle
          • Map:30
      • 409: Feature (Point, 2 properties)
        • type:Feature
        • id:409
        • geometry: Point (22.56, -3.49)
          • type:Point
          • coordinates: [22.560736877042125, -3.4910935601332675]
            • 0:22.560736877042125
            • 1:-3.4910935601332675
        • properties: jungle
          • type:jungle
          • Map:10
      • 410: Feature (Point, 2 properties)
        • type:Feature
        • id:410
        • geometry: Point (24.64, -1.63)
          • type:Point
          • coordinates: [24.64453592946629, -1.6264596535126408]
            • 0:24.64453592946629
            • 1:-1.6264596535126408
        • properties: jungle
          • type:jungle
          • Map:10
      • 411: Feature (Point, 2 properties)
        • type:Feature
        • id:411
        • geometry: Point (23.03, -3.47)
          • type:Point
          • coordinates: [23.026790524263976, -3.4711176238645716]
            • 0:23.026790524263976
            • 1:-3.4711176238645716
        • properties: jungle
          • type:jungle
          • Map:10
      • 412: Feature (Point, 2 properties)
        • type:Feature
        • id:412
        • geometry: Point (22.44, -1.35)
          • type:Point
          • coordinates: [22.437970235486926, -1.347621934040614]
            • 0:22.437970235486926
            • 1:-1.347621934040614
        • properties: jungle
          • type:jungle
          • Map:10
      • 413: Feature (Point, 2 properties)
        • type:Feature
        • id:413
        • geometry: Point (20.45, -4.06)
          • type:Point
          • coordinates: [20.448994796398733, -4.063904368128683]
            • 0:20.448994796398733
            • 1:-4.063904368128683
        • properties: jungle
          • type:jungle
          • Map:10
      • 414: Feature (Point, 2 properties)
        • type:Feature
        • id:414
        • geometry: Point (21.26, -1.54)
          • type:Point
          • coordinates: [21.261446285928905, -1.541014252917333]
            • 0:21.261446285928905
            • 1:-1.541014252917333
        • properties: jungle
          • type:jungle
          • Map:10
      • 415: Feature (Point, 2 properties)
        • type:Feature
        • id:415
        • geometry: Point (24.43, -2.05)
          • type:Point
          • coordinates: [24.42745915991016, -2.05116764098794]
            • 0:24.42745915991016
            • 1:-2.05116764098794
        • properties: jungle
          • type:jungle
          • Map:10
      • 416: Feature (Point, 2 properties)
        • type:Feature
        • id:416
        • geometry: Point (21.23, -0.58)
          • type:Point
          • coordinates: [21.23143070400856, -0.5822395367943726]
            • 0:21.23143070400856
            • 1:-0.5822395367943726
        • properties: jungle
          • type:jungle
          • Map:10
      • 417: Feature (Point, 2 properties)
        • type:Feature
        • id:417
        • geometry: Point (25.01, -1.71)
          • type:Point
          • coordinates: [25.007556481840606, -1.7067483824768768]
            • 0:25.007556481840606
            • 1:-1.7067483824768768
        • properties: jungle
          • type:jungle
          • Map:10
      • 418: Feature (Point, 2 properties)
        • type:Feature
        • id:418
        • geometry: Point (20.97, -0.63)
          • type:Point
          • coordinates: [20.971564522265744, -0.6305742942311695]
            • 0:20.971564522265744
            • 1:-0.6305742942311695
        • properties: jungle
          • type:jungle
          • Map:10
      • 419: Feature (Point, 2 properties)
        • type:Feature
        • id:419
        • geometry: Point (21.88, -4.49)
          • type:Point
          • coordinates: [21.877895359372626, -4.485060264497151]
            • 0:21.877895359372626
            • 1:-4.485060264497151
        • properties: jungle
          • type:jungle
          • Map:10
      • 420: Feature (Point, 2 properties)
        • type:Feature
        • id:420
        • geometry: Point (21.90, -3.10)
          • type:Point
          • coordinates: [21.896652456342817, -3.100159307414104]
            • 0:21.896652456342817
            • 1:-3.100159307414104
        • properties: jungle
          • type:jungle
          • Map:10
      • 421: Feature (Point, 2 properties)
        • type:Feature
        • id:421
        • geometry: Point (21.49, -3.91)
          • type:Point
          • coordinates: [21.494661385130225, -3.912548875760441]
            • 0:21.494661385130225
            • 1:-3.912548875760441
        • properties: jungle
          • type:jungle
          • Map:30
      • 422: Feature (Point, 2 properties)
        • type:Feature
        • id:422
        • geometry: Point (21.02, -2.68)
          • type:Point
          • coordinates: [21.024986983837653, -2.6838172648307053]
            • 0:21.024986983837653
            • 1:-2.6838172648307053
        • properties: jungle
          • type:jungle
          • Map:10
      • 423: Feature (Point, 2 properties)
        • type:Feature
        • id:423
        • geometry: Point (21.27, -1.27)
          • type:Point
          • coordinates: [21.27421068137492, -1.27137069942619]
            • 0:21.27421068137492
            • 1:-1.27137069942619
        • properties: jungle
          • type:jungle
          • Map:10
      • 424: Feature (Point, 2 properties)
        • type:Feature
        • id:424
        • geometry: Point (23.53, -2.62)
          • type:Point
          • coordinates: [23.530799800680573, -2.624460295707554]
            • 0:23.530799800680573
            • 1:-2.624460295707554
        • properties: jungle
          • type:jungle
          • Map:10
      • 425: Feature (Point, 2 properties)
        • type:Feature
        • id:425
        • geometry: Point (23.65, -1.23)
          • type:Point
          • coordinates: [23.648829734802483, -1.2271324977113969]
            • 0:23.648829734802483
            • 1:-1.2271324977113969
        • properties: jungle
          • type:jungle
          • Map:10
      • 426: Feature (Point, 2 properties)
        • type:Feature
        • id:426
        • geometry: Point (23.79, -2.11)
          • type:Point
          • coordinates: [23.786205513316055, -2.10808094652709]
            • 0:23.786205513316055
            • 1:-2.10808094652709
        • properties: jungle
          • type:jungle
          • Map:10
      • 427: Feature (Point, 2 properties)
        • type:Feature
        • id:427
        • geometry: Point (23.83, -0.28)
          • type:Point
          • coordinates: [23.826880471852874, -0.2768601693086541]
            • 0:23.826880471852874
            • 1:-0.2768601693086541
        • properties: jungle
          • type:jungle
          • Map:10
      • 428: Feature (Point, 2 properties)
        • type:Feature
        • id:428
        • geometry: Point (21.78, -3.04)
          • type:Point
          • coordinates: [21.78129297203903, -3.041858950992093]
            • 0:21.78129297203903
            • 1:-3.041858950992093
        • properties: jungle
          • type:jungle
          • Map:10
      • 429: Feature (Point, 2 properties)
        • type:Feature
        • id:429
        • geometry: Point (22.64, -3.39)
          • type:Point
          • coordinates: [22.64343640888862, -3.3931892397925276]
            • 0:22.64343640888862
            • 1:-3.3931892397925276
        • properties: jungle
          • type:jungle
          • Map:10
      • 430: Feature (Point, 2 properties)
        • type:Feature
        • id:430
        • geometry: Point (20.47, -2.31)
          • type:Point
          • coordinates: [20.46742172018297, -2.30559795019276]
            • 0:20.46742172018297
            • 1:-2.30559795019276
        • properties: jungle
          • type:jungle
          • Map:10
      • 431: Feature (Point, 2 properties)
        • type:Feature
        • id:431
        • geometry: Point (20.63, -2.22)
          • type:Point
          • coordinates: [20.6337337319724, -2.2221301395015614]
            • 0:20.6337337319724
            • 1:-2.2221301395015614
        • properties: jungle
          • type:jungle
          • Map:10
      • 432: Feature (Point, 2 properties)
        • type:Feature
        • id:432
        • geometry: Point (20.92, -1.54)
          • type:Point
          • coordinates: [20.915951588931208, -1.5445662222587357]
            • 0:20.915951588931208
            • 1:-1.5445662222587357
        • properties: jungle
          • type:jungle
          • Map:10
      • 433: Feature (Point, 2 properties)
        • type:Feature
        • id:433
        • geometry: Point (23.28, -1.26)
          • type:Point
          • coordinates: [23.280803889542995, -1.2551431201798846]
            • 0:23.280803889542995
            • 1:-1.2551431201798846
        • properties: jungle
          • type:jungle
          • Map:10
      • 434: Feature (Point, 2 properties)
        • type:Feature
        • id:434
        • geometry: Point (21.86, -0.78)
          • type:Point
          • coordinates: [21.861865603088273, -0.7784857856200452]
            • 0:21.861865603088273
            • 1:-0.7784857856200452
        • properties: jungle
          • type:jungle
          • Map:10
      • 435: Feature (Point, 2 properties)
        • type:Feature
        • id:435
        • geometry: Point (22.20, -3.99)
          • type:Point
          • coordinates: [22.19524303114634, -3.9863494049673798]
            • 0:22.19524303114634
            • 1:-3.9863494049673798
        • properties: jungle
          • type:jungle
          • Map:10
      • 436: Feature (Point, 2 properties)
        • type:Feature
        • id:436
        • geometry: Point (22.24, -2.20)
          • type:Point
          • coordinates: [22.239196582274563, -2.1975864479282485]
            • 0:22.239196582274563
            • 1:-2.1975864479282485
        • properties: jungle
          • type:jungle
          • Map:10
      • 437: Feature (Point, 2 properties)
        • type:Feature
        • id:437
        • geometry: Point (25.06, -2.03)
          • type:Point
          • coordinates: [25.064117061219555, -2.0343028185764287]
            • 0:25.064117061219555
            • 1:-2.0343028185764287
        • properties: jungle
          • type:jungle
          • Map:10
      • 438: Feature (Point, 2 properties)
        • type:Feature
        • id:438
        • geometry: Point (20.38, -2.84)
          • type:Point
          • coordinates: [20.381914376911173, -2.844310175990845]
            • 0:20.381914376911173
            • 1:-2.844310175990845
        • properties: jungle
          • type:jungle
          • Map:10
      • 439: Feature (Point, 2 properties)
        • type:Feature
        • id:439
        • geometry: Point (24.45, -2.64)
          • type:Point
          • coordinates: [24.449907266766232, -2.6367606516879762]
            • 0:24.449907266766232
            • 1:-2.6367606516879762
        • properties: jungle
          • type:jungle
          • Map:10
      • 440: Feature (Point, 2 properties)
        • type:Feature
        • id:440
        • geometry: Point (22.73, -0.90)
          • type:Point
          • coordinates: [22.73156188980368, -0.8993922882638107]
            • 0:22.73156188980368
            • 1:-0.8993922882638107
        • properties: jungle
          • type:jungle
          • Map:10
      • 441: Feature (Point, 2 properties)
        • type:Feature
        • id:441
        • geometry: Point (21.51, -1.64)
          • type:Point
          • coordinates: [21.508643102839514, -1.6378852171592186]
            • 0:21.508643102839514
            • 1:-1.6378852171592186
        • properties: jungle
          • type:jungle
          • Map:10
      • 442: Feature (Point, 2 properties)
        • type:Feature
        • id:442
        • geometry: Point (22.01, -0.65)
          • type:Point
          • coordinates: [22.00681186072393, -0.6490342167539764]
            • 0:22.00681186072393
            • 1:-0.6490342167539764
        • properties: jungle
          • type:jungle
          • Map:10
      • 443: Feature (Point, 2 properties)
        • type:Feature
        • id:443
        • geometry: Point (22.67, -2.12)
          • type:Point
          • coordinates: [22.67220917456417, -2.11777819903844]
            • 0:22.67220917456417
            • 1:-2.11777819903844
        • properties: jungle
          • type:jungle
          • Map:10
      • 444: Feature (Point, 2 properties)
        • type:Feature
        • id:444
        • geometry: Point (22.48, -3.18)
          • type:Point
          • coordinates: [22.480721652646043, -3.1775804201517777]
            • 0:22.480721652646043
            • 1:-3.1775804201517777
        • properties: jungle
          • type:jungle
          • Map:10
      • 445: Feature (Point, 2 properties)
        • type:Feature
        • id:445
        • geometry: Point (20.98, -4.24)
          • type:Point
          • coordinates: [20.98420339296263, -4.236799368814176]
            • 0:20.98420339296263
            • 1:-4.236799368814176
        • properties: jungle
          • type:jungle
          • Map:10
      • 446: Feature (Point, 2 properties)
        • type:Feature
        • id:446
        • geometry: Point (21.49, -3.09)
          • type:Point
          • coordinates: [21.486700313670454, -3.091630991002553]
            • 0:21.486700313670454
            • 1:-3.091630991002553
        • properties: jungle
          • type:jungle
          • Map:10
      • 447: Feature (Point, 2 properties)
        • type:Feature
        • id:447
        • geometry: Point (22.19, -0.85)
          • type:Point
          • coordinates: [22.19019535611813, -0.8468793662035408]
            • 0:22.19019535611813
            • 1:-0.8468793662035408
        • properties: jungle
          • type:jungle
          • Map:10
      • 448: Feature (Point, 2 properties)
        • type:Feature
        • id:448
        • geometry: Point (21.71, -4.57)
          • type:Point
          • coordinates: [21.711911329303526, -4.567659730662324]
            • 0:21.711911329303526
            • 1:-4.567659730662324
        • properties: jungle
          • type:jungle
          • Map:10
      • 449: Feature (Point, 2 properties)
        • type:Feature
        • id:449
        • geometry: Point (22.87, -4.92)
          • type:Point
          • coordinates: [22.866382793576783, -4.91511962931388]
            • 0:22.866382793576783
            • 1:-4.91511962931388
        • properties: jungle
          • type:jungle
          • Map:10
      • 450: Feature (Point, 2 properties)
        • type:Feature
        • id:450
        • geometry: Point (22.31, -3.12)
          • type:Point
          • coordinates: [22.31415685924849, -3.1220892923173063]
            • 0:22.31415685924849
            • 1:-3.1220892923173063
        • properties: jungle
          • type:jungle
          • Map:10
      • 451: Feature (Point, 2 properties)
        • type:Feature
        • id:451
        • geometry: Point (25.14, -2.15)
          • type:Point
          • coordinates: [25.138935639271956, -2.149022785882623]
            • 0:25.138935639271956
            • 1:-2.149022785882623
        • properties: jungle
          • type:jungle
          • Map:10
      • 452: Feature (Point, 2 properties)
        • type:Feature
        • id:452
        • geometry: Point (23.74, -1.23)
          • type:Point
          • coordinates: [23.736773783374876, -1.2253370753313901]
            • 0:23.736773783374876
            • 1:-1.2253370753313901
        • properties: jungle
          • type:jungle
          • Map:10
      • 453: Feature (Point, 2 properties)
        • type:Feature
        • id:453
        • geometry: Point (24.70, -0.62)
          • type:Point
          • coordinates: [24.703766483814256, -0.6168285951950786]
            • 0:24.703766483814256
            • 1:-0.6168285951950786
        • properties: jungle
          • type:jungle
          • Map:10
      • 454: Feature (Point, 2 properties)
        • type:Feature
        • id:454
        • geometry: Point (20.33, -0.44)
          • type:Point
          • coordinates: [20.333547516647265, -0.4359024486228758]
            • 0:20.333547516647265
            • 1:-0.4359024486228758
        • properties: jungle
          • type:jungle
          • Map:10
      • 455: Feature (Point, 2 properties)
        • type:Feature
        • id:455
        • geometry: Point (22.92, 0.16)
          • type:Point
          • coordinates: [22.924933177835086, 0.16345509220446636]
            • 0:22.924933177835086
            • 1:0.16345509220446636
        • properties: jungle
          • type:jungle
          • Map:10
      • 456: Feature (Point, 2 properties)
        • type:Feature
        • id:456
        • geometry: Point (21.22, -3.82)
          • type:Point
          • coordinates: [21.220636016213735, -3.8241735917455526]
            • 0:21.220636016213735
            • 1:-3.8241735917455526
        • properties: jungle
          • type:jungle
          • Map:10
      • 457: Feature (Point, 2 properties)
        • type:Feature
        • id:457
        • geometry: Point (22.26, -2.99)
          • type:Point
          • coordinates: [22.26059857873949, -2.9863771942281514]
            • 0:22.26059857873949
            • 1:-2.9863771942281514
        • properties: jungle
          • type:jungle
          • Map:10
      • 458: Feature (Point, 2 properties)
        • type:Feature
        • id:458
        • geometry: Point (21.31, -2.03)
          • type:Point
          • coordinates: [21.312649013791546, -2.03244148847476]
            • 0:21.312649013791546
            • 1:-2.03244148847476
        • properties: jungle
          • type:jungle
          • Map:10
      • 459: Feature (Point, 2 properties)
        • type:Feature
        • id:459
        • geometry: Point (20.46, -4.73)
          • type:Point
          • coordinates: [20.46182839600551, -4.725622524580977]
            • 0:20.46182839600551
            • 1:-4.725622524580977
        • properties: jungle
          • type:jungle
          • Map:10
      • 460: Feature (Point, 2 properties)
        • type:Feature
        • id:460
        • geometry: Point (19.79, -1.50)
          • type:Point
          • coordinates: [19.791953922602268, -1.5004950178258019]
            • 0:19.791953922602268
            • 1:-1.5004950178258019
        • properties: jungle
          • type:jungle
          • Map:10
      • 461: Feature (Point, 2 properties)
        • type:Feature
        • id:461
        • geometry: Point (24.73, -1.43)
          • type:Point
          • coordinates: [24.732894853423296, -1.434573092289459]
            • 0:24.732894853423296
            • 1:-1.434573092289459
        • properties: jungle
          • type:jungle
          • Map:10
      • 462: Feature (Point, 2 properties)
        • type:Feature
        • id:462
        • geometry: Point (21.73, -4.25)
          • type:Point
          • coordinates: [21.733283544267916, -4.254368952091423]
            • 0:21.733283544267916
            • 1:-4.254368952091423
        • properties: jungle
          • type:jungle
          • Map:10
      • 463: Feature (Point, 2 properties)
        • type:Feature
        • id:463
        • geometry: Point (23.38, -0.19)
          • type:Point
          • coordinates: [23.378744237838532, -0.18762548385892963]
            • 0:23.378744237838532
            • 1:-0.18762548385892963
        • properties: jungle
          • type:jungle
          • Map:10
      • 464: Feature (Point, 2 properties)
        • type:Feature
        • id:464
        • geometry: Point (22.39, -1.81)
          • type:Point
          • coordinates: [22.393284050715675, -1.8128460251988765]
            • 0:22.393284050715675
            • 1:-1.8128460251988765
        • properties: jungle
          • type:jungle
          • Map:10
      • 465: Feature (Point, 2 properties)
        • type:Feature
        • id:465
        • geometry: Point (21.23, -4.03)
          • type:Point
          • coordinates: [21.231322589580646, -4.029537182972677]
            • 0:21.231322589580646
            • 1:-4.029537182972677
        • properties: jungle
          • type:jungle
          • Map:10
      • 466: Feature (Point, 2 properties)
        • type:Feature
        • id:466
        • geometry: Point (24.37, -3.37)
          • type:Point
          • coordinates: [24.372822638717746, -3.3719630153588227]
            • 0:24.372822638717746
            • 1:-3.3719630153588227
        • properties: jungle
          • type:jungle
          • Map:10
      • 467: Feature (Point, 2 properties)
        • type:Feature
        • id:467
        • geometry: Point (22.47, -1.00)
          • type:Point
          • coordinates: [22.47261575423944, -0.9983890931309434]
            • 0:22.47261575423944
            • 1:-0.9983890931309434
        • properties: jungle
          • type:jungle
          • Map:10
      • 468: Feature (Point, 2 properties)
        • type:Feature
        • id:468
        • geometry: Point (23.24, -0.86)
          • type:Point
          • coordinates: [23.24247264385871, -0.8627544604013656]
            • 0:23.24247264385871
            • 1:-0.8627544604013656
        • properties: jungle
          • type:jungle
          • Map:10
      • 469: Feature (Point, 2 properties)
        • type:Feature
        • id:469
        • geometry: Point (20.79, -1.66)
          • type:Point
          • coordinates: [20.790205726388375, -1.6599723208723163]
            • 0:20.790205726388375
            • 1:-1.6599723208723163
        • properties: jungle
          • type:jungle
          • Map:10
      • 470: Feature (Point, 2 properties)
        • type:Feature
        • id:470
        • geometry: Point (23.10, -2.67)
          • type:Point
          • coordinates: [23.09859898097496, -2.6738944032726546]
            • 0:23.09859898097496
            • 1:-2.6738944032726546
        • properties: jungle
          • type:jungle
          • Map:10
      • 471: Feature (Point, 2 properties)
        • type:Feature
        • id:471
        • geometry: Point (22.36, -1.98)
          • type:Point
          • coordinates: [22.35503547790423, -1.9848635660614884]
            • 0:22.35503547790423
            • 1:-1.9848635660614884
        • properties: jungle
          • type:jungle
          • Map:10
      • 472: Feature (Point, 2 properties)
        • type:Feature
        • id:472
        • geometry: Point (21.26, 0.02)
          • type:Point
          • coordinates: [21.25783296441135, 0.01817474623557911]
            • 0:21.25783296441135
            • 1:0.01817474623557911
        • properties: jungle
          • type:jungle
          • Map:10
      • 473: Feature (Point, 2 properties)
        • type:Feature
        • id:473
        • geometry: Point (22.42, -4.88)
          • type:Point
          • coordinates: [22.419389126103578, -4.881812531317805]
            • 0:22.419389126103578
            • 1:-4.881812531317805
        • properties: jungle
          • type:jungle
          • Map:10
      • 474: Feature (Point, 2 properties)
        • type:Feature
        • id:474
        • geometry: Point (21.15, -2.03)
          • type:Point
          • coordinates: [21.150498031159643, -2.028188460525387]
            • 0:21.150498031159643
            • 1:-2.028188460525387
        • properties: jungle
          • type:jungle
          • Map:10
      • 475: Feature (Point, 2 properties)
        • type:Feature
        • id:475
        • geometry: Point (21.44, -0.10)
          • type:Point
          • coordinates: [21.439899399824718, -0.10354252761787804]
            • 0:21.439899399824718
            • 1:-0.10354252761787804
        • properties: jungle
          • type:jungle
          • Map:10
      • 476: Feature (Point, 2 properties)
        • type:Feature
        • id:476
        • geometry: Point (23.38, -0.87)
          • type:Point
          • coordinates: [23.37679504161614, -0.8743409544194849]
            • 0:23.37679504161614
            • 1:-0.8743409544194849
        • properties: jungle
          • type:jungle
          • Map:10
      • 477: Feature (Point, 2 properties)
        • type:Feature
        • id:477
        • geometry: Point (23.44, -1.78)
          • type:Point
          • coordinates: [23.443018603877636, -1.7754989514583701]
            • 0:23.443018603877636
            • 1:-1.7754989514583701
        • properties: jungle
          • type:jungle
          • Map:10
      • 478: Feature (Point, 2 properties)
        • type:Feature
        • id:478
        • geometry: Point (21.90, -4.04)
          • type:Point
          • coordinates: [21.904529687840867, -4.040220409695003]
            • 0:21.904529687840867
            • 1:-4.040220409695003
        • properties: jungle
          • type:jungle
          • Map:10
      • 479: Feature (Point, 2 properties)
        • type:Feature
        • id:479
        • geometry: Point (24.95, -2.05)
          • type:Point
          • coordinates: [24.950965671565196, -2.0461277112033947]
            • 0:24.950965671565196
            • 1:-2.0461277112033947
        • properties: jungle
          • type:jungle
          • Map:10
      • 480: Feature (Point, 2 properties)
        • type:Feature
        • id:480
        • geometry: Point (23.65, -1.36)
          • type:Point
          • coordinates: [23.652555631413247, -1.3562646936543759]
            • 0:23.652555631413247
            • 1:-1.3562646936543759
        • properties: jungle
          • type:jungle
          • Map:10
      • 481: Feature (Point, 2 properties)
        • type:Feature
        • id:481
        • geometry: Point (19.61, -2.96)
          • type:Point
          • coordinates: [19.614374932982958, -2.959397724439371]
            • 0:19.614374932982958
            • 1:-2.959397724439371
        • properties: jungle
          • type:jungle
          • Map:10
      • 482: Feature (Point, 2 properties)
        • type:Feature
        • id:482
        • geometry: Point (24.62, -4.35)
          • type:Point
          • coordinates: [24.62471470871903, -4.349580864729139]
            • 0:24.62471470871903
            • 1:-4.349580864729139
        • properties: jungle
          • type:jungle
          • Map:10
      • 483: Feature (Point, 2 properties)
        • type:Feature
        • id:483
        • geometry: Point (23.49, -3.82)
          • type:Point
          • coordinates: [23.489607960511123, -3.8168676642744694]
            • 0:23.489607960511123
            • 1:-3.8168676642744694
        • properties: jungle
          • type:jungle
          • Map:10
      • 484: Feature (Point, 2 properties)
        • type:Feature
        • id:484
        • geometry: Point (21.54, 0.09)
          • type:Point
          • coordinates: [21.543118156752207, 0.0927271077063172]
            • 0:21.543118156752207
            • 1:0.0927271077063172
        • properties: jungle
          • type:jungle
          • Map:10
      • 485: Feature (Point, 2 properties)
        • type:Feature
        • id:485
        • geometry: Point (23.99, -0.25)
          • type:Point
          • coordinates: [23.987625227134075, -0.24632337267827567]
            • 0:23.987625227134075
            • 1:-0.24632337267827567
        • properties: jungle
          • type:jungle
          • Map:10
      • 486: Feature (Point, 2 properties)
        • type:Feature
        • id:486
        • geometry: Point (20.95, -4.13)
          • type:Point
          • coordinates: [20.950762941582465, -4.129099223304669]
            • 0:20.950762941582465
            • 1:-4.129099223304669
        • properties: jungle
          • type:jungle
          • Map:10
      • 487: Feature (Point, 2 properties)
        • type:Feature
        • id:487
        • geometry: Point (25.22, -0.88)
          • type:Point
          • coordinates: [25.21854178390821, -0.8752348214223031]
            • 0:25.21854178390821
            • 1:-0.8752348214223031
        • properties: jungle
          • type:jungle
          • Map:10
      • 488: Feature (Point, 2 properties)
        • type:Feature
        • id:488
        • geometry: Point (23.94, -4.06)
          • type:Point
          • coordinates: [23.94319937344109, -4.059501138732393]
            • 0:23.94319937344109
            • 1:-4.059501138732393
        • properties: jungle
          • type:jungle
          • Map:10
      • 489: Feature (Point, 2 properties)
        • type:Feature
        • id:489
        • geometry: Point (21.11, -3.84)
          • type:Point
          • coordinates: [21.10582993700737, -3.836534649305697]
            • 0:21.10582993700737
            • 1:-3.836534649305697
        • properties: jungle
          • type:jungle
          • Map:10
      • 490: Feature (Point, 2 properties)
        • type:Feature
        • id:490
        • geometry: Point (24.09, -4.61)
          • type:Point
          • coordinates: [24.094426938353788, -4.610725095287734]
            • 0:24.094426938353788
            • 1:-4.610725095287734
        • properties: jungle
          • type:jungle
          • Map:10
      • 491: Feature (Point, 2 properties)
        • type:Feature
        • id:491
        • geometry: Point (21.62, -0.85)
          • type:Point
          • coordinates: [21.6158308501027, -0.8493800558936758]
            • 0:21.6158308501027
            • 1:-0.8493800558936758
        • properties: jungle
          • type:jungle
          • Map:10
      • 492: Feature (Point, 2 properties)
        • type:Feature
        • id:492
        • geometry: Point (21.25, -3.70)
          • type:Point
          • coordinates: [21.250182057273435, -3.695103015707303]
            • 0:21.250182057273435
            • 1:-3.695103015707303
        • properties: jungle
          • type:jungle
          • Map:10
      • 493: Feature (Point, 2 properties)
        • type:Feature
        • id:493
        • geometry: Point (24.46, -4.39)
          • type:Point
          • coordinates: [24.46214945826031, -4.391946791938867]
            • 0:24.46214945826031
            • 1:-4.391946791938867
        • properties: jungle
          • type:jungle
          • Map:30
      • 494: Feature (Point, 2 properties)
        • type:Feature
        • id:494
        • geometry: Point (21.68, -1.99)
          • type:Point
          • coordinates: [21.678352285205197, -1.988734789651629]
            • 0:21.678352285205197
            • 1:-1.988734789651629
        • properties: jungle
          • type:jungle
          • Map:10
      • 495: Feature (Point, 2 properties)
        • type:Feature
        • id:495
        • geometry: Point (19.97, -4.31)
          • type:Point
          • coordinates: [19.965149863380603, -4.309112150196668]
            • 0:19.965149863380603
            • 1:-4.309112150196668
        • properties: jungle
          • type:jungle
          • Map:30
      • 496: Feature (Point, 2 properties)
        • type:Feature
        • id:496
        • geometry: Point (23.92, -3.39)
          • type:Point
          • coordinates: [23.9237087094637, -3.392305415177487]
            • 0:23.9237087094637
            • 1:-3.392305415177487
        • properties: jungle
          • type:jungle
          • Map:10
      • 497: Feature (Point, 2 properties)
        • type:Feature
        • id:497
        • geometry: Point (20.06, -1.76)
          • type:Point
          • coordinates: [20.055550306293554, -1.7604471925549343]
            • 0:20.055550306293554
            • 1:-1.7604471925549343
        • properties: jungle
          • type:jungle
          • Map:10
      • 498: Feature (Point, 2 properties)
        • type:Feature
        • id:498
        • geometry: Point (19.94, -3.66)
          • type:Point
          • coordinates: [19.93695032818371, -3.6569771498883803]
            • 0:19.93695032818371
            • 1:-3.6569771498883803
        • properties: jungle
          • type:jungle
          • Map:10
      • 499: Feature (Point, 2 properties)
        • type:Feature
        • id:499
        • geometry: Point (22.70, -1.39)
          • type:Point
          • coordinates: [22.697164289209276, -1.3850091741162087]
            • 0:22.697164289209276
            • 1:-1.3850091741162087
        • properties: jungle
          • type:jungle
          • Map:10
      • 500: Feature (Point, 2 properties)
        • type:Feature
        • id:500
        • geometry: Point (22.64, -3.17)
          • type:Point
          • coordinates: [22.64187018242277, -3.174699129467545]
            • 0:22.64187018242277
            • 1:-3.174699129467545
        • properties: jungle
          • type:jungle
          • Map:10
      • 501: Feature (Point, 2 properties)
        • type:Feature
        • id:501
        • geometry: Point (24.31, -1.38)
          • type:Point
          • coordinates: [24.30528390340212, -1.382870723592939]
            • 0:24.30528390340212
            • 1:-1.382870723592939
        • properties: jungle
          • type:jungle
          • Map:10
      • 502: Feature (Point, 2 properties)
        • type:Feature
        • id:502
        • geometry: Point (23.09, -2.01)
          • type:Point
          • coordinates: [23.094231213636853, -2.0076843407539626]
            • 0:23.094231213636853
            • 1:-2.0076843407539626
        • properties: jungle
          • type:jungle
          • Map:10
      • 503: Feature (Point, 2 properties)
        • type:Feature
        • id:503
        • geometry: Point (19.89, -1.68)
          • type:Point
          • coordinates: [19.88645068481214, -1.6812861680931042]
            • 0:19.88645068481214
            • 1:-1.6812861680931042
        • properties: jungle
          • type:jungle
          • Map:10
      • 504: Feature (Point, 2 properties)
        • type:Feature
        • id:504
        • geometry: Point (24.76, -1.41)
          • type:Point
          • coordinates: [24.760082748485086, -1.407167396110498]
            • 0:24.760082748485086
            • 1:-1.407167396110498
        • properties: jungle
          • type:jungle
          • Map:10
      • 505: Feature (Point, 2 properties)
        • type:Feature
        • id:505
        • geometry: Point (22.36, -2.60)
          • type:Point
          • coordinates: [22.36487889897009, -2.597814691964701]
            • 0:22.36487889897009
            • 1:-2.597814691964701
        • properties: jungle
          • type:jungle
          • Map:10
      • 506: Feature (Point, 2 properties)
        • type:Feature
        • id:506
        • geometry: Point (20.72, -4.45)
          • type:Point
          • coordinates: [20.7180584725465, -4.452848829800938]
            • 0:20.7180584725465
            • 1:-4.452848829800938
        • properties: jungle
          • type:jungle
          • Map:10
      • 507: Feature (Point, 2 properties)
        • type:Feature
        • id:507
        • geometry: Point (23.56, -3.47)
          • type:Point
          • coordinates: [23.555575459130907, -3.4678371867278606]
            • 0:23.555575459130907
            • 1:-3.4678371867278606
        • properties: jungle
          • type:jungle
          • Map:10
      • 508: Feature (Point, 2 properties)
        • type:Feature
        • id:508
        • geometry: Point (22.87, -2.65)
          • type:Point
          • coordinates: [22.865077485788632, -2.647888413130375]
            • 0:22.865077485788632
            • 1:-2.647888413130375
        • properties: jungle
          • type:jungle
          • Map:10
      • 509: Feature (Point, 2 properties)
        • type:Feature
        • id:509
        • geometry: Point (20.38, -2.39)
          • type:Point
          • coordinates: [20.38121760382142, -2.393174776564675]
            • 0:20.38121760382142
            • 1:-2.393174776564675
        • properties: jungle
          • type:jungle
          • Map:10
      • 510: Feature (Point, 2 properties)
        • type:Feature
        • id:510
        • geometry: Point (24.87, -2.66)
          • type:Point
          • coordinates: [24.871512759927544, -2.6583552929127925]
            • 0:24.871512759927544
            • 1:-2.6583552929127925
        • properties: jungle
          • type:jungle
          • Map:10
      • 511: Feature (Point, 2 properties)
        • type:Feature
        • id:511
        • geometry: Point (21.96, -4.90)
          • type:Point
          • coordinates: [21.95879431381803, -4.904568959900822]
            • 0:21.95879431381803
            • 1:-4.904568959900822
        • properties: jungle
          • type:jungle
          • Map:10
      • 512: Feature (Point, 2 properties)
        • type:Feature
        • id:512
        • geometry: Point (24.56, -3.73)
          • type:Point
          • coordinates: [24.56221530687125, -3.7296217806058793]
            • 0:24.56221530687125
            • 1:-3.7296217806058793
        • properties: jungle
          • type:jungle
          • Map:10
      • 513: Feature (Point, 2 properties)
        • type:Feature
        • id:513
        • geometry: Point (22.99, -0.88)
          • type:Point
          • coordinates: [22.989163877572853, -0.8822171530725419]
            • 0:22.989163877572853
            • 1:-0.8822171530725419
        • properties: jungle
          • type:jungle
          • Map:10
      • 514: Feature (Point, 2 properties)
        • type:Feature
        • id:514
        • geometry: Point (24.20, -3.87)
          • type:Point
          • coordinates: [24.200365284895838, -3.8665361478921008]
            • 0:24.200365284895838
            • 1:-3.8665361478921008
        • properties: jungle
          • type:jungle
          • Map:10
      • 515: Feature (Point, 2 properties)
        • type:Feature
        • id:515
        • geometry: Point (23.88, -3.30)
          • type:Point
          • coordinates: [23.88193947615738, -3.300834723077461]
            • 0:23.88193947615738
            • 1:-3.300834723077461
        • properties: jungle
          • type:jungle
          • Map:10
      • 516: Feature (Point, 2 properties)
        • type:Feature
        • id:516
        • geometry: Point (22.38, -4.46)
          • type:Point
          • coordinates: [22.37859535570946, -4.461741191496988]
            • 0:22.37859535570946
            • 1:-4.461741191496988
        • properties: jungle
          • type:jungle
          • Map:10
      • 517: Feature (Point, 2 properties)
        • type:Feature
        • id:517
        • geometry: Point (20.07, -3.91)
          • type:Point
          • coordinates: [20.07020935047146, -3.906407560100289]
            • 0:20.07020935047146
            • 1:-3.906407560100289
        • properties: jungle
          • type:jungle
          • Map:10
      • 518: Feature (Point, 2 properties)
        • type:Feature
        • id:518
        • geometry: Point (20.55, -3.71)
          • type:Point
          • coordinates: [20.552175652464303, -3.711850372275013]
            • 0:20.552175652464303
            • 1:-3.711850372275013
        • properties: jungle
          • type:jungle
          • Map:10
      • 519: Feature (Point, 2 properties)
        • type:Feature
        • id:519
        • geometry: Point (19.90, -3.65)
          • type:Point
          • coordinates: [19.898231487593208, -3.6463175177620806]
            • 0:19.898231487593208
            • 1:-3.6463175177620806
        • properties: jungle
          • type:jungle
          • Map:10
      • 520: Feature (Point, 2 properties)
        • type:Feature
        • id:520
        • geometry: Point (24.14, -2.18)
          • type:Point
          • coordinates: [24.144367807103016, -2.180538804481645]
            • 0:24.144367807103016
            • 1:-2.180538804481645
        • properties: jungle
          • type:jungle
          • Map:10
      • 521: Feature (Point, 2 properties)
        • type:Feature
        • id:521
        • geometry: Point (21.78, -3.40)
          • type:Point
          • coordinates: [21.783730924200963, -3.3963228851322964]
            • 0:21.783730924200963
            • 1:-3.3963228851322964
        • properties: jungle
          • type:jungle
          • Map:10
      • 522: Feature (Point, 2 properties)
        • type:Feature
        • id:522
        • geometry: Point (22.05, -0.84)
          • type:Point
          • coordinates: [22.046506712774132, -0.8395268365156916]
            • 0:22.046506712774132
            • 1:-0.8395268365156916
        • properties: jungle
          • type:jungle
          • Map:10
      • 523: Feature (Point, 2 properties)
        • type:Feature
        • id:523
        • geometry: Point (20.66, -4.64)
          • type:Point
          • coordinates: [20.657243371717225, -4.641938232379936]
            • 0:20.657243371717225
            • 1:-4.641938232379936
        • properties: jungle
          • type:jungle
          • Map:30
      • 524: Feature (Point, 2 properties)
        • type:Feature
        • id:524
        • geometry: Point (24.50, -0.61)
          • type:Point
          • coordinates: [24.49548369589015, -0.6097451690612504]
            • 0:24.49548369589015
            • 1:-0.6097451690612504
        • properties: jungle
          • type:jungle
          • Map:10
      • 525: Feature (Point, 2 properties)
        • type:Feature
        • id:525
        • geometry: Point (21.05, -3.95)
          • type:Point
          • coordinates: [21.05216617867773, -3.9495373199993815]
            • 0:21.05216617867773
            • 1:-3.9495373199993815
        • properties: jungle
          • type:jungle
          • Map:10
      • 526: Feature (Point, 2 properties)
        • type:Feature
        • id:526
        • geometry: Point (21.93, -0.40)
          • type:Point
          • coordinates: [21.925426937858685, -0.39722548427659327]
            • 0:21.925426937858685
            • 1:-0.39722548427659327
        • properties: jungle
          • type:jungle
          • Map:10
      • 527: Feature (Point, 2 properties)
        • type:Feature
        • id:527
        • geometry: Point (22.37, -1.94)
          • type:Point
          • coordinates: [22.371612972075837, -1.9375927631341407]
            • 0:22.371612972075837
            • 1:-1.9375927631341407
        • properties: jungle
          • type:jungle
          • Map:10
      • 528: Feature (Point, 2 properties)
        • type:Feature
        • id:528
        • geometry: Point (22.07, -1.27)
          • type:Point
          • coordinates: [22.0718068176652, -1.2676465909832477]
            • 0:22.0718068176652
            • 1:-1.2676465909832477
        • properties: jungle
          • type:jungle
          • Map:10
      • 529: Feature (Point, 2 properties)
        • type:Feature
        • id:529
        • geometry: Point (19.75, -4.25)
          • type:Point
          • coordinates: [19.745822658625027, -4.251118475490332]
            • 0:19.745822658625027
            • 1:-4.251118475490332
        • properties: jungle
          • type:jungle
          • Map:10
      • 530: Feature (Point, 2 properties)
        • type:Feature
        • id:530
        • geometry: Point (24.04, -4.88)
          • type:Point
          • coordinates: [24.041374975409653, -4.884766270587434]
            • 0:24.041374975409653
            • 1:-4.884766270587434
        • properties: jungle
          • type:jungle
          • Map:10
      • 531: Feature (Point, 2 properties)
        • type:Feature
        • id:531
        • geometry: Point (22.43, -4.30)
          • type:Point
          • coordinates: [22.42509733651068, -4.296586603116413]
            • 0:22.42509733651068
            • 1:-4.296586603116413
        • properties: jungle
          • type:jungle
          • Map:10
      • 532: Feature (Point, 2 properties)
        • type:Feature
        • id:532
        • geometry: Point (20.29, -1.97)
          • type:Point
          • coordinates: [20.29494797803701, -1.9715448083618978]
            • 0:20.29494797803701
            • 1:-1.9715448083618978
        • properties: jungle
          • type:jungle
          • Map:10
      • 533: Feature (Point, 2 properties)
        • type:Feature
        • id:533
        • geometry: Point (20.26, -2.23)
          • type:Point
          • coordinates: [20.257314685251796, -2.2329201967961487]
            • 0:20.257314685251796
            • 1:-2.2329201967961487
        • properties: jungle
          • type:jungle
          • Map:10
      • 534: Feature (Point, 2 properties)
        • type:Feature
        • id:534
        • geometry: Point (20.42, -0.19)
          • type:Point
          • coordinates: [20.42259906773477, -0.18854476635921003]
            • 0:20.42259906773477
            • 1:-0.18854476635921003
        • properties: jungle
          • type:jungle
          • Map:10
      • 535: Feature (Point, 2 properties)
        • type:Feature
        • id:535
        • geometry: Point (21.75, -1.58)
          • type:Point
          • coordinates: [21.7459560853167, -1.583489298717977]
            • 0:21.7459560853167
            • 1:-1.583489298717977
        • properties: jungle
          • type:jungle
          • Map:10
      • 536: Feature (Point, 2 properties)
        • type:Feature
        • id:536
        • geometry: Point (23.91, -1.99)
          • type:Point
          • coordinates: [23.908599015532054, -1.9869867728421147]
            • 0:23.908599015532054
            • 1:-1.9869867728421147
        • properties: jungle
          • type:jungle
          • Map:10
      • 537: Feature (Point, 2 properties)
        • type:Feature
        • id:537
        • geometry: Point (24.74, -2.68)
          • type:Point
          • coordinates: [24.738750031471895, -2.678131969279816]
            • 0:24.738750031471895
            • 1:-2.678131969279816
        • properties: jungle
          • type:jungle
          • Map:10
      • 538: Feature (Point, 2 properties)
        • type:Feature
        • id:538
        • geometry: Point (19.62, -3.31)
          • type:Point
          • coordinates: [19.62124303538012, -3.3060545711073357]
            • 0:19.62124303538012
            • 1:-3.3060545711073357
        • properties: jungle
          • type:jungle
          • Map:10
      • 539: Feature (Point, 2 properties)
        • type:Feature
        • id:539
        • geometry: Point (21.33, -1.55)
          • type:Point
          • coordinates: [21.328179777864854, -1.5524172306245427]
            • 0:21.328179777864854
            • 1:-1.5524172306245427
        • properties: jungle
          • type:jungle
          • Map:10
      • 540: Feature (Point, 2 properties)
        • type:Feature
        • id:540
        • geometry: Point (24.22, -3.20)
          • type:Point
          • coordinates: [24.222497999461126, -3.204228449391323]
            • 0:24.222497999461126
            • 1:-3.204228449391323
        • properties: jungle
          • type:jungle
          • Map:10
      • 541: Feature (Point, 2 properties)
        • type:Feature
        • id:541
        • geometry: Point (24.91, -3.08)
          • type:Point
          • coordinates: [24.908581533425956, -3.082896754414669]
            • 0:24.908581533425956
            • 1:-3.082896754414669
        • properties: jungle
          • type:jungle
          • Map:10
      • 542: Feature (Point, 2 properties)
        • type:Feature
        • id:542
        • geometry: Point (24.03, -3.22)
          • type:Point
          • coordinates: [24.029699473633414, -3.2163774524588393]
            • 0:24.029699473633414
            • 1:-3.2163774524588393
        • properties: jungle
          • type:jungle
          • Map:10
      • 543: Feature (Point, 2 properties)
        • type:Feature
        • id:543
        • geometry: Point (23.10, -2.57)
          • type:Point
          • coordinates: [23.10057770819702, -2.5660252211806127]
            • 0:23.10057770819702
            • 1:-2.5660252211806127
        • properties: jungle
          • type:jungle
          • Map:10
      • 544: Feature (Point, 2 properties)
        • type:Feature
        • id:544
        • geometry: Point (20.52, -2.14)
          • type:Point
          • coordinates: [20.522821437871556, -2.1365080094411795]
            • 0:20.522821437871556
            • 1:-2.1365080094411795
        • properties: jungle
          • type:jungle
          • Map:10
      • 545: Feature (Point, 2 properties)
        • type:Feature
        • id:545
        • geometry: Point (20.34, -2.97)
          • type:Point
          • coordinates: [20.342075276216754, -2.9749094734146295]
            • 0:20.342075276216754
            • 1:-2.9749094734146295
        • properties: jungle
          • type:jungle
          • Map:10
      • 546: Feature (Point, 2 properties)
        • type:Feature
        • id:546
        • geometry: Point (20.62, -3.80)
          • type:Point
          • coordinates: [20.622746251126376, -3.7974526256444094]
            • 0:20.622746251126376
            • 1:-3.7974526256444094
        • properties: jungle
          • type:jungle
          • Map:10
      • 547: Feature (Point, 2 properties)
        • type:Feature
        • id:547
        • geometry: Point (22.13, -1.14)
          • type:Point
          • coordinates: [22.126122387060786, -1.1425542830096709]
            • 0:22.126122387060786
            • 1:-1.1425542830096709
        • properties: jungle
          • type:jungle
          • Map:10
      • 548: Feature (Point, 2 properties)
        • type:Feature
        • id:548
        • geometry: Point (21.67, -4.86)
          • type:Point
          • coordinates: [21.671760949977013, -4.8553151199388696]
            • 0:21.671760949977013
            • 1:-4.8553151199388696
        • properties: jungle
          • type:jungle
          • Map:10
      • 549: Feature (Point, 2 properties)
        • type:Feature
        • id:549
        • geometry: Point (23.68, -2.27)
          • type:Point
          • coordinates: [23.67962436722258, -2.2674059354847835]
            • 0:23.67962436722258
            • 1:-2.2674059354847835
        • properties: jungle
          • type:jungle
          • Map:10
      • 550: Feature (Point, 2 properties)
        • type:Feature
        • id:550
        • geometry: Point (22.37, -4.31)
          • type:Point
          • coordinates: [22.371788065453018, -4.30646641248632]
            • 0:22.371788065453018
            • 1:-4.30646641248632
        • properties: jungle
          • type:jungle
          • Map:10
      • 551: Feature (Point, 2 properties)
        • type:Feature
        • id:551
        • geometry: Point (22.73, -1.27)
          • type:Point
          • coordinates: [22.729390570845577, -1.2692794158791698]
            • 0:22.729390570845577
            • 1:-1.2692794158791698
        • properties: jungle
          • type:jungle
          • Map:10
      • 552: Feature (Point, 2 properties)
        • type:Feature
        • id:552
        • geometry: Point (20.74, -2.05)
          • type:Point
          • coordinates: [20.740053564012758, -2.0536707706715154]
            • 0:20.740053564012758
            • 1:-2.0536707706715154
        • properties: jungle
          • type:jungle
          • Map:10
      • 553: Feature (Point, 2 properties)
        • type:Feature
        • id:553
        • geometry: Point (22.95, -2.16)
          • type:Point
          • coordinates: [22.953731680007422, -2.1585874498772775]
            • 0:22.953731680007422
            • 1:-2.1585874498772775
        • properties: jungle
          • type:jungle
          • Map:10
      • 554: Feature (Point, 2 properties)
        • type:Feature
        • id:554
        • geometry: Point (22.14, -3.20)
          • type:Point
          • coordinates: [22.141761969184465, -3.1963094829551575]
            • 0:22.141761969184465
            • 1:-3.1963094829551575
        • properties: jungle
          • type:jungle
          • Map:10
      • 555: Feature (Point, 2 properties)
        • type:Feature
        • id:555
        • geometry: Point (20.70, -2.37)
          • type:Point
          • coordinates: [20.70144211097932, -2.369898596294105]
            • 0:20.70144211097932
            • 1:-2.369898596294105
        • properties: jungle
          • type:jungle
          • Map:10
      • 556: Feature (Point, 2 properties)
        • type:Feature
        • id:556
        • geometry: Point (20.39, -1.65)
          • type:Point
          • coordinates: [20.393165916339722, -1.6538589207985703]
            • 0:20.393165916339722
            • 1:-1.6538589207985703
        • properties: jungle
          • type:jungle
          • Map:10
      • 557: Feature (Point, 2 properties)
        • type:Feature
        • id:557
        • geometry: Point (24.26, -1.90)
          • type:Point
          • coordinates: [24.262543735654248, -1.8983328372490036]
            • 0:24.262543735654248
            • 1:-1.8983328372490036
        • properties: jungle
          • type:jungle
          • Map:10
      • 558: Feature (Point, 2 properties)
        • type:Feature
        • id:558
        • geometry: Point (23.58, -3.21)
          • type:Point
          • coordinates: [23.583855696954785, -3.2056431555574134]
            • 0:23.583855696954785
            • 1:-3.2056431555574134
        • properties: jungle
          • type:jungle
          • Map:30
      • 559: Feature (Point, 2 properties)
        • type:Feature
        • id:559
        • geometry: Point (22.44, -2.45)
          • type:Point
          • coordinates: [22.44369307063786, -2.4543094955574407]
            • 0:22.44369307063786
            • 1:-2.4543094955574407
        • properties: jungle
          • type:jungle
          • Map:10
      • 560: Feature (Point, 2 properties)
        • type:Feature
        • id:560
        • geometry: Point (21.14, -1.30)
          • type:Point
          • coordinates: [21.135191092644412, -1.3007768419633]
            • 0:21.135191092644412
            • 1:-1.3007768419633
        • properties: jungle
          • type:jungle
          • Map:10
      • 561: Feature (Point, 2 properties)
        • type:Feature
        • id:561
        • geometry: Point (24.40, -2.57)
          • type:Point
          • coordinates: [24.39892178804377, -2.57035108652636]
            • 0:24.39892178804377
            • 1:-2.57035108652636
        • properties: jungle
          • type:jungle
          • Map:10
      • 562: Feature (Point, 2 properties)
        • type:Feature
        • id:562
        • geometry: Point (20.80, -4.88)
          • type:Point
          • coordinates: [20.802372420679674, -4.876678156640918]
            • 0:20.802372420679674
            • 1:-4.876678156640918
        • properties: jungle
          • type:jungle
          • Map:10
      • 563: Feature (Point, 2 properties)
        • type:Feature
        • id:563
        • geometry: Point (22.02, 0.07)
          • type:Point
          • coordinates: [22.023003721093534, 0.06569366654576922]
            • 0:22.023003721093534
            • 1:0.06569366654576922
        • properties: jungle
          • type:jungle
          • Map:10
      • 564: Feature (Point, 2 properties)
        • type:Feature
        • id:564
        • geometry: Point (23.47, -2.24)
          • type:Point
          • coordinates: [23.471947967701215, -2.2447947555203256]
            • 0:23.471947967701215
            • 1:-2.2447947555203256
        • properties: jungle
          • type:jungle
          • Map:10
      • 565: Feature (Point, 2 properties)
        • type:Feature
        • id:565
        • geometry: Point (23.38, -0.17)
          • type:Point
          • coordinates: [23.375752898746168, -0.16855698594255414]
            • 0:23.375752898746168
            • 1:-0.16855698594255414
        • properties: jungle
          • type:jungle
          • Map:10
      • 566: Feature (Point, 2 properties)
        • type:Feature
        • id:566
        • geometry: Point (21.15, -2.02)
          • type:Point
          • coordinates: [21.145152478987626, -2.024998866301092]
            • 0:21.145152478987626
            • 1:-2.024998866301092
        • properties: jungle
          • type:jungle
          • Map:10
      • 567: Feature (Point, 2 properties)
        • type:Feature
        • id:567
        • geometry: Point (23.57, -4.67)
          • type:Point
          • coordinates: [23.56756379899562, -4.667926189502684]
            • 0:23.56756379899562
            • 1:-4.667926189502684
        • properties: jungle
          • type:jungle
          • Map:10
      • 568: Feature (Point, 2 properties)
        • type:Feature
        • id:568
        • geometry: Point (24.83, -2.13)
          • type:Point
          • coordinates: [24.82973705891836, -2.130516356552486]
            • 0:24.82973705891836
            • 1:-2.130516356552486
        • properties: jungle
          • type:jungle
          • Map:10
      • 569: Feature (Point, 2 properties)
        • type:Feature
        • id:569
        • geometry: Point (20.34, -2.38)
          • type:Point
          • coordinates: [20.34024462558395, -2.3794280307341427]
            • 0:20.34024462558395
            • 1:-2.3794280307341427
        • properties: jungle
          • type:jungle
          • Map:10
      • 570: Feature (Point, 2 properties)
        • type:Feature
        • id:570
        • geometry: Point (22.57, -4.57)
          • type:Point
          • coordinates: [22.572444301599386, -4.573231678702423]
            • 0:22.572444301599386
            • 1:-4.573231678702423
        • properties: jungle
          • type:jungle
          • Map:10
      • 571: Feature (Point, 2 properties)
        • type:Feature
        • id:571
        • geometry: Point (24.14, -3.82)
          • type:Point
          • coordinates: [24.14493754523514, -3.8249623776428052]
            • 0:24.14493754523514
            • 1:-3.8249623776428052
        • properties: jungle
          • type:jungle
          • Map:30
      • 572: Feature (Point, 2 properties)
        • type:Feature
        • id:572
        • geometry: Point (24.39, -4.40)
          • type:Point
          • coordinates: [24.390998534983794, -4.3957891201187245]
            • 0:24.390998534983794
            • 1:-4.3957891201187245
        • properties: jungle
          • type:jungle
          • Map:30
      • 573: Feature (Point, 2 properties)
        • type:Feature
        • id:573
        • geometry: Point (21.83, -3.86)
          • type:Point
          • coordinates: [21.830525068503793, -3.8588065764750037]
            • 0:21.830525068503793
            • 1:-3.8588065764750037
        • properties: jungle
          • type:jungle
          • Map:10
      • 574: Feature (Point, 2 properties)
        • type:Feature
        • id:574
        • geometry: Point (19.70, -3.20)
          • type:Point
          • coordinates: [19.696304613188804, -3.1999352109414163]
            • 0:19.696304613188804
            • 1:-3.1999352109414163
        • properties: jungle
          • type:jungle
          • Map:10
      • 575: Feature (Point, 2 properties)
        • type:Feature
        • id:575
        • geometry: Point (23.49, -4.97)
          • type:Point
          • coordinates: [23.49029276839156, -4.973623961747098]
            • 0:23.49029276839156
            • 1:-4.973623961747098
        • properties: jungle
          • type:jungle
          • Map:80
      • 576: Feature (Point, 2 properties)
        • type:Feature
        • id:576
        • geometry: Point (23.92, -1.73)
          • type:Point
          • coordinates: [23.918321773549824, -1.7319122792165853]
            • 0:23.918321773549824
            • 1:-1.7319122792165853
        • properties: jungle
          • type:jungle
          • Map:10
      • 577: Feature (Point, 2 properties)
        • type:Feature
        • id:577
        • geometry: Point (24.60, -1.16)
          • type:Point
          • coordinates: [24.599081609339482, -1.1639598233481214]
            • 0:24.599081609339482
            • 1:-1.1639598233481214
        • properties: jungle
          • type:jungle
          • Map:10
      • 578: Feature (Point, 2 properties)
        • type:Feature
        • id:578
        • geometry: Point (20.18, -0.50)
          • type:Point
          • coordinates: [20.181455428571066, -0.49871913148114244]
            • 0:20.181455428571066
            • 1:-0.49871913148114244
        • properties: jungle
          • type:jungle
          • Map:10
      • 579: Feature (Point, 2 properties)
        • type:Feature
        • id:579
        • geometry: Point (22.99, -0.89)
          • type:Point
          • coordinates: [22.989598318097443, -0.8869482601380496]
            • 0:22.989598318097443
            • 1:-0.8869482601380496
        • properties: jungle
          • type:jungle
          • Map:10
      • 580: Feature (Point, 2 properties)
        • type:Feature
        • id:580
        • geometry: Point (21.92, -2.01)
          • type:Point
          • coordinates: [21.92048340222595, -2.0114681339928064]
            • 0:21.92048340222595
            • 1:-2.0114681339928064
        • properties: jungle
          • type:jungle
          • Map:10
      • 581: Feature (Point, 2 properties)
        • type:Feature
        • id:581
        • geometry: Point (20.13, -0.37)
          • type:Point
          • coordinates: [20.13439669211757, -0.3667961141491621]
            • 0:20.13439669211757
            • 1:-0.3667961141491621
        • properties: jungle
          • type:jungle
          • Map:10
      • 582: Feature (Point, 2 properties)
        • type:Feature
        • id:582
        • geometry: Point (24.22, -0.51)
          • type:Point
          • coordinates: [24.218512981013138, -0.5091180238416443]
            • 0:24.218512981013138
            • 1:-0.5091180238416443
        • properties: jungle
          • type:jungle
          • Map:10
      • 583: Feature (Point, 2 properties)
        • type:Feature
        • id:583
        • geometry: Point (21.07, -2.93)
          • type:Point
          • coordinates: [21.07200484986696, -2.932001770798828]
            • 0:21.07200484986696
            • 1:-2.932001770798828
        • properties: jungle
          • type:jungle
          • Map:10
      • 584: Feature (Point, 2 properties)
        • type:Feature
        • id:584
        • geometry: Point (24.75, -3.56)
          • type:Point
          • coordinates: [24.74562903323566, -3.5560428059546827]
            • 0:24.74562903323566
            • 1:-3.5560428059546827
        • properties: jungle
          • type:jungle
          • Map:10
      • 585: Feature (Point, 2 properties)
        • type:Feature
        • id:585
        • geometry: Point (22.54, -3.88)
          • type:Point
          • coordinates: [22.540521262747347, -3.879042936141776]
            • 0:22.540521262747347
            • 1:-3.879042936141776
        • properties: jungle
          • type:jungle
          • Map:10
      • 586: Feature (Point, 2 properties)
        • type:Feature
        • id:586
        • geometry: Point (22.42, -1.02)
          • type:Point
          • coordinates: [22.418711271072997, -1.0181691528085826]
            • 0:22.418711271072997
            • 1:-1.0181691528085826
        • properties: jungle
          • type:jungle
          • Map:10
      • 587: Feature (Point, 2 properties)
        • type:Feature
        • id:587
        • geometry: Point (22.03, -1.70)
          • type:Point
          • coordinates: [22.034474433696182, -1.704289938211461]
            • 0:22.034474433696182
            • 1:-1.704289938211461
        • properties: jungle
          • type:jungle
          • Map:10
      • 588: Feature (Point, 2 properties)
        • type:Feature
        • id:588
        • geometry: Point (23.61, -1.69)
          • type:Point
          • coordinates: [23.61489167492803, -1.688766587295515]
            • 0:23.61489167492803
            • 1:-1.688766587295515
        • properties: jungle
          • type:jungle
          • Map:10
      • 589: Feature (Point, 2 properties)
        • type:Feature
        • id:589
        • geometry: Point (22.08, -0.64)
          • type:Point
          • coordinates: [22.083639619063707, -0.6444747954444385]
            • 0:22.083639619063707
            • 1:-0.6444747954444385
        • properties: jungle
          • type:jungle
          • Map:10
      • 590: Feature (Point, 2 properties)
        • type:Feature
        • id:590
        • geometry: Point (23.60, -0.79)
          • type:Point
          • coordinates: [23.597014835326256, -0.7926216194648726]
            • 0:23.597014835326256
            • 1:-0.7926216194648726
        • properties: jungle
          • type:jungle
          • Map:10
      • 591: Feature (Point, 2 properties)
        • type:Feature
        • id:591
        • geometry: Point (23.49, -1.81)
          • type:Point
          • coordinates: [23.491873363005684, -1.806723907854396]
            • 0:23.491873363005684
            • 1:-1.806723907854396
        • properties: jungle
          • type:jungle
          • Map:10
      • 592: Feature (Point, 2 properties)
        • type:Feature
        • id:592
        • geometry: Point (23.33, -4.14)
          • type:Point
          • coordinates: [23.332099792587393, -4.136409630249475]
            • 0:23.332099792587393
            • 1:-4.136409630249475
        • properties: jungle
          • type:jungle
          • Map:10
      • 593: Feature (Point, 2 properties)
        • type:Feature
        • id:593
        • geometry: Point (21.49, -1.99)
          • type:Point
          • coordinates: [21.493754174015148, -1.9941967614640173]
            • 0:21.493754174015148
            • 1:-1.9941967614640173
        • properties: jungle
          • type:jungle
          • Map:10
      • 594: Feature (Point, 2 properties)
        • type:Feature
        • id:594
        • geometry: Point (23.48, -1.65)
          • type:Point
          • coordinates: [23.47928100816615, -1.6496602480986955]
            • 0:23.47928100816615
            • 1:-1.6496602480986955
        • properties: jungle
          • type:jungle
          • Map:10
      • 595: Feature (Point, 2 properties)
        • type:Feature
        • id:595
        • geometry: Point (24.12, -1.52)
          • type:Point
          • coordinates: [24.117023418287193, -1.5192906148650671]
            • 0:24.117023418287193
            • 1:-1.5192906148650671
        • properties: jungle
          • type:jungle
          • Map:10
      • 596: Feature (Point, 2 properties)
        • type:Feature
        • id:596
        • geometry: Point (23.92, -1.67)
          • type:Point
          • coordinates: [23.92186332078091, -1.6726302982966885]
            • 0:23.92186332078091
            • 1:-1.6726302982966885
        • properties: jungle
          • type:jungle
          • Map:10
      • 597: Feature (Point, 2 properties)
        • type:Feature
        • id:597
        • geometry: Point (25.21, -0.99)
          • type:Point
          • coordinates: [25.21464421534681, -0.9889077025084758]
            • 0:25.21464421534681
            • 1:-0.9889077025084758
        • properties: jungle
          • type:jungle
          • Map:10
      • 598: Feature (Point, 2 properties)
        • type:Feature
        • id:598
        • geometry: Point (24.40, -4.63)
          • type:Point
          • coordinates: [24.39813585709749, -4.625073141456507]
            • 0:24.39813585709749
            • 1:-4.625073141456507
        • properties: jungle
          • type:jungle
          • Map:30
      • 599: Feature (Point, 2 properties)
        • type:Feature
        • id:599
        • geometry: Point (22.99, -0.20)
          • type:Point
          • coordinates: [22.992586893894682, -0.19695672641722994]
            • 0:22.992586893894682
            • 1:-0.19695672641722994
        • properties: jungle
          • type:jungle
          • Map:10
      • 600: Feature (Point, 2 properties)
        • type:Feature
        • id:600
        • geometry: Point (21.38, -4.29)
          • type:Point
          • coordinates: [21.381662872346233, -4.286776045928109]
            • 0:21.381662872346233
            • 1:-4.286776045928109
        • properties: jungle
          • type:jungle
          • Map:10
      • 601: Feature (Point, 2 properties)
        • type:Feature
        • id:601
        • geometry: Point (20.88, -1.57)
          • type:Point
          • coordinates: [20.88331444325031, -1.5683452687200927]
            • 0:20.88331444325031
            • 1:-1.5683452687200927
        • properties: jungle
          • type:jungle
          • Map:10
      • 602: Feature (Point, 2 properties)
        • type:Feature
        • id:602
        • geometry: Point (19.47, -3.48)
          • type:Point
          • coordinates: [19.47203320891187, -3.4828301090368425]
            • 0:19.47203320891187
            • 1:-3.4828301090368425
        • properties: jungle
          • type:jungle
          • Map:10
      • 603: Feature (Point, 2 properties)
        • type:Feature
        • id:603
        • geometry: Point (21.76, -3.35)
          • type:Point
          • coordinates: [21.76456275212362, -3.3451924850230155]
            • 0:21.76456275212362
            • 1:-3.3451924850230155
        • properties: jungle
          • type:jungle
          • Map:10
      • 604: Feature (Point, 2 properties)
        • type:Feature
        • id:604
        • geometry: Point (21.08, -0.17)
          • type:Point
          • coordinates: [21.08009495218834, -0.17007430617815522]
            • 0:21.08009495218834
            • 1:-0.17007430617815522
        • properties: jungle
          • type:jungle
          • Map:10
      • 605: Feature (Point, 2 properties)
        • type:Feature
        • id:605
        • geometry: Point (22.98, -2.86)
          • type:Point
          • coordinates: [22.980469681002155, -2.8553255654078926]
            • 0:22.980469681002155
            • 1:-2.8553255654078926
        • properties: jungle
          • type:jungle
          • Map:10
      • 606: Feature (Point, 2 properties)
        • type:Feature
        • id:606
        • geometry: Point (24.81, -3.98)
          • type:Point
          • coordinates: [24.81331530319211, -3.983923522039117]
            • 0:24.81331530319211
            • 1:-3.983923522039117
        • properties: jungle
          • type:jungle
          • Map:10
      • 607: Feature (Point, 2 properties)
        • type:Feature
        • id:607
        • geometry: Point (22.96, -2.50)
          • type:Point
          • coordinates: [22.96299994528736, -2.5001800298033254]
            • 0:22.96299994528736
            • 1:-2.5001800298033254
        • properties: jungle
          • type:jungle
          • Map:10
      • 608: Feature (Point, 2 properties)
        • type:Feature
        • id:608
        • geometry: Point (21.92, -4.78)
          • type:Point
          • coordinates: [21.91916723840835, -4.775630654378221]
            • 0:21.91916723840835
            • 1:-4.775630654378221
        • properties: jungle
          • type:jungle
          • Map:10
      • 609: Feature (Point, 2 properties)
        • type:Feature
        • id:609
        • geometry: Point (24.57, -3.34)
          • type:Point
          • coordinates: [24.574766086801787, -3.3377117472280258]
            • 0:24.574766086801787
            • 1:-3.3377117472280258
        • properties: jungle
          • type:jungle
          • Map:10
      • 610: Feature (Point, 2 properties)
        • type:Feature
        • id:610
        • geometry: Point (21.74, 0.19)
          • type:Point
          • coordinates: [21.73557769733246, 0.18936180727698051]
            • 0:21.73557769733246
            • 1:0.18936180727698051
        • properties: jungle
          • type:jungle
          • Map:10
      • 611: Feature (Point, 2 properties)
        • type:Feature
        • id:611
        • geometry: Point (23.21, -4.30)
          • type:Point
          • coordinates: [23.206789394090137, -4.301658920717189]
            • 0:23.206789394090137
            • 1:-4.301658920717189
        • properties: jungle
          • type:jungle
          • Map:10
      • 612: Feature (Point, 2 properties)
        • type:Feature
        • id:612
        • geometry: Point (24.93, -2.78)
          • type:Point
          • coordinates: [24.926783873453033, -2.7788240824775157]
            • 0:24.926783873453033
            • 1:-2.7788240824775157
        • properties: jungle
          • type:jungle
          • Map:10
      • 613: Feature (Point, 2 properties)
        • type:Feature
        • id:613
        • geometry: Point (21.74, -2.50)
          • type:Point
          • coordinates: [21.73850716572226, -2.498670656955249]
            • 0:21.73850716572226
            • 1:-2.498670656955249
        • properties: jungle
          • type:jungle
          • Map:10
      • 614: Feature (Point, 2 properties)
        • type:Feature
        • id:614
        • geometry: Point (23.30, -1.85)
          • type:Point
          • coordinates: [23.301327451869717, -1.8501092260409906]
            • 0:23.301327451869717
            • 1:-1.8501092260409906
        • properties: jungle
          • type:jungle
          • Map:10
      • 615: Feature (Point, 2 properties)
        • type:Feature
        • id:615
        • geometry: Point (23.22, -1.15)
          • type:Point
          • coordinates: [23.219020754301166, -1.146403317976231]
            • 0:23.219020754301166
            • 1:-1.146403317976231
        • properties: jungle
          • type:jungle
          • Map:10
      • 616: Feature (Point, 2 properties)
        • type:Feature
        • id:616
        • geometry: Point (21.23, -1.93)
          • type:Point
          • coordinates: [21.233397412801672, -1.932079303587824]
            • 0:21.233397412801672
            • 1:-1.932079303587824
        • properties: jungle
          • type:jungle
          • Map:10
      • 617: Feature (Point, 2 properties)
        • type:Feature
        • id:617
        • geometry: Point (22.67, -0.59)
          • type:Point
          • coordinates: [22.67342189810952, -0.5882957461387827]
            • 0:22.67342189810952
            • 1:-0.5882957461387827
        • properties: jungle
          • type:jungle
          • Map:10
      • 618: Feature (Point, 2 properties)
        • type:Feature
        • id:618
        • geometry: Point (24.45, -2.75)
          • type:Point
          • coordinates: [24.44572264358298, -2.752412766845689]
            • 0:24.44572264358298
            • 1:-2.752412766845689
        • properties: jungle
          • type:jungle
          • Map:10
      • 619: Feature (Point, 2 properties)
        • type:Feature
        • id:619
        • geometry: Point (19.48, -3.84)
          • type:Point
          • coordinates: [19.48190604414116, -3.8363375772767165]
            • 0:19.48190604414116
            • 1:-3.8363375772767165
        • properties: jungle
          • type:jungle
          • Map:10
      • 620: Feature (Point, 2 properties)
        • type:Feature
        • id:620
        • geometry: Point (24.73, -2.31)
          • type:Point
          • coordinates: [24.732579240865075, -2.309452502992023]
            • 0:24.732579240865075
            • 1:-2.309452502992023
        • properties: jungle
          • type:jungle
          • Map:10
      • 621: Feature (Point, 2 properties)
        • type:Feature
        • id:621
        • geometry: Point (20.57, -3.68)
          • type:Point
          • coordinates: [20.56877284038367, -3.6751845423839407]
            • 0:20.56877284038367
            • 1:-3.6751845423839407
        • properties: jungle
          • type:jungle
          • Map:10
      • 622: Feature (Point, 2 properties)
        • type:Feature
        • id:622
        • geometry: Point (20.10, -2.70)
          • type:Point
          • coordinates: [20.095233001728094, -2.702676668600359]
            • 0:20.095233001728094
            • 1:-2.702676668600359
        • properties: jungle
          • type:jungle
          • Map:10
      • 623: Feature (Point, 2 properties)
        • type:Feature
        • id:623
        • geometry: Point (25.08, -2.25)
          • type:Point
          • coordinates: [25.083905750453557, -2.2509061695485006]
            • 0:25.083905750453557
            • 1:-2.2509061695485006
        • properties: jungle
          • type:jungle
          • Map:10
      • 624: Feature (Point, 2 properties)
        • type:Feature
        • id:624
        • geometry: Point (21.14, -1.17)
          • type:Point
          • coordinates: [21.14223130783986, -1.166796116221775]
            • 0:21.14223130783986
            • 1:-1.166796116221775
        • properties: jungle
          • type:jungle
          • Map:10
      • 625: Feature (Point, 2 properties)
        • type:Feature
        • id:625
        • geometry: Point (20.09, -2.96)
          • type:Point
          • coordinates: [20.09419669131122, -2.9632040513699307]
            • 0:20.09419669131122
            • 1:-2.9632040513699307
        • properties: jungle
          • type:jungle
          • Map:10
      • 626: Feature (Point, 2 properties)
        • type:Feature
        • id:626
        • geometry: Point (24.72, -1.16)
          • type:Point
          • coordinates: [24.71598147239216, -1.1584035714239171]
            • 0:24.71598147239216
            • 1:-1.1584035714239171
        • properties: jungle
          • type:jungle
          • Map:10
      • 627: Feature (Point, 2 properties)
        • type:Feature
        • id:627
        • geometry: Point (22.21, -2.12)
          • type:Point
          • coordinates: [22.212967481589214, -2.1207826733268926]
            • 0:22.212967481589214
            • 1:-2.1207826733268926
        • properties: jungle
          • type:jungle
          • Map:10
      • 628: Feature (Point, 2 properties)
        • type:Feature
        • id:628
        • geometry: Point (22.78, -3.14)
          • type:Point
          • coordinates: [22.779662339499072, -3.1377664086833152]
            • 0:22.779662339499072
            • 1:-3.1377664086833152
        • properties: jungle
          • type:jungle
          • Map:10
      • 629: Feature (Point, 2 properties)
        • type:Feature
        • id:629
        • geometry: Point (22.49, -0.24)
          • type:Point
          • coordinates: [22.487111221289673, -0.2404878764328424]
            • 0:22.487111221289673
            • 1:-0.2404878764328424
        • properties: jungle
          • type:jungle
          • Map:10
      • 630: Feature (Point, 2 properties)
        • type:Feature
        • id:630
        • geometry: Point (22.83, -0.89)
          • type:Point
          • coordinates: [22.82997101630872, -0.8913378775276137]
            • 0:22.82997101630872
            • 1:-0.8913378775276137
        • properties: jungle
          • type:jungle
          • Map:10
      • 631: Feature (Point, 2 properties)
        • type:Feature
        • id:631
        • geometry: Point (23.83, -1.41)
          • type:Point
          • coordinates: [23.827946186427678, -1.4118361901883891]
            • 0:23.827946186427678
            • 1:-1.4118361901883891
        • properties: jungle
          • type:jungle
          • Map:10
      • 632: Feature (Point, 2 properties)
        • type:Feature
        • id:632
        • geometry: Point (24.74, -1.37)
          • type:Point
          • coordinates: [24.7408580303348, -1.3719893767626545]
            • 0:24.7408580303348
            • 1:-1.3719893767626545
        • properties: jungle
          • type:jungle
          • Map:10
      • 633: Feature (Point, 2 properties)
        • type:Feature
        • id:633
        • geometry: Point (20.74, -0.38)
          • type:Point
          • coordinates: [20.736637997240205, -0.38254767507719595]
            • 0:20.736637997240205
            • 1:-0.38254767507719595
        • properties: jungle
          • type:jungle
          • Map:10
      • 634: Feature (Point, 2 properties)
        • type:Feature
        • id:634
        • geometry: Point (21.80, -4.78)
          • type:Point
          • coordinates: [21.796811356955565, -4.779506417051828]
            • 0:21.796811356955565
            • 1:-4.779506417051828
        • properties: jungle
          • type:jungle
          • Map:10
      • 635: Feature (Point, 2 properties)
        • type:Feature
        • id:635
        • geometry: Point (20.32, -1.37)
          • type:Point
          • coordinates: [20.315075208710123, -1.3673876478998428]
            • 0:20.315075208710123
            • 1:-1.3673876478998428
        • properties: jungle
          • type:jungle
          • Map:10
      • 636: Feature (Point, 2 properties)
        • type:Feature
        • id:636
        • geometry: Point (22.88, -2.12)
          • type:Point
          • coordinates: [22.88007073042674, -2.120150718363455]
            • 0:22.88007073042674
            • 1:-2.120150718363455
        • properties: jungle
          • type:jungle
          • Map:10
      • 637: Feature (Point, 2 properties)
        • type:Feature
        • id:637
        • geometry: Point (21.72, -2.81)
          • type:Point
          • coordinates: [21.718510689212867, -2.813385953338485]
            • 0:21.718510689212867
            • 1:-2.813385953338485
        • properties: jungle
          • type:jungle
          • Map:10
      • 638: Feature (Point, 2 properties)
        • type:Feature
        • id:638
        • geometry: Point (23.32, -1.18)
          • type:Point
          • coordinates: [23.315413899147288, -1.1809683768959354]
            • 0:23.315413899147288
            • 1:-1.1809683768959354
        • properties: jungle
          • type:jungle
          • Map:10
      • 639: Feature (Point, 2 properties)
        • type:Feature
        • id:639
        • geometry: Point (22.63, -2.72)
          • type:Point
          • coordinates: [22.629877203668674, -2.7240443012720372]
            • 0:22.629877203668674
            • 1:-2.7240443012720372
        • properties: jungle
          • type:jungle
          • Map:10
      • 640: Feature (Point, 2 properties)
        • type:Feature
        • id:640
        • geometry: Point (23.90, -0.23)
          • type:Point
          • coordinates: [23.903065633478075, -0.22718299131790523]
            • 0:23.903065633478075
            • 1:-0.22718299131790523
        • properties: jungle
          • type:jungle
          • Map:10
      • 641: Feature (Point, 2 properties)
        • type:Feature
        • id:641
        • geometry: Point (21.43, 0.06)
          • type:Point
          • coordinates: [21.42931644317594, 0.05946284956245727]
            • 0:21.42931644317594
            • 1:0.05946284956245727
        • properties: jungle
          • type:jungle
          • Map:10
      • 642: Feature (Point, 2 properties)
        • type:Feature
        • id:642
        • geometry: Point (22.05, -2.76)
          • type:Point
          • coordinates: [22.04829022793991, -2.757516119433366]
            • 0:22.04829022793991
            • 1:-2.757516119433366
        • properties: jungle
          • type:jungle
          • Map:10
      • 643: Feature (Point, 2 properties)
        • type:Feature
        • id:643
        • geometry: Point (22.58, -5.02)
          • type:Point
          • coordinates: [22.582747264734195, -5.021570121065937]
            • 0:22.582747264734195
            • 1:-5.021570121065937
        • properties: jungle
          • type:jungle
          • Map:10
      • 644: Feature (Point, 2 properties)
        • type:Feature
        • id:644
        • geometry: Point (20.48, -4.23)
          • type:Point
          • coordinates: [20.480945538870508, -4.233583141994702]
            • 0:20.480945538870508
            • 1:-4.233583141994702
        • properties: jungle
          • type:jungle
          • Map:10
      • 645: Feature (Point, 2 properties)
        • type:Feature
        • id:645
        • geometry: Point (20.92, -4.13)
          • type:Point
          • coordinates: [20.91917700451165, -4.131511175476768]
            • 0:20.91917700451165
            • 1:-4.131511175476768
        • properties: jungle
          • type:jungle
          • Map:10
      • 646: Feature (Point, 2 properties)
        • type:Feature
        • id:646
        • geometry: Point (25.08, -2.39)
          • type:Point
          • coordinates: [25.080797497752215, -2.387654926035681]
            • 0:25.080797497752215
            • 1:-2.387654926035681
        • properties: jungle
          • type:jungle
          • Map:10
      • 647: Feature (Point, 2 properties)
        • type:Feature
        • id:647
        • geometry: Point (22.30, -2.26)
          • type:Point
          • coordinates: [22.29898562965202, -2.2626938050369585]
            • 0:22.29898562965202
            • 1:-2.2626938050369585
        • properties: jungle
          • type:jungle
          • Map:10
      • 648: Feature (Point, 2 properties)
        • type:Feature
        • id:648
        • geometry: Point (21.04, -2.77)
          • type:Point
          • coordinates: [21.041318893885183, -2.768047678873064]
            • 0:21.041318893885183
            • 1:-2.768047678873064
        • properties: jungle
          • type:jungle
          • Map:10
      • 649: Feature (Point, 2 properties)
        • type:Feature
        • id:649
        • geometry: Point (24.47, -4.66)
          • type:Point
          • coordinates: [24.46510433635622, -4.657879464181619]
            • 0:24.46510433635622
            • 1:-4.657879464181619
        • properties: jungle
          • type:jungle
          • Map:30
      • 650: Feature (Point, 2 properties)
        • type:Feature
        • id:650
        • geometry: Point (23.20, -2.58)
          • type:Point
          • coordinates: [23.198639396568552, -2.5767920116284295]
            • 0:23.198639396568552
            • 1:-2.5767920116284295
        • properties: jungle
          • type:jungle
          • Map:10
      • 651: Feature (Point, 2 properties)
        • type:Feature
        • id:651
        • geometry: Point (24.03, -0.38)
          • type:Point
          • coordinates: [24.034687766276313, -0.3845396451093852]
            • 0:24.034687766276313
            • 1:-0.3845396451093852
        • properties: jungle
          • type:jungle
          • Map:10
      • 652: Feature (Point, 2 properties)
        • type:Feature
        • id:652
        • geometry: Point (25.16, -2.84)
          • type:Point
          • coordinates: [25.163889590076806, -2.844401170422789]
            • 0:25.163889590076806
            • 1:-2.844401170422789
        • properties: jungle
          • type:jungle
          • Map:30
      • 653: Feature (Point, 2 properties)
        • type:Feature
        • id:653
        • geometry: Point (22.20, -2.23)
          • type:Point
          • coordinates: [22.20059352216019, -2.2335976509375293]
            • 0:22.20059352216019
            • 1:-2.2335976509375293
        • properties: jungle
          • type:jungle
          • Map:10
      • 654: Feature (Point, 2 properties)
        • type:Feature
        • id:654
        • geometry: Point (21.01, -0.53)
          • type:Point
          • coordinates: [21.01207637794635, -0.5256925009276702]
            • 0:21.01207637794635
            • 1:-0.5256925009276702
        • properties: jungle
          • type:jungle
          • Map:10
      • 655: Feature (Point, 2 properties)
        • type:Feature
        • id:655
        • geometry: Point (24.15, -2.68)
          • type:Point
          • coordinates: [24.149128477329413, -2.684735829432135]
            • 0:24.149128477329413
            • 1:-2.684735829432135
        • properties: jungle
          • type:jungle
          • Map:10
      • 656: Feature (Point, 2 properties)
        • type:Feature
        • id:656
        • geometry: Point (24.63, -2.16)
          • type:Point
          • coordinates: [24.630988613771574, -2.1566139823777464]
            • 0:24.630988613771574
            • 1:-2.1566139823777464
        • properties: jungle
          • type:jungle
          • Map:10
      • 657: Feature (Point, 2 properties)
        • type:Feature
        • id:657
        • geometry: Point (21.36, -2.54)
          • type:Point
          • coordinates: [21.36040601553638, -2.5381574398152633]
            • 0:21.36040601553638
            • 1:-2.5381574398152633
        • properties: jungle
          • type:jungle
          • Map:10
      • 658: Feature (Point, 2 properties)
        • type:Feature
        • id:658
        • geometry: Point (23.53, -1.34)
          • type:Point
          • coordinates: [23.527850650336873, -1.3403048862549964]
            • 0:23.527850650336873
            • 1:-1.3403048862549964
        • properties: jungle
          • type:jungle
          • Map:10
      • 659: Feature (Point, 2 properties)
        • type:Feature
        • id:659
        • geometry: Point (23.94, -4.41)
          • type:Point
          • coordinates: [23.94221761229301, -4.411071134062553]
            • 0:23.94221761229301
            • 1:-4.411071134062553
        • properties: jungle
          • type:jungle
          • Map:10
      • 660: Feature (Point, 2 properties)
        • type:Feature
        • id:660
        • geometry: Point (24.41, -1.74)
          • type:Point
          • coordinates: [24.406122974274087, -1.7397964125271745]
            • 0:24.406122974274087
            • 1:-1.7397964125271745
        • properties: jungle
          • type:jungle
          • Map:10
      • 661: Feature (Point, 2 properties)
        • type:Feature
        • id:661
        • geometry: Point (24.87, -1.01)
          • type:Point
          • coordinates: [24.86789468750972, -1.0111326892990111]
            • 0:24.86789468750972
            • 1:-1.0111326892990111
        • properties: jungle
          • type:jungle
          • Map:10
      • 662: Feature (Point, 2 properties)
        • type:Feature
        • id:662
        • geometry: Point (23.74, -3.43)
          • type:Point
          • coordinates: [23.739358796450354, -3.4326499970967825]
            • 0:23.739358796450354
            • 1:-3.4326499970967825
        • properties: jungle
          • type:jungle
          • Map:10
      • 663: Feature (Point, 2 properties)
        • type:Feature
        • id:663
        • geometry: Point (21.56, -3.38)
          • type:Point
          • coordinates: [21.561198064791384, -3.3829093763649247]
            • 0:21.561198064791384
            • 1:-3.3829093763649247
        • properties: jungle
          • type:jungle
          • Map:10
      • 664: Feature (Point, 2 properties)
        • type:Feature
        • id:664
        • geometry: Point (23.83, -2.10)
          • type:Point
          • coordinates: [23.83076810964156, -2.100681863102]
            • 0:23.83076810964156
            • 1:-2.100681863102
        • properties: jungle
          • type:jungle
          • Map:10
      • 665: Feature (Point, 2 properties)
        • type:Feature
        • id:665
        • geometry: Point (21.30, -3.30)
          • type:Point
          • coordinates: [21.304216188945997, -3.2956862011479515]
            • 0:21.304216188945997
            • 1:-3.2956862011479515
        • properties: jungle
          • type:jungle
          • Map:10
      • 666: Feature (Point, 2 properties)
        • type:Feature
        • id:666
        • geometry: Point (21.51, -1.63)
          • type:Point
          • coordinates: [21.508615823113434, -1.628464092340024]
            • 0:21.508615823113434
            • 1:-1.628464092340024
        • properties: jungle
          • type:jungle
          • Map:10
      • 667: Feature (Point, 2 properties)
        • type:Feature
        • id:667
        • geometry: Point (21.96, 0.24)
          • type:Point
          • coordinates: [21.95874262380167, 0.24242573386429528]
            • 0:21.95874262380167
            • 1:0.24242573386429528
        • properties: jungle
          • type:jungle
          • Map:10
      • 668: Feature (Point, 2 properties)
        • type:Feature
        • id:668
        • geometry: Point (22.85, -1.78)
          • type:Point
          • coordinates: [22.854283144816982, -1.7816461166541722]
            • 0:22.854283144816982
            • 1:-1.7816461166541722
        • properties: jungle
          • type:jungle
          • Map:10
      • 669: Feature (Point, 2 properties)
        • type:Feature
        • id:669
        • geometry: Point (22.33, -3.62)
          • type:Point
          • coordinates: [22.3307938034297, -3.61640501652427]
            • 0:22.3307938034297
            • 1:-3.61640501652427
        • properties: jungle
          • type:jungle
          • Map:10
      • 670: Feature (Point, 2 properties)
        • type:Feature
        • id:670
        • geometry: Point (23.25, -2.67)
          • type:Point
          • coordinates: [23.251123906887944, -2.6681017171778993]
            • 0:23.251123906887944
            • 1:-2.6681017171778993
        • properties: jungle
          • type:jungle
          • Map:10
      • 671: Feature (Point, 2 properties)
        • type:Feature
        • id:671
        • geometry: Point (24.48, -4.07)
          • type:Point
          • coordinates: [24.47665019226321, -4.072952005076656]
            • 0:24.47665019226321
            • 1:-4.072952005076656
        • properties: jungle
          • type:jungle
          • Map:10
      • 672: Feature (Point, 2 properties)
        • type:Feature
        • id:672
        • geometry: Point (23.04, -4.68)
          • type:Point
          • coordinates: [23.039174748266078, -4.6796872545803]
            • 0:23.039174748266078
            • 1:-4.6796872545803
        • properties: jungle
          • type:jungle
          • Map:10
      • 673: Feature (Point, 2 properties)
        • type:Feature
        • id:673
        • geometry: Point (20.08, -2.63)
          • type:Point
          • coordinates: [20.08063157440441, -2.6252538640341685]
            • 0:20.08063157440441
            • 1:-2.6252538640341685
        • properties: jungle
          • type:jungle
          • Map:10
      • 674: Feature (Point, 2 properties)
        • type:Feature
        • id:674
        • geometry: Point (23.79, -0.53)
          • type:Point
          • coordinates: [23.787407159027005, -0.5260482637671684]
            • 0:23.787407159027005
            • 1:-0.5260482637671684
        • properties: jungle
          • type:jungle
          • Map:10
      • 675: Feature (Point, 2 properties)
        • type:Feature
        • id:675
        • geometry: Point (22.00, -2.35)
          • type:Point
          • coordinates: [22.00295383193029, -2.348065825105635]
            • 0:22.00295383193029
            • 1:-2.348065825105635
        • properties: jungle
          • type:jungle
          • Map:10
      • 676: Feature (Point, 2 properties)
        • type:Feature
        • id:676
        • geometry: Point (22.35, -4.25)
          • type:Point
          • coordinates: [22.3522056781167, -4.251885933288582]
            • 0:22.3522056781167
            • 1:-4.251885933288582
        • properties: jungle
          • type:jungle
          • Map:10
      • 677: Feature (Point, 2 properties)
        • type:Feature
        • id:677
        • geometry: Point (22.15, -3.87)
          • type:Point
          • coordinates: [22.147409827023157, -3.8716711328201066]
            • 0:22.147409827023157
            • 1:-3.8716711328201066
        • properties: jungle
          • type:jungle
          • Map:30
      • 678: Feature (Point, 2 properties)
        • type:Feature
        • id:678
        • geometry: Point (21.15, -3.69)
          • type:Point
          • coordinates: [21.145424616586773, -3.6925007517749275]
            • 0:21.145424616586773
            • 1:-3.6925007517749275
        • properties: jungle
          • type:jungle
          • Map:10
      • 679: Feature (Point, 2 properties)
        • type:Feature
        • id:679
        • geometry: Point (21.01, -2.81)
          • type:Point
          • coordinates: [21.00977172249252, -2.8053547860140204]
            • 0:21.00977172249252
            • 1:-2.8053547860140204
        • properties: jungle
          • type:jungle
          • Map:10
      • 680: Feature (Point, 2 properties)
        • type:Feature
        • id:680
        • geometry: Point (20.52, -4.51)
          • type:Point
          • coordinates: [20.523847760601324, -4.505761951575611]
            • 0:20.523847760601324
            • 1:-4.505761951575611
        • properties: jungle
          • type:jungle
          • Map:10
      • 681: Feature (Point, 2 properties)
        • type:Feature
        • id:681
        • geometry: Point (24.30, -4.16)
          • type:Point
          • coordinates: [24.298013100065667, -4.161428613200289]
            • 0:24.298013100065667
            • 1:-4.161428613200289
        • properties: jungle
          • type:jungle
          • Map:30
      • 682: Feature (Point, 2 properties)
        • type:Feature
        • id:682
        • geometry: Point (22.19, -3.73)
          • type:Point
          • coordinates: [22.192332628277104, -3.733146033106503]
            • 0:22.192332628277104
            • 1:-3.733146033106503
        • properties: jungle
          • type:jungle
          • Map:10
      • 683: Feature (Point, 2 properties)
        • type:Feature
        • id:683
        • geometry: Point (23.14, -4.85)
          • type:Point
          • coordinates: [23.13678215746247, -4.853479252788659]
            • 0:23.13678215746247
            • 1:-4.853479252788659
        • properties: jungle
          • type:jungle
          • Map:10
      • 684: Feature (Point, 2 properties)
        • type:Feature
        • id:684
        • geometry: Point (20.95, -3.19)
          • type:Point
          • coordinates: [20.947179870767144, -3.186481390108174]
            • 0:20.947179870767144
            • 1:-3.186481390108174
        • properties: jungle
          • type:jungle
          • Map:10
      • 685: Feature (Point, 2 properties)
        • type:Feature
        • id:685
        • geometry: Point (20.72, -4.43)
          • type:Point
          • coordinates: [20.7249698805687, -4.4309400918511805]
            • 0:20.7249698805687
            • 1:-4.4309400918511805
        • properties: jungle
          • type:jungle
          • Map:10
      • 686: Feature (Point, 2 properties)
        • type:Feature
        • id:686
        • geometry: Point (20.06, -2.80)
          • type:Point
          • coordinates: [20.062902016237885, -2.803126125268059]
            • 0:20.062902016237885
            • 1:-2.803126125268059
        • properties: jungle
          • type:jungle
          • Map:10
      • 687: Feature (Point, 2 properties)
        • type:Feature
        • id:687
        • geometry: Point (24.54, -2.26)
          • type:Point
          • coordinates: [24.542347071570486, -2.259500889558306]
            • 0:24.542347071570486
            • 1:-2.259500889558306
        • properties: jungle
          • type:jungle
          • Map:10
      • 688: Feature (Point, 2 properties)
        • type:Feature
        • id:688
        • geometry: Point (21.11, -1.20)
          • type:Point
          • coordinates: [21.107016126346515, -1.201052074024501]
            • 0:21.107016126346515
            • 1:-1.201052074024501
        • properties: jungle
          • type:jungle
          • Map:10
      • 689: Feature (Point, 2 properties)
        • type:Feature
        • id:689
        • geometry: Point (23.06, -0.47)
          • type:Point
          • coordinates: [23.062672896200343, -0.46875444769405206]
            • 0:23.062672896200343
            • 1:-0.46875444769405206
        • properties: jungle
          • type:jungle
          • Map:10
      • 690: Feature (Point, 2 properties)
        • type:Feature
        • id:690
        • geometry: Point (19.93, -1.69)
          • type:Point
          • coordinates: [19.92976931747397, -1.6867611870972716]
            • 0:19.92976931747397
            • 1:-1.6867611870972716
        • properties: jungle
          • type:jungle
          • Map:10
      • 691: Feature (Point, 2 properties)
        • type:Feature
        • id:691
        • geometry: Point (21.97, -4.03)
          • type:Point
          • coordinates: [21.968605579330728, -4.030362129624343]
            • 0:21.968605579330728
            • 1:-4.030362129624343
        • properties: jungle
          • type:jungle
          • Map:10
      • 692: Feature (Point, 2 properties)
        • type:Feature
        • id:692
        • geometry: Point (23.83, -2.15)
          • type:Point
          • coordinates: [23.83176886622132, -2.153209004329485]
            • 0:23.83176886622132
            • 1:-2.153209004329485
        • properties: jungle
          • type:jungle
          • Map:10
      • 693: Feature (Point, 2 properties)
        • type:Feature
        • id:693
        • geometry: Point (25.14, -2.41)
          • type:Point
          • coordinates: [25.14077919579032, -2.4104337221828436]
            • 0:25.14077919579032
            • 1:-2.4104337221828436
        • properties: jungle
          • type:jungle
          • Map:10
      • 694: Feature (Point, 2 properties)
        • type:Feature
        • id:694
        • geometry: Point (20.54, -1.07)
          • type:Point
          • coordinates: [20.54393674442502, -1.074694097676888]
            • 0:20.54393674442502
            • 1:-1.074694097676888
        • properties: jungle
          • type:jungle
          • Map:10
      • 695: Feature (Point, 2 properties)
        • type:Feature
        • id:695
        • geometry: Point (25.19, -2.23)
          • type:Point
          • coordinates: [25.190139704532452, -2.2292616334371917]
            • 0:25.190139704532452
            • 1:-2.2292616334371917
        • properties: jungle
          • type:jungle
          • Map:10
      • 696: Feature (Point, 2 properties)
        • type:Feature
        • id:696
        • geometry: Point (23.73, -0.19)
          • type:Point
          • coordinates: [23.727139375643862, -0.18658003769898782]
            • 0:23.727139375643862
            • 1:-0.18658003769898782
        • properties: jungle
          • type:jungle
          • Map:10
      • 697: Feature (Point, 2 properties)
        • type:Feature
        • id:697
        • geometry: Point (23.16, -2.67)
          • type:Point
          • coordinates: [23.16220812104917, -2.6714027669179647]
            • 0:23.16220812104917
            • 1:-2.6714027669179647
        • properties: jungle
          • type:jungle
          • Map:10
      • 698: Feature (Point, 2 properties)
        • type:Feature
        • id:698
        • geometry: Point (22.70, -2.08)
          • type:Point
          • coordinates: [22.702504770473638, -2.078335231844432]
            • 0:22.702504770473638
            • 1:-2.078335231844432
        • properties: jungle
          • type:jungle
          • Map:10
      • 699: Feature (Point, 2 properties)
        • type:Feature
        • id:699
        • geometry: Point (22.21, -4.80)
          • type:Point
          • coordinates: [22.20658889123802, -4.797770002873167]
            • 0:22.20658889123802
            • 1:-4.797770002873167
        • properties: jungle
          • type:jungle
          • Map:20
      • 700: Feature (Point, 2 properties)
        • type:Feature
        • id:700
        • geometry: Point (20.81, -1.60)
          • type:Point
          • coordinates: [20.805177595074735, -1.6044570253133936]
            • 0:20.805177595074735
            • 1:-1.6044570253133936
        • properties: jungle
          • type:jungle
          • Map:10
      • 701: Feature (Point, 2 properties)
        • type:Feature
        • id:701
        • geometry: Point (23.00, -1.76)
          • type:Point
          • coordinates: [22.995166762850786, -1.7632646911442529]
            • 0:22.995166762850786
            • 1:-1.7632646911442529
        • properties: jungle
          • type:jungle
          • Map:10
      • 702: Feature (Point, 2 properties)
        • type:Feature
        • id:702
        • geometry: Point (20.61, -2.14)
          • type:Point
          • coordinates: [20.614119119334358, -2.1437292176147835]
            • 0:20.614119119334358
            • 1:-2.1437292176147835
        • properties: jungle
          • type:jungle
          • Map:10
      • 703: Feature (Point, 2 properties)
        • type:Feature
        • id:703
        • geometry: Point (24.07, -1.97)
          • type:Point
          • coordinates: [24.06566473985339, -1.972998820513038]
            • 0:24.06566473985339
            • 1:-1.972998820513038
        • properties: jungle
          • type:jungle
          • Map:10
      • 704: Feature (Point, 2 properties)
        • type:Feature
        • id:704
        • geometry: Point (22.86, -2.16)
          • type:Point
          • coordinates: [22.862671369870426, -2.156713161345282]
            • 0:22.862671369870426
            • 1:-2.156713161345282
        • properties: jungle
          • type:jungle
          • Map:10
      • 705: Feature (Point, 2 properties)
        • type:Feature
        • id:705
        • geometry: Point (23.00, -0.22)
          • type:Point
          • coordinates: [23.002878463075923, -0.21719010351540732]
            • 0:23.002878463075923
            • 1:-0.21719010351540732
        • properties: jungle
          • type:jungle
          • Map:10
      • 706: Feature (Point, 2 properties)
        • type:Feature
        • id:706
        • geometry: Point (24.89, -1.53)
          • type:Point
          • coordinates: [24.88754370550757, -1.5265394986720733]
            • 0:24.88754370550757
            • 1:-1.5265394986720733
        • properties: jungle
          • type:jungle
          • Map:10
      • 707: Feature (Point, 2 properties)
        • type:Feature
        • id:707
        • geometry: Point (24.56, -2.25)
          • type:Point
          • coordinates: [24.56363612465329, -2.2534343132057044]
            • 0:24.56363612465329
            • 1:-2.2534343132057044
        • properties: jungle
          • type:jungle
          • Map:10
      • 708: Feature (Point, 2 properties)
        • type:Feature
        • id:708
        • geometry: Point (21.14, 0.05)
          • type:Point
          • coordinates: [21.141897939523027, 0.05241756336708204]
            • 0:21.141897939523027
            • 1:0.05241756336708204
        • properties: jungle
          • type:jungle
          • Map:10
      • 709: Feature (Point, 2 properties)
        • type:Feature
        • id:709
        • geometry: Point (21.34, -1.68)
          • type:Point
          • coordinates: [21.343053951717838, -1.6812004073879872]
            • 0:21.343053951717838
            • 1:-1.6812004073879872
        • properties: jungle
          • type:jungle
          • Map:10
      • 710: Feature (Point, 2 properties)
        • type:Feature
        • id:710
        • geometry: Point (21.95, -2.32)
          • type:Point
          • coordinates: [21.945889753737656, -2.315420075121563]
            • 0:21.945889753737656
            • 1:-2.315420075121563
        • properties: jungle
          • type:jungle
          • Map:10
      • 711: Feature (Point, 2 properties)
        • type:Feature
        • id:711
        • geometry: Point (21.83, -3.49)
          • type:Point
          • coordinates: [21.827119919735793, -3.4885374148409833]
            • 0:21.827119919735793
            • 1:-3.4885374148409833
        • properties: jungle
          • type:jungle
          • Map:10
      • 712: Feature (Point, 2 properties)
        • type:Feature
        • id:712
        • geometry: Point (24.57, -2.59)
          • type:Point
          • coordinates: [24.5667118904124, -2.5895998391475428]
            • 0:24.5667118904124
            • 1:-2.5895998391475428
        • properties: jungle
          • type:jungle
          • Map:10
      • 713: Feature (Point, 2 properties)
        • type:Feature
        • id:713
        • geometry: Point (22.80, -4.81)
          • type:Point
          • coordinates: [22.798824781197016, -4.810914813285775]
            • 0:22.798824781197016
            • 1:-4.810914813285775
        • properties: jungle
          • type:jungle
          • Map:10
      • 714: Feature (Point, 2 properties)
        • type:Feature
        • id:714
        • geometry: Point (22.34, -0.80)
          • type:Point
          • coordinates: [22.339949209126928, -0.8027393434260225]
            • 0:22.339949209126928
            • 1:-0.8027393434260225
        • properties: jungle
          • type:jungle
          • Map:10
      • 715: Feature (Point, 2 properties)
        • type:Feature
        • id:715
        • geometry: Point (24.07, -0.83)
          • type:Point
          • coordinates: [24.07055075889617, -0.8283556103931702]
            • 0:24.07055075889617
            • 1:-0.8283556103931702
        • properties: jungle
          • type:jungle
          • Map:10
      • 716: Feature (Point, 2 properties)
        • type:Feature
        • id:716
        • geometry: Point (20.28, -4.33)
          • type:Point
          • coordinates: [20.27657323265006, -4.332438855124398]
            • 0:20.27657323265006
            • 1:-4.332438855124398
        • properties: jungle
          • type:jungle
          • Map:10
      • 717: Feature (Point, 2 properties)
        • type:Feature
        • id:717
        • geometry: Point (21.87, -1.22)
          • type:Point
          • coordinates: [21.87040833980644, -1.220491810171026]
            • 0:21.87040833980644
            • 1:-1.220491810171026
        • properties: jungle
          • type:jungle
          • Map:10
      • 718: Feature (Point, 2 properties)
        • type:Feature
        • id:718
        • geometry: Point (21.60, -0.86)
          • type:Point
          • coordinates: [21.601193474433924, -0.8633969629011811]
            • 0:21.601193474433924
            • 1:-0.8633969629011811
        • properties: jungle
          • type:jungle
          • Map:10
      • 719: Feature (Point, 2 properties)
        • type:Feature
        • id:719
        • geometry: Point (20.04, -1.56)
          • type:Point
          • coordinates: [20.04379068362556, -1.5639780198396127]
            • 0:20.04379068362556
            • 1:-1.5639780198396127
        • properties: jungle
          • type:jungle
          • Map:10
      • 720: Feature (Point, 2 properties)
        • type:Feature
        • id:720
        • geometry: Point (19.91, -1.82)
          • type:Point
          • coordinates: [19.909900682771664, -1.8185487631243518]
            • 0:19.909900682771664
            • 1:-1.8185487631243518
        • properties: jungle
          • type:jungle
          • Map:10
      • 721: Feature (Point, 2 properties)
        • type:Feature
        • id:721
        • geometry: Point (20.78, -2.74)
          • type:Point
          • coordinates: [20.780870109454654, -2.742036100939859]
            • 0:20.780870109454654
            • 1:-2.742036100939859
        • properties: jungle
          • type:jungle
          • Map:10
      • 722: Feature (Point, 2 properties)
        • type:Feature
        • id:722
        • geometry: Point (23.26, -3.45)
          • type:Point
          • coordinates: [23.25985862114895, -3.4500820943317407]
            • 0:23.25985862114895
            • 1:-3.4500820943317407
        • properties: jungle
          • type:jungle
          • Map:10
      • 723: Feature (Point, 2 properties)
        • type:Feature
        • id:723
        • geometry: Point (21.44, -4.81)
          • type:Point
          • coordinates: [21.44497945637999, -4.811628299812086]
            • 0:21.44497945637999
            • 1:-4.811628299812086
        • properties: jungle
          • type:jungle
          • Map:20
      • 724: Feature (Point, 2 properties)
        • type:Feature
        • id:724
        • geometry: Point (20.00, -2.43)
          • type:Point
          • coordinates: [19.999547182264795, -2.426560502326592]
            • 0:19.999547182264795
            • 1:-2.426560502326592
        • properties: jungle
          • type:jungle
          • Map:10
      • 725: Feature (Point, 2 properties)
        • type:Feature
        • id:725
        • geometry: Point (21.25, -2.92)
          • type:Point
          • coordinates: [21.252309777503406, -2.924170258471494]
            • 0:21.252309777503406
            • 1:-2.924170258471494
        • properties: jungle
          • type:jungle
          • Map:10
      • 726: Feature (Point, 2 properties)
        • type:Feature
        • id:726
        • geometry: Point (24.69, -2.28)
          • type:Point
          • coordinates: [24.692569857933815, -2.2833788795865937]
            • 0:24.692569857933815
            • 1:-2.2833788795865937
        • properties: jungle
          • type:jungle
          • Map:10
      • 727: Feature (Point, 2 properties)
        • type:Feature
        • id:727
        • geometry: Point (21.01, -4.66)
          • type:Point
          • coordinates: [21.014722415779833, -4.661036076301639]
            • 0:21.014722415779833
            • 1:-4.661036076301639
        • properties: jungle
          • type:jungle
          • Map:10
      • 728: Feature (Point, 2 properties)
        • type:Feature
        • id:728
        • geometry: Point (22.69, -0.34)
          • type:Point
          • coordinates: [22.689994975690954, -0.3426988437181697]
            • 0:22.689994975690954
            • 1:-0.3426988437181697
        • properties: jungle
          • type:jungle
          • Map:10
      • 729: Feature (Point, 2 properties)
        • type:Feature
        • id:729
        • geometry: Point (23.19, -1.87)
          • type:Point
          • coordinates: [23.19179229678422, -1.8662117780442407]
            • 0:23.19179229678422
            • 1:-1.8662117780442407
        • properties: jungle
          • type:jungle
          • Map:10
      • 730: Feature (Point, 2 properties)
        • type:Feature
        • id:730
        • geometry: Point (20.08, -3.70)
          • type:Point
          • coordinates: [20.07556347412438, -3.698980714885195]
            • 0:20.07556347412438
            • 1:-3.698980714885195
        • properties: jungle
          • type:jungle
          • Map:10
      • 731: Feature (Point, 2 properties)
        • type:Feature
        • id:731
        • geometry: Point (21.52, -3.44)
          • type:Point
          • coordinates: [21.51670423444884, -3.438415367960813]
            • 0:21.51670423444884
            • 1:-3.438415367960813
        • properties: jungle
          • type:jungle
          • Map:10
      • 732: Feature (Point, 2 properties)
        • type:Feature
        • id:732
        • geometry: Point (24.19, -3.45)
          • type:Point
          • coordinates: [24.187185487752945, -3.452021470651356]
            • 0:24.187185487752945
            • 1:-3.452021470651356
        • properties: jungle
          • type:jungle
          • Map:10
      • 733: Feature (Point, 2 properties)
        • type:Feature
        • id:733
        • geometry: Point (21.25, -1.37)
          • type:Point
          • coordinates: [21.249665198114446, -1.3743964074358115]
            • 0:21.249665198114446
            • 1:-1.3743964074358115
        • properties: jungle
          • type:jungle
          • Map:10
      • 734: Feature (Point, 2 properties)
        • type:Feature
        • id:734
        • geometry: Point (23.04, -2.95)
          • type:Point
          • coordinates: [23.038405084950757, -2.9482105734735113]
            • 0:23.038405084950757
            • 1:-2.9482105734735113
        • properties: jungle
          • type:jungle
          • Map:10
      • 735: Feature (Point, 2 properties)
        • type:Feature
        • id:735
        • geometry: Point (23.03, -0.23)
          • type:Point
          • coordinates: [23.034205575668025, -0.22807943474824216]
            • 0:23.034205575668025
            • 1:-0.22807943474824216
        • properties: jungle
          • type:jungle
          • Map:10
      • 736: Feature (Point, 2 properties)
        • type:Feature
        • id:736
        • geometry: Point (22.42, -0.38)
          • type:Point
          • coordinates: [22.420062300828814, -0.38009492282881313]
            • 0:22.420062300828814
            • 1:-0.38009492282881313
        • properties: jungle
          • type:jungle
          • Map:10
      • 737: Feature (Point, 2 properties)
        • type:Feature
        • id:737
        • geometry: Point (24.93, -1.23)
          • type:Point
          • coordinates: [24.931197477117266, -1.233140162648742]
            • 0:24.931197477117266
            • 1:-1.233140162648742
        • properties: jungle
          • type:jungle
          • Map:10
      • 738: Feature (Point, 2 properties)
        • type:Feature
        • id:738
        • geometry: Point (22.30, -1.65)
          • type:Point
          • coordinates: [22.300493456193855, -1.6468786976076468]
            • 0:22.300493456193855
            • 1:-1.6468786976076468
        • properties: jungle
          • type:jungle
          • Map:10
      • 739: Feature (Point, 2 properties)
        • type:Feature
        • id:739
        • geometry: Point (22.08, -3.00)
          • type:Point
          • coordinates: [22.083015510104694, -2.995384844415003]
            • 0:22.083015510104694
            • 1:-2.995384844415003
        • properties: jungle
          • type:jungle
          • Map:10
      • 740: Feature (Point, 2 properties)
        • type:Feature
        • id:740
        • geometry: Point (22.82, -0.20)
          • type:Point
          • coordinates: [22.818453737915192, -0.20188171849529812]
            • 0:22.818453737915192
            • 1:-0.20188171849529812
        • properties: jungle
          • type:jungle
          • Map:10
      • 741: Feature (Point, 2 properties)
        • type:Feature
        • id:741
        • geometry: Point (21.68, -4.71)
          • type:Point
          • coordinates: [21.68159722334806, -4.712916095277771]
            • 0:21.68159722334806
            • 1:-4.712916095277771
        • properties: jungle
          • type:jungle
          • Map:10
      • 742: Feature (Point, 2 properties)
        • type:Feature
        • id:742
        • geometry: Point (23.58, -0.40)
          • type:Point
          • coordinates: [23.57577541052024, -0.4039838302192708]
            • 0:23.57577541052024
            • 1:-0.4039838302192708
        • properties: jungle
          • type:jungle
          • Map:10
      • 743: Feature (Point, 2 properties)
        • type:Feature
        • id:743
        • geometry: Point (21.23, -4.77)
          • type:Point
          • coordinates: [21.225983121149778, -4.7730764404502155]
            • 0:21.225983121149778
            • 1:-4.7730764404502155
        • properties: jungle
          • type:jungle
          • Map:10
      • 744: Feature (Point, 2 properties)
        • type:Feature
        • id:744
        • geometry: Point (20.82, -1.08)
          • type:Point
          • coordinates: [20.816016493759342, -1.0764723282622197]
            • 0:20.816016493759342
            • 1:-1.0764723282622197
        • properties: jungle
          • type:jungle
          • Map:10
      • 745: Feature (Point, 2 properties)
        • type:Feature
        • id:745
        • geometry: Point (21.99, -4.63)
          • type:Point
          • coordinates: [21.99370003586347, -4.6329224640620295]
            • 0:21.99370003586347
            • 1:-4.6329224640620295
        • properties: jungle
          • type:jungle
          • Map:10
      • 746: Feature (Point, 2 properties)
        • type:Feature
        • id:746
        • geometry: Point (20.36, -2.18)
          • type:Point
          • coordinates: [20.35656421259554, -2.1811822294215792]
            • 0:20.35656421259554
            • 1:-2.1811822294215792
        • properties: jungle
          • type:jungle
          • Map:10
      • 747: Feature (Point, 2 properties)
        • type:Feature
        • id:747
        • geometry: Point (20.50, -0.38)
          • type:Point
          • coordinates: [20.49822774982628, -0.3799070824066233]
            • 0:20.49822774982628
            • 1:-0.3799070824066233
        • properties: jungle
          • type:jungle
          • Map:10
      • 748: Feature (Point, 2 properties)
        • type:Feature
        • id:748
        • geometry: Point (21.11, -2.28)
          • type:Point
          • coordinates: [21.108593583963206, -2.283249766054057]
            • 0:21.108593583963206
            • 1:-2.283249766054057
        • properties: jungle
          • type:jungle
          • Map:10
      • 749: Feature (Point, 2 properties)
        • type:Feature
        • id:749
        • geometry: Point (22.87, -0.05)
          • type:Point
          • coordinates: [22.870804517313157, -0.04508670185927056]
            • 0:22.870804517313157
            • 1:-0.04508670185927056
        • properties: jungle
          • type:jungle
          • Map:10
      • 750: Feature (Point, 2 properties)
        • type:Feature
        • id:750
        • geometry: Point (22.07, -1.87)
          • type:Point
          • coordinates: [22.06924255236384, -1.8702483325153452]
            • 0:22.06924255236384
            • 1:-1.8702483325153452
        • properties: jungle
          • type:jungle
          • Map:10
      • 751: Feature (Point, 2 properties)
        • type:Feature
        • id:751
        • geometry: Point (21.68, -2.18)
          • type:Point
          • coordinates: [21.684045641222912, -2.1811178869034795]
            • 0:21.684045641222912
            • 1:-2.1811178869034795
        • properties: jungle
          • type:jungle
          • Map:10
      • 752: Feature (Point, 2 properties)
        • type:Feature
        • id:752
        • geometry: Point (20.32, -2.31)
          • type:Point
          • coordinates: [20.31506448655435, -2.3065973606514074]
            • 0:20.31506448655435
            • 1:-2.3065973606514074
        • properties: jungle
          • type:jungle
          • Map:10
      • 753: Feature (Point, 2 properties)
        • type:Feature
        • id:753
        • geometry: Point (22.93, -2.83)
          • type:Point
          • coordinates: [22.931199703873755, -2.833144401400267]
            • 0:22.931199703873755
            • 1:-2.833144401400267
        • properties: jungle
          • type:jungle
          • Map:10
      • 754: Feature (Point, 2 properties)
        • type:Feature
        • id:754
        • geometry: Point (21.29, -1.52)
          • type:Point
          • coordinates: [21.287049714175524, -1.5172203743574393]
            • 0:21.287049714175524
            • 1:-1.5172203743574393
        • properties: jungle
          • type:jungle
          • Map:10
      • 755: Feature (Point, 2 properties)
        • type:Feature
        • id:755
        • geometry: Point (22.91, 0.07)
          • type:Point
          • coordinates: [22.908872249609974, 0.07301408632407838]
            • 0:22.908872249609974
            • 1:0.07301408632407838
        • properties: jungle
          • type:jungle
          • Map:10
      • 756: Feature (Point, 2 properties)
        • type:Feature
        • id:756
        • geometry: Point (23.81, -3.85)
          • type:Point
          • coordinates: [23.8090509091152, -3.8496675197253434]
            • 0:23.8090509091152
            • 1:-3.8496675197253434
        • properties: jungle
          • type:jungle
          • Map:10
      • 757: Feature (Point, 2 properties)
        • type:Feature
        • id:757
        • geometry: Point (24.05, -2.37)
          • type:Point
          • coordinates: [24.050204947419193, -2.3739963528741654]
            • 0:24.050204947419193
            • 1:-2.3739963528741654
        • properties: jungle
          • type:jungle
          • Map:10
      • 758: Feature (Point, 2 properties)
        • type:Feature
        • id:758
        • geometry: Point (20.36, -0.79)
          • type:Point
          • coordinates: [20.358374335359482, -0.791482106364534]
            • 0:20.358374335359482
            • 1:-0.791482106364534
        • properties: jungle
          • type:jungle
          • Map:10
      • 759: Feature (Point, 2 properties)
        • type:Feature
        • id:759
        • geometry: Point (24.02, -1.98)
          • type:Point
          • coordinates: [24.019525530398774, -1.982885998348219]
            • 0:24.019525530398774
            • 1:-1.982885998348219
        • properties: jungle
          • type:jungle
          • Map:10
      • 760: Feature (Point, 2 properties)
        • type:Feature
        • id:760
        • geometry: Point (23.86, -2.54)
          • type:Point
          • coordinates: [23.85868657629053, -2.5389366642534217]
            • 0:23.85868657629053
            • 1:-2.5389366642534217
        • properties: jungle
          • type:jungle
          • Map:10
      • 761: Feature (Point, 2 properties)
        • type:Feature
        • id:761
        • geometry: Point (24.34, -0.91)
          • type:Point
          • coordinates: [24.338689383973914, -0.914930356929274]
            • 0:24.338689383973914
            • 1:-0.914930356929274
        • properties: jungle
          • type:jungle
          • Map:10
      • 762: Feature (Point, 2 properties)
        • type:Feature
        • id:762
        • geometry: Point (23.55, -4.59)
          • type:Point
          • coordinates: [23.54576466128942, -4.592098079191782]
            • 0:23.54576466128942
            • 1:-4.592098079191782
        • properties: jungle
          • type:jungle
          • Map:10
      • 763: Feature (Point, 2 properties)
        • type:Feature
        • id:763
        • geometry: Point (24.11, -2.99)
          • type:Point
          • coordinates: [24.114605846932808, -2.987809559173812]
            • 0:24.114605846932808
            • 1:-2.987809559173812
        • properties: jungle
          • type:jungle
          • Map:10
      • 764: Feature (Point, 2 properties)
        • type:Feature
        • id:764
        • geometry: Point (20.89, -0.71)
          • type:Point
          • coordinates: [20.89292109576226, -0.7110826893094957]
            • 0:20.89292109576226
            • 1:-0.7110826893094957
        • properties: jungle
          • type:jungle
          • Map:10
      • 765: Feature (Point, 2 properties)
        • type:Feature
        • id:765
        • geometry: Point (20.30, -1.90)
          • type:Point
          • coordinates: [20.303604735190092, -1.8991529816239672]
            • 0:20.303604735190092
            • 1:-1.8991529816239672
        • properties: jungle
          • type:jungle
          • Map:10
      • 766: Feature (Point, 2 properties)
        • type:Feature
        • id:766
        • geometry: Point (24.28, -4.75)
          • type:Point
          • coordinates: [24.277542675311988, -4.754083336769086]
            • 0:24.277542675311988
            • 1:-4.754083336769086
        • properties: jungle
          • type:jungle
          • Map:30
      • 767: Feature (Point, 2 properties)
        • type:Feature
        • id:767
        • geometry: Point (21.32, -0.93)
          • type:Point
          • coordinates: [21.316880627673868, -0.9344632074907478]
            • 0:21.316880627673868
            • 1:-0.9344632074907478
        • properties: jungle
          • type:jungle
          • Map:10
      • 768: Feature (Point, 2 properties)
        • type:Feature
        • id:768
        • geometry: Point (23.21, -1.17)
          • type:Point
          • coordinates: [23.20670818431902, -1.1666416537383069]
            • 0:23.20670818431902
            • 1:-1.1666416537383069
        • properties: jungle
          • type:jungle
          • Map:10
      • 769: Feature (Point, 2 properties)
        • type:Feature
        • id:769
        • geometry: Point (22.30, -2.06)
          • type:Point
          • coordinates: [22.295990406846492, -2.061541692626038]
            • 0:22.295990406846492
            • 1:-2.061541692626038
        • properties: jungle
          • type:jungle
          • Map:10
      • 770: Feature (Point, 2 properties)
        • type:Feature
        • id:770
        • geometry: Point (23.87, -4.01)
          • type:Point
          • coordinates: [23.865890088826877, -4.0121880216615855]
            • 0:23.865890088826877
            • 1:-4.0121880216615855
        • properties: jungle
          • type:jungle
          • Map:10
      • 771: Feature (Point, 2 properties)
        • type:Feature
        • id:771
        • geometry: Point (25.09, -2.16)
          • type:Point
          • coordinates: [25.092892784618105, -2.1625950747418217]
            • 0:25.092892784618105
            • 1:-2.1625950747418217
        • properties: jungle
          • type:jungle
          • Map:10
      • 772: Feature (Point, 2 properties)
        • type:Feature
        • id:772
        • geometry: Point (20.87, -0.36)
          • type:Point
          • coordinates: [20.869392005329633, -0.36352755774456474]
            • 0:20.869392005329633
            • 1:-0.36352755774456474
        • properties: jungle
          • type:jungle
          • Map:10
      • 773: Feature (Point, 2 properties)
        • type:Feature
        • id:773
        • geometry: Point (21.96, -1.05)
          • type:Point
          • coordinates: [21.955860189664165, -1.0459014942143003]
            • 0:21.955860189664165
            • 1:-1.0459014942143003
        • properties: jungle
          • type:jungle
          • Map:10
      • 774: Feature (Point, 2 properties)
        • type:Feature
        • id:774
        • geometry: Point (20.75, -2.95)
          • type:Point
          • coordinates: [20.754732339800142, -2.9530232527380074]
            • 0:20.754732339800142
            • 1:-2.9530232527380074
        • properties: jungle
          • type:jungle
          • Map:10
      • 775: Feature (Point, 2 properties)
        • type:Feature
        • id:775
        • geometry: Point (19.97, -3.44)
          • type:Point
          • coordinates: [19.968510277535472, -3.4367432914732543]
            • 0:19.968510277535472
            • 1:-3.4367432914732543
        • properties: jungle
          • type:jungle
          • Map:10
      • 776: Feature (Point, 2 properties)
        • type:Feature
        • id:776
        • geometry: Point (23.24, -4.96)
          • type:Point
          • coordinates: [23.237740453990625, -4.964646385012331]
            • 0:23.237740453990625
            • 1:-4.964646385012331
        • properties: jungle
          • type:jungle
          • Map:10
      • 777: Feature (Point, 2 properties)
        • type:Feature
        • id:777
        • geometry: Point (21.69, -1.39)
          • type:Point
          • coordinates: [21.6852406967624, -1.3906027279563271]
            • 0:21.6852406967624
            • 1:-1.3906027279563271
        • properties: jungle
          • type:jungle
          • Map:10
      • 778: Feature (Point, 2 properties)
        • type:Feature
        • id:778
        • geometry: Point (21.42, -2.59)
          • type:Point
          • coordinates: [21.42246835658005, -2.5917891230318095]
            • 0:21.42246835658005
            • 1:-2.5917891230318095
        • properties: jungle
          • type:jungle
          • Map:10
      • 779: Feature (Point, 2 properties)
        • type:Feature
        • id:779
        • geometry: Point (23.27, 0.13)
          • type:Point
          • coordinates: [23.266465201277786, 0.1276270160626914]
            • 0:23.266465201277786
            • 1:0.1276270160626914
        • properties: jungle
          • type:jungle
          • Map:10
      • 780: Feature (Point, 2 properties)
        • type:Feature
        • id:780
        • geometry: Point (21.71, -2.70)
          • type:Point
          • coordinates: [21.705962866643624, -2.7037628733798926]
            • 0:21.705962866643624
            • 1:-2.7037628733798926
        • properties: jungle
          • type:jungle
          • Map:10
      • 781: Feature (Point, 2 properties)
        • type:Feature
        • id:781
        • geometry: Point (22.38, -5.05)
          • type:Point
          • coordinates: [22.384276477296375, -5.050828523338998]
            • 0:22.384276477296375
            • 1:-5.050828523338998
        • properties: jungle
          • type:jungle
          • Map:10
      • 782: Feature (Point, 2 properties)
        • type:Feature
        • id:782
        • geometry: Point (21.33, -0.72)
          • type:Point
          • coordinates: [21.33404483603138, -0.7158280875803064]
            • 0:21.33404483603138
            • 1:-0.7158280875803064
        • properties: jungle
          • type:jungle
          • Map:10
      • 783: Feature (Point, 2 properties)
        • type:Feature
        • id:783
        • geometry: Point (21.86, -3.27)
          • type:Point
          • coordinates: [21.856392236820803, -3.2657465175852463]
            • 0:21.856392236820803
            • 1:-3.2657465175852463
        • properties: jungle
          • type:jungle
          • Map:10
      • 784: Feature (Point, 2 properties)
        • type:Feature
        • id:784
        • geometry: Point (24.56, -3.53)
          • type:Point
          • coordinates: [24.559113683056747, -3.531248814015952]
            • 0:24.559113683056747
            • 1:-3.531248814015952
        • properties: jungle
          • type:jungle
          • Map:10
      • 785: Feature (Point, 2 properties)
        • type:Feature
        • id:785
        • geometry: Point (24.17, -3.18)
          • type:Point
          • coordinates: [24.165314528343682, -3.1784511685481527]
            • 0:24.165314528343682
            • 1:-3.1784511685481527
        • properties: jungle
          • type:jungle
          • Map:10
      • 786: Feature (Point, 2 properties)
        • type:Feature
        • id:786
        • geometry: Point (22.87, -4.58)
          • type:Point
          • coordinates: [22.872051022242932, -4.57841952699371]
            • 0:22.872051022242932
            • 1:-4.57841952699371
        • properties: jungle
          • type:jungle
          • Map:10
      • 787: Feature (Point, 2 properties)
        • type:Feature
        • id:787
        • geometry: Point (23.76, -3.09)
          • type:Point
          • coordinates: [23.76257475548486, -3.0948971513725465]
            • 0:23.76257475548486
            • 1:-3.0948971513725465
        • properties: jungle
          • type:jungle
          • Map:10
      • 788: Feature (Point, 2 properties)
        • type:Feature
        • id:788
        • geometry: Point (24.30, -3.49)
          • type:Point
          • coordinates: [24.301251581945472, -3.488018139434259]
            • 0:24.301251581945472
            • 1:-3.488018139434259
        • properties: jungle
          • type:jungle
          • Map:10
      • 789: Feature (Point, 2 properties)
        • type:Feature
        • id:789
        • geometry: Point (21.29, -2.55)
          • type:Point
          • coordinates: [21.29447275230104, -2.5529875957114916]
            • 0:21.29447275230104
            • 1:-2.5529875957114916
        • properties: jungle
          • type:jungle
          • Map:10
      • 790: Feature (Point, 2 properties)
        • type:Feature
        • id:790
        • geometry: Point (24.83, -0.55)
          • type:Point
          • coordinates: [24.82955056488388, -0.5464174900597892]
            • 0:24.82955056488388
            • 1:-0.5464174900597892
        • properties: jungle
          • type:jungle
          • Map:10
      • 791: Feature (Point, 2 properties)
        • type:Feature
        • id:791
        • geometry: Point (22.74, -2.54)
          • type:Point
          • coordinates: [22.743939734542604, -2.5432393866989393]
            • 0:22.743939734542604
            • 1:-2.5432393866989393
        • properties: jungle
          • type:jungle
          • Map:10
      • 792: Feature (Point, 2 properties)
        • type:Feature
        • id:792
        • geometry: Point (24.62, -3.04)
          • type:Point
          • coordinates: [24.620698315725452, -3.036448608565543]
            • 0:24.620698315725452
            • 1:-3.036448608565543
        • properties: jungle
          • type:jungle
          • Map:10
      • 793: Feature (Point, 2 properties)
        • type:Feature
        • id:793
        • geometry: Point (21.09, -4.24)
          • type:Point
          • coordinates: [21.086219598782225, -4.238876808415213]
            • 0:21.086219598782225
            • 1:-4.238876808415213
        • properties: jungle
          • type:jungle
          • Map:10
      • 794: Feature (Point, 2 properties)
        • type:Feature
        • id:794
        • geometry: Point (24.21, -2.77)
          • type:Point
          • coordinates: [24.207376148524155, -2.7650462202334336]
            • 0:24.207376148524155
            • 1:-2.7650462202334336
        • properties: jungle
          • type:jungle
          • Map:10
      • 795: Feature (Point, 2 properties)
        • type:Feature
        • id:795
        • geometry: Point (24.27, -0.81)
          • type:Point
          • coordinates: [24.26598053607855, -0.8118760722540513]
            • 0:24.26598053607855
            • 1:-0.8118760722540513
        • properties: jungle
          • type:jungle
          • Map:10
      • 796: Feature (Point, 2 properties)
        • type:Feature
        • id:796
        • geometry: Point (20.67, -3.53)
          • type:Point
          • coordinates: [20.674345275327678, -3.5280667729324984]
            • 0:20.674345275327678
            • 1:-3.5280667729324984
        • properties: jungle
          • type:jungle
          • Map:10
      • 797: Feature (Point, 2 properties)
        • type:Feature
        • id:797
        • geometry: Point (20.72, -5.04)
          • type:Point
          • coordinates: [20.724516355101557, -5.038941351887014]
            • 0:20.724516355101557
            • 1:-5.038941351887014
        • properties: jungle
          • type:jungle
          • Map:30
      • 798: Feature (Point, 2 properties)
        • type:Feature
        • id:798
        • geometry: Point (20.38, -1.24)
          • type:Point
          • coordinates: [20.3844049902326, -1.2400161979376143]
            • 0:20.3844049902326
            • 1:-1.2400161979376143
        • properties: jungle
          • type:jungle
          • Map:10
      • 799: Feature (Point, 2 properties)
        • type:Feature
        • id:799
        • geometry: Point (24.43, -4.75)
          • type:Point
          • coordinates: [24.426582501603207, -4.753250116635631]
            • 0:24.426582501603207
            • 1:-4.753250116635631
        • properties: jungle
          • type:jungle
          • Map:30

Read Back in Points and Add to Map¶

In [49]:
# read in the sample points geojsons
built_pts = geemap.geojson_to_ee('data/dark_africa/built_pts2.geo.json')
rural_pts = geemap.geojson_to_ee('data/dark_africa/rural_pts3.geo.json')
ocean_pts = geemap.geojson_to_ee('data/dark_africa/ocean_pts2.geo.json')
desert_pts = geemap.geojson_to_ee('data/dark_africa/desert_pts2.geo.json')
jungle_pts = geemap.geojson_to_ee('data/dark_africa/jungle_pts2.geo.json')

# add the sample points to the map with appropriate colors
m.addLayer(built_pts, {'color': 'red'}, 'Built points')
m.addLayer(rural_pts, {'color': 'purple'}, 'Rural points')
m.addLayer(ocean_pts, {'color': 'blue'}, 'Ocean points')
m.addLayer(desert_pts, {'color': 'orange'}, 'Desert points')
m.addLayer(jungle_pts, {'color': 'darkgreen'}, 'Jungle points')

# print the number of points in each feature collection
print('Built points: ', built_pts.size().getInfo())
print('Rural points: ', rural_pts.size().getInfo())
print('Ocean points: ', ocean_pts.size().getInfo())
print('Desert points: ', desert_pts.size().getInfo())
print('Jungle points: ', jungle_pts.size().getInfo())
Built points:  502
Rural points:  1795
Ocean points:  800
Desert points:  800
Jungle points:  800
In [50]:
# add in mini-grid sites to map
cluber_fc = geemap.geojson_to_ee('data/cluber/cluber_sites.geojson')
m.addLayer(cluber_fc, {'color': 'yellow'}, 'Club-ER Sites')
In [51]:
# rural_trees_mask = rural.eq(10)
# rural_shrub_mark = rural.eq(20)
# rural_grass_mask = rural.eq(30)
# rural_crop_mask = rural.eq(40)
# rural_bare_mask = rural.eq(60)

# rural_trees = rural.updateMask(rural_trees_mask)
# rural_shrub = rural.updateMask(rural_shrub_mark)
# rural_grass = rural.updateMask(rural_grass_mask)
# rural_crop = rural.updateMask(rural_crop_mask)
# rural_bare = rural.updateMask(rural_bare_mask)

# note this drops any points that have been masked
# rural_trees_points = rural_rural.sample(
#     region=all_minigrid_countries_fc.geometry(),
#     scale=30, # 1000km
#     numPixels=1, # 10k points, many get dropped
#     seed=44,
#     dropNulls=True, # drop any points that have been masked
#     geometries=True
# )
# # convert into a feature collection of points
# rural_rural_fc = ee.FeatureCollection(rural_trees_points)

# save the feature collections
# geemap.ee_export_vector(rural_trees_fc, 'data/dark_africa/rural_trees_points.geojson')

Create a 1km Buffer Around the Sampled Points¶

In [52]:
# read in the feature collections from geojson
built_pts_fc = geemap.geojson_to_ee('data/dark_africa/built_pts2.geo.json')
ocean_pts_fc = geemap.geojson_to_ee('data/dark_africa/ocean_pts2.geo.json')
desert_pts_fc = geemap.geojson_to_ee('data/dark_africa/desert_pts2.geo.json')
jungle_pts_fc = geemap.geojson_to_ee('data/dark_africa/jungle_pts2.geo.json')
rural_pts_fc = geemap.geojson_to_ee('data/dark_africa/rural_pts3.geo.json')

# combine the feature collections
dark_pts_fc = built_pts_fc.merge(ocean_pts_fc).merge(desert_pts_fc).merge(jungle_pts_fc).merge(rural_pts_fc)
In [53]:
# inspect the size of the fc
print('Number of points in built_pts_fc: ', built_pts_fc.size().getInfo())
print('Number of points in ocean_pts_fc: ', ocean_pts_fc.size().getInfo())
print('Number of points in desert_pts_fc: ', desert_pts_fc.size().getInfo())
print('Number of points in jungle_pts_fc: ', jungle_pts_fc.size().getInfo())
print('Number of points in rural_pts_fc: ', rural_pts_fc.size().getInfo())
# combined
print('Number of points in dark_pts_fc: ', dark_pts_fc.size().getInfo())
Number of points in built_pts_fc:  502
Number of points in ocean_pts_fc:  800
Number of points in desert_pts_fc:  800
Number of points in jungle_pts_fc:  800
Number of points in rural_pts_fc:  1795
Number of points in dark_pts_fc:  4697
In [54]:
# create a 1km buffer around the rural water points
dark_pts_buffer = dark_pts_fc.map(lambda f: f.buffer(1000))

Get the Nightlights Values for each buffer¶

In [55]:
# get the image collectino of nightlight images
dataset_night = ee.ImageCollection('NOAA/VIIRS/DNB/MONTHLY_V1/VCMSLCFG') \
                  .filter(ee.Filter.date('2014-01-01', '2024-01-01'))
# select the avg_rad band
nighttime_ic = dataset_night.select('avg_rad')
# stack the images into a single image
nighttime_ic_stack = nighttime_ic.toBands()
nighttime_ic_stack
Out[55]:
  • Image (120 bands)
    • type:Image
    • bands: List (120 elements)
      • 0: "20140101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20140101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 1: "20140201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20140201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 2: "20140301_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20140301_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 3: "20140401_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20140401_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 4: "20140501_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20140501_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 5: "20140601_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20140601_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 6: "20140701_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20140701_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 7: "20140801_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20140801_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 8: "20140901_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20140901_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 9: "20141001_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20141001_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 10: "20141101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20141101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 11: "20141201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20141201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 12: "20150101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20150101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 13: "20150201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20150201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 14: "20150301_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20150301_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 15: "20150401_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20150401_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 16: "20150501_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20150501_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 17: "20150601_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20150601_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 18: "20150701_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20150701_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 19: "20150801_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20150801_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 20: "20150901_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20150901_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 21: "20151001_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20151001_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 22: "20151101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20151101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 23: "20151201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20151201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 24: "20160101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20160101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 25: "20160201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20160201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 26: "20160301_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20160301_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 27: "20160401_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20160401_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 28: "20160501_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20160501_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 29: "20160601_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20160601_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 30: "20160701_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20160701_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 31: "20160801_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20160801_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 32: "20160901_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20160901_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 33: "20161001_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20161001_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 34: "20161101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20161101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 35: "20161201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20161201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 36: "20170101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20170101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 37: "20170201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20170201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 38: "20170301_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20170301_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 39: "20170401_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20170401_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 40: "20170501_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20170501_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 41: "20170601_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20170601_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 42: "20170701_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20170701_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 43: "20170801_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20170801_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 44: "20170901_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20170901_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 45: "20171001_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20171001_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 46: "20171101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20171101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 47: "20171201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20171201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 48: "20180101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20180101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 49: "20180201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20180201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 50: "20180301_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20180301_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 51: "20180401_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20180401_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 52: "20180501_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20180501_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 53: "20180601_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20180601_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 54: "20180701_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20180701_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 55: "20180801_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20180801_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 56: "20180901_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20180901_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 57: "20181001_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20181001_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 58: "20181101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20181101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 59: "20181201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20181201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 60: "20190101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20190101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 61: "20190201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20190201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 62: "20190301_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20190301_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 63: "20190401_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20190401_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 64: "20190501_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20190501_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 65: "20190601_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20190601_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 66: "20190701_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20190701_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 67: "20190801_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20190801_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 68: "20190901_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20190901_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 69: "20191001_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20191001_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 70: "20191101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20191101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 71: "20191201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20191201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 72: "20200101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20200101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 73: "20200201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20200201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 74: "20200301_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20200301_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 75: "20200401_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20200401_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 76: "20200501_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20200501_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 77: "20200601_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20200601_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 78: "20200701_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20200701_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 79: "20200801_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20200801_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 80: "20200901_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20200901_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 81: "20201001_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20201001_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 82: "20201101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20201101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 83: "20201201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20201201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 84: "20210101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20210101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 85: "20210201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20210201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 86: "20210301_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20210301_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 87: "20210401_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20210401_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 88: "20210501_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20210501_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 89: "20210601_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20210601_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 90: "20210701_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20210701_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 91: "20210801_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20210801_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 92: "20210901_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20210901_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 93: "20211001_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20211001_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 94: "20211101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20211101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 95: "20211201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20211201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 96: "20220101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20220101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 97: "20220201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20220201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 98: "20220301_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20220301_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 99: "20220401_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20220401_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 100: "20220501_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20220501_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 101: "20220601_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20220601_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 102: "20220701_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20220701_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 103: "20220801_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20220801_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 104: "20220901_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20220901_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 105: "20221001_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20221001_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 106: "20221101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20221101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 107: "20221201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20221201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 108: "20230101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20230101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 109: "20230201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20230201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 110: "20230301_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20230301_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 111: "20230401_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20230401_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 112: "20230501_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20230501_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 113: "20230601_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20230601_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 114: "20230701_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20230701_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 115: "20230801_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20230801_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 116: "20230901_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20230901_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 117: "20231001_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20231001_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 118: "20231101_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20231101_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
      • 119: "20231201_avg_rad", float, EPSG:4326, 86400x33600 px
        • id:20231201_avg_rad
        • crs:EPSG:4326
        • crs_transform: List (6 elements)
          • 0:0.0041666667
          • 1:0
          • 2:-180.00208525335
          • 3:0
          • 4:-0.0041666667
          • 5:75.00208393335001
        • data_type: float
          • type:PixelType
          • precision:float
        • dimensions: [86400, 33600]
          • 0:86400
          • 1:33600
In [56]:
# apply the reduceRegions for dark
nighttime_dark_fc = nighttime_ic_stack.reduceRegions(
    collection=dark_pts_buffer, 
    reducer=ee.Reducer.mean(), 
    scale=50
)
In [57]:
# get the centerpoint of each polygon feature in the feature collection
nighttime_dark_fc = nighttime_dark_fc.map(lambda f: f.set('center', f.geometry().centroid().coordinates()))

Convert the Feature Collections to GeoDataFrames and Clean Data¶

In [ ]:
# convert fc to gdf
nighttime_dark_gdf = geemap.ee_to_geopandas(nighttime_dark_fc)
# nighttime_dark_gdf.head(5)
In [ ]:
# remove "_avg_rad" from the column names that contain it
nighttime_dark_gdf.columns = nighttime_dark_gdf.columns.str.replace('_avg_rad', '')
nighttime_dark_gdf.head(6)
Out[ ]:
geometry 20140101 20140201 20140301 20140401 20140501 20140601 20140701 20140801 20140901 ... 20230501 20230601 20230701 20230801 20230901 20231001 20231101 Map center type
0 POLYGON ((2.33339 6.55256, 2.33086 6.55220, 2.... 0.342968 0.402747 0.591590 0.627920 0.841341 0.789663 2.050187 0.862919 0.717496 ... 2.482867 2.783915 2.775975 2.304453 2.980115 3.340708 3.500435 50.0 [2.333387535907443, 6.543558933186543] built
1 POLYGON ((7.56328 5.72232, 7.56075 5.72196, 7.... 0.585448 0.423186 0.713340 1.380553 -0.062595 0.050709 0.390967 0.471818 1.148631 ... 0.000000 0.367120 0.237813 0.360027 0.008575 0.009520 0.511216 50.0 [7.563278792531629, 5.713322064494402] built
2 POLYGON ((-4.33668 9.93446, -4.33923 9.93410, ... -0.009527 0.061128 0.100562 0.055074 0.100940 -0.005170 -0.005658 0.076313 0.077994 ... 0.310717 0.428970 0.334139 0.365331 0.332577 0.395312 0.411871 50.0 [-4.336682376746656, 9.925465263755695] built
3 POLYGON ((35.37758 -23.30052, 35.37485 -23.300... 1.624531 1.620947 1.721038 1.545961 1.680671 1.652644 1.675032 1.506489 1.624703 ... 2.602425 2.401618 2.592629 2.642773 2.214580 2.443272 2.718274 50.0 [35.37758294573388, -23.30952150601561] built
4 POLYGON ((2.34888 6.55819, 2.34635 6.55783, 2.... 0.291702 0.357614 0.400716 0.496250 0.387205 0.410198 1.162781 0.676260 0.449396 ... 2.897713 3.043083 2.831049 2.563683 2.886312 3.186137 3.479030 50.0 [2.348880740780288, 6.549193017854241] built
5 POLYGON ((39.33439 8.40063, 39.33185 8.40027, ... 1.527353 1.399204 1.441398 1.219187 0.805832 0.892052 0.674718 0.779813 0.857485 ... 1.250543 1.248711 1.369335 1.153369 1.282867 1.705389 1.653763 50.0 [39.33439164475328, 8.391627201286694] built

6 rows × 123 columns

In [ ]:
from shapely.geometry import Point

# convert the geometry column from a list of coordinates to the centroid of the polygon
nighttime_dark_gdf['geometry'] = nighttime_dark_gdf['center'].apply(lambda x: Point(x[0], x[1]))

# inspect head
nighttime_dark_gdf.head(6)
Out[ ]:
geometry 20140101 20140201 20140301 20140401 20140501 20140601 20140701 20140801 20140901 ... 20230501 20230601 20230701 20230801 20230901 20231001 20231101 Map center type
0 POINT (2.33339 6.54356) 0.342968 0.402747 0.591590 0.627920 0.841341 0.789663 2.050187 0.862919 0.717496 ... 2.482867 2.783915 2.775975 2.304453 2.980115 3.340708 3.500435 50.0 [2.333387535907443, 6.543558933186543] built
1 POINT (7.56328 5.71332) 0.585448 0.423186 0.713340 1.380553 -0.062595 0.050709 0.390967 0.471818 1.148631 ... 0.000000 0.367120 0.237813 0.360027 0.008575 0.009520 0.511216 50.0 [7.563278792531629, 5.713322064494402] built
2 POINT (-4.33668 9.92547) -0.009527 0.061128 0.100562 0.055074 0.100940 -0.005170 -0.005658 0.076313 0.077994 ... 0.310717 0.428970 0.334139 0.365331 0.332577 0.395312 0.411871 50.0 [-4.336682376746656, 9.925465263755695] built
3 POINT (35.37758 -23.30952) 1.624531 1.620947 1.721038 1.545961 1.680671 1.652644 1.675032 1.506489 1.624703 ... 2.602425 2.401618 2.592629 2.642773 2.214580 2.443272 2.718274 50.0 [35.37758294573388, -23.30952150601561] built
4 POINT (2.34888 6.54919) 0.291702 0.357614 0.400716 0.496250 0.387205 0.410198 1.162781 0.676260 0.449396 ... 2.897713 3.043083 2.831049 2.563683 2.886312 3.186137 3.479030 50.0 [2.348880740780288, 6.549193017854241] built
5 POINT (39.33439 8.39163) 1.527353 1.399204 1.441398 1.219187 0.805832 0.892052 0.674718 0.779813 0.857485 ... 1.250543 1.248711 1.369335 1.153369 1.282867 1.705389 1.653763 50.0 [39.33439164475328, 8.391627201286694] built

6 rows × 123 columns

In [ ]:
# drop the center column
nighttime_dark_gdf = nighttime_dark_gdf.drop(columns=['center'])
In [ ]:
# export the geodataframe to a csv
nighttime_dark_gdf.to_csv('data/dark_africa/nighttime_dark_gdf.csv', index=False)
In [63]:
# export to HTML for webpage
import os
os.system('jupyter nbconvert --to html 11_AfricaGetDarkAreas.ipynb --HTMLExporter.theme=dark')
[NbConvertApp] Converting notebook 11_AfricaGetDarkAreas.ipynb to html
[NbConvertApp] Writing 4618389 bytes to 11_AfricaGetDarkAreas.html
Out[63]:
0

Conclusion¶

We have successfully extracted nightlight brightness values for mini-grid locations as well as for randomly sampled dark areas across Sub-Saharan Africa. This data can now be used for further analysis, such as comparing the brightness levels of mini-grid locations to those of uninhabited areas, which can provide insights into the detectability of mini-grid electrification efforts in the region. See the next notebook for how to run difference-in-differences analysis on this data set.