In [1]:
import GetPropertiesAPI as GP
import BuildConsolidatedFeaturesFile as BCF
import importlib
importlib.reload(GP)
importlib.reload(BCF)
import csv
import json
import pandas as pd
import folium
from folium.plugins import MarkerCluster
from folium import plugins
import statistics as s
In [2]:
BCF.buildExifFeatureFl("../data/all_imgs_expt2.csv","../data/imgs_exif_data_expt2.json")
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-2-15f2555573ab> in <module>()
----> 1 BCF.buildExifFeatureFl("../data/all_imgs_expt2.csv","../data/imgs_exif_data_expt2.json")
/Users/sreejithmenon/Google Drive/CodeBase/AWESOME/script/BuildConsolidatedFeaturesFile.py in buildExifFeatureFl(inp, outFL, isInpFl)
84 'size' : size[i]
85 }
---> 86 for i in range(0,len(gids))}
87
88 with open(outFL,"w") as outFl:
/Users/sreejithmenon/Google Drive/CodeBase/AWESOME/script/BuildConsolidatedFeaturesFile.py in <dictcomp>(.0)
84 'size' : size[i]
85 }
---> 86 for i in range(0,len(gids))}
87
88 with open(outFL,"w") as outFl:
/Users/sreejithmenon/Google Drive/CodeBase/AWESOME/script/GetPropertiesAPI.py in getUnixTimeReadableFmt(unixtm)
74 # Modified to take into consideration daylight saving changes (now uses utcfromtimestamp method)
75 def getUnixTimeReadableFmt(unixtm):
---> 76 return datetime.datetime.utcfromtimestamp(int(unixtm)).strftime('%Y-%m-%d %H:%M:%S')
77
78 # Method for executing GET request for the GGR dataset
TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'
In [18]:
with open("../data/ggr_gid_uuid_exif_ftr_map.json","r") as inFl:
imgProps = json.load(inFl)
In [19]:
gidExifDf = pd.DataFrame(imgProps).transpose()
gidExifDf.reset_index(inplace=True)
# gidExifDf.columns = ['GID',"contributor", 'datetime', 'lat','long' ]
# gidExifDf[['GID']] = gidExifDf[['GID']].apply(pd.to_numeric)
In [20]:
gidExifDf.head()
Out[20]:
index
contributor
datetime
height
lat
long
orientation
width
0
00035379-6f25-15e1-b984-7a915ae80a2a
GGR,50,A,00220
2016-01-30 14:23:39
3456
0.456715
36.7774
1
4608
1
0004a0fc-157d-a44e-9fc0-8ef61a7c756c
GGR,75,D,01268
2016-02-01 10:14:15
3648
-1
-1
1
5472
2
0004b3f7-6fe7-4fd3-4dcb-bd180b6da607
GGR,113,A,00123
2016-01-30 13:06:01
3456
0.677527
36.6032
1
4608
3
0006f0c6-1dfe-a73c-ec62-a613ce1a1ea7
GGR,20,A,00151
2016-01-31 15:59:07
3456
0.29773
36.934
1
4608
4
00074c81-95b2-1d8e-f428-decf62881e8c
GGR,15,A,00242
2016-01-30 09:47:02
3456
0.44139
36.9364
1
4608
In [ ]:
with open("../FinalResults/rankListImages_expt2.csv","r") as inFl:
gidResultsDf = pd.DataFrame.from_csv(inFl)
gidResultsDf.reset_index(inplace=True)
In [ ]:
df = pd.merge(gidExifDf,gidResultsDf,left_on='GID',right_on='GID')
In [7]:
d = df.to_dict()['Proportion']
bin_shr = {}
for key in d.keys():
if d[key] <= 20:
bin_shr[key] = 0
elif d[key] >= 80:
bin_shr[key] = 1
D = df.to_dict()
D['bin_shr'] = bin_shr
df = pd.DataFrame.from_dict(D)
unshared = df[(df['bin_shr'] == 0)]
unshared = unshared[['lat','long']]
shared = df[(df['bin_shr'] == 1)]
shared = shared[['lat','long']]
In [35]:
shared_lats = list(shared['lat'])
shared_longs = list(shared['long'])
map_loc = folium.Map(location=[-1.369212, 36.848628],tiles='Stamen Terrain',zoom_start=12)
for i in range(0,len(shared_lats)):
folium.Marker([shared_lats[i],shared_longs[i]],
icon=folium.Icon(color='green',icon='info-sign')
).add_to(map_loc)
unshared_lats = list(unshared['lat'])
unshared_longs = list(unshared['long'])
for i in range(0,len(unshared_lats)):
folium.Marker([unshared_lats[i],unshared_longs[i]],
icon=folium.Icon(color='red',icon='info-sign')
).add_to(map_loc)
map_loc.save(outfile='../FinalResults/ClickLocations.html')
In [34]:
# Shared Data Clusters
cluster_map = folium.Map(location=[-1.369212, 36.848628],tiles='Stamen Terrain',zoom_start=11)
marker_cluster = folium.MarkerCluster("Shares").add_to(cluster_map)
for i in range(0,len(shared_lats)):
folium.Marker([shared_lats[i],shared_longs[i]],
icon=folium.Icon(color='green',icon='info-sign'),
popup="Shared"
).add_to(marker_cluster)
cluster_map.save(outfile='../FinalResults/ShareLocationClusters.html')
# Not Shared Data Clusters
cluster_map2 = folium.Map(location=[-1.369212, 36.848628],tiles='Stamen Terrain',zoom_start=11)
marker_cluster2 = folium.MarkerCluster("Not Shares").add_to(cluster_map2)
for i in range(0,len(unshared_lats)):
folium.Marker([unshared_lats[i],unshared_longs[i]],
icon=folium.Icon(color='red',icon='info-sign'),
popup="Not Shared"
).add_to(marker_cluster2)
cluster_map2.save(outfile='../FinalResults/NotShareLocationClusters.html')
In [8]:
a,b = list(shared.lat),list(shared.long)
c,d = list(unshared.lat),list(unshared.long)
locs_shared = [[a[i],b[i]] for i in range(len(a))]
locs_unshared = [[c[i],d[i]] for i in range(len(c))]
In [32]:
heatmap_map = folium.Map(location=[-1.369212, 36.848628],tiles='Stamen Terrain', zoom_start=12)
hm = plugins.HeatMap(locs_shared)
heatmap_map.add_children(hm)
heatmap_map.save("../FinalResults/heatMap_Shared.html")
In [33]:
heatmap_map = folium.Map(location=[-1.369212, 36.848628],tiles='Stamen Terrain', zoom_start=12)
hm = plugins.HeatMap(locs_unshared)
heatmap_map.add_children(hm)
heatmap_map.save("../FinalResults/heatMap_NotShared.html")
In [21]:
gidExifDf.head()
lats = list(gidExifDf.lat)
longs = list(gidExifDf.long)
In [22]:
lat_long = [(lats[i], longs[i]) for i in range(len(gidExifDf)) if lats[i] != -1 and longs[i] != -1]
In [23]:
heatmap_map = folium.Map(location=[-1.369212, 36.848628],tiles='Stamen Terrain', zoom_start=12)
hm = plugins.HeatMap(lat_long)
heatmap_map.add_children(hm)
heatmap_map.save("/tmp/heatMap_GGR.html")
In [10]:
Out[10]:
[(0.45671500000000004, 36.77743833333333),
(0.6775266666666666, 36.603185),
(0.29773, 36.93400166666666),
(0.44139, 36.9364),
(0.562685, 37.652995),
(1.960555, 37.177665),
(0.7909533333333333, 36.87558833333333),
(0.28001166666666666, 36.931394999999995),
(0.2929116666666667, 36.929275),
(0.46725, 36.87580333333334),
(0.9137466666666667, 37.30333666666667),
(0.3482883333333333, 36.88266),
(0.3506883333333333, 36.962325),
(0.46675833333333333, 36.87657),
(0.534945, 37.020179999999996),
(0.43737166666666666, 36.999735),
(0.19504833333333332, 36.887928333333335),
(0.36514166666666664, 36.918715),
(0.6573583333333334, 37.086185),
(0.80791, 37.328673333333334),
(0.32003666666666664, 36.88845666666666),
(0.7367999999999999, 36.78498166666667),
(0.2911433333333333, 37.06274166666666),
(0.9600566666666667, 36.6917),
(0.6924183333333334, 36.763325),
(0.5850566666666667, 37.581610000000005),
(0.45128500000000005, 36.864711666666665),
(0.02844, 36.95276833333334),
(0.6917533333333333, 36.763585),
(0.365455, 36.90149),
(0.5827183333333333, 37.56290666666666),
(0.9530216666666667, 36.80981333333333),
(0.028429999999999997, 36.95274833333334),
(0.4657233333333333, 36.877111666666664),
(0.5348233333333333, 37.01996),
(0.53018, 36.86843833333333),
(0.45421333333333336, 36.96137),
(0.4009783333333334, 36.971565000000005),
(0.458725, 36.881858333333334),
(0.6689666666666666, 36.82025166666667),
(0.100355, 36.732506666666666),
(0.4646516666666667, 36.876705),
(0.45980666666666664, 36.88459),
(0.5621550000000001, 37.652726666666666),
(0.3236716666666667, 36.904136666666666),
(0.6599483333333334, 37.088515),
(0.5069216666666667, 36.84894333333334),
(0.10240333333333333, 36.7321),
(0.6744066666666666, 36.73947666666667),
(0.18652833333333332, 37.413916666666665),
(0.6589033333333334, 37.08746),
(0.37254166666666666, 36.90432333333333),
(0.50437, 36.84803),
(0.4711766666666667, 36.80854166666666),
(0.7296750000000001, 36.75767833333333),
(0.5609850000000001, 37.64897),
(0.5658383333333333, 37.655588333333334),
(0.298015, 36.931221666666666),
(0.5609050000000001, 37.649233333333335),
(0.34015833333333334, 36.95273166666667),
(0.8124600000000001, 37.32717),
(1.87772, 37.612206666666665),
(0.6923816666666667, 37.103805),
(0.44061666666666666, 36.98640666666667),
(0.353305, 37.04953333333333),
(0.747555, 37.399346666666666),
(1.5701533333333333, 37.811845),
(0.18153666666666665, 37.452905),
(0.17791166666666666, 37.45355833333333),
(0.4947533333333333, 37.44014),
(0.18149833333333332, 37.402546666666666),
(0.17251333333333332, 37.45340166666667),
(0.62646, 37.63686333333333),
(0.6208366666666667, 37.63831666666667),
(0.738965, 36.66930833333333),
(0.3650783333333333, 37.010216666666665),
(0.20524833333333334, 37.420919999999995),
(0.63967, 36.893483333333336),
(0.2875833333333333, 36.922905),
(0.29112666666666664, 37.062711666666665),
(0.49381166666666665, 37.439706666666666),
(1.8452033333333335, 37.91977),
(0.47003333333333336, 36.87627166666667),
(0.9867349999999999, 37.213903333333334),
(0.8088833333333334, 37.33042833333334),
(0.5963516666666667, 36.867745),
(0.3955466666666667, 36.91585833333333),
(0.68746, 36.75348833333334),
(0.17891166666666666, 37.487458333333336),
(0.7391833333333333, 36.83750166666667),
(0.3396183333333333, 37.016373333333334),
(0.9846499999999999, 37.20274666666667),
(0.416125, 36.99063833333334),
(0.7534516666666666, 36.80934),
(0.3873916666666667, 36.890323333333335),
(0.32205666666666666, 36.88654666666667),
(0.7474483333333333, 37.357751666666665),
(0.3877083333333333, 36.910088333333334),
(1.87194, 37.90876333333333),
(0.3651216666666666, 36.91909833333333),
(0.8079133333333334, 37.32868666666667),
(0.5259699999999999, 36.863548333333334),
(0.77284, 37.35362166666667),
(0.28658833333333333, 36.92335666666666),
(0.81947, 37.33489),
(0.37133499999999997, 36.91189333333333),
(0.7455999999999999, 37.96749666666667),
(1.9073149999999999, 37.599988333333336),
(0.2840866666666667, 36.884915),
(0.351145, 36.88267),
(0.7416283333333333, 37.35835333333333),
(0.46980833333333333, 36.77552166666666),
(0.73891, 36.669055),
(0.40225, 36.971445),
(0.10766333333333333, 36.778598333333335),
(0.6840583333333333, 36.75541833333333),
(1.6777699999999998, 36.87244666666667),
(1.0287833333333334, 36.720890000000004),
(0.34252499999999997, 36.90797833333333),
(0.9780816666666666, 37.32190666666666),
(0.8123516666666667, 37.32728666666667),
(0.387815, 36.88988166666667),
(0.27888833333333335, 36.88982166666666),
(0.46610333333333337, 36.87662666666667),
(0.43015833333333336, 36.92543666666666),
(0.8047683333333334, 37.33722166666667),
(0.6863933333333333, 36.665565),
(0.34312666666666664, 36.908028333333334),
(0.35570666666666667, 37.02853833333333),
(1.8705766666666668, 37.99693),
(0.2066, 37.487995),
(0.8932, 37.118811666666666),
(0.19158166666666665, 37.469838333333335),
(1.022865, 37.87459333333334),
(0.3864716666666667, 36.893715),
(0.501135, 36.84966166666667),
(0.5494166666666668, 36.822475),
(0.39086, 36.8642),
(0.28423166666666666, 36.910623333333334),
(0.39489, 36.96159666666667),
(1.8722816666666666, 37.908788333333334),
(0.10786833333333334, 36.779765),
(0.5637316666666667, 37.65438833333333),
(0.6727416666666667, 37.15566833333333),
(0.6844266666666666, 36.774343333333334),
(0.35556166666666666, 37.014775),
(0.18948666666666666, 37.47080833333334),
(0.3655333333333333, 37.03935166666667),
(0.5579566666666667, 37.64861166666667),
(0.8078983333333334, 37.32870166666667),
(0.02909833333333333, 36.95647166666667),
(0.35289166666666666, 36.89359833333333),
(0.4549333333333333, 36.95520333333333),
(0.46599666666666667, 36.877246666666665),
(0.2989616666666667, 36.905586666666665),
(0.6743516666666667, 36.74661666666667),
(0.3379683333333333, 37.07186333333334),
(0.9787666666666667, 37.32512666666667),
(0.6405816666666666, 37.82385666666667),
(0.36359166666666665, 36.89766),
(0.6172666666666667, 37.73959666666667),
(0.3069633333333333, 36.881865),
(0.390195, 36.96197166666667),
(0.7974466666666667, 37.33596),
(1.57133, 37.81160166666666),
(0.7216333333333333, 36.83968333333333),
(0.376115, 36.98330666666667),
(0.231215, 37.39584333333333),
(0.735525, 36.78716333333333),
(0.38650666666666667, 36.89371),
(1.9074366666666667, 37.61269166666667),
(0.6744, 36.739488333333334),
(0.48628666666666664, 36.863591666666665),
(0.377099, 36.929572),
(0.9584383333333333, 36.695944999999995),
(0.028448333333333332, 36.95278666666667),
(0.02844666666666667, 36.95278833333334),
(0.49385833333333334, 37.43964166666667),
(0.29009833333333335, 36.932673333333334),
(0.6558166666666667, 37.087295000000005),
(0.360515, 36.7753),
(0.9618966666666666, 36.693571666666664),
(0.7228016666666667, 36.67816),
(0.34868, 37.080263333333335),
(0.48026, 37.423919999999995),
(0.6750433333333333, 36.743045),
(0.501135, 36.84966166666667),
(0.10052000000000001, 36.73271166666667),
(0.422175, 36.899715),
(0.18146666666666667, 37.453223333333334),
(0.7392983333333333, 37.353855),
(1.8881583333333332, 37.91365),
(0.8436750000000001, 37.30640333333333),
(0.9463833333333334, 36.70432166666667),
(0.3884183333333333, 36.918575),
(0.9787516666666666, 37.323188333333334),
(0.7473266666666666, 36.78409),
(0.3046733333333333, 37.069175),
(0.530865, 36.86855),
(0.28176666666666667, 36.892381666666665),
(0.19924499999999998, 37.42457833333333),
(0.2715066666666667, 36.99171333333334),
(0.5518583333333333, 37.65370166666666),
(0.372585, 36.90429666666667),
(0.46697, 36.877003333333334),
(0.4546766666666667, 36.778755),
(0.48530833333333334, 36.94020666666666),
(0.38781166666666667, 36.889885),
(0.902155, 37.30877),
(0.8146800000000001, 36.85335666666667),
(0.40330000000000005, 36.97111666666667),
(0.7465983333333333, 37.400725),
(0.21962833333333334, 37.433301666666665),
(0.392335, 36.98328333333333),
(0.029075, 36.95559333333333),
(0.9819866666666667, 36.60238833333334),
(0.6840516666666667, 36.75539833333333),
(0.9787816666666667, 37.323185),
(0.20571333333333336, 37.421115),
(0.7398316666666667, 36.809574999999995),
(0.4345816666666667, 36.91405666666667),
(0.5169883333333334, 36.857728333333334),
(0.7872183333333334, 37.35207333333334),
(0.4371716666666667, 36.99968166666667),
(0.37409, 36.86794),
(0.29678333333333334, 36.90257),
(0.472335, 36.809335),
(0.3883166666666667, 36.91866833333333),
(0.38781166666666667, 36.88977833333333),
(0.5899066666666667, 37.603563333333334),
(0.34792999999999996, 36.88321833333333),
(0.48419, 37.43198333333333),
(0.348995, 36.883705),
(0.37785166666666664, 36.86656),
(0.5745716666666667, 36.868285),
(0.7780433333333334, 37.354396666666666),
(0.9662266666666666, 36.699329999999996),
(0.9610249999999999, 36.69365333333333),
(0.9888199999999999, 37.194424999999995),
(0.21641666666666667, 37.429275),
(0.20701, 36.90457833333333),
(0.7370899999999999, 36.79190666666666),
(0.43505166666666667, 36.880405),
(0.355196, 37.013907),
(0.2795666666666667, 36.95058),
(0.7713016666666668, 37.35724833333334),
(0.286585, 36.92335166666666),
(0.341095, 36.900063333333335),
(0.29778666666666664, 36.93084833333333),
(0.29010166666666665, 36.93268333333333),
(1.8661583333333334, 36.879711666666665),
(0.69238, 37.103805),
(0.101305, 36.733041666666665),
(0.484745, 36.939431666666664),
(0.2801633333333333, 36.951465000000006),
(0.7597866666666667, 37.35831),
(0.8091750000000001, 37.33211),
(0.3615083333333333, 37.010958333333335),
(0.3352866666666666, 36.96707833333333),
(0.20372333333333334, 37.48873666666667),
(0.7023866666666666, 36.769745),
(0.808285, 37.33067),
(0.8835583333333333, 37.107175),
(0.36449166666666666, 37.038845),
(0.6750816666666666, 36.54996166666667),
(0.47136333333333336, 36.808748333333334),
(0.30433333333333334, 36.96261833333334),
(0.3806983333333333, 36.92326666666666),
(0.38781333333333334, 36.88988833333333),
(0.28955, 36.93161),
(0.6209416666666667, 37.662351666666666),
(0.4549316666666667, 36.955215),
(0.6891183333333334, 36.75943),
(0.7386683333333333, 37.353725),
(0.33623166666666665, 36.958455),
(0.6548683333333334, 36.73298666666667),
(0.772835, 37.353606666666664),
(0.34911, 36.88245),
(0.8966983333333333, 37.09372666666667),
(0.8302616666666667, 37.31739833333334),
(0.35989, 36.774296666666665),
(0.6213433333333334, 37.738063333333336),
(0.10242666666666667, 36.73210666666667),
(0.33845166666666665, 37.071443333333335),
(0.43260166666666666, 36.91748333333333),
(0.831505, 37.31642166666666),
(0.2899233333333333, 36.93157),
(0.902155, 37.30877),
(0.8967016666666666, 37.093695000000004),
(0.323225, 36.90398833333333),
(0.38793, 36.9161),
(1.7711599999999998, 37.670341666666666),
(0.46676333333333336, 36.876575),
(0.47875, 36.77778166666667),
(0.5734016666666667, 37.55159666666666),
(0.45317833333333335, 36.73614166666667),
(0.30172666666666664, 36.92958833333333),
(0.9819816666666666, 36.602395),
(1.8923666666666668, 37.91149166666667),
(0.3401433333333333, 36.95276333333334),
(0.42673333333333335, 37.046365),
(0.333225, 36.95639833333334),
(0.41758666666666666, 36.81904666666667),
(0.80791, 37.328673333333334),
(1.915595, 37.602961666666666),
(0.6172833333333334, 36.862285),
(0.36902999999999997, 36.9797),
(0.4696416666666667, 36.87824666666667),
(0.5103233333333334, 36.845191666666665),
(0.35092166666666663, 37.075995000000006),
(0.89356, 37.11776833333333),
(0.5335366666666667, 37.43738),
(0.73734, 36.78538833333333),
(0.36760666666666664, 37.475163333333334),
(0.8931233333333333, 37.115895),
(0.5007916666666666, 37.430369999999996),
(0.3474633333333333, 36.951526666666666),
(0.8932366666666667, 37.11899666666667),
(0.354955, 36.88525333333333),
(0.28045166666666665, 36.93084833333333),
(0.8302616666666667, 37.31739833333334),
(0.8966983333333333, 37.09372833333334),
(0.978745, 37.323185),
(1.8657066666666668, 37.910828333333335),
(0.73734, 36.785379999999996),
(0.3634566666666667, 36.897643333333335),
(0.43801833333333334, 36.75497333333333),
(0.73734, 36.80052166666666),
(0.965695, 36.69932166666666),
(0.6758883333333333, 37.56843333333334),
(0.7963333333333333, 37.33899666666667),
(0.3845066666666667, 36.89098666666666),
(0.8715700000000001, 37.314341666666664),
(0.18149666666666667, 37.402541666666664),
(0.18238, 37.45301833333333),
(0.19219666666666665, 37.46904),
(0.42729, 36.778441666666666),
(0.74705, 37.35800833333334),
(1.8703566666666667, 37.912351666666666),
(0.285815, 36.92619833333333),
(0.38445333333333337, 36.890925),
(0.626525, 37.633225),
(1.7164466666666667, 37.75297833333333),
(0.28106, 36.92948166666667),
(2.1692916666666666, 36.908091666666664),
(0.381147, 36.981186),
(0.199235, 37.424569999999996),
(0.47247666666666666, 36.78041833333333),
(0.29778666666666664, 36.93084833333333),
(0.35078, 37.07432),
(0.27675833333333333, 36.953525000000006),
(0.41782833333333336, 36.935159999999996),
(0.750185, 37.36244166666667),
(0.38650666666666667, 36.89371),
(0.9142416666666667, 37.30299),
(0.5510483333333334, 37.65508666666666),
(0.319915, 36.88852833333333),
(0.6218566666666667, 37.63741),
(0.36819999999999997, 36.87103166666667),
(0.19154166666666667, 37.4698),
(0.32366666666666666, 36.904061666666664),
(0.437535, 36.944125),
(0.7974033333333334, 37.336515000000006),
(0.29034166666666666, 36.92272666666666),
(0.9893216666666667, 37.20461),
(0.5823483333333334, 37.57985333333334),
(1.8735983333333333, 37.61248166666667),
(0.46515666666666666, 36.877388333333336),
(0.5838083333333334, 37.65902166666667),
(0.28177833333333335, 36.93066333333333),
(0.2923866666666667, 36.89825166666667),
(0.36499333333333334, 36.919125),
(0.67167, 36.837073333333336),
(0.2643783333333333, 36.950071666666666),
(0.735235, 36.786991666666665),
(0.38637333333333335, 36.96785333333334),
(0.3848816666666667, 36.891958333333335),
(0.29331, 36.930971666666665),
(0.7203766666666667, 36.83979666666667),
(0.10010833333333334, 36.73136),
(0.01719666666666667, 37.08593),
(0.6733199999999999, 36.739761666666666),
(0.10787166666666667, 36.77977),
(0.349085, 36.883073333333336),
(0.18878333333333333, 37.44133333333333),
(0.807915, 37.32866666666667),
(0.9264316666666667, 37.300601666666665),
(0.6954866666666667, 36.84757166666667),
(0.9127683333333334, 37.09339666666667),
(0.738215, 36.66836),
(1.916815, 37.60089666666667),
(0.27673, 36.95346666666667),
(0.19016, 37.46678166666667),
(0.6823466666666667, 36.743805),
(0.8420916666666667, 37.306646666666666),
(0.3864216666666667, 36.893638333333335),
(0.373825, 36.994566),
(0.9933533333333333, 37.176674999999996),
(0.432985, 36.914971666666666),
(0.43801833333333334, 36.75497166666667),
(0.2890166666666667, 36.891101666666664),
(0.7372883333333333, 36.83653),
(0.36771666666666664, 36.92293),
(0.27892666666666666, 36.92308833333333),
(0.37253, 36.90437333333333),
(0.31021666666666664, 36.907785),
(0.027286666666666667, 36.90296333333333),
(0.29208, 36.8982),
(1.906915, 37.599175),
(0.18455666666666665, 36.841925),
(0.9880099999999999, 37.20191166666667),
(0.7987783333333334, 36.70979166666667),
(0.6897783333333334, 36.756238333333336),
(1.8722716666666668, 37.908789999999996),
(0.7365933333333333, 36.78374),
(0.6924266666666666, 36.67671333333333),
(0.43439833333333333, 36.92211833333333),
(0.5850850000000001, 37.54736666666666),
(0.32076, 36.878375),
(0.5821633333333334, 37.65989833333333),
(0.01719666666666667, 37.08593),
(1.8452000000000002, 37.91976666666667),
(0.59552, 36.87989666666667),
(0.6896133333333333, 36.7562),
(0.7219566666666667, 36.779378333333334),
(0.6677183333333333, 36.82154833333334),
(0.7459116666666666, 37.41681333333333),
(0.7715216666666668, 37.35703),
(0.38561833333333334, 36.884206666666664),
(0.75346, 36.80933833333333),
(0.27346666666666664, 36.92792333333333),
(0.664925, 37.908161666666665),
(0.670315, 36.73771833333333),
(0.3864683333333333, 36.89369166666667),
(0.7679183333333334, 37.35414166666666),
(0.7256283333333333, 36.75570666666667),
(0.6784549999999999, 36.59969666666667),
(0.7425716666666666, 36.801159999999996),
(0.10224333333333334, 36.73206833333334),
(0.238505, 37.51767),
(0.3312633333333333, 36.986111666666666),
(0.281425, 36.930555),
(0.246365, 36.96416166666667),
(0.7050733333333333, 36.71109666666667),
(0.9088350000000001, 37.08048),
(0.2896066666666667, 36.95135333333334),
(0.35167, 37.07496166666667),
(0.4942283333333333, 37.44159166666666),
(0.4233983333333334, 37.045026666666665),
(0.9164800000000001, 37.10333),
(0.3612583333333333, 37.005563333333335),
(0.9927883333333333, 37.1697),
(0.9787549999999999, 37.32317666666667),
(0.7480183333333333, 37.37161666666667),
(0.5246466666666667, 36.86153),
(0.27961166666666665, 36.95158333333334),
(0.40203, 36.95262833333334),
(0.029365, 36.951750000000004),
(0.28864666666666666, 36.890838333333335),
(0.530875, 36.86839666666667),
(0.68445, 36.76170333333334),
(0.7391733333333332, 36.78226166666666),
(0.282225, 36.93129833333333),
(0.28067, 36.93127),
(0.3488483333333333, 37.026313333333334),
(0.41904, 36.60099),
(0.29894333333333334, 36.93096),
(0.6826883333333333, 36.74700833333333),
(0.20712833333333333, 36.90444166666666),
(0.8766033333333334, 37.30160166666667),
(0.6398666666666666, 37.82286166666667),
(0.8315116666666668, 37.31641333333334),
(0.4702733333333333, 36.776415),
(0.6844883333333334, 36.702690000000004),
(0.330845, 36.899193333333336),
(0.44714000000000004, 36.96473166666667),
(0.4646516666666667, 36.876705),
(0.66403, 37.07815666666667),
(0.36346333333333336, 36.89756833333333),
(0.07174, 36.96125833333333),
(0.23703333333333335, 36.903348333333334),
(0.8942516666666667, 37.11745),
(0.33747, 36.958515000000006),
(0.3670083333333333, 36.921081666666666),
(0.9876216666666666, 37.20291666666667),
(1.868315, 37.90951833333333),
(0.3491183333333333, 36.882445),
(0.5007566666666666, 36.852115000000005),
(0.07173166666666667, 36.961240000000004),
(0.36514166666666664, 36.918715),
(0.30585166666666663, 36.79523666666667),
(0.292, 36.89845),
(0.7636783333333333, 37.356045),
(0.6565933333333334, 36.73182833333333),
(0.36505499999999996, 36.91896333333333),
(0.8809216666666667, 37.108095),
(0.029083333333333336, 36.955573333333334),
(0.47024, 36.77701),
(0.5586733333333334, 37.64915666666666),
(0.9424750000000001, 36.806155),
(0.6611583333333334, 37.91536166666666),
(0.30351, 37.05963166666666),
(0.17412833333333333, 37.453405000000004),
(0.35009166666666663, 37.073675),
(0.35006, 37.07464),
(0.6775166666666667, 36.60313),
(0.3751366666666666, 36.924261666666666),
(0.3370533333333333, 36.95352666666667),
(0.350665, 36.96234666666667),
(0.6576516666666666, 37.08885333333333),
(0.8124600000000001, 37.327178333333336),
(0.75298, 37.348405),
(0.40339833333333336, 36.97733),
(0.8199266666666667, 37.33360833333334),
(0.42554166666666665, 36.83609833333333),
(0.8100933333333333, 37.331435000000006),
(0.349085, 36.882713333333335),
(0.29356, 36.92953),
(0.7729833333333334, 37.33725166666667),
(0.5636300000000001, 37.654289999999996),
(0.4007666666666667, 36.97188833333333),
(0.5016266666666667, 36.84653),
(0.41890666666666665, 36.899741666666664),
(0.4029416666666667, 36.971223333333334),
(0.3768283333333333, 36.98247333333334),
(0.6640316666666667, 37.078155),
(0.654865, 36.73218833333333),
(0.48482000000000003, 36.93960499999999),
(0.3863816666666667, 36.96786),
(0.6776083333333333, 36.60323),
(0.3376283333333333, 36.84548),
(0.40090333333333333, 36.97137),
(0.6024366666666666, 36.885133333333336),
(0.2806533333333333, 36.931275),
(0.2924866666666667, 36.898505),
(0.506905, 36.850605),
(0.6411399999999999, 37.82295333333334),
(0.353983, 37.015916),
(0.3512583333333333, 37.075545000000005),
(0.44814166666666666, 36.95886166666667),
(0.46848666666666666, 36.876915000000004),
(1.8558766666666668, 36.85590666666667),
(0.07171166666666666, 36.961218333333335),
(0.298305, 36.90041),
(0.38950333333333337, 36.888843333333334),
(1.8657083333333335, 37.98464833333333),
(0.5007433333333333, 36.85211666666667),
(0.2816883333333333, 36.928914999999996),
(0.738595, 36.79696166666667),
(0.4027233333333334, 36.98238333333334),
(0.28573166666666666, 37.05159),
(0.28175, 36.92659166666667),
(0.5257533333333334, 36.84919),
(0.18083666666666665, 37.475836666666666),
(0.757645, 37.348355000000005),
(0.301275, 36.91199833333334),
(0.670925, 36.73804),
(0.3435333333333333, 36.90839333333333),
(0.6679716666666666, 36.746895),
(0.657465, 37.08836166666667),
(0.17823333333333333, 37.39328),
(0.27718166666666666, 36.890388333333334),
(0.280745, 36.88964333333333),
(0.7365799999999999, 36.79054),
(0.31632166666666667, 36.90745833333333),
(0.32492333333333334, 37.06108),
(0.28016, 36.95227833333333),
(1.87361, 37.612500000000004),
(0.5637566666666667, 37.65441666666666),
(0.3556233333333333, 37.014561666666665),
(0.029603333333333336, 36.95027833333334),
(0.029386666666666665, 36.95175166666667),
(0.27602166666666667, 36.95242666666667),
(0.41902666666666666, 36.600968333333334),
(0.41897833333333334, 36.90013333333333),
(1.77683, 37.67938833333333),
(0.4007016666666667, 36.97186333333334),
(0.3714883333333333, 36.904016666666664),
(0.8100916666666667, 37.331435000000006),
(0.533525, 37.43738),
(0.2887533333333333, 36.890876666666664),
(0.6742433333333333, 36.55089666666667),
(0.363435, 36.897621666666666),
(0.3646583333333333, 36.980023333333335),
(1.8452033333333335, 37.91977),
(0.2857483333333333, 37.05163666666667),
(0.44143333333333334, 36.93223),
(0.45305833333333334, 37.025953333333334),
(0.67424, 36.55089666666667),
(0.36960166666666666, 36.92357666666666),
(0.9121483333333333, 37.098525),
(0.28843, 36.917213333333336),
(0.6803816666666667, 36.744036666666666),
(0.33769166666666667, 36.84543666666667),
(0.299775, 36.93100666666666),
(0.015705, 36.902318333333334),
(1.0383633333333335, 37.12428333333333),
(0.3670083333333333, 36.922815),
(0.9142416666666667, 37.30299),
(0.8936166666666666, 37.11779666666667),
(0.282505, 36.931174999999996),
(0.5635616666666667, 37.65426),
(0.443875, 36.80642833333333),
(0.276765, 36.93908),
(0.290305, 36.89112333333333),
(0.32261833333333334, 36.90078333333333),
(0.3232383333333333, 36.90398),
(0.36353166666666664, 36.89754),
(0.28742833333333334, 36.946859999999994),
(1.7497483333333335, 37.7386),
(0.2858366666666667, 36.923876666666665),
(0.7416216666666666, 37.358365),
(0.45425499999999996, 36.87162),
(0.34828499999999996, 36.88265666666667),
(0.37266166666666667, 36.904471666666666),
(0.4549333333333333, 36.95520333333333),
(0.5903633333333334, 37.603633333333335),
(0.18708833333333333, 37.387143333333334),
(0.349085, 36.883073333333336),
(0.46548333333333336, 36.87762333333333),
(0.44277, 36.93591),
(0.9928133333333333, 37.16824666666666),
(0.3649983333333333, 36.919125),
(0.8877966666666667, 37.11123166666667),
(0.6757183333333333, 36.552789999999995),
(0.2790916666666667, 36.889788333333335),
(0.4006716666666667, 36.97136833333334),
(1.531955, 37.75244),
(0.5103966666666666, 36.85315666666666),
(0.19302166666666665, 37.44938),
(0.34313666666666665, 36.908031666666666),
(0.377099, 36.929572),
(0.5330466666666667, 37.440871666666666),
(0.7143916666666666, 36.71988),
(0.2871366666666667, 36.92380166666667),
(0.6400049999999999, 37.763531666666665),
(0.76408, 37.35551),
(0.27052333333333334, 36.930236666666666),
(0.4421316666666667, 36.985418333333335),
(0.43695, 36.93525666666666),
(0.3725733333333333, 36.99798666666667),
(0.8060316666666667, 37.33680666666667),
(0.011635000000000001, 36.90111666666667),
(0.1842933333333333, 37.47228833333334),
(0.43505166666666667, 36.880405),
(0.3710783333333333, 37.004751666666664),
(0.35020666666666667, 36.881611666666664),
(0.290885, 36.93055555555555),
(0.47635666666666665, 36.77649),
(0.3236716666666667, 36.904136666666666),
(0.2734783333333333, 36.92770833333333),
(0.45672666666666667, 36.777451666666664),
(0.7403083333333333, 37.359073333333335),
(0.9023733333333334, 37.308856666666664),
(0.8068633333333334, 37.331138333333335),
(0.6597583333333333, 37.08828833333334),
(0.417835, 36.93517333333333),
(0.44846833333333336, 36.8601),
(0.286015, 36.92406),
(0.2060516666666667, 37.48809333333333),
(0.831505, 37.31642166666666),
(0.4549066666666667, 36.955196666666666),
(1.8452033333333335, 37.91977),
(0.42587833333333336, 36.89526),
(0.28959, 36.931601666666666),
(0.34471166666666664, 36.87869833333333),
(0.02844, 36.952780000000004),
(0.23703166666666667, 36.903348333333334),
(0.40457000000000004, 36.993585),
(0.2816883333333333, 36.928914999999996),
(0.5306466666666666, 36.86814833333333),
(1.8595083333333333, 36.86839),
(0.32350999999999996, 36.903985),
(0.10224000000000001, 36.73204333333334),
(0.6806816666666666, 36.74747166666667),
(0.6955600000000001, 36.84684666666667),
(0.2887183333333333, 36.94663499999999),
(0.29957666666666666, 36.898435),
(0.43686, 36.943999999999996),
(0.307515, 36.879378333333335),
(0.28612, 36.924085),
(0.36525166666666664, 36.91831666666667),
(0.29504166666666665, 36.92979),
(0.2858366666666667, 36.92229833333333),
(0.6136416666666666, 36.863443333333336),
(0.8100933333333333, 37.33143166666667),
(1.44947, 37.769525),
(0.33450166666666664, 36.903436666666664),
(0.5017283333333333, 36.84653333333333),
(0.8100933333333333, 37.33143333333334),
(0.19041666666666665, 37.44133333333333),
(0.47863500000000003, 37.44857666666666),
(0.38755, 36.912391666666664),
(0.9820983333333333, 36.602805000000004),
(0.679935, 37.17643333333333),
(0.30845833333333333, 37.05027166666667),
(0.4890116666666666, 36.80824666666667),
(0.8062933333333334, 37.336065000000005),
(0.36849666666666664, 37.05003),
(0.6827616666666666, 36.745398333333334),
(0.3937566666666667, 37.06006333333333),
(0.8837666666666666, 37.109005),
(0.7366149999999999, 36.79049833333333),
(0.3650583333333333, 36.918955),
(0.29189166666666666, 36.89821166666667),
(0.69048, 37.158695),
(0.5608866666666668, 37.649211666666666),
(0.8088516666666667, 37.330405000000006),
(0.36505499999999996, 36.91896333333333),
(0.46549, 36.87763),
(0.3883283333333334, 36.91866833333333),
(0.6799449999999999, 36.744460000000004),
(0.38826166666666667, 36.88952333333334),
(0.32363166666666665, 36.90406),
(0.29208666666666666, 36.921213333333334),
(0.006993333333333333, 36.900528333333334),
(0.612225, 36.863996666666665),
(0.7391866666666667, 36.837500000000006),
(0.6782033333333333, 37.171099999999996),
(0.9841833333333333, 36.594723333333334),
(0.3758933333333333, 36.863205),
(0.6407683333333333, 37.824035),
(0.3991616666666667, 36.86083166666667),
(0.389255, 36.918135),
(0.6743483333333333, 36.746615),
(0.3470733333333333, 36.88197666666667),
(0.29957, 36.89843833333333),
(0.5348283333333334, 37.02068666666666),
(0.33468333333333333, 36.90331833333333),
(0.359555, 36.869888333333336),
(0.914295, 37.09410166666667),
(0.6750966666666667, 36.550985),
(0.37465666666666664, 36.86391666666667),
(0.5308483333333334, 36.86847),
(0.4671883333333333, 36.87669),
(1.9503116666666667, 37.822215),
(0.4268466666666667, 36.89622833333333),
(1.7498533333333335, 37.77797833333333),
(0.33306166666666664, 36.87779666666667),
(0.5518716666666668, 37.653695),
(0.595485, 36.87989666666667),
(0.46830333333333335, 36.87680666666667),
(0.8100883333333334, 37.332280000000004),
(0.8315783333333333, 37.316395),
(0.6775933333333333, 36.603231666666666),
(0.6784566666666666, 36.59972666666667),
(0.177915, 37.45356),
(0.36504333333333333, 36.91885833333333),
(0.35278166666666666, 36.88568333333333),
(0.6584233333333334, 37.087395),
(0.34820666666666666, 36.882821666666665),
(0.914285, 37.09410333333334),
(0.3874883333333334, 36.911228333333334),
(0.19924999999999998, 37.42458666666666),
(0.6860816666666667, 36.75686666666667),
(0.7219716666666667, 36.779375),
(0.8062933333333334, 37.336065000000005),
(1.5302416666666665, 37.752941666666665),
(0.9787316666666667, 37.323146666666666),
(0.027061666666666664, 36.902901666666665),
(0.03514, 36.952225),
(0.43128500000000003, 36.99218666666667),
(0.6589083333333333, 37.08745666666667),
(0.3561033333333333, 36.886948333333336),
(0.5386933333333334, 37.63785),
(0.29803, 37.05908833333333),
(0.6916916666666667, 37.625951666666666),
(0.8936783333333334, 37.118535),
(0.27348833333333333, 36.927699999999994),
(0.6751066666666666, 36.55101333333333),
(0.38648666666666665, 36.8937),
(0.6854566666666667, 36.75451833333333),
(0.7727716666666667, 37.35331333333333),
(0.2977783333333333, 36.930841666666666),
(0.21644833333333335, 37.429265),
(0.32336833333333337, 36.903976666666665),
(0.6411366666666667, 37.82294666666667),
(0.2911533333333333, 37.06274666666666),
(0.371505, 36.904005),
(0.3635, 36.897418333333334),
(0.7270766666666667, 36.61657666666667),
(0.6750033333333333, 36.550079999999994),
(0.797425, 37.335906666666666),
(0.28434, 36.93546166666666),
(1.8622966666666667, 37.18904666666666),
(0.22730166666666668, 37.509805),
(0.465165, 36.877406666666666),
(0.28064833333333333, 36.93124666666667),
(0.28964, 36.93179666666666),
(0.6612766666666667, 37.915315),
(0.45497166666666666, 36.95520833333333),
(0.5819683333333333, 37.57603),
(0.37150833333333333, 36.903996666666664),
(0.7229083333333334, 36.67786833333333),
(0.3669633333333333, 36.92154333333333),
(0.28952, 36.931871666666666),
(0.6210249999999999, 37.43472333333333),
(0.28308666666666665, 37.06294),
(0.7608083333333333, 36.81185166666666),
(0.3349683333333333, 36.906726666666664),
(0.75958, 36.81137333333333),
(0.40130166666666667, 36.95249333333334),
(0.289195, 36.94622666666666),
(0.4006983333333334, 36.97186),
(0.3723783333333333, 36.904516666666666),
(0.7426616666666667, 36.671895),
(0.3224533333333333, 36.900794999999995),
(0.4007, 36.97186166666667),
(0.33676, 36.958263333333335),
(0.288305, 36.942415),
(0.9787416666666666, 37.32315),
(0.23707333333333333, 36.902789999999996),
(0.34406499999999995, 36.845635),
(0.956295, 36.70726166666667),
(0.28014, 36.889965),
(0.7416349999999999, 37.358355),
(0.28568, 37.05164833333333),
(0.07140333333333333, 36.96102166666667),
(1.0227433333333333, 37.87417833333333),
(0.60243, 36.88513666666667),
(0.37340166666666663, 37.000575),
(0.3891233333333334, 36.918229999999994),
(0.7503866666666668, 37.362125),
(0.36412833333333333, 36.980628333333335),
(0.64077, 37.82403166666667),
(0.37589999999999996, 36.86322666666667),
(0.32537, 36.887209999999996),
(0.34685166666666667, 36.89330833333333),
(0.7974466666666667, 37.33596),
(0.5355616666666667, 37.020493333333334),
(0.7389549999999999, 36.782001666666666),
(0.029088333333333334, 36.956498333333336),
(0.38780333333333333, 36.88975),
(0.7465516666666666, 37.358243333333334),
(0.6405966666666666, 36.76545333333333),
(0.74225, 36.788666666666664),
(0.7112433333333333, 36.83881166666667),
(0.47136833333333333, 36.809075),
(0.3288716666666667, 37.08504166666667),
(0.5745716666666667, 36.868233333333336),
(0.2848266666666667, 36.93479),
(0.3679483333333333, 36.92153),
(0.29124833333333333, 36.95290666666667),
(0.5099333333333333, 36.853298333333335),
(0.42650333333333335, 37.04629333333333),
(0.6458783333333333, 37.73419),
(0.6880383333333333, 36.714845000000004),
(0.35280999999999996, 36.88568333333333),
(0.443325, 36.98776166666667),
(0.7727400000000001, 37.353585),
(0.34880666666666665, 36.87952),
(0.3724783333333333, 36.90448166666666),
(0.4032816666666667, 36.95015666666667),
(0.29756166666666667, 36.93384),
(0.550385, 37.65454166666667),
(0.9824516666666667, 36.60308833333333),
(0.8065216666666667, 37.337245),
(0.43754166666666666, 36.99180166666667),
(1.7508166666666667, 37.780008333333335),
(0.53537, 37.02058833333333),
(0.41947500000000004, 36.851191666666665),
(1.7490366666666668, 37.73959166666667),
(0.38127833333333333, 36.980381666666666),
(0.6775216666666666, 36.60313),
(0.43686, 36.94399333333333),
(0.42945500000000003, 36.91238333333333),
(0.34031500000000003, 36.95269833333333),
(0.8589316666666666, 36.757061666666665),
(0.3726683333333333, 36.904466666666664),
(0.2817766666666667, 36.89236666666667),
(0.3861416666666667, 36.893685),
(0.2864716666666667, 36.92416166666666),
(0.38781333333333334, 36.88988833333333),
(0.37588666666666665, 36.86320666666667),
(0.3470833333333333, 36.893296666666664),
(0.029075, 36.95559),
(0.28748, 36.92293166666666),
(0.32320666666666664, 36.90400833333333),
(0.48973, 36.92200833333333),
(0.5006416666666667, 37.43022),
(0.8072616666666667, 37.330975),
(0.3854316666666667, 36.86182),
(0.39382, 37.06042),
(1.8605566666666669, 36.86854),
(0.81238, 37.32724833333334),
(0.6714633333333333, 36.738925),
(1.6579866666666665, 36.87838),
(1.8452000000000002, 37.91976666666667),
(0.4697966666666667, 36.857153333333336),
(0.014559999999999998, 37.07633333333334),
(0.2893, 36.930785),
(0.530875, 36.86839666666667),
(0.10701833333333334, 36.747545),
(0.34988166666666665, 36.884143333333334),
(0.2831, 37.062891666666665),
(0.10753166666666668, 36.780451666666664),
(0.6937183333333333, 36.71611),
(0.28903666666666666, 36.89114166666667),
(0.7390116666666666, 36.792476666666666),
(0.4358866666666667, 36.984296666666665),
(0.5586316666666667, 37.649186666666665),
(0.6907883333333333, 37.15836),
(0.6189033333333334, 36.83185166666667),
(0.41214833333333334, 36.976596666666666),
(0.6807249999999999, 36.74413166666667),
(0.20645666666666668, 37.45301833333333),
(0.3553183333333333, 36.88780333333333),
(0.6918116666666667, 36.67619666666666),
(0.40091000000000004, 36.97136666666667),
(0.6705366666666667, 36.74777666666667),
(0.28869833333333333, 36.89093833333333),
(0.207265, 37.483223333333335),
(0.8835516666666666, 37.10717833333334),
(0.5954816666666667, 36.879936666666666),
(0.3746283333333333, 36.86392),
(0.377099, 36.929572),
(0.39955833333333335, 36.95681833333334),
(0.6811849999999999, 37.17634666666667),
(0.320715, 36.87818),
(0.454975, 36.95520333333333),
(0.8123633333333333, 37.327285),
(0.6806083333333333, 36.74427166666667),
(0.3141, 36.946015),
(0.7717200000000001, 37.337590000000006),
(0.5013683333333333, 36.851996666666665),
(0.7666649999999999, 37.3544),
(0.3689233333333333, 36.97969),
(0.6913333333333334, 36.711398333333335),
(0.8079083333333333, 37.32868666666667),
(0.7355083333333333, 36.787054999999995),
(0.2817733333333333, 36.89239166666667),
(0.6908216666666667, 36.71197166666667),
(0.80791, 37.328673333333334),
(0.36959166666666665, 36.90775),
(0.471405, 36.80865166666666),
(0.3718066666666666, 36.903715),
(0.6401916666666666, 37.82288833333334),
(0.4667866666666667, 36.87636),
(0.42394833333333337, 36.850521666666666),
(0.2933733333333333, 36.93097833333333),
(0.26701166666666665, 36.78540833333333),
(0.42110833333333336, 36.964715000000005),
(0.2784216666666667, 36.889541666666666),
(0.4081266666666667, 36.965135000000004),
(0.3859716666666667, 36.933215),
(0.7974466666666667, 37.33596),
(0.3985316666666667, 36.861198333333334),
(0.26555555555555554, 37.055674999999994),
(0.36504666666666663, 36.91884833333333),
(0.793315, 36.86897333333334),
(0.9584633333333333, 36.695946666666664),
(1.8744683333333332, 37.918686666666666),
(0.7597866666666667, 37.35831),
(0.9515699999999999, 36.70535666666667),
(1.8630233333333335, 36.86967),
(0.36824166666666663, 37.00716166666667),
(0.9787883333333334, 37.325195),
(0.3509, 36.94824166666667),
(0.8441116666666667, 37.30817833333333),
(0.3651133333333333, 36.918866666666666),
(0.8094616666666667, 37.329613333333334),
(0.9787583333333333, 37.325135),
(0.40236833333333333, 36.97721666666667),
(0.43504333333333334, 36.880478333333336),
(0.3724166666666666, 36.90450333333333),
(0.2829716666666667, 36.90957833333333),
(0.376515, 36.986598),
(0.3779933333333333, 36.866508333333336),
(0.7345666666666666, 36.78680666666666),
(0.027043333333333336, 36.90383666666666),
(0.6745399999999999, 36.73959),
(0.36504666666666663, 36.91884833333333),
(0.2915333333333333, 36.93690333333333),
(0.4669716666666667, 36.87699666666667),
(0.45420333333333335, 36.96134),
(0.277095, 36.95320666666667),
(0.3949116666666667, 36.96160166666667),
(0.29203666666666667, 36.92997666666666),
(0.5379683333333334, 37.638261666666665),
(0.42866333333333334, 36.909515),
(0.3412183333333333, 36.95231666666667),
(0.029075, 36.95559333333333),
(0.35119666666666666, 36.988705),
(0.18306833333333333, 37.45301833333333),
(0.20524166666666668, 37.42091333333333),
(0.45171500000000003, 36.858131666666665),
(0.6145866666666666, 37.63495833333333),
(0.28174166666666667, 36.89238833333333),
(0.2817483333333333, 36.930661666666666),
(0.2920433333333333, 36.898495),
(1.8452000000000002, 37.91976666666667),
(0.2980216666666667, 37.05909166666667),
(0.9264316666666667, 37.300601666666665),
(0.53831, 37.63814166666667),
(0.6665966666666667, 36.69474666666666),
(0.27879333333333334, 37.42990666666667),
(0.19072, 36.890188333333334),
(0.10672166666666667, 36.77845333333333),
(0.37464333333333333, 36.86391666666667),
(1.8500933333333334, 37.87253666666667),
...]
In [ ]:
Content source: smenon8/AnimalWildlifeEstimator
Similar notebooks: