Image classification with GEE and scikit-learn#

So far, we have come a long way. We have learned to work with both, vector and raster data. We have used this knowledge to e.g., extract for specific geo-locations raster-values, to use these data for parameterizing a machine-learning classifier, and to do a subsequent prediction. Now, what this small tutorial does is show you how to do these steps using a combination of functions from the packages scikit-learn and geemap. We will exemplify this on a - admittedly not great - example. Specifically, we will collect some training data from an existing land cover dataset, and predict the same land cover categories on spectra-temporal metrics (STM). Obviously, one would expect the results to be similar, but for the sake of this tutorial, we keep it this way.

We now go step by step over the process with some example code. First, we load some packages and initialize GEE

from osgeo import ogr
from tqdm.notebook import tqdm
import json
import pandas as pd
import ee
import geemap
try:
    ee.Initialize()
except Exception as e:
    ee.Authenticate()
    ee.Initialize()

Load vector data#

Open them using the ogr library#

First, we will load two vector files, both are located on my personal drive:

  1. One file does only contain one feature, with a squared geometry. This will be our region of interest (ROI), i.e., the boundaries of our classification

  2. A set of points that will serve as our training locations. This is not an uncommon scenario: often you have/receive some shapefiles in the form of points, which you use for your work.

roiSHP = ogr.Open("D:/OneDrive - Conservation Biogeography Lab/_TEACHING/__Classes-Modules_HUB/M8_Geoprocessing-with-python/10_Classification-and-LargeArea/01_ROI_shape.shp")
roiLYR = roiSHP.GetLayer()
roiFEAT = roiLYR[0]
roiGEOM = roiFEAT.geometry()
print(roiGEOM)
POLYGON ((13.2134494446947 52.4151979479578,13.2134494446947 52.4873242002239,13.3018503384978 52.4873242002239,13.3018503384978 52.4151979479578,13.2134494446947 52.4151979479578))
ptsSHP = ogr.Open("D:/OneDrive - Conservation Biogeography Lab/_TEACHING/__Classes-Modules_HUB/M8_Geoprocessing-with-python/10_Classification-and-LargeArea/02_RandomPoints_1000.shp")
ptsLYR = ptsSHP.GetLayer()
ptsLYR.GetFeatureCount()
1000

Convert items into ee.Geometry() and ee.FeatureCollection()#

Next, we will convert these items into GEE-Objects. The ROI we convert it into an ee.Geometry(), the points into an ee.FeatureCollection(). Both items we have already learned how to do (check the intro chapter on GEE of this course

geomJSON = json.loads(roiGEOM.ExportToJson())
geomCOORD = geomJSON['coordinates']
geomEE = ee.Geometry.Polygon(coords=geomCOORD)
geomEE
    • type:Polygon
          • 0:13.213449444694733
          • 1:52.41519794795775
          • 0:13.301850338497838
          • 1:52.41519794795775
          • 0:13.301850338497838
          • 1:52.48732420022388
          • 0:13.213449444694733
          • 1:52.48732420022388
          • 0:13.213449444694733
          • 1:52.41519794795775
# Create an empty list that we populate
featList = []
# Iterate over all features in `ptsLYR`
for feat in tqdm(ptsLYR):
    pid = feat.GetField('Id') # Get the ID value
    # Get the geometry
    g = feat.geometry()
    gjson = json.loads(g.ExportToJson())
    gcoord = gjson['coordinates']
    gEE = ee.Geometry.Point(coords=gcoord)
    # Create ee.Feature(), append to list
    eeFeat = ee.Feature(gEE, {"UniqueID": pid})
    featList.append(eeFeat)
# Convert the list into ee.FeatureCollection()
fc = ee.FeatureCollection(ee.List(featList))
fc
    • type:FeatureCollection
      • UniqueID:Integer
      • system:index:String
        • type:Feature
        • id:0
          • type:Point
            • 0:13.297897612257415
            • 1:52.443413834319415
          • UniqueID:0
        • type:Feature
        • id:1
          • type:Point
            • 0:13.254486503149527
            • 1:52.44252248756526
          • UniqueID:1
        • type:Feature
        • id:2
          • type:Point
            • 0:13.284452915417702
            • 1:52.43689756767333
          • UniqueID:2
        • type:Feature
        • id:3
          • type:Point
            • 0:13.269878762082532
            • 1:52.4856049389152
          • UniqueID:3
        • type:Feature
        • id:4
          • type:Point
            • 0:13.259278991098817
            • 1:52.441726386084966
          • UniqueID:4
        • type:Feature
        • id:5
          • type:Point
            • 0:13.268638335438
            • 1:52.44465249056101
          • UniqueID:5
        • type:Feature
        • id:6
          • type:Point
            • 0:13.296681342384902
            • 1:52.43743867705796
          • UniqueID:6
        • type:Feature
        • id:7
          • type:Point
            • 0:13.267082039709384
            • 1:52.44503101260291
          • UniqueID:7
        • type:Feature
        • id:8
          • type:Point
            • 0:13.239472015321972
            • 1:52.45467576893506
          • UniqueID:8
        • type:Feature
        • id:9
          • type:Point
            • 0:13.229020300967811
            • 1:52.45933677021148
          • UniqueID:9
        • type:Feature
        • id:10
          • type:Point
            • 0:13.278256436671143
            • 1:52.48636154015204
          • UniqueID:10
        • type:Feature
        • id:11
          • type:Point
            • 0:13.271861125540012
            • 1:52.42727932600612
          • UniqueID:11
        • type:Feature
        • id:12
          • type:Point
            • 0:13.227905087723205
            • 1:52.479564175668315
          • UniqueID:12
        • type:Feature
        • id:13
          • type:Point
            • 0:13.269464496749823
            • 1:52.45884759675033
          • UniqueID:13
        • type:Feature
        • id:14
          • type:Point
            • 0:13.292190402898077
            • 1:52.423644415973044
          • UniqueID:14
        • type:Feature
        • id:15
          • type:Point
            • 0:13.283767026585377
            • 1:52.438314444902986
          • UniqueID:15
        • type:Feature
        • id:16
          • type:Point
            • 0:13.269689423411442
            • 1:52.45681355076232
          • UniqueID:16
        • type:Feature
        • id:17
          • type:Point
            • 0:13.28363740899102
            • 1:52.444825842508095
          • UniqueID:17
        • type:Feature
        • id:18
          • type:Point
            • 0:13.214813964548437
            • 1:52.4659481473866
          • UniqueID:18
        • type:Feature
        • id:19
          • type:Point
            • 0:13.245804150103709
            • 1:52.4854375887781
          • UniqueID:19
        • type:Feature
        • id:20
          • type:Point
            • 0:13.258614285915264
            • 1:52.42739098070337
          • UniqueID:20
        • type:Feature
        • id:21
          • type:Point
            • 0:13.214665336013809
            • 1:52.4327591897914
          • UniqueID:21
        • type:Feature
        • id:22
          • type:Point
            • 0:13.241874260176287
            • 1:52.44235131903465
          • UniqueID:22
        • type:Feature
        • id:23
          • type:Point
            • 0:13.259171211869534
            • 1:52.449758255709924
          • UniqueID:23
        • type:Feature
        • id:24
          • type:Point
            • 0:13.295700916720445
            • 1:52.43693706192508
          • UniqueID:24
        • type:Feature
        • id:25
          • type:Point
            • 0:13.258351639436814
            • 1:52.48186160217952
          • UniqueID:25
        • type:Feature
        • id:26
          • type:Point
            • 0:13.260795142431684
            • 1:52.47548789081962
          • UniqueID:26
        • type:Feature
        • id:27
          • type:Point
            • 0:13.24200636179017
            • 1:52.434346017795264
          • UniqueID:27
        • type:Feature
        • id:28
          • type:Point
            • 0:13.290401700136478
            • 1:52.45677485477209
          • UniqueID:28
        • type:Feature
        • id:29
          • type:Point
            • 0:13.22667867526551
            • 1:52.47419269422413
          • UniqueID:29
        • type:Feature
        • id:30
          • type:Point
            • 0:13.238706256964674
            • 1:52.437815864218976
          • UniqueID:30
        • type:Feature
        • id:31
          • type:Point
            • 0:13.276746895083386
            • 1:52.4821893995511
          • UniqueID:31
        • type:Feature
        • id:32
          • type:Point
            • 0:13.293684732196901
            • 1:52.47879137909482
          • UniqueID:32
        • type:Feature
        • id:33
          • type:Point
            • 0:13.217834953131389
            • 1:52.477915939276734
          • UniqueID:33
        • type:Feature
        • id:34
          • type:Point
            • 0:13.217989998536874
            • 1:52.45571614079713
          • UniqueID:34
        • type:Feature
        • id:35
          • type:Point
            • 0:13.25701132752976
            • 1:52.453272393556055
          • UniqueID:35
        • type:Feature
        • id:36
          • type:Point
            • 0:13.287156093402638
            • 1:52.46490763406684
          • UniqueID:36
        • type:Feature
        • id:37
          • type:Point
            • 0:13.266352158875673
            • 1:52.45386677822375
          • UniqueID:37
        • type:Feature
        • id:38
          • type:Point
            • 0:13.256828367084834
            • 1:52.44143706970708
          • UniqueID:38
        • type:Feature
        • id:39
          • type:Point
            • 0:13.249394824040756
            • 1:52.48728159994767
          • UniqueID:39
        • type:Feature
        • id:40
          • type:Point
            • 0:13.300351237860713
            • 1:52.44530447496693
          • UniqueID:40
        • type:Feature
        • id:41
          • type:Point
            • 0:13.217949961386179
            • 1:52.41775731170089
          • UniqueID:41
        • type:Feature
        • id:42
          • type:Point
            • 0:13.250219226811941
            • 1:52.47303541256197
          • UniqueID:42
        • type:Feature
        • id:43
          • type:Point
            • 0:13.221270298374495
            • 1:52.46730241813628
          • UniqueID:43
        • type:Feature
        • id:44
          • type:Point
            • 0:13.254929841011137
            • 1:52.454386507058736
          • UniqueID:44
        • type:Feature
        • id:45
          • type:Point
            • 0:13.234224948783835
            • 1:52.46520245218461
          • UniqueID:45
        • type:Feature
        • id:46
          • type:Point
            • 0:13.228961428838812
            • 1:52.45656999025073
          • UniqueID:46
        • type:Feature
        • id:47
          • type:Point
            • 0:13.263299107878307
            • 1:52.42992422398106
          • UniqueID:47
        • type:Feature
        • id:48
          • type:Point
            • 0:13.249682190940458
            • 1:52.427134617349694
          • UniqueID:48
        • type:Feature
        • id:49
          • type:Point
            • 0:13.243647661383998
            • 1:52.44392114262012
          • UniqueID:49
        • type:Feature
        • id:50
          • type:Point
            • 0:13.288409365589084
            • 1:52.424192947034406
          • UniqueID:50
        • type:Feature
        • id:51
          • type:Point
            • 0:13.279770000714496
            • 1:52.48254605983186
          • UniqueID:51
        • type:Feature
        • id:52
          • type:Point
            • 0:13.23337554721848
            • 1:52.42552280550716
          • UniqueID:52
        • type:Feature
        • id:53
          • type:Point
            • 0:13.21609746987479
            • 1:52.427868139071855
          • UniqueID:53
        • type:Feature
        • id:54
          • type:Point
            • 0:13.255006925314337
            • 1:52.48107756367692
          • UniqueID:54
        • type:Feature
        • id:55
          • type:Point
            • 0:13.28051119973747
            • 1:52.43078281428947
          • UniqueID:55
        • type:Feature
        • id:56
          • type:Point
            • 0:13.235774790818855
            • 1:52.417235196364835
          • UniqueID:56
        • type:Feature
        • id:57
          • type:Point
            • 0:13.27421230572407
            • 1:52.46145019423275
          • UniqueID:57
        • type:Feature
        • id:58
          • type:Point
            • 0:13.246672822943061
            • 1:52.47836931753156
          • UniqueID:58
        • type:Feature
        • id:59
          • type:Point
            • 0:13.298657765530692
            • 1:52.48632938337098
          • UniqueID:59
        • type:Feature
        • id:60
          • type:Point
            • 0:13.23538900036738
            • 1:52.47193749339381
          • UniqueID:60
        • type:Feature
        • id:61
          • type:Point
            • 0:13.249641946211753
            • 1:52.442789161201084
          • UniqueID:61
        • type:Feature
        • id:62
          • type:Point
            • 0:13.222630582995233
            • 1:52.45729876074553
          • UniqueID:62
        • type:Feature
        • id:63
          • type:Point
            • 0:13.226401564665185
            • 1:52.459577833861644
          • UniqueID:63
        • type:Feature
        • id:64
          • type:Point
            • 0:13.272723618917116
            • 1:52.42479524595705
          • UniqueID:64
        • type:Feature
        • id:65
          • type:Point
            • 0:13.288288128551615
            • 1:52.41888811083732
          • UniqueID:65
        • type:Feature
        • id:66
          • type:Point
            • 0:13.223540645194658
            • 1:52.43074808490353
          • UniqueID:66
        • type:Feature
        • id:67
          • type:Point
            • 0:13.265355518725842
            • 1:52.4208997495054
          • UniqueID:67
        • type:Feature
        • id:68
          • type:Point
            • 0:13.281341489168359
            • 1:52.41556713903414
          • UniqueID:68
        • type:Feature
        • id:69
          • type:Point
            • 0:13.253677024170074
            • 1:52.463650349056586
          • UniqueID:69
        • type:Feature
        • id:70
          • type:Point
            • 0:13.284795108996594
            • 1:52.44079497899769
          • UniqueID:70
        • type:Feature
        • id:71
          • type:Point
            • 0:13.248352657706556
            • 1:52.459386954278685
          • UniqueID:71
        • type:Feature
        • id:72
          • type:Point
            • 0:13.218051720723661
            • 1:52.47265686303359
          • UniqueID:72
        • type:Feature
        • id:73
          • type:Point
            • 0:13.244749651207764
            • 1:52.43885736527557
          • UniqueID:73
        • type:Feature
        • id:74
          • type:Point
            • 0:13.267726716096348
            • 1:52.45784443490918
          • UniqueID:74
        • type:Feature
        • id:75
          • type:Point
            • 0:13.233049717388287
            • 1:52.450663243586675
          • UniqueID:75
        • type:Feature
        • id:76
          • type:Point
            • 0:13.294837087671315
            • 1:52.468338761857716
          • UniqueID:76
        • type:Feature
        • id:77
          • type:Point
            • 0:13.264781025607808
            • 1:52.45154523469643
          • UniqueID:77
        • type:Feature
        • id:78
          • type:Point
            • 0:13.28862041616525
            • 1:52.45962468201348
          • UniqueID:78
        • type:Feature
        • id:79
          • type:Point
            • 0:13.236320237851158
            • 1:52.42875793126593
          • UniqueID:79
        • type:Feature
        • id:80
          • type:Point
            • 0:13.264414400752381
            • 1:52.45368283386894
          • UniqueID:80
        • type:Feature
        • id:81
          • type:Point
            • 0:13.26190711684006
            • 1:52.47601863323137
          • UniqueID:81
        • type:Feature
        • id:82
          • type:Point
            • 0:13.291774881591746
            • 1:52.47327742320272
          • UniqueID:82
        • type:Feature
        • id:83
          • type:Point
            • 0:13.246791412767426
            • 1:52.46780269704775
          • UniqueID:83
        • type:Feature
        • id:84
          • type:Point
            • 0:13.286316259016676
            • 1:52.43034999429565
          • UniqueID:84
        • type:Feature
        • id:85
          • type:Point
            • 0:13.267482267017533
            • 1:52.4849441495135
          • UniqueID:85
        • type:Feature
        • id:86
          • type:Point
            • 0:13.255445484673933
            • 1:52.471355816109146
          • UniqueID:86
        • type:Feature
        • id:87
          • type:Point
            • 0:13.242599783092421
            • 1:52.48626640966364
          • UniqueID:87
        • type:Feature
        • id:88
          • type:Point
            • 0:13.289269785964473
            • 1:52.45633645724932
          • UniqueID:88
        • type:Feature
        • id:89
          • type:Point
            • 0:13.269698921805585
            • 1:52.42147027267309
          • UniqueID:89
        • type:Feature
        • id:90
          • type:Point
            • 0:13.26661894218637
            • 1:52.48453037050027
          • UniqueID:90
        • type:Feature
        • id:91
          • type:Point
            • 0:13.28200869238311
            • 1:52.44787091182985
          • UniqueID:91
        • type:Feature
        • id:92
          • type:Point
            • 0:13.23266194201351
            • 1:52.47863857234295
          • UniqueID:92
        • type:Feature
        • id:93
          • type:Point
            • 0:13.293507089641286
            • 1:52.46578596255799
          • UniqueID:93
        • type:Feature
        • id:94
          • type:Point
            • 0:13.263779739889186
            • 1:52.460250699563986
          • UniqueID:94
        • type:Feature
        • id:95
          • type:Point
            • 0:13.21358636778903
            • 1:52.42101590461587
          • UniqueID:95
        • type:Feature
        • id:96
          • type:Point
            • 0:13.274979451675684
            • 1:52.450878681950876
          • UniqueID:96
        • type:Feature
        • id:97
          • type:Point
            • 0:13.24411110521694
            • 1:52.441756975031495
          • UniqueID:97
        • type:Feature
        • id:98
          • type:Point
            • 0:13.249256842826048
            • 1:52.4397398460458
          • UniqueID:98
        • type:Feature
        • id:99
          • type:Point
            • 0:13.247028189225238
            • 1:52.430116815048926
          • UniqueID:99
        • type:Feature
        • id:100
          • type:Point
            • 0:13.258477866591065
            • 1:52.4806932542472
          • UniqueID:100
        • type:Feature
        • id:101
          • type:Point
            • 0:13.214106830229959
            • 1:52.48370380869646
          • UniqueID:101
        • type:Feature
        • id:102
          • type:Point
            • 0:13.288926003791769
            • 1:52.47554352835154
          • UniqueID:102
        • type:Feature
        • id:103
          • type:Point
            • 0:13.24866691562276
            • 1:52.482212098009185
          • UniqueID:103
        • type:Feature
        • id:104
          • type:Point
            • 0:13.251384312893784
            • 1:52.43993713311283
          • UniqueID:104
        • type:Feature
        • id:105
          • type:Point
            • 0:13.28979661062667
            • 1:52.428473937934854
          • UniqueID:105
        • type:Feature
        • id:106
          • type:Point
            • 0:13.25276478284714
            • 1:52.46801521671676
          • UniqueID:106
        • type:Feature
        • id:107
          • type:Point
            • 0:13.24429006907862
            • 1:52.4326649124598
          • UniqueID:107
        • type:Feature
        • id:108
          • type:Point
            • 0:13.235730138081315
            • 1:52.43792969196043
          • UniqueID:108
        • type:Feature
        • id:109
          • type:Point
            • 0:13.22435224459252
            • 1:52.4450508818418
          • UniqueID:109
        • type:Feature
        • id:110
          • type:Point
            • 0:13.248257505365315
            • 1:52.4696264459686
          • UniqueID:110
        • type:Feature
        • id:111
          • type:Point
            • 0:13.241795277085085
            • 1:52.444180515999086
          • UniqueID:111
        • type:Feature
        • id:112
          • type:Point
            • 0:13.26117304402238
            • 1:52.42855094506501
          • UniqueID:112
        • type:Feature
        • id:113
          • type:Point
            • 0:13.231954393234288
            • 1:52.486989719595385
          • UniqueID:113
        • type:Feature
        • id:114
          • type:Point
            • 0:13.264287605817644
            • 1:52.46969220115446
          • UniqueID:114
        • type:Feature
        • id:115
          • type:Point
            • 0:13.230668657661177
            • 1:52.43594937282631
          • UniqueID:115
        • type:Feature
        • id:116
          • type:Point
            • 0:13.234690887366593
            • 1:52.42504855341162
          • UniqueID:116
        • type:Feature
        • id:117
          • type:Point
            • 0:13.245043665582738
            • 1:52.44890958498742
          • UniqueID:117
        • type:Feature
        • id:118
          • type:Point
            • 0:13.225461307988835
            • 1:52.45749453864295
          • UniqueID:118
        • type:Feature
        • id:119
          • type:Point
            • 0:13.243093979289156
            • 1:52.47289677204122
          • UniqueID:119
        • type:Feature
        • id:120
          • type:Point
            • 0:13.271958228675516
            • 1:52.48170353050725
          • UniqueID:120
        • type:Feature
        • id:121
          • type:Point
            • 0:13.228747365815611
            • 1:52.48514850080465
          • UniqueID:121
        • type:Feature
        • id:122
          • type:Point
            • 0:13.249242010511402
            • 1:52.4303934542745
          • UniqueID:122
        • type:Feature
        • id:123
          • type:Point
            • 0:13.290205251666752
            • 1:52.473198810183305
          • UniqueID:123
        • type:Feature
        • id:124
          • type:Point
            • 0:13.25124839571897
            • 1:52.43072457637296
          • UniqueID:124
        • type:Feature
        • id:125
          • type:Point
            • 0:13.258223094028212
            • 1:52.41830561344554
          • UniqueID:125
        • type:Feature
        • id:126
          • type:Point
            • 0:13.219077159800575
            • 1:52.45634920261288
          • UniqueID:126
        • type:Feature
        • id:127
          • type:Point
            • 0:13.284458760381517
            • 1:52.43815019256514
          • UniqueID:127
        • type:Feature
        • id:128
          • type:Point
            • 0:13.258723724696225
            • 1:52.447337006048635
          • UniqueID:128
        • type:Feature
        • id:129
          • type:Point
            • 0:13.22135984938494
            • 1:52.47223610364539
          • UniqueID:129
        • type:Feature
        • id:130
          • type:Point
            • 0:13.271773755356545
            • 1:52.430840392952824
          • UniqueID:130
        • type:Feature
        • id:131
          • type:Point
            • 0:13.246794666835909
            • 1:52.42024332296944
          • UniqueID:131
        • type:Feature
        • id:132
          • type:Point
            • 0:13.24214201422414
            • 1:52.44564076296553
          • UniqueID:132
        • type:Feature
        • id:133
          • type:Point
            • 0:13.271899721875062
            • 1:52.467973231512666
          • UniqueID:133
        • type:Feature
        • id:134
          • type:Point
            • 0:13.22525909826294
            • 1:52.42958764282282
          • UniqueID:134
        • type:Feature
        • id:135
          • type:Point
            • 0:13.221250526801493
            • 1:52.46271642141032
          • UniqueID:135
        • type:Feature
        • id:136
          • type:Point
            • 0:13.246776087593169
            • 1:52.460682299690454
          • UniqueID:136
        • type:Feature
        • id:137
          • type:Point
            • 0:13.259611040286043
            • 1:52.44452168660983
          • UniqueID:137
        • type:Feature
        • id:138
          • type:Point
            • 0:13.261243252558208
            • 1:52.4172238375905
          • UniqueID:138
        • type:Feature
        • id:139
          • type:Point
            • 0:13.24162045224869
            • 1:52.475887849321374
          • UniqueID:139
        • type:Feature
        • id:140
          • type:Point
            • 0:13.296029391773622
            • 1:52.41810015003798
          • UniqueID:140
        • type:Feature
        • id:141
          • type:Point
            • 0:13.297163644171313
            • 1:52.48580072691051
          • UniqueID:141
        • type:Feature
        • id:142
          • type:Point
            • 0:13.301286593961365
            • 1:52.43904777757587
          • UniqueID:142
        • type:Feature
        • id:143
          • type:Point
            • 0:13.26783396369147
            • 1:52.43328441749094
          • UniqueID:143
        • type:Feature
        • id:144
          • type:Point
            • 0:13.300649499916439
            • 1:52.469159171364126
          • UniqueID:144
        • type:Feature
        • id:145
          • type:Point
            • 0:13.274738104640274
            • 1:52.46940717124718
          • UniqueID:145
        • type:Feature
        • id:146
          • type:Point
            • 0:13.216599826395068
            • 1:52.42940809412003
          • UniqueID:146
        • type:Feature
        • id:147
          • type:Point
            • 0:13.217559242568935
            • 1:52.4455238343667
          • UniqueID:147
        • type:Feature
        • id:148
          • type:Point
            • 0:13.24170458651036
            • 1:52.45476497387045
          • UniqueID:148
        • type:Feature
        • id:149
          • type:Point
            • 0:13.269432730456078
            • 1:52.47176123449459
          • UniqueID:149
        • type:Feature
        • id:150
          • type:Point
            • 0:13.268745530737124
            • 1:52.44919433053259
          • UniqueID:150
        • type:Feature
        • id:151
          • type:Point
            • 0:13.263928324271241
            • 1:52.462310489975856
          • UniqueID:151
        • type:Feature
        • id:152
          • type:Point
            • 0:13.290921103404038
            • 1:52.459744365103425
          • UniqueID:152
        • type:Feature
        • id:153
          • type:Point
            • 0:13.22633093182166
            • 1:52.48411215332516
          • UniqueID:153
        • type:Feature
        • id:154
          • type:Point
            • 0:13.225438500564234
            • 1:52.44913404649242
          • UniqueID:154
        • type:Feature
        • id:155
          • type:Point
            • 0:13.26082376146241
            • 1:52.46756068552265
          • UniqueID:155
        • type:Feature
        • id:156
          • type:Point
            • 0:13.253040134448888
            • 1:52.44166627433828
          • UniqueID:156
        • type:Feature
        • id:157
          • type:Point
            • 0:13.223847534805294
            • 1:52.47139262556835
          • UniqueID:157
        • type:Feature
        • id:158
          • type:Point
            • 0:13.226353248659338
            • 1:52.42246952917575
          • UniqueID:158
        • type:Feature
        • id:159
          • type:Point
            • 0:13.27309112381138
            • 1:52.475895801504365
          • UniqueID:159
        • type:Feature
        • id:160
          • type:Point
            • 0:13.289876852648119
            • 1:52.43864947758068
          • UniqueID:160
        • type:Feature
        • id:161
          • type:Point
            • 0:13.254129796763365
            • 1:52.458533333009335
          • UniqueID:161
        • type:Feature
        • id:162
          • type:Point
            • 0:13.269998410069828
            • 1:52.41836685167017
          • UniqueID:162
        • type:Feature
        • id:163
          • type:Point
            • 0:13.244799893543407
            • 1:52.46130729009412
          • UniqueID:163
        • type:Feature
        • id:164
          • type:Point
            • 0:13.216491897287925
            • 1:52.47457508869654
          • UniqueID:164
        • type:Feature
        • id:165
          • type:Point
            • 0:13.266519000480733
            • 1:52.42126064346592
          • UniqueID:165
        • type:Feature
        • id:166
          • type:Point
            • 0:13.291869510727997
            • 1:52.426008567704685
          • UniqueID:166
        • type:Feature
        • id:167
          • type:Point
            • 0:13.217123629506125
            • 1:52.44899773023639
          • UniqueID:167
        • type:Feature
        • id:168
          • type:Point
            • 0:13.261081052674099
            • 1:52.44342075946103
          • UniqueID:168
        • type:Feature
        • id:169
          • type:Point
            • 0:13.292213301782915
            • 1:52.47752782831509
          • UniqueID:169
        • type:Feature
        • id:170
          • type:Point
            • 0:13.26602559328254
            • 1:52.455363094039114
          • UniqueID:170
        • type:Feature
        • id:171
          • type:Point
            • 0:13.281844947689228
            • 1:52.47498020782466
          • UniqueID:171
        • type:Feature
        • id:172
          • type:Point
            • 0:13.256503313820152
            • 1:52.45534198628102
          • UniqueID:172
        • type:Feature
        • id:173
          • type:Point
            • 0:13.272477677339143
            • 1:52.465790986100146
          • UniqueID:173
        • type:Feature
        • id:174
          • type:Point
            • 0:13.301302674845331
            • 1:52.417689314115684
          • UniqueID:174
        • type:Feature
        • id:175
          • type:Point
            • 0:13.286246487177127
            • 1:52.4554116679495
          • UniqueID:175
        • type:Feature
        • id:176
          • type:Point
            • 0:13.248826439947532
            • 1:52.45028584092708
          • UniqueID:176
        • type:Feature
        • id:177
          • type:Point
            • 0:13.265714049167894
            • 1:52.42449532625925
          • UniqueID:177
        • type:Feature
        • id:178
          • type:Point
            • 0:13.29041509618843
            • 1:52.43743716184629
          • UniqueID:178
        • type:Feature
        • id:179
          • type:Point
            • 0:13.291146057253147
            • 1:52.47974784283494
          • UniqueID:179
        • type:Feature
        • id:180
          • type:Point
            • 0:13.301799494943214
            • 1:52.424286915652885
          • UniqueID:180
        • type:Feature
        • id:181
          • type:Point
            • 0:13.290896413993876
            • 1:52.44082996546727
          • UniqueID:181
        • type:Feature
        • id:182
          • type:Point
            • 0:13.283691004739815
            • 1:52.48294367983614
          • UniqueID:182
        • type:Feature
        • id:183
          • type:Point
            • 0:13.261537136047712
            • 1:52.460800337090504
          • UniqueID:183
        • type:Feature
        • id:184
          • type:Point
            • 0:13.248136690079056
            • 1:52.43747224099015
          • UniqueID:184
        • type:Feature
        • id:185
          • type:Point
            • 0:13.242761508798294
            • 1:52.45235866598525
          • UniqueID:185
        • type:Feature
        • id:186
          • type:Point
            • 0:13.218489590956791
            • 1:52.47762218685295
          • UniqueID:186
        • type:Feature
        • id:187
          • type:Point
            • 0:13.248215005261107
            • 1:52.46154538387533
          • UniqueID:187
        • type:Feature
        • id:188
          • type:Point
            • 0:13.217272136827583
            • 1:52.47153898328124
          • UniqueID:188
        • type:Feature
        • id:189
          • type:Point
            • 0:13.240762510929297
            • 1:52.433811832251756
          • UniqueID:189
        • type:Feature
        • id:190
          • type:Point
            • 0:13.228798739330887
            • 1:52.452656937337665
          • UniqueID:190
        • type:Feature
        • id:191
          • type:Point
            • 0:13.21503892420394
            • 1:52.44627683411114
          • UniqueID:191
        • type:Feature
        • id:192
          • type:Point
            • 0:13.25969573344858
            • 1:52.457783499365355
          • UniqueID:192
        • type:Feature
        • id:193
          • type:Point
            • 0:13.24058177890539
            • 1:52.47178713933433
          • UniqueID:193
        • type:Feature
        • id:194
          • type:Point
            • 0:13.245680063248551
            • 1:52.42833573983662
          • UniqueID:194
        • type:Feature
        • id:195
          • type:Point
            • 0:13.21942637529237
            • 1:52.42092052237814
          • UniqueID:195
        • type:Feature
        • id:196
          • type:Point
            • 0:13.27775881641925
            • 1:52.45365912407149
          • UniqueID:196
        • type:Feature
        • id:197
          • type:Point
            • 0:13.276963084012385
            • 1:52.42337886031173
          • UniqueID:197
        • type:Feature
        • id:198
          • type:Point
            • 0:13.230480912057331
            • 1:52.42090344807363
          • UniqueID:198
        • type:Feature
        • id:199
          • type:Point
            • 0:13.218539921329704
            • 1:52.48485279556255
          • UniqueID:199
        • type:Feature
        • id:200
          • type:Point
            • 0:13.262180665961434
            • 1:52.428590258644654
          • UniqueID:200
        • type:Feature
        • id:201
          • type:Point
            • 0:13.281552276274049
            • 1:52.46706579583305
          • UniqueID:201
        • type:Feature
        • id:202
          • type:Point
            • 0:13.233927691402835
            • 1:52.4220356721084
          • UniqueID:202
        • type:Feature
        • id:203
          • type:Point
            • 0:13.22868232433886
            • 1:52.46494601297624
          • UniqueID:203
        • type:Feature
        • id:204
          • type:Point
            • 0:13.254432561515465
            • 1:52.46356217092389
          • UniqueID:204
        • type:Feature
        • id:205
          • type:Point
            • 0:13.268446970276175
            • 1:52.48027664936777
          • UniqueID:205
        • type:Feature
        • id:206
          • type:Point
            • 0:13.214540664239722
            • 1:52.4609590804546
          • UniqueID:206
        • type:Feature
        • id:207
          • type:Point
            • 0:13.222540710312973
            • 1:52.481682531104745
          • UniqueID:207
        • type:Feature
        • id:208
          • type:Point
            • 0:13.215450559896077
            • 1:52.425974102077255
          • UniqueID:208
        • type:Feature
        • id:209
          • type:Point
            • 0:13.231321870722525
            • 1:52.474077058627934
          • UniqueID:209
        • type:Feature
        • id:210
          • type:Point
            • 0:13.295701765153314
            • 1:52.475191034142426
          • UniqueID:210
        • type:Feature
        • id:211
          • type:Point
            • 0:13.245172863885275
            • 1:52.458953881025955
          • UniqueID:211
        • type:Feature
        • id:212
          • type:Point
            • 0:13.22332775360182
            • 1:52.42755131414186
          • UniqueID:212
        • type:Feature
        • id:213
          • type:Point
            • 0:13.269544424385417
            • 1:52.419144291497894
          • UniqueID:213
        • type:Feature
        • id:214
          • type:Point
            • 0:13.268651925667324
            • 1:52.41943296077252
          • UniqueID:214
        • type:Feature
        • id:215
          • type:Point
            • 0:13.243384032218678
            • 1:52.48293555135593
          • UniqueID:215
        • type:Feature
        • id:216
          • type:Point
            • 0:13.300789808703865
            • 1:52.463032976445874
          • UniqueID:216
        • type:Feature
        • id:217
          • type:Point
            • 0:13.298910219115006
            • 1:52.44985104312694
          • UniqueID:217
        • type:Feature
        • id:218
          • type:Point
            • 0:13.231967608715898
            • 1:52.455738186359845
          • UniqueID:218
        • type:Feature
        • id:219
          • type:Point
            • 0:13.246469460935685
            • 1:52.48454284830359
          • UniqueID:219
        • type:Feature
        • id:220
          • type:Point
            • 0:13.297016732973454
            • 1:52.46168038289387
          • UniqueID:220
        • type:Feature
        • id:221
          • type:Point
            • 0:13.269821696694628
            • 1:52.463854836644664
          • UniqueID:221
        • type:Feature
        • id:222
          • type:Point
            • 0:13.219555033286989
            • 1:52.43637247046231
          • UniqueID:222
        • type:Feature
        • id:223
          • type:Point
            • 0:13.300797873258697
            • 1:52.439802166624425
          • UniqueID:223
        • type:Feature
        • id:224
          • type:Point
            • 0:13.285846011321484
            • 1:52.43330837120563
          • UniqueID:224
        • type:Feature
        • id:225
          • type:Point
            • 0:13.296238033373493
            • 1:52.428738071933225
          • UniqueID:225
        • type:Feature
        • id:226
          • type:Point
            • 0:13.275573181161265
            • 1:52.45154785241694
          • UniqueID:226
        • type:Feature
        • id:227
          • type:Point
            • 0:13.300882227090492
            • 1:52.48555489063848
          • UniqueID:227
        • type:Feature
        • id:228
          • type:Point
            • 0:13.277874663523463
            • 1:52.46110509833255
          • UniqueID:228
        • type:Feature
        • id:229
          • type:Point
            • 0:13.251751498819079
            • 1:52.4184967360316
          • UniqueID:229
        • type:Feature
        • id:230
          • type:Point
            • 0:13.245962385625054
            • 1:52.44747631105682
          • UniqueID:230
        • type:Feature
        • id:231
          • type:Point
            • 0:13.231746738317524
            • 1:52.476292487478474
          • UniqueID:231
        • type:Feature
        • id:232
          • type:Point
            • 0:13.239562230633789
            • 1:52.44987142100655
          • UniqueID:232
        • type:Feature
        • id:233
          • type:Point
            • 0:13.301791845606477
            • 1:52.41580252194594
          • UniqueID:233
        • type:Feature
        • id:234
          • type:Point
            • 0:13.242282451151977
            • 1:52.43329050021518
          • UniqueID:234
        • type:Feature
        • id:235
          • type:Point
            • 0:13.251597272494921
            • 1:52.42125588952149
          • UniqueID:235
        • type:Feature
        • id:236
          • type:Point
            • 0:13.294927021960495
            • 1:52.43493022411165
          • UniqueID:236
        • type:Feature
        • id:237
          • type:Point
            • 0:13.271024027998612
            • 1:52.4222896316389
          • UniqueID:237
        • type:Feature
        • id:238
          • type:Point
            • 0:13.275243490870631
            • 1:52.44833107632823
          • UniqueID:238
        • type:Feature
        • id:239
          • type:Point
            • 0:13.265191183893283
            • 1:52.42689193367753
          • UniqueID:239
        • type:Feature
        • id:240
          • type:Point
            • 0:13.277129018801883
            • 1:52.46448460763499
          • UniqueID:240
        • type:Feature
        • id:241
          • type:Point
            • 0:13.26541471804485
            • 1:52.415529496963956
          • UniqueID:241
        • type:Feature
        • id:242
          • type:Point
            • 0:13.262678177147954
            • 1:52.434736280424055
          • UniqueID:242
        • type:Feature
        • id:243
          • type:Point
            • 0:13.295837237547355
            • 1:52.46198283963717
          • UniqueID:243
        • type:Feature
        • id:244
          • type:Point
            • 0:13.21423988310261
            • 1:52.416140292808855
          • UniqueID:244
        • type:Feature
        • id:245
          • type:Point
            • 0:13.296889128659675
            • 1:52.4665143206893
          • UniqueID:245
        • type:Feature
        • id:246
          • type:Point
            • 0:13.222046533788507
            • 1:52.48063304140175
          • UniqueID:246
        • type:Feature
        • id:247
          • type:Point
            • 0:13.227669534608227
            • 1:52.478354006757655
          • UniqueID:247
        • type:Feature
        • id:248
          • type:Point
            • 0:13.294226481742797
            • 1:52.423969691146205
          • UniqueID:248
        • type:Feature
        • id:249
          • type:Point
            • 0:13.246942784045643
            • 1:52.46679233915239
          • UniqueID:249
        • type:Feature
        • id:250
          • type:Point
            • 0:13.291592270828485
            • 1:52.45485857409372
          • UniqueID:250
        • type:Feature
        • id:251
          • type:Point
            • 0:13.238387376062297
            • 1:52.44333821834621
          • UniqueID:251
        • type:Feature
        • id:252
          • type:Point
            • 0:13.257500008610855
            • 1:52.48456151714546
          • UniqueID:252
        • type:Feature
        • id:253
          • type:Point
            • 0:13.295771880288621
            • 1:52.430857200109344
          • UniqueID:253
        • type:Feature
        • id:254
          • type:Point
            • 0:13.262535531731501
            • 1:52.466083605575406
          • UniqueID:254
        • type:Feature
        • id:255
          • type:Point
            • 0:13.2621911870844
            • 1:52.45901539028309
          • UniqueID:255
        • type:Feature
        • id:256
          • type:Point
            • 0:13.213922347166378
            • 1:52.431878609797835
          • UniqueID:256
        • type:Feature
        • id:257
          • type:Point
            • 0:13.220759632102158
            • 1:52.48323652236086
          • UniqueID:257
        • type:Feature
        • id:258
          • type:Point
            • 0:13.22979871100784
            • 1:52.422244786044814
          • UniqueID:258
        • type:Feature
        • id:259
          • type:Point
            • 0:13.230136553394628
            • 1:52.421017975055186
          • UniqueID:259
        • type:Feature
        • id:260
          • type:Point
            • 0:13.27593370170415
            • 1:52.416800345918155
          • UniqueID:260
        • type:Feature
        • id:261
          • type:Point
            • 0:13.287358639663028
            • 1:52.481656558620266
          • UniqueID:261
        • type:Feature
        • id:262
          • type:Point
            • 0:13.26728977542845
            • 1:52.427989757616935
          • UniqueID:262
        • type:Feature
        • id:263
          • type:Point
            • 0:13.241842520517476
            • 1:52.4733667751517
          • UniqueID:263
        • type:Feature
        • id:264
          • type:Point
            • 0:13.277073090029761
            • 1:52.419029893939744
          • UniqueID:264
        • type:Feature
        • id:265
          • type:Point
            • 0:13.249284158711486
            • 1:52.48592684772423
          • UniqueID:265
        • type:Feature
        • id:266
          • type:Point
            • 0:13.241681214646265
            • 1:52.43970391140398
          • UniqueID:266
        • type:Feature
        • id:267
          • type:Point
            • 0:13.264551532288218
            • 1:52.478203532146885
          • UniqueID:267
        • type:Feature
        • id:268
          • type:Point
            • 0:13.278398683962248
            • 1:52.480623015460175
          • UniqueID:268
        • type:Feature
        • id:269
          • type:Point
            • 0:13.232998563237283
            • 1:52.42991402209723
          • UniqueID:269
        • type:Feature
        • id:270
          • type:Point
            • 0:13.22001557465628
            • 1:52.42452942137852
          • UniqueID:270
        • type:Feature
        • id:271
          • type:Point
            • 0:13.278150641633916
            • 1:52.44678756050527
          • UniqueID:271
        • type:Feature
        • id:272
          • type:Point
            • 0:13.23822323517554
            • 1:52.47448012026173
          • UniqueID:272
        • type:Feature
        • id:273
          • type:Point
            • 0:13.284326296678348
            • 1:52.422985657464025
          • UniqueID:273
        • type:Feature
        • id:274
          • type:Point
            • 0:13.228711523878241
            • 1:52.442225256933085
          • UniqueID:274
        • type:Feature
        • id:275
          • type:Point
            • 0:13.251679357872275
            • 1:52.43073481523525
          • UniqueID:275
        • type:Feature
        • id:276
          • type:Point
            • 0:13.279635821518317
            • 1:52.46580409785274
          • UniqueID:276
        • type:Feature
        • id:277
          • type:Point
            • 0:13.24796704322899
            • 1:52.44910347924138
          • UniqueID:277
        • type:Feature
        • id:278
          • type:Point
            • 0:13.25914967943924
            • 1:52.454997811925935
          • UniqueID:278
        • type:Feature
        • id:279
          • type:Point
            • 0:13.237637451337456
            • 1:52.452221616015734
          • UniqueID:279
        • type:Feature
        • id:280
          • type:Point
            • 0:13.296207182427379
            • 1:52.481482745402204
          • UniqueID:280
        • type:Feature
        • id:281
          • type:Point
            • 0:13.252292239698056
            • 1:52.48061854835255
          • UniqueID:281
        • type:Feature
        • id:282
          • type:Point
            • 0:13.245090480001142
            • 1:52.437113907591694
          • UniqueID:282
        • type:Feature
        • id:283
          • type:Point
            • 0:13.28050651470785
            • 1:52.470499349482175
          • UniqueID:283
        • type:Feature
        • id:284
          • type:Point
            • 0:13.248762767252577
            • 1:52.44006769606771
          • UniqueID:284
        • type:Feature
        • id:285
          • type:Point
            • 0:13.220703183350912
            • 1:52.44043916700133
          • UniqueID:285
        • type:Feature
        • id:286
          • type:Point
            • 0:13.222041492541047
            • 1:52.4616193379816
          • UniqueID:286
        • type:Feature
        • id:287
          • type:Point
            • 0:13.21777285440773
            • 1:52.45162537121582
          • UniqueID:287
        • type:Feature
        • id:288
          • type:Point
            • 0:13.299894747842982
            • 1:52.44843496184327
          • UniqueID:288
        • type:Feature
        • id:289
          • type:Point
            • 0:13.261313226908317
            • 1:52.43816172302364
          • UniqueID:289
        • type:Feature
        • id:290
          • type:Point
            • 0:13.282439124855626
            • 1:52.427983863473756
          • UniqueID:290
        • type:Feature
        • id:291
          • type:Point
            • 0:13.290222674720676
            • 1:52.47069427015065
          • UniqueID:291
        • type:Feature
        • id:292
          • type:Point
            • 0:13.278517884394113
            • 1:52.47175328977367
          • UniqueID:292
        • type:Feature
        • id:293
          • type:Point
            • 0:13.296085383025114
            • 1:52.458340553525375
          • UniqueID:293
        • type:Feature
        • id:294
          • type:Point
            • 0:13.269496703512024
            • 1:52.42496881072734
          • UniqueID:294
        • type:Feature
        • id:295
          • type:Point
            • 0:13.259670290085158
            • 1:52.44157883796192
          • UniqueID:295
        • type:Feature
        • id:296
          • type:Point
            • 0:13.225090000993028
            • 1:52.449509739941035
          • UniqueID:296
        • type:Feature
        • id:297
          • type:Point
            • 0:13.281489413331483
            • 1:52.43252720277425
          • UniqueID:297
        • type:Feature
        • id:298
          • type:Point
            • 0:13.274043514572156
            • 1:52.44746449336268
          • UniqueID:298
        • type:Feature
        • id:299
          • type:Point
            • 0:13.281973035836304
            • 1:52.47854588783358
          • UniqueID:299
        • type:Feature
        • id:300
          • type:Point
            • 0:13.293651825795276
            • 1:52.48398558269346
          • UniqueID:300
        • type:Feature
        • id:301
          • type:Point
            • 0:13.257712078319459
            • 1:52.42776484885395
          • UniqueID:301
        • type:Feature
        • id:302
          • type:Point
            • 0:13.257932575365123
            • 1:52.417167496568695
          • UniqueID:302
        • type:Feature
        • id:303
          • type:Point
            • 0:13.283770527498657
            • 1:52.436333985729235
          • UniqueID:303
        • type:Feature
        • id:304
          • type:Point
            • 0:13.285831075564042
            • 1:52.46762986903485
          • UniqueID:304
        • type:Feature
        • id:305
          • type:Point
            • 0:13.266918197885504
            • 1:52.433836462307546
          • UniqueID:305
        • type:Feature
        • id:306
          • type:Point
            • 0:13.220565981656565
            • 1:52.48086845139952
          • UniqueID:306
        • type:Feature
        • id:307
          • type:Point
            • 0:13.278348308826324
            • 1:52.47414610020732
          • UniqueID:307
        • type:Feature
        • id:308
          • type:Point
            • 0:13.283653849657817
            • 1:52.44014415452619
          • UniqueID:308
        • type:Feature
        • id:309
          • type:Point
            • 0:13.249142724572543
            • 1:52.463427665972624
          • UniqueID:309
        • type:Feature
        • id:310
          • type:Point
            • 0:13.259618321416456
            • 1:52.42030929907136
          • UniqueID:310
        • type:Feature
        • id:311
          • type:Point
            • 0:13.220214810796719
            • 1:52.480961979679904
          • UniqueID:311
        • type:Feature
        • id:312
          • type:Point
            • 0:13.222590994275041
            • 1:52.445480486361575
          • UniqueID:312
        • type:Feature
        • id:313
          • type:Point
            • 0:13.222244331038091
            • 1:52.421891691569314
          • UniqueID:313
        • type:Feature
        • id:314
          • type:Point
            • 0:13.258131172479214
            • 1:52.470074343410644
          • UniqueID:314
        • type:Feature
        • id:315
          • type:Point
            • 0:13.239734257523152
            • 1:52.434327683336065
          • UniqueID:315
        • type:Feature
        • id:316
          • type:Point
            • 0:13.22076089959016
            • 1:52.486181330745694
          • UniqueID:316
        • type:Feature
        • id:317
          • type:Point
            • 0:13.27914495162586
            • 1:52.44485516007723
          • UniqueID:317
        • type:Feature
        • id:318
          • type:Point
            • 0:13.232086753540784
            • 1:52.441725340117316
          • UniqueID:318
        • type:Feature
        • id:319
          • type:Point
            • 0:13.221456088544558
            • 1:52.445227307740055
          • UniqueID:319
        • type:Feature
        • id:320
          • type:Point
            • 0:13.264445036407114
            • 1:52.41719707107811
          • UniqueID:320
        • type:Feature
        • id:321
          • type:Point
            • 0:13.276287986007391
            • 1:52.480758220995426
          • UniqueID:321
        • type:Feature
        • id:322
          • type:Point
            • 0:13.275599262963528
            • 1:52.46635833773434
          • UniqueID:322
        • type:Feature
        • id:323
          • type:Point
            • 0:13.285862720806502
            • 1:52.42090182127174
          • UniqueID:323
        • type:Feature
        • id:324
          • type:Point
            • 0:13.298874694923038
            • 1:52.42949987417959
          • UniqueID:324
        • type:Feature
        • id:325
          • type:Point
            • 0:13.220015870197745
            • 1:52.43097883611928
          • UniqueID:325
        • type:Feature
        • id:326
          • type:Point
            • 0:13.276270403579272
            • 1:52.48693795697368
          • UniqueID:326
        • type:Feature
        • id:327
          • type:Point
            • 0:13.25017301643846
            • 1:52.47157688780607
          • UniqueID:327
        • type:Feature
        • id:328
          • type:Point
            • 0:13.241399803777952
            • 1:52.45378794859557
          • UniqueID:328
        • type:Feature
        • id:329
          • type:Point
            • 0:13.230410857094173
            • 1:52.47827013262683
          • UniqueID:329
        • type:Feature
        • id:330
          • type:Point
            • 0:13.284824667724035
            • 1:52.48629916860262
          • UniqueID:330
        • type:Feature
        • id:331
          • type:Point
            • 0:13.254773577712033
            • 1:52.482919502247825
          • UniqueID:331
        • type:Feature
        • id:332
          • type:Point
            • 0:13.240166641889955
            • 1:52.437484895752696
          • UniqueID:332
        • type:Feature
        • id:333
          • type:Point
            • 0:13.265500632312467
            • 1:52.456972367405555
          • UniqueID:333
        • type:Feature
        • id:334
          • type:Point
            • 0:13.233175163997238
            • 1:52.42837809520847
          • UniqueID:334
        • type:Feature
        • id:335
          • type:Point
            • 0:13.240548308875782
            • 1:52.451822296690565
          • UniqueID:335
        • type:Feature
        • id:336
          • type:Point
            • 0:13.26320962424197
            • 1:52.447878877512636
          • UniqueID:336
        • type:Feature
        • id:337
          • type:Point
            • 0:13.251777512753188
            • 1:52.45024067561638
          • UniqueID:337
        • type:Feature
        • id:338
          • type:Point
            • 0:13.247091709009243
            • 1:52.4645408240127
          • UniqueID:338
        • type:Feature
        • id:339
          • type:Point
            • 0:13.24328833599773
            • 1:52.471686803682935
          • UniqueID:339
        • type:Feature
        • id:340
          • type:Point
            • 0:13.300123179658952
            • 1:52.43550474508012
          • UniqueID:340
        • type:Feature
        • id:341
          • type:Point
            • 0:13.290880074448031
            • 1:52.416817104107686
          • UniqueID:341
        • type:Feature
        • id:342
          • type:Point
            • 0:13.231432730330472
            • 1:52.449412314593715
          • UniqueID:342
        • type:Feature
        • id:343
          • type:Point
            • 0:13.234939838014759
            • 1:52.48664819845421
          • UniqueID:343
        • type:Feature
        • id:344
          • type:Point
            • 0:13.241926755905059
            • 1:52.478581152306226
          • UniqueID:344
        • type:Feature
        • id:345
          • type:Point
            • 0:13.233102675905274
            • 1:52.47521241550333
          • UniqueID:345
        • type:Feature
        • id:346
          • type:Point
            • 0:13.248574149809931
            • 1:52.47047062622022
          • UniqueID:346
        • type:Feature
        • id:347
          • type:Point
            • 0:13.270549419571726
            • 1:52.47682306657489
          • UniqueID:347
        • type:Feature
        • id:348
          • type:Point
            • 0:13.225269625284804
            • 1:52.48588729180765
          • UniqueID:348
        • type:Feature
        • id:349
          • type:Point
            • 0:13.25882110683756
            • 1:52.43023037280202
          • UniqueID:349
        • type:Feature
        • id:350
          • type:Point
            • 0:13.22391062594632
            • 1:52.47848400110125
          • UniqueID:350
        • type:Feature
        • id:351
          • type:Point
            • 0:13.252380489753847
            • 1:52.42287988966615
          • UniqueID:351
        • type:Feature
        • id:352
          • type:Point
            • 0:13.236618615574226
            • 1:52.43754159587196
          • UniqueID:352
        • type:Feature
        • id:353
          • type:Point
            • 0:13.22565617651735
            • 1:52.44015595282518
          • UniqueID:353
        • type:Feature
        • id:354
          • type:Point
            • 0:13.29380781584866
            • 1:52.48645934145851
          • UniqueID:354
        • type:Feature
        • id:355
          • type:Point
            • 0:13.240796632714892
            • 1:52.47951160854687
          • UniqueID:355
        • type:Feature
        • id:356
          • type:Point
            • 0:13.234198147082466
            • 1:52.45867742820872
          • UniqueID:356
        • type:Feature
        • id:357
          • type:Point
            • 0:13.237794908651157
            • 1:52.415475509812836
          • UniqueID:357
        • type:Feature
        • id:358
          • type:Point
            • 0:13.273092735208166
            • 1:52.4528194353269
          • UniqueID:358
        • type:Feature
        • id:359
          • type:Point
            • 0:13.219693264923489
            • 1:52.446152499574616
          • UniqueID:359
        • type:Feature
        • id:360
          • type:Point
            • 0:13.273742923737798
            • 1:52.45571131602714
          • UniqueID:360
        • type:Feature
        • id:361
          • type:Point
            • 0:13.297594918380696
            • 1:52.42651278155204
          • UniqueID:361
        • type:Feature
        • id:362
          • type:Point
            • 0:13.292735803734665
            • 1:52.41683633536106
          • UniqueID:362
        • type:Feature
        • id:363
          • type:Point
            • 0:13.245681684881777
            • 1:52.43185987071185
          • UniqueID:363
        • type:Feature
        • id:364
          • type:Point
            • 0:13.299893073992138
            • 1:52.4270436517332
          • UniqueID:364
        • type:Feature
        • id:365
          • type:Point
            • 0:13.21583468040811
            • 1:52.43736753013651
          • UniqueID:365
        • type:Feature
        • id:366
          • type:Point
            • 0:13.281449501787872
            • 1:52.463329419210915
          • UniqueID:366
        • type:Feature
        • id:367
          • type:Point
            • 0:13.264699911258782
            • 1:52.472716415447096
          • UniqueID:367
        • type:Feature
        • id:368
          • type:Point
            • 0:13.235569288321253
            • 1:52.47999793214638
          • UniqueID:368
        • type:Feature
        • id:369
          • type:Point
            • 0:13.25994459846818
            • 1:52.43060014876033
          • UniqueID:369
        • type:Feature
        • id:370
          • type:Point
            • 0:13.296845643464136
            • 1:52.485457929074805
          • UniqueID:370
        • type:Feature
        • id:371
          • type:Point
            • 0:13.253844581365263
            • 1:52.42724853153982
          • UniqueID:371
        • type:Feature
        • id:372
          • type:Point
            • 0:13.25849148415415
            • 1:52.43438943554978
          • UniqueID:372
        • type:Feature
        • id:373
          • type:Point
            • 0:13.269880832613506
            • 1:52.45891778244387
          • UniqueID:373
        • type:Feature
        • id:374
          • type:Point
            • 0:13.217396217134946
            • 1:52.41560121154103
          • UniqueID:374
        • type:Feature
        • id:375
          • type:Point
            • 0:13.240613362760595
            • 1:52.443322880137444
          • UniqueID:375
        • type:Feature
        • id:376
          • type:Point
            • 0:13.21499413071715
            • 1:52.42480640199133
          • UniqueID:376
        • type:Feature
        • id:377
          • type:Point
            • 0:13.294495942858946
            • 1:52.47366195509944
          • UniqueID:377
        • type:Feature
        • id:378
          • type:Point
            • 0:13.27250438013074
            • 1:52.44771212371586
          • UniqueID:378
        • type:Feature
        • id:379
          • type:Point
            • 0:13.288097061737684
            • 1:52.486495653198645
          • UniqueID:379
        • type:Feature
        • id:380
          • type:Point
            • 0:13.300248786858784
            • 1:52.45060475757943
          • UniqueID:380
        • type:Feature
        • id:381
          • type:Point
            • 0:13.300085467029596
            • 1:52.4356987090441
          • UniqueID:381
        • type:Feature
        • id:382
          • type:Point
            • 0:13.277087258325338
            • 1:52.4558336982779
          • UniqueID:382
        • type:Feature
        • id:383
          • type:Point
            • 0:13.248348410682189
            • 1:52.48188107276278
          • UniqueID:383
        • type:Feature
        • id:384
          • type:Point
            • 0:13.242876150142314
            • 1:52.48451920291796
          • UniqueID:384
        • type:Feature
        • id:385
          • type:Point
            • 0:13.221329470624818
            • 1:52.48427554341973
          • UniqueID:385
        • type:Feature
        • id:386
          • type:Point
            • 0:13.267575191995046
            • 1:52.46466230960718
          • UniqueID:386
        • type:Feature
        • id:387
          • type:Point
            • 0:13.271420358096993
            • 1:52.42036966256
          • UniqueID:387
        • type:Feature
        • id:388
          • type:Point
            • 0:13.2217493416763
            • 1:52.48490929310837
          • UniqueID:388
        • type:Feature
        • id:389
          • type:Point
            • 0:13.261163739525864
            • 1:52.45447361104989
          • UniqueID:389
        • type:Feature
        • id:390
          • type:Point
            • 0:13.216152655005509
            • 1:52.476424929783974
          • UniqueID:390
        • type:Feature
        • id:391
          • type:Point
            • 0:13.255563774808198
            • 1:52.47629552320813
          • UniqueID:391
        • type:Feature
        • id:392
          • type:Point
            • 0:13.215195035474276
            • 1:52.45997258479641
          • UniqueID:392
        • type:Feature
        • id:393
          • type:Point
            • 0:13.258847550463152
            • 1:52.46243928409022
          • UniqueID:393
        • type:Feature
        • id:394
          • type:Point
            • 0:13.29647936685597
            • 1:52.43173874849211
          • UniqueID:394
        • type:Feature
        • id:395
          • type:Point
            • 0:13.265035494227282
            • 1:52.48705338947319
          • UniqueID:395
        • type:Feature
        • id:396
          • type:Point
            • 0:13.29965979180538
            • 1:52.46732773438713
          • UniqueID:396
        • type:Feature
        • id:397
          • type:Point
            • 0:13.257122685490351
            • 1:52.469356846703555
          • UniqueID:397
        • type:Feature
        • id:398
          • type:Point
            • 0:13.260237329516105
            • 1:52.47469569426413
          • UniqueID:398
        • type:Feature
        • id:399
          • type:Point
            • 0:13.222481133873167
            • 1:52.47775954349078
          • UniqueID:399
        • type:Feature
        • id:400
          • type:Point
            • 0:13.230510833798627
            • 1:52.487168540550165
          • UniqueID:400
        • type:Feature
        • id:401
          • type:Point
            • 0:13.25399263209734
            • 1:52.42826010369439
          • UniqueID:401
        • type:Feature
        • id:402
          • type:Point
            • 0:13.228697890422037
            • 1:52.46737846237621
          • UniqueID:402
        • type:Feature
        • id:403
          • type:Point
            • 0:13.265925685560262
            • 1:52.44794002723319
          • UniqueID:403
        • type:Feature
        • id:404
          • type:Point
            • 0:13.226584125784182
            • 1:52.45204158420397
          • UniqueID:404
        • type:Feature
        • id:405
          • type:Point
            • 0:13.26226733983349
            • 1:52.46404800080996
          • UniqueID:405
        • type:Feature
        • id:406
          • type:Point
            • 0:13.245839621458426
            • 1:52.43623391110537
          • UniqueID:406
        • type:Feature
        • id:407
          • type:Point
            • 0:13.246928805905291
            • 1:52.45577498668352
          • UniqueID:407
        • type:Feature
        • id:408
          • type:Point
            • 0:13.248368277050648
            • 1:52.44440487701372
          • UniqueID:408
        • type:Feature
        • id:409
          • type:Point
            • 0:13.289049804502223
            • 1:52.42602128970326
          • UniqueID:409
        • type:Feature
        • id:410
          • type:Point
            • 0:13.300164506404345
            • 1:52.42693320201276
          • UniqueID:410
        • type:Feature
        • id:411
          • type:Point
            • 0:13.263804352347236
            • 1:52.462303729308516
          • UniqueID:411
        • type:Feature
        • id:412
          • type:Point
            • 0:13.28472417412147
            • 1:52.4394399659374
          • UniqueID:412
        • type:Feature
        • id:413
          • type:Point
            • 0:13.295307412756804
            • 1:52.476949158475215
          • UniqueID:413
        • type:Feature
        • id:414
          • type:Point
            • 0:13.279966532501902
            • 1:52.45490960377277
          • UniqueID:414
        • type:Feature
        • id:415
          • type:Point
            • 0:13.279880877582459
            • 1:52.48291485719573
          • UniqueID:415
        • type:Feature
        • id:416
          • type:Point
            • 0:13.259482218797373
            • 1:52.425286927793486
          • UniqueID:416
        • type:Feature
        • id:417
          • type:Point
            • 0:13.290526109954572
            • 1:52.469451964306714
          • UniqueID:417
        • type:Feature
        • id:418
          • type:Point
            • 0:13.277218829496702
            • 1:52.43181525268301
          • UniqueID:418
        • type:Feature
        • id:419
          • type:Point
            • 0:13.237517817405669
            • 1:52.479560751584366
          • UniqueID:419
        • type:Feature
        • id:420
          • type:Point
            • 0:13.285528878401117
            • 1:52.47514752237532
          • UniqueID:420
        • type:Feature
        • id:421
          • type:Point
            • 0:13.249526406460706
            • 1:52.46239315586782
          • UniqueID:421
        • type:Feature
        • id:422
          • type:Point
            • 0:13.268472657063372
            • 1:52.42523023652585
          • UniqueID:422
        • type:Feature
        • id:423
          • type:Point
            • 0:13.274272318508022
            • 1:52.45317686000879
          • UniqueID:423
        • type:Feature
        • id:424
          • type:Point
            • 0:13.24279176299149
            • 1:52.440261057301996
          • UniqueID:424
        • type:Feature
        • id:425
          • type:Point
            • 0:13.264817440987686
            • 1:52.46507985882095
          • UniqueID:425
        • type:Feature
        • id:426
          • type:Point
            • 0:13.214942478859333
            • 1:52.43163371408844
          • UniqueID:426
        • type:Feature
        • id:427
          • type:Point
            • 0:13.232509029957958
            • 1:52.419045984774066
          • UniqueID:427
        • type:Feature
        • id:428
          • type:Point
            • 0:13.286181782561412
            • 1:52.41736181409005
          • UniqueID:428
        • type:Feature
        • id:429
          • type:Point
            • 0:13.221177364984623
            • 1:52.4424851226645
          • UniqueID:429
        • type:Feature
        • id:430
          • type:Point
            • 0:13.290090718089198
            • 1:52.438086370578354
          • UniqueID:430
        • type:Feature
        • id:431
          • type:Point
            • 0:13.21483604807818
            • 1:52.46155094365709
          • UniqueID:431
        • type:Feature
        • id:432
          • type:Point
            • 0:13.264047892566175
            • 1:52.470139833670515
          • UniqueID:432
        • type:Feature
        • id:433
          • type:Point
            • 0:13.231827681282514
            • 1:52.434896199626046
          • UniqueID:433
        • type:Feature
        • id:434
          • type:Point
            • 0:13.286408897166575
            • 1:52.42350353153817
          • UniqueID:434
        • type:Feature
        • id:435
          • type:Point
            • 0:13.271750703400297
            • 1:52.48101037734986
          • UniqueID:435
        • type:Feature
        • id:436
          • type:Point
            • 0:13.247409669673663
            • 1:52.47165780213503
          • UniqueID:436
        • type:Feature
        • id:437
          • type:Point
            • 0:13.230493550940277
            • 1:52.42747868023453
          • UniqueID:437
        • type:Feature
        • id:438
          • type:Point
            • 0:13.216895646043072
            • 1:52.47614169834507
          • UniqueID:438
        • type:Feature
        • id:439
          • type:Point
            • 0:13.25310536351076
            • 1:52.429459019078365
          • UniqueID:439
        • type:Feature
        • id:440
          • type:Point
            • 0:13.220142563854541
            • 1:52.429635382025694
          • UniqueID:440
        • type:Feature
        • id:441
          • type:Point
            • 0:13.275424357745484
            • 1:52.48714095019839
          • UniqueID:441
        • type:Feature
        • id:442
          • type:Point
            • 0:13.29579454130938
            • 1:52.46948574662583
          • UniqueID:442
        • type:Feature
        • id:443
          • type:Point
            • 0:13.218751406248995
            • 1:52.44850685699119
          • UniqueID:443
        • type:Feature
        • id:444
          • type:Point
            • 0:13.2427937557973
            • 1:52.47314930198239
          • UniqueID:444
        • type:Feature
        • id:445
          • type:Point
            • 0:13.26267588742763
            • 1:52.48362670363623
          • UniqueID:445
        • type:Feature
        • id:446
          • type:Point
            • 0:13.248126363916176
            • 1:52.47631965999307
          • UniqueID:446
        • type:Feature
        • id:447
          • type:Point
            • 0:13.218059112365388
            • 1:52.42660206024217
          • UniqueID:447
        • type:Feature
        • id:448
          • type:Point
            • 0:13.297477275337508
            • 1:52.432695742012804
          • UniqueID:448
        • type:Feature
        • id:449
          • type:Point
            • 0:13.270724990239108
            • 1:52.4346601600727
          • UniqueID:449
        • type:Feature
        • id:450
          • type:Point
            • 0:13.269084639078832
            • 1:52.421872699134184
          • UniqueID:450
        • type:Feature
        • id:451
          • type:Point
            • 0:13.263551026646589
            • 1:52.4788575105307
          • UniqueID:451
        • type:Feature
        • id:452
          • type:Point
            • 0:13.249953809712448
            • 1:52.42696394664959
          • UniqueID:452
        • type:Feature
        • id:453
          • type:Point
            • 0:13.218844355270182
            • 1:52.43007579576148
          • UniqueID:453
        • type:Feature
        • id:454
          • type:Point
            • 0:13.289703297972983
            • 1:52.42405300626538
          • UniqueID:454
        • type:Feature
        • id:455
          • type:Point
            • 0:13.249994907775756
            • 1:52.43920184668
          • UniqueID:455
        • type:Feature
        • id:456
          • type:Point
            • 0:13.238747500087792
            • 1:52.47149858241757
          • UniqueID:456
        • type:Feature
        • id:457
          • type:Point
            • 0:13.229099100518763
            • 1:52.46295118297827
          • UniqueID:457
        • type:Feature
        • id:458
          • type:Point
            • 0:13.286963585361704
            • 1:52.45386657228142
          • UniqueID:458
        • type:Feature
        • id:459
          • type:Point
            • 0:13.253212714303459
            • 1:52.48259836843222
          • UniqueID:459
        • type:Feature
        • id:460
          • type:Point
            • 0:13.268311669474938
            • 1:52.479680193926576
          • UniqueID:460
        • type:Feature
        • id:461
          • type:Point
            • 0:13.280710404234231
            • 1:52.47277602230847
          • UniqueID:461
        • type:Feature
        • id:462
          • type:Point
            • 0:13.27907716618163
            • 1:52.44113502949824
          • UniqueID:462
        • type:Feature
        • id:463
          • type:Point
            • 0:13.272241493982577
            • 1:52.48517173403665
          • UniqueID:463
        • type:Feature
        • id:464
          • type:Point
            • 0:13.214688512545438
            • 1:52.441343442469936
          • UniqueID:464
        • type:Feature
        • id:465
          • type:Point
            • 0:13.232485593781142
            • 1:52.47646420719046
          • UniqueID:465
        • type:Feature
        • id:466
          • type:Point
            • 0:13.234374018925884
            • 1:52.46442352857107
          • UniqueID:466
        • type:Feature
        • id:467
          • type:Point
            • 0:13.244562100966224
            • 1:52.48251000968606
          • UniqueID:467
        • type:Feature
        • id:468
          • type:Point
            • 0:13.270157796923813
            • 1:52.47139695143178
          • UniqueID:468
        • type:Feature
        • id:469
          • type:Point
            • 0:13.301368013568728
            • 1:52.424144713971394
          • UniqueID:469
        • type:Feature
        • id:470
          • type:Point
            • 0:13.29411445237907
            • 1:52.45258608275477
          • UniqueID:470
        • type:Feature
        • id:471
          • type:Point
            • 0:13.26418791691317
            • 1:52.460759185302436
          • UniqueID:471
        • type:Feature
        • id:472
          • type:Point
            • 0:13.277786247457545
            • 1:52.4868346838888
          • UniqueID:472
        • type:Feature
        • id:473
          • type:Point
            • 0:13.265276498097514
            • 1:52.42939921856406
          • UniqueID:473
        • type:Feature
        • id:474
          • type:Point
            • 0:13.21559159603809
            • 1:52.47148222171909
          • UniqueID:474
        • type:Feature
        • id:475
          • type:Point
            • 0:13.276988741814545
            • 1:52.46547512001254
          • UniqueID:475
        • type:Feature
        • id:476
          • type:Point
            • 0:13.27861766521718
            • 1:52.4575964579079
          • UniqueID:476
        • type:Feature
        • id:477
          • type:Point
            • 0:13.289866282806694
            • 1:52.42555656615018
          • UniqueID:477
        • type:Feature
        • id:478
          • type:Point
            • 0:13.218346027180852
            • 1:52.424085409444324
          • UniqueID:478
        • type:Feature
        • id:479
          • type:Point
            • 0:13.232166064172615
            • 1:52.43706477911552
          • UniqueID:479
        • type:Feature
        • id:480
          • type:Point
            • 0:13.229802456124867
            • 1:52.42810616959369
          • UniqueID:480
        • type:Feature
        • id:481
          • type:Point
            • 0:13.27052726230829
            • 1:52.472650513513095
          • UniqueID:481
        • type:Feature
        • id:482
          • type:Point
            • 0:13.295039631110395
            • 1:52.45901239020384
          • UniqueID:482
        • type:Feature
        • id:483
          • type:Point
            • 0:13.256138194044864
            • 1:52.45046413459896
          • UniqueID:483
        • type:Feature
        • id:484
          • type:Point
            • 0:13.231357355390255
            • 1:52.44195379956379
          • UniqueID:484
        • type:Feature
        • id:485
          • type:Point
            • 0:13.2177653924082
            • 1:52.47916977422835
          • UniqueID:485
        • type:Feature
        • id:486
          • type:Point
            • 0:13.284244285738357
            • 1:52.439868587069256
          • UniqueID:486
        • type:Feature
        • id:487
          • type:Point
            • 0:13.268749524672675
            • 1:52.444665188563214
          • UniqueID:487
        • type:Feature
        • id:488
          • type:Point
            • 0:13.255861331158926
            • 1:52.44763378830319
          • UniqueID:488
        • type:Feature
        • id:489
          • type:Point
            • 0:13.226787414497116
            • 1:52.46284637354913
          • UniqueID:489
        • type:Feature
        • id:490
          • type:Point
            • 0:13.281680204622948
            • 1:52.43063207840228
          • UniqueID:490
        • type:Feature
        • id:491
          • type:Point
            • 0:13.22606281117907
            • 1:52.453371452136466
          • UniqueID:491
        • type:Feature
        • id:492
          • type:Point
            • 0:13.255118854705605
            • 1:52.4470562814859
          • UniqueID:492
        • type:Feature
        • id:493
          • type:Point
            • 0:13.258245349317601
            • 1:52.43619984101741
          • UniqueID:493
        • type:Feature
        • id:494
          • type:Point
            • 0:13.282635393053958
            • 1:52.443111307742186
          • UniqueID:494
        • type:Feature
        • id:495
          • type:Point
            • 0:13.265762746425326
            • 1:52.4370365763138
          • UniqueID:495
        • type:Feature
        • id:496
          • type:Point
            • 0:13.231158692592695
            • 1:52.42475994162603
          • UniqueID:496
        • type:Feature
        • id:497
          • type:Point
            • 0:13.23197880022808
            • 1:52.450214975031784
          • UniqueID:497
        • type:Feature
        • id:498
          • type:Point
            • 0:13.274353835027416
            • 1:52.4838718379099
          • UniqueID:498
        • type:Feature
        • id:499
          • type:Point
            • 0:13.228929516749314
            • 1:52.450319556013234
          • UniqueID:499
        • type:Feature
        • id:500
          • type:Point
            • 0:13.27016287738982
            • 1:52.46035319816699
          • UniqueID:500
        • type:Feature
        • id:501
          • type:Point
            • 0:13.247126920264813
            • 1:52.428022963660986
          • UniqueID:501
        • type:Feature
        • id:502
          • type:Point
            • 0:13.276235105602195
            • 1:52.43880129947004
          • UniqueID:502
        • type:Feature
        • id:503
          • type:Point
            • 0:13.296479154519346
            • 1:52.47881788720049
          • UniqueID:503
        • type:Feature
        • id:504
          • type:Point
            • 0:13.273296442431466
            • 1:52.47610824536879
          • UniqueID:504
        • type:Feature
        • id:505
          • type:Point
            • 0:13.224356150149529
            • 1:52.4426665991825
          • UniqueID:505
        • type:Feature
        • id:506
          • type:Point
            • 0:13.273975947045463
            • 1:52.485790158994504
          • UniqueID:506
        • type:Feature
        • id:507
          • type:Point
            • 0:13.227132617162958
            • 1:52.4413347767796
          • UniqueID:507
        • type:Feature
        • id:508
          • type:Point
            • 0:13.235722460534587
            • 1:52.442752039210994
          • UniqueID:508
        • type:Feature
        • id:509
          • type:Point
            • 0:13.234187160056413
            • 1:52.462786396834076
          • UniqueID:509
        • type:Feature
        • id:510
          • type:Point
            • 0:13.277699737639598
            • 1:52.43308986676633
          • UniqueID:510
        • type:Feature
        • id:511
          • type:Point
            • 0:13.259876420387988
            • 1:52.444177949714536
          • UniqueID:511
        • type:Feature
        • id:512
          • type:Point
            • 0:13.284706571836843
            • 1:52.46965205566962
          • UniqueID:512
        • type:Feature
        • id:513
          • type:Point
            • 0:13.266316422555047
            • 1:52.44792669762299
          • UniqueID:513
        • type:Feature
        • id:514
          • type:Point
            • 0:13.220548024621571
            • 1:52.46252907428572
          • UniqueID:514
        • type:Feature
        • id:515
          • type:Point
            • 0:13.219935747506442
            • 1:52.45821264449915
          • UniqueID:515
        • type:Feature
        • id:516
          • type:Point
            • 0:13.277047717912664
            • 1:52.44405859394231
          • UniqueID:516
        • type:Feature
        • id:517
          • type:Point
            • 0:13.235142145042872
            • 1:52.46767284133659
          • UniqueID:517
        • type:Feature
        • id:518
          • type:Point
            • 0:13.301318251220913
            • 1:52.47853284734284
          • UniqueID:518
        • type:Feature
        • id:519
          • type:Point
            • 0:13.237415040199867
            • 1:52.46138138840442
          • UniqueID:519
        • type:Feature
        • id:520
          • type:Point
            • 0:13.271761482962416
            • 1:52.48321461090066
          • UniqueID:520
        • type:Feature
        • id:521
          • type:Point
            • 0:13.236082888594359
            • 1:52.48591930012619
          • UniqueID:521
        • type:Feature
        • id:522
          • type:Point
            • 0:13.217556788047942
            • 1:52.44576104482465
          • UniqueID:522
        • type:Feature
        • id:523
          • type:Point
            • 0:13.285460379982593
            • 1:52.48583974211401
          • UniqueID:523
        • type:Feature
        • id:524
          • type:Point
            • 0:13.287547215272095
            • 1:52.41839850294874
          • UniqueID:524
        • type:Feature
        • id:525
          • type:Point
            • 0:13.26514290779494
            • 1:52.48390997196127
          • UniqueID:525
        • type:Feature
        • id:526
          • type:Point
            • 0:13.220962011175605
            • 1:52.44155354041249
          • UniqueID:526
        • type:Feature
        • id:527
          • type:Point
            • 0:13.275740631958694
            • 1:52.47758721157182
          • UniqueID:527
        • type:Feature
        • id:528
          • type:Point
            • 0:13.248594590858822
            • 1:52.45130225394244
          • UniqueID:528
        • type:Feature
        • id:529
          • type:Point
            • 0:13.232668146817996
            • 1:52.48063525372835
          • UniqueID:529
        • type:Feature
        • id:530
          • type:Point
            • 0:13.240606859352733
            • 1:52.451985165115126
          • UniqueID:530
        • type:Feature
        • id:531
          • type:Point
            • 0:13.243387262422628
            • 1:52.41718157793521
          • UniqueID:531
        • type:Feature
        • id:532
          • type:Point
            • 0:13.249324063079067
            • 1:52.4686126648877
          • UniqueID:532
        • type:Feature
        • id:533
          • type:Point
            • 0:13.228920665952225
            • 1:52.42971733033528
          • UniqueID:533
        • type:Feature
        • id:534
          • type:Point
            • 0:13.219349310335506
            • 1:52.46681761787895
          • UniqueID:534
        • type:Feature
        • id:535
          • type:Point
            • 0:13.252604308253188
            • 1:52.46801929035891
          • UniqueID:535
        • type:Feature
        • id:536
          • type:Point
            • 0:13.248375892768632
            • 1:52.477145312369174
          • UniqueID:536
        • type:Feature
        • id:537
          • type:Point
            • 0:13.230208757285556
            • 1:52.46680165840896
          • UniqueID:537
        • type:Feature
        • id:538
          • type:Point
            • 0:13.289541975467515
            • 1:52.47606320432372
          • UniqueID:538
        • type:Feature
        • id:539
          • type:Point
            • 0:13.292900670089924
            • 1:52.43719596553806
          • UniqueID:539
        • type:Feature
        • id:540
          • type:Point
            • 0:13.296699210530178
            • 1:52.465931898368794
          • UniqueID:540
        • type:Feature
        • id:541
          • type:Point
            • 0:13.296174766477684
            • 1:52.41672267370751
          • UniqueID:541
        • type:Feature
        • id:542
          • type:Point
            • 0:13.267203305378729
            • 1:52.48616173457592
          • UniqueID:542
        • type:Feature
        • id:543
          • type:Point
            • 0:13.286597738920722
            • 1:52.45582366660204
          • UniqueID:543
        • type:Feature
        • id:544
          • type:Point
            • 0:13.214876912198454
            • 1:52.44489749387608
          • UniqueID:544
        • type:Feature
        • id:545
          • type:Point
            • 0:13.232735730571402
            • 1:52.439053066368345
          • UniqueID:545
        • type:Feature
        • id:546
          • type:Point
            • 0:13.259474591187127
            • 1:52.42674192193111
          • UniqueID:546
        • type:Feature
        • id:547
          • type:Point
            • 0:13.294298566176277
            • 1:52.453506947808904
          • UniqueID:547
        • type:Feature
        • id:548
          • type:Point
            • 0:13.270446085251711
            • 1:52.454049200366505
          • UniqueID:548
        • type:Feature
        • id:549
          • type:Point
            • 0:13.23287620139222
            • 1:52.478244084993406
          • UniqueID:549
        • type:Feature
        • id:550
          • type:Point
            • 0:13.230440679206671
            • 1:52.415950422115024
          • UniqueID:550
        • type:Feature
        • id:551
          • type:Point
            • 0:13.301564893037522
            • 1:52.42986360270105
          • UniqueID:551
        • type:Feature
        • id:552
          • type:Point
            • 0:13.220677635089308
            • 1:52.46856509844755
          • UniqueID:552
        • type:Feature
        • id:553
          • type:Point
            • 0:13.29837899040118
            • 1:52.426071436951595
          • UniqueID:553
        • type:Feature
        • id:554
          • type:Point
            • 0:13.3005870633936
            • 1:52.44796967038616
          • UniqueID:554
        • type:Feature
        • id:555
          • type:Point
            • 0:13.29509421225712
            • 1:52.454613161182685
          • UniqueID:555
        • type:Feature
        • id:556
          • type:Point
            • 0:13.236712354291456
            • 1:52.42437300483909
          • UniqueID:556
        • type:Feature
        • id:557
          • type:Point
            • 0:13.297796325986603
            • 1:52.4777939235046
          • UniqueID:557
        • type:Feature
        • id:558
          • type:Point
            • 0:13.28716866485952
            • 1:52.47014761094493
          • UniqueID:558
        • type:Feature
        • id:559
          • type:Point
            • 0:13.297212858520272
            • 1:52.438183370726875
          • UniqueID:559
        • type:Feature
        • id:560
          • type:Point
            • 0:13.290799489106599
            • 1:52.47233329938497
          • UniqueID:560
        • type:Feature
        • id:561
          • type:Point
            • 0:13.249076335501952
            • 1:52.429017151793566
          • UniqueID:561
        • type:Feature
        • id:562
          • type:Point
            • 0:13.300409853740582
            • 1:52.431962515191444
          • UniqueID:562
        • type:Feature
        • id:563
          • type:Point
            • 0:13.250587941503394
            • 1:52.44894023765
          • UniqueID:563
        • type:Feature
        • id:564
          • type:Point
            • 0:13.251209340812208
            • 1:52.465676998525936
          • UniqueID:564
        • type:Feature
        • id:565
          • type:Point
            • 0:13.253500845179717
            • 1:52.45193475878868
          • UniqueID:565
        • type:Feature
        • id:566
          • type:Point
            • 0:13.29108664967083
            • 1:52.46575901063168
          • UniqueID:566
        • type:Feature
        • id:567
          • type:Point
            • 0:13.294931752516502
            • 1:52.46074284967759
          • UniqueID:567
        • type:Feature
        • id:568
          • type:Point
            • 0:13.27989437589099
            • 1:52.48558446592365
          • UniqueID:568
        • type:Feature
        • id:569
          • type:Point
            • 0:13.241790191610693
            • 1:52.425710843553176
          • UniqueID:569
        • type:Feature
        • id:570
          • type:Point
            • 0:13.274043832402727
            • 1:52.41662814562383
          • UniqueID:570
        • type:Feature
        • id:571
          • type:Point
            • 0:13.277307348764698
            • 1:52.48361407942279
          • UniqueID:571
        • type:Feature
        • id:572
          • type:Point
            • 0:13.23056321572837
            • 1:52.469008633877515
          • UniqueID:572
        • type:Feature
        • id:573
          • type:Point
            • 0:13.261516434446664
            • 1:52.480389090588716
          • UniqueID:573
        • type:Feature
        • id:574
          • type:Point
            • 0:13.257057635658656
            • 1:52.424552139744506
          • UniqueID:574
        • type:Feature
        • id:575
          • type:Point
            • 0:13.27017054826762
            • 1:52.43949643647518
          • UniqueID:575
        • type:Feature
        • id:576
          • type:Point
            • 0:13.25068647076844
            • 1:52.46042525907884
          • UniqueID:576
        • type:Feature
        • id:577
          • type:Point
            • 0:13.233516255323307
            • 1:52.44250182680807
          • UniqueID:577
        • type:Feature
        • id:578
          • type:Point
            • 0:13.293677369530485
            • 1:52.46681727262353
          • UniqueID:578
        • type:Feature
        • id:579
          • type:Point
            • 0:13.24817967184596
            • 1:52.48094511321195
          • UniqueID:579
        • type:Feature
        • id:580
          • type:Point
            • 0:13.243483173653958
            • 1:52.41814154213629
          • UniqueID:580
        • type:Feature
        • id:581
          • type:Point
            • 0:13.215466975621935
            • 1:52.425421821708795
          • UniqueID:581
        • type:Feature
        • id:582
          • type:Point
            • 0:13.260384124709766
            • 1:52.43931787411834
          • UniqueID:582
        • type:Feature
        • id:583
          • type:Point
            • 0:13.269568742857683
            • 1:52.46807934865817
          • UniqueID:583
        • type:Feature
        • id:584
          • type:Point
            • 0:13.27491897535602
            • 1:52.45352115943723
          • UniqueID:584
        • type:Feature
        • id:585
          • type:Point
            • 0:13.217148455742286
            • 1:52.41882993237229
          • UniqueID:585
        • type:Feature
        • id:586
          • type:Point
            • 0:13.261992124916604
            • 1:52.486011184547834
          • UniqueID:586
        • type:Feature
        • id:587
          • type:Point
            • 0:13.24385505623521
            • 1:52.46320999117189
          • UniqueID:587
        • type:Feature
        • id:588
          • type:Point
            • 0:13.280773748447901
            • 1:52.464565614770514
          • UniqueID:588
        • type:Feature
        • id:589
          • type:Point
            • 0:13.226467458182439
            • 1:52.42261677098204
          • UniqueID:589
        • type:Feature
        • id:590
          • type:Point
            • 0:13.287530485258229
            • 1:52.47136149677853
          • UniqueID:590
        • type:Feature
        • id:591
          • type:Point
            • 0:13.239418019104352
            • 1:52.426749338876164
          • UniqueID:591
        • type:Feature
        • id:592
          • type:Point
            • 0:13.223472976943354
            • 1:52.431296611140674
          • UniqueID:592
        • type:Feature
        • id:593
          • type:Point
            • 0:13.236942467986966
            • 1:52.44587300300085
          • UniqueID:593
        • type:Feature
        • id:594
          • type:Point
            • 0:13.220268249613508
            • 1:52.441654341035246
          • UniqueID:594
        • type:Feature
        • id:595
          • type:Point
            • 0:13.268862247197774
            • 1:52.46573668419907
          • UniqueID:595
        • type:Feature
        • id:596
          • type:Point
            • 0:13.293410364858833
            • 1:52.48135904567883
          • UniqueID:596
        • type:Feature
        • id:597
          • type:Point
            • 0:13.226499311529166
            • 1:52.48072731839938
          • UniqueID:597
        • type:Feature
        • id:598
          • type:Point
            • 0:13.247891713811123
            • 1:52.46444176626333
          • UniqueID:598
        • type:Feature
        • id:599
          • type:Point
            • 0:13.254250773905346
            • 1:52.479755360656554
          • UniqueID:599
        • type:Feature
        • id:600
          • type:Point
            • 0:13.256568673112096
            • 1:52.47737135545408
          • UniqueID:600
        • type:Feature
        • id:601
          • type:Point
            • 0:13.262737233826059
            • 1:52.42113874301995
          • UniqueID:601
        • type:Feature
        • id:602
          • type:Point
            • 0:13.271595363870548
            • 1:52.47813596698237
          • UniqueID:602
        • type:Feature
        • id:603
          • type:Point
            • 0:13.239461627545236
            • 1:52.48191626201817
          • UniqueID:603
        • type:Feature
        • id:604
          • type:Point
            • 0:13.293680249016997
            • 1:52.47649754893234
          • UniqueID:604
        • type:Feature
        • id:605
          • type:Point
            • 0:13.27833680308663
            • 1:52.455146139521446
          • UniqueID:605
        • type:Feature
        • id:606
          • type:Point
            • 0:13.219419807941241
            • 1:52.45960324319772
          • UniqueID:606
        • type:Feature
        • id:607
          • type:Point
            • 0:13.27124564464051
            • 1:52.45770364202645
          • UniqueID:607
        • type:Feature
        • id:608
          • type:Point
            • 0:13.233058747057566
            • 1:52.45350863888204
          • UniqueID:608
        • type:Feature
        • id:609
          • type:Point
            • 0:13.231694171593576
            • 1:52.44418124529826
          • UniqueID:609
        • type:Feature
        • id:610
          • type:Point
            • 0:13.263584017289999
            • 1:52.46402939195876
          • UniqueID:610
        • type:Feature
        • id:611
          • type:Point
            • 0:13.252699065717087
            • 1:52.42943285878352
          • UniqueID:611
        • type:Feature
        • id:612
          • type:Point
            • 0:13.295018768658188
            • 1:52.42094611445466
          • UniqueID:612
        • type:Feature
        • id:613
          • type:Point
            • 0:13.29475351688756
            • 1:52.41665931865373
          • UniqueID:613
        • type:Feature
        • id:614
          • type:Point
            • 0:13.2630138999765
            • 1:52.4285848360863
          • UniqueID:614
        • type:Feature
        • id:615
          • type:Point
            • 0:13.281976627926777
            • 1:52.485928879450135
          • UniqueID:615
        • type:Feature
        • id:616
          • type:Point
            • 0:13.213580607482516
            • 1:52.425309961185036
          • UniqueID:616
        • type:Feature
        • id:617
          • type:Point
            • 0:13.2901032242868
            • 1:52.46276922508718
          • UniqueID:617
        • type:Feature
        • id:618
          • type:Point
            • 0:13.250059056279937
            • 1:52.470561667838574
          • UniqueID:618
        • type:Feature
        • id:619
          • type:Point
            • 0:13.263349077632531
            • 1:52.47311003677737
          • UniqueID:619
        • type:Feature
        • id:620
          • type:Point
            • 0:13.279664548216006
            • 1:52.428061676999725
          • UniqueID:620
        • type:Feature
        • id:621
          • type:Point
            • 0:13.283980586920087
            • 1:52.48185333117952
          • UniqueID:621
        • type:Feature
        • id:622
          • type:Point
            • 0:13.293344674019638
            • 1:52.47474189328434
          • UniqueID:622
        • type:Feature
        • id:623
          • type:Point
            • 0:13.260991742747812
            • 1:52.42291912596272
          • UniqueID:623
        • type:Feature
        • id:624
          • type:Point
            • 0:13.239448866255733
            • 1:52.42448918019168
          • UniqueID:624
        • type:Feature
        • id:625
          • type:Point
            • 0:13.271481872784587
            • 1:52.47171021332809
          • UniqueID:625
        • type:Feature
        • id:626
          • type:Point
            • 0:13.241041907003396
            • 1:52.46478002934362
          • UniqueID:626
        • type:Feature
        • id:627
          • type:Point
            • 0:13.223511140799216
            • 1:52.44442830322
          • UniqueID:627
        • type:Feature
        • id:628
          • type:Point
            • 0:13.263156532055946
            • 1:52.477380299869324
          • UniqueID:628
        • type:Feature
        • id:629
          • type:Point
            • 0:13.215073621542123
            • 1:52.46309479827687
          • UniqueID:629
        • type:Feature
        • id:630
          • type:Point
            • 0:13.291845611091151
            • 1:52.45534318146708
          • UniqueID:630
        • type:Feature
        • id:631
          • type:Point
            • 0:13.267957934163192
            • 1:52.48205695281626
          • UniqueID:631
        • type:Feature
        • id:632
          • type:Point
            • 0:13.259192477844653
            • 1:52.435570898080606
          • UniqueID:632
        • type:Feature
        • id:633
          • type:Point
            • 0:13.297602895493931
            • 1:52.478788023715865
          • UniqueID:633
        • type:Feature
        • id:634
          • type:Point
            • 0:13.243167053607586
            • 1:52.47480547644465
          • UniqueID:634
        • type:Feature
        • id:635
          • type:Point
            • 0:13.244166543416362
            • 1:52.46255045727347
          • UniqueID:635
        • type:Feature
        • id:636
          • type:Point
            • 0:13.291557682224479
            • 1:52.438183598827294
          • UniqueID:636
        • type:Feature
        • id:637
          • type:Point
            • 0:13.267892080741765
            • 1:52.4656517332764
          • UniqueID:637
        • type:Feature
        • id:638
          • type:Point
            • 0:13.241087797598794
            • 1:52.47126204459977
          • UniqueID:638
        • type:Feature
        • id:639
          • type:Point
            • 0:13.263220687509646
            • 1:52.434500384172985
          • UniqueID:639
        • type:Feature
        • id:640
          • type:Point
            • 0:13.251454549773063
            • 1:52.45415755853744
          • UniqueID:640
        • type:Feature
        • id:641
          • type:Point
            • 0:13.230791857091598
            • 1:52.45179245870633
          • UniqueID:641
        • type:Feature
        • id:642
          • type:Point
            • 0:13.248708632006027
            • 1:52.47464664844295
          • UniqueID:642
        • type:Feature
        • id:643
          • type:Point
            • 0:13.23581327652018
            • 1:52.43302738696394
          • UniqueID:643
        • type:Feature
        • id:644
          • type:Point
            • 0:13.292878369490987
            • 1:52.462709442101186
          • UniqueID:644
        • type:Feature
        • id:645
          • type:Point
            • 0:13.272186528461123
            • 1:52.43041439990845
          • UniqueID:645
        • type:Feature
        • id:646
          • type:Point
            • 0:13.272090380445746
            • 1:52.485170009791105
          • UniqueID:646
        • type:Feature
        • id:647
          • type:Point
            • 0:13.29127102975729
            • 1:52.44583935996332
          • UniqueID:647
        • type:Feature
        • id:648
          • type:Point
            • 0:13.279379218757732
            • 1:52.44269311831051
          • UniqueID:648
        • type:Feature
        • id:649
          • type:Point
            • 0:13.215378893827829
            • 1:52.4417761021912
          • UniqueID:649
        • type:Feature
        • id:650
          • type:Point
            • 0:13.272952534520051
            • 1:52.455152825723886
          • UniqueID:650
        • type:Feature
        • id:651
          • type:Point
            • 0:13.28515874433959
            • 1:52.454291276011126
          • UniqueID:651
        • type:Feature
        • id:652
          • type:Point
            • 0:13.24141170164191
            • 1:52.434411631574505
          • UniqueID:652
        • type:Feature
        • id:653
          • type:Point
            • 0:13.237190712354977
            • 1:52.41906158297013
          • UniqueID:653
        • type:Feature
        • id:654
          • type:Point
            • 0:13.279447317903475
            • 1:52.456310150222485
          • UniqueID:654
        • type:Feature
        • id:655
          • type:Point
            • 0:13.251886330147444
            • 1:52.43293571158584
          • UniqueID:655
        • type:Feature
        • id:656
          • type:Point
            • 0:13.298056799648728
            • 1:52.48354944437795
          • UniqueID:656
        • type:Feature
        • id:657
          • type:Point
            • 0:13.287842715660139
            • 1:52.48246365724221
          • UniqueID:657
        • type:Feature
        • id:658
          • type:Point
            • 0:13.247214118722516
            • 1:52.469210352846034
          • UniqueID:658
        • type:Feature
        • id:659
          • type:Point
            • 0:13.2315145630943
            • 1:52.4766623476268
          • UniqueID:659
        • type:Feature
        • id:660
          • type:Point
            • 0:13.21854889726018
            • 1:52.44879268237931
          • UniqueID:660
        • type:Feature
        • id:661
          • type:Point
            • 0:13.260974294340619
            • 1:52.43843910133629
          • UniqueID:661
        • type:Feature
        • id:662
          • type:Point
            • 0:13.273873771208638
            • 1:52.42060362437397
          • UniqueID:662
        • type:Feature
        • id:663
          • type:Point
            • 0:13.253047954632997
            • 1:52.416891121940466
          • UniqueID:663
        • type:Feature
        • id:664
          • type:Point
            • 0:13.255958556325771
            • 1:52.43995519047486
          • UniqueID:664
        • type:Feature
        • id:665
          • type:Point
            • 0:13.226545223694906
            • 1:52.46469413532464
          • UniqueID:665
        • type:Feature
        • id:666
          • type:Point
            • 0:13.247096825176397
            • 1:52.45883827460178
          • UniqueID:666
        • type:Feature
        • id:667
          • type:Point
            • 0:13.297509272236098
            • 1:52.47365100646496
          • UniqueID:667
        • type:Feature
        • id:668
          • type:Point
            • 0:13.247998832638084
            • 1:52.434015076029425
          • UniqueID:668
        • type:Feature
        • id:669
          • type:Point
            • 0:13.266110224795137
            • 1:52.443653529939795
          • UniqueID:669
        • type:Feature
        • id:670
          • type:Point
            • 0:13.29517538378654
            • 1:52.431907544355525
          • UniqueID:670
        • type:Feature
        • id:671
          • type:Point
            • 0:13.270385855766657
            • 1:52.434790223548056
          • UniqueID:671
        • type:Feature
        • id:672
          • type:Point
            • 0:13.222497495866834
            • 1:52.45804086232154
          • UniqueID:672
        • type:Feature
        • id:673
          • type:Point
            • 0:13.276025883935144
            • 1:52.42603261518652
          • UniqueID:673
        • type:Feature
        • id:674
          • type:Point
            • 0:13.262154819238622
            • 1:52.46748012084616
          • UniqueID:674
        • type:Feature
        • id:675
          • type:Point
            • 0:13.241042468283739
            • 1:52.464361710516506
          • UniqueID:675
        • type:Feature
        • id:676
          • type:Point
            • 0:13.22386210053524
            • 1:52.42258085837912
          • UniqueID:676
        • type:Feature
        • id:677
          • type:Point
            • 0:13.261825012111341
            • 1:52.420374721129264
          • UniqueID:677
        • type:Feature
        • id:678
          • type:Point
            • 0:13.222829451341939
            • 1:52.462961375711025
          • UniqueID:678
        • type:Feature
        • id:679
          • type:Point
            • 0:13.284808752575554
            • 1:52.471173208565176
          • UniqueID:679
        • type:Feature
        • id:680
          • type:Point
            • 0:13.224881900051974
            • 1:52.48317175293288
          • UniqueID:680
        • type:Feature
        • id:681
          • type:Point
            • 0:13.267341262087596
            • 1:52.427015864227656
          • UniqueID:681
        • type:Feature
        • id:682
          • type:Point
            • 0:13.241746159239106
            • 1:52.46164968273597
          • UniqueID:682
        • type:Feature
        • id:683
          • type:Point
            • 0:13.223030840011567
            • 1:52.486668880619504
          • UniqueID:683
        • type:Feature
        • id:684
          • type:Point
            • 0:13.28047247833179
            • 1:52.43185103726915
          • UniqueID:684
        • type:Feature
        • id:685
          • type:Point
            • 0:13.231837683922839
            • 1:52.48373757263039
          • UniqueID:685
        • type:Feature
        • id:686
          • type:Point
            • 0:13.270131593909795
            • 1:52.478881574676194
          • UniqueID:686
        • type:Feature
        • id:687
          • type:Point
            • 0:13.255386478586752
            • 1:52.48260210615081
          • UniqueID:687
        • type:Feature
        • id:688
          • type:Point
            • 0:13.282031363626059
            • 1:52.46175599152454
          • UniqueID:688
        • type:Feature
        • id:689
          • type:Point
            • 0:13.22283988112672
            • 1:52.4566638806778
          • UniqueID:689
        • type:Feature
        • id:690
          • type:Point
            • 0:13.250425706586768
            • 1:52.42146359282992
          • UniqueID:690
        • type:Feature
        • id:691
          • type:Point
            • 0:13.229139546347287
            • 1:52.43138550390879
          • UniqueID:691
        • type:Feature
        • id:692
          • type:Point
            • 0:13.279413521575284
            • 1:52.45899820069437
          • UniqueID:692
        • type:Feature
        • id:693
          • type:Point
            • 0:13.23726363761927
            • 1:52.46512841356348
          • UniqueID:693
        • type:Feature
        • id:694
          • type:Point
            • 0:13.25879151989842
            • 1:52.417690987255035
          • UniqueID:694
        • type:Feature
        • id:695
          • type:Point
            • 0:13.275238037094027
            • 1:52.42380358374075
          • UniqueID:695
        • type:Feature
        • id:696
          • type:Point
            • 0:13.234876383880618
            • 1:52.42140323983503
          • UniqueID:696
        • type:Feature
        • id:697
          • type:Point
            • 0:13.249899239698404
            • 1:52.473040416030905
          • UniqueID:697
        • type:Feature
        • id:698
          • type:Point
            • 0:13.225373214643666
            • 1:52.46487916936073
          • UniqueID:698
        • type:Feature
        • id:699
          • type:Point
            • 0:13.226002459943894
            • 1:52.4590523039825
          • UniqueID:699
        • type:Feature
        • id:700
          • type:Point
            • 0:13.222899746983455
            • 1:52.45926110260594
          • UniqueID:700
        • type:Feature
        • id:701
          • type:Point
            • 0:13.219427376027827
            • 1:52.430962321785685
          • UniqueID:701
        • type:Feature
        • id:702
          • type:Point
            • 0:13.236805593641165
            • 1:52.465354749522966
          • UniqueID:702
        • type:Feature
        • id:703
          • type:Point
            • 0:13.280727225717007
            • 1:52.427306167079706
          • UniqueID:703
        • type:Feature
        • id:704
          • type:Point
            • 0:13.23378355057534
            • 1:52.42922673766339
          • UniqueID:704
        • type:Feature
        • id:705
          • type:Point
            • 0:13.221714293603439
            • 1:52.44179495398977
          • UniqueID:705
        • type:Feature
        • id:706
          • type:Point
            • 0:13.241879510682779
            • 1:52.468428949719545
          • UniqueID:706
        • type:Feature
        • id:707
          • type:Point
            • 0:13.243519526276785
            • 1:52.44087868270804
          • UniqueID:707
        • type:Feature
        • id:708
          • type:Point
            • 0:13.221710918050261
            • 1:52.482377272296475
          • UniqueID:708
        • type:Feature
        • id:709
          • type:Point
            • 0:13.228146793189289
            • 1:52.43682787262055
          • UniqueID:709
        • type:Feature
        • id:710
          • type:Point
            • 0:13.221192806118495
            • 1:52.48344349800593
          • UniqueID:710
        • type:Feature
        • id:711
          • type:Point
            • 0:13.255713891959282
            • 1:52.431724144490225
          • UniqueID:711
        • type:Feature
        • id:712
          • type:Point
            • 0:13.278397434361365
            • 1:52.432166135893624
          • UniqueID:712
        • type:Feature
        • id:713
          • type:Point
            • 0:13.300286864244116
            • 1:52.480296954231235
          • UniqueID:713
        • type:Feature
        • id:714
          • type:Point
            • 0:13.291534489401384
            • 1:52.481173045549404
          • UniqueID:714
        • type:Feature
        • id:715
          • type:Point
            • 0:13.292556137519226
            • 1:52.437017011798666
          • UniqueID:715
        • type:Feature
        • id:716
          • type:Point
            • 0:13.229962766318549
            • 1:52.46893919346761
          • UniqueID:716
        • type:Feature
        • id:717
          • type:Point
            • 0:13.29191683836456
            • 1:52.482534336291806
          • UniqueID:717
        • type:Feature
        • id:718
          • type:Point
            • 0:13.224870873014263
            • 1:52.4474007144282
          • UniqueID:718
        • type:Feature
        • id:719
          • type:Point
            • 0:13.218594061108574
            • 1:52.46392551998989
          • UniqueID:719
        • type:Feature
        • id:720
          • type:Point
            • 0:13.230195853290102
            • 1:52.44660470372956
          • UniqueID:720
        • type:Feature
        • id:721
          • type:Point
            • 0:13.224992334965847
            • 1:52.440302035498405
          • UniqueID:721
        • type:Feature
        • id:722
          • type:Point
            • 0:13.285759451067689
            • 1:52.48353636525201
          • UniqueID:722
        • type:Feature
        • id:723
          • type:Point
            • 0:13.226405204416139
            • 1:52.470703088188316
          • UniqueID:723
        • type:Feature
        • id:724
          • type:Point
            • 0:13.247435605088471
            • 1:52.42493236091926
          • UniqueID:724
        • type:Feature
        • id:725
          • type:Point
            • 0:13.24067829097582
            • 1:52.42711673062421
          • UniqueID:725
        • type:Feature
        • id:726
          • type:Point
            • 0:13.271058254828285
            • 1:52.46868384242706
          • UniqueID:726
        • type:Feature
        • id:727
          • type:Point
            • 0:13.30016969266354
            • 1:52.44945871488113
          • UniqueID:727
        • type:Feature
        • id:728
          • type:Point
            • 0:13.225990590923843
            • 1:52.44371425335575
          • UniqueID:728
        • type:Feature
        • id:729
          • type:Point
            • 0:13.250615301839824
            • 1:52.450933117250536
          • UniqueID:729
        • type:Feature
        • id:730
          • type:Point
            • 0:13.289671127417435
            • 1:52.41869637483804
          • UniqueID:730
        • type:Feature
        • id:731
          • type:Point
            • 0:13.241933517832514
            • 1:52.47884395845773
          • UniqueID:731
        • type:Feature
        • id:732
          • type:Point
            • 0:13.238759533098305
            • 1:52.45758409045989
          • UniqueID:732
        • type:Feature
        • id:733
          • type:Point
            • 0:13.236642308436199
            • 1:52.47971844215574
          • UniqueID:733
        • type:Feature
        • id:734
          • type:Point
            • 0:13.256459575842303
            • 1:52.46638392626604
          • UniqueID:734
        • type:Feature
        • id:735
          • type:Point
            • 0:13.272398561016328
            • 1:52.43989027544329
          • UniqueID:735
        • type:Feature
        • id:736
          • type:Point
            • 0:13.260789138411806
            • 1:52.432180111695324
          • UniqueID:736
        • type:Feature
        • id:737
          • type:Point
            • 0:13.289789122051419
            • 1:52.41571504390807
          • UniqueID:737
        • type:Feature
        • id:738
          • type:Point
            • 0:13.301778342306452
            • 1:52.45886704824674
          • UniqueID:738
        • type:Feature
        • id:739
          • type:Point
            • 0:13.277614103661085
            • 1:52.42167014746262
          • UniqueID:739
        • type:Feature
        • id:740
          • type:Point
            • 0:13.215448686507557
            • 1:52.46887463914609
          • UniqueID:740
        • type:Feature
        • id:741
          • type:Point
            • 0:13.227443992248352
            • 1:52.460535552302105
          • UniqueID:741
        • type:Feature
        • id:742
          • type:Point
            • 0:13.215230333111347
            • 1:52.473124018757616
          • UniqueID:742
        • type:Feature
        • id:743
          • type:Point
            • 0:13.29711424890228
            • 1:52.48224581508638
          • UniqueID:743
        • type:Feature
        • id:744
          • type:Point
            • 0:13.285429903654464
            • 1:52.427990023183206
          • UniqueID:744
        • type:Feature
        • id:745
          • type:Point
            • 0:13.22246911215559
            • 1:52.43788957988903
          • UniqueID:745
        • type:Feature
        • id:746
          • type:Point
            • 0:13.248908077094711
            • 1:52.48123935730182
          • UniqueID:746
        • type:Feature
        • id:747
          • type:Point
            • 0:13.220408740831127
            • 1:52.46910133057418
          • UniqueID:747
        • type:Feature
        • id:748
          • type:Point
            • 0:13.235970197057037
            • 1:52.48166769481682
          • UniqueID:748
        • type:Feature
        • id:749
          • type:Point
            • 0:13.281413171083505
            • 1:52.479965682921275
          • UniqueID:749
        • type:Feature
        • id:750
          • type:Point
            • 0:13.257949650703484
            • 1:52.473795602939276
          • UniqueID:750
        • type:Feature
        • id:751
          • type:Point
            • 0:13.223749096834872
            • 1:52.45658664673466
          • UniqueID:751
        • type:Feature
        • id:752
          • type:Point
            • 0:13.300422549640066
            • 1:52.423087692263216
          • UniqueID:752
        • type:Feature
        • id:753
          • type:Point
            • 0:13.298484319164343
            • 1:52.470872498373836
          • UniqueID:753
        • type:Feature
        • id:754
          • type:Point
            • 0:13.247620782499196
            • 1:52.4320197905582
          • UniqueID:754
        • type:Feature
        • id:755
          • type:Point
            • 0:13.222398639451411
            • 1:52.43385821536876
          • UniqueID:755
        • type:Feature
        • id:756
          • type:Point
            • 0:13.282267862701776
            • 1:52.42110482339578
          • UniqueID:756
        • type:Feature
        • id:757
          • type:Point
            • 0:13.240232960800997
            • 1:52.48174207086398
          • UniqueID:757
        • type:Feature
        • id:758
          • type:Point
            • 0:13.234751242771974
            • 1:52.46228344017566
          • UniqueID:758
        • type:Feature
        • id:759
          • type:Point
            • 0:13.267859420064973
            • 1:52.46151305078289
          • UniqueID:759
        • type:Feature
        • id:760
          • type:Point
            • 0:13.229487067858383
            • 1:52.477742918600875
          • UniqueID:760
        • type:Feature
        • id:761
          • type:Point
            • 0:13.266883004357231
            • 1:52.4846227231298
          • UniqueID:761
        • type:Feature
        • id:762
          • type:Point
            • 0:13.280618018068848
            • 1:52.47505143990306
          • UniqueID:762
        • type:Feature
        • id:763
          • type:Point
            • 0:13.270172950679692
            • 1:52.42445269814838
          • UniqueID:763
        • type:Feature
        • id:764
          • type:Point
            • 0:13.272614353227011
            • 1:52.45287434777697
          • UniqueID:764
        • type:Feature
        • id:765
          • type:Point
            • 0:13.276591424689375
            • 1:52.42771993163486
          • UniqueID:765
        • type:Feature
        • id:766
          • type:Point
            • 0:13.301788798411259
            • 1:52.48602238436148
          • UniqueID:766
        • type:Feature
        • id:767
          • type:Point
            • 0:13.284629214725623
            • 1:52.46464227029687
          • UniqueID:767
        • type:Feature
        • id:768
          • type:Point
            • 0:13.298231262834854
            • 1:52.424393678646844
          • UniqueID:768
        • type:Feature
        • id:769
          • type:Point
            • 0:13.299174482340238
            • 1:52.437637475478425
          • UniqueID:769
        • type:Feature
        • id:770
          • type:Point
            • 0:13.21490179798896
            • 1:52.44209507376952
          • UniqueID:770
        • type:Feature
        • id:771
          • type:Point
            • 0:13.296427892107735
            • 1:52.435862474863086
          • UniqueID:771
        • type:Feature
        • id:772
          • type:Point
            • 0:13.255401158724693
            • 1:52.47694870675878
          • UniqueID:772
        • type:Feature
        • id:773
          • type:Point
            • 0:13.300552877016331
            • 1:52.437266415339465
          • UniqueID:773
        • type:Feature
        • id:774
          • type:Point
            • 0:13.297488742468133
            • 1:52.43137661513112
          • UniqueID:774
        • type:Feature
        • id:775
          • type:Point
            • 0:13.2710307459414
            • 1:52.456542889569164
          • UniqueID:775
        • type:Feature
        • id:776
          • type:Point
            • 0:13.271146422562307
            • 1:52.480651693155146
          • UniqueID:776
        • type:Feature
        • id:777
          • type:Point
            • 0:13.288315515454721
            • 1:52.43751913287383
          • UniqueID:777
        • type:Feature
        • id:778
          • type:Point
            • 0:13.292559709238382
            • 1:52.43920462541593
          • UniqueID:778
        • type:Feature
        • id:779
          • type:Point
            • 0:13.247152445385556
            • 1:52.47297869420628
          • UniqueID:779
        • type:Feature
        • id:780
          • type:Point
            • 0:13.27441238869964
            • 1:52.424709814989534
          • UniqueID:780
        • type:Feature
        • id:781
          • type:Point
            • 0:13.248580821469673
            • 1:52.4869232938032
          • UniqueID:781
        • type:Feature
        • id:782
          • type:Point
            • 0:13.261236743470683
            • 1:52.43139182923003
          • UniqueID:782
        • type:Feature
        • id:783
          • type:Point
            • 0:13.264602071394284
            • 1:52.43349096979385
          • UniqueID:783
        • type:Feature
        • id:784
          • type:Point
            • 0:13.25503564955221
            • 1:52.41811102769962
          • UniqueID:784
        • type:Feature
        • id:785
          • type:Point
            • 0:13.245635621822887
            • 1:52.482553166187344
          • UniqueID:785
        • type:Feature
        • id:786
          • type:Point
            • 0:13.274396111804368
            • 1:52.45535068154877
          • UniqueID:786
        • type:Feature
        • id:787
          • type:Point
            • 0:13.240751505921448
            • 1:52.44295443526154
          • UniqueID:787
        • type:Feature
        • id:788
          • type:Point
            • 0:13.229978014249653
            • 1:52.483816361269035
          • UniqueID:788
        • type:Feature
        • id:789
          • type:Point
            • 0:13.292952585350251
            • 1:52.47042830290583
          • UniqueID:789
        • type:Feature
        • id:790
          • type:Point
            • 0:13.259834773767654
            • 1:52.477926211106976
          • UniqueID:790
        • type:Feature
        • id:791
          • type:Point
            • 0:13.26620663816295
            • 1:52.45711524104707
          • UniqueID:791
        • type:Feature
        • id:792
          • type:Point
            • 0:13.254395710643104
            • 1:52.47733748221957
          • UniqueID:792
        • type:Feature
        • id:793
          • type:Point
            • 0:13.296069530735469
            • 1:52.44210685463474
          • UniqueID:793
        • type:Feature
        • id:794
          • type:Point
            • 0:13.275743257222484
            • 1:52.42841468410698
          • UniqueID:794
        • type:Feature
        • id:795
          • type:Point
            • 0:13.26894893240126
            • 1:52.4193740989078
          • UniqueID:795
        • type:Feature
        • id:796
          • type:Point
            • 0:13.27956202039387
            • 1:52.44925065378872
          • UniqueID:796
        • type:Feature
        • id:797
          • type:Point
            • 0:13.256278984493433
            • 1:52.41923707482762
          • UniqueID:797
        • type:Feature
        • id:798
          • type:Point
            • 0:13.295832782022485
            • 1:52.42998962444523
          • UniqueID:798
        • type:Feature
        • id:799
          • type:Point
            • 0:13.242884779960281
            • 1:52.48427155340169
          • UniqueID:799
        • type:Feature
        • id:800
          • type:Point
            • 0:13.227954136840223
            • 1:52.423371812947124
          • UniqueID:800
        • type:Feature
        • id:801
          • type:Point
            • 0:13.240355379564967
            • 1:52.42433385025626
          • UniqueID:801
        • type:Feature
        • id:802
          • type:Point
            • 0:13.277024074265546
            • 1:52.44987079116688
          • UniqueID:802
        • type:Feature
        • id:803
          • type:Point
            • 0:13.228071253394951
            • 1:52.45924387787513
          • UniqueID:803
        • type:Feature
        • id:804
          • type:Point
            • 0:13.24356870603039
            • 1:52.44072465212197
          • UniqueID:804
        • type:Feature
        • id:805
          • type:Point
            • 0:13.293435755456096
            • 1:52.46536860940026
          • UniqueID:805
        • type:Feature
        • id:806
          • type:Point
            • 0:13.298339898620261
            • 1:52.46100257307722
          • UniqueID:806
        • type:Feature
        • id:807
          • type:Point
            • 0:13.257087827393809
            • 1:52.42658984011222
          • UniqueID:807
        • type:Feature
        • id:808
          • type:Point
            • 0:13.243577217853616
            • 1:52.4693836676764
          • UniqueID:808
        • type:Feature
        • id:809
          • type:Point
            • 0:13.277369792800402
            • 1:52.419207493921554
          • UniqueID:809
        • type:Feature
        • id:810
          • type:Point
            • 0:13.241484511095896
            • 1:52.44135983083456
          • UniqueID:810
        • type:Feature
        • id:811
          • type:Point
            • 0:13.23260053581259
            • 1:52.47204272188691
          • UniqueID:811
        • type:Feature
        • id:812
          • type:Point
            • 0:13.279084475177873
            • 1:52.47243860104962
          • UniqueID:812
        • type:Feature
        • id:813
          • type:Point
            • 0:13.21387422648139
            • 1:52.47736190940885
          • UniqueID:813
        • type:Feature
        • id:814
          • type:Point
            • 0:13.264330283180295
            • 1:52.451979588006424
          • UniqueID:814
        • type:Feature
        • id:815
          • type:Point
            • 0:13.246069886301619
            • 1:52.4780116851008
          • UniqueID:815
        • type:Feature
        • id:816
          • type:Point
            • 0:13.292100146189993
            • 1:52.42479725076928
          • UniqueID:816
        • type:Feature
        • id:817
          • type:Point
            • 0:13.239962965661125
            • 1:52.44148254020185
          • UniqueID:817
        • type:Feature
        • id:818
          • type:Point
            • 0:13.262638664114068
            • 1:52.46028786437893
          • UniqueID:818
        • type:Feature
        • id:819
          • type:Point
            • 0:13.299681064512026
            • 1:52.47565031482625
          • UniqueID:819
        • type:Feature
        • id:820
          • type:Point
            • 0:13.214982681186928
            • 1:52.48389062623692
          • UniqueID:820
        • type:Feature
        • id:821
          • type:Point
            • 0:13.23348261498047
            • 1:52.42031257889075
          • UniqueID:821
        • type:Feature
        • id:822
          • type:Point
            • 0:13.230988037600824
            • 1:52.430133293293416
          • UniqueID:822
        • type:Feature
        • id:823
          • type:Point
            • 0:13.284583886982313
            • 1:52.450527126885916
          • UniqueID:823
        • type:Feature
        • id:824
          • type:Point
            • 0:13.261567860660165
            • 1:52.4720310579615
          • UniqueID:824
        • type:Feature
        • id:825
          • type:Point
            • 0:13.24959475874344
            • 1:52.470012213927
          • UniqueID:825
        • type:Feature
        • id:826
          • type:Point
            • 0:13.232799554182835
            • 1:52.46089535337795
          • UniqueID:826
        • type:Feature
        • id:827
          • type:Point
            • 0:13.286964724221871
            • 1:52.45335895123702
          • UniqueID:827
        • type:Feature
        • id:828
          • type:Point
            • 0:13.220741090864133
            • 1:52.419943180308486
          • UniqueID:828
        • type:Feature
        • id:829
          • type:Point
            • 0:13.28878315697016
            • 1:52.48479452899613
          • UniqueID:829
        • type:Feature
        • id:830
          • type:Point
            • 0:13.246846700192428
            • 1:52.449313879008685
          • UniqueID:830
        • type:Feature
        • id:831
          • type:Point
            • 0:13.277466522639934
            • 1:52.46401875618317
          • UniqueID:831
        • type:Feature
        • id:832
          • type:Point
            • 0:13.235019262897513
            • 1:52.46361222014508
          • UniqueID:832
        • type:Feature
        • id:833
          • type:Point
            • 0:13.239136986967242
            • 1:52.48047710323848
          • UniqueID:833
        • type:Feature
        • id:834
          • type:Point
            • 0:13.28142407780915
            • 1:52.45682300373604
          • UniqueID:834
        • type:Feature
        • id:835
          • type:Point
            • 0:13.281112373253153
            • 1:52.41801422409569
          • UniqueID:835
        • type:Feature
        • id:836
          • type:Point
            • 0:13.276744625291903
            • 1:52.45500852651561
          • UniqueID:836
        • type:Feature
        • id:837
          • type:Point
            • 0:13.21918776150458
            • 1:52.43555892951113
          • UniqueID:837
        • type:Feature
        • id:838
          • type:Point
            • 0:13.28149986696372
            • 1:52.43359131633963
          • UniqueID:838
        • type:Feature
        • id:839
          • type:Point
            • 0:13.269846208099434
            • 1:52.44647490903471
          • UniqueID:839
        • type:Feature
        • id:840
          • type:Point
            • 0:13.234476190451282
            • 1:52.42052737248327
          • UniqueID:840
        • type:Feature
        • id:841
          • type:Point
            • 0:13.264986698752285
            • 1:52.42262286989815
          • UniqueID:841
        • type:Feature
        • id:842
          • type:Point
            • 0:13.258552631215972
            • 1:52.46418198627204
          • UniqueID:842
        • type:Feature
        • id:843
          • type:Point
            • 0:13.250038069359238
            • 1:52.437838348318564
          • UniqueID:843
        • type:Feature
        • id:844
          • type:Point
            • 0:13.251697740448506
            • 1:52.45689140187752
          • UniqueID:844
        • type:Feature
        • id:845
          • type:Point
            • 0:13.262464830632267
            • 1:52.41662429388024
          • UniqueID:845
        • type:Feature
        • id:846
          • type:Point
            • 0:13.296314747485509
            • 1:52.45847518246098
          • UniqueID:846
        • type:Feature
        • id:847
          • type:Point
            • 0:13.217173120137218
            • 1:52.44330229743925
          • UniqueID:847
        • type:Feature
        • id:848
          • type:Point
            • 0:13.223677074320074
            • 1:52.463959027484705
          • UniqueID:848
        • type:Feature
        • id:849
          • type:Point
            • 0:13.27302531979843
            • 1:52.43550107567617
          • UniqueID:849
        • type:Feature
        • id:850
          • type:Point
            • 0:13.242238429949527
            • 1:52.476863086396556
          • UniqueID:850
        • type:Feature
        • id:851
          • type:Point
            • 0:13.261318745416743
            • 1:52.42156123365038
          • UniqueID:851
        • type:Feature
        • id:852
          • type:Point
            • 0:13.285562933084153
            • 1:52.43237402299564
          • UniqueID:852
        • type:Feature
        • id:853
          • type:Point
            • 0:13.277198527337886
            • 1:52.44531385039131
          • UniqueID:853
        • type:Feature
        • id:854
          • type:Point
            • 0:13.264470904051999
            • 1:52.4250865397895
          • UniqueID:854
        • type:Feature
        • id:855
          • type:Point
            • 0:13.221325424446311
            • 1:52.46499938685835
          • UniqueID:855
        • type:Feature
        • id:856
          • type:Point
            • 0:13.266496239856272
            • 1:52.45917516296972
          • UniqueID:856
        • type:Feature
        • id:857
          • type:Point
            • 0:13.236660663532433
            • 1:52.4225931292812
          • UniqueID:857
        • type:Feature
        • id:858
          • type:Point
            • 0:13.295029593964022
            • 1:52.45529123934904
          • UniqueID:858
        • type:Feature
        • id:859
          • type:Point
            • 0:13.279511603061495
            • 1:52.42480483168346
          • UniqueID:859
        • type:Feature
        • id:860
          • type:Point
            • 0:13.280966745422077
            • 1:52.43437657682999
          • UniqueID:860
        • type:Feature
        • id:861
          • type:Point
            • 0:13.233928307533256
            • 1:52.43499880571718
          • UniqueID:861
        • type:Feature
        • id:862
          • type:Point
            • 0:13.220956646358125
            • 1:52.4221154401915
          • UniqueID:862
        • type:Feature
        • id:863
          • type:Point
            • 0:13.266942585075954
            • 1:52.41594788921508
          • UniqueID:863
        • type:Feature
        • id:864
          • type:Point
            • 0:13.252671765093714
            • 1:52.46572403862069
          • UniqueID:864
        • type:Feature
        • id:865
          • type:Point
            • 0:13.236802307464531
            • 1:52.46161141909975
          • UniqueID:865
        • type:Feature
        • id:866
          • type:Point
            • 0:13.28654351105341
            • 1:52.419500320013135
          • UniqueID:866
        • type:Feature
        • id:867
          • type:Point
            • 0:13.223347819112153
            • 1:52.41572900381495
          • UniqueID:867
        • type:Feature
        • id:868
          • type:Point
            • 0:13.238721206967805
            • 1:52.44742511686436
          • UniqueID:868
        • type:Feature
        • id:869
          • type:Point
            • 0:13.2613471572649
            • 1:52.43261218633859
          • UniqueID:869
        • type:Feature
        • id:870
          • type:Point
            • 0:13.237016743344883
            • 1:52.47964134258974
          • UniqueID:870
        • type:Feature
        • id:871
          • type:Point
            • 0:13.253025451409142
            • 1:52.41972474324135
          • UniqueID:871
        • type:Feature
        • id:872
          • type:Point
            • 0:13.25470101883508
            • 1:52.453152372510324
          • UniqueID:872
        • type:Feature
        • id:873
          • type:Point
            • 0:13.300641803983945
            • 1:52.45397809804969
          • UniqueID:873
        • type:Feature
        • id:874
          • type:Point
            • 0:13.2322637307647
            • 1:52.46508534187086
          • UniqueID:874
        • type:Feature
        • id:875
          • type:Point
            • 0:13.218159305508587
            • 1:52.43545379277324
          • UniqueID:875
        • type:Feature
        • id:876
          • type:Point
            • 0:13.21667098486043
            • 1:52.437653294899704
          • UniqueID:876
        • type:Feature
        • id:877
          • type:Point
            • 0:13.230282109262577
            • 1:52.450519565304745
          • UniqueID:877
        • type:Feature
        • id:878
          • type:Point
            • 0:13.290325818035173
            • 1:52.47567602405025
          • UniqueID:878
        • type:Feature
        • id:879
          • type:Point
            • 0:13.248909756425915
            • 1:52.48328756367814
          • UniqueID:879
        • type:Feature
        • id:880
          • type:Point
            • 0:13.216940769150467
            • 1:52.46038079517062
          • UniqueID:880
        • type:Feature
        • id:881
          • type:Point
            • 0:13.222027451555316
            • 1:52.45585320569954
          • UniqueID:881
        • type:Feature
        • id:882
          • type:Point
            • 0:13.228742640214362
            • 1:52.41811098042761
          • UniqueID:882
        • type:Feature
        • id:883
          • type:Point
            • 0:13.279527847751643
            • 1:52.479180039969066
          • UniqueID:883
        • type:Feature
        • id:884
          • type:Point
            • 0:13.221147807467593
            • 1:52.45657850774109
          • UniqueID:884
        • type:Feature
        • id:885
          • type:Point
            • 0:13.243544388243862
            • 1:52.47663173716116
          • UniqueID:885
        • type:Feature
        • id:886
          • type:Point
            • 0:13.22532702037068
            • 1:52.41651136197966
          • UniqueID:886
        • type:Feature
        • id:887
          • type:Point
            • 0:13.228850693624427
            • 1:52.45522576723545
          • UniqueID:887
        • type:Feature
        • id:888
          • type:Point
            • 0:13.295165903064786
            • 1:52.46226385729524
          • UniqueID:888
        • type:Feature
        • id:889
          • type:Point
            • 0:13.291246842614166
            • 1:52.43944977984709
          • UniqueID:889
        • type:Feature
        • id:890
          • type:Point
            • 0:13.300708679319484
            • 1:52.44100340187149
          • UniqueID:890
        • type:Feature
        • id:891
          • type:Point
            • 0:13.259224724745815
            • 1:52.47828876646527
          • UniqueID:891
        • type:Feature
        • id:892
          • type:Point
            • 0:13.301207796090988
            • 1:52.44600016930786
          • UniqueID:892
        • type:Feature
        • id:893
          • type:Point
            • 0:13.283814415653044
            • 1:52.46128173110587
          • UniqueID:893
        • type:Feature
        • id:894
          • type:Point
            • 0:13.290068120044705
            • 1:52.46566355764144
          • UniqueID:894
        • type:Feature
        • id:895
          • type:Point
            • 0:13.214346127698377
            • 1:52.43326121749516
          • UniqueID:895
        • type:Feature
        • id:896
          • type:Point
            • 0:13.299033849654462
            • 1:52.44455561422879
          • UniqueID:896
        • type:Feature
        • id:897
          • type:Point
            • 0:13.294882767827888
            • 1:52.44310915410089
          • UniqueID:897
        • type:Feature
        • id:898
          • type:Point
            • 0:13.293709140129849
            • 1:52.42674444683182
          • UniqueID:898
        • type:Feature
        • id:899
          • type:Point
            • 0:13.28991743250169
            • 1:52.432914921961654
          • UniqueID:899
        • type:Feature
        • id:900
          • type:Point
            • 0:13.240139963116244
            • 1:52.43887342560746
          • UniqueID:900
        • type:Feature
        • id:901
          • type:Point
            • 0:13.236335943325033
            • 1:52.416918949159054
          • UniqueID:901
        • type:Feature
        • id:902
          • type:Point
            • 0:13.245415671721181
            • 1:52.45363041227516
          • UniqueID:902
        • type:Feature
        • id:903
          • type:Point
            • 0:13.286533179584293
            • 1:52.46136694812766
          • UniqueID:903
        • type:Feature
        • id:904
          • type:Point
            • 0:13.281344007626657
            • 1:52.45250643375376
          • UniqueID:904
        • type:Feature
        • id:905
          • type:Point
            • 0:13.252190548210189
            • 1:52.486106880529434
          • UniqueID:905
        • type:Feature
        • id:906
          • type:Point
            • 0:13.241700919088435
            • 1:52.46377554956048
          • UniqueID:906
        • type:Feature
        • id:907
          • type:Point
            • 0:13.273429763300369
            • 1:52.42325011730881
          • UniqueID:907
        • type:Feature
        • id:908
          • type:Point
            • 0:13.280339561246407
            • 1:52.45300741806931
          • UniqueID:908
        • type:Feature
        • id:909
          • type:Point
            • 0:13.259426345209782
            • 1:52.44437600549745
          • UniqueID:909
        • type:Feature
        • id:910
          • type:Point
            • 0:13.248344985339145
            • 1:52.45588075176879
          • UniqueID:910
        • type:Feature
        • id:911
          • type:Point
            • 0:13.238697654565334
            • 1:52.441855339651184
          • UniqueID:911
        • type:Feature
        • id:912
          • type:Point
            • 0:13.251804735676906
            • 1:52.484902154324566
          • UniqueID:912
        • type:Feature
        • id:913
          • type:Point
            • 0:13.264881829353055
            • 1:52.46206801047501
          • UniqueID:913
        • type:Feature
        • id:914
          • type:Point
            • 0:13.22235189239295
            • 1:52.457579254512744
          • UniqueID:914
        • type:Feature
        • id:915
          • type:Point
            • 0:13.23060615978385
            • 1:52.440179874383986
          • UniqueID:915
        • type:Feature
        • id:916
          • type:Point
            • 0:13.259620390600324
            • 1:52.418512709616465
          • UniqueID:916
        • type:Feature
        • id:917
          • type:Point
            • 0:13.270911364337078
            • 1:52.42267404656217
          • UniqueID:917
        • type:Feature
        • id:918
          • type:Point
            • 0:13.232509732507985
            • 1:52.41625578765369
          • UniqueID:918
        • type:Feature
        • id:919
          • type:Point
            • 0:13.288736427153363
            • 1:52.43996839291951
          • UniqueID:919
        • type:Feature
        • id:920
          • type:Point
            • 0:13.282431199573429
            • 1:52.42643121110833
          • UniqueID:920
        • type:Feature
        • id:921
          • type:Point
            • 0:13.257274335038705
            • 1:52.45031280493343
          • UniqueID:921
        • type:Feature
        • id:922
          • type:Point
            • 0:13.29373124962271
            • 1:52.47732878952584
          • UniqueID:922
        • type:Feature
        • id:923
          • type:Point
            • 0:13.240198798516026
            • 1:52.46166721742662
          • UniqueID:923
        • type:Feature
        • id:924
          • type:Point
            • 0:13.24721388287014
            • 1:52.4254583586449
          • UniqueID:924
        • type:Feature
        • id:925
          • type:Point
            • 0:13.235730363012369
            • 1:52.42501444346945
          • UniqueID:925
        • type:Feature
        • id:926
          • type:Point
            • 0:13.250013935760883
            • 1:52.43780050218229
          • UniqueID:926
        • type:Feature
        • id:927
          • type:Point
            • 0:13.268852810158354
            • 1:52.44018404360466
          • UniqueID:927
        • type:Feature
        • id:928
          • type:Point
            • 0:13.266063059559034
            • 1:52.472583861563415
          • UniqueID:928
        • type:Feature
        • id:929
          • type:Point
            • 0:13.24094411058251
            • 1:52.4350754947809
          • UniqueID:929
        • type:Feature
        • id:930
          • type:Point
            • 0:13.246760186171763
            • 1:52.46582785894198
          • UniqueID:930
        • type:Feature
        • id:931
          • type:Point
            • 0:13.300329349298378
            • 1:52.455403605566914
          • UniqueID:931
        • type:Feature
        • id:932
          • type:Point
            • 0:13.24038914133841
            • 1:52.44578291621487
          • UniqueID:932
        • type:Feature
        • id:933
          • type:Point
            • 0:13.277271950756766
            • 1:52.41954338914501
          • UniqueID:933
        • type:Feature
        • id:934
          • type:Point
            • 0:13.24019205835739
            • 1:52.42401451886068
          • UniqueID:934
        • type:Feature
        • id:935
          • type:Point
            • 0:13.289066802908819
            • 1:52.439241202125764
          • UniqueID:935
        • type:Feature
        • id:936
          • type:Point
            • 0:13.2273857036194
            • 1:52.456931266020355
          • UniqueID:936
        • type:Feature
        • id:937
          • type:Point
            • 0:13.231662994394735
            • 1:52.472673646477745
          • UniqueID:937
        • type:Feature
        • id:938
          • type:Point
            • 0:13.260759030755269
            • 1:52.483743432279475
          • UniqueID:938
        • type:Feature
        • id:939
          • type:Point
            • 0:13.227986791795132
            • 1:52.45410383044479
          • UniqueID:939
        • type:Feature
        • id:940
          • type:Point
            • 0:13.254097326827463
            • 1:52.479172191353015
          • UniqueID:940
        • type:Feature
        • id:941
          • type:Point
            • 0:13.225319862112528
            • 1:52.42508162150504
          • UniqueID:941
        • type:Feature
        • id:942
          • type:Point
            • 0:13.241927075151818
            • 1:52.47277564869052
          • UniqueID:942
        • type:Feature
        • id:943
          • type:Point
            • 0:13.216207678671513
            • 1:52.439582170978724
          • UniqueID:943
        • type:Feature
        • id:944
          • type:Point
            • 0:13.280965103545318
            • 1:52.467533770288114
          • UniqueID:944
        • type:Feature
        • id:945
          • type:Point
            • 0:13.282405423850332
            • 1:52.434251009406076
          • UniqueID:945
        • type:Feature
        • id:946
          • type:Point
            • 0:13.275762452009529
            • 1:52.46649718025496
          • UniqueID:946
        • type:Feature
        • id:947
          • type:Point
            • 0:13.227979996657059
            • 1:52.4603640675137
          • UniqueID:947
        • type:Feature
        • id:948
          • type:Point
            • 0:13.231850919841417
            • 1:52.46432891511454
          • UniqueID:948
        • type:Feature
        • id:949
          • type:Point
            • 0:13.22874115322478
            • 1:52.45426858676385
          • UniqueID:949
        • type:Feature
        • id:950
          • type:Point
            • 0:13.277263504674265
            • 1:52.42310205510851
          • UniqueID:950
        • type:Feature
        • id:951
          • type:Point
            • 0:13.22470894684565
            • 1:52.460013426778296
          • UniqueID:951
        • type:Feature
        • id:952
          • type:Point
            • 0:13.296089797231177
            • 1:52.479622279514224
          • UniqueID:952
        • type:Feature
        • id:953
          • type:Point
            • 0:13.255068077689362
            • 1:52.42828234177664
          • UniqueID:953
        • type:Feature
        • id:954
          • type:Point
            • 0:13.232646214095436
            • 1:52.423277984303446
          • UniqueID:954
        • type:Feature
        • id:955
          • type:Point
            • 0:13.298963356862672
            • 1:52.4278844676174
          • UniqueID:955
        • type:Feature
        • id:956
          • type:Point
            • 0:13.215693293312253
            • 1:52.48422620132668
          • UniqueID:956
        • type:Feature
        • id:957
          • type:Point
            • 0:13.251065207445931
            • 1:52.43717741268741
          • UniqueID:957
        • type:Feature
        • id:958
          • type:Point
            • 0:13.239348533440209
            • 1:52.41773521503963
          • UniqueID:958
        • type:Feature
        • id:959
          • type:Point
            • 0:13.253546197630275
            • 1:52.43461423355043
          • UniqueID:959
        • type:Feature
        • id:960
          • type:Point
            • 0:13.240158921003271
            • 1:52.48203348278437
          • UniqueID:960
        • type:Feature
        • id:961
          • type:Point
            • 0:13.239593130340001
            • 1:52.462765629066396
          • UniqueID:961
        • type:Feature
        • id:962
          • type:Point
            • 0:13.299802488280534
            • 1:52.45093514528138
          • UniqueID:962
        • type:Feature
        • id:963
          • type:Point
            • 0:13.256704067156521
            • 1:52.4260305310212
          • UniqueID:963
        • type:Feature
        • id:964
          • type:Point
            • 0:13.238447611775705
            • 1:52.47553553984442
          • UniqueID:964
        • type:Feature
        • id:965
          • type:Point
            • 0:13.219808658833784
            • 1:52.47438909468321
          • UniqueID:965
        • type:Feature
        • id:966
          • type:Point
            • 0:13.299066156068411
            • 1:52.48563226559533
          • UniqueID:966
        • type:Feature
        • id:967
          • type:Point
            • 0:13.300613978023327
            • 1:52.46758635847339
          • UniqueID:967
        • type:Feature
        • id:968
          • type:Point
            • 0:13.29117998084316
            • 1:52.43362571151253
          • UniqueID:968
        • type:Feature
        • id:969
          • type:Point
            • 0:13.219713121033521
            • 1:52.446326374026306
          • UniqueID:969
        • type:Feature
        • id:970
          • type:Point
            • 0:13.221280184648347
            • 1:52.432933861607744
          • UniqueID:970
        • type:Feature
        • id:971
          • type:Point
            • 0:13.259489853406842
            • 1:52.45780821543686
          • UniqueID:971
        • type:Feature
        • id:972
          • type:Point
            • 0:13.213999650693252
            • 1:52.48608136297972
          • UniqueID:972
        • type:Feature
        • id:973
          • type:Point
            • 0:13.264985315062408
            • 1:52.45441198550656
          • UniqueID:973
        • type:Feature
        • id:974
          • type:Point
            • 0:13.27564993050549
            • 1:52.43915205443586
          • UniqueID:974
        • type:Feature
        • id:975
          • type:Point
            • 0:13.254387102056459
            • 1:52.428385697624805
          • UniqueID:975
        • type:Feature
        • id:976
          • type:Point
            • 0:13.25122335484987
            • 1:52.422948674994615
          • UniqueID:976
        • type:Feature
        • id:977
          • type:Point
            • 0:13.26502458750207
            • 1:52.481708117583146
          • UniqueID:977
        • type:Feature
        • id:978
          • type:Point
            • 0:13.253350366252164
            • 1:52.416369785231446
          • UniqueID:978
        • type:Feature
        • id:979
          • type:Point
            • 0:13.287901460857352
            • 1:52.44114919960838
          • UniqueID:979
        • type:Feature
        • id:980
          • type:Point
            • 0:13.292237067081317
            • 1:52.467240549835886
          • UniqueID:980
        • type:Feature
        • id:981
          • type:Point
            • 0:13.244010795587668
            • 1:52.41853760298383
          • UniqueID:981
        • type:Feature
        • id:982
          • type:Point
            • 0:13.29293751108423
            • 1:52.477491173606175
          • UniqueID:982
        • type:Feature
        • id:983
          • type:Point
            • 0:13.292515100285321
            • 1:52.485693015965055
          • UniqueID:983
        • type:Feature
        • id:984
          • type:Point
            • 0:13.27550659877582
            • 1:52.45105983996468
          • UniqueID:984
        • type:Feature
        • id:985
          • type:Point
            • 0:13.29120905305513
            • 1:52.474746144622294
          • UniqueID:985
        • type:Feature
        • id:986
          • type:Point
            • 0:13.252598834198372
            • 1:52.464906489187015
          • UniqueID:986
        • type:Feature
        • id:987
          • type:Point
            • 0:13.292938860085643
            • 1:52.46997304432208
          • UniqueID:987
        • type:Feature
        • id:988
          • type:Point
            • 0:13.222246576083842
            • 1:52.47850260354722
          • UniqueID:988
        • type:Feature
        • id:989
          • type:Point
            • 0:13.264377113148946
            • 1:52.4387744828512
          • UniqueID:989
        • type:Feature
        • id:990
          • type:Point
            • 0:13.271976170808243
            • 1:52.459065714600584
          • UniqueID:990
        • type:Feature
        • id:991
          • type:Point
            • 0:13.248963522012994
            • 1:52.42961321629085
          • UniqueID:991
        • type:Feature
        • id:992
          • type:Point
            • 0:13.230256207332912
            • 1:52.47642332687743
          • UniqueID:992
        • type:Feature
        • id:993
          • type:Point
            • 0:13.28786215664712
            • 1:52.47851342832895
          • UniqueID:993
        • type:Feature
        • id:994
          • type:Point
            • 0:13.227653163516132
            • 1:52.465869481513614
          • UniqueID:994
        • type:Feature
        • id:995
          • type:Point
            • 0:13.273377286495446
            • 1:52.427858563869975
          • UniqueID:995
        • type:Feature
        • id:996
          • type:Point
            • 0:13.230064760371574
            • 1:52.48235822403012
          • UniqueID:996
        • type:Feature
        • id:997
          • type:Point
            • 0:13.219688114864947
            • 1:52.481601225033494
          • UniqueID:997
        • type:Feature
        • id:998
          • type:Point
            • 0:13.275080230877274
            • 1:52.44235414762006
          • UniqueID:998
        • type:Feature
        • id:999
          • type:Point
            • 0:13.27987008187485
            • 1:52.451333411363926
          • UniqueID:999

Prepare STM#

From our chapters on image classifications and image workflows in GEE we learned what STMs are and how we can use them. Here, we repeat many of these steps, while at the same time providing some smaller functions that you can incorporate in your library.

Specifically, we take all Landsat 8 and Landsat 9 imagery of the year 2023 with less than 70% cloud cover. We merge the images of these two satellites into one collection, mask and scale the data, and calculate basic STMs.

def ScaleMask_l89(img):
    ## Scale the bands
    refl   = img.select(['SR_B2', 'SR_B3', 'SR_B4', 'SR_B5', 'SR_B6', 'SR_B7']).multiply(0.0000275).add(-0.2)
    img_SR = ee.Image(refl).addBands(img.select(['QA_PIXEL']))
    ## mask cloud
    # Get the QA band and apply the bits
    qa = ee.Image(img_SR).select(['QA_PIXEL'])
    dilatedCloud = qa.bitwiseAnd(1 << 1)
    cirrusMask   = qa.bitwiseAnd(1 << 2)
    cloud        = qa.bitwiseAnd(1 << 3)
    cloudShadow  = qa.bitwiseAnd(1 << 4)
    snow         = qa.bitwiseAnd(1 << 5)
    water        = qa.bitwiseAnd(1 << 7)
    # Apply the bits
    clear = dilatedCloud.Or(cloud).Or(cloudShadow).eq(0)
    cfmask = (clear.eq(0).where(water.gt(0), 1)
        .where(snow.gt(0), 3)
        .where(dilatedCloud.Or(cloud).gt(0), 4)
        .where(cloudShadow.gt(0), 2)
        .rename('cfmask'))
    img_SR_cl = ee.Image(img_SR).select(['SR_B2', 'SR_B3', 'SR_B4', 'SR_B5', 'SR_B6', 'SR_B7']).mask(cfmask.lte(2))
    return img_SR_cl
# Get the collections, merge them
l8 = ee.ImageCollection("LANDSAT/LC08/C02/T1_L2")\
    .filterDate('2023-03-01', '2023-11-30').filter(ee.Filter.lt('CLOUD_COVER', 70)).filterBounds(geomEE)
l9 = ee.ImageCollection("LANDSAT/LC09/C02/T1_L2")\
    .filterDate('2022-03-01', '2023-11-30').filter(ee.Filter.lt('CLOUD_COVER', 70)).filterBounds(geomEE)
lAll = l8.merge(l9)
# Apply masking and filtering
lALL_masked = lAll.map(ScaleMask_l89)
# Define reducers
mean = ee.Reducer.mean().unweighted()
sd = ee.Reducer.stdDev().unweighted()
percentiles = ee.Reducer.percentile([10, 25, 50, 75, 90]).unweighted()
allMetrics = mean.combine(sd, sharedInputs=True).combine(percentiles, sharedInputs=True)
# Apply reducers
stm = lALL_masked.reduce(allMetrics)

We can check the outcome by having a quick look at the band names. I do that here by getting the band names for all metrics calculated for the blue band:

bn = stm.bandNames().getInfo()
bn[0:7]
['SR_B2_mean',
 'SR_B2_stdDev',
 'SR_B2_p10',
 'SR_B2_p25',
 'SR_B2_p50',
 'SR_B2_p75',
 'SR_B2_p90']

Prepare Land Cover variables#

That seemed to have worked well. In essence, we have now our independent variables prepared. As dependent variable - again: thematically not the most suitable case - we extract the label of the ESA World Cover, and add it as an additional band to the SMT image:

# Is an image collection from which we take the first image
esaWC21 = ee.ImageCollection("ESA/WorldCover/v200").select(['Map']).toBands()
# Add to the median composite
allRas = esaWC21.addBands(stm)

Extract values at the point locations#

Now that we have everything ready, we can extract the data for our point locations and store them on our computers. We use the function.sampleRegions() to do that. This function works well over smaller areas; for larger areas we need some workaround (see next chapter).

vals = allRas.sampleRegions(collection=fc, properties=['UniqueID'], scale=30, tileScale=4, geometries=False).getInfo()
#vals

the code box below then allows you to convert the json dictionary into a pandas data frame. It is probably not the smartest option/solution, but it does the job. Feel free to write us with a better option:

flag = 0
featureValues = vals['features']
for f in featureValues:         
 # Chekc here always the right order of the indices
    prop = f['properties']
    if flag == 0:
        out_pd = pd.DataFrame(prop, index=[0])
        flag = 1
    else:
        out_pd = pd.concat([out_pd, pd.DataFrame(prop, index=[0])])
out_pd.head(10)
2021_Map SR_B2_mean SR_B2_p10 SR_B2_p25 SR_B2_p50 SR_B2_p75 SR_B2_p90 SR_B2_stdDev SR_B3_mean SR_B3_p10 ... SR_B6_p90 SR_B6_stdDev SR_B7_mean SR_B7_p10 SR_B7_p25 SR_B7_p50 SR_B7_p75 SR_B7_p90 SR_B7_stdDev UniqueID
0 10 0.028306 0.018597 0.024840 0.028635 0.036197 0.040763 0.025688 0.047771 0.038425 ... 0.167455 0.036227 0.083280 0.053963 0.068867 0.091376 0.100589 0.105140 0.023167 0
0 50 0.036657 0.005947 0.029350 0.040515 0.049012 0.053825 0.016171 0.057013 0.016535 ... 0.196385 0.055205 0.091604 0.015600 0.071095 0.112372 0.122410 0.128213 0.038036 1
0 10 0.034006 0.021100 0.032485 0.038672 0.043595 0.047665 0.026872 0.057391 0.038892 ... 0.196990 0.038173 0.107042 0.072690 0.095515 0.115480 0.127085 0.131815 0.025410 2
0 10 0.026150 0.015408 0.019532 0.026119 0.031921 0.037751 0.008153 0.043462 0.030203 ... 0.156001 0.025951 0.076330 0.053041 0.065664 0.078011 0.089314 0.094718 0.015321 3
0 10 0.029545 0.004077 0.024070 0.031963 0.039470 0.043760 0.015874 0.048170 0.017030 ... 0.177163 0.044934 0.091166 0.064248 0.083085 0.099062 0.110447 0.119660 0.030530 4
0 10 0.033462 0.023300 0.035098 0.041560 0.048710 0.052835 0.033882 0.056933 0.042550 ... 0.199053 0.040876 0.114159 0.083112 0.102665 0.123455 0.134097 0.140835 0.029419 5
0 10 0.038473 0.026408 0.029955 0.041546 0.045932 0.051708 0.010142 0.055444 0.038123 ... 0.169820 0.030425 0.087320 0.062130 0.070242 0.093879 0.102555 0.107532 0.020293 6
0 10 0.039117 0.030752 0.036720 0.040818 0.046042 0.049122 0.011361 0.059865 0.048380 ... 0.161185 0.033179 0.095838 0.074918 0.085175 0.101730 0.110007 0.115783 0.023472 7
0 80 0.011843 -0.002275 0.010925 0.014651 0.021595 0.025775 0.017440 0.027680 0.012822 ... 0.037875 0.012331 0.016576 0.006662 0.012190 0.016480 0.018350 0.027177 0.009429 8
0 10 0.013181 0.001465 0.011200 0.016453 0.018542 0.027535 0.013549 0.034636 0.019065 ... 0.133217 0.033203 0.053111 0.032320 0.040378 0.052175 0.059435 0.065622 0.021263 9

10 rows × 44 columns

Parameterization in scikit-learn and conversion into GEE-classifier#

The data are ready. We can now move on with the parameterization and the prediction. We will use some pretty cool tools from the geemap, including the upload of trained trees beack into GEE. We use a random forest classifier to parameterize a model, similar to what we did in the machine learning session session.

from sklearn.model_selection import GridSearchCV
from sklearn.ensemble import RandomForestClassifier
# Create the two arrays
y = out_pd['2021_Map']
X = out_pd.drop(['2021_Map', 'UniqueID'], axis=1)
# Create a classifier instance
RF = RandomForestClassifier(random_state=1)
param_grid = {'n_estimators': [10, 25, 50, 75, 100],# 'numberOfTrees
              'max_features': [5, 10, 'sqrt'],# 'variablesPerSplit'
              'min_samples_split': [5, 10, 15], # minLeafPopulation
              'max_depth': [5, 10, 20]} # maxNodes
RF_cv = GridSearchCV(RF, param_grid=param_grid, cv=3, refit=True, n_jobs=4).fit(X, y)
best_mod = RF_cv.best_estimator_

Now, we apply a pretty cool part, implemented in the geemap package. What the two functions below are doing is that they (1) convert the random forest model into strings (i.e., the trees), (2) convert it into a feature collection, before (3) converting it into a ee.Classifer. For very large models with very long variable names the maximum size of 10MB per model might not be sufficient, but for the problem here it is fine.

Note

We have found a way to circumvent this problem, and some of it is related to the points we cover in the large-area-section!

from geemap import ml
feature_names = X.columns.tolist() # get the names of the variables
best_mod_str = ml.rf_to_strings(best_mod, feature_names)
ee_classifier = ml.strings_to_classifier(best_mod_str)
ee_classifier
    • type:Classifier.decisionTreeEnsemble
      • 0:1) root 641 9999 9999 (22.833329736236294) 2) SR_B7_p90 <= 0.138016 641 0.3244 10 4) SR_B5_p90 <= 0.262055 501 0.1855 10 8) SR_B4_p25 <= 0.014431 102 0.5430 10 16) SR_B4_stdDev <= 0.024481 10 0.0000 80 * 17) SR_B4_stdDev > 0.024481 1 0.0000 10 * 9) SR_B4_p25 > 0.014431 102 0.5430 10 18) SR_B4_mean <= 0.050185 91 0.4583 10 36) SR_B5_p25 <= 0.121186 49 0.2392 10 72) SR_B7_p50 <= 0.069218 5 0.0000 10 * 73) SR_B7_p50 > 0.069218 16 0.4764 10 146) SR_B2_p90 <= 0.040680 5 0.0000 50 * 147) SR_B2_p90 > 0.040680 11 0.4800 50 294) SR_B3_p50 <= 0.051749 4 0.0000 10 * 295) SR_B3_p50 > 0.051749 2 0.0000 50 * 37) SR_B5_p25 > 0.121186 49 0.2392 10 74) SR_B6_p90 <= 0.138216 33 0.0400 10 148) SR_B3_p25 <= 0.039993 6 0.0000 10 * 149) SR_B3_p25 > 0.039993 1 0.0000 50 * 75) SR_B6_p90 > 0.138216 26 0.0000 10 * 19) SR_B4_mean > 0.050185 91 0.4583 10 38) SR_B5_p10 <= 0.123881 42 0.4787 50 76) SR_B5_mean <= 0.180165 27 0.3141 50 152) SR_B2_p90 <= 0.042137 1 0.0000 10 * 153) SR_B2_p90 > 0.042137 14 0.0000 50 * 77) SR_B5_mean > 0.180165 27 0.3141 50 154) SR_B4_mean <= 0.062183 12 0.4753 50 308) SR_B4_p50 <= 0.057826 9 0.4861 10 616) SR_B2_p50 <= 0.038618 2 0.0000 10 * 617) SR_B2_p50 > 0.038618 3 0.0000 50 * 309) SR_B4_p50 > 0.057826 4 0.0000 10 * 155) SR_B4_mean > 0.062183 3 0.0000 50 * 39) SR_B5_p10 > 0.123881 42 0.4787 50 78) SR_B7_stdDev <= 0.022885 2 0.0000 50 * 79) SR_B7_stdDev > 0.022885 15 0.3512 10 158) SR_B5_p90 <= 0.221176 2 0.0000 50 * 159) SR_B5_p90 > 0.221176 13 0.2550 10 318) SR_B7_mean <= 0.090081 2 0.4444 10 * 319) SR_B7_mean > 0.090081 9 0.0000 10 * 5) SR_B5_p90 > 0.262055 501 0.1855 10 10) SR_B2_p50 <= 0.052931 399 0.0527 10 20) SR_B4_p25 <= 0.036362 398 0.0498 10 40) SR_B5_p25 <= 0.112950 3 0.4800 10 * 41) SR_B5_p25 > 0.112950 276 0.0000 10 * 21) SR_B4_p25 > 0.036362 398 0.0498 10 42) SR_B6_p75 <= 0.153953 119 0.1467 10 84) SR_B3_p75 <= 0.061718 16 0.3457 10 168) SR_B7_p75 <= 0.082549 2 0.5000 10 * 169) SR_B7_p75 > 0.082549 8 0.0000 10 * 85) SR_B3_p75 > 0.061718 16 0.3457 10 170) SR_B2_mean <= 0.033476 2 0.0000 50 * 171) SR_B2_mean > 0.033476 4 0.2778 10 * 43) SR_B6_p75 > 0.153953 119 0.1467 10 86) SR_B2_p75 <= 0.041821 103 0.1011 10 172) SR_B3_p50 <= 0.058191 47 0.1979 10 344) SR_B4_p25 <= 0.036417 1 0.0000 50 * 345) SR_B4_p25 > 0.036417 40 0.1027 10 690) SR_B4_mean <= 0.050758 31 0.0000 10 * 691) SR_B4_mean > 0.050758 39 0.0707 10 1382) SR_B4_p90 <= 0.070270 8 0.4062 10 2764) SR_B6_mean <= 0.141859 1 0.0000 30 * 2765) SR_B6_mean > 0.141859 6 0.0000 10 * 1383) SR_B4_p90 > 0.070270 1 0.0000 50 * 173) SR_B3_p50 > 0.058191 47 0.1979 10 346) SR_B3_mean <= 0.055139 3 0.3750 30 * 347) SR_B3_mean > 0.055139 4 0.0000 10 * 87) SR_B2_p75 > 0.041821 103 0.1011 10 174) SR_B6_stdDev <= 0.054746 53 0.0000 10 * 175) SR_B6_stdDev > 0.054746 3 0.3200 10 * 11) SR_B2_p50 > 0.052931 1 0.0000 50 * 3) SR_B7_p90 > 0.138016 641 0.3244 10 6) SR_B4_p90 <= 0.094518 140 0.5437 50 12) SR_B5_p75 <= 0.282714 87 0.4691 10 24) SR_B7_mean <= 0.126061 61 0.5212 10 48) SR_B4_p10 <= 0.020124 9 0.0000 10 * 49) SR_B4_p10 > 0.020124 50 0.5085 10 98) SR_B6_p90 <= 0.191242 41 0.5302 50 196) SR_B5_p25 <= 0.162732 7 0.0000 50 * 197) SR_B5_p25 > 0.162732 3 0.3750 10 * 99) SR_B6_p90 > 0.191242 41 0.5302 50 198) SR_B6_p25 <= 0.137865 31 0.5215 10 396) SR_B6_p50 <= 0.164011 17 0.3018 10 792) SR_B7_mean <= 0.101803 2 0.0000 10 * 793) SR_B7_mean > 0.101803 3 0.0000 50 * 397) SR_B6_p50 > 0.164011 17 0.3018 10 794) SR_B3_p25 <= 0.061167 11 0.0000 10 * 795) SR_B3_p25 > 0.061167 1 0.0000 50 * 199) SR_B6_p25 > 0.137865 31 0.5215 10 398) SR_B4_p75 <= 0.064488 1 0.0000 30 * 399) SR_B4_p75 > 0.064488 14 0.4938 50 798) SR_B4_p50 <= 0.071143 13 0.3750 50 1596) SR_B7_p25 <= 0.084666 1 0.0000 10 * 1597) SR_B7_p25 > 0.084666 11 0.2449 50 3194) SR_B6_p75 <= 0.201844 9 0.0000 50 * 3195) SR_B6_p75 > 0.201844 1 0.0000 10 * 799) SR_B4_p50 > 0.071143 2 0.0000 10 * 25) SR_B7_mean > 0.126061 11 0.0000 50 * 13) SR_B5_p75 > 0.282714 87 0.4691 10 26) SR_B5_p75 <= 0.414893 26 0.1166 10 52) SR_B5_p50 <= 0.238989 1 0.0000 50 * 53) SR_B5_p50 > 0.238989 25 0.0799 10 106) SR_B3_p50 <= 0.066592 17 0.0000 10 * 107) SR_B3_p50 > 0.066592 24 0.0416 10 214) SR_B3_mean <= 0.063325 1 0.0000 50 * 215) SR_B3_mean > 0.063325 6 0.0000 10 * 27) SR_B5_p75 > 0.414893 1 0.0000 30 * 7) SR_B4_p90 > 0.094518 140 0.5437 50 14) SR_B2_p25 <= 0.041450 53 0.3717 50 28) SR_B5_p75 <= 0.341757 26 0.5429 50 56) SR_B4_p50 <= 0.084488 24 0.4429 50 112) SR_B5_p25 <= 0.151235 15 0.5714 50 224) SR_B3_mean <= 0.050912 1 0.0000 10 * 225) SR_B3_mean > 0.050912 5 0.0000 50 * 113) SR_B5_p25 > 0.151235 15 0.5714 50 226) SR_B3_p75 <= 0.076031 3 0.5000 30 * 227) SR_B3_p75 > 0.076031 9 0.5694 10 454) SR_B3_mean <= 0.070985 4 0.0000 10 * 455) SR_B3_mean > 0.070985 2 0.5000 10 * 57) SR_B4_p50 > 0.084488 9 0.0000 50 * 29) SR_B5_p75 > 0.341757 2 0.0000 40 * 15) SR_B2_p25 > 0.041450 53 0.3717 50 30) SR_B7_mean <= 0.198066 27 0.1446 50 60) SR_B5_p10 <= 0.164499 24 0.0000 50 * 61) SR_B5_p10 > 0.164499 2 0.5000 10 * 31) SR_B7_mean > 0.198066 1 0.0000 10 *
      • 1:1) root 614 9999 9999 (21.503702335033484) 2) SR_B4_p50 <= 0.067396 614 0.3697 10 4) SR_B5_p25 <= 0.120210 515 0.2242 10 8) SR_B3_mean <= 0.046532 39 0.6244 40 16) SR_B5_mean <= 0.070925 7 0.0000 50 * 17) SR_B5_mean > 0.070925 21 0.5350 10 34) SR_B5_stdDev <= 0.073604 7 0.0000 10 * 35) SR_B5_stdDev > 0.073604 14 0.3806 10 70) SR_B7_stdDev <= 0.024035 3 0.3750 50 * 71) SR_B7_stdDev > 0.024035 4 0.3200 10 * 9) SR_B3_mean > 0.046532 39 0.6244 40 18) SR_B7_p50 <= 0.069218 1 0.0000 10 * 19) SR_B7_p50 > 0.069218 18 0.1284 40 38) SR_B7_stdDev <= 0.029688 3 0.3200 40 * 39) SR_B7_stdDev > 0.029688 14 0.0000 40 * 5) SR_B5_p25 > 0.120210 515 0.2242 10 10) SR_B4_p25 <= 0.046758 476 0.1507 10 20) SR_B3_p90 <= 0.088874 395 0.0687 10 40) SR_B2_p90 <= 0.044186 394 0.0630 10 80) SR_B5_p50 <= 0.194281 310 0.0119 10 160) SR_B5_p50 <= 0.194102 18 0.1855 10 320) SR_B7_p25 <= 0.071693 13 0.0000 10 * 321) SR_B7_p25 > 0.071693 4 0.3457 10 * 161) SR_B5_p50 > 0.194102 1 0.0000 40 * 81) SR_B5_p50 > 0.194281 292 0.0000 10 * 41) SR_B2_p90 > 0.044186 394 0.0630 10 82) SR_B7_p50 <= 0.087602 84 0.2209 10 164) SR_B7_p90 <= 0.113582 20 0.4444 10 328) SR_B4_p25 <= 0.045637 12 0.0000 10 * 329) SR_B4_p25 > 0.045637 1 0.0000 40 * 165) SR_B7_p90 > 0.113582 20 0.4444 10 330) SR_B5_mean <= 0.219754 2 0.0000 40 * 331) SR_B5_mean > 0.219754 7 0.6633 30 662) SR_B4_p25 <= 0.031014 2 0.0000 10 * 663) SR_B4_p25 > 0.031014 3 0.0000 30 * 83) SR_B7_p50 > 0.087602 84 0.2209 10 166) SR_B6_p90 <= 0.164774 64 0.1212 10 332) SR_B4_p75 <= 0.059435 4 0.3200 10 * 333) SR_B4_p75 > 0.059435 1 0.0000 40 * 167) SR_B6_p90 > 0.164774 64 0.1212 10 334) SR_B4_p25 <= 0.041890 25 0.0000 10 * 335) SR_B4_p25 > 0.041890 59 0.0932 10 670) SR_B4_p50 <= 0.049143 1 0.0000 40 * 671) SR_B4_p50 > 0.049143 34 0.1576 10 1342) SR_B2_p50 <= 0.030911 1 0.0000 40 * 1343) SR_B2_p50 > 0.030911 33 0.1014 10 2686) SR_B7_p25 <= 0.080789 18 0.0000 10 * 2687) SR_B7_p25 > 0.080789 32 0.0701 10 5374) SR_B3_stdDev <= 0.024966 14 0.1800 10 10748) SR_B4_p25 <= 0.043753 6 0.0000 10 * 10749) SR_B4_p25 > 0.043753 13 0.0997 10 21498) SR_B2_p75 <= 0.041698 1 0.0000 40 * 21499) SR_B2_p75 > 0.041698 6 0.0000 10 * 5375) SR_B3_stdDev > 0.024966 1 0.0000 40 * 21) SR_B3_p90 > 0.088874 1 0.0000 30 * 11) SR_B4_p25 > 0.046758 476 0.1507 10 22) SR_B7_p75 <= 0.135706 81 0.4494 10 44) SR_B2_stdDev <= 0.013041 60 0.5120 10 88) SR_B5_p25 <= 0.158717 2 0.3750 40 * 89) SR_B5_p25 > 0.158717 20 0.3223 10 178) SR_B2_stdDev <= 0.008001 1 0.0000 30 * 179) SR_B2_stdDev > 0.008001 17 0.0000 10 * 45) SR_B2_stdDev > 0.013041 60 0.5120 10 90) SR_B4_p90 <= 0.073584 40 0.4966 40 180) SR_B3_p90 <= 0.071329 3 0.4082 40 * 181) SR_B3_p90 > 0.071329 12 0.0000 10 * 91) SR_B4_p90 > 0.073584 40 0.4966 40 182) SR_B3_p50 <= 0.060205 3 0.0000 10 * 183) SR_B3_p50 > 0.060205 25 0.4050 40 366) SR_B4_p75 <= 0.073274 22 0.3200 40 732) SR_B5_p25 <= 0.203384 13 0.0000 40 * 733) SR_B5_p25 > 0.203384 1 0.0000 10 * 367) SR_B4_p75 > 0.073274 22 0.3200 40 734) SR_B4_p25 <= 0.053646 3 0.4444 40 * 735) SR_B4_p25 > 0.053646 5 0.0000 10 * 23) SR_B7_p75 > 0.135706 81 0.4494 10 46) SR_B6_p90 <= 0.243795 17 0.0000 10 * 47) SR_B6_p90 > 0.243795 4 0.3200 10 * 3) SR_B4_p50 > 0.067396 614 0.3697 10 6) SR_B5_p75 <= 0.256239 99 0.4232 40 12) SR_B4_p90 <= 0.080789 3 0.4800 10 * 13) SR_B4_p90 > 0.080789 57 0.1732 40 26) SR_B3_stdDev <= 0.011145 2 0.0000 10 * 27) SR_B3_stdDev > 0.011145 54 0.1257 40 54) SR_B2_p25 <= 0.024716 1 0.0000 10 * 55) SR_B2_p25 > 0.024716 52 0.0877 40 110) SR_B3_p50 <= 0.059916 1 0.0000 10 * 111) SR_B3_p50 > 0.059916 51 0.0673 40 222) SR_B5_p25 <= 0.191916 50 0.0460 40 444) SR_B3_p90 <= 0.083601 46 0.0253 40 888) SR_B2_p50 <= 0.048765 9 0.0000 40 * 889) SR_B2_p50 > 0.048765 2 0.3750 40 * 445) SR_B3_p90 > 0.083601 35 0.0000 40 * 223) SR_B5_p25 > 0.191916 4 0.2449 40 * 7) SR_B5_p75 > 0.256239 99 0.4232 40 14) SR_B4_p90 <= 0.096120 42 0.5918 40 28) SR_B5_p90 <= 0.297585 19 0.3893 10 56) SR_B5_p10 <= 0.086413 1 0.0000 10 * 57) SR_B5_p10 > 0.086413 4 0.2188 40 * 29) SR_B5_p90 > 0.297585 19 0.3893 10 58) SR_B6_p75 <= 0.203858 14 0.1472 10 116) SR_B6_p50 <= 0.179624 3 0.0000 10 * 117) SR_B6_p50 > 0.179624 2 0.0000 40 * 59) SR_B6_p75 > 0.203858 9 0.0000 10 * 15) SR_B4_p90 > 0.096120 42 0.5918 40 30) SR_B3_p75 <= 0.106254 23 0.4861 40 60) SR_B2_stdDev <= 0.014488 2 0.0000 30 * 61) SR_B2_stdDev > 0.014488 14 0.6667 40 122) SR_B6_p90 <= 0.205845 1 0.0000 10 * 123) SR_B6_p90 > 0.205845 12 0.6016 40 246) SR_B5_p10 <= 0.179101 11 0.5408 40 492) SR_B2_p90 <= 0.074725 6 0.0000 40 * 493) SR_B2_p90 > 0.074725 2 0.5000 10 * 247) SR_B5_p10 > 0.179101 3 0.6250 30 * 31) SR_B3_p75 > 0.106254 9 0.0000 40 *
      • 2:1) root 638 9999 9999 (22.672185793313957) 2) SR_B2_p25 <= 0.035923 638 0.3686 10 4) SR_B5_p50 <= 0.201177 543 0.2487 10 8) SR_B3_p50 <= 0.028140 8 0.0000 50 * 9) SR_B3_p50 > 0.028140 90 0.5829 10 18) SR_B3_stdDev <= 0.024209 82 0.4951 10 36) SR_B3_p75 <= 0.068840 53 0.4246 10 72) SR_B3_p10 <= 0.030106 46 0.3265 10 144) SR_B4_p10 <= 0.030065 31 0.1172 10 288) SR_B5_p75 <= 0.133651 1 0.0000 40 * 289) SR_B5_p75 > 0.133651 28 0.0000 10 * 145) SR_B4_p10 > 0.030065 2 0.4444 40 * 73) SR_B3_p10 > 0.030106 46 0.3265 10 146) SR_B7_p50 <= 0.099956 15 0.4992 10 292) SR_B3_mean <= 0.051833 11 0.4654 40 584) SR_B2_p25 <= 0.022014 1 0.0000 40 * 585) SR_B2_p25 > 0.022014 5 0.0000 10 * 293) SR_B3_mean > 0.051833 5 0.0000 40 * 147) SR_B7_p50 > 0.099956 4 0.0000 10 * 37) SR_B3_p75 > 0.068840 53 0.4246 10 74) SR_B2_p90 <= 0.052216 3 0.4444 40 * 75) SR_B2_p90 > 0.052216 4 0.0000 40 * 19) SR_B3_stdDev > 0.024209 82 0.4951 10 38) SR_B5_p50 <= 0.190019 29 0.4055 40 76) SR_B2_stdDev <= 0.015168 3 0.0000 10 * 77) SR_B2_stdDev > 0.015168 20 0.2509 40 154) SR_B4_stdDev <= 0.047322 14 0.0000 40 * 155) SR_B4_stdDev > 0.047322 3 0.4444 40 * 39) SR_B5_p50 > 0.190019 29 0.4055 40 78) SR_B6_p10 <= 0.056506 1 0.0000 40 * 79) SR_B6_p10 > 0.056506 9 0.4444 10 158) SR_B4_stdDev <= 0.030619 6 0.0000 10 * 159) SR_B4_stdDev > 0.030619 2 0.0000 40 * 5) SR_B5_p50 > 0.201177 543 0.2487 10 10) SR_B4_mean <= 0.052069 453 0.1231 10 20) SR_B3_p75 <= 0.061979 367 0.0439 10 40) SR_B3_p10 <= 0.042481 312 0.0081 10 80) SR_B7_p50 <= 0.090751 284 0.0000 10 * 81) SR_B7_p50 > 0.090751 311 0.0041 10 162) SR_B4_p25 <= 0.036198 27 0.0487 10 324) SR_B7_p50 <= 0.090977 1 0.0000 40 * 325) SR_B7_p50 > 0.090977 6 0.0000 10 * 163) SR_B4_p25 > 0.036198 20 0.0000 10 * 41) SR_B3_p10 > 0.042481 1 0.0000 30 * 21) SR_B3_p75 > 0.061979 367 0.0439 10 42) SR_B6_p90 <= 0.160223 3 0.4444 40 * 43) SR_B6_p90 > 0.160223 55 0.2234 10 86) SR_B5_mean <= 0.224323 52 0.1591 10 172) SR_B7_mean <= 0.091591 18 0.2706 10 344) SR_B6_p90 <= 0.175574 5 0.0000 10 * 345) SR_B6_p90 > 0.175574 11 0.4861 10 690) SR_B5_p75 <= 0.263925 3 0.4444 10 * 691) SR_B5_p75 > 0.263925 3 0.0000 40 * 173) SR_B7_mean > 0.091591 7 0.0000 10 * 87) SR_B5_mean > 0.224323 52 0.1591 10 174) SR_B6_p75 <= 0.188534 24 0.0000 10 * 175) SR_B6_p75 > 0.188534 34 0.0754 10 350) SR_B6_mean <= 0.162453 4 0.4800 10 * 351) SR_B6_mean > 0.162453 6 0.0000 10 * 11) SR_B4_mean > 0.052069 453 0.1231 10 22) SR_B5_p25 <= 0.169298 86 0.4095 10 44) SR_B4_stdDev <= 0.026968 26 0.4996 40 88) SR_B5_p75 <= 0.292222 17 0.4527 10 176) SR_B3_p90 <= 0.070435 2 0.0000 40 * 177) SR_B3_p90 > 0.070435 14 0.2550 10 354) SR_B7_mean <= 0.123760 11 0.0000 10 * 355) SR_B7_mean > 0.123760 1 0.0000 40 * 89) SR_B5_p75 > 0.292222 3 0.0000 40 * 45) SR_B4_stdDev > 0.026968 26 0.4996 40 90) SR_B5_p50 <= 0.214782 3 0.4444 40 * 91) SR_B5_p50 > 0.214782 6 0.0000 40 * 23) SR_B5_p25 > 0.169298 86 0.4095 10 46) SR_B6_p50 <= 0.232933 60 0.2775 10 92) SR_B2_mean <= 0.033293 57 0.2134 10 184) SR_B7_stdDev <= 0.020312 1 0.0000 10 * 185) SR_B7_stdDev > 0.020312 4 0.0000 40 * 93) SR_B2_mean > 0.033293 57 0.2134 10 186) SR_B4_p50 <= 0.052409 1 0.0000 30 * 187) SR_B4_p50 > 0.052409 52 0.1205 10 374) SR_B5_stdDev <= 0.087812 51 0.0756 10 748) SR_B4_p90 <= 0.068716 4 0.3750 10 * 749) SR_B4_p90 > 0.068716 48 0.0533 10 1498) SR_B7_p10 <= 0.049714 44 0.0286 10 2996) SR_B2_p90 <= 0.052106 2 0.5000 10 * 2997) SR_B2_p90 > 0.052106 5 0.0000 10 * 1499) SR_B7_p10 > 0.049714 37 0.0000 10 * 375) SR_B5_stdDev > 0.087812 3 0.3750 10 * 47) SR_B6_p50 > 0.232933 3 0.0000 30 * 3) SR_B2_p25 > 0.035923 638 0.3686 10 6) SR_B2_p25 <= 0.043870 95 0.4382 40 12) SR_B3_stdDev <= 0.026167 63 0.5204 40 24) SR_B6_p75 <= 0.175478 44 0.5445 10 48) SR_B5_p25 <= 0.168170 11 0.3047 40 96) SR_B5_p50 <= 0.212816 10 0.2311 40 192) SR_B6_stdDev <= 0.027686 1 0.0000 10 * 193) SR_B6_stdDev > 0.027686 8 0.0000 40 * 97) SR_B5_p50 > 0.212816 1 0.0000 10 * 49) SR_B5_p25 > 0.168170 1 0.0000 10 * 25) SR_B6_p75 > 0.175478 44 0.5445 10 50) SR_B4_p50 <= 0.082067 33 0.5136 10 100) SR_B5_p10 <= 0.185206 28 0.4197 10 200) SR_B4_p10 <= 0.062460 26 0.3200 10 400) SR_B6_p50 <= 0.163990 25 0.2907 10 800) SR_B6_stdDev <= 0.043728 4 0.0000 40 * 801) SR_B6_stdDev > 0.043728 1 0.0000 10 * 401) SR_B6_p50 > 0.163990 25 0.2907 10 802) SR_B4_p25 <= 0.061113 13 0.0000 10 * 803) SR_B4_p25 > 0.061113 20 0.1327 10 1606) SR_B7_p90 <= 0.158050 3 0.4444 40 * 1607) SR_B7_p90 > 0.158050 4 0.0000 10 * 201) SR_B4_p10 > 0.062460 1 0.0000 40 * 101) SR_B5_p10 > 0.185206 2 0.4444 30 * 51) SR_B4_p50 > 0.082067 5 0.0000 40 * 13) SR_B3_stdDev > 0.026167 63 0.5204 40 26) SR_B5_p90 <= 0.353561 16 0.0000 40 * 27) SR_B5_p90 > 0.353561 3 0.6250 10 * 7) SR_B2_p25 > 0.043870 95 0.4382 40 14) SR_B7_p75 <= 0.252856 32 0.1752 40 28) SR_B5_p25 <= 0.226291 30 0.0776 40 56) SR_B4_mean <= 0.078718 29 0.0400 40 112) SR_B6_p90 <= 0.212968 4 0.0000 40 * 113) SR_B6_p90 > 0.212968 1 0.0000 30 * 57) SR_B4_mean > 0.078718 24 0.0000 40 * 29) SR_B5_p25 > 0.226291 1 0.0000 10 * 15) SR_B7_p75 > 0.252856 2 0.4444 10 *
      • 3:1) root 615 9999 9999 (20.118541236119068) 2) SR_B7_p50 <= 0.134132 615 0.3738 10 4) SR_B5_mean <= 0.192392 565 0.2932 10 8) SR_B6_p90 <= 0.094566 11 0.0000 50 * 9) SR_B6_p90 > 0.094566 103 0.5945 40 18) SR_B4_p75 <= 0.061807 92 0.4998 40 36) SR_B4_p75 <= 0.052986 39 0.2741 10 72) SR_B3_stdDev <= 0.017269 21 0.0605 10 144) SR_B5_mean <= 0.160550 1 0.0000 40 * 145) SR_B5_mean > 0.160550 8 0.0000 10 * 73) SR_B3_stdDev > 0.017269 12 0.0000 10 * 37) SR_B4_p75 > 0.052986 39 0.2741 10 74) SR_B7_mean <= 0.078075 2 0.0000 40 * 75) SR_B7_mean > 0.078075 18 0.4281 10 150) SR_B7_p75 <= 0.100135 4 0.2778 40 * 151) SR_B7_p75 > 0.100135 16 0.3550 10 302) SR_B7_p90 <= 0.129533 10 0.0000 10 * 303) SR_B7_p90 > 0.129533 2 0.5000 10 * 19) SR_B4_p75 > 0.061807 92 0.4998 40 38) SR_B3_p50 <= 0.054004 4 0.0000 10 * 39) SR_B3_p50 > 0.054004 53 0.3904 40 78) SR_B5_p25 <= 0.120024 17 0.0000 40 * 79) SR_B5_p25 > 0.120024 49 0.3484 40 158) SR_B3_p10 <= 0.024084 4 0.0000 10 * 159) SR_B3_p10 > 0.024084 32 0.4592 40 318) SR_B3_p25 <= 0.042248 2 0.0000 10 * 319) SR_B3_p25 > 0.042248 28 0.3898 40 638) SR_B2_p90 <= 0.060672 26 0.2975 40 1276) SR_B5_p25 <= 0.127401 3 0.4800 10 * 1277) SR_B5_p25 > 0.127401 16 0.0000 40 * 639) SR_B2_p90 > 0.060672 26 0.2975 40 1278) SR_B2_p50 <= 0.049810 3 0.0000 10 * 1279) SR_B2_p50 > 0.049810 4 0.0000 40 * 5) SR_B5_mean > 0.192392 565 0.2932 10 10) SR_B5_p90 <= 0.262440 462 0.1444 10 20) SR_B4_p25 <= 0.045259 13 0.0000 10 * 21) SR_B4_p25 > 0.045259 29 0.4352 10 42) SR_B7_p50 <= 0.125352 16 0.4234 40 84) SR_B4_mean <= 0.063253 14 0.3200 40 168) SR_B3_p75 <= 0.068386 2 0.0000 40 * 169) SR_B3_p75 > 0.068386 3 0.0000 10 * 85) SR_B4_mean > 0.063253 14 0.3200 40 170) SR_B6_p25 <= 0.154743 7 0.0000 40 * 171) SR_B6_p25 > 0.154743 2 0.5000 10 * 43) SR_B7_p50 > 0.125352 2 0.0000 10 * 11) SR_B5_p90 > 0.262440 462 0.1444 10 22) SR_B3_p25 <= 0.047995 433 0.1135 10 44) SR_B5_p50 <= 0.234521 332 0.0303 10 88) SR_B5_p25 <= 0.113830 1 0.0000 50 * 89) SR_B5_p25 > 0.113830 83 0.1139 10 178) SR_B6_stdDev <= 0.018591 1 0.0000 40 * 179) SR_B6_stdDev > 0.018591 82 0.1004 10 358) SR_B5_p50 <= 0.234273 81 0.0874 10 716) SR_B7_p90 <= 0.154386 80 0.0458 10 1432) SR_B3_p50 <= 0.061896 77 0.0315 10 2864) SR_B3_mean <= 0.054304 64 0.0000 10 * 2865) SR_B3_mean > 0.054304 74 0.0169 10 5730) SR_B2_p25 <= 0.026064 2 0.5000 10 * 5731) SR_B2_p25 > 0.026064 8 0.0000 10 * 1433) SR_B3_p50 > 0.061896 3 0.2188 10 * 717) SR_B7_p90 > 0.154386 3 0.4444 10 * 359) SR_B5_p50 > 0.234273 1 0.0000 40 * 45) SR_B5_p50 > 0.234521 249 0.0000 10 * 23) SR_B3_p25 > 0.047995 433 0.1135 10 46) SR_B5_p50 <= 0.333294 101 0.3319 10 92) SR_B4_stdDev <= 0.018324 98 0.3010 10 184) SR_B5_stdDev <= 0.057123 41 0.0263 10 368) SR_B6_p50 <= 0.174186 10 0.0000 10 * 369) SR_B6_p50 > 0.174186 1 0.0000 30 * 185) SR_B5_stdDev > 0.057123 30 0.0000 10 * 93) SR_B4_stdDev > 0.018324 98 0.3010 10 186) SR_B7_p75 <= 0.124252 57 0.4612 10 372) SR_B7_p50 <= 0.087526 2 0.0000 30 * 373) SR_B7_p50 > 0.087526 25 0.6113 10 746) SR_B5_p75 <= 0.273371 23 0.5208 10 1492) SR_B7_p25 <= 0.088723 8 0.3911 40 2984) SR_B7_p25 <= 0.074601 1 0.0000 10 * 2985) SR_B7_p25 > 0.074601 5 0.0000 40 * 1493) SR_B7_p25 > 0.088723 2 0.0000 10 * 747) SR_B5_p75 > 0.273371 23 0.5208 10 1494) SR_B4_p25 <= 0.049356 15 0.3950 10 2988) SR_B4_stdDev <= 0.020392 1 0.0000 40 * 2989) SR_B4_stdDev > 0.020392 12 0.2400 10 5978) SR_B5_p10 <= 0.162244 8 0.0000 10 * 5979) SR_B5_p10 > 0.162244 3 0.4444 10 * 1495) SR_B4_p25 > 0.049356 3 0.4800 40 * 187) SR_B7_p75 > 0.124252 57 0.4612 10 374) SR_B2_p25 <= 0.027377 1 0.0000 40 * 375) SR_B2_p25 > 0.027377 32 0.2408 10 750) SR_B7_stdDev <= 0.047005 31 0.1866 10 1500) SR_B4_p10 <= 0.003734 1 0.0000 40 * 1501) SR_B4_p10 > 0.003734 30 0.1557 10 3002) SR_B4_p90 <= 0.094731 29 0.1219 10 6004) SR_B5_p50 <= 0.283478 20 0.0000 10 * 6005) SR_B5_p50 > 0.283478 3 0.4444 10 * 3003) SR_B4_p90 > 0.094731 29 0.1219 10 6006) SR_B5_p25 <= 0.182381 2 0.0000 40 * 6007) SR_B5_p25 > 0.182381 4 0.0000 10 * 751) SR_B7_stdDev > 0.047005 1 0.0000 40 * 47) SR_B5_p50 > 0.333294 3 0.3750 30 * 3) SR_B7_p50 > 0.134132 615 0.3738 10 6) SR_B5_p75 <= 0.342101 50 0.3399 40 12) SR_B2_p90 <= 0.062054 47 0.2606 40 24) SR_B2_mean <= 0.040484 15 0.5307 40 48) SR_B6_stdDev <= 0.066031 10 0.3629 40 96) SR_B2_stdDev <= 0.013958 1 0.0000 10 * 97) SR_B2_stdDev > 0.013958 7 0.0000 40 * 49) SR_B6_stdDev > 0.066031 2 0.0000 30 * 25) SR_B2_mean > 0.040484 15 0.5307 40 50) SR_B2_p25 <= 0.044200 4 0.0000 10 * 51) SR_B2_p25 > 0.044200 1 0.0000 40 * 13) SR_B2_p90 > 0.062054 32 0.0000 40 * 7) SR_B5_p75 > 0.342101 3 0.4800 30 *
      • 4:1) root 621 9999 9999 (22.7922741185705) 2) SR_B2_p50 <= 0.043650 621 0.3551 10 4) SR_B4_p75 <= 0.064990 516 0.2157 10 8) SR_B7_p75 <= 0.044750 430 0.1299 10 16) SR_B2_p90 <= 0.017676 1 0.0000 10 * 17) SR_B2_p90 > 0.017676 9 0.0000 50 * 9) SR_B7_p75 > 0.044750 430 0.1299 10 18) SR_B5_p90 <= 0.246380 420 0.0944 10 36) SR_B3_mean <= 0.054206 35 0.3599 10 72) SR_B3_p10 <= 0.030381 31 0.2550 10 144) SR_B5_p50 <= 0.167036 4 0.4444 10 * 145) SR_B5_p50 > 0.167036 19 0.0000 10 * 73) SR_B3_p10 > 0.030381 31 0.2550 10 146) SR_B2_p90 <= 0.040212 3 0.0000 40 * 147) SR_B2_p90 > 0.040212 8 0.4970 10 294) SR_B3_mean <= 0.046077 1 0.0000 40 * 295) SR_B3_mean > 0.046077 4 0.0000 10 * 37) SR_B3_mean > 0.054206 4 0.2188 40 * 19) SR_B5_p90 > 0.246380 420 0.0944 10 38) SR_B3_p25 <= 0.051453 385 0.0552 10 76) SR_B4_p75 <= 0.052477 371 0.0372 10 152) SR_B6_stdDev <= 0.026120 255 0.0050 10 304) SR_B4_p50 <= 0.022874 2 0.5000 10 * 305) SR_B4_p50 > 0.022874 24 0.0000 10 * 153) SR_B6_stdDev > 0.026120 229 0.0000 10 * 77) SR_B4_p75 > 0.052477 371 0.0372 10 154) SR_B6_p10 <= 0.030148 1 0.0000 40 * 155) SR_B6_p10 > 0.030148 116 0.1062 10 310) SR_B5_mean <= 0.218768 115 0.0966 10 620) SR_B2_p10 <= 0.027095 58 0.1923 10 1240) SR_B4_p90 <= 0.076911 54 0.1172 10 2480) SR_B4_p50 <= 0.049171 52 0.0973 10 4960) SR_B3_mean <= 0.053074 24 0.2130 10 9920) SR_B3_p90 <= 0.073281 18 0.0000 10 * 9921) SR_B3_p90 > 0.073281 2 0.5000 10 * 4961) SR_B3_mean > 0.053074 4 0.4800 40 * 2481) SR_B4_p50 > 0.049171 28 0.0000 10 * 1241) SR_B4_p90 > 0.076911 2 0.5000 10 * 621) SR_B2_p10 > 0.027095 4 0.6111 30 * 311) SR_B5_mean > 0.218768 57 0.0000 10 * 39) SR_B3_p25 > 0.051453 385 0.0552 10 78) SR_B5_stdDev <= 0.094885 14 0.4600 10 156) SR_B4_p90 <= 0.076705 13 0.3045 10 312) SR_B7_mean <= 0.103059 10 0.0000 10 * 313) SR_B7_mean > 0.103059 2 0.4444 40 * 157) SR_B4_p90 > 0.076705 1 0.0000 30 * 79) SR_B5_stdDev > 0.094885 1 0.0000 30 * 5) SR_B4_p75 > 0.064990 516 0.2157 10 10) SR_B5_p90 <= 0.254080 86 0.5220 10