Last active
July 13, 2023 01:11
-
-
Save nmpowell/1237b020ffb0e43cabf5e43868ad6aa0 to your computer and use it in GitHub Desktop.
USA ZCTA (Zip Code Tabulation Area) Latitude, Longitude, GeoJSON Points, Population, Population Density: 2010 pop figures; 2017 ZCTA codes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# !/usr/bin/python | |
""" | |
US 2017 Zip Code Tabulation Areas (ZCTA), latitude and longitude, and 2010 Census population, from US government data. | |
The final file includes GeoJSON Points for each ZCTA, and estimated population density per square kilometre. | |
Python code to create this Gist follows. | |
Notes: | |
1. Per https://gist.github.com/erichurst/7882666 | |
2. Note that reported lat, long are direct from the US Govt. They are approximate centres but caveats are listed here: https://www.census.gov/geo/reference/gtc/gtc_area_attr.html (e.g. if the ZCTA has a crescent shape, the listed centre is the closest point to the real geometric centre which is within the boundary). | |
3. ZCTAs are the latest available (2017) at creation time. Populations are from 2010 census (and are therefore out of date). | |
# Data downloaded from: | |
# ZCTAs 2010: https://www.census.gov/geo/maps-data/data/gazetteer2010.html (includes pop) | |
# ZCTAs 2017: https://www.census.gov/geo/maps-data/data/gazetteer2017.html (excludes pop but includes the "same" ZCTAs) | |
""" | |
import os | |
import pandas as pd | |
data_dir = r"C:\data" | |
ga_2010_fp = os.path.join(data_dir, "2010_Gaz_zcta_national.txt") | |
ga_2017_fp = os.path.join(data_dir, "2017_Gaz_zcta_national.txt") | |
ga_2010_headers = ["GEOID", "POP10", "HU10", "ALAND", "AWATER", | |
"ALAND_SQMI", "AWATER_SQMI", "INTPTLAT", "INTPTLONG"] | |
ga_2017_headers = ["GEOID", "ALAND", "AWATER", | |
"ALAND_SQMI", "AWATER_SQMI", "INTPTLAT", "INTPTLONG"] | |
df_ga_2010 = pd.read_csv(ga_2010_fp, delim_whitespace=True, | |
header=1, names=ga_2010_headers, dtype=str) | |
df_ga_2017 = pd.read_csv(ga_2017_fp, delim_whitespace=True, | |
header=1, names=ga_2017_headers, dtype=str) | |
# Combine the DataFrames, assume ZCTAs are consistent. Only take population from 2010. | |
df_ga = pd.merge( | |
df_ga_2017, df_ga_2010[['GEOID', 'POP10']], on='GEOID', how='left') | |
# Drop ZCTAs without pop data | |
df_ga.dropna(axis=0, subset=['POP10'], inplace=True) | |
# Remove irrelevant columns | |
df_ga_subset = df_ga[['GEOID', 'INTPTLAT', 'INTPTLONG', 'POP10']] | |
df_ga_subset.to_csv(os.path.join( | |
data_dir, "US_ZCTA_LAT_LONG_population.csv"), index=False) | |
# Optionally ... | |
# Cast to numeric | |
df_ga[['POP10', 'ALAND', 'AWATER', 'INTPTLAT', 'INTPTLONG']] = df_ga[[ | |
'POP10', 'ALAND', 'AWATER', 'INTPTLAT', 'INTPTLONG']].apply(pd.to_numeric) | |
# Add a GeoJSON Point | |
df_ga.loc[:, 'location'] = df_ga.apply(lambda row: {'type': "Point", 'coordinates': [ | |
row['INTPTLONG'], row['INTPTLAT']]}, axis=1) | |
# Calculate population density per square kilometre, for each ZCTA | |
# (Sum the land and water areas first) | |
df_ga['TotalArea_SqKM'] = (df_ga['ALAND'] + df_ga['AWATER']) / 1000000. | |
df_ga['PopDensity_SqKM'] = df_ga.apply( | |
lambda row: row['POP10'] / row['TotalArea_SqKM'], axis=1) | |
df_ga_subset = df_ga[['GEOID', 'INTPTLAT', 'INTPTLONG', | |
'POP10', 'location', 'TotalArea_SqKM', 'PopDensity_SqKM']] | |
df_ga_subset.to_csv(os.path.join( | |
data_dir, "US_ZCTA_LAT_LONG_population_density.csv"), index=False) |
We can't make this file beautiful and searchable because it's too large.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GEOID,INTPTLAT,INTPTLONG,POP10,location,TotalArea_SqKM,PopDensity_SqKM | |
00602,18.361945000000002,-67.175597,41520,"{'type': 'Point', 'coordinates': [-67.175597, 18.361945000000002]}",83.735963,495.84430049487815 | |
00603,18.455182999999998,-67.119887,54689,"{'type': 'Point', 'coordinates': [-67.119887, 18.455182999999998]}",82.068602,666.3815231067297 | |
00606,18.158345,-66.932911,6615,"{'type': 'Point', 'coordinates': [-66.932911, 18.158345]}",109.592485,60.359978149961655 | |
00610,18.295366,-67.125135,29016,"{'type': 'Point', 'coordinates': [-67.125135, 18.295366]}",97.185487,298.5630971834303 | |
00612,18.402252999999998,-66.71139699999999,67010,"{'type': 'Point', 'coordinates': [-66.71139699999999, 18.402252999999998]}",184.855191,362.49996355255183 | |
00616,18.420412,-66.67197900000001,11017,"{'type': 'Point', 'coordinates': [-66.67197900000001, 18.420412]}",30.011866,367.08813773858645 | |
00617,18.445147,-66.559696,24597,"{'type': 'Point', 'coordinates': [-66.559696, 18.445147]}",43.335804,567.5907155201273 | |
00622,17.991245000000003,-67.153993,7853,"{'type': 'Point', 'coordinates': [-67.153993, 17.991245000000003]}",76.785627,102.27174416378732 | |
00623,18.083361,-67.153897,43061,"{'type': 'Point', 'coordinates': [-67.153897, 18.083361]}",99.985226,430.6736277217596 | |
00624,18.064919,-66.71668299999999,26241,"{'type': 'Point', 'coordinates': [-66.71668299999999, 18.064919]}",114.319971,229.53994626188282 | |
00627,18.4126,-66.863926,35159,"{'type': 'Point', 'coordinates': [-66.863926, 18.4126]}",123.565306,284.53779736522483 | |
00631,18.190607,-66.832041,1852,"{'type': 'Point', 'coordinates': [-66.832041, 18.190607]}",11.084643,167.07800151976028 | |
00637,18.076713,-66.947389,25287,"{'type': 'Point', 'coordinates': [-66.947389, 18.076713]}",89.247955,283.3342231763181 | |
00638,18.295913,-66.515588,18941,"{'type': 'Point', 'coordinates': [-66.515588, 18.295913]}",171.548758,110.41175827108 | |
00641,18.263085,-66.712985,31191,"{'type': 'Point', 'coordinates': [-66.712985, 18.263085]}",245.703697,126.94558682200048 | |
00646,18.43315,-66.285875,38199,"{'type': 'Point', 'coordinates': [-66.285875, 18.43315]}",56.933159,670.9446774242757 | |
00647,17.963613,-66.94712700000001,6172,"{'type': 'Point', 'coordinates': [-66.94712700000001, 17.963613]}",47.39316,130.2297631134957 | |
00650,18.349417000000003,-66.578078,14998,"{'type': 'Point', 'coordinates': [-66.578078, 18.349417000000003]}",79.60995,188.3935362351063 | |
00652,18.448452,-66.594127,4715,"{'type': 'Point', 'coordinates': [-66.594127, 18.448452]}",17.930882,262.9541591986384 | |
00653,17.985032999999998,-66.88653599999999,13307,"{'type': 'Point', 'coordinates': [-66.88653599999999, 17.985032999999998]}",44.681208,297.82095416936806 | |
00656,18.053539,-66.79293100000001,21481,"{'type': 'Point', 'coordinates': [-66.79293100000001, 18.053539]}",88.309704,243.24620089316574 | |
00659,18.407226,-66.808999,41953,"{'type': 'Point', 'coordinates': [-66.808999, 18.407226]}",111.250555,377.1037366959652 | |
00660,18.134695,-67.116199,17250,"{'type': 'Point', 'coordinates': [-67.116199, 18.134695]}",29.385374,587.0267296921251 | |
00662,18.468320000000002,-67.015781,43282,"{'type': 'Point', 'coordinates': [-67.015781, 18.468320000000002]}",120.249047,359.9363244849666 | |
00664,18.21033,-66.591616,16784,"{'type': 'Point', 'coordinates': [-66.591616, 18.21033]}",117.900773,142.35699709958644 | |
00667,18.003422,-67.03581,25968,"{'type': 'Point', 'coordinates': [-67.03581, 18.003422]}",184.462636,140.7764768145241 | |
00669,18.277102,-66.86964499999999,29744,"{'type': 'Point', 'coordinates': [-66.86964499999999, 18.277102]}",159.587531,186.38047605360845 | |
00670,18.240187,-66.988776,9807,"{'type': 'Point', 'coordinates': [-66.988776, 18.240187]}",118.383164,82.84117157064665 | |
00674,18.422908,-66.489337,44457,"{'type': 'Point', 'coordinates': [-66.489337, 18.422908]}",123.305621,360.54317426453736 | |
00676,18.377637,-67.079574,40316,"{'type': 'Point', 'coordinates': [-67.079574, 18.377637]}",130.686817,308.4932430483788 | |
00677,18.332568,-67.22702199999999,15272,"{'type': 'Point', 'coordinates': [-67.22702199999999, 18.332568]}",40.732066,374.93801566559375 | |
00678,18.434099,-66.927384,27819,"{'type': 'Point', 'coordinates': [-66.927384, 18.434099]}",72.070774,385.9955770698397 | |
00680,18.178225,-67.151514,58140,"{'type': 'Point', 'coordinates': [-67.151514, 18.178225]}",186.128203,312.3653431500652 | |
00682,18.221464,-67.156039,32615,"{'type': 'Point', 'coordinates': [-67.156039, 18.221464]}",43.625902,747.6063188332472 | |
00683,18.1078,-67.037263,33772,"{'type': 'Point', 'coordinates': [-67.037263, 18.1078]}",135.194404,249.80323889737332 | |
00685,18.332929,-66.959689,42831,"{'type': 'Point', 'coordinates': [-66.959689, 18.332929]}",202.86649,211.12900410511367 | |
00687,18.319026,-66.42055699999999,32610,"{'type': 'Point', 'coordinates': [-66.42055699999999, 18.319026]}",100.815718,323.46146659392934 | |
00688,18.382310999999998,-66.626416,13543,"{'type': 'Point', 'coordinates': [-66.626416, 18.382310999999998]}",82.480818,164.19575276278178 | |
00690,18.49551,-67.098671,6255,"{'type': 'Point', 'coordinates': [-67.098671, 18.49551]}",7.303732,856.4114893591386 | |
00692,18.410188,-66.336556,37511,"{'type': 'Point', 'coordinates': [-66.336556, 18.410188]}",71.307658,526.044481786234 | |
00693,18.422987,-66.397214,61038,"{'type': 'Point', 'coordinates': [-66.397214, 18.422987]}",105.492483,578.6004676750287 | |
00694,18.482073,-66.391274,328,"{'type': 'Point', 'coordinates': [-66.391274, 18.482073]}",4.027561,81.43886585454571 | |
00698,18.064848,-66.856319,41782,"{'type': 'Point', 'coordinates': [-66.856319, 18.064848]}",188.074476,222.1566737211061 | |
00703,18.248401,-66.130662,28605,"{'type': 'Point', 'coordinates': [-66.130662, 18.248401]}",76.88373,372.05531001162404 | |
00704,17.965770000000003,-66.219555,8577,"{'type': 'Point', 'coordinates': [-66.219555, 17.965770000000003]}",14.401599,595.5588681506824 | |
00705,18.128961,-66.266683,25598,"{'type': 'Point', 'coordinates': [-66.266683, 18.128961]}",82.820613,309.07764471629787 | |
00707,18.014055,-65.920751,12225,"{'type': 'Point', 'coordinates': [-65.920751, 18.014055]}",58.378211,209.41032262876297 | |
00714,18.003025,-66.046237,19566,"{'type': 'Point', 'coordinates': [-66.046237, 18.003025]}",37.906225,516.1685184953132 | |
00715,18.011232999999997,-66.56006500000001,3656,"{'type': 'Point', 'coordinates': [-66.56006500000001, 18.011232999999997]}",20.531972,178.06375344755 | |
00716,17.991269,-66.606774,33779,"{'type': 'Point', 'coordinates': [-66.606774, 17.991269]}",30.092091,1122.5208643693122 | |
00717,18.003222,-66.614037,18457,"{'type': 'Point', 'coordinates': [-66.614037, 18.003222]}",5.521263,3342.8945514821517 | |
00718,18.231988,-65.759623,26606,"{'type': 'Point', 'coordinates': [-65.759623, 18.231988]}",120.62906,220.5604520171176 | |
00719,18.289927,-66.25344,30990,"{'type': 'Point', 'coordinates': [-66.25344, 18.289927]}",73.426186,422.0565126452299 | |
00720,18.217945999999998,-66.428076,23129,"{'type': 'Point', 'coordinates': [-66.428076, 18.217945999999998]}",154.669144,149.5385530807619 | |
00723,18.043498,-66.015479,19277,"{'type': 'Point', 'coordinates': [-66.015479, 18.043498]}",120.873655,159.48057498550864 | |
00725,18.218819,-66.042375,89374,"{'type': 'Point', 'coordinates': [-66.042375, 18.218819]}",110.533137,808.5720031631781 | |
00727,18.215308,-66.073565,58382,"{'type': 'Point', 'coordinates': [-66.073565, 18.215308]}",55.703794,1048.0794180733901 | |
00728,17.989853,-66.664116,44908,"{'type': 'Point', 'coordinates': [-66.664116, 17.989853]}",62.143534,722.6496001981477 | |
00729,18.323585,-65.883206,53750,"{'type': 'Point', 'coordinates': [-65.883206, 18.323585]}",88.323503,608.5582905379104 | |
00730,18.030831,-66.616838,35742,"{'type': 'Point', 'coordinates': [-66.616838, 18.030831]}",16.982023,2104.696242609022 | |
00731,18.109947000000002,-66.635622,15524,"{'type': 'Point', 'coordinates': [-66.635622, 18.109947000000002]}",126.412431,122.80437831307904 | |
00735,18.252603,-65.68249399999999,13730,"{'type': 'Point', 'coordinates': [-65.68249399999999, 18.252603]}",62.211311,220.69941589882265 | |
00736,18.103624,-66.151667,51532,"{'type': 'Point', 'coordinates': [-66.151667, 18.103624]}",142.780712,360.9170964212589 | |
00738,18.308717,-65.738915,34922,"{'type': 'Point', 'coordinates': [-65.738915, 18.308717]}",154.956293,225.36677487502882 | |
00739,18.177232999999998,-66.160645,39678,"{'type': 'Point', 'coordinates': [-66.160645, 18.177232999999998]}",82.906735,478.5859677142032 | |
00740,18.331178,-65.63410400000001,2071,"{'type': 'Point', 'coordinates': [-65.63410400000001, 18.331178]}",1.144306,1809.8305872729845 | |
00741,18.163854999999998,-65.754042,4971,"{'type': 'Point', 'coordinates': [-65.754042, 18.163854999999998]}",8.913876,557.6698621340481 | |
00745,18.352216000000002,-65.817387,55062,"{'type': 'Point', 'coordinates': [-65.817387, 18.352216000000002]}",139.831198,393.77478550959705 | |
00751,18.001317,-66.252183,23129,"{'type': 'Point', 'coordinates': [-66.252183, 18.001317]}",151.008306,153.16376040931152 | |
00754,18.147107000000002,-65.976167,40828,"{'type': 'Point', 'coordinates': [-65.976167, 18.147107000000002]}",132.406098,308.354378058932 | |
00757,17.995441,-66.391334,23263,"{'type': 'Point', 'coordinates': [-66.391334, 17.995441]}",82.856759,280.7616455285199 | |
00765,18.130095999999998,-65.439369,9098,"{'type': 'Point', 'coordinates': [-65.439369, 18.130095999999998]}",51.058991,178.18605150266288 | |
00766,18.133195999999998,-66.476916,26488,"{'type': 'Point', 'coordinates': [-66.476916, 18.133195999999998]}",107.440698,246.53600072479054 | |
00767,18.069489,-65.89616099999999,38019,"{'type': 'Point', 'coordinates': [-65.89616099999999, 18.069489]}",150.306324,252.94344900617756 | |
00769,18.1038,-66.357586,40248,"{'type': 'Point', 'coordinates': [-66.357586, 18.1038]}",198.207429,203.05999731220973 | |
00771,18.187148,-65.871189,38394,"{'type': 'Point', 'coordinates': [-65.871189, 18.187148]}",87.623633,438.1694605152927 | |
00772,18.438968,-65.905168,23105,"{'type': 'Point', 'coordinates': [-65.905168, 18.438968]}",51.607931,447.70250526028644 | |
00773,18.342888000000002,-65.723109,20068,"{'type': 'Point', 'coordinates': [-65.723109, 18.342888000000002]}",65.53935,306.1977270143814 | |
00775,18.326598999999998,-65.30771999999999,1786,"{'type': 'Point', 'coordinates': [-65.30771999999999, 18.326598999999998]}",60.782601,29.383408584308526 | |
00777,18.224133,-65.90854200000001,40684,"{'type': 'Point', 'coordinates': [-65.90854200000001, 18.224133]}",69.172058,588.156564605899 | |
00778,18.264076,-65.97851,45429,"{'type': 'Point', 'coordinates': [-65.97851, 18.264076]}",77.892608,583.2260745461239 | |
00780,18.102834,-66.568105,13800,"{'type': 'Point', 'coordinates': [-66.568105, 18.102834]}",52.890281,260.9175020265065 | |
00782,18.225707999999997,-66.221633,19304,"{'type': 'Point', 'coordinates': [-66.221633, 18.225707999999997]}",69.32849,278.44252774003877 | |
00783,18.303910000000002,-66.32617900000001,36557,"{'type': 'Point', 'coordinates': [-66.32617900000001, 18.303910000000002]}",108.384059,337.29129852942674 | |
00784,18.010714,-66.133615,44637,"{'type': 'Point', 'coordinates': [-66.133615, 18.010714]}",160.153892,278.71317669882166 | |
00786,18.155424,-66.229907,357,"{'type': 'Point', 'coordinates': [-66.229907, 18.155424]}",0.666251,535.834092556709 | |
00791,18.136782,-65.821476,53417,"{'type': 'Point', 'coordinates': [-65.821476, 18.136782]}",98.590402,541.8073049342065 | |
00794,18.198954999999998,-66.309833,30585,"{'type': 'Point', 'coordinates': [-66.309833, 18.198954999999998]}",91.49759,334.2710993808689 | |
00795,18.060494,-66.500624,48736,"{'type': 'Point', 'coordinates': [-66.500624, 18.060494]}",120.764496,403.5623185145409 | |
00901,18.465369,-66.104613,7080,"{'type': 'Point', 'coordinates': [-66.104613, 18.465369]}",2.566138,2759.009842806583 | |
00906,18.46446,-66.094995,4,"{'type': 'Point', 'coordinates': [-66.094995, 18.46446]}",0.008247,485.02485752394807 | |
00907,18.452552999999998,-66.077838,17458,"{'type': 'Point', 'coordinates': [-66.077838, 18.452552999999998]}",3.466053,5036.853158333124 | |
00909,18.44161,-66.067132,6230,"{'type': 'Point', 'coordinates': [-66.067132, 18.44161]}",1.630265,3821.4646085145664 | |
00911,18.451159,-66.05619899999999,8623,"{'type': 'Point', 'coordinates': [-66.05619899999999, 18.451159]}",1.232508,6996.303472269552 | |
00912,18.445334,-66.060139,6801,"{'type': 'Point', 'coordinates': [-66.060139, 18.445334]}",0.86297,7880.922859427326 | |
00913,18.450001999999998,-66.04265600000001,9312,"{'type': 'Point', 'coordinates': [-66.04265600000001, 18.450001999999998]}",0.83484,11154.23314647118 | |
00915,18.437179,-66.045571,32820,"{'type': 'Point', 'coordinates': [-66.045571, 18.437179]}",4.43031,7408.059481164974 | |
00917,18.420673999999998,-66.050105,21053,"{'type': 'Point', 'coordinates': [-66.050105, 18.420673999999998]}",3.407001,6179.33484610072 | |
00918,18.421022,-66.065789,18056,"{'type': 'Point', 'coordinates': [-66.065789, 18.421022]}",5.618127,3213.8824914424326 | |
00920,18.414292,-66.088042,17893,"{'type': 'Point', 'coordinates': [-66.088042, 18.414292]}",7.470072,2395.291504553102 | |
00921,18.392292,-66.088528,37763,"{'type': 'Point', 'coordinates': [-66.088528, 18.392292]}",6.925339,5452.873859315768 | |
00923,18.409307000000002,-66.038888,29086,"{'type': 'Point', 'coordinates': [-66.038888, 18.409307000000002]}",5.292849,5495.339088645831 | |
00924,18.399192000000003,-66.01245300000001,56691,"{'type': 'Point', 'coordinates': [-66.01245300000001, 18.399192000000003]}",12.14836,4666.555814941276 | |
00925,18.400296,-66.050602,8696,"{'type': 'Point', 'coordinates': [-66.050602, 18.400296]}",1.158082,7508.967413361057 | |
00926,18.3454,-66.05154499999999,108862,"{'type': 'Point', 'coordinates': [-66.05154499999999, 18.3454]}",63.626777,1710.9463206033524 | |
00927,18.388011,-66.072089,14936,"{'type': 'Point', 'coordinates': [-66.072089, 18.388011]}",6.809516,2193.4011169075743 | |
00934,18.411313,-66.124234,288,"{'type': 'Point', 'coordinates': [-66.124234, 18.411313]}",1.967214,146.39993412002966 | |
00936,18.395463,-66.07377199999999,681,"{'type': 'Point', 'coordinates': [-66.07377199999999, 18.395463]}",0.417954,1629.3659110811238 | |
00949,18.430695999999998,-66.21283299999999,82278,"{'type': 'Point', 'coordinates': [-66.21283299999999, 18.430695999999998]}",47.647148,1726.8189902992724 | |
00950,18.459699,-66.233101,9,"{'type': 'Point', 'coordinates': [-66.233101, 18.459699]}",8.194322,1.0983214962751038 | |
00951,18.427529999999997,-66.253789,35,"{'type': 'Point', 'coordinates': [-66.253789, 18.427529999999997]}",1.105181,31.66902073054097 | |
00952,18.427448000000002,-66.18202600000001,10008,"{'type': 'Point', 'coordinates': [-66.18202600000001, 18.427448000000002]}",3.204976,3122.644288131955 | |
00953,18.360729,-66.251527,73014,"{'type': 'Point', 'coordinates': [-66.251527, 18.360729]}",70.508744,1035.5311392300507 | |
00956,18.321137,-66.170419,79304,"{'type': 'Point', 'coordinates': [-66.170419, 18.321137]}",68.779906,1153.0111716058466 | |
00957,18.368414,-66.18769300000001,45680,"{'type': 'Point', 'coordinates': [-66.18769300000001, 18.368414]}",11.969153,3816.477239450444 | |
00959,18.385785000000002,-66.155654,50560,"{'type': 'Point', 'coordinates': [-66.155654, 18.385785000000002]}",16.699796,3027.581893814751 | |
00960,18.416747,-66.144485,1779,"{'type': 'Point', 'coordinates': [-66.144485, 18.416747]}",2.368816,751.0080985606312 | |
00961,18.413307,-66.164683,32429,"{'type': 'Point', 'coordinates': [-66.164683, 18.413307]}",13.573318,2389.1726400280313 | |
00962,18.444614,-66.14881899999999,22491,"{'type': 'Point', 'coordinates': [-66.14881899999999, 18.444614]}",11.010236,2042.7355053969777 | |
00965,18.433757,-66.114752,9134,"{'type': 'Point', 'coordinates': [-66.114752, 18.433757]}",2.075304,4401.282896385301 | |
00966,18.401521,-66.117597,16676,"{'type': 'Point', 'coordinates': [-66.117597, 18.401521]}",8.344306,1998.4885501562385 | |
00968,18.406085,-66.101232,3478,"{'type': 'Point', 'coordinates': [-66.101232, 18.406085]}",1.185643,2933.4293712356925 | |
00969,18.368062,-66.108062,42219,"{'type': 'Point', 'coordinates': [-66.108062, 18.368062]}",12.688066,3327.457470665742 | |
00971,18.318884,-66.11919,30986,"{'type': 'Point', 'coordinates': [-66.11919, 18.318884]}",41.437158,747.7829439943735 | |
00976,18.33618,-65.994101,65136,"{'type': 'Point', 'coordinates': [-65.994101, 18.33618]}",44.086486,1477.4595552932026 | |
00979,18.444394,-66.030036,17030,"{'type': 'Point', 'coordinates': [-66.030036, 18.444394]}",4.551643,3741.5060891199064 | |
00982,18.411261,-65.99204499999999,16428,"{'type': 'Point', 'coordinates': [-65.99204499999999, 18.411261]}",3.691443,4450.292202805244 | |
00983,18.417816000000002,-65.975819,39234,"{'type': 'Point', 'coordinates': [-65.975819, 18.417816000000002]}",9.581065,4094.951865998195 | |
00985,18.410774,-65.947927,36553,"{'type': 'Point', 'coordinates': [-65.947927, 18.410774]}",21.815843,1675.5254426794324 | |
00987,18.338161,-65.94108299999999,63661,"{'type': 'Point', 'coordinates': [-65.94108299999999, 18.338161]}",64.773016,982.8321102108323 | |
01001,42.062368,-72.625754,16769,"{'type': 'Point', 'coordinates': [-72.625754, 42.062368]}",31.916031,525.4099421071498 | |
01002,42.364059999999995,-72.458741,29049,"{'type': 'Point', 'coordinates': [-72.458741, 42.364059999999995]}",146.894497,197.75417454882603 | |
01003,42.389697999999996,-72.52400899999999,10372,"{'type': 'Point', 'coordinates': [-72.52400899999999, 42.389697999999996]}",1.855175,5590.847224655356 | |
01005,42.418848,-72.10659799999999,5079,"{'type': 'Point', 'coordinates': [-72.10659799999999, 42.418848]}",115.304331,44.048648961850354 | |
01007,42.27901,-72.400468,14649,"{'type': 'Point', 'coordinates': [-72.400468, 42.27901]}",143.180288,102.31156959259644 | |
01008,42.190191,-72.954263,1263,"{'type': 'Point', 'coordinates': [-72.954263, 42.190191]}",144.455353,8.74318586172435 | |
01009,42.209669,-72.339743,741,"{'type': 'Point', 'coordinates': [-72.339743, 42.209669]}",2.104351,352.1275680720564 | |
01010,42.128176,-72.205352,3609,"{'type': 'Point', 'coordinates': [-72.205352, 42.128176]}",91.475839,39.45304070947084 | |
01011,42.300281,-72.968716,1370,"{'type': 'Point', 'coordinates': [-72.968716, 42.300281]}",82.17322,16.672098282141068 | |
01012,42.375425,-72.858192,661,"{'type': 'Point', 'coordinates': [-72.858192, 42.375425]}",34.514997,19.15109539195382 | |
01013,42.154903999999995,-72.602804,23188,"{'type': 'Point', 'coordinates': [-72.602804, 42.154903999999995]}",16.299212,1422.645462860413 | |
01020,42.172602000000005,-72.562073,29668,"{'type': 'Point', 'coordinates': [-72.562073, 42.172602000000005]}",33.469686,886.414052405511 | |
01022,42.197741,-72.542713,2451,"{'type': 'Point', 'coordinates': [-72.542713, 42.197741]}",12.342552,198.58129825987365 | |
01026,42.465495000000004,-72.918267,946,"{'type': 'Point', 'coordinates': [-72.918267, 42.465495000000004]}",62.506231,15.134491151770133 | |
01027,42.295008,-72.75187700000001,17660,"{'type': 'Point', 'coordinates': [-72.75187700000001, 42.295008]}",106.099057,166.44822771610495 | |
01028,42.062378,-72.498111,15720,"{'type': 'Point', 'coordinates': [-72.498111, 42.062378]}",33.686636,466.65389800275693 | |
01029,42.193395,-73.044647,789,"{'type': 'Point', 'coordinates': [-73.044647, 42.193395]}",46.365254,17.01705333049615 | |
01030,42.072925,-72.686972,11669,"{'type': 'Point', 'coordinates': [-72.686972, 42.072925]}",31.095923,375.2581970311671 | |
01031,42.32938,-72.19815600000001,1308,"{'type': 'Point', 'coordinates': [-72.19815600000001, 42.32938]}",21.012723,62.24800088974665 | |
01032,42.457613,-72.81478,570,"{'type': 'Point', 'coordinates': [-72.81478, 42.457613]}",31.355159,18.178826648590746 | |
01033,42.244949,-72.50014300000001,6227,"{'type': 'Point', 'coordinates': [-72.50014300000001, 42.244949]}",72.706151,85.64612366840873 | |
01034,42.093911999999996,-72.96110300000001,2021,"{'type': 'Point', 'coordinates': [-72.96110300000001, 42.093911999999996]}",190.632242,10.601564450991454 | |
01035,42.356491,-72.568632,5250,"{'type': 'Point', 'coordinates': [-72.568632, 42.356491]}",63.725204,82.38498538192205 | |
01036,42.071188,-72.41771800000001,5109,"{'type': 'Point', 'coordinates': [-72.41771800000001, 42.071188]}",50.541976,101.08429476520665 | |
01037,42.372728,-72.195412,838,"{'type': 'Point', 'coordinates': [-72.195412, 42.372728]}",40.496023,20.6933900645009 | |
01038,42.385496,-72.60692900000001,2545,"{'type': 'Point', 'coordinates': [-72.60692900000001, 42.385496]}",28.118919,90.50845802429318 | |
01039,42.404287,-72.688924,1336,"{'type': 'Point', 'coordinates': [-72.688924, 42.404287]}",34.826739,38.36132920742306 | |
01040,42.211656,-72.642448,39880,"{'type': 'Point', 'coordinates': [-72.642448, 42.211656]}",59.143503,674.29215344245 | |
01050,42.286762,-72.869695,2530,"{'type': 'Point', 'coordinates': [-72.869695, 42.286762]}",101.84615,24.841390666215663 | |
01053,42.356301,-72.713584,1685,"{'type': 'Point', 'coordinates': [-72.713584, 42.356301]}",13.541789,124.42964515249795 | |
01054,42.468897999999996,-72.48457900000001,1851,"{'type': 'Point', 'coordinates': [-72.48457900000001, 42.468897999999996]}",59.452664,31.13401276686273 | |
01056,42.183577,-72.457812,21103,"{'type': 'Point', 'coordinates': [-72.457812, 42.183577]}",73.399359,287.50932279939934 | |
01057,42.093596000000005,-72.321494,8534,"{'type': 'Point', 'coordinates': [-72.321494, 42.093596000000005]}",117.922421,72.36961323919901 | |
01060,42.321488,-72.630588,15284,"{'type': 'Point', 'coordinates': [-72.630588, 42.321488]}",31.543508,484.537103482593 | |
01062,42.323033,-72.701789,11150,"{'type': 'Point', 'coordinates': [-72.701789, 42.323033]}",47.413335,235.1659084938868 | |
01063,42.318882,-72.63853,430,"{'type': 'Point', 'coordinates': [-72.63853, 42.318882]}",0.100502,4278.521820461285 | |
01066,42.406909000000006,-72.655015,64,"{'type': 'Point', 'coordinates': [-72.655015, 42.406909000000006]}",1.959635,32.65914315676134 | |
01068,42.350862,-72.044248,1902,"{'type': 'Point', 'coordinates': [-72.044248, 42.350862]}",54.958903,34.607677667802065 | |
01069,42.188862,-72.30648000000001,8469,"{'type': 'Point', 'coordinates': [-72.30648000000001, 42.188862]}",73.472158,115.26815368618955 | |
01070,42.518446000000004,-72.91901700000001,629,"{'type': 'Point', 'coordinates': [-72.91901700000001, 42.518446000000004]}",53.940036,11.661097148693042 | |
01071,42.160064,-72.87384,1596,"{'type': 'Point', 'coordinates': [-72.87384, 42.160064]}",41.125709,38.807841586390644 | |
01072,42.456967999999996,-72.417244,1478,"{'type': 'Point', 'coordinates': [-72.417244, 42.456967999999996]}",53.348999,27.70436236301266 | |
01073,42.226949,-72.74158800000001,5792,"{'type': 'Point', 'coordinates': [-72.74158800000001, 42.226949]}",74.998471,77.22824109307508 | |
01074,42.387603000000006,-72.09323,319,"{'type': 'Point', 'coordinates': [-72.09323, 42.387603000000006]}",0.27313,1167.9420056383408 | |
01075,42.256208,-72.58103,17527,"{'type': 'Point', 'coordinates': [-72.58103, 42.256208]}",47.659905,367.7514674022116 | |
01077,42.05257,-72.777353,9502,"{'type': 'Point', 'coordinates': [-72.777353, 42.05257]}",81.971183,115.9187857518172 | |
01079,42.194344,-72.328868,692,"{'type': 'Point', 'coordinates': [-72.328868, 42.194344]}",3.030055,228.37869279600537 | |
01080,42.185727,-72.361558,2334,"{'type': 'Point', 'coordinates': [-72.361558, 42.185727]}",4.728922,493.5585742374266 | |
01081,42.061313,-72.234411,1698,"{'type': 'Point', 'coordinates': [-72.234411, 42.061313]}",38.159846,44.49703491989983 | |
01082,42.293533000000004,-72.278599,10322,"{'type': 'Point', 'coordinates': [-72.278599, 42.293533000000004]}",135.649458,76.0931901401331 | |
01083,42.203641999999995,-72.194599,2888,"{'type': 'Point', 'coordinates': [-72.194599, 42.203641999999995]}",40.955663,70.51527892491937 | |
01084,42.39237,-72.882235,176,"{'type': 'Point', 'coordinates': [-72.882235, 42.39237]}",24.021362,7.326811860210092 | |
01085,42.153503,-72.771602,41117,"{'type': 'Point', 'coordinates': [-72.771602, 42.153503]}",157.596641,260.9002307352477 | |
01086,42.130446,-72.79396700000001,687,"{'type': 'Point', 'coordinates': [-72.79396700000001, 42.130446]}",0.096152,7144.937182793909 | |
01088,42.391709000000006,-72.64649399999999,670,"{'type': 'Point', 'coordinates': [-72.64649399999999, 42.391709000000006]}",13.494369,49.65033933783788 | |
01089,42.125451,-72.649734,28391,"{'type': 'Point', 'coordinates': [-72.649734, 42.125451]}",45.398046,625.3793390138421 | |
01092,42.191868,-72.235108,1394,"{'type': 'Point', 'coordinates': [-72.235108, 42.191868]}",17.45632,79.8564645927664 | |
01093,42.441943,-72.661817,325,"{'type': 'Point', 'coordinates': [-72.661817, 42.441943]}",13.077047,24.85270566053636 | |
01094,42.359108,-72.1368,351,"{'type': 'Point', 'coordinates': [-72.1368, 42.359108]}",3.130121,112.13624010062232 | |
01095,42.138498999999996,-72.420715,14319,"{'type': 'Point', 'coordinates': [-72.420715, 42.138498999999996]}",59.008035,242.66186799814636 | |
01096,42.397138,-72.763554,2217,"{'type': 'Point', 'coordinates': [-72.763554, 42.397138]}",82.545255,26.85799444195793 | |
01097,42.178038,-72.832612,111,"{'type': 'Point', 'coordinates': [-72.832612, 42.178038]}",5.061377,21.930790770970034 | |
01098,42.394315,-72.943115,1101,"{'type': 'Point', 'coordinates': [-72.943115, 42.394315]}",81.615607,13.490066918205976 | |
01103,42.104106,-72.592027,2479,"{'type': 'Point', 'coordinates': [-72.592027, 42.104106]}",1.396913,1774.6273389967735 | |
01104,42.134009000000006,-72.56537800000001,22865,"{'type': 'Point', 'coordinates': [-72.56537800000001, 42.134009000000006]}",13.722522,1666.238902732311 | |
01105,42.099958,-72.580765,12350,"{'type': 'Point', 'coordinates': [-72.580765, 42.099958]}",3.526002,3502.550480686057 | |
01106,42.047565000000006,-72.57113000000001,16021,"{'type': 'Point', 'coordinates': [-72.57113000000001, 42.047565000000006]}",25.361569,631.703819270803 | |
01107,42.12106,-72.607068,11611,"{'type': 'Point', 'coordinates': [-72.607068, 42.12106]}",3.99263,2908.108189338857 | |
01108,42.080692,-72.56079100000001,26688,"{'type': 'Point', 'coordinates': [-72.56079100000001, 42.080692]}",10.054449,2654.34734414586 | |
01109,42.119673999999996,-72.549726,30250,"{'type': 'Point', 'coordinates': [-72.549726, 42.119673999999996]}",14.58285,2074.3544643193886 | |
01118,42.094194,-72.525081,14071,"{'type': 'Point', 'coordinates': [-72.525081, 42.094194]}",9.573115,1469.8454996101061 | |
01119,42.124978000000006,-72.51120999999999,14152,"{'type': 'Point', 'coordinates': [-72.51120999999999, 42.124978000000006]}",9.436034,1499.782641732745 | |
01128,42.092296000000005,-72.489135,2631,"{'type': 'Point', 'coordinates': [-72.489135, 42.092296000000005]}",2.888669,910.8000951303178 | |
01129,42.118671,-72.488203,7019,"{'type': 'Point', 'coordinates': [-72.488203, 42.118671]}",9.113156,770.2051846802578 | |
01151,42.15186,-72.50913100000001,8698,"{'type': 'Point', 'coordinates': [-72.50913100000001, 42.15186]}",6.614445,1315.0007294640745 | |
01199,42.120563,-72.60446800000001,0,"{'type': 'Point', 'coordinates': [-72.60446800000001, 42.120563]}",0.028277,0.0 | |
01201,42.448236,-73.27372700000001,46504,"{'type': 'Point', 'coordinates': [-73.27372700000001, 42.448236]}",143.854485,323.27111664262674 | |
01220,42.623799,-73.116736,8603,"{'type': 'Point', 'coordinates': [-73.116736, 42.623799]}",63.880564,134.6732004432522 | |
01222,42.058703,-73.322175,829,"{'type': 'Point', 'coordinates': [-73.322175, 42.058703]}",8.899226,93.15416868837806 | |
01223,42.312225,-73.110124,2314,"{'type': 'Point', 'coordinates': [-73.110124, 42.312225]}",186.003471,12.440628056881799 | |
01224,42.513163,-73.19574300000001,182,"{'type': 'Point', 'coordinates': [-73.19574300000001, 42.513163]}",0.802753,226.71980048657556 | |
01225,42.563401,-73.153335,3117,"{'type': 'Point', 'coordinates': [-73.153335, 42.563401]}",66.860415,46.619513205235116 | |
01226,42.481119,-73.13507299999999,6945,"{'type': 'Point', 'coordinates': [-73.13507299999999, 42.481119]}",68.650038,101.16527539285558 | |
01229,42.276338,-73.33589599999999,95,"{'type': 'Point', 'coordinates': [-73.33589599999999, 42.276338]}",1.899054,50.02490713797501 | |
01230,42.173195,-73.32429,8430,"{'type': 'Point', 'coordinates': [-73.32429, 42.173195]}",241.553941,34.899037312746636 | |
01235,42.425677,-73.063028,2766,"{'type': 'Point', 'coordinates': [-73.063028, 42.425677]}",121.029182,22.8539923536788 | |
01236,42.266496000000004,-73.378393,1509,"{'type': 'Point', 'coordinates': [-73.378393, 42.266496000000004]}",12.600149,119.7604885466037 | |
01237,42.547818,-73.268033,2496,"{'type': 'Point', 'coordinates': [-73.268033, 42.547818]}",161.278806,15.476305051514332 | |
01238,42.297501000000004,-73.230148,6047,"{'type': 'Point', 'coordinates': [-73.230148, 42.297501000000004]}",92.927103,65.07251172997398 | |
01240,42.367858,-73.269763,4534,"{'type': 'Point', 'coordinates': [-73.269763, 42.367858]}",56.52241,80.2159709750522 | |
01242,42.333734,-73.249199,476,"{'type': 'Point', 'coordinates': [-73.249199, 42.333734]}",1.314718,362.0548284879343 | |
01243,42.350122,-73.024112,334,"{'type': 'Point', 'coordinates': [-73.024112, 42.350122]}",48.317508,6.912608158516785 | |
01244,42.118094,-73.257497,151,"{'type': 'Point', 'coordinates': [-73.257497, 42.118094]}",6.416082,23.534611932952227 | |
01245,42.186893,-73.223105,985,"{'type': 'Point', 'coordinates': [-73.223105, 42.186893]}",74.529466,13.21624926173495 | |
01247,42.698526,-73.0843,16087,"{'type': 'Point', 'coordinates': [-73.0843, 42.698526]}",137.542254,116.96042148618561 | |
01253,42.206683,-73.113214,731,"{'type': 'Point', 'coordinates': [-73.113214, 42.206683]}",48.418183,15.09763387857822 | |
01254,42.382019,-73.365492,972,"{'type': 'Point', 'coordinates': [-73.365492, 42.382019]}",37.912539,25.637955822478677 | |
01255,42.107496000000005,-73.118607,915,"{'type': 'Point', 'coordinates': [-73.118607, 42.107496000000005]}",137.137184,6.672151004646559 | |
01256,42.594165999999994,-73.02232,692,"{'type': 'Point', 'coordinates': [-73.02232, 42.594165999999994]}",93.331075,7.414465117861334 | |
01257,42.085244,-73.367483,2121,"{'type': 'Point', 'coordinates': [-73.367483, 42.085244]}",96.032624,22.08624435795902 | |
01258,42.10928,-73.462886,374,"{'type': 'Point', 'coordinates': [-73.462886, 42.10928]}",67.292067,5.557861671866908 | |
01259,42.075469,-73.234376,635,"{'type': 'Point', 'coordinates': [-73.234376, 42.075469]}",67.603296,9.393033144419467 | |
01260,42.295696,-73.342543,240,"{'type': 'Point', 'coordinates': [-73.342543, 42.295696]}",6.605501,36.33335306436256 | |
01262,42.292202,-73.319209,1238,"{'type': 'Point', 'coordinates': [-73.319209, 42.292202]}",33.303345,37.17344308807419 | |
01264,42.231590000000004,-73.202428,137,"{'type': 'Point', 'coordinates': [-73.202428, 42.231590000000004]}",29.46533,4.649532179004952 | |
01266,42.312354,-73.388044,1463,"{'type': 'Point', 'coordinates': [-73.388044, 42.312354]}",68.259311,21.432973444458003 | |
01267,42.671617,-73.246981,7989,"{'type': 'Point', 'coordinates': [-73.246981, 42.671617]}",141.550933,56.439048692105764 | |
01270,42.515271999999996,-73.031166,778,"{'type': 'Point', 'coordinates': [-73.031166, 42.515271999999996]}",82.923022,9.3821954535135 | |
01301,42.626761,-72.60153000000001,17700,"{'type': 'Point', 'coordinates': [-72.60153000000001, 42.626761]}",67.431433,262.48886035092863 | |
01330,42.513946999999995,-72.821517,1506,"{'type': 'Point', 'coordinates': [-72.821517, 42.513946999999995]}",86.921816,17.32591504991106 | |
01331,42.562408000000005,-72.19108,13263,"{'type': 'Point', 'coordinates': [-72.19108, 42.562408000000005]}",141.441339,93.77032269186874 | |
01337,42.689308000000004,-72.582249,2596,"{'type': 'Point', 'coordinates': [-72.582249, 42.689308000000004]}",96.620547,26.867991132362352 | |
01338,42.572604,-72.824306,187,"{'type': 'Point', 'coordinates': [-72.824306, 42.572604]}",8.95186,20.889513464240952 | |
01339,42.603776,-72.88964399999999,1438,"{'type': 'Point', 'coordinates': [-72.88964399999999, 42.603776]}",142.889793,10.063699931316998 | |
01340,42.694731,-72.71095600000001,1701,"{'type': 'Point', 'coordinates': [-72.71095600000001, 42.694731]}",114.074442,14.911315542529675 | |
01341,42.496937,-72.709414,1833,"{'type': 'Point', 'coordinates': [-72.709414, 42.496937]}",92.941331,19.722119107590572 | |
01342,42.543889,-72.60945799999999,1492,"{'type': 'Point', 'coordinates': [-72.60945799999999, 42.543889]}",48.407273,30.8218147301956 | |
01343,42.657625,-72.978933,75,"{'type': 'Point', 'coordinates': [-72.978933, 42.657625]}",12.700987,5.905052890771403 | |
01344,42.613417999999996,-72.426428,1498,"{'type': 'Point', 'coordinates': [-72.426428, 42.613417999999996]}",36.630873,40.89446626074131 | |
01346,42.693267999999996,-72.823116,533,"{'type': 'Point', 'coordinates': [-72.823116, 42.693267999999996]}",55.408114,9.619529731692365 | |
01347,42.559294,-72.518753,166,"{'type': 'Point', 'coordinates': [-72.518753, 42.559294]}",1.718796,96.57923337033598 | |
01349,42.563061,-72.48211500000001,1091,"{'type': 'Point', 'coordinates': [-72.48211500000001, 42.563061]}",20.46213,53.31800746061139 | |
01350,42.727771999999995,-72.98534599999999,121,"{'type': 'Point', 'coordinates': [-72.98534599999999, 42.727771999999995]}",28.030752,4.316687615087886 | |
01351,42.53988,-72.521689,2270,"{'type': 'Point', 'coordinates': [-72.521689, 42.53988]}",55.310905,41.040731479624135 | |
01354,42.624101,-72.508607,1500,"{'type': 'Point', 'coordinates': [-72.508607, 42.624101]}",38.328346,39.13552648475882 | |
01355,42.458551,-72.327191,878,"{'type': 'Point', 'coordinates': [-72.327191, 42.458551]}",158.426863,5.541989428901335 | |
01360,42.677091,-72.453876,3032,"{'type': 'Point', 'coordinates': [-72.453876, 42.677091]}",91.555885,33.116385691646144 | |
01364,42.605437,-72.292074,7969,"{'type': 'Point', 'coordinates': [-72.292074, 42.605437]}",104.459612,76.28785755015058 | |
01366,42.475621000000004,-72.192468,1277,"{'type': 'Point', 'coordinates': [-72.192468, 42.475621000000004]}",106.03314,12.04340454314566 | |
01367,42.695532,-72.909148,522,"{'type': 'Point', 'coordinates': [-72.909148, 42.695532]}",70.488723,7.405439874403741 | |
01368,42.679456,-72.176935,1261,"{'type': 'Point', 'coordinates': [-72.176935, 42.679456]}",110.198744,11.442961636658943 | |
01370,42.593376,-72.726927,4084,"{'type': 'Point', 'coordinates': [-72.726927, 42.593376]}",130.474793,31.301065179693367 | |
01373,42.475481,-72.615403,4600,"{'type': 'Point', 'coordinates': [-72.615403, 42.475481]}",64.06789,71.7988371397903 | |
01375,42.466691,-72.546751,3684,"{'type': 'Point', 'coordinates': [-72.546751, 42.466691]}",38.179641,96.49121635271533 | |
01376,42.595279999999995,-72.555002,5247,"{'type': 'Point', 'coordinates': [-72.555002, 42.595279999999995]}",8.61558,609.0129741700501 | |
01378,42.673533,-72.353213,774,"{'type': 'Point', 'coordinates': [-72.353213, 42.673533]}",88.941704,8.702329336977847 | |
01379,42.556309999999996,-72.40714799999999,813,"{'type': 'Point', 'coordinates': [-72.40714799999999, 42.556309999999996]}",79.19447,10.265868311259613 | |
01420,42.584925,-71.816862,40337,"{'type': 'Point', 'coordinates': [-71.816862, 42.584925]}",80.303141,502.30911889237314 | |
01430,42.657005,-71.92344200000001,6089,"{'type': 'Point', 'coordinates': [-71.92344200000001, 42.657005]}",102.487241,59.412273572668425 | |
01431,42.676293,-71.832523,3074,"{'type': 'Point', 'coordinates': [-71.832523, 42.676293]}",62.290352,49.3495365060708 | |
01432,42.564663,-71.567298,7089,"{'type': 'Point', 'coordinates': [-71.567298, 42.564663]}",23.150849,306.2090725052891 | |
01434,42.538903000000005,-71.612027,1795,"{'type': 'Point', 'coordinates': [-71.612027, 42.538903000000005]}",14.070318,127.57352037103924 | |
01436,42.602059000000004,-72.08701500000001,3336,"{'type': 'Point', 'coordinates': [-72.08701500000001, 42.602059000000004]}",25.3502,131.59659489865956 | |
01438,42.562243,-72.031402,559,"{'type': 'Point', 'coordinates': [-72.031402, 42.562243]}",1.452399,384.8804632886693 | |
01440,42.588337,-71.986069,20347,"{'type': 'Point', 'coordinates': [-71.986069, 42.588337]}",64.759902,314.1913340140632 | |
01450,42.61176,-71.565269,10646,"{'type': 'Point', 'coordinates': [-71.565269, 42.61176]}",87.478878,121.69794861795096 | |
01451,42.501908,-71.568201,4747,"{'type': 'Point', 'coordinates': [-71.568201, 42.501908]}",51.244272,92.63474364510436 | |
01452,42.489598,-72.00287800000001,4382,"{'type': 'Point', 'coordinates': [-72.00287800000001, 42.489598]}",108.733847,40.300238802366664 | |
01453,42.519967,-71.763319,40883,"{'type': 'Point', 'coordinates': [-71.763319, 42.519967]}",75.117804,544.2517994801871 | |
01460,42.535931,-71.490569,8924,"{'type': 'Point', 'coordinates': [-71.490569, 42.535931]}",45.34891,196.78532515996528 | |
01462,42.582607,-71.720464,10086,"{'type': 'Point', 'coordinates': [-71.720464, 42.582607]}",71.860933,140.3544259577036 | |
01463,42.670643,-71.602858,11497,"{'type': 'Point', 'coordinates': [-71.602858, 42.670643]}",60.020091,191.55252530356876 | |
01464,42.573654,-71.640986,7211,"{'type': 'Point', 'coordinates': [-71.640986, 42.573654]}",39.006561,184.86633569157763 | |
01467,42.489646,-71.609577,316,"{'type': 'Point', 'coordinates': [-71.609577, 42.489646]}",4.930396,64.09221490525304 | |
01468,42.542767,-72.068345,4021,"{'type': 'Point', 'coordinates': [-72.068345, 42.542767]}",56.133032,71.6334011674267 | |
01469,42.664828,-71.695087,6801,"{'type': 'Point', 'coordinates': [-71.695087, 42.664828]}",59.594658,114.12096701687591 | |
01473,42.5546,-71.90544,7277,"{'type': 'Point', 'coordinates': [-71.90544, 42.5546]}",96.48889,75.41800926510814 | |
01474,42.669685,-71.752751,2125,"{'type': 'Point', 'coordinates': [-71.752751, 42.669685]}",25.798251,82.36992499995445 | |
01475,42.66816,-72.055644,10270,"{'type': 'Point', 'coordinates': [-72.055644, 42.66816]}",113.688462,90.33458470042457 | |
01501,42.198708,-71.846006,16075,"{'type': 'Point', 'coordinates': [-71.846006, 42.198708]}",42.447639,378.7018637243876 | |
01503,42.384929,-71.633889,2866,"{'type': 'Point', 'coordinates': [-71.633889, 42.384929]}",34.123662,83.98864107843993 | |
01504,42.039991,-71.53240600000001,9026,"{'type': 'Point', 'coordinates': [-71.53240600000001, 42.039991]}",29.599785,304.93464732936405 | |
01505,42.355049,-71.716157,4355,"{'type': 'Point', 'coordinates': [-71.716157, 42.355049]}",51.144404,85.15105582225574 | |
01506,42.180788,-72.10789100000001,3390,"{'type': 'Point', 'coordinates': [-72.10789100000001, 42.180788]}",42.951046,78.92706501257268 | |
01507,42.133935,-71.968025,12981,"{'type': 'Point', 'coordinates': [-71.968025, 42.133935]}",113.423108,114.44757800147744 | |
01510,42.411887,-71.690005,13606,"{'type': 'Point', 'coordinates': [-71.690005, 42.411887]}",18.819018,722.9920285957535 | |
01515,42.209682,-72.040178,2183,"{'type': 'Point', 'coordinates': [-72.040178, 42.209682]}",26.99805,80.85769157402109 | |
01516,42.053072,-71.752241,8500,"{'type': 'Point', 'coordinates': [-71.752241, 42.053072]}",99.253739,85.63909113791674 | |
01518,42.127477,-72.118818,2974,"{'type': 'Point', 'coordinates': [-72.118818, 42.127477]}",24.935003,119.2700879161715 | |
01519,42.203404,-71.679739,6595,"{'type': 'Point', 'coordinates': [-71.679739, 42.203404]}",28.542021,231.06282487844854 | |
01520,42.336372,-71.850626,13997,"{'type': 'Point', 'coordinates': [-71.850626, 42.336372]}",48.624669,287.85800063749537 | |
01521,42.046813,-72.18013499999999,2481,"{'type': 'Point', 'coordinates': [-72.18013499999999, 42.046813]}",33.812303,73.37565855836557 | |
01522,42.375634000000005,-71.86738199999999,3310,"{'type': 'Point', 'coordinates': [-71.86738199999999, 42.375634000000005]}",43.824709,75.52816836730166 | |
01523,42.483569,-71.675585,7582,"{'type': 'Point', 'coordinates': [-71.675585, 42.483569]}",66.432269,114.13128159148079 | |
01524,42.249603,-71.919217,6696,"{'type': 'Point', 'coordinates': [-71.919217, 42.249603]}",43.884348,152.58287533404848 | |
01525,42.106794,-71.63051800000001,290,"{'type': 'Point', 'coordinates': [-71.63051800000001, 42.106794]}",1.243592,233.1954531711365 | |
01527,42.192246000000004,-71.777649,13246,"{'type': 'Point', 'coordinates': [-71.777649, 42.192246000000004]}",42.208679,313.82171424981107 | |
01529,42.036642,-71.578779,3190,"{'type': 'Point', 'coordinates': [-71.578779, 42.036642]}",12.740259,250.387374385403 | |
01531,42.319125,-72.130814,999,"{'type': 'Point', 'coordinates': [-72.130814, 42.319125]}",54.176479,18.439736550616367 | |
01532,42.323342,-71.646236,14155,"{'type': 'Point', 'coordinates': [-71.646236, 42.323342]}",48.546178,291.5780517263378 | |
01534,42.142074,-71.643348,5631,"{'type': 'Point', 'coordinates': [-71.643348, 42.142074]}",23.009447,244.7255685892842 | |
01535,42.267564,-72.06687600000001,4680,"{'type': 'Point', 'coordinates': [-72.06687600000001, 42.267564]}",56.839295,82.33740407934334 | |
01536,42.231309,-71.692642,6888,"{'type': 'Point', 'coordinates': [-71.692642, 42.231309]}",22.337601,308.3589862671466 | |
01537,42.158966,-71.897051,2248,"{'type': 'Point', 'coordinates': [-71.897051, 42.158966]}",18.380295,122.30489227730023 | |
01540,42.116263000000004,-71.857465,11291,"{'type': 'Point', 'coordinates': [-71.857465, 42.116263000000004]}",52.152701,216.498854009498 | |
01541,42.454125,-71.87754,3413,"{'type': 'Point', 'coordinates': [-71.87754, 42.454125]}",92.801721,36.77733519618672 | |
01542,42.204251,-71.908907,2202,"{'type': 'Point', 'coordinates': [-71.908907, 42.204251]}",10.85073,202.9356550204456 | |
01543,42.388284999999996,-71.969865,7973,"{'type': 'Point', 'coordinates': [-71.969865, 42.388284999999996]}",93.921477,84.89006193972014 | |
01545,42.284766999999995,-71.714228,35299,"{'type': 'Point', 'coordinates': [-71.714228, 42.284766999999995]}",56.44935,625.3216378930847 | |
01550,42.059737,-72.033908,16719,"{'type': 'Point', 'coordinates': [-72.033908, 42.059737]}",54.03014,309.43839864194314 | |
01560,42.175395,-71.674223,4527,"{'type': 'Point', 'coordinates': [-71.674223, 42.175395]}",9.505867,476.2322048057268 | |
01561,42.44397,-71.685583,330,"{'type': 'Point', 'coordinates': [-71.685583, 42.44397]}",0.319275,1033.59173126615 | |
01562,42.247211,-71.991867,11688,"{'type': 'Point', 'coordinates': [-71.991867, 42.247211]}",88.089698,132.68293870186727 | |
01564,42.447924,-71.776045,7808,"{'type': 'Point', 'coordinates': [-71.776045, 42.447924]}",82.047006,95.16495946238429 | |
01566,42.103214,-72.079545,6294,"{'type': 'Point', 'coordinates': [-72.079545, 42.103214]}",75.990863,82.82574709014688 | |
01568,42.176526,-71.603588,7480,"{'type': 'Point', 'coordinates': [-71.603588, 42.176526]}",56.180508,133.14226350534244 | |
01569,42.05593,-71.631232,13569,"{'type': 'Point', 'coordinates': [-71.631232, 42.05593]}",76.891008,176.4705698746985 | |
01570,42.047532000000004,-71.846952,16767,"{'type': 'Point', 'coordinates': [-71.846952, 42.047532000000004]}",37.806044,443.50051542023283 | |
01571,42.053778,-71.935075,11390,"{'type': 'Point', 'coordinates': [-71.935075, 42.053778]}",56.69861,200.88675895229176 | |
01581,42.268426,-71.613309,18272,"{'type': 'Point', 'coordinates': [-71.613309, 42.268426]}",55.58638,328.71361653700063 | |
01583,42.369417,-71.785036,7591,"{'type': 'Point', 'coordinates': [-71.785036, 42.369417]}",35.037528,216.65341230694128 | |
01585,42.240796,-72.162645,4554,"{'type': 'Point', 'coordinates': [-72.162645, 42.240796]}",67.837384,67.13112640074682 | |
01588,42.118794,-71.672494,9733,"{'type': 'Point', 'coordinates': [-71.672494, 42.118794]}",23.945366,406.4669548170615 | |
01590,42.132051000000004,-71.75031800000001,8875,"{'type': 'Point', 'coordinates': [-71.75031800000001, 42.132051000000004]}",87.093549,101.90192157630412 | |
01602,42.269189000000004,-71.850728,22819,"{'type': 'Point', 'coordinates': [-71.850728, 42.269189000000004]}",15.564612,1466.0821612514337 | |
01603,42.243826,-71.84356899999999,19916,"{'type': 'Point', 'coordinates': [-71.84356899999999, 42.243826]}",12.032851,1655.1355950472584 | |
01604,42.253254,-71.767957,34677,"{'type': 'Point', 'coordinates': [-71.767957, 42.253254]}",17.151164,2021.8452811715867 | |
01605,42.289683000000004,-71.78779300000001,26221,"{'type': 'Point', 'coordinates': [-71.78779300000001, 42.289683000000004]}",14.954796,1753.3505639261143 | |
01606,42.315249,-71.795741,19077,"{'type': 'Point', 'coordinates': [-71.795741, 42.315249]}",15.377905,1240.5460951930709 | |
01607,42.225974,-71.788894,8351,"{'type': 'Point', 'coordinates': [-71.788894, 42.225974]}",8.324189,1003.220854307849 | |
01608,42.26198,-71.801462,3888,"{'type': 'Point', 'coordinates': [-71.801462, 42.26198]}",1.159107,3354.3063755114927 | |
01609,42.285114,-71.829987,22421,"{'type': 'Point', 'coordinates': [-71.829987, 42.285114]}",9.950424,2253.2708153943995 | |
01610,42.247049,-71.808366,23945,"{'type': 'Point', 'coordinates': [-71.808366, 42.247049]}",5.514999,4341.795891531439 | |
01611,42.237604,-71.875838,2242,"{'type': 'Point', 'coordinates': [-71.875838, 42.237604]}",9.562353,234.46112060493897 | |
01612,42.296797999999995,-71.928991,4845,"{'type': 'Point', 'coordinates': [-71.928991, 42.296797999999995]}",41.643486,116.34472675990669 | |
01701,42.319587,-71.4428,31217,"{'type': 'Point', 'coordinates': [-71.4428, 42.319587]}",45.764005,682.1299840343956 | |
01702,42.282379,-71.436621,37206,"{'type': 'Point', 'coordinates': [-71.436621, 42.282379]}",22.923873,1623.0241722243009 | |
01718,42.519816,-71.429283,469,"{'type': 'Point', 'coordinates': [-71.429283, 42.519816]}",0.121367,3864.3123748630187 | |
01719,42.485985,-71.520985,4996,"{'type': 'Point', 'coordinates': [-71.520985, 42.485985]}",26.956054,185.33869979634258 | |
01720,42.483953,-71.43849499999999,21361,"{'type': 'Point', 'coordinates': [-71.43849499999999, 42.483953]}",52.173261,409.42428344664904 | |
01721,42.257754999999996,-71.473526,16593,"{'type': 'Point', 'coordinates': [-71.473526, 42.257754999999996]}",33.344085,497.6294896081269 | |
01730,42.499295000000004,-71.281889,13221,"{'type': 'Point', 'coordinates': [-71.281889, 42.499295000000004]}",35.947887,367.78239566625984 | |
01731,42.456754,-71.279477,1396,"{'type': 'Point', 'coordinates': [-71.279477, 42.456754]}",2.051821,680.371240961078 | |
01740,42.439941,-71.601879,4897,"{'type': 'Point', 'coordinates': [-71.601879, 42.439941]}",52.002319,94.16887735333495 | |
01741,42.53662,-71.36183199999999,4852,"{'type': 'Point', 'coordinates': [-71.36183199999999, 42.53662]}",40.201909,120.69078610172467 | |
01742,42.462911,-71.364496,17726,"{'type': 'Point', 'coordinates': [-71.364496, 42.462911]}",66.64753,265.9663456395158 | |
01745,42.292114,-71.499197,397,"{'type': 'Point', 'coordinates': [-71.499197, 42.292114]}",1.036562,382.9968684941181 | |
01746,42.195951,-71.45343000000001,13547,"{'type': 'Point', 'coordinates': [-71.45343000000001, 42.195951]}",49.34829,274.5181241335819 | |
01747,42.123007,-71.53140400000001,5911,"{'type': 'Point', 'coordinates': [-71.53140400000001, 42.123007]}",13.842159,427.02876047009715 | |
01748,42.224096,-71.54048900000001,14925,"{'type': 'Point', 'coordinates': [-71.54048900000001, 42.224096]}",72.1433,206.87991816287862 | |
01749,42.389071,-71.545864,19063,"{'type': 'Point', 'coordinates': [-71.545864, 42.389071]}",30.731687,620.3043783440851 | |
01752,42.349616999999995,-71.547214,38499,"{'type': 'Point', 'coordinates': [-71.547214, 42.349616999999995]}",57.240803,672.5796631469339 | |
01754,42.425955,-71.45625600000001,10106,"{'type': 'Point', 'coordinates': [-71.45625600000001, 42.425955]}",13.894745,727.3253305476279 | |
01756,42.09387,-71.544519,5839,"{'type': 'Point', 'coordinates': [-71.544519, 42.09387]}",46.582317,125.34799417555807 | |
01757,42.158691999999995,-71.521419,28061,"{'type': 'Point', 'coordinates': [-71.521419, 42.158691999999995]}",39.284126,714.3088788586006 | |
01760,42.284822,-71.348811,32786,"{'type': 'Point', 'coordinates': [-71.348811, 42.284822]}",40.964292,800.3555877396831 | |
01770,42.231947,-71.372963,4119,"{'type': 'Point', 'coordinates': [-71.372963, 42.231947]}",41.854954,98.41128961699492 | |
01772,42.302877,-71.530828,9370,"{'type': 'Point', 'coordinates': [-71.530828, 42.302877]}",39.151257,239.32820343418348 | |
01773,42.425506,-71.310812,5112,"{'type': 'Point', 'coordinates': [-71.310812, 42.425506]}",37.286942,137.0989339914225 | |
01775,42.429688,-71.512514,6590,"{'type': 'Point', 'coordinates': [-71.512514, 42.429688]}",46.609276,141.38816487945445 | |
01776,42.383367,-71.42107,17659,"{'type': 'Point', 'coordinates': [-71.42107, 42.383367]}",64.040417,275.74773599616003 | |
01778,42.356275,-71.361942,13109,"{'type': 'Point', 'coordinates': [-71.361942, 42.356275]}",41.458983,316.1920300842883 | |
01801,42.488769,-71.154438,38903,"{'type': 'Point', 'coordinates': [-71.154438, 42.488769]}",33.568299,1158.9208020340857 | |
01803,42.503227,-71.201713,24487,"{'type': 'Point', 'coordinates': [-71.201713, 42.503227]}",30.625015,799.575118575452 | |
01810,42.648044,-71.161751,33201,"{'type': 'Point', 'coordinates': [-71.161751, 42.648044]}",83.280046,398.66692676898856 | |
01821,42.54933,-71.251725,30310,"{'type': 'Point', 'coordinates': [-71.251725, 42.54933]}",43.925375,690.0339496247898 | |
01824,42.590790000000005,-71.355182,24911,"{'type': 'Point', 'coordinates': [-71.355182, 42.590790000000005]}",46.981031,530.2352772973416 | |
01826,42.679722999999996,-71.30068,29422,"{'type': 'Point', 'coordinates': [-71.30068, 42.679722999999996]}",55.243103,532.5913716324009 | |
01827,42.676149,-71.499772,3179,"{'type': 'Point', 'coordinates': [-71.499772, 42.676149]}",43.392174,73.26205872976081 | |
01830,42.796313,-71.053436,25137,"{'type': 'Point', 'coordinates': [-71.053436, 42.796313]}",39.148347,642.0960762404604 | |
01832,42.791114,-71.132859,22060,"{'type': 'Point', 'coordinates': [-71.132859, 42.791114]}",30.779117,716.7197161633974 | |
01833,42.726188,-70.983328,8183,"{'type': 'Point', 'coordinates': [-70.983328, 42.726188]}",34.052802,240.30327959502424 | |
01834,42.7539,-71.015935,6459,"{'type': 'Point', 'coordinates': [-71.015935, 42.7539]}",24.338048,265.3869365365702 | |
01835,42.751233,-71.0943,13682,"{'type': 'Point', 'coordinates': [-71.0943, 42.751233]}",22.523028,607.467166492889 | |
01840,42.706763,-71.160403,4733,"{'type': 'Point', 'coordinates': [-71.160403, 42.706763]}",1.491047,3174.279549873344 | |
01841,42.712015,-71.164873,47225,"{'type': 'Point', 'coordinates': [-71.164873, 42.712015]}",8.46265,5580.403301566294 | |
01843,42.689974,-71.160383,24425,"{'type': 'Point', 'coordinates': [-71.160383, 42.689974]}",9.363997,2608.3946844493867 | |
01844,42.742526,-71.179149,47249,"{'type': 'Point', 'coordinates': [-71.179149, 42.742526]}",59.549982,793.4343288298559 | |
01845,42.673909,-71.091334,28352,"{'type': 'Point', 'coordinates': [-71.091334, 42.673909]}",71.782968,394.9683440227771 | |
01850,42.656045,-71.303309,15237,"{'type': 'Point', 'coordinates': [-71.303309, 42.656045]}",3.827344,3981.089758328491 | |
01851,42.627812,-71.33533,30190,"{'type': 'Point', 'coordinates': [-71.33533, 42.627812]}",8.764905,3444.418393582132 | |
01852,42.632971999999995,-71.295613,33508,"{'type': 'Point', 'coordinates': [-71.295613, 42.632971999999995]}",13.457997,2489.8207363250267 | |
01854,42.649481,-71.348229,27606,"{'type': 'Point', 'coordinates': [-71.348229, 42.649481]}",11.583487,2383.2201823164305 | |
01860,42.838603000000006,-71.011997,6338,"{'type': 'Point', 'coordinates': [-71.011997, 42.838603000000006]}",23.034216,275.15588114655174 | |
01862,42.578542999999996,-71.295592,10227,"{'type': 'Point', 'coordinates': [-71.295592, 42.578542999999996]}",25.008164,408.94645444583614 | |
01863,42.63378,-71.38946999999999,8891,"{'type': 'Point', 'coordinates': [-71.38946999999999, 42.63378]}",12.806264,694.2696168062754 | |
01864,42.578222,-71.084398,14892,"{'type': 'Point', 'coordinates': [-71.084398, 42.578222]}",34.961328,425.9563595524746 | |
01867,42.535183,-71.105423,23956,"{'type': 'Point', 'coordinates': [-71.105423, 42.535183]}",25.820332,927.7959710200473 | |
01876,42.611801,-71.227571,28667,"{'type': 'Point', 'coordinates': [-71.227571, 42.611801]}",53.927705,531.5820504506913 | |
01879,42.667761999999996,-71.42882,11305,"{'type': 'Point', 'coordinates': [-71.42882, 42.667761999999996]}",47.164158,239.69472750896983 | |
01880,42.501523999999996,-71.067489,24733,"{'type': 'Point', 'coordinates': [-71.067489, 42.501523999999996]}",19.290544,1282.130768318405 | |
01886,42.585541,-71.44025,21951,"{'type': 'Point', 'coordinates': [-71.44025, 42.585541]}",81.231539,270.22755287204393 | |
01887,42.564646999999994,-71.164516,22325,"{'type': 'Point', 'coordinates': [-71.164516, 42.564646999999994]}",44.43351,502.43611184441653 | |
01890,42.452752000000004,-71.144319,21382,"{'type': 'Point', 'coordinates': [-71.144319, 42.452752000000004]}",16.441358,1300.5008467062148 | |
01901,42.460419,-70.94637900000001,1689,"{'type': 'Point', 'coordinates': [-70.94637900000001, 42.460419]}",0.710071,2378.63537589903 | |
01902,42.471039000000005,-70.941535,45139,"{'type': 'Point', 'coordinates': [-70.941535, 42.471039000000005]}",6.45988,6987.591100763481 | |
01904,42.492456,-70.97393000000001,18203,"{'type': 'Point', 'coordinates': [-70.97393000000001, 42.492456]}",13.016061,1398.5029725967017 | |
01905,42.465998,-70.975792,25251,"{'type': 'Point', 'coordinates': [-70.975792, 42.465998]}",10.409131,2425.8509187750637 | |
01906,42.468432,-71.01394599999999,26660,"{'type': 'Point', 'coordinates': [-71.01394599999999, 42.468432]}",30.565896,872.2139210314659 | |
01907,42.474145,-70.90659699999999,14027,"{'type': 'Point', 'coordinates': [-70.90659699999999, 42.474145]}",8.967432,1564.2159316067298 | |
01908,42.428256,-70.926041,3410,"{'type': 'Point', 'coordinates': [-70.926041, 42.428256]}",6.267562,544.0712034440186 | |
01913,42.851293,-70.95581,16283,"{'type': 'Point', 'coordinates': [-70.95581, 42.851293]}",35.565435,457.8321620416002 | |
01915,42.570665000000005,-70.867583,39502,"{'type': 'Point', 'coordinates': [-70.867583, 42.570665000000005]}",43.040382,917.7892519634236 | |
01921,42.683108000000004,-71.01833,7961,"{'type': 'Point', 'coordinates': [-71.01833, 42.683108000000004]}",63.193947,125.97725538491844 | |
01922,42.757313,-70.914241,3108,"{'type': 'Point', 'coordinates': [-70.914241, 42.757313]}",25.619136,121.31556661395607 | |
01923,42.574174,-70.95051600000001,26342,"{'type': 'Point', 'coordinates': [-70.95051600000001, 42.574174]}",36.5486,720.7389612734825 | |
01929,42.64042,-70.77117199999999,3504,"{'type': 'Point', 'coordinates': [-70.77117199999999, 42.64042]}",41.546266,84.33970937364141 | |
01930,42.61991,-70.681824,28789,"{'type': 'Point', 'coordinates': [-70.681824, 42.61991]}",81.843645,351.7560831998624 | |
01937,42.585723,-70.98405100000001,151,"{'type': 'Point', 'coordinates': [-70.98405100000001, 42.585723]}",0.189212,798.0466355199459 | |
01938,42.683859999999996,-70.84266600000001,13175,"{'type': 'Point', 'coordinates': [-70.84266600000001, 42.683859999999996]}",92.487448,142.45176275163305 | |
01940,42.534146,-71.038333,12108,"{'type': 'Point', 'coordinates': [-71.038333, 42.534146]}",29.025136,417.15566810780837 | |
01944,42.576636,-70.767154,5136,"{'type': 'Point', 'coordinates': [-70.767154, 42.576636]}",27.111156,189.44230928404528 | |
01945,42.501021,-70.858841,19808,"{'type': 'Point', 'coordinates': [-70.858841, 42.501021]}",20.160079,982.5358323248635 | |
01949,42.606666,-71.010316,8987,"{'type': 'Point', 'coordinates': [-71.010316, 42.606666]}",37.524085,239.4995107808758 | |
01950,42.812358,-70.89109499999999,17416,"{'type': 'Point', 'coordinates': [-70.89109499999999, 42.812358]}",27.598139,631.0570433752798 | |
01951,42.773351,-70.850211,3558,"{'type': 'Point', 'coordinates': [-70.850211, 42.773351]}",42.496223,83.72508775662251 | |
01952,42.844794,-70.841499,8283,"{'type': 'Point', 'coordinates': [-70.841499, 42.844794]}",46.081547,179.7465697060908 | |
01960,42.534279,-70.969782,50944,"{'type': 'Point', 'coordinates': [-70.969782, 42.534279]}",42.928748,1186.7105930971945 | |
01966,42.640715,-70.620248,6952,"{'type': 'Point', 'coordinates': [-70.620248, 42.640715]}",22.274248,312.109302186094 | |
01969,42.720873,-70.89121999999999,5856,"{'type': 'Point', 'coordinates': [-70.89121999999999, 42.720873]}",49.668816,117.90093808557869 | |
01970,42.524435,-70.870859,41109,"{'type': 'Point', 'coordinates': [-70.870859, 42.524435]}",35.206651,1167.6486922882839 | |
01982,42.626222999999996,-70.85723,7764,"{'type': 'Point', 'coordinates': [-70.85723, 42.626222999999996]}",38.633636,200.96477587561262 | |
01983,42.641379,-70.94344,6089,"{'type': 'Point', 'coordinates': [-70.94344, 42.641379]}",33.17938,183.51759436131718 | |
01984,42.600633,-70.883303,4875,"{'type': 'Point', 'coordinates': [-70.883303, 42.600633]}",21.085266,231.2041024286817 | |
01985,42.799565,-70.964428,4235,"{'type': 'Point', 'coordinates': [-70.964428, 42.799565]}",38.137136,111.04661870781278 | |
02019,42.076682,-71.47449,16332,"{'type': 'Point', 'coordinates': [-71.47449, 42.076682]}",48.939652,333.7171257368156 | |
02021,42.175737,-71.125385,21561,"{'type': 'Point', 'coordinates': [-71.125385, 42.175737]}",50.774612,424.64135422639964 | |
02025,42.236444,-70.814309,7542,"{'type': 'Point', 'coordinates': [-70.814309, 42.236444]}",28.105012,268.35071267715523 | |
02026,42.246871999999996,-71.179462,24711,"{'type': 'Point', 'coordinates': [-71.179462, 42.246871999999996]}",27.584874,895.817033639523 | |
02030,42.234159999999996,-71.291167,5589,"{'type': 'Point', 'coordinates': [-71.291167, 42.234159999999996]}",39.98017,139.794303025725 | |
02032,42.156882,-71.216187,4226,"{'type': 'Point', 'coordinates': [-71.216187, 42.156882]}",6.212983,680.1885664261434 | |
02035,42.061338,-71.245802,16865,"{'type': 'Point', 'coordinates': [-71.245802, 42.061338]}",54.000116,312.3141439177649 | |
02038,42.084858000000004,-71.41057099999999,31635,"{'type': 'Point', 'coordinates': [-71.41057099999999, 42.084858000000004]}",70.004,451.9027484143763 | |
02043,42.216097999999995,-70.88127,22157,"{'type': 'Point', 'coordinates': [-70.88127, 42.216097999999995]}",59.714043,371.0517474088968 | |
02045,42.292253,-70.923919,10293,"{'type': 'Point', 'coordinates': [-70.923919, 42.292253]}",21.119675,487.3654542505981 | |
02047,42.133914000000004,-70.686037,180,"{'type': 'Point', 'coordinates': [-70.686037, 42.133914000000004]}",0.641182,280.73152396667405 | |
02048,42.017302,-71.21641,23184,"{'type': 'Point', 'coordinates': [-71.21641, 42.017302]}",52.891462,438.33161579084356 | |
02050,42.115139,-70.71033100000001,25429,"{'type': 'Point', 'coordinates': [-70.71033100000001, 42.115139]}",86.221492,294.92646682569585 | |
02052,42.184599,-71.305307,12024,"{'type': 'Point', 'coordinates': [-71.305307, 42.184599]}",37.912393,317.1522304065586 | |
02053,42.156203000000005,-71.43034499999999,12752,"{'type': 'Point', 'coordinates': [-71.43034499999999, 42.156203000000005]}",30.244358,421.63235867000384 | |
02054,42.173103000000005,-71.36375600000001,7891,"{'type': 'Point', 'coordinates': [-71.36375600000001, 42.173103000000005]}",31.774861,248.34097622016347 | |
02056,42.113664,-71.33755500000001,10981,"{'type': 'Point', 'coordinates': [-71.33755500000001, 42.113664]}",39.789939,275.97428586155917 | |
02061,42.164569,-70.818844,10506,"{'type': 'Point', 'coordinates': [-70.818844, 42.164569]}",55.090563,190.70416833460206 | |
02062,42.187364,-71.195971,28602,"{'type': 'Point', 'coordinates': [-71.195971, 42.187364]}",27.250006,1049.6144477913142 | |
02066,42.202273,-70.758184,17656,"{'type': 'Point', 'coordinates': [-70.758184, 42.202273]}",49.535368,356.43219608260506 | |
02067,42.1076,-71.181828,17486,"{'type': 'Point', 'coordinates': [-71.181828, 42.1076]}",61.200842,285.7150233325221 | |
02071,42.103425,-71.273589,1707,"{'type': 'Point', 'coordinates': [-71.273589, 42.103425]}",2.546771,670.2604984900487 | |
02072,42.119006,-71.10365,26999,"{'type': 'Point', 'coordinates': [-71.10365, 42.119006]}",42.637732,633.2184835722501 | |
02081,42.14669,-71.27053199999999,18472,"{'type': 'Point', 'coordinates': [-71.27053199999999, 42.14669]}",47.837899,386.137359418732 | |
02090,42.219645,-71.216768,14636,"{'type': 'Point', 'coordinates': [-71.216768, 42.219645]}",28.971326,505.1891653146977 | |
02093,42.052671000000004,-71.356858,10955,"{'type': 'Point', 'coordinates': [-71.356858, 42.052671000000004]}",58.560997,187.06990251549166 | |
02108,42.357757,-71.064897,3825,"{'type': 'Point', 'coordinates': [-71.064897, 42.357757]}",0.353039,10834.49703857081 | |
02109,42.367032,-71.050493,3771,"{'type': 'Point', 'coordinates': [-71.050493, 42.367032]}",0.743859,5069.509140845241 | |
02110,42.361962,-71.04784599999999,1733,"{'type': 'Point', 'coordinates': [-71.04784599999999, 42.361962]}",0.711568,2435.4664627976526 | |
02111,42.350518,-71.059077,7383,"{'type': 'Point', 'coordinates': [-71.059077, 42.350518]}",0.743712,9927.229895443397 | |
02113,42.365331,-71.055233,6915,"{'type': 'Point', 'coordinates': [-71.055233, 42.365331]}",0.259756,26621.1367591124 | |
02114,42.363174,-71.068646,11999,"{'type': 'Point', 'coordinates': [-71.068646, 42.363174]}",1.459192,8223.043985986766 | |
02115,42.337105,-71.105696,28441,"{'type': 'Point', 'coordinates': [-71.105696, 42.337105]}",1.936968,14683.257544781329 | |
02116,42.350578999999996,-71.076397,20628,"{'type': 'Point', 'coordinates': [-71.076397, 42.350578999999996]}",1.898998,10862.570682012303 | |
02118,42.337582,-71.070482,26498,"{'type': 'Point', 'coordinates': [-71.070482, 42.337582]}",2.844583,9315.249370470117 | |
02119,42.324028999999996,-71.08501700000001,25346,"{'type': 'Point', 'coordinates': [-71.08501700000001, 42.324028999999996]}",4.137556,6125.838538499539 | |
02120,42.33209,-71.09654499999999,15181,"{'type': 'Point', 'coordinates': [-71.09654499999999, 42.33209]}",1.607482,9443.96266956644 | |
02121,42.306267,-71.085897,25978,"{'type': 'Point', 'coordinates': [-71.085897, 42.306267]}",4.543829,5717.204586704298 | |
02122,42.291413,-71.042158,23479,"{'type': 'Point', 'coordinates': [-71.042158, 42.291413]}",6.902946,3401.3014153667145 | |
02124,42.285804999999996,-71.070571,47783,"{'type': 'Point', 'coordinates': [-71.070571, 42.285804999999996]}",7.959924,6002.946761803253 | |
02125,42.315682,-71.055555,33295,"{'type': 'Point', 'coordinates': [-71.055555, 42.315682]}",6.321947,5266.5737311622515 | |
02126,42.274227,-71.09742299999999,25562,"{'type': 'Point', 'coordinates': [-71.09742299999999, 42.274227]}",5.447046,4692.818823266776 | |
02127,42.334992,-71.03909300000001,31799,"{'type': 'Point', 'coordinates': [-71.03909300000001, 42.334992]}",6.829615,4656.045765390874 | |
02128,42.361203,-71.00705,40508,"{'type': 'Point', 'coordinates': [-71.00705, 42.361203]}",15.513932,2611.07242187216 | |
02129,42.379657,-71.061487,16439,"{'type': 'Point', 'coordinates': [-71.061487, 42.379657]}",4.75674,3455.9383106917767 | |
02130,42.309174,-71.113835,35401,"{'type': 'Point', 'coordinates': [-71.113835, 42.309174]}",8.963696,3949.375346955095 | |
02131,42.284333000000004,-71.126228,29826,"{'type': 'Point', 'coordinates': [-71.126228, 42.284333000000004]}",6.712653,4443.250678978937 | |
02132,42.280454999999996,-71.162017,25861,"{'type': 'Point', 'coordinates': [-71.162017, 42.280454999999996]}",12.03348,2149.0873795444045 | |
02134,42.358016,-71.128608,21503,"{'type': 'Point', 'coordinates': [-71.128608, 42.358016]}",3.552872,6052.286713396937 | |
02135,42.349688,-71.153964,42780,"{'type': 'Point', 'coordinates': [-71.153964, 42.349688]}",7.39658,5783.754113387538 | |
02136,42.255083,-71.12921999999999,28488,"{'type': 'Point', 'coordinates': [-71.12921999999999, 42.255083]}",12.173978,2340.07322832356 | |
02138,42.379637,-71.135152,36314,"{'type': 'Point', 'coordinates': [-71.135152, 42.379637]}",7.936615,4575.502276474291 | |
02139,42.362986,-71.103353,36349,"{'type': 'Point', 'coordinates': [-71.103353, 42.362986]}",4.399386,8262.289328556304 | |
02140,42.392157,-71.133996,17607,"{'type': 'Point', 'coordinates': [-71.133996, 42.392157]}",3.044287,5783.620269705189 | |
02141,42.3703,-71.08256,11910,"{'type': 'Point', 'coordinates': [-71.08256, 42.3703]}",1.693914,7031.053524559098 | |
02142,42.361471,-71.081994,3141,"{'type': 'Point', 'coordinates': [-71.081994, 42.361471]}",1.295198,2425.1118361825756 | |
02143,42.381405,-71.096711,24514,"{'type': 'Point', 'coordinates': [-71.096711, 42.381405]}",3.998309,6131.091919108803 | |
02144,42.399654999999996,-71.12255,23891,"{'type': 'Point', 'coordinates': [-71.12255, 42.399654999999996]}",2.813483,8491.609865778468 | |
02145,42.391577000000005,-71.08991,25439,"{'type': 'Point', 'coordinates': [-71.08991, 42.391577000000005]}",3.845086,6615.97685981536 | |
02148,42.42938,-71.058706,59503,"{'type': 'Point', 'coordinates': [-71.058706, 42.42938]}",13.165647,4519.565198732732 | |
02149,42.405938,-71.054649,41550,"{'type': 'Point', 'coordinates': [-71.054649, 42.405938]}",9.502606,4372.484768914969 | |
02150,42.396824,-71.031348,35124,"{'type': 'Point', 'coordinates': [-71.031348, 42.396824]}",6.364839,5518.442807430008 | |
02151,42.41829,-71.001251,51808,"{'type': 'Point', 'coordinates': [-71.001251, 42.41829]}",18.487092,2802.3877416740283 | |
02152,42.373055,-70.974807,17497,"{'type': 'Point', 'coordinates': [-70.974807, 42.373055]}",8.189023,2136.6407201445154 | |
02155,42.423840000000006,-71.10767299999999,57964,"{'type': 'Point', 'coordinates': [-71.10767299999999, 42.423840000000006]}",22.701384,2553.3245021537014 | |
02163,42.365915,-71.12217700000001,2582,"{'type': 'Point', 'coordinates': [-71.12217700000001, 42.365915]}",0.288894,8937.534182087547 | |
02169,42.248385999999996,-71.002279,55055,"{'type': 'Point', 'coordinates': [-71.002279, 42.248385999999996]}",27.026124,2037.103063687564 | |
02170,42.266415,-71.015576,19505,"{'type': 'Point', 'coordinates': [-71.015576, 42.266415]}",5.580533,3495.185854111068 | |
02171,42.293327000000005,-71.01819300000001,17711,"{'type': 'Point', 'coordinates': [-71.01819300000001, 42.293327000000005]}",11.302727,1566.9669806233485 | |
02176,42.455723,-71.05901899999999,26983,"{'type': 'Point', 'coordinates': [-71.05901899999999, 42.455723]}",12.347174,2185.3583662140018 | |
02180,42.474208000000004,-71.097665,21437,"{'type': 'Point', 'coordinates': [-71.097665, 42.474208000000004]}",17.211449,1245.5081498367742 | |
02184,42.206188,-71.00232,35744,"{'type': 'Point', 'coordinates': [-71.00232, 42.206188]}",37.720838,947.5929458407048 | |
02186,42.241557,-71.082432,27003,"{'type': 'Point', 'coordinates': [-71.082432, 42.241557]}",34.483772,783.0639873155408 | |
02188,42.204578999999995,-70.957753,14608,"{'type': 'Point', 'coordinates': [-70.957753, 42.204578999999995]}",10.011816,1459.075955850567 | |
02189,42.209781,-70.92817600000001,14559,"{'type': 'Point', 'coordinates': [-70.92817600000001, 42.209781]}",10.780961,1350.4361995187628 | |
02190,42.166731,-70.952363,16119,"{'type': 'Point', 'coordinates': [-70.952363, 42.166731]}",19.78947,814.5240878103355 | |
02191,42.243453,-70.942033,8457,"{'type': 'Point', 'coordinates': [-70.942033, 42.243453]}",7.964211,1061.8754324816357 | |
02199,42.347476,-71.082035,1146,"{'type': 'Point', 'coordinates': [-71.082035, 42.347476]}",0.148225,7731.489289930849 | |
02203,42.360588,-71.058737,0,"{'type': 'Point', 'coordinates': [-71.058737, 42.360588]}",0.082171,0.0 | |
02210,42.347471999999996,-71.039271,2090,"{'type': 'Point', 'coordinates': [-71.039271, 42.347471999999996]}",3.804076,549.4106847497263 | |
02215,42.347635,-71.103082,26125,"{'type': 'Point', 'coordinates': [-71.103082, 42.347635]}",2.259091,11564.385852539805 | |
02301,42.078371000000004,-71.042304,61025,"{'type': 'Point', 'coordinates': [-71.042304, 42.078371000000004]}",32.649844,1869.0747802654125 | |
02302,42.088907,-70.998375,32741,"{'type': 'Point', 'coordinates': [-70.998375, 42.088907]}",23.067538,1419.3538989726603 | |
02322,42.132461,-71.054013,4356,"{'type': 'Point', 'coordinates': [-71.054013, 42.132461]}",11.755211,370.55906525199765 | |
02324,41.972376000000004,-70.978773,26563,"{'type': 'Point', 'coordinates': [-70.978773, 41.972376000000004]}",73.475523,361.52175466651664 | |
02330,41.875178999999996,-70.74671500000001,11509,"{'type': 'Point', 'coordinates': [-70.74671500000001, 41.875178999999996]}",102.884064,111.86377707630213 | |
02332,42.044307,-70.70604499999999,15059,"{'type': 'Point', 'coordinates': [-70.70604499999999, 42.044307]}",72.135268,208.76057464706446 | |
02333,42.037278,-70.94045899999999,13794,"{'type': 'Point', 'coordinates': [-70.94045899999999, 42.037278]}",45.413557,303.7418980415914 | |
02338,42.002634,-70.86370600000001,7518,"{'type': 'Point', 'coordinates': [-70.86370600000001, 42.002634]}",45.031746,166.9488897898829 | |
02339,42.122956,-70.85631,13879,"{'type': 'Point', 'coordinates': [-70.85631, 42.122956]}",40.478982,342.86929448966873 | |
02341,42.050239000000005,-70.867359,10218,"{'type': 'Point', 'coordinates': [-70.867359, 42.050239000000005]}",40.754261,250.72224963176242 | |
02343,42.140346,-70.997861,10745,"{'type': 'Point', 'coordinates': [-70.997861, 42.140346]}",18.435672,582.8374468801571 | |
02346,41.878004,-70.86926700000001,23106,"{'type': 'Point', 'coordinates': [-70.86926700000001, 41.878004]}",186.484663,123.90295066785197 | |
02347,41.834412,-70.957166,10612,"{'type': 'Point', 'coordinates': [-70.957166, 41.834412]}",94.085254,112.79132009358236 | |
02351,42.119966999999995,-70.957211,16029,"{'type': 'Point', 'coordinates': [-70.957211, 42.119966999999995]}",25.641788,625.1124141577023 | |
02356,42.060532,-71.119676,12564,"{'type': 'Point', 'coordinates': [-71.119676, 42.060532]}",36.329292,345.83663232413113 | |
02357,42.054978000000006,-71.080651,1360,"{'type': 'Point', 'coordinates': [-71.080651, 42.054978000000006]}",1.299929,1046.2109853692011 | |
02359,42.067803999999995,-70.805713,17828,"{'type': 'Point', 'coordinates': [-70.805713, 42.067803999999995]}",61.001289,292.25611937478897 | |
02360,41.882062,-70.631289,56271,"{'type': 'Point', 'coordinates': [-70.631289, 41.882062]}",281.393095,199.97292399801069 | |
02364,41.987196000000004,-70.74194200000001,12629,"{'type': 'Point', 'coordinates': [-70.74194200000001, 41.987196000000004]}",51.1994,246.66304683258008 | |
02366,41.850984000000004,-70.654984,197,"{'type': 'Point', 'coordinates': [-70.654984, 41.850984000000004]}",2.52111,78.14018428390669 | |
02367,41.9591,-70.80275300000001,2820,"{'type': 'Point', 'coordinates': [-70.80275300000001, 41.9591]}",39.12245,72.08137527174296 | |
02368,42.176092,-71.05204300000001,32158,"{'type': 'Point', 'coordinates': [-71.05204300000001, 42.176092]}",27.609823,1164.7303932372185 | |
02370,42.130399,-70.910615,17489,"{'type': 'Point', 'coordinates': [-70.910615, 42.130399]}",26.938764,649.2131561789546 | |
02375,42.005653,-71.078019,9188,"{'type': 'Point', 'coordinates': [-71.078019, 42.005653]}",38.088543,241.22739481003512 | |
02379,42.021617,-71.026717,6916,"{'type': 'Point', 'coordinates': [-71.026717, 42.021617]}",40.600108,170.34437445338816 | |
02382,42.078974,-70.93939,14489,"{'type': 'Point', 'coordinates': [-70.93939, 42.078974]}",18.023229,803.9070024577727 | |
02420,42.457055,-71.215464,14052,"{'type': 'Point', 'coordinates': [-71.215464, 42.457055]}",17.17717,818.0625795750988 | |
02421,42.438547,-71.239573,17342,"{'type': 'Point', 'coordinates': [-71.239573, 42.438547]}",25.922572,668.9922589471446 | |
02445,42.325483,-71.13504499999999,20679,"{'type': 'Point', 'coordinates': [-71.13504499999999, 42.325483]}",6.862056,3013.528306968057 | |
02446,42.343499,-71.122244,29311,"{'type': 'Point', 'coordinates': [-71.122244, 42.343499]}",3.345457,8761.433789165427 | |
02451,42.397825,-71.255701,17426,"{'type': 'Point', 'coordinates': [-71.255701, 42.397825]}",16.134304,1080.0589848809095 | |
02452,42.392721,-71.213532,14238,"{'type': 'Point', 'coordinates': [-71.213532, 42.392721]}",9.675943,1471.4844847680479 | |
02453,42.369541999999996,-71.240513,28968,"{'type': 'Point', 'coordinates': [-71.240513, 42.369541999999996]}",9.810196,2952.8462020534557 | |
02457,42.299388,-71.274242,1432,"{'type': 'Point', 'coordinates': [-71.274242, 42.299388]}",0.413238,3465.315387258674 | |
02458,42.353584999999995,-71.188192,12131,"{'type': 'Point', 'coordinates': [-71.188192, 42.353584999999995]}",5.258115,2307.10054839044 | |
02459,42.314778999999994,-71.192017,19095,"{'type': 'Point', 'coordinates': [-71.192017, 42.314778999999994]}",13.216664,1444.7670002051955 | |
02460,42.351824,-71.20849,8742,"{'type': 'Point', 'coordinates': [-71.20849, 42.351824]}",3.502948,2495.612267153266 | |
02461,42.317362,-71.206508,7059,"{'type': 'Point', 'coordinates': [-71.206508, 42.317362]}",3.808809,1853.3352551939463 | |
02462,42.328708,-71.2559,1554,"{'type': 'Point', 'coordinates': [-71.2559, 42.328708]}",1.425662,1090.019934598804 | |
02464,42.312975,-71.218882,2953,"{'type': 'Point', 'coordinates': [-71.218882, 42.312975]}",1.484486,1989.24072035708 | |
02465,42.348912,-71.22633,11710,"{'type': 'Point', 'coordinates': [-71.22633, 42.348912]}",5.809006,2015.8354114283923 | |
02466,42.344457,-71.24861700000001,8096,"{'type': 'Point', 'coordinates': [-71.24861700000001, 42.344457]}",4.841723,1672.132007551857 | |
02467,42.314321,-71.152778,22491,"{'type': 'Point', 'coordinates': [-71.152778, 42.314321]}",12.760751,1762.5138206991107 | |
02468,42.328553,-71.22953000000001,5273,"{'type': 'Point', 'coordinates': [-71.22953000000001, 42.328553]}",3.893924,1354.1609954380208 | |
02472,42.369451,-71.177925,32014,"{'type': 'Point', 'coordinates': [-71.177925, 42.369451]}",10.783454,2968.8075824313805 | |
02474,42.420949,-71.15637,26312,"{'type': 'Point', 'coordinates': [-71.15637, 42.420949]}",8.591357,3062.612809594573 | |
02476,42.415637,-71.17567,16532,"{'type': 'Point', 'coordinates': [-71.17567, 42.415637]}",5.611621,2946.029320226722 | |
02478,42.395317,-71.180284,24664,"{'type': 'Point', 'coordinates': [-71.180284, 42.395317]}",12.210307,2019.9328321556534 | |
02481,42.311946999999996,-71.27551700000001,16244,"{'type': 'Point', 'coordinates': [-71.27551700000001, 42.311946999999996]}",14.861734,1093.0083932332525 | |
02482,42.293099,-71.298535,10306,"{'type': 'Point', 'coordinates': [-71.298535, 42.293099]}",11.952165,862.2705593505444 | |
02492,42.276029,-71.24454300000001,19931,"{'type': 'Point', 'coordinates': [-71.24454300000001, 42.276029]}",25.55268,779.9964622106174 | |
02493,42.360502000000004,-71.303433,11261,"{'type': 'Point', 'coordinates': [-71.303433, 42.360502000000004]}",44.892122,250.84579427989615 | |
02494,42.299490000000006,-71.232519,8955,"{'type': 'Point', 'coordinates': [-71.232519, 42.299490000000006]}",7.387466,1212.1883200545356 | |
02532,41.751759,-70.59755200000001,12690,"{'type': 'Point', 'coordinates': [-70.59755200000001, 41.751759]}",43.826131,289.5532804390148 | |
02534,41.668942,-70.619407,842,"{'type': 'Point', 'coordinates': [-70.619407, 41.668942]}",7.416565,113.52964613672232 | |
02535,41.337961,-70.761674,1177,"{'type': 'Point', 'coordinates': [-70.761674, 41.337961]}",128.998533,9.124134768261278 | |
02536,41.596305,-70.56746700000001,19583,"{'type': 'Point', 'coordinates': [-70.56746700000001, 41.596305]}",80.712064,242.62791743251665 | |
02537,41.728421000000004,-70.43581,6293,"{'type': 'Point', 'coordinates': [-70.43581, 41.728421000000004]}",32.929926,191.10276773777142 | |
02538,41.777363,-70.642228,3603,"{'type': 'Point', 'coordinates': [-70.642228, 41.777363]}",12.960108,278.00694253473813 | |
02539,41.377655,-70.52208,4067,"{'type': 'Point', 'coordinates': [-70.52208, 41.377655]}",122.534955,33.19052918410098 | |
02540,41.573881,-70.632049,8221,"{'type': 'Point', 'coordinates': [-70.632049, 41.573881]}",32.297541,254.53950193917237 | |
02542,41.707839,-70.54552,1139,"{'type': 'Point', 'coordinates': [-70.54552, 41.707839]}",79.71406,14.288570924627349 | |
02543,41.478974,-70.766911,635,"{'type': 'Point', 'coordinates': [-70.766911, 41.478974]}",78.073727,8.133337864093512 | |
02553,41.712526000000004,-70.620747,226,"{'type': 'Point', 'coordinates': [-70.620747, 41.712526000000004]}",2.405395,93.95546261632705 | |
02554,41.291072,-70.093329,9852,"{'type': 'Point', 'coordinates': [-70.093329, 41.291072]}",146.81097,67.1067019038155 | |
02556,41.639445,-70.624515,3115,"{'type': 'Point', 'coordinates': [-70.624515, 41.639445]}",11.197619,278.18413896740014 | |
02557,41.441713,-70.576143,4491,"{'type': 'Point', 'coordinates': [-70.576143, 41.441713]}",29.788705,150.76184077152732 | |
02558,41.745017,-70.653513,2156,"{'type': 'Point', 'coordinates': [-70.653513, 41.745017]}",5.897749,365.5632004685177 | |
02559,41.690243,-70.616283,3376,"{'type': 'Point', 'coordinates': [-70.616283, 41.690243]}",16.873548,200.07647472837368 | |
02561,41.766737,-70.540595,539,"{'type': 'Point', 'coordinates': [-70.540595, 41.766737]}",1.810134,297.7680105450757 | |
02562,41.787209000000004,-70.526717,2977,"{'type': 'Point', 'coordinates': [-70.526717, 41.787209000000004]}",9.51324,312.9322922579479 | |
02563,41.728137,-70.476549,10359,"{'type': 'Point', 'coordinates': [-70.476549, 41.728137]}",36.9418,280.4140567054123 | |
02564,41.271934,-69.984415,310,"{'type': 'Point', 'coordinates': [-69.984415, 41.271934]}",17.702807,17.511347211772687 | |
02568,41.458608,-70.613479,4000,"{'type': 'Point', 'coordinates': [-70.613479, 41.458608]}",27.340686,146.30210814754244 | |
02571,41.761187,-70.695991,10481,"{'type': 'Point', 'coordinates': [-70.695991, 41.761187]}",63.988193,163.7958427736817 | |
02575,41.400252,-70.65693399999999,2725,"{'type': 'Point', 'coordinates': [-70.65693399999999, 41.400252]}",75.780116,35.95930098602646 | |
02576,41.772221,-70.762948,3754,"{'type': 'Point', 'coordinates': [-70.762948, 41.772221]}",26.300513,142.7348584417346 | |
02584,41.258845,-70.007333,10,"{'type': 'Point', 'coordinates': [-70.007333, 41.258845]}",0.174589,57.27737715434535 | |
02601,41.657961,-70.29809300000001,14089,"{'type': 'Point', 'coordinates': [-70.29809300000001, 41.657961]}",24.409839,577.1852899152673 | |
02630,41.706756,-70.31249,1850,"{'type': 'Point', 'coordinates': [-70.31249, 41.706756]}",15.61104,118.50587789154342 | |
02631,41.747513,-70.066223,9679,"{'type': 'Point', 'coordinates': [-70.066223, 41.747513]}",64.131964,150.9231808338195 | |
02632,41.659096999999996,-70.346877,10742,"{'type': 'Point', 'coordinates': [-70.346877, 41.659096999999996]}",22.73773,472.43062522072347 | |
02633,41.689734,-69.972126,3884,"{'type': 'Point', 'coordinates': [-69.972126, 41.689734]}",32.198018,120.62854303640678 | |
02635,41.624054,-70.439397,3296,"{'type': 'Point', 'coordinates': [-70.439397, 41.624054]}",17.155778,192.12186121783574 | |
02637,41.705726,-70.270928,253,"{'type': 'Point', 'coordinates': [-70.270928, 41.705726]}",1.890442,133.83113578729208 | |
02638,41.730228000000004,-70.19739799999999,3207,"{'type': 'Point', 'coordinates': [-70.19739799999999, 41.730228000000004]}",16.788912,191.01892963641717 | |
02639,41.668067,-70.136979,2875,"{'type': 'Point', 'coordinates': [-70.136979, 41.668067]}",8.121655,353.99188958408104 | |
02641,41.751246,-70.153472,532,"{'type': 'Point', 'coordinates': [-70.153472, 41.751246]}",5.989445,88.82292098850562 | |
02642,41.841331,-69.977436,4937,"{'type': 'Point', 'coordinates': [-69.977436, 41.841331]}",44.88849,109.9836505972912 | |
02643,41.797777,-69.937327,26,"{'type': 'Point', 'coordinates': [-69.937327, 41.797777]}",9.56183,2.7191447662215285 | |
02644,41.683488,-70.510786,3955,"{'type': 'Point', 'coordinates': [-70.510786, 41.683488]}",9.792683,403.87297332099894 | |
02645,41.71105,-70.057613,9663,"{'type': 'Point', 'coordinates': [-70.057613, 41.71105]}",47.710868,202.5324712180881 | |
02646,41.670596,-70.071449,1676,"{'type': 'Point', 'coordinates': [-70.071449, 41.670596]}",8.600046,194.88267853451015 | |
02647,41.630127,-70.310144,129,"{'type': 'Point', 'coordinates': [-70.310144, 41.630127]}",1.70438,75.6873467184548 | |
02648,41.670946,-70.41537,7301,"{'type': 'Point', 'coordinates': [-70.41537, 41.670946]}",26.693272,273.51461446914414 | |
02649,41.616801,-70.49009699999999,14006,"{'type': 'Point', 'coordinates': [-70.49009699999999, 41.616801]}",70.85011,197.684943608415 | |
02650,41.701947,-69.961375,848,"{'type': 'Point', 'coordinates': [-69.961375, 41.701947]}",4.47057,189.68498424138306 | |
02651,41.875046999999995,-70.003438,16,"{'type': 'Point', 'coordinates': [-70.003438, 41.875046999999995]}",0.186321,85.8733046731179 | |
02652,42.049534,-70.094987,1175,"{'type': 'Point', 'coordinates': [-70.094987, 42.049534]}",27.194176,43.20778096015853 | |
02653,41.769125,-69.97358,5911,"{'type': 'Point', 'coordinates': [-69.97358, 41.769125]}",44.843532,131.81388120810823 | |
02655,41.627984000000005,-70.392013,3518,"{'type': 'Point', 'coordinates': [-70.392013, 41.627984000000005]}",21.470474,163.8529265818724 | |
02657,42.059829,-70.200407,2942,"{'type': 'Point', 'coordinates': [-70.200407, 42.059829]}",37.812094,77.80579409328666 | |
02659,41.681465,-70.023537,1108,"{'type': 'Point', 'coordinates': [-70.023537, 41.681465]}",5.912975,187.38452301929232 | |
02660,41.707699,-70.15856,6261,"{'type': 'Point', 'coordinates': [-70.15856, 41.707699]}",21.338041,293.41962554107005 | |
02663,41.894444,-70.01218,173,"{'type': 'Point', 'coordinates': [-70.01218, 41.894444]}",6.52885,26.497775259042555 | |
02664,41.674727000000004,-70.19564799999999,9371,"{'type': 'Point', 'coordinates': [-70.19564799999999, 41.674727000000004]}",20.22953,463.23369845962804 | |
02666,41.99078,-70.045714,828,"{'type': 'Point', 'coordinates': [-70.045714, 41.99078]}",37.73523,21.942359964415214 | |
02667,41.921997,-70.023356,2580,"{'type': 'Point', 'coordinates': [-70.023356, 41.921997]}",64.378067,40.075760584734546 | |
02668,41.716208,-70.363097,3278,"{'type': 'Point', 'coordinates': [-70.363097, 41.716208]}",45.440688,72.1379922768775 | |
02669,41.66668,-69.989694,285,"{'type': 'Point', 'coordinates': [-69.989694, 41.66668]}",2.850817,99.97134154875602 | |
02670,41.660103,-70.170681,1307,"{'type': 'Point', 'coordinates': [-70.170681, 41.660103]}",7.085525,184.4605727874787 | |
02671,41.670839,-70.1134,1023,"{'type': 'Point', 'coordinates': [-70.1134, 41.670839]}",5.530149,184.98597415729668 | |
02672,41.6357,-70.313634,180,"{'type': 'Point', 'coordinates': [-70.313634, 41.6357]}",1.398235,128.7337250176115 | |
02673,41.655712,-70.24704399999999,8402,"{'type': 'Point', 'coordinates': [-70.24704399999999, 41.655712]}",32.683293,257.0732392234773 | |
02675,41.704155,-70.231801,6577,"{'type': 'Point', 'coordinates': [-70.231801, 41.704155]}",25.306723,259.891413044668 | |
02702,41.785113,-71.05904699999999,4125,"{'type': 'Point', 'coordinates': [-71.05904699999999, 41.785113]}",46.411475,88.87888178516197 | |
02703,41.931653000000004,-71.294503,43593,"{'type': 'Point', 'coordinates': [-71.294503, 41.931653000000004]}",71.94322,605.9361813385611 | |
02713,41.441295000000004,-70.90221700000001,52,"{'type': 'Point', 'coordinates': [-70.90221700000001, 41.441295000000004]}",31.42307,1.6548351259122678 | |
02715,41.805704,-71.157659,3123,"{'type': 'Point', 'coordinates': [-71.157659, 41.805704]}",31.013742,100.69729734644726 | |
02717,41.760108,-70.972874,4745,"{'type': 'Point', 'coordinates': [-70.972874, 41.760108]}",47.862694,99.1377543437066 | |
02718,41.862486,-71.01169,6655,"{'type': 'Point', 'coordinates': [-71.01169, 41.862486]}",27.653719,240.6547922180015 | |
02719,41.633619,-70.871306,15873,"{'type': 'Point', 'coordinates': [-70.871306, 41.633619]}",40.737284,389.6430601509909 | |
02720,41.72505,-71.121329,30287,"{'type': 'Point', 'coordinates': [-71.121329, 41.72505]}",32.523937,931.2218259431509 | |
02721,41.675125,-71.14828100000001,26290,"{'type': 'Point', 'coordinates': [-71.14828100000001, 41.675125]}",15.672889,1677.4188855673003 | |
02723,41.692705,-71.129726,14767,"{'type': 'Point', 'coordinates': [-71.129726, 41.692705]}",4.705888,3137.983734419519 | |
02724,41.683935999999996,-71.1775,16908,"{'type': 'Point', 'coordinates': [-71.1775, 41.683935999999996]}",6.288253,2688.8231119199563 | |
02725,41.720043,-71.188272,2631,"{'type': 'Point', 'coordinates': [-71.188272, 41.720043]}",12.970463,202.84549595492464 | |
02726,41.7597,-71.144592,15534,"{'type': 'Point', 'coordinates': [-71.144592, 41.7597]}",17.833965,871.0345680279175 | |
02738,41.704138,-70.752225,4907,"{'type': 'Point', 'coordinates': [-70.752225, 41.704138]}",51.747758,94.82536422157652 | |
02739,41.665794,-70.814531,6045,"{'type': 'Point', 'coordinates': [-70.814531, 41.665794]}",50.619245,119.4209830668158 | |
02740,41.637485,-70.938265,43087,"{'type': 'Point', 'coordinates': [-70.938265, 41.637485]}",16.844063,2557.9932822621245 | |
02743,41.718216999999996,-70.901151,10307,"{'type': 'Point', 'coordinates': [-70.901151, 41.718216999999996]}",49.082472,209.99349828998018 | |
02744,41.606252000000005,-70.91363199999999,11900,"{'type': 'Point', 'coordinates': [-70.91363199999999, 41.606252000000005]}",4.688387,2538.1863741197135 | |
02745,41.700737,-70.950546,24576,"{'type': 'Point', 'coordinates': [-70.950546, 41.700737]}",27.329915,899.2344103521727 | |
02746,41.660995,-70.940137,15342,"{'type': 'Point', 'coordinates': [-70.940137, 41.660995]}",5.792339,2648.6709427745855 | |
02747,41.664711,-71.015699,22927,"{'type': 'Point', 'coordinates': [-71.015699, 41.664711]}",130.314777,175.93553492402478 | |
02748,41.553084000000005,-70.971453,11442,"{'type': 'Point', 'coordinates': [-70.971453, 41.553084000000005]}",66.39422,172.3342784959293 | |
02760,41.972509,-71.334397,26739,"{'type': 'Point', 'coordinates': [-71.334397, 41.972509]}",47.825303,559.0973464402306 | |
02762,42.012797,-71.336578,8264,"{'type': 'Point', 'coordinates': [-71.336578, 42.012797]}",29.80839,277.237381824379 | |
02763,41.966865999999996,-71.308574,1973,"{'type': 'Point', 'coordinates': [-71.308574, 41.966865999999996]}",2.368698,832.9470451699625 | |
02764,41.851929,-71.153598,3988,"{'type': 'Point', 'coordinates': [-71.153598, 41.851929]}",27.593833,144.52504659283832 | |
02766,41.965340999999995,-71.18178,19031,"{'type': 'Point', 'coordinates': [-71.18178, 41.965340999999995]}",75.921449,250.66697554731866 | |
02767,41.940996000000005,-71.04849899999999,13566,"{'type': 'Point', 'coordinates': [-71.04849899999999, 41.940996000000005]}",62.411359,217.3642781917311 | |
02769,41.846878000000004,-71.24486999999999,11608,"{'type': 'Point', 'coordinates': [-71.24486999999999, 41.846878000000004]}",122.966837,94.39943551609772 | |
02770,41.760864,-70.83895600000001,5093,"{'type': 'Point', 'coordinates': [-70.83895600000001, 41.760864]}",89.551333,56.87240858826747 | |
02771,41.839797999999995,-71.31804699999999,13708,"{'type': 'Point', 'coordinates': [-71.31804699999999, 41.839797999999995]}",48.25061,284.1000352119901 | |
02777,41.758163,-71.21418100000001,15840,"{'type': 'Point', 'coordinates': [-71.21418100000001, 41.758163]}",65.398114,242.20881966106847 | |
02779,41.838060999999996,-71.07761500000001,6411,"{'type': 'Point', 'coordinates': [-71.07761500000001, 41.838060999999996]}",45.132256,142.04918096715573 | |
02780,41.909112,-71.118346,49036,"{'type': 'Point', 'coordinates': [-71.118346, 41.909112]}",89.133352,550.1419939867178 | |
02790,41.599176,-71.082371,15717,"{'type': 'Point', 'coordinates': [-71.082371, 41.599176]}",165.296845,95.08348450328862 | |
02791,41.528538,-71.078091,246,"{'type': 'Point', 'coordinates': [-71.078091, 41.528538]}",2.742985,89.68331944943192 | |
02802,41.95213,-71.456233,786,"{'type': 'Point', 'coordinates': [-71.456233, 41.95213]}",0.55423,1418.183786514624 | |
02804,41.434771999999995,-71.769527,2607,"{'type': 'Point', 'coordinates': [-71.769527, 41.434771999999995]}",26.386884,98.79908518186537 | |
02806,41.734753000000005,-71.319732,16310,"{'type': 'Point', 'coordinates': [-71.319732, 41.734753000000005]}",39.978295,407.9713754676131 | |
02807,41.176815000000005,-71.577085,1051,"{'type': 'Point', 'coordinates': [-71.577085, 41.176815000000005]}",31.779581,33.07154993641986 | |
02808,41.408251,-71.749674,2401,"{'type': 'Point', 'coordinates': [-71.749674, 41.408251]}",20.73793,115.77819001221434 | |
02809,41.67573,-71.273331,22938,"{'type': 'Point', 'coordinates': [-71.273331, 41.67573]}",53.36051,429.8684551553199 | |
02812,41.478947999999995,-71.652334,1497,"{'type': 'Point', 'coordinates': [-71.652334, 41.478947999999995]}",17.410977,85.98024108583913 | |
02813,41.394216,-71.669822,7831,"{'type': 'Point', 'coordinates': [-71.669822, 41.394216]}",108.594842,72.11208060876409 | |
02814,41.895948,-71.700406,7496,"{'type': 'Point', 'coordinates': [-71.700406, 41.895948]}",122.177736,61.353240331773705 | |
02815,41.77463,-71.647954,278,"{'type': 'Point', 'coordinates': [-71.647954, 41.77463]}",11.052788,25.152024991341552 | |
02816,41.696498999999996,-71.622662,32611,"{'type': 'Point', 'coordinates': [-71.622662, 41.696498999999996]}",105.693076,308.54433643316423 | |
02817,41.637083000000004,-71.678361,6135,"{'type': 'Point', 'coordinates': [-71.678361, 41.637083000000004]}",132.716602,46.22631914581418 | |
02818,41.642919,-71.48571899999999,18082,"{'type': 'Point', 'coordinates': [-71.48571899999999, 41.642919]}",65.404565,276.46388291092524 | |
02822,41.570209999999996,-71.626993,6111,"{'type': 'Point', 'coordinates': [-71.626993, 41.570209999999996]}",147.226287,41.50753323012214 | |
02825,41.782067,-71.726833,5377,"{'type': 'Point', 'coordinates': [-71.726833, 41.782067]}",142.603489,37.70594981725868 | |
02826,41.982746,-71.653144,791,"{'type': 'Point', 'coordinates': [-71.653144, 41.982746]}",6.557151,120.63165847484677 | |
02827,41.698747999999995,-71.739118,2172,"{'type': 'Point', 'coordinates': [-71.739118, 41.698747999999995]}",55.744959,38.963164364332926 | |
02828,41.879928,-71.563999,7704,"{'type': 'Point', 'coordinates': [-71.563999, 41.879928]}",13.347963,577.1667182475708 | |
02830,41.97493,-71.651187,5976,"{'type': 'Point', 'coordinates': [-71.651187, 41.97493]}",51.561081,115.90137142392341 | |
02831,41.774762,-71.620289,3515,"{'type': 'Point', 'coordinates': [-71.620289, 41.774762]}",32.122206,109.4258594817554 | |
02832,41.514717,-71.72962199999999,4608,"{'type': 'Point', 'coordinates': [-71.72962199999999, 41.514717]}",59.169952,77.8773658629975 | |
02833,41.49514,-71.769633,784,"{'type': 'Point', 'coordinates': [-71.769633, 41.49514]}",19.577134,40.04671981097948 | |
02835,41.510088,-71.378366,5405,"{'type': 'Point', 'coordinates': [-71.378366, 41.510088]}",38.973219,138.68497749698324 | |
02836,41.454681,-71.62020799999999,136,"{'type': 'Point', 'coordinates': [-71.62020799999999, 41.454681]}",0.799924,170.01615153439576 | |
02837,41.518769,-71.167247,3492,"{'type': 'Point', 'coordinates': [-71.167247, 41.518769]}",64.974577,53.7440974798497 | |
02838,41.965257,-71.47637399999999,3400,"{'type': 'Point', 'coordinates': [-71.47637399999999, 41.965257]}",3.925142,866.2107001479181 | |
02839,41.940757,-71.641513,1902,"{'type': 'Point', 'coordinates': [-71.641513, 41.940757]}",11.616357,163.73463728774863 | |
02840,41.478215999999996,-71.322375,23335,"{'type': 'Point', 'coordinates': [-71.322375, 41.478215999999996]}",27.629295,844.5745720258154 | |
02841,41.511864,-71.332175,1392,"{'type': 'Point', 'coordinates': [-71.332175, 41.511864]}",3.494864,398.29876069569514 | |
02842,41.518673,-71.281685,16095,"{'type': 'Point', 'coordinates': [-71.281685, 41.518673]}",39.904955,403.33337050499114 | |
02852,41.588565,-71.459811,22551,"{'type': 'Point', 'coordinates': [-71.459811, 41.588565]}",88.708364,254.21503658888355 | |
02857,41.822761,-71.633605,8412,"{'type': 'Point', 'coordinates': [-71.633605, 41.822761]}",118.585068,70.936418403032 | |
02858,41.964461,-71.651336,570,"{'type': 'Point', 'coordinates': [-71.651336, 41.964461]}",1.611352,353.7402131874352 | |
02859,41.959073,-71.757323,6738,"{'type': 'Point', 'coordinates': [-71.757323, 41.959073]}",76.891891,87.62952649974494 | |
02860,41.870562,-71.388681,45199,"{'type': 'Point', 'coordinates': [-71.388681, 41.870562]}",14.784595,3057.168627209606 | |
02861,41.878603000000005,-71.353131,26178,"{'type': 'Point', 'coordinates': [-71.353131, 41.878603000000005]}",9.614057,2722.8879545856653 | |
02863,41.890064,-71.39348100000001,19385,"{'type': 'Point', 'coordinates': [-71.39348100000001, 41.890064]}",3.311975,5853.003117475223 | |
02864,41.966913,-71.428933,33396,"{'type': 'Point', 'coordinates': [-71.428933, 41.966913]}",73.098476,456.8631499239464 | |
02865,41.915455,-71.449815,16951,"{'type': 'Point', 'coordinates': [-71.449815, 41.915455]}",45.122439,375.66674975171446 | |
02871,41.587299,-71.261246,17171,"{'type': 'Point', 'coordinates': [-71.261246, 41.587299]}",60.329175,284.62182683585513 | |
02872,41.597055,-71.320666,218,"{'type': 'Point', 'coordinates': [-71.320666, 41.597055]}",26.200147,8.320564002942426 | |
02873,41.533083000000005,-71.780518,235,"{'type': 'Point', 'coordinates': [-71.780518, 41.533083000000005]}",7.708902,30.484237573651864 | |
02874,41.508687,-71.48174300000001,5860,"{'type': 'Point', 'coordinates': [-71.48174300000001, 41.508687]}",41.922766,139.7808532003828 | |
02875,41.456486,-71.638865,307,"{'type': 'Point', 'coordinates': [-71.638865, 41.456486]}",3.005986,102.12955083623145 | |
02876,41.994278,-71.58549000000001,430,"{'type': 'Point', 'coordinates': [-71.58549000000001, 41.994278]}",0.711111,604.6875944824366 | |
02878,41.607962,-71.182556,15780,"{'type': 'Point', 'coordinates': [-71.182556, 41.607962]}",83.681701,188.57169263325562 | |
02879,41.424019,-71.534277,20371,"{'type': 'Point', 'coordinates': [-71.534277, 41.424019]}",109.86509,185.41831622765704 | |
02881,41.478083000000005,-71.52471700000001,7841,"{'type': 'Point', 'coordinates': [-71.52471700000001, 41.478083000000005]}",9.396582,834.4523572507535 | |
02882,41.417567,-71.471851,14184,"{'type': 'Point', 'coordinates': [-71.471851, 41.417567]}",46.25269,306.663244883703 | |
02885,41.725138,-71.25880500000001,10627,"{'type': 'Point', 'coordinates': [-71.25880500000001, 41.725138]}",22.601969,470.1802750017045 | |
02886,41.703849,-71.455568,29269,"{'type': 'Point', 'coordinates': [-71.455568, 41.703849]}",44.279156,661.0107925273011 | |
02888,41.747671000000004,-71.406118,19912,"{'type': 'Point', 'coordinates': [-71.406118, 41.747671000000004]}",18.494553,1076.6413224477499 | |
02889,41.700590999999996,-71.376927,28217,"{'type': 'Point', 'coordinates': [-71.376927, 41.700590999999996]}",43.704408,645.6328158020125 | |
02891,41.361854,-71.789689,21198,"{'type': 'Point', 'coordinates': [-71.789689, 41.361854]}",80.752321,262.50638665853336 | |
02892,41.492004,-71.594774,4988,"{'type': 'Point', 'coordinates': [-71.594774, 41.492004]}",75.970789,65.65681448957967 | |
02893,41.679006,-71.518688,29630,"{'type': 'Point', 'coordinates': [-71.518688, 41.679006]}",20.926173,1415.930184654404 | |
02894,41.444477,-71.703238,722,"{'type': 'Point', 'coordinates': [-71.703238, 41.444477]}",11.524507,62.649100738105325 | |
02895,42.001706,-71.499949,41186,"{'type': 'Point', 'coordinates': [-71.499949, 42.001706]}",20.58075,2001.1904328073565 | |
02896,41.975186,-71.544069,11537,"{'type': 'Point', 'coordinates': [-71.544069, 41.975186]}",63.359966,182.08658760959563 | |
02898,41.51764,-71.668521,1696,"{'type': 'Point', 'coordinates': [-71.668521, 41.51764]}",30.242153,56.0806633046265 | |
02903,41.81823,-71.409088,10780,"{'type': 'Point', 'coordinates': [-71.409088, 41.81823]}",5.935582,1816.1656262182883 | |
02904,41.858334,-71.43629399999999,29359,"{'type': 'Point', 'coordinates': [-71.43629399999999, 41.858334]}",13.758252,2133.9193380089273 | |
02905,41.784725,-71.396103,25223,"{'type': 'Point', 'coordinates': [-71.396103, 41.784725]}",14.487678,1740.996728392224 | |
02906,41.840169,-71.390408,28387,"{'type': 'Point', 'coordinates': [-71.390408, 41.840169]}",10.169591,2791.3610291701993 | |
02907,41.798593,-71.42463000000001,27445,"{'type': 'Point', 'coordinates': [-71.42463000000001, 41.798593]}",6.020337,4558.714902504627 | |
02908,41.839825,-71.43679399999999,37467,"{'type': 'Point', 'coordinates': [-71.43679399999999, 41.839825]}",8.186704,4576.567077544271 | |
02909,41.821417,-71.453215,43540,"{'type': 'Point', 'coordinates': [-71.453215, 41.821417]}",9.025509,4824.104657144545 | |
02910,41.774999,-71.435594,21000,"{'type': 'Point', 'coordinates': [-71.435594, 41.774999]}",9.379715,2238.8739956384607 | |
02911,41.854888,-71.472812,15574,"{'type': 'Point', 'coordinates': [-71.472812, 41.854888]}",6.542853,2380.3071840373 | |
02912,41.825593,-71.402239,1370,"{'type': 'Point', 'coordinates': [-71.402239, 41.825593]}",0.112446,12183.625918218522 | |
02914,41.814838,-71.36533299999999,21963,"{'type': 'Point', 'coordinates': [-71.36533299999999, 41.814838]}",13.621748,1612.348136230387 | |
02915,41.772847,-71.354839,16897,"{'type': 'Point', 'coordinates': [-71.354839, 41.772847]}",20.519213,823.4721282926397 | |
02916,41.842661,-71.352438,8139,"{'type': 'Point', 'coordinates': [-71.352438, 41.842661]}",7.619419,1068.1916823316844 | |
02917,41.905774,-71.52330500000001,13762,"{'type': 'Point', 'coordinates': [-71.52330500000001, 41.905774]}",58.183864,236.5260581524802 | |
02919,41.82744,-71.519879,28790,"{'type': 'Point', 'coordinates': [-71.519879, 41.82744]}",63.117383,456.13424751783515 | |
02920,41.767344,-71.465508,37547,"{'type': 'Point', 'coordinates': [-71.465508, 41.767344]}",24.403397,1538.597269880091 | |
02921,41.762718,-71.515251,12361,"{'type': 'Point', 'coordinates': [-71.515251, 41.762718]}",34.393836,359.39579406030776 | |
03031,42.874864,-71.600503,11247,"{'type': 'Point', 'coordinates': [-71.600503, 42.874864]}",90.50938,124.26336364253076 | |
03032,42.997261,-71.363424,4953,"{'type': 'Point', 'coordinates': [-71.363424, 42.997261]}",74.537753,66.4495480565399 | |
03033,42.749263,-71.67567,4987,"{'type': 'Point', 'coordinates': [-71.67567, 42.749263]}",52.274292,95.40062254692995 | |
03034,43.056895000000004,-71.340634,3970,"{'type': 'Point', 'coordinates': [-71.340634, 43.056895000000004]}",86.360205,45.97024752315028 | |
03036,42.98453,-71.255104,4782,"{'type': 'Point', 'coordinates': [-71.255104, 42.98453]}",67.731994,70.60178975389385 | |
03037,43.141273999999996,-71.24819699999999,4219,"{'type': 'Point', 'coordinates': [-71.24819699999999, 43.141273999999996]}",127.744924,33.02675259331635 | |
03038,42.887613,-71.28204699999999,33269,"{'type': 'Point', 'coordinates': [-71.28204699999999, 42.887613]}",94.977615,350.28253762741883 | |
03042,43.054187,-71.084193,6341,"{'type': 'Point', 'coordinates': [-71.084193, 43.054187]}",67.733588,93.61677399992453 | |
03043,42.997,-71.81778800000001,1573,"{'type': 'Point', 'coordinates': [-71.81778800000001, 42.997]}",82.052006,19.170768353914465 | |
03044,43.000370000000004,-71.119161,4263,"{'type': 'Point', 'coordinates': [-71.119161, 43.000370000000004]}",44.539816,95.7121152004759 | |
03045,43.021515,-71.563462,13560,"{'type': 'Point', 'coordinates': [-71.563462, 43.021515]}",94.216046,143.92452852457848 | |
03046,43.116395000000004,-71.595437,2758,"{'type': 'Point', 'coordinates': [-71.595437, 43.116395000000004]}",81.145111,33.988492541466854 | |
03047,42.936370000000004,-71.86725200000001,1767,"{'type': 'Point', 'coordinates': [-71.86725200000001, 42.936370000000004]}",69.754439,25.3317211826476 | |
03048,42.742874,-71.76175500000001,3426,"{'type': 'Point', 'coordinates': [-71.76175500000001, 42.742874]}",76.678361,44.68014124610723 | |
03049,42.749624,-71.585402,7688,"{'type': 'Point', 'coordinates': [-71.585402, 42.749624]}",83.486646,92.08658352378895 | |
03051,42.760508,-71.409494,24480,"{'type': 'Point', 'coordinates': [-71.409494, 42.760508]}",75.80275,322.94342883338663 | |
03052,42.846081,-71.468283,8258,"{'type': 'Point', 'coordinates': [-71.468283, 42.846081]}",39.584945,208.61466398399696 | |
03053,42.869839,-71.387845,23957,"{'type': 'Point', 'coordinates': [-71.387845, 42.869839]}",106.767317,224.3851458775535 | |
03054,42.852034,-71.519876,25477,"{'type': 'Point', 'coordinates': [-71.519876, 42.852034]}",86.594374,294.2107994221426 | |
03055,42.818645000000004,-71.673354,15086,"{'type': 'Point', 'coordinates': [-71.673354, 42.818645000000004]}",64.925958,232.35698732392984 | |
03057,42.908885,-71.694199,2500,"{'type': 'Point', 'coordinates': [-71.694199, 42.908885]}",43.893219,56.95640595418622 | |
03060,42.741087,-71.45826600000001,29357,"{'type': 'Point', 'coordinates': [-71.45826600000001, 42.741087]}",17.762887,1652.7155748950045 | |
03062,42.722322999999996,-71.501176,26694,"{'type': 'Point', 'coordinates': [-71.501176, 42.722322999999996]}",31.690982,842.3216421630607 | |
03063,42.7821,-71.518366,16216,"{'type': 'Point', 'coordinates': [-71.518366, 42.7821]}",21.338202,759.95156480382 | |
03064,42.779378,-71.474918,14227,"{'type': 'Point', 'coordinates': [-71.474918, 42.779378]}",11.527185,1234.2128628975765 | |
03070,42.981209,-71.67752,5254,"{'type': 'Point', 'coordinates': [-71.67752, 42.981209]}",112.406514,46.741063422712315 | |
03071,42.746257,-71.874434,5109,"{'type': 'Point', 'coordinates': [-71.874434, 42.746257]}",85.561237,59.711619176333315 | |
03076,42.730992,-71.337073,12897,"{'type': 'Point', 'coordinates': [-71.337073, 42.730992]}",69.576288,185.364876033628 | |
03077,43.038038,-71.205107,10155,"{'type': 'Point', 'coordinates': [-71.205107, 43.038038]}",78.365837,129.5845280131443 | |
03079,42.788264,-71.221726,28776,"{'type': 'Point', 'coordinates': [-71.221726, 42.788264]}",67.026672,429.3216288584341 | |
03082,42.896409000000006,-71.768331,1615,"{'type': 'Point', 'coordinates': [-71.768331, 42.896409000000006]}",74.307313,21.73406539407501 | |
03084,42.826857000000004,-71.875252,1366,"{'type': 'Point', 'coordinates': [-71.875252, 42.826857000000004]}",57.850804,23.612463536375397 | |
03086,42.832229999999996,-71.75961600000001,3728,"{'type': 'Point', 'coordinates': [-71.75961600000001, 42.832229999999996]}",70.083161,53.19394768737671 | |
03087,42.811091999999995,-71.302688,13592,"{'type': 'Point', 'coordinates': [-71.302688, 42.811091999999995]}",71.947982,188.91426308523845 | |
03101,42.989027,-71.466111,3049,"{'type': 'Point', 'coordinates': [-71.466111, 42.989027]}",2.306466,1321.9358100227796 | |
03102,43.011907,-71.491063,31096,"{'type': 'Point', 'coordinates': [-71.491063, 43.011907]}",24.315346,1278.8631508677688 | |
03103,42.950629,-71.44641999999999,36476,"{'type': 'Point', 'coordinates': [-71.44641999999999, 42.950629]}",26.159392,1394.3749151356424 | |
03104,43.009552,-71.439782,32798,"{'type': 'Point', 'coordinates': [-71.439782, 43.009552]}",21.798768,1504.5804423442646 | |
03106,43.082204,-71.446738,13374,"{'type': 'Point', 'coordinates': [-71.446738, 43.082204]}",96.385185,138.75576417682862 | |
03109,42.963734,-71.40035,10314,"{'type': 'Point', 'coordinates': [-71.40035, 42.963734]}",21.401196,481.93568247307303 | |
03110,42.935584000000006,-71.53687099999999,21203,"{'type': 'Point', 'coordinates': [-71.53687099999999, 42.935584000000006]}",85.66234,247.51833769658873 | |
03215,43.942834999999995,-71.448115,247,"{'type': 'Point', 'coordinates': [-71.448115, 43.942834999999995]}",124.514356,1.983707003231017 | |
03216,43.451175,-71.79794,2159,"{'type': 'Point', 'coordinates': [-71.79794, 43.451175]}",100.696955,21.440568883140507 | |
03217,43.725967,-71.642579,2076,"{'type': 'Point', 'coordinates': [-71.642579, 43.725967]}",29.725224,69.83967555635577 | |
03218,43.338034,-71.277262,960,"{'type': 'Point', 'coordinates': [-71.277262, 43.338034]}",37.846463,25.365646454201016 | |
03220,43.474458,-71.48221,7430,"{'type': 'Point', 'coordinates': [-71.48221, 43.474458]}",84.089436,88.35830460320841 | |
03221,43.258003,-71.960169,2091,"{'type': 'Point', 'coordinates': [-71.960169, 43.258003]}",121.213613,17.250537693319973 | |
03222,43.642625,-71.78895,5353,"{'type': 'Point', 'coordinates': [-71.78895, 43.642625]}",202.54867,26.428215993716474 | |
03223,43.855434,-71.685479,3427,"{'type': 'Point', 'coordinates': [-71.685479, 43.855434]}",191.914401,17.856919450250114 | |
03224,43.36249,-71.55802,2318,"{'type': 'Point', 'coordinates': [-71.55802, 43.36249]}",106.568513,21.75126531042054 | |
03225,43.363816,-71.24173,3660,"{'type': 'Point', 'coordinates': [-71.24173, 43.363816]}",79.712667,45.91491086353942 | |
03226,43.716118,-71.494247,1117,"{'type': 'Point', 'coordinates': [-71.494247, 43.716118]}",42.994766,25.97990648443115 | |
03227,43.841192,-71.480852,925,"{'type': 'Point', 'coordinates': [-71.480852, 43.841192]}",176.047236,5.25427164332191 | |
03229,43.202187,-71.696803,5589,"{'type': 'Point', 'coordinates': [-71.696803, 43.202187]}",116.86925,47.82267362886303 | |
03230,43.508646999999996,-71.890242,1231,"{'type': 'Point', 'coordinates': [-71.890242, 43.508646999999996]}",107.06579,11.49760348286787 | |
03231,43.473341,-71.762339,202,"{'type': 'Point', 'coordinates': [-71.762339, 43.473341]}",6.207297,32.54234492082464 | |
03233,43.424004,-71.93119200000001,115,"{'type': 'Point', 'coordinates': [-71.93119200000001, 43.424004]}",1.461418,78.69069629633684 | |
03234,43.204812,-71.348563,4572,"{'type': 'Point', 'coordinates': [-71.348563, 43.204812]}",89.589454,51.03279231950671 | |
03235,43.449135999999996,-71.674267,8562,"{'type': 'Point', 'coordinates': [-71.674267, 43.449135999999996]}",81.707648,104.78823230843702 | |
03237,43.423058000000005,-71.387218,2254,"{'type': 'Point', 'coordinates': [-71.387218, 43.423058000000005]}",98.578078,22.865124231778996 | |
03238,43.984378,-71.91125600000001,75,"{'type': 'Point', 'coordinates': [-71.91125600000001, 43.984378]}",7.257753,10.333776859036123 | |
03240,43.574714,-71.952004,1340,"{'type': 'Point', 'coordinates': [-71.952004, 43.574714]}",109.840219,12.199538677176163 | |
03241,43.751838,-71.817787,876,"{'type': 'Point', 'coordinates': [-71.817787, 43.751838]}",113.566434,7.713546768581287 | |
03242,43.169407,-71.83120100000001,4836,"{'type': 'Point', 'coordinates': [-71.83120100000001, 43.169407]}",115.784263,41.76733413244596 | |
03243,43.528306,-71.769192,1085,"{'type': 'Point', 'coordinates': [-71.769192, 43.528306]}",68.963354,15.732993496807016 | |
03244,43.128103,-71.91694,8092,"{'type': 'Point', 'coordinates': [-71.91694, 43.128103]}",217.4791,37.20817310720892 | |
03245,43.761517,-71.58336800000001,2027,"{'type': 'Point', 'coordinates': [-71.58336800000001, 43.761517]}",92.646716,21.878811117276946 | |
03246,43.576496,-71.482301,15963,"{'type': 'Point', 'coordinates': [-71.482301, 43.576496]}",67.67687,235.87083740722645 | |
03249,43.519498999999996,-71.375838,7113,"{'type': 'Point', 'coordinates': [-71.375838, 43.519498999999996]}",138.62807,51.30995475880173 | |
03251,44.10082,-71.494049,1662,"{'type': 'Point', 'coordinates': [-71.494049, 44.10082]}",391.593359,4.2441986356566375 | |
03253,43.631211,-71.49858499999999,6219,"{'type': 'Point', 'coordinates': [-71.49858499999999, 43.631211]}",138.681547,44.84374550566558 | |
03254,43.717721000000004,-71.369179,4049,"{'type': 'Point', 'coordinates': [-71.369179, 43.717721000000004]}",193.438446,20.93172315910768 | |
03255,43.314026,-72.024551,2090,"{'type': 'Point', 'coordinates': [-72.024551, 43.314026]}",101.195086,20.653176775797196 | |
03256,43.623334,-71.632615,2169,"{'type': 'Point', 'coordinates': [-71.632615, 43.623334]}",101.907611,21.283984372864946 | |
03257,43.417721,-71.99060899999999,4455,"{'type': 'Point', 'coordinates': [-71.99060899999999, 43.417721]}",67.27852,66.21727112903197 | |
03258,43.265259,-71.408835,2517,"{'type': 'Point', 'coordinates': [-71.408835, 43.265259]}",55.029156,45.739389497451135 | |
03259,43.875712,-71.39501800000001,368,"{'type': 'Point', 'coordinates': [-71.39501800000001, 43.875712]}",61.517594,5.9820284909061945 | |
03260,43.330719,-71.916854,809,"{'type': 'Point', 'coordinates': [-71.916854, 43.330719]}",64.341174,12.573597118386433 | |
03261,43.215368,-71.212815,4246,"{'type': 'Point', 'coordinates': [-71.212815, 43.215368]}",78.490798,54.09551320907707 | |
03262,43.999889,-71.71444699999999,1231,"{'type': 'Point', 'coordinates': [-71.71444699999999, 43.999889]}",148.822877,8.27157776287311 | |
03263,43.288501000000004,-71.309368,4114,"{'type': 'Point', 'coordinates': [-71.309368, 43.288501000000004]}",63.438164,64.85055273667756 | |
03264,43.738808,-71.70271600000001,7468,"{'type': 'Point', 'coordinates': [-71.70271600000001, 43.738808]}",97.19748,76.83326769377149 | |
03266,43.782872999999995,-71.884739,2163,"{'type': 'Point', 'coordinates': [-71.884739, 43.782872999999995]}",269.627393,8.022181930157224 | |
03268,43.386099,-71.772917,1272,"{'type': 'Point', 'coordinates': [-71.772917, 43.386099]}",78.602864,16.182616450209753 | |
03269,43.524186,-71.601607,2966,"{'type': 'Point', 'coordinates': [-71.601607, 43.524186]}",128.470701,23.086976072466516 | |
03273,43.301982,-71.926953,312,"{'type': 'Point', 'coordinates': [-71.926953, 43.301982]}",16.035658,19.456638449136292 | |
03275,43.170513,-71.417063,11437,"{'type': 'Point', 'coordinates': [-71.417063, 43.170513]}",112.162028,101.96855570407482 | |
03276,43.431031,-71.575998,8324,"{'type': 'Point', 'coordinates': [-71.575998, 43.431031]}",105.312997,79.0405765396649 | |
03278,43.30893,-71.83550600000001,2952,"{'type': 'Point', 'coordinates': [-71.83550600000001, 43.30893]}",161.667793,18.25966659914755 | |
03279,43.965803,-71.859117,829,"{'type': 'Point', 'coordinates': [-71.859117, 43.965803]}",119.64399,6.928889616603391 | |
03280,43.190068,-72.093879,1123,"{'type': 'Point', 'coordinates': [-72.093879, 43.190068]}",123.525199,9.091262423305224 | |
03281,43.078057,-71.70370799999999,8785,"{'type': 'Point', 'coordinates': [-71.70370799999999, 43.078057]}",155.663817,56.435722631676185 | |
03282,43.858721,-71.92371800000001,902,"{'type': 'Point', 'coordinates': [-71.92371800000001, 43.858721]}",108.663751,8.300836219062601 | |
03284,43.472936,-72.013121,999,"{'type': 'Point', 'coordinates': [-72.013121, 43.472936]}",102.830827,9.714985565563914 | |
03285,43.947877000000005,-71.635785,2479,"{'type': 'Point', 'coordinates': [-71.635785, 43.947877000000005]}",131.284977,18.882587000034285 | |
03287,43.443284000000006,-71.922446,1295,"{'type': 'Point', 'coordinates': [-71.922446, 43.443284000000006]}",68.248627,18.97474069331827 | |
03290,43.129847,-71.13185899999999,4731,"{'type': 'Point', 'coordinates': [-71.13185899999999, 43.129847]}",123.357421,38.35196911258383 | |
03291,43.179173,-71.14260999999999,39,"{'type': 'Point', 'coordinates': [-71.14260999999999, 43.179173]}",0.471846,82.65408629086609 | |
03293,43.970620000000004,-71.679913,143,"{'type': 'Point', 'coordinates': [-71.679913, 43.970620000000004]}",4.453873,32.10688764587585 | |
03301,43.238549,-71.555988,33008,"{'type': 'Point', 'coordinates': [-71.555988, 43.238549]}",135.107332,244.30946501112166 | |
03303,43.311717,-71.66538100000001,15524,"{'type': 'Point', 'coordinates': [-71.66538100000001, 43.311717]}",179.282823,86.58944421016842 | |
03304,43.133177,-71.537242,7519,"{'type': 'Point', 'coordinates': [-71.537242, 43.133177]}",73.900144,101.74540390611418 | |
03307,43.333988,-71.446658,5334,"{'type': 'Point', 'coordinates': [-71.446658, 43.333988]}",129.431247,41.21106860694929 | |
03431,42.965044,-72.294803,25280,"{'type': 'Point', 'coordinates': [-72.294803, 42.965044]}",155.795588,162.2639018506737 | |
03440,43.050292,-71.98196800000001,2692,"{'type': 'Point', 'coordinates': [-71.98196800000001, 43.050292]}",95.833921,28.09026252823361 | |
03441,42.780685999999996,-72.447028,395,"{'type': 'Point', 'coordinates': [-72.447028, 42.780685999999996]}",10.175932,38.81708329025784 | |
03442,43.020284000000004,-71.903706,1491,"{'type': 'Point', 'coordinates': [-71.903706, 43.020284000000004]}",30.098513,49.537330963825355 | |
03443,42.875727000000005,-72.456114,742,"{'type': 'Point', 'coordinates': [-72.456114, 42.875727000000005]}",29.071621,25.523172581260603 | |
03444,42.889278999999995,-72.069849,1590,"{'type': 'Point', 'coordinates': [-72.069849, 42.889278999999995]}",75.081031,21.177119957236602 | |
03445,43.020616,-72.21437399999999,691,"{'type': 'Point', 'coordinates': [-72.21437399999999, 43.020616]}",52.315272,13.208380145667597 | |
03446,42.858271,-72.29635999999999,6285,"{'type': 'Point', 'coordinates': [-72.29635999999999, 42.858271]}",111.21464,56.512344058300236 | |
03447,42.753205,-72.153028,2422,"{'type': 'Point', 'coordinates': [-72.153028, 42.753205]}",94.270513,25.69202100342872 | |
03448,43.052609000000004,-72.274501,811,"{'type': 'Point', 'coordinates': [-72.274501, 43.052609000000004]}",50.519681,16.05314966260377 | |
03449,42.977339,-71.997821,1654,"{'type': 'Point', 'coordinates': [-71.997821, 42.977339]}",80.956354,20.430761988120164 | |
03450,42.948536,-72.06898199999999,961,"{'type': 'Point', 'coordinates': [-72.06898199999999, 42.948536]}",52.338463,18.361257570746776 | |
03451,42.809298,-72.50482199999999,4077,"{'type': 'Point', 'coordinates': [-72.50482199999999, 42.809298]}",60.9036,66.94185565385298 | |
03452,42.829254,-72.059901,5457,"{'type': 'Point', 'coordinates': [-72.059901, 42.829254]}",104.007591,52.46732423597812 | |
03455,42.901767,-72.17291800000001,2086,"{'type': 'Point', 'coordinates': [-72.17291800000001, 42.901767]}",62.035705,33.62579662792581 | |
03456,43.138544,-72.20876899999999,742,"{'type': 'Point', 'coordinates': [-72.20876899999999, 43.138544]}",68.458359,10.838705613729362 | |
03457,42.999482,-72.121703,852,"{'type': 'Point', 'coordinates': [-72.121703, 42.999482]}",63.686411,13.378050146364819 | |
03458,42.868369,-71.940102,6643,"{'type': 'Point', 'coordinates': [-71.940102, 42.868369]}",140.243674,47.36755541643896 | |
03461,42.756663,-72.01324699999999,6014,"{'type': 'Point', 'coordinates': [-72.01324699999999, 42.756663]}",103.140413,58.30886095055679 | |
03462,42.889272999999996,-72.388976,1562,"{'type': 'Point', 'coordinates': [-72.388976, 42.889272999999996]}",53.876451,28.99225860292839 | |
03464,43.090821999999996,-72.126816,1109,"{'type': 'Point', 'coordinates': [-72.126816, 43.090821999999996]}",134.012217,8.275364924378499 | |
03465,42.828784999999996,-72.18894,2156,"{'type': 'Point', 'coordinates': [-72.18894, 42.828784999999996]}",46.184593,46.68223448456069 | |
03466,42.890398,-72.502989,1332,"{'type': 'Point', 'coordinates': [-72.502989, 42.890398]}",41.178459,32.347009391487916 | |
03467,42.968075,-72.430856,1842,"{'type': 'Point', 'coordinates': [-72.430856, 42.968075]}",94.429595,19.50659642244574 | |
03470,42.771370000000005,-72.35421600000001,5033,"{'type': 'Point', 'coordinates': [-72.35421600000001, 42.771370000000005]}",228.218494,22.05342744922329 | |
03561,44.34335,-71.79511600000001,5939,"{'type': 'Point', 'coordinates': [-71.79511600000001, 44.34335]}",142.134734,41.78429742584947 | |
03570,44.504596,-71.155466,10051,"{'type': 'Point', 'coordinates': [-71.155466, 44.504596]}",276.307256,36.37617102606961 | |
03574,44.260435,-71.60920300000001,2526,"{'type': 'Point', 'coordinates': [-71.60920300000001, 44.260435]}",235.536577,10.724448967431501 | |
03575,44.313668,-71.402828,124,"{'type': 'Point', 'coordinates': [-71.402828, 44.313668]}",72.076728,1.7203888611591802 | |
03576,44.912445,-71.385112,3238,"{'type': 'Point', 'coordinates': [-71.385112, 44.912445]}",371.520573,8.715533500213459 | |
03579,44.964771,-71.025563,461,"{'type': 'Point', 'coordinates': [-71.025563, 44.964771]}",1505.836103,0.3061422150004063 | |
03580,44.163446,-71.69329499999999,1369,"{'type': 'Point', 'coordinates': [-71.69329499999999, 44.163446]}",246.821338,5.546522075818259 | |
03581,44.289758,-71.152198,3230,"{'type': 'Point', 'coordinates': [-71.152198, 44.289758]}",393.068469,8.217397870191414 | |
03582,44.563183,-71.442465,2577,"{'type': 'Point', 'coordinates': [-71.442465, 44.563183]}",225.304579,11.437850093583762 | |
03583,44.396741,-71.464694,1107,"{'type': 'Point', 'coordinates': [-71.464694, 44.396741]}",130.95064,8.453566931784373 | |
03584,44.483853,-71.545865,3774,"{'type': 'Point', 'coordinates': [-71.545865, 44.483853]}",155.692901,24.24002620389224 | |
03585,44.222415999999996,-71.877173,2519,"{'type': 'Point', 'coordinates': [-71.877173, 44.222415999999996]}",211.479046,11.911345580781559 | |
03586,44.21841,-71.80024,547,"{'type': 'Point', 'coordinates': [-71.80024, 44.21841]}",43.707011,12.515154605287467 | |
03588,44.62304,-71.211846,1641,"{'type': 'Point', 'coordinates': [-71.211846, 44.62304]}",375.158282,4.374153733863191 | |
03590,44.749537,-71.478886,1052,"{'type': 'Point', 'coordinates': [-71.478886, 44.749537]}",274.452822,3.833081373818047 | |
03592,45.116236,-71.26111,1145,"{'type': 'Point', 'coordinates': [-71.26111, 45.116236]}",883.381412,1.2961558670424005 | |
03593,44.301396000000004,-71.29983399999999,313,"{'type': 'Point', 'coordinates': [-71.29983399999999, 44.301396000000004]}",242.035406,1.2931992272238055 | |
03595,44.305302000000005,-71.497342,639,"{'type': 'Point', 'coordinates': [-71.497342, 44.305302000000005]}",95.309598,6.704466427400104 | |
03597,44.744873999999996,-71.381359,521,"{'type': 'Point', 'coordinates': [-71.381359, 44.744873999999996]}",140.402843,3.710751070760013 | |
03598,44.378946,-71.628862,3285,"{'type': 'Point', 'coordinates': [-71.628862, 44.378946]}",162.714984,20.18867543262027 | |
03601,43.238837,-72.286124,477,"{'type': 'Point', 'coordinates': [-72.286124, 43.238837]}",50.030044,9.534271047213151 | |
03602,43.140832,-72.34756800000001,2654,"{'type': 'Point', 'coordinates': [-72.34756800000001, 43.140832]}",151.998106,17.460743885848157 | |
03603,43.246634,-72.383931,5412,"{'type': 'Point', 'coordinates': [-72.383931, 43.246634]}",116.25102,46.55443023209603 | |
03604,43.127324,-72.37684399999999,69,"{'type': 'Point', 'coordinates': [-72.37684399999999, 43.127324]}",1.296971,53.20088112995587 | |
03605,43.236564,-72.18486899999999,1160,"{'type': 'Point', 'coordinates': [-72.18486899999999, 43.236564]}",84.871795,13.667673695366052 | |
03607,43.196509999999996,-72.268353,322,"{'type': 'Point', 'coordinates': [-72.268353, 43.196509999999996]}",40.200349,8.009880710239605 | |
03608,43.076505,-72.395926,2811,"{'type': 'Point', 'coordinates': [-72.395926, 43.076505]}",90.471013,31.07072538250456 | |
03609,43.143935,-72.446448,854,"{'type': 'Point', 'coordinates': [-72.446448, 43.143935]}",3.206404,266.3419831063085 | |
03740,44.184481,-71.978837,911,"{'type': 'Point', 'coordinates': [-71.978837, 44.184481]}",89.879695,10.135770932467006 | |
03741,43.67694,-72.007001,4208,"{'type': 'Point', 'coordinates': [-72.007001, 43.67694]}",203.978902,20.6295845243838 | |
03743,43.360727000000004,-72.326929,14103,"{'type': 'Point', 'coordinates': [-72.326929, 43.360727000000004]}",160.857504,87.67387065759767 | |
03745,43.476437,-72.33413,1424,"{'type': 'Point', 'coordinates': [-72.33413, 43.476437]}",92.107548,15.460187909898547 | |
03746,43.494319,-72.25743299999999,216,"{'type': 'Point', 'coordinates': [-72.25743299999999, 43.494319]}",18.290279,11.809551948332771 | |
03748,43.5891,-72.13213499999999,4762,"{'type': 'Point', 'coordinates': [-72.13213499999999, 43.5891]}",118.038126,40.34289734487991 | |
03750,43.721022999999995,-72.18520699999999,870,"{'type': 'Point', 'coordinates': [-72.18520699999999, 43.721022999999995]}",32.799891,26.524478389272694 | |
03751,43.449740999999996,-72.09229,583,"{'type': 'Point', 'coordinates': [-72.09229, 43.449740999999996]}",8.44393,69.04367989786746 | |
03752,43.271984,-72.100691,810,"{'type': 'Point', 'coordinates': [-72.100691, 43.271984]}",58.357957,13.879855321186106 | |
03753,43.51659,-72.14909300000001,2971,"{'type': 'Point', 'coordinates': [-72.14909300000001, 43.51659]}",72.505095,40.97643069083628 | |
03754,43.377461,-72.13839,86,"{'type': 'Point', 'coordinates': [-72.13839, 43.377461]}",0.099446,864.7909418176698 | |
03755,43.678257,-72.20428199999999,10538,"{'type': 'Point', 'coordinates': [-72.20428199999999, 43.678257]}",96.072529,109.68796293475317 | |
03765,44.035225,-72.050202,503,"{'type': 'Point', 'coordinates': [-72.050202, 44.035225]}",12.162382,41.35703022648031 | |
03766,43.632568,-72.23481600000001,8958,"{'type': 'Point', 'coordinates': [-72.23481600000001, 43.632568]}",83.57655,107.18317518490534 | |
03768,43.816634,-72.09429499999999,1716,"{'type': 'Point', 'coordinates': [-72.09429499999999, 43.816634]}",142.514362,12.04089171026847 | |
03770,43.531299,-72.258812,524,"{'type': 'Point', 'coordinates': [-72.258812, 43.531299]}",12.816565,40.88458959167296 | |
03771,44.29661,-71.980696,754,"{'type': 'Point', 'coordinates': [-71.980696, 44.29661]}",60.986054,12.36348231351384 | |
03773,43.371345,-72.202789,7841,"{'type': 'Point', 'coordinates': [-72.202789, 43.371345]}",242.463978,32.338824367552036 | |
03774,44.089733,-71.996581,1966,"{'type': 'Point', 'coordinates': [-71.996581, 44.089733]}",69.509281,28.28399275198948 | |
03777,43.883333,-72.033845,1237,"{'type': 'Point', 'coordinates': [-72.033845, 43.883333]}",120.366381,10.276955988233956 | |
03779,43.961851,-72.001293,790,"{'type': 'Point', 'coordinates': [-72.001293, 43.961851]}",106.869835,7.392170110490018 | |
03780,44.046677,-71.988955,410,"{'type': 'Point', 'coordinates': [-71.988955, 44.046677]}",42.351668,9.680846572560023 | |
03781,43.560058000000005,-72.299358,1840,"{'type': 'Point', 'coordinates': [-72.299358, 43.560058000000005]}",124.427665,14.787708183706574 | |
03782,43.390088,-72.093129,2945,"{'type': 'Point', 'coordinates': [-72.093129, 43.390088]}",64.685627,45.52788828961958 | |
03784,43.638325,-72.30649,4086,"{'type': 'Point', 'coordinates': [-72.30649, 43.638325]}",23.563078,173.40688682522716 | |
03785,44.043523,-71.912219,2400,"{'type': 'Point', 'coordinates': [-71.912219, 44.043523]}",156.731555,15.31280666487358 | |
03801,43.074812,-70.80544300000001,21532,"{'type': 'Point', 'coordinates': [-70.80544300000001, 43.074812]}",75.648599,284.63184096773557 | |
03809,43.464739,-71.200171,3716,"{'type': 'Point', 'coordinates': [-71.200171, 43.464739]}",108.043055,34.39369610568676 | |
03810,43.512547999999995,-71.294872,1538,"{'type': 'Point', 'coordinates': [-71.294872, 43.512547999999995]}",107.870119,14.257887302414119 | |
03811,42.839103,-71.16718,6753,"{'type': 'Point', 'coordinates': [-71.16718, 42.839103]}",29.235819,230.98378054673276 | |
03812,44.08113,-71.297237,824,"{'type': 'Point', 'coordinates': [-71.297237, 44.08113]}",157.317486,5.237815712361434 | |
03813,44.127489000000004,-71.060702,3250,"{'type': 'Point', 'coordinates': [-71.060702, 44.127489000000004]}",254.326915,12.778828383146156 | |
03814,43.770936999999996,-71.181505,2329,"{'type': 'Point', 'coordinates': [-71.181505, 43.770936999999996]}",93.021341,25.03726537332976 | |
03816,43.68223,-71.25120600000001,1368,"{'type': 'Point', 'coordinates': [-71.25120600000001, 43.68223]}",88.977523,15.374669398247914 | |
03817,43.887170000000005,-71.22940200000001,574,"{'type': 'Point', 'coordinates': [-71.22940200000001, 43.887170000000005]}",26.595377,21.582698376488516 | |
03818,43.959638,-71.27399100000001,3807,"{'type': 'Point', 'coordinates': [-71.27399100000001, 43.959638]}",223.754309,17.014197478538836 | |
03819,42.927892,-71.119888,4377,"{'type': 'Point', 'coordinates': [-71.119888, 42.927892]}",30.635346,142.87418199879318 | |
03820,43.190658,-70.88765500000001,30039,"{'type': 'Point', 'coordinates': [-70.88765500000001, 43.190658]}",78.374197,383.2766541773947 | |
03823,43.174607,-70.94145300000001,1719,"{'type': 'Point', 'coordinates': [-70.94145300000001, 43.174607]}",28.380075,60.570664453846575 | |
03824,43.117186,-70.918788,14638,"{'type': 'Point', 'coordinates': [-70.918788, 43.117186]}",64.145356,228.20046395876264 | |
03825,43.215565999999995,-71.03898000000001,8512,"{'type': 'Point', 'coordinates': [-71.03898000000001, 43.215565999999995]}",124.670098,68.27619562792034 | |
03826,42.89,-71.130676,2470,"{'type': 'Point', 'coordinates': [-71.130676, 42.89]}",7.185898,343.72878657615234 | |
03827,42.903677,-70.99555,3150,"{'type': 'Point', 'coordinates': [-70.99555, 42.903677]}",46.437759,67.83273068797313 | |
03830,43.614118,-70.993555,1610,"{'type': 'Point', 'coordinates': [-70.993555, 43.614118]}",38.641408,41.66514843351464 | |
03832,43.90696,-71.04751999999999,395,"{'type': 'Point', 'coordinates': [-71.04751999999999, 43.90696]}",68.156517,5.795483944697468 | |
03833,42.978398,-70.98768199999999,20955,"{'type': 'Point', 'coordinates': [-70.98768199999999, 42.978398]}",127.391106,164.49343017714284 | |
03835,43.366924,-71.062503,6786,"{'type': 'Point', 'coordinates': [-71.062503, 43.366924]}",95.83524,70.80902599085681 | |
03836,43.842037,-71.075112,1489,"{'type': 'Point', 'coordinates': [-71.075112, 43.842037]}",98.732844,15.081101077165366 | |
03837,43.422251,-71.336087,1519,"{'type': 'Point', 'coordinates': [-71.336087, 43.422251]}",53.732578,28.26962815742807 | |
03838,44.110671,-71.223276,1031,"{'type': 'Point', 'coordinates': [-71.223276, 44.110671]}",60.095123,17.156134283975092 | |
03839,43.262992,-70.991173,3735,"{'type': 'Point', 'coordinates': [-70.991173, 43.262992]}",21.996128,169.802612532533 | |
03840,43.039732,-70.84562199999999,3566,"{'type': 'Point', 'coordinates': [-70.84562199999999, 43.039732]}",34.521039,103.29932421790664 | |
03841,42.881868,-71.18235899999999,6334,"{'type': 'Point', 'coordinates': [-71.18235899999999, 42.881868]}",30.142951,210.13204712438406 | |
03842,42.939601,-70.83672800000001,15345,"{'type': 'Point', 'coordinates': [-70.83672800000001, 42.939601]}",35.462215,432.7140873744068 | |
03844,42.924811,-70.88624200000001,2238,"{'type': 'Point', 'coordinates': [-70.88624200000001, 42.924811]}",33.028766,67.75911640174508 | |
03845,44.095411999999996,-71.120544,991,"{'type': 'Point', 'coordinates': [-71.120544, 44.095411999999996]}",34.602731,28.639357974374914 | |
03846,44.187626,-71.15576,799,"{'type': 'Point', 'coordinates': [-71.15576, 44.187626]}",167.94363,4.757548708456522 | |
03847,44.071999,-71.12396700000001,294,"{'type': 'Point', 'coordinates': [-71.12396700000001, 44.071999]}",2.209186,133.08069125913346 | |
03848,42.913731,-71.073595,6020,"{'type': 'Point', 'coordinates': [-71.073595, 42.913731]}",54.445101,110.57009518634193 | |
03849,43.902454999999996,-71.129871,1585,"{'type': 'Point', 'coordinates': [-71.129871, 43.902454999999996]}",66.244479,23.926522238932545 | |
03850,43.690629,-71.297611,372,"{'type': 'Point', 'coordinates': [-71.297611, 43.690629]}",9.82618,37.85804860077873 | |
03851,43.437283,-71.025251,4040,"{'type': 'Point', 'coordinates': [-71.025251, 43.437283]}",69.9763,57.73383274051358 | |
03852,43.495003000000004,-70.986034,558,"{'type': 'Point', 'coordinates': [-70.986034, 43.495003000000004]}",19.042535,29.302821289287376 | |
03853,43.642846,-71.282732,602,"{'type': 'Point', 'coordinates': [-71.282732, 43.642846]}",27.446894,21.93326501716369 | |
03854,43.062163,-70.716877,968,"{'type': 'Point', 'coordinates': [-70.716877, 43.062163]}",5.879278,164.64606708510806 | |
03855,43.463687,-71.15214,2638,"{'type': 'Point', 'coordinates': [-71.15214, 43.463687]}",113.987473,23.14289395642625 | |
03856,43.038509000000005,-70.967954,1680,"{'type': 'Point', 'coordinates': [-70.967954, 43.038509000000005]}",18.80325,89.34625663116749 | |
03857,43.070909,-70.946875,9006,"{'type': 'Point', 'coordinates': [-70.946875, 43.070909]}",36.882702,244.1795072389219 | |
03858,42.870369000000004,-71.04591500000001,4603,"{'type': 'Point', 'coordinates': [-71.04591500000001, 42.870369000000004]}",25.820757,178.26743034683298 | |
03860,44.035706,-71.117232,4056,"{'type': 'Point', 'coordinates': [-71.117232, 44.035706]}",52.904056,76.66708957059927 | |
03861,43.119202,-71.007082,4330,"{'type': 'Point', 'coordinates': [-71.007082, 43.119202]}",52.32556,82.75114494713482 | |
03862,42.979934,-70.829441,4278,"{'type': 'Point', 'coordinates': [-70.829441, 42.979934]}",36.026079,118.74731080226631 | |
03864,43.689928,-71.103444,1696,"{'type': 'Point', 'coordinates': [-71.103444, 43.689928]}",89.869268,18.871857284961973 | |
03865,42.845597,-71.09326,7609,"{'type': 'Point', 'coordinates': [-71.09326, 42.845597]}",27.465603,277.03742750523264 | |
03867,43.301678,-70.99177399999999,20758,"{'type': 'Point', 'coordinates': [-70.99177399999999, 43.301678]}",77.394694,268.20960103544047 | |
03868,43.323178999999996,-70.93365,5323,"{'type': 'Point', 'coordinates': [-70.93365, 43.323178999999996]}",19.572709,271.96030963317344 | |
03869,43.219815000000004,-70.84310699999999,2469,"{'type': 'Point', 'coordinates': [-70.84310699999999, 43.219815000000004]}",19.097238,129.28571136831408 | |
03870,43.008649,-70.75833,5162,"{'type': 'Point', 'coordinates': [-70.75833, 43.008649]}",33.606573,153.60090420406746 | |
03871,42.980948,-70.777362,136,"{'type': 'Point', 'coordinates': [-70.777362, 42.980948]}",1.089821,124.79113542499182 | |
03872,43.570526,-71.043346,3809,"{'type': 'Point', 'coordinates': [-71.043346, 43.570526]}",131.492157,28.96750716470489 | |
03873,42.934018,-71.183605,5711,"{'type': 'Point', 'coordinates': [-71.183605, 42.934018]}",35.751978,159.7394135787396 | |
03874,42.883123,-70.860823,8776,"{'type': 'Point', 'coordinates': [-70.860823, 42.883123]}",25.171906,348.642649468022 | |
03875,43.895078000000005,-71.189275,833,"{'type': 'Point', 'coordinates': [-71.189275, 43.895078000000005]}",40.599068,20.51771237704274 | |
03878,43.253476,-70.88794399999999,11824,"{'type': 'Point', 'coordinates': [-70.88794399999999, 43.253476]}",26.425615,447.44464792966977 | |
03882,43.746733,-71.04191,1465,"{'type': 'Point', 'coordinates': [-71.04191, 43.746733]}",103.122366,14.206423463945736 | |
03883,43.808766999999996,-71.320045,178,"{'type': 'Point', 'coordinates': [-71.320045, 43.808766999999996]}",33.160193,5.367881905874311 | |
03884,43.275384,-71.169956,3964,"{'type': 'Point', 'coordinates': [-71.169956, 43.275384]}",131.042886,30.249639038016912 | |
03885,43.014996999999994,-70.902586,7261,"{'type': 'Point', 'coordinates': [-70.902586, 43.014996999999994]}",40.165698,180.77614386285532 | |
03886,43.864038,-71.296068,2112,"{'type': 'Point', 'coordinates': [-71.296068, 43.864038]}",100.162569,21.08572115397719 | |
03887,43.499649,-71.073833,2154,"{'type': 'Point', 'coordinates': [-71.073833, 43.499649]}",53.950879,39.92520677930011 | |
03890,43.800585999999996,-71.201475,327,"{'type': 'Point', 'coordinates': [-71.201475, 43.800585999999996]}",11.978659,27.29854819308238 | |
03894,43.603773,-71.177139,6314,"{'type': 'Point', 'coordinates': [-71.177139, 43.603773]}",154.158701,40.957791931575755 | |
03901,43.29932,-70.842062,7246,"{'type': 'Point', 'coordinates': [-70.842062, 43.29932]}",98.39114,73.64484241162366 | |
03902,43.214915999999995,-70.62880600000001,2211,"{'type': 'Point', 'coordinates': [-70.62880600000001, 43.214915999999995]}",52.735396,41.926299368264914 | |
03903,43.146567,-70.774373,6211,"{'type': 'Point', 'coordinates': [-70.774373, 43.146567]}",55.26237,112.39112618586572 | |
03904,43.107836,-70.728714,7703,"{'type': 'Point', 'coordinates': [-70.728714, 43.107836]}",32.699967,235.56598696261682 | |
03905,43.086194,-70.686846,1780,"{'type': 'Point', 'coordinates': [-70.686846, 43.086194]}",21.631101,82.2889227876103 | |
03906,43.352258,-70.77943499999999,4647,"{'type': 'Point', 'coordinates': [-70.77943499999999, 43.352258]}",99.435353,46.73388145964544 | |
03907,43.255761,-70.610715,894,"{'type': 'Point', 'coordinates': [-70.610715, 43.255761]}",11.971121,74.67972297665357 | |
03908,43.230612,-70.752424,7233,"{'type': 'Point', 'coordinates': [-70.752424, 43.230612]}",84.619598,85.47665281983495 | |
03909,43.16646,-70.679004,9738,"{'type': 'Point', 'coordinates': [-70.679004, 43.16646]}",99.731317,97.6423483909272 | |
03910,43.185342,-70.60342299999999,328,"{'type': 'Point', 'coordinates': [-70.60342299999999, 43.185342]}",1.03369,317.3098317677447 | |
03911,43.142293,-70.626458,250,"{'type': 'Point', 'coordinates': [-70.626458, 43.142293]}",3.494443,71.54215993793575 | |
04001,43.521206,-70.91767,2429,"{'type': 'Point', 'coordinates': [-70.91767, 43.521206]}",101.822867,23.855152300907026 | |
04002,43.489069,-70.661906,7351,"{'type': 'Point', 'coordinates': [-70.661906, 43.489069]}",176.564078,41.63361020694141 | |
04003,43.727261,-69.95689899999999,330,"{'type': 'Point', 'coordinates': [-69.95689899999999, 43.727261]}",54.849386,6.016475735936224 | |
04005,43.492102,-70.486566,23146,"{'type': 'Point', 'coordinates': [-70.486566, 43.492102]}",138.522569,167.09190543527964 | |
04006,43.444292,-70.34456999999999,96,"{'type': 'Point', 'coordinates': [-70.34456999999999, 43.444292]}",0.194733,492.98269938839337 | |
04008,44.044224,-69.863781,2723,"{'type': 'Point', 'coordinates': [-69.863781, 44.044224]}",108.674305,25.05652095037553 | |
04009,44.047513,-70.743319,5151,"{'type': 'Point', 'coordinates': [-70.743319, 44.047513]}",172.06346,29.936629194833117 | |
04010,43.930799,-70.918584,1597,"{'type': 'Point', 'coordinates': [-70.918584, 43.930799]}",117.722764,13.565770508072678 | |
04011,43.896405,-69.97343599999999,20278,"{'type': 'Point', 'coordinates': [-69.97343599999999, 43.896405]}",140.718162,144.10364456011015 | |
04015,43.976287,-70.521109,3808,"{'type': 'Point', 'coordinates': [-70.521109, 43.976287]}",88.469438,43.043112809194064 | |
04017,43.738955,-70.088396,341,"{'type': 'Point', 'coordinates': [-70.088396, 43.738955]}",50.805641,6.711853118829856 | |
04019,43.685927,-70.102982,71,"{'type': 'Point', 'coordinates': [-70.102982, 43.685927]}",15.242421,4.658052680738841 | |
04020,43.767185999999995,-70.808863,1403,"{'type': 'Point', 'coordinates': [-70.808863, 43.767185999999995]}",57.941016,24.214280260463504 | |
04021,43.791796000000005,-70.264762,5820,"{'type': 'Point', 'coordinates': [-70.264762, 43.791796000000005]}",53.491595,108.80213985019516 | |
04022,43.995934999999996,-70.81398,1148,"{'type': 'Point', 'coordinates': [-70.81398, 43.995934999999996]}",129.329226,8.876570559542357 | |
04024,43.83632,-70.685245,608,"{'type': 'Point', 'coordinates': [-70.685245, 43.83632]}",41.521913,14.642870621110353 | |
04027,43.399909,-70.912785,6031,"{'type': 'Point', 'coordinates': [-70.912785, 43.399909]}",144.585374,41.712379566137855 | |
04029,43.902531,-70.68956800000001,1725,"{'type': 'Point', 'coordinates': [-70.68956800000001, 43.902531]}",90.348605,19.09271316363988 | |
04030,43.589061,-70.696276,2208,"{'type': 'Point', 'coordinates': [-70.696276, 43.589061]}",45.515692,48.510742185354445 | |
04032,43.844826,-70.08995300000001,7879,"{'type': 'Point', 'coordinates': [-70.08995300000001, 43.844826]}",120.355294,65.46450711175197 | |
04037,44.101677,-70.942769,3834,"{'type': 'Point', 'coordinates': [-70.942769, 44.101677]}",233.509205,16.419052944829303 | |
04038,43.703617,-70.46378,16381,"{'type': 'Point', 'coordinates': [-70.46378, 43.703617]}",132.820052,123.33228118296475 | |
04039,43.904551,-70.36702700000001,7422,"{'type': 'Point', 'coordinates': [-70.36702700000001, 43.904551]}",107.710708,68.90679801306293 | |
04040,44.12685,-70.69641899999999,3111,"{'type': 'Point', 'coordinates': [-70.69641899999999, 44.12685]}",165.193592,18.832449626738548 | |
04041,43.848997,-70.830764,1613,"{'type': 'Point', 'coordinates': [-70.830764, 43.848997]}",100.323894,16.077924567002952 | |
04042,43.631019,-70.614369,4281,"{'type': 'Point', 'coordinates': [-70.614369, 43.631019]}",85.456254,50.09580691426048 | |
04043,43.395947,-70.57022099999999,10810,"{'type': 'Point', 'coordinates': [-70.57022099999999, 43.395947]}",93.773449,115.27783306765222 | |
04046,43.429821999999994,-70.474142,7496,"{'type': 'Point', 'coordinates': [-70.474142, 43.429821999999994]}",122.930195,60.977695512481695 | |
04047,43.732799,-70.899149,1892,"{'type': 'Point', 'coordinates': [-70.899149, 43.732799]}",153.496048,12.3260502446291 | |
04048,43.688481,-70.781883,2946,"{'type': 'Point', 'coordinates': [-70.781883, 43.688481]}",75.965547,38.78073832602035 | |
04049,43.745798,-70.6998,3659,"{'type': 'Point', 'coordinates': [-70.6998, 43.745798]}",109.292486,33.47897128078869 | |
04050,43.685939000000005,-70.15391899999999,230,"{'type': 'Point', 'coordinates': [-70.15391899999999, 43.685939000000005]}",37.292943,6.167386682247094 | |
04051,44.192471000000005,-70.88580300000001,1153,"{'type': 'Point', 'coordinates': [-70.88580300000001, 44.192471000000005]}",125.350117,9.198236328730351 | |
04055,43.975769,-70.639298,3793,"{'type': 'Point', 'coordinates': [-70.639298, 43.975769]}",94.61138,40.090314716897694 | |
04056,43.659542,-70.8835,257,"{'type': 'Point', 'coordinates': [-70.8835, 43.659542]}",15.02651,17.103106443212695 | |
04057,44.101552000000005,-70.69891899999999,56,"{'type': 'Point', 'coordinates': [-70.69891899999999, 44.101552000000005]}",0.142741,392.31895531066755 | |
04061,43.633558,-70.739479,3369,"{'type': 'Point', 'coordinates': [-70.739479, 43.633558]}",52.64591,63.99357518941167 | |
04062,43.794689,-70.40532900000001,17020,"{'type': 'Point', 'coordinates': [-70.40532900000001, 43.794689]}",128.846439,132.09523004357146 | |
04063,43.500389,-70.395326,412,"{'type': 'Point', 'coordinates': [-70.395326, 43.500389]}",1.742194,236.48342262687163 | |
04064,43.525042,-70.388279,8212,"{'type': 'Point', 'coordinates': [-70.388279, 43.525042]}",19.322258,425.00208826525346 | |
04066,43.765547,-69.966981,539,"{'type': 'Point', 'coordinates': [-69.966981, 43.765547]}",10.714324,50.306486904820126 | |
04068,43.837897999999996,-70.946568,1505,"{'type': 'Point', 'coordinates': [-70.946568, 43.837897999999996]}",85.458455,17.610896429147942 | |
04069,43.903914,-70.182018,1465,"{'type': 'Point', 'coordinates': [-70.182018, 43.903914]}",59.230961,24.7336861544421 | |
04071,43.926746,-70.45076,4801,"{'type': 'Point', 'coordinates': [-70.45076, 43.926746]}",112.858717,42.53991297809986 | |
04072,43.550411,-70.466341,18482,"{'type': 'Point', 'coordinates': [-70.466341, 43.550411]}",107.370164,172.13348020964185 | |
04073,43.418642999999996,-70.74777900000001,16189,"{'type': 'Point', 'coordinates': [-70.74777900000001, 43.418642999999996]}",98.916771,163.66284338173554 | |
04074,43.589627,-70.366191,18760,"{'type': 'Point', 'coordinates': [-70.366191, 43.589627]}",136.184345,137.7544533477765 | |
04076,43.554017,-70.832796,2683,"{'type': 'Point', 'coordinates': [-70.832796, 43.554017]}",106.725428,25.1392760870446 | |
04079,43.790591,-69.97153,3871,"{'type': 'Point', 'coordinates': [-69.97153, 43.790591]}",151.586566,25.536563708422552 | |
04083,43.464119000000004,-70.814287,4525,"{'type': 'Point', 'coordinates': [-70.814287, 43.464119000000004]}",26.323158,171.9018667896914 | |
04084,43.762147,-70.566686,8088,"{'type': 'Point', 'coordinates': [-70.566686, 43.762147]}",126.40127,63.986698867819925 | |
04085,43.77332,-70.616514,1786,"{'type': 'Point', 'coordinates': [-70.616514, 43.77332]}",32.030856,55.75873464012326 | |
04086,43.964977000000005,-69.955624,8787,"{'type': 'Point', 'coordinates': [-69.955624, 43.964977000000005]}",92.190942,95.31305147093518 | |
04087,43.568795,-70.743997,2116,"{'type': 'Point', 'coordinates': [-70.743997, 43.568795]}",49.879797,42.421984997252494 | |
04088,44.202838,-70.722272,1516,"{'type': 'Point', 'coordinates': [-70.722272, 44.202838]}",131.25232,11.550272025667812 | |
04090,43.331432,-70.645586,9589,"{'type': 'Point', 'coordinates': [-70.645586, 43.331432]}",152.161393,63.01861340083815 | |
04091,43.839321000000005,-70.744838,911,"{'type': 'Point', 'coordinates': [-70.744838, 43.839321000000005]}",51.827338,17.577595824041744 | |
04092,43.70792,-70.352602,17515,"{'type': 'Point', 'coordinates': [-70.352602, 43.70792]}",44.931266,389.81763834564555 | |
04093,43.63626,-70.538842,8034,"{'type': 'Point', 'coordinates': [-70.538842, 43.63626]}",106.790369,75.2315033203041 | |
04095,43.628609999999995,-70.913904,1274,"{'type': 'Point', 'coordinates': [-70.913904, 43.628609999999995]}",77.842531,16.366374315346967 | |
04096,43.788137,-70.156478,8349,"{'type': 'Point', 'coordinates': [-70.156478, 43.788137]}",59.428749,140.48756099510018 | |
04097,43.846092,-70.241798,3574,"{'type': 'Point', 'coordinates': [-70.241798, 43.846092]}",55.478597,64.42123978009033 | |
04101,43.662607,-70.257949,17227,"{'type': 'Point', 'coordinates': [-70.257949, 43.662607]}",7.526366,2288.886827985777 | |
04102,43.654353,-70.297611,17335,"{'type': 'Point', 'coordinates': [-70.297611, 43.654353]}",16.854595,1028.5029097406375 | |
04103,43.694105,-70.287927,30606,"{'type': 'Point', 'coordinates': [-70.287927, 43.694105]}",28.552826,1071.9079085201583 | |
04105,43.740472,-70.277172,11158,"{'type': 'Point', 'coordinates': [-70.277172, 43.740472]}",93.862275,118.87630040929649 | |
04106,43.631402,-70.285989,25175,"{'type': 'Point', 'coordinates': [-70.285989, 43.631402]}",36.881517,682.5912285549425 | |
04107,43.587173,-70.236476,8980,"{'type': 'Point', 'coordinates': [-70.236476, 43.587173]}",54.146974,165.84490944960285 | |
04108,43.660278000000005,-70.186053,862,"{'type': 'Point', 'coordinates': [-70.186053, 43.660278000000005]}",4.851408,177.68037650100754 | |
04109,43.679741,-70.252882,93,"{'type': 'Point', 'coordinates': [-70.252882, 43.679741]}",31.653865,2.93802984248527 | |
04110,43.746027000000005,-70.180065,1391,"{'type': 'Point', 'coordinates': [-70.180065, 43.746027000000005]}",14.48649,96.02049909950581 | |
04210,44.084537,-70.249649,23045,"{'type': 'Point', 'coordinates': [-70.249649, 44.084537]}",170.13862,135.44837732902735 | |
04216,44.679922999999995,-70.84765300000001,640,"{'type': 'Point', 'coordinates': [-70.84765300000001, 44.679922999999995]}",367.683765,1.7406262144862448 | |
04217,44.3801,-70.815239,3312,"{'type': 'Point', 'coordinates': [-70.815239, 44.3801]}",480.705111,6.889878897085411 | |
04219,44.400746999999996,-70.55811,1472,"{'type': 'Point', 'coordinates': [-70.55811, 44.400746999999996]}",162.041398,9.08409837342924 | |
04220,44.342620000000004,-70.34744,3077,"{'type': 'Point', 'coordinates': [-70.34744, 44.342620000000004]}",205.564934,14.968506253114162 | |
04221,44.481538,-70.277339,1098,"{'type': 'Point', 'coordinates': [-70.277339, 44.481538]}",87.929114,12.487331556644595 | |
04222,43.956021,-70.132418,3848,"{'type': 'Point', 'coordinates': [-70.132418, 43.956021]}",101.121526,38.05322320788553 | |
04224,44.559945,-70.415762,3040,"{'type': 'Point', 'coordinates': [-70.415762, 44.559945]}",193.740462,15.691095027945169 | |
04226,44.594476,-70.69250500000001,190,"{'type': 'Point', 'coordinates': [-70.69250500000001, 44.594476]}",27.985771,6.789164393577008 | |
04227,44.568123,-70.293139,79,"{'type': 'Point', 'coordinates': [-70.293139, 44.568123]}",1.465451,53.908319008960376 | |
04228,44.433489,-70.11525,6,"{'type': 'Point', 'coordinates': [-70.11525, 44.433489]}",0.220043,27.267397735897077 | |
04231,44.263059000000005,-70.875479,236,"{'type': 'Point', 'coordinates': [-70.875479, 44.263059000000005]}",90.571396,2.6056791704966105 | |
04234,44.623831,-70.19189300000001,168,"{'type': 'Point', 'coordinates': [-70.19189300000001, 44.623831]}",0.84875,197.93814432989691 | |
04236,44.189754,-70.145088,4350,"{'type': 'Point', 'coordinates': [-70.145088, 44.189754]}",91.131201,47.733377287543924 | |
04237,44.4945,-70.734421,238,"{'type': 'Point', 'coordinates': [-70.734421, 44.4945]}",19.56082,12.16717908553936 | |
04238,44.209257,-70.388878,1416,"{'type': 'Point', 'coordinates': [-70.388878, 44.209257]}",58.376808,24.256208047552036 | |
04239,44.516897,-70.202187,4851,"{'type': 'Point', 'coordinates': [-70.202187, 44.516897]}",127.4211,38.0706178176142 | |
04240,44.089594,-70.172185,36592,"{'type': 'Point', 'coordinates': [-70.172185, 44.089594]}",92.034599,397.5896064913588 | |
04250,44.010546999999995,-70.127409,4228,"{'type': 'Point', 'coordinates': [-70.127409, 44.010546999999995]}",32.955099,128.29577601936504 | |
04252,44.036688,-70.058799,4799,"{'type': 'Point', 'coordinates': [-70.058799, 44.036688]}",28.760221,166.86241736459536 | |
04253,44.411638,-70.216186,2095,"{'type': 'Point', 'coordinates': [-70.216186, 44.411638]}",102.031696,20.532835208384657 | |
04254,44.445337,-70.138076,3181,"{'type': 'Point', 'coordinates': [-70.138076, 44.445337]}",52.67103,60.39373067130071 | |
04255,44.345791999999996,-70.65570100000001,802,"{'type': 'Point', 'coordinates': [-70.65570100000001, 44.345791999999996]}",101.635065,7.890977390529539 | |
04256,44.104896999999994,-70.40468,3064,"{'type': 'Point', 'coordinates': [-70.40468, 44.104896999999994]}",29.576429,103.59600883527892 | |
04257,44.553098,-70.49526,2681,"{'type': 'Point', 'coordinates': [-70.49526, 44.553098]}",61.05567,43.910745717801476 | |
04258,44.13794,-70.336334,2617,"{'type': 'Point', 'coordinates': [-70.336334, 44.13794]}",77.199072,33.899371225602295 | |
04259,44.233505,-70.014723,3264,"{'type': 'Point', 'coordinates': [-70.014723, 44.233505]}",88.857382,36.73302011081083 | |
04260,43.957508000000004,-70.296011,5542,"{'type': 'Point', 'coordinates': [-70.296011, 43.957508000000004]}",123.81431,44.760577351680915 | |
04261,44.565568,-70.962661,444,"{'type': 'Point', 'coordinates': [-70.962661, 44.565568]}",545.643582,0.8137179921965983 | |
04263,44.295351000000004,-70.133074,2326,"{'type': 'Point', 'coordinates': [-70.133074, 44.295351000000004]}",112.437227,20.687098588797465 | |
04265,44.279255,-70.042845,918,"{'type': 'Point', 'coordinates': [-70.042845, 44.279255]}",20.743611,44.25459000364015 | |
04267,44.206590999999996,-70.792354,37,"{'type': 'Point', 'coordinates': [-70.792354, 44.206590999999996]}",5.833698,6.342460648460033 | |
04268,44.225867,-70.610021,5023,"{'type': 'Point', 'coordinates': [-70.610021, 44.225867]}",124.121449,40.46842862751304 | |
04270,44.117335,-70.527478,5880,"{'type': 'Point', 'coordinates': [-70.527478, 44.117335]}",223.037973,26.363223808530577 | |
04271,44.263611,-70.49819000000001,67,"{'type': 'Point', 'coordinates': [-70.49819000000001, 44.263611]}",0.467501,143.3152014648097 | |
04274,44.048106,-70.393563,5343,"{'type': 'Point', 'coordinates': [-70.393563, 44.048106]}",121.537339,43.96179843957255 | |
04275,44.702596,-70.64758499999999,514,"{'type': 'Point', 'coordinates': [-70.64758499999999, 44.702596]}",250.427032,2.052494077396565 | |
04276,44.55992,-70.625264,5841,"{'type': 'Point', 'coordinates': [-70.625264, 44.55992]}",180.906599,32.28737941173721 | |
04280,44.116831,-70.06258199999999,6474,"{'type': 'Point', 'coordinates': [-70.06258199999999, 44.116831]}",113.281128,57.14985465187105 | |
04281,44.248001,-70.49081600000001,5116,"{'type': 'Point', 'coordinates': [-70.49081600000001, 44.248001]}",105.647195,48.42532733595057 | |
04282,44.265107,-70.24798,5734,"{'type': 'Point', 'coordinates': [-70.24798, 44.265107]}",162.441887,35.29877734060058 | |
04284,44.362503000000004,-70.06123000000001,1138,"{'type': 'Point', 'coordinates': [-70.06123000000001, 44.362503000000004]}",58.706517,19.38455997994226 | |
04285,44.697513,-70.448975,433,"{'type': 'Point', 'coordinates': [-70.448975, 44.697513]}",176.186433,2.4576239647237763 | |
04286,44.401438,-70.86507900000001,47,"{'type': 'Point', 'coordinates': [-70.86507900000001, 44.401438]}",0.145209,323.6713977783746 | |
04287,44.051212,-69.968192,3224,"{'type': 'Point', 'coordinates': [-69.968192, 44.051212]}",115.387487,27.940637965362747 | |
04289,44.319278000000004,-70.52264699999999,1815,"{'type': 'Point', 'coordinates': [-70.52264699999999, 44.319278000000004]}",63.23583,28.702082347934706 | |
04290,44.460915,-70.451923,1541,"{'type': 'Point', 'coordinates': [-70.451923, 44.460915]}",123.284214,12.499572735240863 | |
04292,44.385909000000005,-70.449596,948,"{'type': 'Point', 'coordinates': [-70.449596, 44.385909000000005]}",116.30797,8.150774190281199 | |
04294,44.637914,-70.27543399999999,3995,"{'type': 'Point', 'coordinates': [-70.27543399999999, 44.637914]}",153.342941,26.05271539692199 | |
04330,44.351895,-69.747626,26086,"{'type': 'Point', 'coordinates': [-69.747626, 44.351895]}",320.420927,81.411661355065 | |
04342,44.086172999999995,-69.736988,1672,"{'type': 'Point', 'coordinates': [-69.736988, 44.086172999999995]}",86.022093,19.43686722433038 | |
04343,44.328707,-69.89169100000001,25,"{'type': 'Point', 'coordinates': [-69.89169100000001, 44.328707]}",1.252641,19.95783309024693 | |
04344,44.260548,-69.827805,2951,"{'type': 'Point', 'coordinates': [-69.827805, 44.260548]}",29.880286,98.76076822022385 | |
04345,44.195074,-69.793912,11646,"{'type': 'Point', 'coordinates': [-69.793912, 44.195074]}",197.748507,58.89298572555089 | |
04346,44.237286,-69.75124699999999,1772,"{'type': 'Point', 'coordinates': [-69.75124699999999, 44.237286]}",5.779006,306.62712584136443 | |
04347,44.287240999999995,-69.81804,2355,"{'type': 'Point', 'coordinates': [-69.81804, 44.287240999999995]}",15.764778,149.38364498377334 | |
04348,44.210864,-69.499152,2976,"{'type': 'Point', 'coordinates': [-69.499152, 44.210864]}",212.714758,13.990566653584047 | |
04349,44.434007,-70.06703399999999,1158,"{'type': 'Point', 'coordinates': [-70.06703399999999, 44.434007]}",84.300566,13.736562575392435 | |
04350,44.172142,-69.9345,3577,"{'type': 'Point', 'coordinates': [-69.9345, 44.172142]}",101.744316,35.15675509578344 | |
04351,44.342427,-69.861935,2571,"{'type': 'Point', 'coordinates': [-69.861935, 44.342427]}",58.181681,44.189166689769586 | |
04352,44.466488,-69.96045,1632,"{'type': 'Point', 'coordinates': [-69.96045, 44.466488]}",110.025845,14.832878584118122 | |
04353,44.198014,-69.61968900000001,2300,"{'type': 'Point', 'coordinates': [-69.61968900000001, 44.198014]}",123.040139,18.69308681453944 | |
04354,44.396114000000004,-69.43063000000001,1535,"{'type': 'Point', 'coordinates': [-69.43063000000001, 44.396114000000004]}",112.844181,13.602828133424088 | |
04355,44.384388,-69.9502,2600,"{'type': 'Point', 'coordinates': [-69.9502, 44.384388]}",80.436887,32.32347865476196 | |
04357,44.116833,-69.829607,3399,"{'type': 'Point', 'coordinates': [-69.829607, 44.116833]}",81.711363,41.59764168907573 | |
04358,44.414473,-69.535271,4276,"{'type': 'Point', 'coordinates': [-69.535271, 44.414473]}",146.979585,29.092475665923267 | |
04359,44.177784,-69.762591,388,"{'type': 'Point', 'coordinates': [-69.762591, 44.177784]}",2.94117,131.92029022463848 | |
04360,44.554821000000004,-69.999643,560,"{'type': 'Point', 'coordinates': [-69.999643, 44.554821000000004]}",65.787543,8.512249803887645 | |
04363,44.315484999999995,-69.571186,2575,"{'type': 'Point', 'coordinates': [-69.571186, 44.315484999999995]}",92.003947,27.987929691755507 | |
04364,44.309991,-69.963093,6025,"{'type': 'Point', 'coordinates': [-69.963093, 44.309991]}",95.769972,62.911159669128864 | |
04401,44.848517,-68.85040500000001,44899,"{'type': 'Point', 'coordinates': [-68.85040500000001, 44.848517]}",275.88183,162.7472168065581 | |
04406,45.229183,-69.596521,819,"{'type': 'Point', 'coordinates': [-69.596521, 45.229183]}",239.750207,3.4160554447404503 | |
04408,45.173712,-68.263109,176,"{'type': 'Point', 'coordinates': [-68.263109, 45.173712]}",340.987541,0.5161478905764477 | |
04410,45.08826,-68.906681,1290,"{'type': 'Point', 'coordinates': [-68.906681, 45.08826]}",106.666156,12.093807899105316 | |
04411,44.868349,-68.586337,1492,"{'type': 'Point', 'coordinates': [-68.586337, 44.868349]}",113.19558,13.1807266679494 | |
04412,44.784754,-68.735012,9482,"{'type': 'Point', 'coordinates': [-68.735012, 44.784754]}",40.624116,233.40815588454896 | |
04413,45.562746999999995,-67.75117,196,"{'type': 'Point', 'coordinates': [-67.75117, 45.562746999999995]}",168.372382,1.1640863998704967 | |
04414,45.44288,-69.114639,1248,"{'type': 'Point', 'coordinates': [-69.114639, 45.44288]}",662.646176,1.8833580351031862 | |
04415,45.400376,-69.057877,276,"{'type': 'Point', 'coordinates': [-69.057877, 45.400376]}",4.211113,65.54086769934695 | |
04416,44.623798,-68.749742,5468,"{'type': 'Point', 'coordinates': [-68.749742, 44.623798]}",169.119775,32.332114916780135 | |
04417,45.231514000000004,-68.341886,370,"{'type': 'Point', 'coordinates': [-68.341886, 45.231514000000004]}",169.031966,2.1889350798889717 | |
04418,45.090492,-68.466634,1771,"{'type': 'Point', 'coordinates': [-68.466634, 45.090492]}",382.780573,4.626671583983443 | |
04419,44.800453999999995,-69.003117,2794,"{'type': 'Point', 'coordinates': [-69.003117, 44.800453999999995]}",95.564804,29.23670517861367 | |
04421,44.409006,-68.815533,1366,"{'type': 'Point', 'coordinates': [-68.815533, 44.409006]}",51.824551,26.358163720511538 | |
04422,45.077652,-69.031432,1409,"{'type': 'Point', 'coordinates': [-69.031432, 45.077652]}",105.0642,13.410847843509016 | |
04424,45.680310999999996,-67.876199,823,"{'type': 'Point', 'coordinates': [-67.876199, 45.680310999999996]}",315.261579,2.6105306032233 | |
04426,45.213059,-69.189134,4720,"{'type': 'Point', 'coordinates': [-69.189134, 45.213059]}",423.487456,11.14554854725142 | |
04427,44.980538,-69.01088,2858,"{'type': 'Point', 'coordinates': [-69.01088, 44.980538]}",104.107594,27.452368172104716 | |
04428,44.8058,-68.55400300000001,3146,"{'type': 'Point', 'coordinates': [-68.55400300000001, 44.8058]}",161.721251,19.453225723563072 | |
04429,44.72116,-68.617002,4717,"{'type': 'Point', 'coordinates': [-68.617002, 44.72116]}",198.886573,23.717035940882745 | |
04430,45.636841,-68.575197,1728,"{'type': 'Point', 'coordinates': [-68.575197, 45.636841]}",25.838941,66.87580578476495 | |
04431,44.560978000000006,-68.67272700000001,81,"{'type': 'Point', 'coordinates': [-68.67272700000001, 44.560978000000006]}",1.120103,72.31477819450532 | |
04434,44.763866,-69.128068,1246,"{'type': 'Point', 'coordinates': [-69.128068, 44.763866]}",64.667722,19.26772679575755 | |
04435,44.963225,-69.125005,1092,"{'type': 'Point', 'coordinates': [-69.125005, 44.963225]}",99.939274,10.926635308557476 | |
04438,44.598953,-68.928337,1124,"{'type': 'Point', 'coordinates': [-68.928337, 44.598953]}",67.097288,16.751794796832918 | |
04441,45.905621000000004,-69.295834,1840,"{'type': 'Point', 'coordinates': [-69.295834, 45.905621000000004]}",1571.912888,1.1705483262123364 | |
04442,45.502076,-69.726501,93,"{'type': 'Point', 'coordinates': [-69.726501, 45.502076]}",201.737127,0.4609959573777414 | |
04443,45.227771999999995,-69.353263,2537,"{'type': 'Point', 'coordinates': [-69.353263, 45.227771999999995]}",378.287342,6.706542139599267 | |
04444,44.72898,-68.94996400000001,8824,"{'type': 'Point', 'coordinates': [-68.94996400000001, 44.72898]}",181.223102,48.69136386375286 | |
04448,45.296196,-68.71106,1431,"{'type': 'Point', 'coordinates': [-68.71106, 45.296196]}",296.167415,4.831726677291626 | |
04449,44.992636,-68.888475,1489,"{'type': 'Point', 'coordinates': [-68.888475, 44.992636]}",102.32461,14.55172905130056 | |
04450,44.916049,-68.927991,1368,"{'type': 'Point', 'coordinates': [-68.927991, 44.916049]}",43.583367,31.388121069214314 | |
04451,45.607009999999995,-68.222173,259,"{'type': 'Point', 'coordinates': [-68.222173, 45.607009999999995]}",197.111843,1.313974827986363 | |
04453,45.16225,-68.760531,779,"{'type': 'Point', 'coordinates': [-68.760531, 45.16225]}",175.862068,4.429607867456671 | |
04454,45.552977,-67.58144399999999,69,"{'type': 'Point', 'coordinates': [-67.58144399999999, 45.552977]}",137.53378,0.5016949290567015 | |
04455,45.299422,-68.259742,923,"{'type': 'Point', 'coordinates': [-68.259742, 45.299422]}",223.974015,4.12101377028045 | |
04456,44.876816,-68.996651,2851,"{'type': 'Point', 'coordinates': [-68.996651, 44.876816]}",77.884388,36.60553896886241 | |
04457,45.413427,-68.479871,5948,"{'type': 'Point', 'coordinates': [-68.479871, 45.413427]}",444.593792,13.378504394411337 | |
04459,45.588735,-68.339985,773,"{'type': 'Point', 'coordinates': [-68.339985, 45.588735]}",215.946872,3.579584148827124 | |
04460,45.712888,-68.521326,1419,"{'type': 'Point', 'coordinates': [-68.521326, 45.712888]}",289.088988,4.908523184563502 | |
04461,44.954786999999996,-68.582438,3070,"{'type': 'Point', 'coordinates': [-68.582438, 44.954786999999996]}",114.706962,26.763850654505173 | |
04462,45.995839000000004,-68.928348,4835,"{'type': 'Point', 'coordinates': [-68.928348, 45.995839000000004]}",3298.273925,1.4659182681438443 | |
04463,45.286832000000004,-68.89510899999999,2847,"{'type': 'Point', 'coordinates': [-68.89510899999999, 45.286832000000004]}",408.925324,6.9621513584715045 | |
04464,45.432794,-69.300953,684,"{'type': 'Point', 'coordinates': [-69.300953, 45.432794]}",540.08672,1.2664632820447796 | |
04468,45.024673,-68.734534,9521,"{'type': 'Point', 'coordinates': [-68.734534, 45.024673]}",316.815554,30.052186137300566 | |
04469,44.901066,-68.66830300000001,2702,"{'type': 'Point', 'coordinates': [-68.66830300000001, 44.901066]}",0.623929,4330.620952063457 | |
04471,45.916545,-67.856824,609,"{'type': 'Point', 'coordinates': [-67.856824, 45.916545]}",254.229227,2.3954759536754597 | |
04472,44.57632,-68.669915,2144,"{'type': 'Point', 'coordinates': [-68.669915, 44.57632]}",135.097704,15.86999583649475 | |
04473,44.881679999999996,-68.738644,7660,"{'type': 'Point', 'coordinates': [-68.738644, 44.881679999999996]}",50.094839,152.90996343954714 | |
04474,44.688778000000006,-68.762805,3733,"{'type': 'Point', 'coordinates': [-68.762805, 44.688778000000006]}",70.794267,52.730258510904555 | |
04475,45.183587,-68.589614,418,"{'type': 'Point', 'coordinates': [-68.589614, 45.183587]}",63.159215,6.618194985482324 | |
04476,44.482703,-68.705997,1259,"{'type': 'Point', 'coordinates': [-68.705997, 44.482703]}",121.214585,10.386538880614077 | |
04478,45.882143,-69.852639,316,"{'type': 'Point', 'coordinates': [-69.852639, 45.882143]}",1101.13823,0.28697577778223177 | |
04479,45.124216,-69.287019,1343,"{'type': 'Point', 'coordinates': [-69.287019, 45.124216]}",103.081734,13.028496396849514 | |
04481,45.245979,-69.092775,559,"{'type': 'Point', 'coordinates': [-69.092775, 45.245979]}",82.644818,6.7638844579462925 | |
04485,45.35804,-69.630292,233,"{'type': 'Point', 'coordinates': [-69.630292, 45.35804]}",116.921073,1.9927973120807743 | |
04487,45.387737,-68.10447099999999,964,"{'type': 'Point', 'coordinates': [-68.10447099999999, 45.387737]}",607.918836,1.585738001380171 | |
04488,44.87164,-69.113926,1202,"{'type': 'Point', 'coordinates': [-69.113926, 44.87164]}",94.913381,12.664178510298774 | |
04489,44.910362,-68.690189,197,"{'type': 'Point', 'coordinates': [-68.690189, 44.910362]}",0.523559,376.2708691857078 | |
04490,45.436636,-67.867623,273,"{'type': 'Point', 'coordinates': [-67.867623, 45.436636]}",721.870273,0.37818429461771175 | |
04491,45.573159000000004,-67.470651,140,"{'type': 'Point', 'coordinates': [-67.470651, 45.573159000000004]}",39.377646,3.5553166382774632 | |
04492,45.367045000000005,-67.681322,166,"{'type': 'Point', 'coordinates': [-67.681322, 45.367045000000005]}",120.894962,1.3730927844619365 | |
04493,45.236824,-68.524576,1967,"{'type': 'Point', 'coordinates': [-68.524576, 45.236824]}",192.674468,10.208929187234087 | |
04495,45.477433000000005,-68.33898,407,"{'type': 'Point', 'coordinates': [-68.33898, 45.477433000000005]}",113.529465,3.584972412227962 | |
04496,44.650751,-68.908918,3757,"{'type': 'Point', 'coordinates': [-68.908918, 44.650751]}",95.993242,39.13817183088785 | |
04497,45.75461,-68.06094399999999,389,"{'type': 'Point', 'coordinates': [-68.06094399999999, 45.75461]}",631.386323,0.616104571527122 | |
04530,43.888154,-69.826684,10818,"{'type': 'Point', 'coordinates': [-69.826684, 43.888154]}",101.084003,107.01990106189206 | |
04535,44.098468,-69.629176,709,"{'type': 'Point', 'coordinates': [-69.629176, 44.098468]}",55.23223,12.836707842504277 | |
04537,43.875448999999996,-69.620688,2073,"{'type': 'Point', 'coordinates': [-69.620688, 43.875448999999996]}",71.243219,29.097506107914636 | |
04538,43.851504999999996,-69.627611,2080,"{'type': 'Point', 'coordinates': [-69.627611, 43.851504999999996]}",17.75212,117.1691043097951 | |
04539,43.973542,-69.501972,1168,"{'type': 'Point', 'coordinates': [-69.501972, 43.973542]}",44.307223,26.36139033132363 | |
04541,43.894242,-69.476881,80,"{'type': 'Point', 'coordinates': [-69.476881, 43.894242]}",5.720719,13.984256174792016 | |
04543,44.022351,-69.490756,2218,"{'type': 'Point', 'coordinates': [-69.490756, 44.022351]}",38.104328,58.208610843366664 | |
04544,43.844446000000005,-69.582305,724,"{'type': 'Point', 'coordinates': [-69.582305, 43.844446000000005]}",11.978193,60.4431736907228 | |
04547,43.978605,-69.33257900000001,1152,"{'type': 'Point', 'coordinates': [-69.33257900000001, 43.978605]}",60.012274,19.196073123308075 | |
04548,43.833447,-69.738561,1042,"{'type': 'Point', 'coordinates': [-69.738561, 43.833447]}",74.008468,14.07946993308928 | |
04551,43.98007,-69.43038100000001,806,"{'type': 'Point', 'coordinates': [-69.43038100000001, 43.98007]}",72.130462,11.174197109676076 | |
04553,44.052277000000004,-69.567522,1752,"{'type': 'Point', 'coordinates': [-69.567522, 44.052277000000004]}",84.353162,20.769820104668987 | |
04554,43.862733,-69.51232399999999,710,"{'type': 'Point', 'coordinates': [-69.51232399999999, 43.862733]}",15.214453,46.66615355806745 | |
04555,44.101248,-69.482658,1643,"{'type': 'Point', 'coordinates': [-69.482658, 44.101248]}",59.879722,27.438337138572553 | |
04556,43.975989,-69.610952,1249,"{'type': 'Point', 'coordinates': [-69.610952, 43.975989]}",53.823231,23.20559313876939 | |
04558,43.885127000000004,-69.514471,308,"{'type': 'Point', 'coordinates': [-69.514471, 43.885127000000004]}",13.982854,22.02697675310062 | |
04562,43.770829,-69.819164,2216,"{'type': 'Point', 'coordinates': [-69.819164, 43.770829]}",116.225352,19.066408161964524 | |
04563,44.013923999999996,-69.258707,1534,"{'type': 'Point', 'coordinates': [-69.258707, 44.013923999999996]}",66.01545,23.23698467555701 | |
04564,43.921687,-69.464934,489,"{'type': 'Point', 'coordinates': [-69.464934, 43.921687]}",30.558021,16.002345178046706 | |
04568,43.871824,-69.558279,391,"{'type': 'Point', 'coordinates': [-69.558279, 43.871824]}",29.20663,13.387371292066218 | |
04570,43.808546,-69.630765,2,"{'type': 'Point', 'coordinates': [-69.630765, 43.808546]}",0.706076,2.8325562687302783 | |
04571,43.896656,-69.67416999999999,323,"{'type': 'Point', 'coordinates': [-69.67416999999999, 43.896656]}",9.571136,33.747300215982726 | |
04572,44.122084,-69.383354,5075,"{'type': 'Point', 'coordinates': [-69.383354, 44.122084]}",204.252301,24.846721310620634 | |
04573,43.951357,-69.55233,501,"{'type': 'Point', 'coordinates': [-69.55233, 43.951357]}",25.107684,19.95405072009031 | |
04574,44.260639000000005,-69.391524,1510,"{'type': 'Point', 'coordinates': [-69.391524, 44.260639000000005]}",101.157268,14.927251692878855 | |
04575,43.85215,-69.662201,85,"{'type': 'Point', 'coordinates': [-69.662201, 43.85215]}",5.692409,14.932166680222732 | |
04576,43.813339,-69.662868,604,"{'type': 'Point', 'coordinates': [-69.662868, 43.813339]}",22.39126,26.97481070739208 | |
04578,43.982445,-69.69275400000001,4450,"{'type': 'Point', 'coordinates': [-69.69275400000001, 43.982445]}",108.540362,40.99857341548206 | |
04579,43.959656,-69.769351,3072,"{'type': 'Point', 'coordinates': [-69.769351, 43.959656]}",107.680547,28.528829817329957 | |
04605,44.672809,-68.391841,12974,"{'type': 'Point', 'coordinates': [-68.391841, 44.672809]}",861.11109,15.066581014535535 | |
04606,44.540726,-67.71236400000001,1272,"{'type': 'Point', 'coordinates': [-67.71236400000001, 44.540726]}",207.123841,6.141253434943783 | |
04607,44.467048,-68.086866,1182,"{'type': 'Point', 'coordinates': [-68.086866, 44.467048]}",187.568636,6.301693210585591 | |
04609,44.39747,-68.263808,5222,"{'type': 'Point', 'coordinates': [-68.263808, 44.39747]}",159.881071,32.66177770350313 | |
04611,44.466957,-67.612596,508,"{'type': 'Point', 'coordinates': [-67.612596, 44.466957]}",71.281258,7.126698016468789 | |
04612,44.23153,-68.414514,589,"{'type': 'Point', 'coordinates': [-68.414514, 44.23153]}",40.901579,14.400422047275976 | |
04613,44.376983,-68.029882,183,"{'type': 'Point', 'coordinates': [-68.029882, 44.376983]}",11.267835,16.240919395784548 | |
04614,44.402775,-68.568701,2579,"{'type': 'Point', 'coordinates': [-68.568701, 44.402775]}",218.306656,11.813657207043654 | |
04616,44.261324,-68.540355,824,"{'type': 'Point', 'coordinates': [-68.540355, 44.261324]}",106.661963,7.725340663381566 | |
04617,44.350024,-68.76647700000001,811,"{'type': 'Point', 'coordinates': [-68.76647700000001, 44.350024]}",117.150824,6.922699920574182 | |
04619,45.142952,-67.217524,3121,"{'type': 'Point', 'coordinates': [-67.217524, 45.142952]}",103.872634,30.04641241696056 | |
04622,44.750665999999995,-67.966927,1412,"{'type': 'Point', 'coordinates': [-67.966927, 44.750665999999995]}",685.151329,2.0608585873442857 | |
04623,44.744456,-67.733645,1054,"{'type': 'Point', 'coordinates': [-67.733645, 44.744456]}",356.508981,2.956447259879829 | |
04624,44.423951,-67.985876,184,"{'type': 'Point', 'coordinates': [-67.985876, 44.423951]}",32.908719,5.591223407997133 | |
04625,44.256370000000004,-68.26628199999999,47,"{'type': 'Point', 'coordinates': [-68.26628199999999, 44.256370000000004]}",17.114498,2.7462096755627887 | |
04626,44.669022999999996,-67.22199,507,"{'type': 'Point', 'coordinates': [-67.22199, 44.669022999999996]}",189.407222,2.676772272178724 | |
04627,44.23701,-68.607845,1636,"{'type': 'Point', 'coordinates': [-68.607845, 44.23701]}",117.296165,13.94760007712102 | |
04628,44.873992,-67.274413,703,"{'type': 'Point', 'coordinates': [-67.274413, 44.873992]}",238.140088,2.9520439246667283 | |
04629,44.422694,-68.506049,107,"{'type': 'Point', 'coordinates': [-68.506049, 44.422694]}",5.891359,18.162193137440784 | |
04630,44.866496000000005,-67.47478100000001,1398,"{'type': 'Point', 'coordinates': [-67.47478100000001, 44.866496000000005]}",266.460673,5.2465528374613095 | |
04631,44.910958,-67.008913,1331,"{'type': 'Point', 'coordinates': [-67.008913, 44.910958]}",32.275564,41.23862870374627 | |
04634,44.650967,-68.221271,1923,"{'type': 'Point', 'coordinates': [-68.221271, 44.650967]}",304.429025,6.316743286879429 | |
04635,44.172234,-68.35148199999999,61,"{'type': 'Point', 'coordinates': [-68.35148199999999, 44.172234]}",56.487418,1.0798864979100302 | |
04637,45.196915999999995,-67.81617299999999,136,"{'type': 'Point', 'coordinates': [-67.81617299999999, 45.196915999999995]}",317.221427,0.42872261589063465 | |
04640,44.524572,-68.28525,2261,"{'type': 'Point', 'coordinates': [-68.28525, 44.524572]}",94.611038,23.897845830631308 | |
04642,44.330584,-68.809947,123,"{'type': 'Point', 'coordinates': [-68.809947, 44.330584]}",15.191462,8.096653238509894 | |
04643,44.538027,-67.818538,1018,"{'type': 'Point', 'coordinates': [-67.818538, 44.538027]}",112.2845,9.066255805565328 | |
04644,44.413835,-68.252076,13,"{'type': 'Point', 'coordinates': [-68.252076, 44.413835]}",0.012857,1011.1223458038422 | |
04645,44.066573999999996,-68.61575,73,"{'type': 'Point', 'coordinates': [-68.61575, 44.066573999999996]}",105.646321,0.6909847811927119 | |
04646,44.245566,-68.224954,94,"{'type': 'Point', 'coordinates': [-68.224954, 44.245566]}",31.155674,3.0171069321113064 | |
04648,44.665504,-67.59496999999999,580,"{'type': 'Point', 'coordinates': [-67.59496999999999, 44.665504]}",93.548155,6.200015382451958 | |
04649,44.547109999999996,-67.48983,1370,"{'type': 'Point', 'coordinates': [-67.48983, 44.547109999999996]}",192.712638,7.109030389589706 | |
04650,44.292625,-68.72288499999999,235,"{'type': 'Point', 'coordinates': [-68.72288499999999, 44.292625]}",15.918924,14.762304286395235 | |
04652,44.819713,-67.06232800000001,1690,"{'type': 'Point', 'coordinates': [-67.06232800000001, 44.819713]}",245.871861,6.873499037777243 | |
04653,44.209467,-68.334648,490,"{'type': 'Point', 'coordinates': [-68.334648, 44.209467]}",21.017835,23.31353348239721 | |
04654,44.757152000000005,-67.539897,3424,"{'type': 'Point', 'coordinates': [-67.539897, 44.757152000000005]}",294.087187,11.64280577786614 | |
04655,44.655762,-67.37897099999999,1119,"{'type': 'Point', 'coordinates': [-67.37897099999999, 44.655762]}",131.926207,8.482014494663671 | |
04657,44.970309,-67.415773,363,"{'type': 'Point', 'coordinates': [-67.415773, 44.970309]}",284.993909,1.2737114321976615 | |
04658,44.507821,-67.877963,1353,"{'type': 'Point', 'coordinates': [-67.877963, 44.507821]}",111.026528,12.186276778825327 | |
04660,44.335753000000004,-68.345729,1309,"{'type': 'Point', 'coordinates': [-68.345729, 44.335753000000004]}",116.084429,11.276275477049554 | |
04662,44.300939,-68.292433,488,"{'type': 'Point', 'coordinates': [-68.292433, 44.300939]}",9.248897,52.76304839377063 | |
04664,44.539656,-68.119741,1238,"{'type': 'Point', 'coordinates': [-68.119741, 44.539656]}",110.280803,11.225888516607917 | |
04666,44.980584,-67.223672,1172,"{'type': 'Point', 'coordinates': [-67.223672, 44.980584]}",190.776282,6.143321317059738 | |
04667,44.983542,-67.101382,1638,"{'type': 'Point', 'coordinates': [-67.101382, 44.983542]}",111.442584,14.698151650898547 | |
04668,45.212926,-67.585966,1680,"{'type': 'Point', 'coordinates': [-67.585966, 45.212926]}",294.776154,5.699239837425926 | |
04669,44.40825,-68.014884,204,"{'type': 'Point', 'coordinates': [-68.014884, 44.40825]}",11.698134,17.438678681574345 | |
04671,45.067341,-67.149953,576,"{'type': 'Point', 'coordinates': [-67.149953, 45.067341]}",87.367576,6.592834852142401 | |
04673,44.317252,-68.680481,112,"{'type': 'Point', 'coordinates': [-68.680481, 44.317252]}",8.474548,13.216044088723079 | |
04674,44.274254,-68.458828,484,"{'type': 'Point', 'coordinates': [-68.458828, 44.274254]}",70.49047,6.866176378168566 | |
04675,44.301347,-68.251148,253,"{'type': 'Point', 'coordinates': [-68.251148, 44.301347]}",16.068619,15.744974723714588 | |
04676,44.34688,-68.634365,1088,"{'type': 'Point', 'coordinates': [-68.634365, 44.34688]}",72.087592,15.09274994232017 | |
04677,44.476822,-68.181506,274,"{'type': 'Point', 'coordinates': [-68.181506, 44.476822]}",36.548444,7.496899183998092 | |
04679,44.278734,-68.324541,1767,"{'type': 'Point', 'coordinates': [-68.324541, 44.278734]}",50.561252,34.94771055115486 | |
04680,44.478414,-67.947062,1131,"{'type': 'Point', 'coordinates': [-67.947062, 44.478414]}",150.875242,7.4962597243091755 | |
04681,44.150464,-68.64532700000001,1043,"{'type': 'Point', 'coordinates': [-68.64532700000001, 44.150464]}",97.995302,10.643367372856304 | |
04683,44.245208,-68.78781500000001,104,"{'type': 'Point', 'coordinates': [-68.78781500000001, 44.245208]}",187.09914,0.55585504027437 | |
04684,44.467465999999995,-68.507324,1466,"{'type': 'Point', 'coordinates': [-68.507324, 44.467465999999995]}",132.424891,11.070426329442853 | |
04685,44.151687,-68.465212,332,"{'type': 'Point', 'coordinates': [-68.465212, 44.151687]}",176.849329,1.8773042672952407 | |
04686,44.996537,-67.694027,114,"{'type': 'Point', 'coordinates': [-67.694027, 44.996537]}",309.019048,0.36890929778542325 | |
04691,44.760321999999995,-67.25504699999999,441,"{'type': 'Point', 'coordinates': [-67.25504699999999, 44.760321999999995]}",135.251674,3.260588109245879 | |
04693,44.376371999999996,-68.093638,516,"{'type': 'Point', 'coordinates': [-68.093638, 44.376371999999996]}",86.869739,5.9399280571108894 | |
04694,45.115083,-67.477541,2376,"{'type': 'Point', 'coordinates': [-67.477541, 45.115083]}",383.24589,6.199675096320016 | |
04730,46.014769,-68.028159,9992,"{'type': 'Point', 'coordinates': [-68.028159, 46.014769]}",612.375738,16.316779682737856 | |
04732,46.666290999999994,-68.56943299999999,1670,"{'type': 'Point', 'coordinates': [-68.56943299999999, 46.666290999999994]}",1162.309498,1.4367945911769533 | |
04733,45.752446,-68.402266,221,"{'type': 'Point', 'coordinates': [-68.402266, 45.752446]}",139.168442,1.5880036941133537 | |
04734,46.471517999999996,-67.95433,800,"{'type': 'Point', 'coordinates': [-67.95433, 46.471517999999996]}",117.081691,6.832836058030627 | |
04735,46.414671999999996,-67.860722,617,"{'type': 'Point', 'coordinates': [-67.860722, 46.414671999999996]}",126.04084,4.895238717863194 | |
04736,46.911495,-68.029189,9876,"{'type': 'Point', 'coordinates': [-68.029189, 46.911495]}",434.445663,22.73241705718213 | |
04739,46.995906,-68.672927,1112,"{'type': 'Point', 'coordinates': [-68.672927, 46.995906]}",602.566833,1.8454384461615398 | |
04740,46.633303999999995,-67.847623,1287,"{'type': 'Point', 'coordinates': [-67.847623, 46.633303999999995]}",100.836615,12.763220978808144 | |
04741,47.453712,-69.222921,3,"{'type': 'Point', 'coordinates': [-69.222921, 47.453712]}",8.658259,0.3464899814154324 | |
04742,46.776241,-67.859197,3496,"{'type': 'Point', 'coordinates': [-67.859197, 46.776241]}",202.93386,17.227287747840602 | |
04743,47.200266,-68.614333,4676,"{'type': 'Point', 'coordinates': [-68.614333, 47.200266]}",357.973359,13.06242456998036 | |
04745,47.282101000000004,-68.38878299999999,1082,"{'type': 'Point', 'coordinates': [-68.38878299999999, 47.282101000000004]}",63.2722,17.1007172186205 | |
04746,47.256149,-68.13748100000001,470,"{'type': 'Point', 'coordinates': [-68.13748100000001, 47.256149]}",97.576045,4.816755997847628 | |
04747,46.004971999999995,-68.23377099999999,1337,"{'type': 'Point', 'coordinates': [-68.23377099999999, 46.004971999999995]}",445.622912,3.000294562951018 | |
04750,46.954966999999996,-67.857437,2603,"{'type': 'Point', 'coordinates': [-67.857437, 46.954966999999996]}",204.495704,12.728873756682928 | |
04756,47.321708,-68.298213,3344,"{'type': 'Point', 'coordinates': [-68.298213, 47.321708]}",46.41544,72.04499192510079 | |
04757,46.667614,-68.168635,2870,"{'type': 'Point', 'coordinates': [-68.168635, 46.667614]}",338.364536,8.48197637355234 | |
04758,46.559272,-67.853225,1498,"{'type': 'Point', 'coordinates': [-67.853225, 46.559272]}",91.198771,16.425659946667484 | |
04760,46.339341,-67.954874,795,"{'type': 'Point', 'coordinates': [-67.954874, 46.339341]}",260.335286,3.0537543035944807 | |
04761,46.117253999999996,-67.975284,529,"{'type': 'Point', 'coordinates': [-67.975284, 46.117253999999996]}",50.64303,10.445662512689307 | |
04762,46.958248,-68.12473100000001,602,"{'type': 'Point', 'coordinates': [-68.12473100000001, 46.958248]}",103.237497,5.83121460219052 | |
04763,46.075083,-68.114975,726,"{'type': 'Point', 'coordinates': [-68.114975, 46.075083]}",92.771204,7.825704191572204 | |
04764,46.398928999999995,-68.585323,66,"{'type': 'Point', 'coordinates': [-68.585323, 46.398928999999995]}",171.94198,0.38385041279622345 | |
04765,46.159773,-68.593879,1262,"{'type': 'Point', 'coordinates': [-68.593879, 46.159773]}",1539.555959,0.8197168752603945 | |
04766,46.892463,-68.21578000000001,386,"{'type': 'Point', 'coordinates': [-68.21578000000001, 46.892463]}",94.898515,4.067503058398754 | |
04768,46.82565,-68.865654,400,"{'type': 'Point', 'coordinates': [-68.865654, 46.82565]}",558.852035,0.7157529631255615 | |
04769,46.688952,-67.99191400000001,9692,"{'type': 'Point', 'coordinates': [-67.99191400000001, 46.688952]}",200.987125,48.221994319287866 | |
04772,47.230084000000005,-68.311449,762,"{'type': 'Point', 'coordinates': [-68.311449, 47.230084000000005]}",103.642182,7.3522188099050245 | |
04773,47.267434,-68.223039,723,"{'type': 'Point', 'coordinates': [-68.223039, 47.267434]}",102.518482,7.052386905221636 | |
04774,47.077040000000004,-69.1545,730,"{'type': 'Point', 'coordinates': [-69.1545, 47.077040000000004]}",467.715113,1.560779157461179 | |
04776,45.871695,-68.324753,925,"{'type': 'Point', 'coordinates': [-68.324753, 45.871695]}",224.096787,4.127680777502624 | |
04777,45.842521000000005,-68.501076,422,"{'type': 'Point', 'coordinates': [-68.501076, 45.842521000000005]}",234.576422,1.7989872827031184 | |
04779,47.134512,-68.331897,398,"{'type': 'Point', 'coordinates': [-68.331897, 47.134512]}",293.08637,1.357961477362458 | |
04780,46.237652000000004,-68.27355,808,"{'type': 'Point', 'coordinates': [-68.27355, 46.237652000000004]}",793.902092,1.0177577413412333 | |
04781,47.150199,-68.613495,560,"{'type': 'Point', 'coordinates': [-68.613495, 47.150199]}",129.809245,4.314022471974165 | |
04783,47.040124,-68.17505,426,"{'type': 'Point', 'coordinates': [-68.17505, 47.040124]}",152.224486,2.7984985280226202 | |
04785,47.131861,-67.977959,2504,"{'type': 'Point', 'coordinates': [-67.977959, 47.131861]}",268.687544,9.319375073077447 | |
04786,46.794921,-68.192051,1970,"{'type': 'Point', 'coordinates': [-68.192051, 46.794921]}",184.69947,10.665975381521127 | |
04787,46.533465,-67.966076,544,"{'type': 'Point', 'coordinates': [-67.966076, 46.533465]}",104.316359,5.2149059381951774 | |
04841,44.133536,-69.133822,7297,"{'type': 'Point', 'coordinates': [-69.133822, 44.133536]}",35.20486,207.27251862384912 | |
04843,44.238406,-69.06403900000001,4851,"{'type': 'Point', 'coordinates': [-69.06403900000001, 44.238406]}",61.987113,78.25820182979001 | |
04847,44.241178000000005,-69.188513,1536,"{'type': 'Point', 'coordinates': [-69.188513, 44.241178000000005]}",61.845498,24.83608426922199 | |
04848,44.298888,-68.915242,566,"{'type': 'Point', 'coordinates': [-68.915242, 44.298888]}",178.400589,3.1726352652344665 | |
04849,44.316106,-69.025998,3684,"{'type': 'Point', 'coordinates': [-69.025998, 44.316106]}",203.656345,18.089296456734505 | |
04851,43.853412,-68.91082,75,"{'type': 'Point', 'coordinates': [-68.91082, 43.853412]}",25.814755,2.905315196677249 | |
04852,43.767426,-69.310059,69,"{'type': 'Point', 'coordinates': [-69.310059, 43.767426]}",3.187498,21.647072406006213 | |
04853,44.136346,-68.86675600000001,354,"{'type': 'Point', 'coordinates': [-68.86675600000001, 44.136346]}",61.287702,5.776036438762216 | |
04854,44.075524,-69.07984300000001,1580,"{'type': 'Point', 'coordinates': [-69.07984300000001, 44.075524]}",32.193828,49.07773005434457 | |
04855,43.938358,-69.264531,307,"{'type': 'Point', 'coordinates': [-69.264531, 43.938358]}",13.911244,22.068479281939126 | |
04856,44.180603999999995,-69.122109,3330,"{'type': 'Point', 'coordinates': [-69.122109, 44.180603999999995]}",62.019607,53.69269753676446 | |
04858,44.04651,-69.15406,1533,"{'type': 'Point', 'coordinates': [-69.15406, 44.04651]}",37.837266,40.51561230666085 | |
04859,43.999115,-69.144355,724,"{'type': 'Point', 'coordinates': [-69.144355, 43.999115]}",40.126019,18.04315548970856 | |
04860,43.866343,-69.321972,1591,"{'type': 'Point', 'coordinates': [-69.321972, 43.866343]}",93.082642,17.092338225638244 | |
04861,44.107714,-69.171425,2781,"{'type': 'Point', 'coordinates': [-69.171425, 44.107714]}",29.71852,93.57801128723771 | |
04862,44.262706,-69.277723,3592,"{'type': 'Point', 'coordinates': [-69.277723, 44.262706]}",176.26017,20.378965934277723 | |
04863,44.068815,-68.853314,1165,"{'type': 'Point', 'coordinates': [-68.853314, 44.068815]}",135.458173,8.600440816516846 | |
04864,44.128009999999996,-69.24388499999999,4751,"{'type': 'Point', 'coordinates': [-69.24388499999999, 44.128009999999996]}",126.261026,37.62839690531265 | |
04901,44.541098999999996,-69.573012,26248,"{'type': 'Point', 'coordinates': [-69.573012, 44.541098999999996]}",211.835645,123.9073811208685 | |
04910,44.508311,-69.44521,2041,"{'type': 'Point', 'coordinates': [-69.44521, 44.508311]}",102.198374,19.970963530202546 | |
04911,44.769927,-69.972548,2136,"{'type': 'Point', 'coordinates': [-69.972548, 44.769927]}",166.714094,12.81235406527777 | |
04912,44.980705,-69.68987800000001,1048,"{'type': 'Point', 'coordinates': [-69.68987800000001, 44.980705]}",155.400376,6.743870426671298 | |
04915,44.463502000000005,-69.037571,8806,"{'type': 'Point', 'coordinates': [-69.037571, 44.463502000000005]}",205.367741,42.87917838079545 | |
04917,44.487731,-69.838639,2849,"{'type': 'Point', 'coordinates': [-69.838639, 44.487731]}",139.959683,20.355862052073952 | |
04918,44.516779,-69.86648000000001,349,"{'type': 'Point', 'coordinates': [-69.86648000000001, 44.516779]}",10.210573,34.18025609336518 | |
04920,45.142340999999995,-69.854458,1713,"{'type': 'Point', 'coordinates': [-69.854458, 45.142340999999995]}",686.783312,2.494236493620567 | |
04921,44.560894,-69.136548,1593,"{'type': 'Point', 'coordinates': [-69.136548, 44.560894]}",124.912186,12.752959106808042 | |
04922,44.68773,-69.384721,1164,"{'type': 'Point', 'coordinates': [-69.384721, 44.68773]}",106.77094,10.901842767329763 | |
04923,45.029009,-69.445746,482,"{'type': 'Point', 'coordinates': [-69.445746, 45.029009]}",55.501829,8.684398490723613 | |
04924,44.782241,-69.546315,2275,"{'type': 'Point', 'coordinates': [-69.546315, 44.782241]}",109.104154,20.851635034904355 | |
04925,45.212371999999995,-69.903397,75,"{'type': 'Point', 'coordinates': [-69.903397, 45.212371999999995]}",155.396927,0.48263502662443253 | |
04926,44.480121999999994,-69.513888,52,"{'type': 'Point', 'coordinates': [-69.513888, 44.480121999999994]}",0.282034,184.37493351865376 | |
04927,44.665473999999996,-69.540766,3486,"{'type': 'Point', 'coordinates': [-69.540766, 44.665473999999996]}",116.009532,30.04925491812173 | |
04928,44.943471,-69.25824200000001,2198,"{'type': 'Point', 'coordinates': [-69.25824200000001, 44.943471]}",102.214582,21.50378113369382 | |
04929,44.773091,-69.301537,837,"{'type': 'Point', 'coordinates': [-69.301537, 44.773091]}",51.928646,16.118271213926896 | |
04930,45.027572,-69.31796999999999,4295,"{'type': 'Point', 'coordinates': [-69.31796999999999, 45.027572]}",145.963122,29.425240712513673 | |
04932,44.697571,-69.143703,1181,"{'type': 'Point', 'coordinates': [-69.143703, 44.697571]}",94.363009,12.515497465749528 | |
04933,44.816495,-69.231348,65,"{'type': 'Point', 'coordinates': [-69.231348, 44.816495]}",0.240546,270.2185860500694 | |
04936,45.355011,-70.65743,261,"{'type': 'Point', 'coordinates': [-70.65743, 45.355011]}",1162.320995,0.22455070597774068 | |
04937,44.651655,-69.661275,6645,"{'type': 'Point', 'coordinates': [-69.661275, 44.651655]}",136.973212,48.513135546533 | |
04938,44.661856,-70.103104,9869,"{'type': 'Point', 'coordinates': [-70.103104, 44.661856]}",325.015116,30.364741558666463 | |
04939,45.077258,-69.158771,1105,"{'type': 'Point', 'coordinates': [-69.158771, 45.077258]}",98.261733,11.245476405346931 | |
04940,44.623994,-70.08329300000001,118,"{'type': 'Point', 'coordinates': [-70.08329300000001, 44.623994]}",1.297227,90.96326240511492 | |
04941,44.470053,-69.284182,1751,"{'type': 'Point', 'coordinates': [-69.284182, 44.470053]}",169.280309,10.343790192396211 | |
04942,45.077022,-69.586446,1326,"{'type': 'Point', 'coordinates': [-69.586446, 45.077022]}",382.414959,3.467437580024164 | |
04943,44.879822999999995,-69.5205,1792,"{'type': 'Point', 'coordinates': [-69.5205, 44.879822999999995]}",111.321336,16.097543062185313 | |
04944,44.686890999999996,-69.643928,42,"{'type': 'Point', 'coordinates': [-69.643928, 44.686890999999996]}",4.254627,9.871605666019606 | |
04945,45.869605,-70.26605500000001,1242,"{'type': 'Point', 'coordinates': [-70.26605500000001, 45.869605]}",2472.442653,0.5023372325715981 | |
04947,45.049288,-70.268762,1852,"{'type': 'Point', 'coordinates': [-70.268762, 45.049288]}",327.700101,5.651508786077548 | |
04949,44.369093,-69.336,913,"{'type': 'Point', 'coordinates': [-69.336, 44.369093]}",73.553434,12.412744726507263 | |
04950,44.826353999999995,-69.799713,4855,"{'type': 'Point', 'coordinates': [-69.799713, 44.826353999999995]}",141.991817,34.19211122567718 | |
04951,44.607217,-69.071281,906,"{'type': 'Point', 'coordinates': [-69.071281, 44.607217]}",104.625216,8.659480330248494 | |
04952,44.412796,-69.154791,1829,"{'type': 'Point', 'coordinates': [-69.154791, 44.412796]}",81.030024,22.571880269960182 | |
04953,44.8603,-69.236698,3228,"{'type': 'Point', 'coordinates': [-69.236698, 44.8603]}",95.578286,33.773361451574885 | |
04955,44.647207,-69.993337,1362,"{'type': 'Point', 'coordinates': [-69.993337, 44.647207]}",117.009974,11.640033353054159 | |
04956,44.807906,-70.10984,760,"{'type': 'Point', 'coordinates': [-70.10984, 44.807906]}",99.700426,7.622836034822961 | |
04957,44.702067,-69.843372,4265,"{'type': 'Point', 'coordinates': [-69.843372, 44.702067]}",215.89641,19.75484446452815 | |
04958,44.896903,-69.917316,1954,"{'type': 'Point', 'coordinates': [-69.917316, 44.896903]}",154.20349,12.671567939221092 | |
04961,45.137862,-70.14409599999999,972,"{'type': 'Point', 'coordinates': [-70.14409599999999, 45.137862]}",841.761488,1.1547213953794 | |
04962,44.489067,-69.62594399999999,125,"{'type': 'Point', 'coordinates': [-69.62594399999999, 44.489067]}",0.212866,587.2238873281783 | |
04963,44.56033,-69.857434,7238,"{'type': 'Point', 'coordinates': [-69.857434, 44.56033]}",154.910866,46.72364300125984 | |
04964,44.866915999999996,-70.774098,221,"{'type': 'Point', 'coordinates': [-70.774098, 44.866915999999996]}",326.246663,0.6774015647173072 | |
04965,44.843151,-69.368356,1976,"{'type': 'Point', 'coordinates': [-69.368356, 44.843151]}",107.255104,18.423365660994556 | |
04966,44.814699,-70.427311,1682,"{'type': 'Point', 'coordinates': [-70.427311, 44.814699]}",518.423913,3.2444491039517307 | |
04967,44.769841,-69.43366999999999,4230,"{'type': 'Point', 'coordinates': [-69.43366999999999, 44.769841]}",127.110491,33.278134375234224 | |
04969,44.785282,-69.236277,1362,"{'type': 'Point', 'coordinates': [-69.236277, 44.785282]}",80.3469,16.95149408377921 | |
04970,45.007913,-70.618162,1620,"{'type': 'Point', 'coordinates': [-70.618162, 45.007913]}",639.968937,2.5313728625550462 | |
04971,44.92968,-69.391278,2005,"{'type': 'Point', 'coordinates': [-69.391278, 44.92968]}",121.987096,16.436164690730894 | |
04973,44.368254,-69.186293,1389,"{'type': 'Point', 'coordinates': [-69.186293, 44.368254]}",101.291818,13.712854872443891 | |
04974,44.470906,-68.928662,2611,"{'type': 'Point', 'coordinates': [-68.928662, 44.470906]}",109.993666,23.737730498045224 | |
04975,44.625353999999994,-69.588334,48,"{'type': 'Point', 'coordinates': [-69.588334, 44.625353999999994]}",0.142318,337.27286780308884 | |
04976,44.789271,-69.667734,9903,"{'type': 'Point', 'coordinates': [-69.667734, 44.789271]}",262.630301,37.70699710693322 | |
04978,44.641819,-69.79989,799,"{'type': 'Point', 'coordinates': [-69.79989, 44.641819]}",51.707148,15.452409017027975 | |
04979,44.93938,-69.808142,1064,"{'type': 'Point', 'coordinates': [-69.808142, 44.93938]}",116.387609,9.141866639772624 | |
04981,44.514019,-68.83905,2316,"{'type': 'Point', 'coordinates': [-68.83905, 44.514019]}",129.772631,17.84659817831697 | |
04982,45.098126,-70.430547,630,"{'type': 'Point', 'coordinates': [-70.430547, 45.098126]}",139.340867,4.521286637322272 | |
04983,44.925633000000005,-70.286451,1752,"{'type': 'Point', 'coordinates': [-70.286451, 44.925633000000005]}",390.956346,4.4813187403792645 | |
04984,44.696585999999996,-70.26720300000001,523,"{'type': 'Point', 'coordinates': [-70.26720300000001, 44.696585999999996]}",61.687004,8.478284988520434 | |
04985,45.369440999999995,-69.931095,114,"{'type': 'Point', 'coordinates': [-69.931095, 45.369440999999995]}",534.091145,0.2134467142307705 | |
04986,44.549459999999996,-69.211292,1721,"{'type': 'Point', 'coordinates': [-69.211292, 44.549459999999996]}",143.953612,11.955240136662914 | |
04987,44.674147999999995,-69.25184399999999,1030,"{'type': 'Point', 'coordinates': [-69.25184399999999, 44.674147999999995]}",93.050076,11.069308530172506 | |
04988,44.570147999999996,-69.362441,2134,"{'type': 'Point', 'coordinates': [-69.362441, 44.570147999999996]}",134.056069,15.918712341177182 | |
04989,44.429334999999995,-69.64829399999999,4215,"{'type': 'Point', 'coordinates': [-69.64829399999999, 44.429334999999995]}",123.606255,34.1002160448919 | |
04992,44.663657,-70.162677,103,"{'type': 'Point', 'coordinates': [-70.162677, 44.663657]}",0.151864,678.2384238529211 | |
05001,43.672188,-72.380193,9123,"{'type': 'Point', 'coordinates': [-72.380193, 43.672188]}",113.887482,80.10537979933562 | |
05031,43.702743,-72.59836,218,"{'type': 'Point', 'coordinates': [-72.59836, 43.702743]}",26.250699,8.304540766704918 | |
05032,43.80158,-72.65776,2664,"{'type': 'Point', 'coordinates': [-72.65776, 43.80158]}",182.144489,14.625751317680548 | |
05033,44.012176000000004,-72.15829599999999,2744,"{'type': 'Point', 'coordinates': [-72.15829599999999, 44.012176000000004]}",75.516285,36.336533239154974 | |
05034,43.574514,-72.643229,310,"{'type': 'Point', 'coordinates': [-72.643229, 43.574514]}",14.807133,20.93585571224355 | |
05035,43.611552,-72.686042,638,"{'type': 'Point', 'coordinates': [-72.686042, 43.611552]}",82.928607,7.6933644863949056 | |
05036,44.023908,-72.587891,1037,"{'type': 'Point', 'coordinates': [-72.587891, 44.023908]}",87.175865,11.89549424029231 | |
05037,43.457741,-72.493459,560,"{'type': 'Point', 'coordinates': [-72.493459, 43.457741]}",27.078397,20.6806924353757 | |
05038,43.989746999999994,-72.454953,1230,"{'type': 'Point', 'coordinates': [-72.454953, 43.989746999999994]}",102.786604,11.966539919929644 | |
05039,44.063294,-72.313078,1110,"{'type': 'Point', 'coordinates': [-72.313078, 44.063294]}",114.358568,9.706312516959812 | |
05040,44.069894,-72.19872099999999,471,"{'type': 'Point', 'coordinates': [-72.19872099999999, 44.069894]}",27.73082,16.984712316476756 | |
05041,43.956602000000004,-72.53856800000001,354,"{'type': 'Point', 'coordinates': [-72.53856800000001, 43.956602000000004]}",15.241701,23.225754133347714 | |
05042,44.222165000000004,-72.096756,605,"{'type': 'Point', 'coordinates': [-72.096756, 44.222165000000004]}",62.040138,9.75175135812883 | |
05043,43.805093,-72.20467099999999,937,"{'type': 'Point', 'coordinates': [-72.20467099999999, 43.805093]}",21.239177,44.11658700334763 | |
05045,43.917775,-72.180111,1758,"{'type': 'Point', 'coordinates': [-72.180111, 43.917775]}",138.535737,12.689866442187403 | |
05046,44.232453,-72.25751600000001,1139,"{'type': 'Point', 'coordinates': [-72.25751600000001, 44.232453]}",157.971638,7.210155027955081 | |
05048,43.580615,-72.427711,2429,"{'type': 'Point', 'coordinates': [-72.427711, 43.580615]}",71.542466,33.95186293969794 | |
05050,44.266923999999996,-72.064037,146,"{'type': 'Point', 'coordinates': [-72.064037, 44.266923999999996]}",1.117877,130.60470874702673 | |
05051,44.104485,-72.12174300000001,1549,"{'type': 'Point', 'coordinates': [-72.12174300000001, 44.104485]}",125.601981,12.332608034263409 | |
05052,43.596986,-72.35972199999999,348,"{'type': 'Point', 'coordinates': [-72.35972199999999, 43.596986]}",7.104551,48.98268729438356 | |
05053,43.719446999999995,-72.489225,332,"{'type': 'Point', 'coordinates': [-72.489225, 43.719446999999995]}",22.666117,14.647414023319477 | |
05055,43.777628,-72.323984,3363,"{'type': 'Point', 'coordinates': [-72.323984, 43.777628]}",107.208675,31.36873018904487 | |
05056,43.508851,-72.69375500000001,567,"{'type': 'Point', 'coordinates': [-72.69375500000001, 43.508851]}",112.34287,5.047049269793446 | |
05058,43.881263,-72.272288,346,"{'type': 'Point', 'coordinates': [-72.272288, 43.881263]}",10.627015,32.55853125266126 | |
05059,43.637817,-72.427734,874,"{'type': 'Point', 'coordinates': [-72.427734, 43.637817]}",14.104232,61.967216648166314 | |
05060,43.967071999999995,-72.70860400000001,4415,"{'type': 'Point', 'coordinates': [-72.70860400000001, 43.967071999999995]}",180.713142,24.43098465965469 | |
05061,43.916755,-72.57018199999999,1679,"{'type': 'Point', 'coordinates': [-72.57018199999999, 43.916755]}",67.130683,25.010917883853498 | |
05062,43.496493,-72.59996899999999,702,"{'type': 'Point', 'coordinates': [-72.59996899999999, 43.496493]}",110.962601,6.326455883996446 | |
05065,43.782477,-72.423363,1064,"{'type': 'Point', 'coordinates': [-72.423363, 43.782477]}",84.399888,12.606651800296227 | |
05067,43.677358,-72.518066,258,"{'type': 'Point', 'coordinates': [-72.518066, 43.677358]}",42.622393,6.0531561425938705 | |
05068,43.780996,-72.547512,3125,"{'type': 'Point', 'coordinates': [-72.547512, 43.780996]}",134.848281,23.174192335458844 | |
05069,44.204072,-72.131204,555,"{'type': 'Point', 'coordinates': [-72.131204, 44.204072]}",31.549858,17.59120437245708 | |
05070,43.851617,-72.343298,484,"{'type': 'Point', 'coordinates': [-72.343298, 43.851617]}",35.487339,13.638667018679536 | |
05071,43.561557,-72.54633299999999,324,"{'type': 'Point', 'coordinates': [-72.54633299999999, 43.561557]}",50.038635,6.474996769995824 | |
05072,43.898745,-72.372069,526,"{'type': 'Point', 'coordinates': [-72.372069, 43.898745]}",68.268665,7.704852585003676 | |
05075,43.845083,-72.28254,1113,"{'type': 'Point', 'coordinates': [-72.28254, 43.845083]}",67.03683,16.60281370703239 | |
05076,44.141853999999995,-72.230959,412,"{'type': 'Point', 'coordinates': [-72.230959, 44.141853999999995]}",74.823698,5.506276901737736 | |
05077,43.908796,-72.45930600000001,1215,"{'type': 'Point', 'coordinates': [-72.45930600000001, 43.908796]}",109.811401,11.064424904295684 | |
05079,43.956765000000004,-72.326539,730,"{'type': 'Point', 'coordinates': [-72.326539, 43.956765000000004]}",94.63719,7.713669435873994 | |
05081,44.122727000000005,-72.065917,550,"{'type': 'Point', 'coordinates': [-72.065917, 44.122727000000005]}",24.275618,22.656477787712756 | |
05083,43.918898999999996,-72.268095,151,"{'type': 'Point', 'coordinates': [-72.268095, 43.918898999999996]}",1.866028,80.92054352882164 | |
05084,43.729739,-72.45143900000001,140,"{'type': 'Point', 'coordinates': [-72.45143900000001, 43.729739]}",6.21383,22.530387860627023 | |
05086,44.108948999999996,-72.30073,793,"{'type': 'Point', 'coordinates': [-72.30073, 44.108948999999996]}",63.47779,12.49255842082719 | |
05089,43.495591,-72.442313,4979,"{'type': 'Point', 'coordinates': [-72.442313, 43.495591]}",107.393711,46.362118914020954 | |
05091,43.630741,-72.570302,3288,"{'type': 'Point', 'coordinates': [-72.570302, 43.630741]}",174.714447,18.81927943829396 | |
05101,43.182144,-72.49322099999999,4643,"{'type': 'Point', 'coordinates': [-72.49322099999999, 43.182144]}",90.872695,51.093455520384865 | |
05141,43.151168,-72.569224,112,"{'type': 'Point', 'coordinates': [-72.569224, 43.151168]}",2.61644,42.80625582853037 | |
05142,43.397517,-72.580475,680,"{'type': 'Point', 'coordinates': [-72.580475, 43.397517]}",70.190236,9.687957168287623 | |
05143,43.27763,-72.640348,4343,"{'type': 'Point', 'coordinates': [-72.640348, 43.27763]}",246.734108,17.601944194922577 | |
05146,43.184942,-72.633977,750,"{'type': 'Point', 'coordinates': [-72.633977, 43.184942]}",114.890955,6.527929026266689 | |
05148,43.231362,-72.79100799999999,1140,"{'type': 'Point', 'coordinates': [-72.79100799999999, 43.231362]}",70.938015,16.07036791204265 | |
05149,43.380553000000006,-72.712124,2092,"{'type': 'Point', 'coordinates': [-72.712124, 43.380553000000006]}",115.461699,18.118562416096093 | |
05150,43.334435,-72.530792,831,"{'type': 'Point', 'coordinates': [-72.530792, 43.334435]}",6.398791,129.8682829303223 | |
05151,43.395317,-72.496973,1553,"{'type': 'Point', 'coordinates': [-72.496973, 43.395317]}",73.335865,21.176541655300582 | |
05152,43.233343,-72.938985,448,"{'type': 'Point', 'coordinates': [-72.938985, 43.233343]}",105.79478,4.234613465806158 | |
05153,43.418436,-72.642552,687,"{'type': 'Point', 'coordinates': [-72.642552, 43.418436]}",32.651532,21.040360372677153 | |
05154,43.135197,-72.546165,661,"{'type': 'Point', 'coordinates': [-72.546165, 43.135197]}",7.011508,94.27358565375665 | |
05155,43.193432,-72.81544,828,"{'type': 'Point', 'coordinates': [-72.81544, 43.193432]}",108.184767,7.653572891643794 | |
05156,43.310627000000004,-72.461623,9226,"{'type': 'Point', 'coordinates': [-72.461623, 43.310627000000004]}",157.367729,58.6270136744491 | |
05158,43.084053999999995,-72.469725,1049,"{'type': 'Point', 'coordinates': [-72.469725, 43.084053999999995]}",29.854157,35.13748520850882 | |
05161,43.321441,-72.802903,552,"{'type': 'Point', 'coordinates': [-72.802903, 43.321441]}",89.95662,6.136291025607676 | |
05201,42.869211,-73.128516,14851,"{'type': 'Point', 'coordinates': [-73.128516, 42.869211]}",242.010869,61.365012494542135 | |
05250,43.103713,-73.17314499999999,3408,"{'type': 'Point', 'coordinates': [-73.17314499999999, 43.103713]}",237.988855,14.319998304122267 | |
05251,43.264151,-73.063677,1350,"{'type': 'Point', 'coordinates': [-73.063677, 43.264151]}",90.527186,14.912647345516739 | |
05252,43.082046999999996,-73.066766,274,"{'type': 'Point', 'coordinates': [-73.066766, 43.082046999999996]}",101.517197,2.699050092961097 | |
05253,43.245762,-73.002071,685,"{'type': 'Point', 'coordinates': [-73.002071, 43.245762]}",34.207324,20.024951381756726 | |
05254,43.152271999999996,-73.061422,273,"{'type': 'Point', 'coordinates': [-73.061422, 43.152271999999996]}",5.255793,51.942684957341356 | |
05255,43.137652,-73.02241500000001,4121,"{'type': 'Point', 'coordinates': [-73.02241500000001, 43.137652]}",102.369515,40.25612507786131 | |
05257,42.958719,-73.260755,2718,"{'type': 'Point', 'coordinates': [-73.260755, 42.958719]}",33.138284,82.01993802696603 | |
05260,42.820569,-73.274398,459,"{'type': 'Point', 'coordinates': [-73.274398, 42.820569]}",25.172198,18.23440289163465 | |
05261,42.770286,-73.179047,2738,"{'type': 'Point', 'coordinates': [-73.179047, 42.770286]}",83.64051,32.73533363199244 | |
05262,42.97375,-73.07524000000001,2547,"{'type': 'Point', 'coordinates': [-73.07524000000001, 42.97375]}",197.442188,12.899978600318185 | |
05301,42.83868,-72.659997,16820,"{'type': 'Point', 'coordinates': [-72.659997, 42.83868]}",391.831244,42.92664318519735 | |
05340,43.168974,-72.972363,763,"{'type': 'Point', 'coordinates': [-72.972363, 43.168974]}",113.976151,6.694382932794423 | |
05341,42.974544,-72.801051,407,"{'type': 'Point', 'coordinates': [-72.801051, 42.974544]}",34.078384,11.943054576766317 | |
05342,42.777497,-72.794821,581,"{'type': 'Point', 'coordinates': [-72.794821, 42.777497]}",39.744005,14.61855693707768 | |
05343,43.102664000000004,-72.820014,917,"{'type': 'Point', 'coordinates': [-72.820014, 43.102664000000004]}",118.169737,7.760024040672952 | |
05345,42.987266,-72.684706,2119,"{'type': 'Point', 'coordinates': [-72.684706, 42.987266]}",130.681312,16.215019328853998 | |
05346,43.037688,-72.53652199999999,5184,"{'type': 'Point', 'coordinates': [-72.53652199999999, 43.037688]}",178.838045,28.987120721432625 | |
05350,42.790943,-72.97264,763,"{'type': 'Point', 'coordinates': [-72.97264, 42.790943]}",94.474781,8.076229359028629 | |
05352,42.808046999999995,-73.076277,824,"{'type': 'Point', 'coordinates': [-73.076277, 42.808046999999995]}",102.593502,8.031697758012003 | |
05353,43.071027,-72.682177,1072,"{'type': 'Point', 'coordinates': [-72.682177, 43.071027]}",96.328408,11.12859666485924 | |
05354,42.764133,-72.522086,2210,"{'type': 'Point', 'coordinates': [-72.522086, 42.764133]}",51.925669,42.56083826286379 | |
05355,43.019478,-72.812148,813,"{'type': 'Point', 'coordinates': [-72.812148, 43.019478]}",71.062132,11.44069249146648 | |
05356,42.975528999999995,-72.864581,717,"{'type': 'Point', 'coordinates': [-72.864581, 42.975528999999995]}",57.434476,12.483791094394245 | |
05358,42.773345,-72.705469,148,"{'type': 'Point', 'coordinates': [-72.705469, 42.773345]}",32.459109,4.5595829509676316 | |
05359,43.153086,-72.715918,594,"{'type': 'Point', 'coordinates': [-72.715918, 43.153086]}",76.815421,7.732822293586076 | |
05360,43.000119,-72.94697099999999,251,"{'type': 'Point', 'coordinates': [-72.94697099999999, 43.000119]}",133.406717,1.881464484280803 | |
05361,42.780694,-72.879131,947,"{'type': 'Point', 'coordinates': [-72.879131, 42.780694]}",84.438641,11.215244451885482 | |
05362,42.93522,-72.659896,127,"{'type': 'Point', 'coordinates': [-72.659896, 42.93522]}",7.051456,18.010464789115893 | |
05363,42.882781,-72.893126,2021,"{'type': 'Point', 'coordinates': [-72.893126, 42.882781]}",171.834076,11.761345869488656 | |
05401,44.476621,-73.209998,28185,"{'type': 'Point', 'coordinates': [-73.209998, 44.476621]}",15.681652,1797.3233942444328 | |
05403,44.444866,-73.173468,17593,"{'type': 'Point', 'coordinates': [-73.173468, 44.444866]}",42.974507,409.3822414297853 | |
05404,44.495587,-73.184857,7240,"{'type': 'Point', 'coordinates': [-73.184857, 44.495587]}",3.90378,1854.6127087079703 | |
05405,44.473735,-73.19561,4406,"{'type': 'Point', 'coordinates': [-73.19561, 44.473735]}",0.602942,7307.502214143317 | |
05408,44.511852000000005,-73.249611,10114,"{'type': 'Point', 'coordinates': [-73.249611, 44.511852000000005]}",11.645072,868.521894926884 | |
05439,44.494527000000005,-73.16526999999999,1734,"{'type': 'Point', 'coordinates': [-73.16526999999999, 44.494527000000005]}",0.485399,3572.3188552098377 | |
05440,44.957882,-73.291974,1998,"{'type': 'Point', 'coordinates': [-73.291974, 44.957882]}",76.952305,25.964134537620414 | |
05441,44.805549,-72.72024300000001,958,"{'type': 'Point', 'coordinates': [-72.72024300000001, 44.805549]}",82.639493,11.592520297770946 | |
05442,44.757187,-72.671334,339,"{'type': 'Point', 'coordinates': [-72.671334, 44.757187]}",82.926766,4.087944295331618 | |
05443,44.139443,-73.03993,6656,"{'type': 'Point', 'coordinates': [-73.03993, 44.139443]}",296.522349,22.44687465362012 | |
05444,44.649728,-72.896957,1714,"{'type': 'Point', 'coordinates': [-72.896957, 44.649728]}",53.093054,32.28294232236104 | |
05445,44.309955,-73.220978,3754,"{'type': 'Point', 'coordinates': [-73.220978, 44.309955]}",107.252455,35.001529801812 | |
05446,44.541259000000004,-73.184415,15373,"{'type': 'Point', 'coordinates': [-73.184415, 44.541259000000004]}",97.122502,158.2846372718034 | |
05447,44.932454,-72.701892,79,"{'type': 'Point', 'coordinates': [-72.701892, 44.932454]}",0.802679,98.42041463648606 | |
05448,44.750291,-72.900865,1134,"{'type': 'Point', 'coordinates': [-72.900865, 44.750291]}",105.49529,10.749295063315149 | |
05450,44.894578,-72.79524599999999,4977,"{'type': 'Point', 'coordinates': [-72.79524599999999, 44.894578]}",310.742222,16.016490993618497 | |
05452,44.538624,-73.050223,19710,"{'type': 'Point', 'coordinates': [-73.050223, 44.538624]}",108.795854,181.16499182036844 | |
05454,44.710289,-73.02887700000001,4447,"{'type': 'Point', 'coordinates': [-73.02887700000001, 44.710289]}",126.085798,35.269634411958116 | |
05455,44.801687,-72.967393,1080,"{'type': 'Point', 'coordinates': [-72.967393, 44.801687]}",86.937475,12.422721041760184 | |
05456,44.221416,-73.264595,1277,"{'type': 'Point', 'coordinates': [-73.264595, 44.221416]}",64.551064,19.78278777868015 | |
05457,44.958733,-72.922009,1617,"{'type': 'Point', 'coordinates': [-72.922009, 44.958733]}",105.593003,15.313514665360923 | |
05458,44.717847,-73.307486,2044,"{'type': 'Point', 'coordinates': [-73.307486, 44.717847]}",42.456898,48.14294252020013 | |
05459,44.95006,-73.005367,2156,"{'type': 'Point', 'coordinates': [-73.005367, 44.95006]}",67.717949,31.837940041568594 | |
05461,44.332701,-73.087409,4542,"{'type': 'Point', 'coordinates': [-73.087409, 44.332701]}",107.431782,42.277991814377614 | |
05462,44.312539,-72.952108,1938,"{'type': 'Point', 'coordinates': [-72.952108, 44.312539]}",98.52476,19.67018239882036 | |
05463,44.871325,-73.3492,471,"{'type': 'Point', 'coordinates': [-73.3492, 44.871325]}",20.451911,23.02963278101494 | |
05464,44.646262,-72.818997,3008,"{'type': 'Point', 'coordinates': [-72.818997, 44.646262]}",168.907353,17.80857935770268 | |
05465,44.464175,-72.95105699999999,5355,"{'type': 'Point', 'coordinates': [-72.95105699999999, 44.464175]}",113.25843,47.28124873353798 | |
05468,44.657371000000005,-73.144488,12942,"{'type': 'Point', 'coordinates': [-73.144488, 44.657371000000005]}",169.354465,76.4195972040064 | |
05471,44.828065,-72.57820600000001,896,"{'type': 'Point', 'coordinates': [-72.57820600000001, 44.828065]}",133.944687,6.689328409121596 | |
05472,44.102761,-73.155209,1643,"{'type': 'Point', 'coordinates': [-73.155209, 44.102761]}",102.759542,15.988782822718303 | |
05473,44.241935999999995,-73.194663,1413,"{'type': 'Point', 'coordinates': [-73.194663, 44.241935999999995]}",49.895786,28.319024776962127 | |
05474,44.835081,-73.225658,803,"{'type': 'Point', 'coordinates': [-73.225658, 44.835081]}",34.892292,23.013678780402277 | |
05476,44.955228000000005,-72.64313800000001,3183,"{'type': 'Point', 'coordinates': [-72.64313800000001, 44.955228000000005]}",166.399151,19.128703367002156 | |
05477,44.416769,-72.962422,4397,"{'type': 'Point', 'coordinates': [-72.962422, 44.416769]}",121.559826,36.171489748595064 | |
05478,44.808422,-73.08250699999999,14449,"{'type': 'Point', 'coordinates': [-73.08250699999999, 44.808422]}",158.142401,91.36702053739528 | |
05481,44.772921000000004,-73.205391,0,"{'type': 'Point', 'coordinates': [-73.205391, 44.772921000000004]}",0.973626,0.0 | |
05482,44.380662,-73.21100600000001,7198,"{'type': 'Point', 'coordinates': [-73.21100600000001, 44.380662]}",65.415403,110.0352465916934 | |
05483,44.889912,-72.963139,1303,"{'type': 'Point', 'coordinates': [-72.963139, 44.889912]}",55.190091,23.609310591642256 | |
05485,44.900339,-72.970903,93,"{'type': 'Point', 'coordinates': [-72.970903, 44.900339]}",0.476437,195.19894550591158 | |
05486,44.642247,-73.30774,1654,"{'type': 'Point', 'coordinates': [-73.30774, 44.642247]}",38.719598,42.71738565054317 | |
05487,44.210341,-72.99340500000001,1498,"{'type': 'Point', 'coordinates': [-72.99340500000001, 44.210341]}",116.868967,12.817773943360002 | |
05488,44.921329,-73.125393,7690,"{'type': 'Point', 'coordinates': [-73.125393, 44.921329]}",172.23715,44.647742952086695 | |
05489,44.570909,-72.90159799999999,3174,"{'type': 'Point', 'coordinates': [-72.90159799999999, 44.570909]}",137.459625,23.090416549586834 | |
05491,44.111961,-73.310796,5909,"{'type': 'Point', 'coordinates': [-73.310796, 44.111961]}",232.223938,25.445266542676578 | |
05492,44.737637,-72.761773,682,"{'type': 'Point', 'coordinates': [-72.761773, 44.737637]}",42.797627,15.935462963869469 | |
05494,44.607422,-73.003642,1767,"{'type': 'Point', 'coordinates': [-73.003642, 44.607422]}",89.130352,19.824896461757493 | |
05495,44.429165999999995,-73.09631,9341,"{'type': 'Point', 'coordinates': [-73.09631, 44.429165999999995]}",88.250936,105.84590286951745 | |
05602,44.274988,-72.609514,11916,"{'type': 'Point', 'coordinates': [-72.609514, 44.274988]}",213.383615,55.843088045912054 | |
05640,44.341879999999996,-72.499842,161,"{'type': 'Point', 'coordinates': [-72.499842, 44.341879999999996]}",9.773215,16.473596457255876 | |
05641,44.188842,-72.472172,17169,"{'type': 'Point', 'coordinates': [-72.472172, 44.188842]}",141.061045,121.71326250985875 | |
05647,44.409482000000004,-72.259129,1141,"{'type': 'Point', 'coordinates': [-72.259129, 44.409482000000004]}",77.919467,14.643323984749538 | |
05648,44.383292,-72.49247700000001,423,"{'type': 'Point', 'coordinates': [-72.49247700000001, 44.383292]}",23.670396,17.870423460596097 | |
05649,44.166554999999995,-72.3466,574,"{'type': 'Point', 'coordinates': [-72.3466, 44.166554999999995]}",40.55757,14.15272167440012 | |
05650,44.384615999999994,-72.435941,1123,"{'type': 'Point', 'coordinates': [-72.435941, 44.384615999999994]}",62.763432,17.89258433158977 | |
05651,44.282307,-72.489262,1546,"{'type': 'Point', 'coordinates': [-72.489262, 44.282307]}",44.977184,34.37298342199458 | |
05652,44.723753,-72.61096500000001,776,"{'type': 'Point', 'coordinates': [-72.61096500000001, 44.723753]}",82.034346,9.459452507855673 | |
05653,44.714895,-72.47274,547,"{'type': 'Point', 'coordinates': [-72.47274, 44.714895]}",84.47601,6.475211127987698 | |
05654,44.140285999999996,-72.475659,970,"{'type': 'Point', 'coordinates': [-72.475659, 44.140285999999996]}",7.596952,127.6827864648875 | |
05655,44.624262,-72.570417,2868,"{'type': 'Point', 'coordinates': [-72.570417, 44.624262]}",91.149078,31.464937034250635 | |
05656,44.648123999999996,-72.68884,3508,"{'type': 'Point', 'coordinates': [-72.68884, 44.648123999999996]}",121.913903,28.774404835517405 | |
05657,44.535509000000005,-72.52672,56,"{'type': 'Point', 'coordinates': [-72.52672, 44.535509000000005]}",1.250825,44.77045150200867 | |
05658,44.364724,-72.35483,1402,"{'type': 'Point', 'coordinates': [-72.35483, 44.364724]}",99.408751,14.10338612945655 | |
05660,44.253995,-72.73447900000001,1660,"{'type': 'Point', 'coordinates': [-72.73447900000001, 44.253995]}",103.388907,16.055881120786005 | |
05661,44.532336,-72.62025799999999,5620,"{'type': 'Point', 'coordinates': [-72.62025799999999, 44.532336]}",172.654716,32.55051544609995 | |
05663,44.147613,-72.691275,6773,"{'type': 'Point', 'coordinates': [-72.691275, 44.147613]}",142.435675,47.551289380276394 | |
05664,44.167173,-72.653138,80,"{'type': 'Point', 'coordinates': [-72.653138, 44.167173]}",0.043125,1855.072463768116 | |
05667,44.269042,-72.38887,2166,"{'type': 'Point', 'coordinates': [-72.38887, 44.269042]}",118.095455,18.341095345286572 | |
05669,44.065108,-72.729625,634,"{'type': 'Point', 'coordinates': [-72.729625, 44.065108]}",109.982524,5.764552193764893 | |
05672,44.491806,-72.712611,4314,"{'type': 'Point', 'coordinates': [-72.712611, 44.491806]}",188.454488,22.891468628754545 | |
05673,44.198969,-72.84083299999999,2574,"{'type': 'Point', 'coordinates': [-72.84083299999999, 44.198969]}",142.493553,18.063975147001916 | |
05674,44.112526,-72.87403,1705,"{'type': 'Point', 'coordinates': [-72.87403, 44.112526]}",103.538064,16.467373776662463 | |
05675,44.076165,-72.42263299999999,1064,"{'type': 'Point', 'coordinates': [-72.42263299999999, 44.076165]}",103.085814,10.321497776599989 | |
05676,44.295598,-72.82699000000001,4984,"{'type': 'Point', 'coordinates': [-72.82699000000001, 44.295598]}",266.547287,18.69837076976139 | |
05677,44.4083,-72.709972,2232,"{'type': 'Point', 'coordinates': [-72.709972, 44.4083]}",41.448311,53.85020393231464 | |
05678,44.157314,-72.477642,163,"{'type': 'Point', 'coordinates': [-72.477642, 44.157314]}",1.950611,83.56356034083679 | |
05679,44.108944,-72.531912,3296,"{'type': 'Point', 'coordinates': [-72.531912, 44.108944]}",103.410146,31.873081389905398 | |
05680,44.540596,-72.471939,2168,"{'type': 'Point', 'coordinates': [-72.471939, 44.540596]}",173.479223,12.49717379700277 | |
05681,44.458081,-72.379134,458,"{'type': 'Point', 'coordinates': [-72.379134, 44.458081]}",69.132543,6.624955196570738 | |
05682,44.393305,-72.56349,1251,"{'type': 'Point', 'coordinates': [-72.56349, 44.393305]}",120.086807,10.417464093287117 | |
05701,43.624577,-72.91020400000001,20802,"{'type': 'Point', 'coordinates': [-72.91020400000001, 43.624577]}",151.479976,137.32508117112457 | |
05730,43.434532,-72.79751800000001,302,"{'type': 'Point', 'coordinates': [-72.79751800000001, 43.434532]}",36.222145,8.337441087489436 | |
05732,43.713321,-73.187438,708,"{'type': 'Point', 'coordinates': [-73.187438, 43.713321]}",29.551271,23.9583603696775 | |
05733,43.810474,-73.09028,5895,"{'type': 'Point', 'coordinates': [-73.09028, 43.810474]}",300.212337,19.63610176353279 | |
05734,43.981724,-73.331937,1306,"{'type': 'Point', 'coordinates': [-73.331937, 43.981724]}",114.776647,11.378621297414274 | |
05735,43.635473,-73.16776,4402,"{'type': 'Point', 'coordinates': [-73.16776, 43.635473]}",117.004623,37.62244505501291 | |
05736,43.633443,-73.008486,684,"{'type': 'Point', 'coordinates': [-73.008486, 43.633443]}",15.696538,43.576488012834425 | |
05737,43.773182,-72.905861,875,"{'type': 'Point', 'coordinates': [-72.905861, 43.773182]}",169.372307,5.166133800137705 | |
05738,43.523441,-72.860171,1072,"{'type': 'Point', 'coordinates': [-72.860171, 43.523441]}",130.236447,8.231182780961461 | |
05739,43.342621,-73.000196,1407,"{'type': 'Point', 'coordinates': [-73.000196, 43.342621]}",142.118422,9.900194360446811 | |
05740,43.971751,-73.105275,25,"{'type': 'Point', 'coordinates': [-73.105275, 43.971751]}",0.072134,346.5772035378601 | |
05742,43.419653000000004,-72.910801,597,"{'type': 'Point', 'coordinates': [-72.910801, 43.419653000000004]}",67.438607,8.852496019082956 | |
05743,43.67733,-73.304926,4330,"{'type': 'Point', 'coordinates': [-73.304926, 43.67733]}",261.912234,16.53225561048057 | |
05744,43.694013,-73.080457,533,"{'type': 'Point', 'coordinates': [-73.080457, 43.694013]}",57.828364,9.21693029392981 | |
05747,44.005291,-72.841314,280,"{'type': 'Point', 'coordinates': [-72.841314, 44.005291]}",131.280952,2.13283035912171 | |
05748,43.905325,-72.918146,323,"{'type': 'Point', 'coordinates': [-72.918146, 43.905325]}",98.762333,3.270477622273261 | |
05751,43.657594,-72.784406,811,"{'type': 'Point', 'coordinates': [-72.784406, 43.657594]}",121.357498,6.682735004968543 | |
05753,43.997783,-73.17829499999999,10491,"{'type': 'Point', 'coordinates': [-73.17829499999999, 43.997783]}",222.26079,47.20130797699406 | |
05757,43.480102,-73.123641,832,"{'type': 'Point', 'coordinates': [-73.123641, 43.480102]}",63.44124,13.114497762023566 | |
05758,43.450789,-72.757786,784,"{'type': 'Point', 'coordinates': [-72.757786, 43.450789]}",78.935491,9.932160933793394 | |
05759,43.532109999999996,-72.9648,1827,"{'type': 'Point', 'coordinates': [-72.9648, 43.532109999999996]}",47.11571,38.776875059295506 | |
05760,43.800615,-73.28970100000001,1123,"{'type': 'Point', 'coordinates': [-73.28970100000001, 43.800615]}",103.487758,10.851525066375483 | |
05761,43.360927000000004,-73.151758,1000,"{'type': 'Point', 'coordinates': [-73.151758, 43.360927000000004]}",98.681462,10.13361557209195 | |
05762,43.804081,-72.836973,542,"{'type': 'Point', 'coordinates': [-72.836973, 43.804081]}",51.945739,10.433964564446757 | |
05763,43.730204,-72.99523,2747,"{'type': 'Point', 'coordinates': [-72.99523, 43.730204]}",74.743171,36.75252151129633 | |
05764,43.539935,-73.189193,3452,"{'type': 'Point', 'coordinates': [-73.189193, 43.539935]}",114.59048,30.124666551706564 | |
05765,43.651666,-73.034649,1803,"{'type': 'Point', 'coordinates': [-73.034649, 43.651666]}",20.89554,86.28635584435722 | |
05766,43.984937,-72.996775,572,"{'type': 'Point', 'coordinates': [-72.996775, 43.984937]}",118.713094,4.818339584342735 | |
05767,43.879408000000005,-72.831685,1143,"{'type': 'Point', 'coordinates': [-72.831685, 43.879408000000005]}",148.564581,7.6936238254527165 | |
05769,43.932071,-73.119822,1216,"{'type': 'Point', 'coordinates': [-73.119822, 43.932071]}",83.763647,14.51703744465663 | |
05770,43.881953,-73.324504,1136,"{'type': 'Point', 'coordinates': [-73.324504, 43.881953]}",107.580714,10.55951348305794 | |
05772,43.750797,-72.760914,713,"{'type': 'Point', 'coordinates': [-72.760914, 43.750797]}",118.611188,6.0112373210527155 | |
05773,43.420109000000004,-72.987065,2136,"{'type': 'Point', 'coordinates': [-72.987065, 43.420109000000004]}",184.025478,11.607088448915754 | |
05774,43.442986,-73.191086,1129,"{'type': 'Point', 'coordinates': [-73.191086, 43.442986]}",59.979053,18.823238172833438 | |
05775,43.365956,-73.228386,623,"{'type': 'Point', 'coordinates': [-73.228386, 43.365956]}",33.142481,18.797627129966525 | |
05776,43.252854,-73.197348,714,"{'type': 'Point', 'coordinates': [-73.197348, 43.252854]}",115.526019,6.180425900419887 | |
05777,43.556449,-73.048787,3420,"{'type': 'Point', 'coordinates': [-73.048787, 43.556449]}",125.105865,27.336847876796185 | |
05778,43.876421,-73.212536,733,"{'type': 'Point', 'coordinates': [-73.212536, 43.876421]}",64.944317,11.286591866075057 | |
05819,44.404737,-71.983075,9444,"{'type': 'Point', 'coordinates': [-71.983075, 44.404737]}",241.505225,39.104744007091355 | |
05820,44.76337,-72.316438,662,"{'type': 'Point', 'coordinates': [-72.316438, 44.76337]}",62.67202,10.5629274435386 | |
05821,44.311345,-72.11485400000001,1269,"{'type': 'Point', 'coordinates': [-72.11485400000001, 44.311345]}",92.325887,13.744790775744185 | |
05822,44.751643,-72.140274,1873,"{'type': 'Point', 'coordinates': [-72.140274, 44.751643]}",107.31105,17.453934147508576 | |
05824,44.439085,-71.826104,1139,"{'type': 'Point', 'coordinates': [-71.826104, 44.439085]}",139.656813,8.155706660726963 | |
05825,44.862501,-72.244465,191,"{'type': 'Point', 'coordinates': [-72.244465, 44.862501]}",6.656344,28.694430456118255 | |
05826,44.647727,-72.402091,983,"{'type': 'Point', 'coordinates': [-72.402091, 44.647727]}",81.364388,12.081452637485578 | |
05827,44.676898,-72.362504,309,"{'type': 'Point', 'coordinates': [-72.362504, 44.676898]}",39.716696,7.780103360057947 | |
05828,44.437504,-72.124822,1928,"{'type': 'Point', 'coordinates': [-72.124822, 44.437504]}",139.445769,13.826163488689282 | |
05829,44.967209999999994,-72.068265,2003,"{'type': 'Point', 'coordinates': [-72.068265, 44.967209999999994]}",70.164614,28.547153412687482 | |
05830,44.9721,-71.98696899999999,1502,"{'type': 'Point', 'coordinates': [-71.98696899999999, 44.9721]}",82.978265,18.101125638141507 | |
05832,44.578371000000004,-71.917466,982,"{'type': 'Point', 'coordinates': [-71.917466, 44.578371000000004]}",76.285275,12.872733302724543 | |
05833,44.842157,-71.958546,273,"{'type': 'Point', 'coordinates': [-71.958546, 44.842157]}",37.584242,7.263682476288865 | |
05836,44.511565000000004,-72.266145,1068,"{'type': 'Point', 'coordinates': [-72.266145, 44.511565000000004]}",74.670345,14.302866820824251 | |
05837,44.663809,-71.805296,353,"{'type': 'Point', 'coordinates': [-71.805296, 44.663809]}",119.172899,2.962082847376231 | |
05839,44.673683000000004,-72.207014,775,"{'type': 'Point', 'coordinates': [-72.207014, 44.673683000000004]}",63.796182,12.148062402856647 | |
05841,44.60767,-72.288602,425,"{'type': 'Point', 'coordinates': [-72.288602, 44.60767]}",78.687392,5.401119406778661 | |
05842,44.558929,-72.23156800000001,522,"{'type': 'Point', 'coordinates': [-72.23156800000001, 44.558929]}",47.533371,10.981758478690686 | |
05843,44.518714,-72.348965,2556,"{'type': 'Point', 'coordinates': [-72.348965, 44.518714]}",94.463175,27.058163141351113 | |
05845,44.800771999999995,-72.290572,1096,"{'type': 'Point', 'coordinates': [-72.290572, 44.800771999999995]}",109.209406,10.035765600629675 | |
05846,44.800887,-71.862687,1252,"{'type': 'Point', 'coordinates': [-71.862687, 44.800887]}",147.908599,8.464687032834378 | |
05847,44.793437,-72.458451,879,"{'type': 'Point', 'coordinates': [-72.458451, 44.793437]}",145.236161,6.0522117491111596 | |
05850,44.541247,-72.014699,231,"{'type': 'Point', 'coordinates': [-72.014699, 44.541247]}",1.070849,215.71668834728334 | |
05851,44.557132,-72.08059,6528,"{'type': 'Point', 'coordinates': [-72.08059, 44.557132]}",208.392793,31.325459513371943 | |
05853,44.895936,-71.941265,711,"{'type': 'Point', 'coordinates': [-71.941265, 44.895936]}",85.14798,8.350168729780789 | |
05855,44.927131,-72.192236,7170,"{'type': 'Point', 'coordinates': [-72.192236, 44.927131]}",168.871476,42.45832493345412 | |
05857,44.928911,-72.3127,1540,"{'type': 'Point', 'coordinates': [-72.3127, 44.928911]}",111.700618,13.786852996641432 | |
05858,44.558787,-71.816917,368,"{'type': 'Point', 'coordinates': [-71.816917, 44.558787]}",203.36906,1.8095181243400547 | |
05859,44.966671000000005,-72.443035,1819,"{'type': 'Point', 'coordinates': [-72.443035, 44.966671000000005]}",144.888158,12.554511183722827 | |
05860,44.802659999999996,-72.103996,2557,"{'type': 'Point', 'coordinates': [-72.103996, 44.802659999999996]}",201.910428,12.664031399111293 | |
05862,44.318185,-72.216116,356,"{'type': 'Point', 'coordinates': [-72.216116, 44.318185]}",73.538146,4.8410249559459935 | |
05866,44.640739,-72.110885,732,"{'type': 'Point', 'coordinates': [-72.110885, 44.640739]}",85.123448,8.599275724827312 | |
05867,44.665071000000005,-72.035973,899,"{'type': 'Point', 'coordinates': [-72.035973, 44.665071000000005]}",93.805967,9.58361209580623 | |
05868,44.902125,-72.37792900000001,364,"{'type': 'Point', 'coordinates': [-72.37792900000001, 44.902125]}",36.460775,9.983331402034104 | |
05871,44.689305,-71.93695500000001,1638,"{'type': 'Point', 'coordinates': [-71.93695500000001, 44.689305]}",123.506164,13.262495951214225 | |
05872,44.868527,-72.04803299999999,789,"{'type': 'Point', 'coordinates': [-72.04803299999999, 44.868527]}",66.020733,11.950791276431298 | |
05873,44.423348,-72.19511800000001,675,"{'type': 'Point', 'coordinates': [-72.19511800000001, 44.423348]}",77.810297,8.674944397140651 | |
05874,44.883474,-72.48495799999999,505,"{'type': 'Point', 'coordinates': [-72.48495799999999, 44.883474]}",95.120019,5.309082202769535 | |
05875,44.709849,-72.24695600000001,454,"{'type': 'Point', 'coordinates': [-72.24695600000001, 44.709849]}",45.158085,10.053570695037223 | |
05901,44.94081,-71.654783,20,"{'type': 'Point', 'coordinates': [-71.654783, 44.94081]}",97.31056,0.2055275398682322 | |
05902,45.009586999999996,-71.487927,188,"{'type': 'Point', 'coordinates': [-71.487927, 45.009586999999996]}",2.896124,64.91434759008938 | |
05903,44.935091,-71.588009,868,"{'type': 'Point', 'coordinates': [-71.588009, 44.935091]}",173.568729,5.000900824710193 | |
05904,44.416216999999996,-71.70654,267,"{'type': 'Point', 'coordinates': [-71.70654, 44.416216999999996]}",1.720113,155.2223603914394 | |
05905,44.702095,-71.67948100000001,827,"{'type': 'Point', 'coordinates': [-71.67948100000001, 44.702095]}",496.398989,1.665998558268619 | |
05906,44.483096999999994,-71.720449,1178,"{'type': 'Point', 'coordinates': [-71.720449, 44.483096999999994]}",126.130159,9.33955851114086 | |
05907,44.911161,-71.818697,177,"{'type': 'Point', 'coordinates': [-71.818697, 44.911161]}",289.723844,0.6109265898046004 | |
06001,41.787159,-72.852046,18385,"{'type': 'Point', 'coordinates': [-72.852046, 41.787159]}",61.583912,298.53576044340934 | |
06002,41.84493,-72.740951,20486,"{'type': 'Point', 'coordinates': [-72.740951, 41.84493]}",67.930533,301.57278465634886 | |
06010,41.681578,-72.940749,60448,"{'type': 'Point', 'coordinates': [-72.940749, 41.681578]}",69.416633,870.7999421406681 | |
06013,41.749078999999995,-72.948657,9326,"{'type': 'Point', 'coordinates': [-72.948657, 41.749078999999995]}",78.78384,118.37452959896345 | |
06016,41.901899,-72.547432,6226,"{'type': 'Point', 'coordinates': [-72.547432, 41.901899]}",39.016416,159.57385732200518 | |
06018,42.024629,-73.309616,2865,"{'type': 'Point', 'coordinates': [-73.309616, 42.024629]}",31.065772,92.22368592674923 | |
06019,41.857508,-72.902765,10129,"{'type': 'Point', 'coordinates': [-72.902765, 41.857508]}",60.592562,167.1657323220629 | |
06020,41.834617,-72.928722,0,"{'type': 'Point', 'coordinates': [-72.928722, 41.834617]}",0.024912,0.0 | |
06021,42.017229,-73.104821,314,"{'type': 'Point', 'coordinates': [-73.104821, 42.017229]}",14.79254,21.226915729144554 | |
06022,41.865433,-72.92732600000001,163,"{'type': 'Point', 'coordinates': [-72.92732600000001, 41.865433]}",4.196746,38.83961526382583 | |
06023,41.612590000000004,-72.720095,1296,"{'type': 'Point', 'coordinates': [-72.720095, 41.612590000000004]}",2.379048,544.7557174130156 | |
06024,42.012137,-73.274264,647,"{'type': 'Point', 'coordinates': [-73.274264, 42.012137]}",20.576054,31.444318721169765 | |
06026,41.929719,-72.745378,5117,"{'type': 'Point', 'coordinates': [-72.745378, 41.929719]}",43.849538,116.6945020036471 | |
06027,42.00493,-72.9157,1492,"{'type': 'Point', 'coordinates': [-72.9157, 42.00493]}",42.498307,35.10728086179998 | |
06029,41.914149,-72.44556800000001,15547,"{'type': 'Point', 'coordinates': [-72.44556800000001, 41.914149]}",88.937676,174.80780586171377 | |
06031,41.955257,-73.316785,1287,"{'type': 'Point', 'coordinates': [-73.316785, 41.955257]}",100.441241,12.81346175322545 | |
06032,41.731051,-72.857096,17675,"{'type': 'Point', 'coordinates': [-72.857096, 41.731051]}",60.63189,291.51326142068143 | |
06033,41.707463,-72.53893199999999,28762,"{'type': 'Point', 'coordinates': [-72.53893199999999, 41.707463]}",90.378421,318.239682456944 | |
06035,41.960682,-72.803846,7513,"{'type': 'Point', 'coordinates': [-72.803846, 41.960682]}",40.156493,187.09303125648947 | |
06037,41.605477,-72.778459,18565,"{'type': 'Point', 'coordinates': [-72.778459, 41.605477]}",67.474917,275.1392787930365 | |
06039,41.952698,-73.458626,1942,"{'type': 'Point', 'coordinates': [-73.458626, 41.952698]}",56.791484,34.195267727112046 | |
06040,41.761415,-72.52560799999999,35306,"{'type': 'Point', 'coordinates': [-72.52560799999999, 41.761415]}",44.342451,796.2121895336819 | |
06042,41.802645,-72.521039,22942,"{'type': 'Point', 'coordinates': [-72.521039, 41.802645]}",27.355538,838.660164534143 | |
06043,41.764589,-72.437575,4986,"{'type': 'Point', 'coordinates': [-72.437575, 41.764589]}",38.092946,130.8903753466587 | |
06051,41.665141,-72.769832,30519,"{'type': 'Point', 'coordinates': [-72.769832, 41.665141]}",10.602258,2878.5377605411977 | |
06052,41.655568,-72.803107,7858,"{'type': 'Point', 'coordinates': [-72.803107, 41.655568]}",6.662728,1179.396787622127 | |
06053,41.688039,-72.79346899999999,34863,"{'type': 'Point', 'coordinates': [-72.79346899999999, 41.688039]}",20.857024,1671.523224022756 | |
06057,41.841053,-72.998664,6707,"{'type': 'Point', 'coordinates': [-72.998664, 41.841053]}",97.404342,68.85730001646128 | |
06058,41.969922,-73.178473,1787,"{'type': 'Point', 'coordinates': [-73.178473, 41.969922]}",134.750814,13.261515436930868 | |
06059,41.957029,-72.94248499999999,0,"{'type': 'Point', 'coordinates': [-72.94248499999999, 41.957029]}",10.495609,0.0 | |
06060,42.009151,-72.847465,2581,"{'type': 'Point', 'coordinates': [-72.847465, 42.009151]}",31.263373,82.55667102842678 | |
06061,41.8756,-72.96684,169,"{'type': 'Point', 'coordinates': [-72.96684, 41.8756]}",0.330786,510.9043308967126 | |
06062,41.673639,-72.859729,17715,"{'type': 'Point', 'coordinates': [-72.859729, 41.673639]}",22.81584,776.4342667199629 | |
06063,41.925197,-72.97128599999999,3285,"{'type': 'Point', 'coordinates': [-72.97128599999999, 41.925197]}",80.421861,40.84710250612081 | |
06065,41.974649,-73.00768199999999,882,"{'type': 'Point', 'coordinates': [-73.00768199999999, 41.974649]}",24.984459,35.301945101152675 | |
06066,41.837561,-72.45904,29219,"{'type': 'Point', 'coordinates': [-72.45904, 41.837561]}",46.851405,623.6525884335806 | |
06067,41.656624,-72.66177900000001,19709,"{'type': 'Point', 'coordinates': [-72.66177900000001, 41.656624]}",35.865298,549.5284048664533 | |
06068,42.007238,-73.422228,1612,"{'type': 'Point', 'coordinates': [-73.422228, 42.007238]}",85.344689,18.888111479321225 | |
06069,41.860763,-73.449215,2535,"{'type': 'Point', 'coordinates': [-73.449215, 41.860763]}",131.661144,19.25397215141925 | |
06070,41.875857,-72.809376,15104,"{'type': 'Point', 'coordinates': [-72.809376, 41.875857]}",57.245561,263.84578535268435 | |
06071,41.992633000000005,-72.453725,11645,"{'type': 'Point', 'coordinates': [-72.453725, 41.992633000000005]}",75.274435,154.70059655711796 | |
06073,41.664442,-72.55504,5651,"{'type': 'Point', 'coordinates': [-72.55504, 41.664442]}",44.722594,126.35671356630164 | |
06074,41.83809,-72.577836,25705,"{'type': 'Point', 'coordinates': [-72.577836, 41.83809]}",74.235677,346.26208096681063 | |
06076,41.984442,-72.263453,12659,"{'type': 'Point', 'coordinates': [-72.263453, 41.984442]}",226.149816,55.97616758618101 | |
06078,41.991611,-72.651744,12413,"{'type': 'Point', 'coordinates': [-72.651744, 41.991611]}",67.813683,183.04565466529817 | |
06081,41.905187,-72.772551,1381,"{'type': 'Point', 'coordinates': [-72.772551, 41.905187]}",1.951373,707.7068300114842 | |
06082,41.983993,-72.555553,44654,"{'type': 'Point', 'coordinates': [-72.555553, 41.983993]}",88.735848,503.2239056305632 | |
06084,41.883019,-72.358869,15067,"{'type': 'Point', 'coordinates': [-72.358869, 41.883019]}",104.896032,143.6374638079732 | |
06085,41.748955,-72.889415,7276,"{'type': 'Point', 'coordinates': [-72.889415, 41.748955]}",12.707126,572.5921030451732 | |
06088,41.917911,-72.583371,4936,"{'type': 'Point', 'coordinates': [-72.583371, 41.917911]}",30.439198,162.1593315303511 | |
06089,41.833449,-72.82459200000001,2813,"{'type': 'Point', 'coordinates': [-72.82459200000001, 41.833449]}",7.028229,400.2430768832376 | |
06090,41.946484000000005,-72.863185,1232,"{'type': 'Point', 'coordinates': [-72.863185, 41.946484000000005]}",35.084673,35.115048670968086 | |
06091,42.026452,-72.980213,140,"{'type': 'Point', 'coordinates': [-72.980213, 42.026452]}",30.795111,4.546176177121103 | |
06092,41.873452,-72.860524,4203,"{'type': 'Point', 'coordinates': [-72.860524, 41.873452]}",22.395782,187.66926736472072 | |
06093,42.01324,-72.71736899999999,3322,"{'type': 'Point', 'coordinates': [-72.71736899999999, 42.01324]}",43.459807,76.43844345650224 | |
06095,41.871037,-72.67508199999999,29079,"{'type': 'Point', 'coordinates': [-72.67508199999999, 41.871037]}",80.415114,361.61112698292015 | |
06096,41.92763,-72.65970300000001,12498,"{'type': 'Point', 'coordinates': [-72.65970300000001, 41.92763]}",25.746137,485.43204753396594 | |
06098,41.956189,-73.086364,12426,"{'type': 'Point', 'coordinates': [-73.086364, 41.956189]}",153.162372,81.12958710250321 | |
06103,41.767208000000004,-72.674257,1410,"{'type': 'Point', 'coordinates': [-72.674257, 41.767208000000004]}",1.278452,1102.8963152312328 | |
06105,41.774706,-72.705037,19392,"{'type': 'Point', 'coordinates': [-72.705037, 41.774706]}",6.08618,3186.235043984897 | |
06106,41.748587,-72.69600600000001,39902,"{'type': 'Point', 'coordinates': [-72.69600600000001, 41.748587]}",11.202097,3562.0116483547677 | |
06107,41.752303999999995,-72.758098,18786,"{'type': 'Point', 'coordinates': [-72.758098, 41.752303999999995]}",17.43788,1077.3098564733787 | |
06108,41.780375,-72.62394499999999,24307,"{'type': 'Point', 'coordinates': [-72.62394499999999, 41.780375]}",22.166825,1096.5485584877401 | |
06109,41.702484000000005,-72.669301,26668,"{'type': 'Point', 'coordinates': [-72.669301, 41.702484000000005]}",33.933922,785.8802763794882 | |
06110,41.732683,-72.733603,12650,"{'type': 'Point', 'coordinates': [-72.733603, 41.732683]}",8.639562,1464.194596902019 | |
06111,41.686993,-72.730839,30562,"{'type': 'Point', 'coordinates': [-72.730839, 41.686993]}",34.034099,897.9817564731184 | |
06112,41.793336,-72.695823,22879,"{'type': 'Point', 'coordinates': [-72.695823, 41.793336]}",7.071922,3235.1883971570956 | |
06114,41.740854,-72.670695,27449,"{'type': 'Point', 'coordinates': [-72.670695, 41.740854]}",10.833481,2533.719309610641 | |
06117,41.78516,-72.763564,17267,"{'type': 'Point', 'coordinates': [-72.763564, 41.78516]}",26.399501,654.0653931299686 | |
06118,41.748702,-72.609686,26956,"{'type': 'Point', 'coordinates': [-72.609686, 41.748702]}",26.408997,1020.712751794398 | |
06119,41.763421,-72.72720799999999,15474,"{'type': 'Point', 'coordinates': [-72.72720799999999, 41.763421]}",5.285092,2927.8582094692015 | |
06120,41.787198,-72.664837,12887,"{'type': 'Point', 'coordinates': [-72.664837, 41.787198]}",10.259043,1256.1600531355605 | |
06160,41.766607,-72.691149,0,"{'type': 'Point', 'coordinates': [-72.691149, 41.766607]}",0.138776,0.0 | |
06226,41.708238,-72.208549,20114,"{'type': 'Point', 'coordinates': [-72.208549, 41.708238]}",19.023488,1057.3245032666985 | |
06231,41.632936,-72.367347,4083,"{'type': 'Point', 'coordinates': [-72.367347, 41.632936]}",41.565056,98.23155296602992 | |
06232,41.732982,-72.374658,3297,"{'type': 'Point', 'coordinates': [-72.374658, 41.732982]}",40.636246,81.13446306039195 | |
06234,41.793886,-71.953265,8244,"{'type': 'Point', 'coordinates': [-71.953265, 41.793886]}",79.673506,103.47228851708873 | |
06235,41.790890000000005,-72.12954,2257,"{'type': 'Point', 'coordinates': [-72.12954, 41.790890000000005]}",50.292286,44.87765777837182 | |
06237,41.693707,-72.30567099999999,5492,"{'type': 'Point', 'coordinates': [-72.30567099999999, 41.693707]}",57.446832,95.60144239111392 | |
06238,41.780138,-72.34394300000001,12428,"{'type': 'Point', 'coordinates': [-72.34394300000001, 41.780138]}",98.548683,126.1102596368538 | |
06239,41.79404,-71.854535,11183,"{'type': 'Point', 'coordinates': [-71.854535, 41.79404]}",60.20585,185.7460695264663 | |
06241,41.853901,-71.847371,6650,"{'type': 'Point', 'coordinates': [-71.847371, 41.853901]}",73.608058,90.34336974356802 | |
06242,41.895590000000006,-72.093304,1408,"{'type': 'Point', 'coordinates': [-72.093304, 41.895590000000006]}",68.449206,20.569997554098727 | |
06243,41.84487,-71.805029,60,"{'type': 'Point', 'coordinates': [-71.805029, 41.84487]}",1.161722,51.64746815503193 | |
06247,41.767801,-72.075026,2841,"{'type': 'Point', 'coordinates': [-72.075026, 41.767801]}",89.2038,31.848419013539782 | |
06248,41.688584999999996,-72.408671,5603,"{'type': 'Point', 'coordinates': [-72.408671, 41.688584999999996]}",54.91056,102.0386606874889 | |
06249,41.632954999999995,-72.24009000000001,7308,"{'type': 'Point', 'coordinates': [-72.24009000000001, 41.632954999999995]}",143.099823,51.069245557347756 | |
06250,41.772954999999996,-72.19844599999999,4821,"{'type': 'Point', 'coordinates': [-72.19844599999999, 41.772954999999996]}",46.101845,104.57282132634822 | |
06254,41.621212,-72.142609,1922,"{'type': 'Point', 'coordinates': [-72.142609, 41.621212]}",50.681858,37.922840161069075 | |
06255,41.991087,-71.90195200000001,4744,"{'type': 'Point', 'coordinates': [-71.90195200000001, 41.991087]}",60.778016,78.05453866740237 | |
06256,41.732152,-72.157361,2154,"{'type': 'Point', 'coordinates': [-72.157361, 41.732152]}",20.04425,107.46223979445476 | |
06259,41.871502,-71.987646,4498,"{'type': 'Point', 'coordinates': [-71.987646, 41.871502]}",108.336507,41.518783691263 | |
06260,41.908027000000004,-71.870452,9510,"{'type': 'Point', 'coordinates': [-71.870452, 41.908027000000004]}",52.042521,182.73519071068827 | |
06262,42.019311,-71.94838399999999,586,"{'type': 'Point', 'coordinates': [-71.94838399999999, 42.019311]}",2.544235,230.3246358925178 | |
06263,41.835236,-71.89984799999999,345,"{'type': 'Point', 'coordinates': [-71.89984799999999, 41.835236]}",0.597731,577.1827126249099 | |
06264,41.69421,-72.10036600000001,166,"{'type': 'Point', 'coordinates': [-72.10036600000001, 41.69421]}",3.749379,44.27399844080847 | |
06266,41.673660999999996,-72.172813,495,"{'type': 'Point', 'coordinates': [-72.172813, 41.673660999999996]}",2.523804,196.13250474284055 | |
06268,41.800444,-72.24803,11481,"{'type': 'Point', 'coordinates': [-72.24803, 41.800444]}",68.421557,167.7979938398654 | |
06269,41.804414,-72.293165,9844,"{'type': 'Point', 'coordinates': [-72.293165, 41.804414]}",3.341861,2945.6641075137472 | |
06277,41.958388,-71.84392,4140,"{'type': 'Point', 'coordinates': [-71.84392, 41.958388]}",62.140386,66.62333896670677 | |
06278,41.897123,-72.17142700000001,4454,"{'type': 'Point', 'coordinates': [-72.17142700000001, 41.897123]}",104.395768,42.664564716837944 | |
06279,41.897267,-72.251848,6041,"{'type': 'Point', 'coordinates': [-72.251848, 41.897267]}",86.812782,69.58652701626357 | |
06280,41.690985999999995,-72.130094,3162,"{'type': 'Point', 'coordinates': [-72.130094, 41.690985999999995]}",39.058574,80.95533646466458 | |
06281,41.973476,-72.014137,6930,"{'type': 'Point', 'coordinates': [-72.014137, 41.973476]}",145.875468,47.50627432434355 | |
06282,41.94887,-72.08482,1096,"{'type': 'Point', 'coordinates': [-72.08482, 41.94887]}",15.750327,69.58585685236883 | |
06320,41.348836999999996,-72.102029,27617,"{'type': 'Point', 'coordinates': [-72.102029, 41.348836999999996]}",19.481616,1417.59287319902 | |
06330,41.63557,-72.077527,3282,"{'type': 'Point', 'coordinates': [-72.077527, 41.63557]}",48.93133,67.0735906831063 | |
06331,41.69396,-72.009118,5137,"{'type': 'Point', 'coordinates': [-72.009118, 41.69396]}",104.152606,49.32185758270897 | |
06332,41.731215999999996,-71.902335,258,"{'type': 'Point', 'coordinates': [-71.902335, 41.731215999999996]}",1.202192,214.60798275150725 | |
06333,41.386032,-72.22909200000001,6607,"{'type': 'Point', 'coordinates': [-72.22909200000001, 41.386032]}",62.366127,105.93891777182188 | |
06334,41.544925,-72.173849,2592,"{'type': 'Point', 'coordinates': [-72.173849, 41.544925]}",50.917833,50.905544232410676 | |
06335,41.434707,-72.058533,6729,"{'type': 'Point', 'coordinates': [-72.058533, 41.434707]}",31.022947,216.90395822163512 | |
06336,41.580577000000005,-72.195867,84,"{'type': 'Point', 'coordinates': [-72.195867, 41.580577000000005]}",1.591849,52.76882417867524 | |
06339,41.441939,-71.990545,8302,"{'type': 'Point', 'coordinates': [-71.990545, 41.441939]}",71.109305,116.74984026352105 | |
06340,41.354409000000004,-72.040266,31242,"{'type': 'Point', 'coordinates': [-72.040266, 41.354409000000004]}",73.033734,427.77492384546576 | |
06350,41.648508,-72.068444,67,"{'type': 'Point', 'coordinates': [-72.068444, 41.648508]}",0.604362,110.8607093099831 | |
06351,41.589788,-71.948385,16301,"{'type': 'Point', 'coordinates': [-71.948385, 41.589788]}",141.85437,114.91362585445906 | |
06353,41.464427,-72.149606,162,"{'type': 'Point', 'coordinates': [-72.149606, 41.464427]}",0.972668,166.5522048633244 | |
06354,41.708767,-71.855386,6141,"{'type': 'Point', 'coordinates': [-71.855386, 41.708767]}",53.909133,113.91390768610582 | |
06355,41.366899,-71.976371,12985,"{'type': 'Point', 'coordinates': [-71.976371, 41.366899]}",42.734044,303.8561012386284 | |
06357,41.327149,-72.21534399999999,12552,"{'type': 'Point', 'coordinates': [-72.21534399999999, 41.327149]}",33.874878,370.540079878664 | |
06359,41.470969000000004,-71.872525,5313,"{'type': 'Point', 'coordinates': [-71.872525, 41.470969000000004]}",142.441061,37.29963791831065 | |
06360,41.54786,-72.089488,37541,"{'type': 'Point', 'coordinates': [-72.089488, 41.54786]}",73.168835,513.0736330570248 | |
06365,41.518652,-72.006597,4720,"{'type': 'Point', 'coordinates': [-72.006597, 41.518652]}",82.208809,57.414771694356986 | |
06370,41.466982,-72.189275,7429,"{'type': 'Point', 'coordinates': [-72.189275, 41.466982]}",63.628097,116.75659575360238 | |
06371,41.362386,-72.32375400000001,9952,"{'type': 'Point', 'coordinates': [-72.32375400000001, 41.362386]}",157.550972,63.16685878650117 | |
06373,41.677728,-71.79606700000001,345,"{'type': 'Point', 'coordinates': [-71.79606700000001, 41.677728]}",8.813142,39.1460843363241 | |
06374,41.681913,-71.91093599999999,8373,"{'type': 'Point', 'coordinates': [-71.91093599999999, 41.681913]}",67.989282,123.15176383242287 | |
06375,41.406338,-72.123236,3660,"{'type': 'Point', 'coordinates': [-72.123236, 41.406338]}",22.819661,160.38800926972579 | |
06376,41.294059999999995,-72.25395,57,"{'type': 'Point', 'coordinates': [-72.25395, 41.294059999999995]}",0.259435,219.70821207624257 | |
06377,41.730545,-71.819313,2962,"{'type': 'Point', 'coordinates': [-71.819313, 41.730545]}",43.237511,68.50533093822168 | |
06378,41.383210999999996,-71.908408,5399,"{'type': 'Point', 'coordinates': [-71.908408, 41.383210999999996]}",60.352559,89.45768148787195 | |
06379,41.363471999999994,-71.853197,9038,"{'type': 'Point', 'coordinates': [-71.853197, 41.363471999999994]}",35.408475,255.2496259723131 | |
06380,41.563417,-72.051631,2862,"{'type': 'Point', 'coordinates': [-72.051631, 41.563417]}",2.589783,1105.1118954754124 | |
06382,41.468946,-72.122739,11947,"{'type': 'Point', 'coordinates': [-72.122739, 41.468946]}",49.629613,240.72321498859966 | |
06384,41.579192,-71.831228,2672,"{'type': 'Point', 'coordinates': [-71.831228, 41.579192]}",100.565699,26.569695498263282 | |
06385,41.36173,-72.156576,15893,"{'type': 'Point', 'coordinates': [-72.156576, 41.36173]}",70.136414,226.60126307569703 | |
06387,41.741171,-71.913021,213,"{'type': 'Point', 'coordinates': [-71.913021, 41.741171]}",0.277797,766.746941111675 | |
06389,41.564183,-72.129164,41,"{'type': 'Point', 'coordinates': [-72.129164, 41.564183]}",0.327155,125.32285919518272 | |
06390,41.273581,-71.969016,236,"{'type': 'Point', 'coordinates': [-71.969016, 41.273581]}",10.885046,21.68112105359959 | |
06401,41.344249,-73.069825,19237,"{'type': 'Point', 'coordinates': [-73.069825, 41.344249]}",15.991909,1202.920802013068 | |
06403,41.443684999999995,-73.051925,6033,"{'type': 'Point', 'coordinates': [-73.051925, 41.443684999999995]}",25.349897,237.98913265801437 | |
06405,41.285002,-72.793549,27860,"{'type': 'Point', 'coordinates': [-72.793549, 41.285002]}",67.690442,411.5795255111497 | |
06409,41.351081,-72.420167,693,"{'type': 'Point', 'coordinates': [-72.420167, 41.351081]}",3.706445,186.97161296066716 | |
06410,41.511827000000004,-72.90361700000001,29161,"{'type': 'Point', 'coordinates': [-72.90361700000001, 41.511827000000004]}",85.104486,342.64938748352233 | |
06412,41.411728000000004,-72.487146,3994,"{'type': 'Point', 'coordinates': [-72.487146, 41.411728000000004]}",43.584031,91.63906844688138 | |
06413,41.295609999999996,-72.529125,13235,"{'type': 'Point', 'coordinates': [-72.529125, 41.295609999999996]}",45.974779,287.87522828549106 | |
06414,41.572231,-72.552319,214,"{'type': 'Point', 'coordinates': [-72.552319, 41.572231]}",0.751065,284.9287345303003 | |
06415,41.550290999999994,-72.348616,16857,"{'type': 'Point', 'coordinates': [-72.348616, 41.550290999999994]}",143.615424,117.37597209614478 | |
06416,41.616657000000004,-72.661586,14005,"{'type': 'Point', 'coordinates': [-72.661586, 41.616657000000004]}",31.361944,446.56032802048236 | |
06417,41.367819,-72.47744200000001,4629,"{'type': 'Point', 'coordinates': [-72.47744200000001, 41.367819]}",36.686012,126.1788825670122 | |
06418,41.326124,-73.082574,12914,"{'type': 'Point', 'coordinates': [-73.082574, 41.326124]}",14.032389,920.2994586310285 | |
06419,41.374419,-72.578328,6525,"{'type': 'Point', 'coordinates': [-72.578328, 41.374419]}",92.677254,70.40562509545222 | |
06420,41.489351,-72.25838,4182,"{'type': 'Point', 'coordinates': [-72.25838, 41.489351]}",77.865105,53.70826893510257 | |
06422,41.468922,-72.684525,7388,"{'type': 'Point', 'coordinates': [-72.684525, 41.468922]}",61.672236,119.79458633541356 | |
06423,41.457474,-72.38915300000001,5097,"{'type': 'Point', 'coordinates': [-72.38915300000001, 41.457474]}",103.972961,49.02236072703556 | |
06424,41.560603,-72.502329,12808,"{'type': 'Point', 'coordinates': [-72.502329, 41.560603]}",109.23301,117.25393267108542 | |
06426,41.351136,-72.397164,3245,"{'type': 'Point', 'coordinates': [-72.397164, 41.351136]}",18.324153,177.08867634973362 | |
06437,41.331777,-72.696816,22375,"{'type': 'Point', 'coordinates': [-72.696816, 41.331777]}",128.048374,174.73864994177904 | |
06438,41.455264,-72.504397,2550,"{'type': 'Point', 'coordinates': [-72.504397, 41.455264]}",34.197202,74.5675040899545 | |
06441,41.467705,-72.582163,5438,"{'type': 'Point', 'coordinates': [-72.582163, 41.467705]}",67.975663,79.99921972074036 | |
06442,41.3419,-72.433727,2745,"{'type': 'Point', 'coordinates': [-72.433727, 41.3419]}",8.675762,316.3987209423218 | |
06443,41.344481,-72.624521,18269,"{'type': 'Point', 'coordinates': [-72.624521, 41.344481]}",97.906599,186.5962068603772 | |
06444,41.562671,-72.93327099999999,370,"{'type': 'Point', 'coordinates': [-72.93327099999999, 41.562671]}",1.70549,216.94644940750166 | |
06447,41.636439,-72.454002,6404,"{'type': 'Point', 'coordinates': [-72.454002, 41.636439]}",60.923678,105.11512453335466 | |
06450,41.535812,-72.775686,36493,"{'type': 'Point', 'coordinates': [-72.775686, 41.535812]}",36.725973,993.656451253177 | |
06451,41.541906,-72.823409,24419,"{'type': 'Point', 'coordinates': [-72.823409, 41.541906]}",25.883529,943.4184959863858 | |
06455,41.514163,-72.717844,3148,"{'type': 'Point', 'coordinates': [-72.717844, 41.514163]}",29.642509,106.19883762201101 | |
06456,41.516690000000004,-72.553751,295,"{'type': 'Point', 'coordinates': [-72.553751, 41.516690000000004]}",3.276783,90.02732252944428 | |
06457,41.548611,-72.656784,47648,"{'type': 'Point', 'coordinates': [-72.656784, 41.548611]}",109.724077,434.2529124214005 | |
06460,41.218920000000004,-73.052454,38207,"{'type': 'Point', 'coordinates': [-73.052454, 41.218920000000004]}",38.90474,982.0654244187212 | |
06461,41.239863,-73.075393,14552,"{'type': 'Point', 'coordinates': [-73.075393, 41.239863]}",26.351427,552.2281582701385 | |
06467,41.567845,-72.899757,157,"{'type': 'Point', 'coordinates': [-72.899757, 41.567845]}",0.173168,906.6340201422896 | |
06468,41.339236,-73.222828,19479,"{'type': 'Point', 'coordinates': [-73.222828, 41.339236]}",68.031026,286.32524225049906 | |
06469,41.510944,-72.443166,3209,"{'type': 'Point', 'coordinates': [-72.443166, 41.510944]}",27.022643,118.752262685778 | |
06470,41.395083,-73.317663,16003,"{'type': 'Point', 'coordinates': [-73.317663, 41.395083]}",97.936701,163.40146070470558 | |
06471,41.332106,-72.780996,7720,"{'type': 'Point', 'coordinates': [-72.780996, 41.332106]}",23.734163,325.2695281480961 | |
06472,41.382766,-72.775194,6853,"{'type': 'Point', 'coordinates': [-72.775194, 41.382766]}",46.865389,146.22731500212237 | |
06473,41.381459,-72.856369,24388,"{'type': 'Point', 'coordinates': [-72.856369, 41.381459]}",56.781033,429.5096216372111 | |
06475,41.299896999999994,-72.382734,10242,"{'type': 'Point', 'coordinates': [-72.382734, 41.299896999999994]}",47.87818,213.91790581847513 | |
06477,41.284951,-73.024637,13956,"{'type': 'Point', 'coordinates': [-73.024637, 41.284951]}",45.115091,309.34216668209757 | |
06478,41.444001,-73.147999,12683,"{'type': 'Point', 'coordinates': [-73.147999, 41.444001]}",86.334178,146.90589861178734 | |
06479,41.57477,-72.9119,10431,"{'type': 'Point', 'coordinates': [-72.9119, 41.57477]}",19.155062,544.5557941811934 | |
06480,41.598834000000004,-72.58907099999999,9508,"{'type': 'Point', 'coordinates': [-72.58907099999999, 41.598834000000004]}",64.372631,147.702522831481 | |
06481,41.536736,-72.697937,1277,"{'type': 'Point', 'coordinates': [-72.697937, 41.536736]}",4.698842,271.76908693673886 | |
06482,41.409,-73.24263,11557,"{'type': 'Point', 'coordinates': [-73.24263, 41.409]}",54.645032,211.4922359273209 | |
06483,41.385121999999996,-73.083525,16540,"{'type': 'Point', 'coordinates': [-73.083525, 41.385121999999996]}",38.790772,426.3900702981627 | |
06484,41.304577,-73.13921500000001,39559,"{'type': 'Point', 'coordinates': [-73.13921500000001, 41.304577]}",82.627834,478.7611883908273 | |
06488,41.47598,-73.229692,19904,"{'type': 'Point', 'coordinates': [-73.229692, 41.47598]}",103.77891,191.79234008142888 | |
06489,41.614169,-72.869926,32067,"{'type': 'Point', 'coordinates': [-72.869926, 41.614169]}",73.801087,434.50579528726996 | |
06492,41.458657,-72.804516,45241,"{'type': 'Point', 'coordinates': [-72.804516, 41.458657]}",104.617775,432.44085433856725 | |
06498,41.303695000000005,-72.47801700000001,6963,"{'type': 'Point', 'coordinates': [-72.47801700000001, 41.303695000000005]}",45.695771,152.37733925093417 | |
06510,41.306502,-72.926013,2737,"{'type': 'Point', 'coordinates': [-72.926013, 41.306502]}",0.625776,4373.76952775434 | |
06511,41.317029999999995,-72.927316,53600,"{'type': 'Point', 'coordinates': [-72.927316, 41.317029999999995]}",15.671562,3420.2078899346475 | |
06512,41.278273999999996,-72.875249,29861,"{'type': 'Point', 'coordinates': [-72.875249, 41.278273999999996]}",32.397849,921.6969929083872 | |
06513,41.316682,-72.870796,38978,"{'type': 'Point', 'coordinates': [-72.870796, 41.316682]}",19.789908,1969.5897525142614 | |
06514,41.376089,-72.943351,26265,"{'type': 'Point', 'coordinates': [-72.943351, 41.376089]}",29.456299,891.6598789277634 | |
06515,41.328039000000004,-72.97084,17141,"{'type': 'Point', 'coordinates': [-72.97084, 41.328039000000004]}",11.885533,1442.173438919399 | |
06516,41.272573,-72.964967,55564,"{'type': 'Point', 'coordinates': [-72.964967, 41.272573]}",31.075621,1788.025410658728 | |
06517,41.34944,-72.907149,14853,"{'type': 'Point', 'coordinates': [-72.907149, 41.34944]}",14.313447,1037.6955320406048 | |
06518,41.430832,-72.912021,19848,"{'type': 'Point', 'coordinates': [-72.912021, 41.430832]}",42.577196,466.16503350760814 | |
06519,41.293934,-72.932028,16428,"{'type': 'Point', 'coordinates': [-72.932028, 41.293934]}",5.77688,2843.749567240448 | |
06524,41.422964,-72.994187,5563,"{'type': 'Point', 'coordinates': [-72.994187, 41.422964]}",55.66521,99.93674684780673 | |
06525,41.363538,-73.00389200000001,8990,"{'type': 'Point', 'coordinates': [-73.00389200000001, 41.363538]}",49.69427,180.90616886011202 | |
06604,41.18292,-73.208027,30313,"{'type': 'Point', 'coordinates': [-73.208027, 41.18292]}",12.975639,2336.146990525862 | |
06605,41.161599,-73.21762199999999,23397,"{'type': 'Point', 'coordinates': [-73.21762199999999, 41.161599]}",7.091585,3299.2624356896235 | |
06606,41.212109999999996,-73.206673,46236,"{'type': 'Point', 'coordinates': [-73.206673, 41.212109999999996]}",14.059045,3288.701330709163 | |
06607,41.170744,-73.168038,7843,"{'type': 'Point', 'coordinates': [-73.168038, 41.170744]}",5.03029,1559.1546411837091 | |
06608,41.186475,-73.181251,13671,"{'type': 'Point', 'coordinates': [-73.181251, 41.186475]}",3.015784,4533.149588962605 | |
06610,41.209283,-73.164603,22735,"{'type': 'Point', 'coordinates': [-73.164603, 41.209283]}",8.052714,2823.2717565779685 | |
06611,41.267860999999996,-73.213691,36091,"{'type': 'Point', 'coordinates': [-73.213691, 41.267860999999996]}",62.593825,576.5904224578063 | |
06612,41.264945000000004,-73.30047900000001,7453,"{'type': 'Point', 'coordinates': [-73.30047900000001, 41.264945000000004]}",72.727944,102.47780412986789 | |
06614,41.232465999999995,-73.129873,32929,"{'type': 'Point', 'coordinates': [-73.129873, 41.232465999999995]}",29.927931,1100.2765276356724 | |
06615,41.171614,-73.13216,18453,"{'type': 'Point', 'coordinates': [-73.13216, 41.171614]}",21.629114,853.1556123843075 | |
06702,41.556461,-73.045886,3654,"{'type': 'Point', 'coordinates': [-73.045886, 41.556461]}",1.710479,2136.243707172084 | |
06704,41.588739000000004,-73.035267,25139,"{'type': 'Point', 'coordinates': [-73.035267, 41.588739000000004]}",21.015394,1196.218353079652 | |
06705,41.548788,-72.99404100000001,27122,"{'type': 'Point', 'coordinates': [-72.99404100000001, 41.548788]}",14.43185,1879.3155416665222 | |
06706,41.532212,-73.02509599999999,14324,"{'type': 'Point', 'coordinates': [-73.02509599999999, 41.532212]}",10.199583,1404.371139486781 | |
06708,41.550872,-73.068653,29418,"{'type': 'Point', 'coordinates': [-73.068653, 41.550872]}",24.889487,1181.9448106744828 | |
06710,41.569145,-73.045817,10715,"{'type': 'Point', 'coordinates': [-73.045817, 41.569145]}",2.554885,4193.9265368108545 | |
06712,41.499247,-72.975634,9376,"{'type': 'Point', 'coordinates': [-72.975634, 41.499247]}",37.49561,250.05593988202887 | |
06716,41.594792,-72.968514,16680,"{'type': 'Point', 'coordinates': [-72.968514, 41.594792]}",54.654207,305.19151069194 | |
06750,41.723731,-73.26814399999999,1446,"{'type': 'Point', 'coordinates': [-73.26814399999999, 41.723731]}",19.815878,72.97178555499787 | |
06751,41.635759,-73.211422,3577,"{'type': 'Point', 'coordinates': [-73.211422, 41.635759]}",49.891052,71.69622320250933 | |
06752,41.520294,-73.36109300000001,1735,"{'type': 'Point', 'coordinates': [-73.36109300000001, 41.520294]}",45.5988,38.0492469100064 | |
06754,41.775422999999996,-73.362996,1699,"{'type': 'Point', 'coordinates': [-73.362996, 41.775422999999996]}",85.206349,19.939828662298392 | |
06755,41.650558000000004,-73.479353,1133,"{'type': 'Point', 'coordinates': [-73.479353, 41.650558000000004]}",12.145152,93.28825197082755 | |
06756,41.849537,-73.234002,2853,"{'type': 'Point', 'coordinates': [-73.234002, 41.849537]}",96.951152,29.4271903030095 | |
06757,41.743606,-73.459799,2258,"{'type': 'Point', 'coordinates': [-73.459799, 41.743606]}",90.70699,24.893340634497957 | |
06758,41.673737,-73.24575300000001,354,"{'type': 'Point', 'coordinates': [-73.24575300000001, 41.673737]}",6.89821,51.317660668492266 | |
06759,41.753640000000004,-73.212028,5720,"{'type': 'Point', 'coordinates': [-73.212028, 41.753640000000004]}",132.329296,43.225500119036376 | |
06762,41.530545000000004,-73.121576,7561,"{'type': 'Point', 'coordinates': [-73.121576, 41.530545000000004]}",46.878577,161.28902547532533 | |
06763,41.694323,-73.209998,2033,"{'type': 'Point', 'coordinates': [-73.209998, 41.694323]}",41.483177,49.00781827775631 | |
06770,41.488428000000006,-73.053383,31975,"{'type': 'Point', 'coordinates': [-73.053383, 41.488428000000006]}",43.537521,734.4239925833168 | |
06776,41.601265999999995,-73.42280699999999,26889,"{'type': 'Point', 'coordinates': [-73.42280699999999, 41.601265999999995]}",148.386556,181.20913865000006 | |
06777,41.691307,-73.33440300000001,1733,"{'type': 'Point', 'coordinates': [-73.33440300000001, 41.691307]}",43.900224,39.47588057865035 | |
06778,41.713491,-73.11191099999999,1378,"{'type': 'Point', 'coordinates': [-73.11191099999999, 41.713491]}",18.465498,74.62566132795335 | |
06779,41.596057,-73.08144200000001,8324,"{'type': 'Point', 'coordinates': [-73.08144200000001, 41.596057]}",8.391138,991.9989398339058 | |
06782,41.651533,-73.042739,2376,"{'type': 'Point', 'coordinates': [-73.042739, 41.651533]}",20.092899,118.25073126580689 | |
06783,41.555501,-73.296015,2228,"{'type': 'Point', 'coordinates': [-73.296015, 41.555501]}",67.091291,33.20848305035597 | |
06784,41.576035,-73.49171700000001,3689,"{'type': 'Point', 'coordinates': [-73.49171700000001, 41.576035]}",64.726375,56.993767996431124 | |
06785,41.674388,-73.493966,686,"{'type': 'Point', 'coordinates': [-73.493966, 41.674388]}",35.998155,19.05653220283095 | |
06786,41.672727,-73.01804200000001,9867,"{'type': 'Point', 'coordinates': [-73.01804200000001, 41.672727]}",37.757576,261.3250384505615 | |
06787,41.671079999999996,-73.085047,7975,"{'type': 'Point', 'coordinates': [-73.085047, 41.671079999999996]}",32.249257,247.29251901834513 | |
06790,41.834052,-73.131413,36482,"{'type': 'Point', 'coordinates': [-73.131413, 41.834052]}",109.177463,334.1532125544995 | |
06791,41.761345,-73.060443,5666,"{'type': 'Point', 'coordinates': [-73.060443, 41.761345]}",80.823474,70.10339595152765 | |
06793,41.633712,-73.288916,1140,"{'type': 'Point', 'coordinates': [-73.288916, 41.633712]}",36.760817,31.011280298802934 | |
06794,41.649454,-73.323557,1065,"{'type': 'Point', 'coordinates': [-73.323557, 41.649454]}",35.185809,30.267884418971295 | |
06795,41.623892,-73.126195,14144,"{'type': 'Point', 'coordinates': [-73.126195, 41.623892]}",69.06399,204.79558160482762 | |
06796,41.866034,-73.342084,1009,"{'type': 'Point', 'coordinates': [-73.342084, 41.866034]}",96.505955,10.455313353460934 | |
06798,41.561632,-73.206096,9984,"{'type': 'Point', 'coordinates': [-73.206096, 41.561632]}",94.909228,105.19525035015563 | |
06801,41.369778000000004,-73.389503,18581,"{'type': 'Point', 'coordinates': [-73.389503, 41.369778000000004]}",44.06583,421.6645868238497 | |
06804,41.469885,-73.39366700000001,16466,"{'type': 'Point', 'coordinates': [-73.39366700000001, 41.469885]}",52.750063,312.15128596149736 | |
06807,41.056732000000004,-73.59202900000001,7150,"{'type': 'Point', 'coordinates': [-73.59202900000001, 41.056732000000004]}",8.478193,843.3400843788294 | |
06810,41.374284,-73.457611,49482,"{'type': 'Point', 'coordinates': [-73.457611, 41.374284]}",54.335275,910.6791122341793 | |
06811,41.422581,-73.478352,31400,"{'type': 'Point', 'coordinates': [-73.478352, 41.422581]}",60.047527,522.9191203827595 | |
06812,41.480318,-73.486863,13881,"{'type': 'Point', 'coordinates': [-73.486863, 41.480318]}",65.149038,213.06531034272524 | |
06820,41.076202,-73.48008,20732,"{'type': 'Point', 'coordinates': [-73.48008, 41.076202]}",38.775937,534.6614834865242 | |
06824,41.173039,-73.28081800000001,33900,"{'type': 'Point', 'coordinates': [-73.28081800000001, 41.173039]}",55.492458,610.8938263286157 | |
06825,41.196583000000004,-73.24325400000001,21123,"{'type': 'Point', 'coordinates': [-73.24325400000001, 41.196583000000004]}",17.519965,1205.6530934850612 | |
06830,41.037605,-73.624339,24027,"{'type': 'Point', 'coordinates': [-73.624339, 41.037605]}",47.606075,504.70449412181114 | |
06831,41.088724,-73.658838,14792,"{'type': 'Point', 'coordinates': [-73.658838, 41.088724]}",72.664297,203.5662713423072 | |
06840,41.160393,-73.500124,19738,"{'type': 'Point', 'coordinates': [-73.500124, 41.160393]}",58.335719,338.3518766606785 | |
06850,41.126683,-73.447459,18078,"{'type': 'Point', 'coordinates': [-73.447459, 41.126683]}",17.592101,1027.6202939034968 | |
06851,41.138233,-73.401526,26703,"{'type': 'Point', 'coordinates': [-73.401526, 41.138233]}",19.929384,1339.8808513098047 | |
06853,41.066109000000004,-73.437996,3646,"{'type': 'Point', 'coordinates': [-73.437996, 41.066109000000004]}",4.159049,876.6427132741162 | |
06854,41.083909999999996,-73.426615,29100,"{'type': 'Point', 'coordinates': [-73.426615, 41.083909999999996]}",19.053895,1527.2467912728605 | |
06855,41.08424,-73.394991,7892,"{'type': 'Point', 'coordinates': [-73.394991, 41.08424]}",13.042316,605.1072524235726 | |
06856,41.111222999999995,-73.42086,3,"{'type': 'Point', 'coordinates': [-73.42086, 41.111222999999995]}",0.009568,313.54515050167225 | |
06870,41.024446000000005,-73.57115,7316,"{'type': 'Point', 'coordinates': [-73.57115, 41.024446000000005]}",9.786451,747.5641578341322 | |
06877,41.310803,-73.499837,24677,"{'type': 'Point', 'coordinates': [-73.499837, 41.310803]}",90.854743,271.60937541807806 | |
06878,41.030093,-73.58371899999999,8043,"{'type': 'Point', 'coordinates': [-73.58371899999999, 41.030093]}",8.299215,969.1278030512524 | |
06880,41.133275,-73.348699,26647,"{'type': 'Point', 'coordinates': [-73.348699, 41.133275]}",67.345418,395.6765106127933 | |
06883,41.227413,-73.36706099999999,10179,"{'type': 'Point', 'coordinates': [-73.36706099999999, 41.227413]}",53.54514,190.1012865033129 | |
06890,41.148565000000005,-73.28778,4306,"{'type': 'Point', 'coordinates': [-73.28778, 41.148565000000005]}",7.88127,546.3586452437235 | |
06896,41.305415,-73.392584,9110,"{'type': 'Point', 'coordinates': [-73.392584, 41.305415]}",82.979088,109.78669710132267 | |
06897,41.211277,-73.440974,18071,"{'type': 'Point', 'coordinates': [-73.440974, 41.211277]}",70.711218,255.56058163218174 | |
06901,41.053591,-73.53817,6828,"{'type': 'Point', 'coordinates': [-73.53817, 41.053591]}",1.204738,5667.622337802908 | |
06902,41.059346999999995,-73.544384,63406,"{'type': 'Point', 'coordinates': [-73.544384, 41.059346999999995]}",32.489498,1951.584478159681 | |
06903,41.136018,-73.57114200000001,14499,"{'type': 'Point', 'coordinates': [-73.57114200000001, 41.136018]}",47.280739,306.65764340104755 | |
06905,41.088293,-73.54266899999999,19649,"{'type': 'Point', 'coordinates': [-73.54266899999999, 41.088293]}",12.890115,1524.3463692915075 | |
06906,41.071023,-73.522621,9088,"{'type': 'Point', 'coordinates': [-73.522621, 41.071023]}",3.131658,2901.97716353446 | |
06907,41.100918,-73.520517,9016,"{'type': 'Point', 'coordinates': [-73.520517, 41.100918]}",5.414712,1665.0931757774006 | |
07001,40.583960999999995,-74.269704,16305,"{'type': 'Point', 'coordinates': [-74.269704, 40.583960999999995]}",9.845167,1656.1425519749944 | |
07002,40.66253,-74.110192,63031,"{'type': 'Point', 'coordinates': [-74.110192, 40.66253]}",17.221859,3659.9417054802275 | |
07003,40.809141,-74.18714200000001,47312,"{'type': 'Point', 'coordinates': [-74.18714200000001, 40.809141]}",13.817166,3424.1464566612285 | |
07004,40.882508,-74.30459300000001,7440,"{'type': 'Point', 'coordinates': [-74.30459300000001, 40.882508]}",26.817522,277.4305545456437 | |
07005,40.932771,-74.417304,15269,"{'type': 'Point', 'coordinates': [-74.417304, 40.932771]}",53.007546,288.0533273507889 | |
07006,40.851187,-74.282865,24812,"{'type': 'Point', 'coordinates': [-74.282865, 40.851187]}",24.377466,1017.8252325323724 | |
07008,40.58379,-74.227457,22844,"{'type': 'Point', 'coordinates': [-74.227457, 40.58379]}",12.940808,1765.2684438251458 | |
07009,40.858017,-74.229784,12411,"{'type': 'Point', 'coordinates': [-74.229784, 40.858017]}",11.291207,1099.1738969979028 | |
07010,40.822045,-73.987945,23594,"{'type': 'Point', 'coordinates': [-73.987945, 40.822045]}",2.472332,9543.216687726404 | |
07011,40.878256,-74.14407299999999,39710,"{'type': 'Point', 'coordinates': [-74.14407299999999, 40.878256]}",8.815693,4504.467204109762 | |
07012,40.848397999999996,-74.16026600000001,11703,"{'type': 'Point', 'coordinates': [-74.16026600000001, 40.848397999999996]}",5.440582,2151.0566332793073 | |
07013,40.869405,-74.173062,27051,"{'type': 'Point', 'coordinates': [-74.173062, 40.869405]}",11.289958,2396.0230852940285 | |
07014,40.831339,-74.135419,5184,"{'type': 'Point', 'coordinates': [-74.135419, 40.831339]}",3.756441,1380.0296610541734 | |
07016,40.65609,-74.303563,22625,"{'type': 'Point', 'coordinates': [-74.303563, 40.65609]}",12.591311,1796.874050684635 | |
07017,40.772110999999995,-74.207065,35945,"{'type': 'Point', 'coordinates': [-74.207065, 40.772110999999995]}",5.832167,6163.232294274152 | |
07018,40.755829,-74.217824,28322,"{'type': 'Point', 'coordinates': [-74.217824, 40.755829]}",4.390916,6450.134778255836 | |
07020,40.82465,-73.973793,11513,"{'type': 'Point', 'coordinates': [-73.973793, 40.82465]}",6.350117,1813.037460569624 | |
07021,40.828102,-74.276226,2091,"{'type': 'Point', 'coordinates': [-74.276226, 40.828102]}",3.632629,575.6161721992529 | |
07022,40.82111,-74.00303199999999,13835,"{'type': 'Point', 'coordinates': [-74.00303199999999, 40.82111]}",2.187502,6324.5656461114095 | |
07023,40.641701,-74.385692,7318,"{'type': 'Point', 'coordinates': [-74.385692, 40.641701]}",3.469656,2109.1428083936853 | |
07024,40.850640000000006,-73.971007,35353,"{'type': 'Point', 'coordinates': [-73.971007, 40.850640000000006]}",7.471651,4731.618219319934 | |
07026,40.879796999999996,-74.10825,30555,"{'type': 'Point', 'coordinates': [-74.10825, 40.879796999999996]}",5.876341,5199.6642128154235 | |
07027,40.651348,-74.32314000000001,4226,"{'type': 'Point', 'coordinates': [-74.32314000000001, 40.651348]}",1.686253,2506.1482470305464 | |
07028,40.804798,-74.20456899999999,7618,"{'type': 'Point', 'coordinates': [-74.20456899999999, 40.804798]}",3.340363,2280.590462773058 | |
07029,40.74362,-74.154901,16026,"{'type': 'Point', 'coordinates': [-74.154901, 40.74362]}",3.747444,4276.514872537121 | |
07030,40.745295,-74.032113,50005,"{'type': 'Point', 'coordinates': [-74.032113, 40.745295]}",3.223766,15511.361556639036 | |
07031,40.786256,-74.12621999999999,15392,"{'type': 'Point', 'coordinates': [-74.12621999999999, 40.786256]}",6.558736,2346.793650483874 | |
07032,40.752332,-74.12309300000001,40684,"{'type': 'Point', 'coordinates': [-74.12309300000001, 40.752332]}",25.947177,1567.9547721125887 | |
07033,40.678089,-74.28811400000001,7914,"{'type': 'Point', 'coordinates': [-74.28811400000001, 40.678089]}",5.581501,1417.898160369406 | |
07034,40.87948,-74.380104,9360,"{'type': 'Point', 'coordinates': [-74.380104, 40.87948]}",3.302839,2833.925601580943 | |
07035,40.927501,-74.308334,10607,"{'type': 'Point', 'coordinates': [-74.308334, 40.927501]}",18.775478,564.93901247148 | |
07036,40.624472,-74.238419,41970,"{'type': 'Point', 'coordinates': [-74.238419, 40.624472]}",30.042136,1397.0378138225592 | |
07039,40.785828,-74.3291,29358,"{'type': 'Point', 'coordinates': [-74.3291, 40.785828]}",36.632313,801.4235956107931 | |
07040,40.730785,-74.268919,23876,"{'type': 'Point', 'coordinates': [-74.268919, 40.730785]}",9.034482,2642.7635806900716 | |
07041,40.722448,-74.301546,6868,"{'type': 'Point', 'coordinates': [-74.301546, 40.722448]}",3.44814,1991.7984768599883 | |
07042,40.812449,-74.21733,25599,"{'type': 'Point', 'coordinates': [-74.21733, 40.812449]}",9.69893,2639.3633112106177 | |
07043,40.844837,-74.200502,12138,"{'type': 'Point', 'coordinates': [-74.200502, 40.844837]}",6.711036,1808.662626753902 | |
07044,40.832468,-74.242863,13584,"{'type': 'Point', 'coordinates': [-74.242863, 40.832468]}",7.356264,1846.5895188100915 | |
07045,40.909405,-74.363571,10127,"{'type': 'Point', 'coordinates': [-74.363571, 40.909405]}",19.120451,529.6423185833848 | |
07046,40.889726,-74.440329,4194,"{'type': 'Point', 'coordinates': [-74.440329, 40.889726]}",7.520641,557.6652309291189 | |
07047,40.794163,-74.024947,60773,"{'type': 'Point', 'coordinates': [-74.024947, 40.794163]}",13.8649,4383.226709172081 | |
07050,40.76804,-74.235692,30074,"{'type': 'Point', 'coordinates': [-74.235692, 40.76804]}",5.693858,5281.831756253844 | |
07052,40.785755,-74.265058,46182,"{'type': 'Point', 'coordinates': [-74.265058, 40.785755]}",31.461394,1467.8942706734483 | |
07054,40.853730999999996,-74.401647,29305,"{'type': 'Point', 'coordinates': [-74.401647, 40.853730999999996]}",37.236406,786.9986163541132 | |
07055,40.857552,-74.12908900000001,69816,"{'type': 'Point', 'coordinates': [-74.12908900000001, 40.857552]}",8.417058,8294.584639906247 | |
07057,40.853084,-74.106323,11335,"{'type': 'Point', 'coordinates': [-74.106323, 40.853084]}",2.6735,4239.76061342809 | |
07058,40.872514,-74.341776,5372,"{'type': 'Point', 'coordinates': [-74.341776, 40.872514]}",7.875826,682.0871867915822 | |
07059,40.634588,-74.519044,15311,"{'type': 'Point', 'coordinates': [-74.519044, 40.634588]}",50.90499,300.7760142964374 | |
07060,40.616667,-74.422042,44998,"{'type': 'Point', 'coordinates': [-74.422042, 40.616667]}",13.151075,3421.6214263852953 | |
07062,40.632358,-74.401184,12949,"{'type': 'Point', 'coordinates': [-74.401184, 40.632358]}",4.805995,2694.3432109271857 | |
07063,40.605118,-74.44452199999999,13538,"{'type': 'Point', 'coordinates': [-74.44452199999999, 40.605118]}",4.648124,2912.5729003787333 | |
07064,40.56742,-74.24494200000001,3723,"{'type': 'Point', 'coordinates': [-74.24494200000001, 40.56742]}",3.856324,965.4271788366331 | |
07065,40.607152,-74.28053100000001,27346,"{'type': 'Point', 'coordinates': [-74.28053100000001, 40.607152]}",10.411629,2626.486210755301 | |
07066,40.620618,-74.315435,14756,"{'type': 'Point', 'coordinates': [-74.315435, 40.620618]}",11.524315,1280.423174826443 | |
07067,40.589296000000004,-74.31138,18036,"{'type': 'Point', 'coordinates': [-74.31138, 40.589296000000004]}",10.415371,1731.671392214449 | |
07068,40.821737,-74.310147,5819,"{'type': 'Point', 'coordinates': [-74.310147, 40.821737]}",9.316879,624.5653721594967 | |
07069,40.642845,-74.436233,6157,"{'type': 'Point', 'coordinates': [-74.436233, 40.642845]}",16.377553,375.9413875809164 | |
07070,40.820314,-74.106041,18061,"{'type': 'Point', 'coordinates': [-74.106041, 40.820314]}",7.573725,2384.691812813378 | |
07071,40.797985,-74.113258,20554,"{'type': 'Point', 'coordinates': [-74.113258, 40.797985]}",12.778342,1608.5028871507743 | |
07072,40.826431,-74.062335,6127,"{'type': 'Point', 'coordinates': [-74.062335, 40.826431]}",10.877386,563.2787142057844 | |
07073,40.817097,-74.085024,8913,"{'type': 'Point', 'coordinates': [-74.085024, 40.817097]}",10.484056,850.1480724635579 | |
07074,40.838144,-74.055077,2708,"{'type': 'Point', 'coordinates': [-74.055077, 40.838144]}",3.34489,809.5931405816036 | |
07075,40.850183,-74.087068,7626,"{'type': 'Point', 'coordinates': [-74.087068, 40.850183]}",2.87356,2653.850972313089 | |
07076,40.633029,-74.372899,23480,"{'type': 'Point', 'coordinates': [-74.372899, 40.633029]}",23.414445,1002.7997674085377 | |
07077,40.554147,-74.25305999999999,2766,"{'type': 'Point', 'coordinates': [-74.25305999999999, 40.554147]}",5.581209,495.5915465627608 | |
07078,40.742346000000005,-74.334237,13250,"{'type': 'Point', 'coordinates': [-74.334237, 40.742346000000005]}",18.09998,732.045007784539 | |
07079,40.748810999999996,-74.261512,16316,"{'type': 'Point', 'coordinates': [-74.261512, 40.748810999999996]}",7.385916,2209.069261009738 | |
07080,40.574413,-74.4148,23377,"{'type': 'Point', 'coordinates': [-74.4148, 40.574413]}",21.506487,1086.974362665553 | |
07081,40.697966,-74.334436,15808,"{'type': 'Point', 'coordinates': [-74.334436, 40.697966]}",13.398618,1179.8231728078224 | |
07082,40.926913,-74.342511,5384,"{'type': 'Point', 'coordinates': [-74.342511, 40.926913]}",15.819761,340.3338394303176 | |
07083,40.695266,-74.26907800000001,53053,"{'type': 'Point', 'coordinates': [-74.26907800000001, 40.695266]}",22.499816,2357.9303937418867 | |
07086,40.767915,-74.020629,12554,"{'type': 'Point', 'coordinates': [-74.020629, 40.767915]}",2.109987,5949.7996907089955 | |
07087,40.767352,-74.032313,66515,"{'type': 'Point', 'coordinates': [-74.032313, 40.767352]}",3.352526,19840.263729498292 | |
07088,40.717889,-74.286169,3606,"{'type': 'Point', 'coordinates': [-74.286169, 40.717889]}",1.076885,3348.546966482029 | |
07090,40.651644,-74.343447,30338,"{'type': 'Point', 'coordinates': [-74.343447, 40.651644]}",17.501159,1733.485193752025 | |
07092,40.680721999999996,-74.360292,6730,"{'type': 'Point', 'coordinates': [-74.360292, 40.680721999999996]}",10.538003,638.6409265588557 | |
07093,40.788101,-74.01144000000001,60884,"{'type': 'Point', 'coordinates': [-74.01144000000001, 40.788101]}",3.074965,19799.90016146525 | |
07094,40.781958,-74.067649,16264,"{'type': 'Point', 'coordinates': [-74.067649, 40.781958]}",16.790644,968.6346753584913 | |
07095,40.552853000000006,-74.28694499999999,19844,"{'type': 'Point', 'coordinates': [-74.28694499999999, 40.552853000000006]}",10.75696,1844.7591140991508 | |
07102,40.735659000000005,-74.17360500000001,12579,"{'type': 'Point', 'coordinates': [-74.17360500000001, 40.735659000000005]}",3.096153,4062.7837190216374 | |
07103,40.738728,-74.195534,32698,"{'type': 'Point', 'coordinates': [-74.195534, 40.738728]}",5.510167,5934.1214159207875 | |
07104,40.767713,-74.16835,50478,"{'type': 'Point', 'coordinates': [-74.16835, 40.767713]}",6.863153,7354.928558346288 | |
07105,40.723065999999996,-74.138636,46983,"{'type': 'Point', 'coordinates': [-74.138636, 40.723065999999996]}",13.600614,3454.476393492235 | |
07106,40.741796,-74.230386,31298,"{'type': 'Point', 'coordinates': [-74.230386, 40.741796]}",3.676499,8512.990211611645 | |
07107,40.762918,-74.186559,37650,"{'type': 'Point', 'coordinates': [-74.186559, 40.762918]}",4.284463,8787.565676258613 | |
07108,40.723112,-74.200204,24386,"{'type': 'Point', 'coordinates': [-74.200204, 40.723112]}",3.554647,6860.315525001498 | |
07109,40.793481,-74.16116,35897,"{'type': 'Point', 'coordinates': [-74.16116, 40.793481]}",8.762311,4096.7502751271895 | |
07110,40.820615999999994,-74.15625,28351,"{'type': 'Point', 'coordinates': [-74.15625, 40.820615999999994]}",8.86269,3198.915904764806 | |
07111,40.723859000000004,-74.232522,53942,"{'type': 'Point', 'coordinates': [-74.232522, 40.723859000000004]}",7.556532,7138.459811987827 | |
07112,40.709409,-74.20955,26417,"{'type': 'Point', 'coordinates': [-74.20955, 40.709409]}",4.666394,5661.1164852346365 | |
07114,40.697424,-74.169886,14748,"{'type': 'Point', 'coordinates': [-74.169886, 40.697424]}",21.816799,675.9928438631167 | |
07201,40.671271999999995,-74.177358,26263,"{'type': 'Point', 'coordinates': [-74.177358, 40.671271999999995]}",18.630896,1409.6477163524503 | |
07202,40.652464,-74.216853,40849,"{'type': 'Point', 'coordinates': [-74.216853, 40.652464]}",6.27343,6511.429951398198 | |
07203,40.652211,-74.26015799999999,21085,"{'type': 'Point', 'coordinates': [-74.26015799999999, 40.652211]}",6.871297,3068.5618741265293 | |
07204,40.665309,-74.266571,13297,"{'type': 'Point', 'coordinates': [-74.266571, 40.665309]}",3.173632,4189.836754860047 | |
07205,40.695889,-74.2288,21398,"{'type': 'Point', 'coordinates': [-74.2288, 40.695889]}",7.170854,2984.023939129147 | |
07206,40.651654,-74.18381099999999,26636,"{'type': 'Point', 'coordinates': [-74.18381099999999, 40.651654]}",5.851135,4552.279173186057 | |
07208,40.673805,-74.226433,31219,"{'type': 'Point', 'coordinates': [-74.226433, 40.673805]}",4.610245,6771.6574715660445 | |
07302,40.719389,-74.04646899999999,36352,"{'type': 'Point', 'coordinates': [-74.04646899999999, 40.719389]}",3.970974,9154.42911487207 | |
07304,40.716495,-74.07259300000001,41233,"{'type': 'Point', 'coordinates': [-74.07259300000001, 40.716495]}",4.887121,8437.073688169376 | |
07305,40.697302,-74.082273,60104,"{'type': 'Point', 'coordinates': [-74.082273, 40.697302]}",15.947137,3768.9523831142856 | |
07306,40.734924,-74.071875,52669,"{'type': 'Point', 'coordinates': [-74.071875, 40.734924]}",7.540125,6985.162712819748 | |
07307,40.750877,-74.056865,43812,"{'type': 'Point', 'coordinates': [-74.056865, 40.750877]}",5.877908,7453.672292931431 | |
07310,40.730128,-74.03683199999999,12838,"{'type': 'Point', 'coordinates': [-74.03683199999999, 40.730128]}",1.642986,7813.821907186062 | |
07311,40.719081,-74.032615,522,"{'type': 'Point', 'coordinates': [-74.032615, 40.719081]}",0.085748,6087.605541820217 | |
07401,41.032669,-74.133826,6494,"{'type': 'Point', 'coordinates': [-74.133826, 41.032669]}",8.04936,806.772215430792 | |
07403,41.020753000000006,-74.332842,7603,"{'type': 'Point', 'coordinates': [-74.332842, 41.020753000000006]}",17.615124,431.61773939258103 | |
07405,40.987840999999996,-74.378188,17701,"{'type': 'Point', 'coordinates': [-74.378188, 40.987840999999996]}",54.124777,327.04060840749514 | |
07407,40.904526000000004,-74.119514,19403,"{'type': 'Point', 'coordinates': [-74.119514, 40.904526000000004]}",7.056493,2749.6661585294564 | |
07410,40.935833,-74.117504,32457,"{'type': 'Point', 'coordinates': [-74.117504, 40.935833]}",13.501247,2404.0001638367185 | |
07416,41.112558,-74.599735,5781,"{'type': 'Point', 'coordinates': [-74.599735, 41.112558]}",25.173066,229.65021424088746 | |
07417,41.007526,-74.205653,10580,"{'type': 'Point', 'coordinates': [-74.205653, 41.007526]}",25.59362,413.38427311181454 | |
07418,41.242216,-74.486108,2249,"{'type': 'Point', 'coordinates': [-74.486108, 41.242216]}",12.281832,183.11600419220846 | |
07419,41.152077,-74.565125,9160,"{'type': 'Point', 'coordinates': [-74.565125, 41.152077]}",40.882121,224.058825127982 | |
07420,41.032270000000004,-74.303164,4942,"{'type': 'Point', 'coordinates': [-74.303164, 41.032270000000004]}",7.972535,619.8781190675237 | |
07421,41.17374,-74.352613,7439,"{'type': 'Point', 'coordinates': [-74.352613, 41.17374]}",72.331744,102.8455777314038 | |
07422,41.182049,-74.444452,6616,"{'type': 'Point', 'coordinates': [-74.444452, 41.182049]}",34.841171,189.8902881306716 | |
07423,40.9995,-74.096583,4078,"{'type': 'Point', 'coordinates': [-74.096583, 40.9995]}",4.539708,898.2956613068505 | |
07424,40.88283,-74.205688,26222,"{'type': 'Point', 'coordinates': [-74.205688, 40.88283]}",15.353497,1707.8845294983937 | |
07430,41.082066999999995,-74.183061,25890,"{'type': 'Point', 'coordinates': [-74.183061, 41.082066999999995]}",66.871166,387.1623832609708 | |
07432,40.995809,-74.141262,7128,"{'type': 'Point', 'coordinates': [-74.141262, 40.995809]}",4.089767,1742.8865752009833 | |
07435,41.035529,-74.449126,2405,"{'type': 'Point', 'coordinates': [-74.449126, 41.035529]}",44.157341,54.46433017785196 | |
07436,41.031022,-74.240502,12754,"{'type': 'Point', 'coordinates': [-74.240502, 41.031022]}",22.715262,561.4727226126646 | |
07438,41.028134,-74.518867,11559,"{'type': 'Point', 'coordinates': [-74.518867, 41.028134]}",75.922531,152.2472953384549 | |
07439,41.075676,-74.602012,2456,"{'type': 'Point', 'coordinates': [-74.602012, 41.075676]}",6.29187,390.345000770836 | |
07440,40.946467999999996,-74.29304,4494,"{'type': 'Point', 'coordinates': [-74.29304, 40.946467999999996]}",4.496638,999.4133394771827 | |
07442,41.003095,-74.285455,11097,"{'type': 'Point', 'coordinates': [-74.285455, 41.003095]}",8.227285,1348.8046178052662 | |
07444,40.967407,-74.306967,11046,"{'type': 'Point', 'coordinates': [-74.306967, 40.967407]}",13.918947,793.5945154471815 | |
07446,41.059135999999995,-74.145931,14484,"{'type': 'Point', 'coordinates': [-74.145931, 41.059135999999995]}",14.512057,998.0666421031835 | |
07450,40.981590999999995,-74.113506,24985,"{'type': 'Point', 'coordinates': [-74.113506, 40.981590999999995]}",15.062614,1658.7426325868803 | |
07452,40.959471,-74.125202,11601,"{'type': 'Point', 'coordinates': [-74.125202, 40.959471]}",7.058721,1643.4988718211132 | |
07456,41.102332000000004,-74.27317,12211,"{'type': 'Point', 'coordinates': [-74.27317, 41.102332000000004]}",73.722528,165.6345805179117 | |
07457,40.995812,-74.315119,3559,"{'type': 'Point', 'coordinates': [-74.315119, 40.995812]}",5.367496,663.0652356331518 | |
07458,41.046658,-74.096482,11360,"{'type': 'Point', 'coordinates': [-74.096482, 41.046658]}",26.505111,428.596582749644 | |
07460,41.111743,-74.49512800000001,3457,"{'type': 'Point', 'coordinates': [-74.49512800000001, 41.111743]}",91.268251,37.87735562063088 | |
07461,41.247021999999994,-74.610522,19563,"{'type': 'Point', 'coordinates': [-74.610522, 41.247021999999994]}",220.915457,88.55423819438764 | |
07462,41.198457,-74.495575,6885,"{'type': 'Point', 'coordinates': [-74.495575, 41.198457]}",44.303251,155.4062025831919 | |
07463,41.013615,-74.125919,9615,"{'type': 'Point', 'coordinates': [-74.125919, 41.013615]}",5.346484,1798.3781490789086 | |
07465,41.054895,-74.33290500000001,6244,"{'type': 'Point', 'coordinates': [-74.33290500000001, 41.054895]}",22.540688,277.01017821638806 | |
07470,40.945855,-74.245077,54717,"{'type': 'Point', 'coordinates': [-74.245077, 40.945855]}",65.245372,838.6341946214974 | |
07480,41.088533,-74.376499,16122,"{'type': 'Point', 'coordinates': [-74.376499, 41.088533]}",89.904795,179.3230272089492 | |
07481,40.999093,-74.168849,16716,"{'type': 'Point', 'coordinates': [-74.168849, 40.999093]}",17.243483,969.4097184426139 | |
07495,41.10447,-74.163363,0,"{'type': 'Point', 'coordinates': [-74.163363, 41.10447]}",0.099274,0.0 | |
07501,40.911998,-74.170965,33543,"{'type': 'Point', 'coordinates': [-74.170965, 40.911998]}",4.857869,6904.879485222841 | |
07502,40.918572999999995,-74.194089,15406,"{'type': 'Point', 'coordinates': [-74.194089, 40.918572999999995]}",2.454659,6276.228184851745 | |
07503,40.897548,-74.15412099999999,18723,"{'type': 'Point', 'coordinates': [-74.15412099999999, 40.897548]}",4.095004,4572.156706074035 | |
07504,40.912548,-74.141615,12882,"{'type': 'Point', 'coordinates': [-74.141615, 40.912548]}",2.229158,5778.8635888528315 | |
07505,40.916327,-74.171643,2256,"{'type': 'Point', 'coordinates': [-74.171643, 40.916327]}",0.515577,4375.680063307712 | |
07506,40.956957,-74.15856099999999,18791,"{'type': 'Point', 'coordinates': [-74.15856099999999, 40.956957]}",8.669288,2167.5367112039653 | |
07508,40.955073999999996,-74.183638,22600,"{'type': 'Point', 'coordinates': [-74.183638, 40.955073999999996]}",13.466525,1678.235476487067 | |
07512,40.903415,-74.219779,10804,"{'type': 'Point', 'coordinates': [-74.219779, 40.903415]}",10.444115,1034.458161366473 | |
07513,40.906182,-74.148686,11508,"{'type': 'Point', 'coordinates': [-74.148686, 40.906182]}",1.551079,7419.351303189585 | |
07514,40.926992,-74.143838,18289,"{'type': 'Point', 'coordinates': [-74.143838, 40.926992]}",2.536567,7210.138742639166 | |
07522,40.924959,-74.179096,20883,"{'type': 'Point', 'coordinates': [-74.179096, 40.924959]}",2.243584,9307.875256732086 | |
07524,40.931711,-74.15687,12709,"{'type': 'Point', 'coordinates': [-74.15687, 40.931711]}",2.073183,6130.187253127196 | |
07601,40.889398,-74.045698,43010,"{'type': 'Point', 'coordinates': [-74.045698, 40.889398]}",11.309413,3803.026735339845 | |
07603,40.874287,-74.029735,8187,"{'type': 'Point', 'coordinates': [-74.029735, 40.874287]}",2.067021,3960.7725320642608 | |
07604,40.862751,-74.075182,11842,"{'type': 'Point', 'coordinates': [-74.075182, 40.862751]}",3.965714,2986.095316001103 | |
07605,40.863391,-73.988466,8950,"{'type': 'Point', 'coordinates': [-73.988466, 40.863391]}",4.241655,2110.025449971768 | |
07606,40.857844,-74.048569,2310,"{'type': 'Point', 'coordinates': [-74.048569, 40.857844]}",1.765113,1308.6980833521707 | |
07607,40.902885,-74.063457,9555,"{'type': 'Point', 'coordinates': [-74.063457, 40.902885]}",3.296187,2898.8039816915725 | |
07608,40.853503,-74.060109,67,"{'type': 'Point', 'coordinates': [-74.060109, 40.853503]}",4.009204,16.71154673097203 | |
07620,40.968782,-73.916896,1849,"{'type': 'Point', 'coordinates': [-73.916896, 40.968782]}",23.917152,77.30853573201357 | |
07621,40.924203999999996,-73.998287,26761,"{'type': 'Point', 'coordinates': [-73.998287, 40.924203999999996]}",7.298972,3666.4067213848743 | |
07624,40.97289,-73.96031500000001,8373,"{'type': 'Point', 'coordinates': [-73.96031500000001, 40.97289]}",8.511739,983.700275584108 | |
07626,40.939786,-73.95858100000001,8537,"{'type': 'Point', 'coordinates': [-73.95858100000001, 40.939786]}",5.334167,1600.4373316395981 | |
07627,40.954576,-73.956563,4881,"{'type': 'Point', 'coordinates': [-73.956563, 40.954576]}",5.39145,905.3223158890465 | |
07628,40.945239,-73.992428,17433,"{'type': 'Point', 'coordinates': [-73.992428, 40.945239]}",5.062957,3443.2447283277343 | |
07630,40.974990000000005,-74.023248,7379,"{'type': 'Point', 'coordinates': [-74.023248, 40.974990000000005]}",6.270327,1176.8126287512598 | |
07631,40.891197,-73.972515,27119,"{'type': 'Point', 'coordinates': [-73.972515, 40.891197]}",12.77232,2123.263432172072 | |
07632,40.889721,-73.94198100000001,5309,"{'type': 'Point', 'coordinates': [-73.94198100000001, 40.889721]}",8.718704,608.9207753812951 | |
07640,40.991681,-73.980202,4664,"{'type': 'Point', 'coordinates': [-73.980202, 40.991681]}",5.319144,876.8328137008511 | |
07641,40.961713,-73.997437,3382,"{'type': 'Point', 'coordinates': [-73.997437, 40.961713]}",6.077852,556.4465867217563 | |
07642,41.009091999999995,-74.04375999999999,10207,"{'type': 'Point', 'coordinates': [-74.04375999999999, 41.009091999999995]}",7.554927,1351.0388651008805 | |
07643,40.844332,-74.036164,10626,"{'type': 'Point', 'coordinates': [-74.036164, 40.844332]}",4.327301,2455.5721915346307 | |
07644,40.877915,-74.0825,24136,"{'type': 'Point', 'coordinates': [-74.0825, 40.877915]}",5.978599,4037.066208989765 | |
07645,41.054594,-74.047298,7832,"{'type': 'Point', 'coordinates': [-74.047298, 41.054594]}",10.419942,751.6356616956217 | |
07646,40.934160999999996,-74.019453,16341,"{'type': 'Point', 'coordinates': [-74.019453, 40.934160999999996]}",6.003571,2721.8800277368255 | |
07647,41.006364000000005,-73.94277199999999,5152,"{'type': 'Point', 'coordinates': [-73.94277199999999, 41.006364000000005]}",5.893686,874.155833887316 | |
07648,40.992252,-73.950917,5730,"{'type': 'Point', 'coordinates': [-73.950917, 40.992252]}",7.235659,791.9112827179943 | |
07649,40.956651,-74.03285799999999,7978,"{'type': 'Point', 'coordinates': [-74.03285799999999, 40.956651]}",6.644363,1200.7170589565922 | |
07650,40.847017,-73.997061,19601,"{'type': 'Point', 'coordinates': [-73.997061, 40.847017]}",3.282588,5971.2032091752 | |
07652,40.947299,-74.07016899999999,26342,"{'type': 'Point', 'coordinates': [-74.07016899999999, 40.947299]}",27.215392,967.9081602058129 | |
07656,41.036183,-74.04429300000001,8669,"{'type': 'Point', 'coordinates': [-74.04429300000001, 41.036183]}",6.838817,1267.6168992385672 | |
07657,40.832677000000004,-74.014088,11032,"{'type': 'Point', 'coordinates': [-74.014088, 40.832677000000004]}",7.50475,1470.002331856491 | |
07660,40.854704999999996,-74.019926,12729,"{'type': 'Point', 'coordinates': [-74.019926, 40.854704999999996]}",4.819274,2641.2692036186363 | |
07661,40.926766,-74.037468,11340,"{'type': 'Point', 'coordinates': [-74.037468, 40.926766]}",4.862182,2332.2862040129307 | |
07662,40.910694,-74.082895,5530,"{'type': 'Point', 'coordinates': [-74.082895, 40.910694]}",2.728537,2026.7271435205018 | |
07663,40.903099,-74.093591,13659,"{'type': 'Point', 'coordinates': [-74.093591, 40.903099]}",7.05681,1935.5771233744426 | |
07666,40.890316999999996,-74.011478,39776,"{'type': 'Point', 'coordinates': [-74.011478, 40.890316999999996]}",16.209452,2453.8769108295583 | |
07670,40.918309,-73.950523,14573,"{'type': 'Point', 'coordinates': [-73.950523, 40.918309]}",13.633576,1068.905179389472 | |
07675,41.003484,-74.00175300000001,26339,"{'type': 'Point', 'coordinates': [-74.00175300000001, 41.003484]}",27.90372,943.9243226351182 | |
07676,40.988306,-74.064693,9075,"{'type': 'Point', 'coordinates': [-74.064693, 40.988306]}",7.752067,1170.6555167802342 | |
07677,41.023333,-74.059028,5730,"{'type': 'Point', 'coordinates': [-74.059028, 41.023333]}",9.267817,618.2685739263086 | |
07701,40.361667,-74.078076,23813,"{'type': 'Point', 'coordinates': [-74.078076, 40.361667]}",27.676082,860.4180317141711 | |
07702,40.32645,-74.057373,3809,"{'type': 'Point', 'coordinates': [-74.057373, 40.32645]}",5.679334,670.6772308161485 | |
07703,40.315784,-74.039773,690,"{'type': 'Point', 'coordinates': [-74.039773, 40.315784]}",2.372827,290.7923755082018 | |
07704,40.361940000000004,-74.038775,6133,"{'type': 'Point', 'coordinates': [-74.038775, 40.361940000000004]}",5.498392,1115.417016465905 | |
07711,40.238531,-74.00800799999999,1533,"{'type': 'Point', 'coordinates': [-74.00800799999999, 40.238531]}",2.376367,645.1023768635063 | |
07712,40.249708,-74.053712,39158,"{'type': 'Point', 'coordinates': [-74.053712, 40.249708]}",31.691673,1235.5927060082943 | |
07716,40.401089,-74.032981,8574,"{'type': 'Point', 'coordinates': [-74.032981, 40.401089]}",12.997106,659.6853176391729 | |
07717,40.191418,-74.015105,1901,"{'type': 'Point', 'coordinates': [-74.015105, 40.191418]}",1.399072,1358.757805173715 | |
07718,40.419871,-74.085174,6263,"{'type': 'Point', 'coordinates': [-74.085174, 40.419871]}",5.62248,1113.92125894623 | |
07719,40.168908,-74.073226,21538,"{'type': 'Point', 'coordinates': [-74.073226, 40.168908]}",36.143689,595.8993283723751 | |
07720,40.201603999999996,-74.012056,4298,"{'type': 'Point', 'coordinates': [-74.012056, 40.201603999999996]}",1.631868,2633.7914586228785 | |
07721,40.438095000000004,-74.231391,2974,"{'type': 'Point', 'coordinates': [-74.231391, 40.438095000000004]}",2.398066,1240.1660337955668 | |
07722,40.280968,-74.168903,10209,"{'type': 'Point', 'coordinates': [-74.168903, 40.280968]}",97.832978,104.35131597445597 | |
07723,40.249701,-73.997458,1020,"{'type': 'Point', 'coordinates': [-73.997458, 40.249701]}",4.41724,230.9134210502486 | |
07724,40.298625,-74.074178,21710,"{'type': 'Point', 'coordinates': [-74.074178, 40.298625]}",32.451506,668.9982276939628 | |
07726,40.282353,-74.346564,42508,"{'type': 'Point', 'coordinates': [-74.346564, 40.282353]}",84.613211,502.380177960626 | |
07727,40.204387,-74.149275,7050,"{'type': 'Point', 'coordinates': [-74.149275, 40.204387]}",57.65441,122.28032513037599 | |
07728,40.225792999999996,-74.285785,56257,"{'type': 'Point', 'coordinates': [-74.285785, 40.225792999999996]}",126.718603,443.9521796180155 | |
07730,40.425495,-74.176063,17396,"{'type': 'Point', 'coordinates': [-74.176063, 40.425495]}",12.856552,1353.08440396772 | |
07731,40.149537,-74.203987,38304,"{'type': 'Point', 'coordinates': [-74.203987, 40.149537]}",87.896621,435.78467026622104 | |
07732,40.430451,-73.990424,5189,"{'type': 'Point', 'coordinates': [-73.990424, 40.430451]}",15.597422,332.6831831568063 | |
07733,40.374964,-74.173849,16849,"{'type': 'Point', 'coordinates': [-74.173849, 40.374964]}",46.974127,358.6868149779558 | |
07734,40.444152,-74.136812,13269,"{'type': 'Point', 'coordinates': [-74.136812, 40.444152]}",5.735825,2313.3550971307527 | |
07735,40.449141,-74.245292,19569,"{'type': 'Point', 'coordinates': [-74.245292, 40.449141]}",13.869427,1410.9450952804323 | |
07737,40.412471999999994,-74.065304,4264,"{'type': 'Point', 'coordinates': [-74.065304, 40.412471999999994]}",6.711686,635.3098163412293 | |
07738,40.337907,-74.127066,6095,"{'type': 'Point', 'coordinates': [-74.127066, 40.337907]}",14.291259,426.4844685832088 | |
07739,40.336952000000004,-74.03453499999999,5938,"{'type': 'Point', 'coordinates': [-74.03453499999999, 40.336952000000004]}",8.566995,693.1251856689539 | |
07740,40.295372,-73.989899,31038,"{'type': 'Point', 'coordinates': [-73.989899, 40.295372]}",16.689636,1859.7170124021877 | |
07746,40.32349,-74.254572,18666,"{'type': 'Point', 'coordinates': [-74.254572, 40.32349]}",33.902998,550.5707784308634 | |
07747,40.415316,-74.254364,30770,"{'type': 'Point', 'coordinates': [-74.254364, 40.415316]}",33.279984,924.5797714325824 | |
07748,40.3963,-74.115274,28030,"{'type': 'Point', 'coordinates': [-74.115274, 40.3963]}",34.741171,806.8236962997015 | |
07750,40.335895,-73.985608,3279,"{'type': 'Point', 'coordinates': [-73.985608, 40.335895]}",5.355221,612.2996604621919 | |
07751,40.35965,-74.261462,19736,"{'type': 'Point', 'coordinates': [-74.261462, 40.35965]}",41.87519,471.30532422658854 | |
07753,40.214893,-74.078907,37554,"{'type': 'Point', 'coordinates': [-74.078907, 40.214893]}",49.141484,764.2015857722164 | |
07755,40.263635,-74.02287700000001,6363,"{'type': 'Point', 'coordinates': [-74.02287700000001, 40.263635]}",7.370505,863.3058386094305 | |
07756,40.21182,-74.00694399999999,3342,"{'type': 'Point', 'coordinates': [-74.00694399999999, 40.21182]}",1.104475,3025.8720206432918 | |
07757,40.316313,-74.015897,5356,"{'type': 'Point', 'coordinates': [-74.015897, 40.316313]}",7.928451,675.5417924636225 | |
07758,40.434236,-74.100665,4967,"{'type': 'Point', 'coordinates': [-74.100665, 40.434236]}",4.03169,1231.9895626895916 | |
07760,40.369551,-74.002368,9283,"{'type': 'Point', 'coordinates': [-74.002368, 40.369551]}",28.43511,326.46260204374096 | |
07762,40.153409,-74.033732,8403,"{'type': 'Point', 'coordinates': [-74.033732, 40.153409]}",8.424987,997.3902630354207 | |
07764,40.287904,-74.02001899999999,8097,"{'type': 'Point', 'coordinates': [-74.02001899999999, 40.287904]}",7.48229,1082.1553294512776 | |
07801,40.917192,-74.554744,25386,"{'type': 'Point', 'coordinates': [-74.554744, 40.917192]}",26.260577,966.6962001634618 | |
07803,40.878088,-74.601176,3651,"{'type': 'Point', 'coordinates': [-74.601176, 40.878088]}",7.86069,464.46304332062454 | |
07820,40.931360999999995,-74.811743,39,"{'type': 'Point', 'coordinates': [-74.811743, 40.931360999999995]}",5.983648,6.517763076972443 | |
07821,40.966037,-74.754687,9193,"{'type': 'Point', 'coordinates': [-74.754687, 40.966037]}",116.173991,79.13130917573453 | |
07822,41.138775,-74.708337,887,"{'type': 'Point', 'coordinates': [-74.708337, 41.138775]}",17.121109,51.80739168239627 | |
07823,40.829451,-75.039497,7571,"{'type': 'Point', 'coordinates': [-75.039497, 40.829451]}",66.874627,113.21184640027973 | |
07825,40.971247,-74.975723,9555,"{'type': 'Point', 'coordinates': [-74.975723, 40.971247]}",205.114496,46.58373828439702 | |
07826,41.193137,-74.778188,6180,"{'type': 'Point', 'coordinates': [-74.778188, 41.193137]}",138.315022,44.680613216401035 | |
07827,41.280923,-74.73048299999999,4244,"{'type': 'Point', 'coordinates': [-74.73048299999999, 41.280923]}",131.939943,32.16615001872481 | |
07828,40.883935,-74.750312,14150,"{'type': 'Point', 'coordinates': [-74.750312, 40.883935]}",40.71803,347.51190074765407 | |
07830,40.719283000000004,-74.794021,6503,"{'type': 'Point', 'coordinates': [-74.794021, 40.719283000000004]}",62.428926,104.16645642758616 | |
07832,40.96255,-75.053441,3903,"{'type': 'Point', 'coordinates': [-75.053441, 40.96255]}",125.501042,31.099343382344188 | |
07833,40.892784000000006,-75.069413,157,"{'type': 'Point', 'coordinates': [-75.069413, 40.892784000000006]}",1.283249,122.3457021980925 | |
07834,40.887246000000005,-74.490462,17722,"{'type': 'Point', 'coordinates': [-74.490462, 40.887246000000005]}",34.045736,520.5350825724549 | |
07836,40.842413,-74.70325799999999,12568,"{'type': 'Point', 'coordinates': [-74.70325799999999, 40.842413]}",41.700025,301.3907066002958 | |
07838,40.88795,-74.911692,3568,"{'type': 'Point', 'coordinates': [-74.911692, 40.88795]}",65.012251,54.88196370865546 | |
07840,40.854177,-74.835349,29849,"{'type': 'Point', 'coordinates': [-74.835349, 40.854177]}",91.675433,325.5943170729284 | |
07842,40.942135,-74.512095,130,"{'type': 'Point', 'coordinates': [-74.512095, 40.942135]}",3.625286,35.85923979514995 | |
07843,40.939240999999996,-74.659474,12241,"{'type': 'Point', 'coordinates': [-74.659474, 40.939240999999996]}",13.262552,922.9747035110588 | |
07846,40.96594,-74.87706800000001,89,"{'type': 'Point', 'coordinates': [-74.87706800000001, 40.96594]}",0.355296,250.4953616139782 | |
07847,40.889346,-74.623879,1670,"{'type': 'Point', 'coordinates': [-74.623879, 40.889346]}",6.021479,277.34050056472836 | |
07848,41.103892,-74.687004,5026,"{'type': 'Point', 'coordinates': [-74.687004, 41.103892]}",61.973703,81.09891384092379 | |
07849,40.970323,-74.607244,9054,"{'type': 'Point', 'coordinates': [-74.607244, 40.970323]}",24.221206,373.8046734749707 | |
07850,40.906858,-74.662035,6436,"{'type': 'Point', 'coordinates': [-74.662035, 40.906858]}",9.633669,668.0736072621968 | |
07851,41.231435999999995,-74.846827,119,"{'type': 'Point', 'coordinates': [-74.846827, 41.231435999999995]}",18.258198,6.517620194501122 | |
07852,40.883268,-74.668029,3609,"{'type': 'Point', 'coordinates': [-74.668029, 40.883268]}",8.020586,449.9671221030483 | |
07853,40.780755,-74.789238,13325,"{'type': 'Point', 'coordinates': [-74.789238, 40.780755]}",88.625204,150.3522632229992 | |
07856,40.916106,-74.62668000000001,3944,"{'type': 'Point', 'coordinates': [-74.62668000000001, 40.916106]}",10.925614,360.9865770472946 | |
07857,40.897182,-74.70044,3244,"{'type': 'Point', 'coordinates': [-74.70044, 40.897182]}",3.156295,1027.7873265965316 | |
07860,41.056862,-74.818595,26288,"{'type': 'Point', 'coordinates': [-74.818595, 41.056862]}",271.066392,96.97993102737723 | |
07863,40.807571,-74.957451,4332,"{'type': 'Point', 'coordinates': [-74.957451, 40.807571]}",61.774868,70.12560512472483 | |
07865,40.793806,-74.898347,2189,"{'type': 'Point', 'coordinates': [-74.898347, 40.793806]}",35.625656,61.444482594229285 | |
07866,40.954863,-74.489076,22098,"{'type': 'Point', 'coordinates': [-74.489076, 40.954863]}",63.386508,348.6230855310723 | |
07869,40.841691,-74.57833000000001,25291,"{'type': 'Point', 'coordinates': [-74.57833000000001, 40.841691]}",52.61308,480.6979557174756 | |
07870,40.803979999999996,-74.81965100000001,26,"{'type': 'Point', 'coordinates': [-74.81965100000001, 40.803979999999996]}",0.601577,43.21973745671792 | |
07871,41.046696000000004,-74.627989,21165,"{'type': 'Point', 'coordinates': [-74.627989, 41.046696000000004]}",103.348454,204.79261354020835 | |
07874,40.923063,-74.73579000000001,8905,"{'type': 'Point', 'coordinates': [-74.73579000000001, 40.923063]}",34.561916,257.6535398095407 | |
07876,40.85447,-74.65735699999999,10619,"{'type': 'Point', 'coordinates': [-74.65735699999999, 40.85447]}",15.308148,693.6828674507198 | |
07878,40.872451,-74.47375699999999,934,"{'type': 'Point', 'coordinates': [-74.47375699999999, 40.872451]}",0.713345,1309.324380208735 | |
07880,40.871452000000005,-74.888891,192,"{'type': 'Point', 'coordinates': [-74.888891, 40.871452000000005]}",0.577522,332.4548675201984 | |
07881,41.120816,-74.890305,16,"{'type': 'Point', 'coordinates': [-74.890305, 41.120816]}",63.588111,0.2516193632485796 | |
07882,40.75264,-75.013787,14492,"{'type': 'Point', 'coordinates': [-75.013787, 40.75264]}",82.542,175.57122434639334 | |
07885,40.897202,-74.632355,10078,"{'type': 'Point', 'coordinates': [-74.632355, 40.897202]}",40.792693,247.05404960638415 | |
07901,40.714923,-74.366372,22806,"{'type': 'Point', 'coordinates': [-74.366372, 40.714923]}",16.542093,1378.66471915011 | |
07920,40.677383,-74.564513,26747,"{'type': 'Point', 'coordinates': [-74.564513, 40.677383]}",61.226514,436.85322342539376 | |
07921,40.656019,-74.678657,7621,"{'type': 'Point', 'coordinates': [-74.678657, 40.656019]}",49.861179,152.84436013837538 | |
07922,40.676365000000004,-74.424988,12246,"{'type': 'Point', 'coordinates': [-74.424988, 40.676365000000004]}",14.493289,844.9427869685065 | |
07924,40.730384,-74.592602,7534,"{'type': 'Point', 'coordinates': [-74.592602, 40.730384]}",31.392171,239.996144261574 | |
07926,40.801262,-74.570122,120,"{'type': 'Point', 'coordinates': [-74.570122, 40.801262]}",0.68606,174.91181529312306 | |
07927,40.821862,-74.45429,3403,"{'type': 'Point', 'coordinates': [-74.45429, 40.821862]}",5.045875,674.4122674461813 | |
07928,40.725986,-74.412612,19144,"{'type': 'Point', 'coordinates': [-74.412612, 40.725986]}",23.110794,828.3575198671236 | |
07930,40.781196,-74.683945,8559,"{'type': 'Point', 'coordinates': [-74.683945, 40.781196]}",65.973763,129.73339113610965 | |
07931,40.690465,-74.662245,3296,"{'type': 'Point', 'coordinates': [-74.662245, 40.690465]}",54.055947,60.973864725744235 | |
07932,40.777242,-74.392943,9868,"{'type': 'Point', 'coordinates': [-74.392943, 40.777242]}",18.135867,544.1151503812858 | |
07933,40.703916,-74.45953,3251,"{'type': 'Point', 'coordinates': [-74.45953, 40.703916]}",13.217495,245.96188612138684 | |
07934,40.722434,-74.674902,1501,"{'type': 'Point', 'coordinates': [-74.674902, 40.722434]}",9.370898,160.17675147035 | |
07935,40.736004,-74.445887,313,"{'type': 'Point', 'coordinates': [-74.445887, 40.736004]}",6.234915,50.20116553313076 | |
07936,40.818553,-74.363742,11157,"{'type': 'Point', 'coordinates': [-74.363742, 40.818553]}",21.095265,528.8864586436814 | |
07939,40.667382,-74.55390799999999,228,"{'type': 'Point', 'coordinates': [-74.55390799999999, 40.667382]}",1.063713,214.3435306327929 | |
07940,40.760175,-74.41918100000001,17278,"{'type': 'Point', 'coordinates': [-74.41918100000001, 40.760175]}",12.096805,1428.3110292345789 | |
07945,40.781948,-74.599501,9539,"{'type': 'Point', 'coordinates': [-74.599501, 40.781948]}",49.3149,193.4303831093645 | |
07946,40.677709,-74.508538,3144,"{'type': 'Point', 'coordinates': [-74.508538, 40.677709]}",10.896428,288.53492171930105 | |
07950,40.846026,-74.482314,19564,"{'type': 'Point', 'coordinates': [-74.482314, 40.846026]}",23.779282,822.7329992554023 | |
07960,40.784201,-74.500025,43747,"{'type': 'Point', 'coordinates': [-74.500025, 40.784201]}",91.598205,477.5966952627511 | |
07961,40.78062,-74.43274100000001,4,"{'type': 'Point', 'coordinates': [-74.43274100000001, 40.78062]}",0.105675,37.85190442394133 | |
07970,40.808084,-74.572929,117,"{'type': 'Point', 'coordinates': [-74.572929, 40.808084]}",0.632533,184.97058651485378 | |
07974,40.696919,-74.403853,11768,"{'type': 'Point', 'coordinates': [-74.403853, 40.696919]}",10.402093,1131.3107852429314 | |
07976,40.72806,-74.479344,754,"{'type': 'Point', 'coordinates': [-74.479344, 40.72806]}",19.372097,38.921960797532655 | |
07977,40.705193,-74.67008,669,"{'type': 'Point', 'coordinates': [-74.67008, 40.705193]}",3.85928,173.34839659211045 | |
07979,40.700644,-74.730118,589,"{'type': 'Point', 'coordinates': [-74.730118, 40.700644]}",6.309039,93.3581168225462 | |
07980,40.680423,-74.488915,2307,"{'type': 'Point', 'coordinates': [-74.488915, 40.680423]}",7.12501,323.7890192434818 | |
07981,40.820383,-74.42241800000001,8865,"{'type': 'Point', 'coordinates': [-74.42241800000001, 40.820383]}",17.888631,495.566150366677 | |
08001,39.54788,-75.346384,844,"{'type': 'Point', 'coordinates': [-75.346384, 39.54788]}",6.481461,130.21755434461457 | |
08002,39.931978,-75.027557,22274,"{'type': 'Point', 'coordinates': [-75.027557, 39.931978]}",18.957696,1174.9318060591331 | |
08003,39.882703,-74.972036,30629,"{'type': 'Point', 'coordinates': [-74.972036, 39.882703]}",28.709185,1066.8711076263571 | |
08004,39.764747,-74.870626,12350,"{'type': 'Point', 'coordinates': [-74.870626, 39.764747]}",32.547216,379.44873687506794 | |
08005,39.767727,-74.312588,22448,"{'type': 'Point', 'coordinates': [-74.312588, 39.767727]}",125.613853,178.7064043008059 | |
08006,39.752390999999996,-74.10528199999999,518,"{'type': 'Point', 'coordinates': [-74.10528199999999, 39.752390999999996]}",3.48005,148.84843608568843 | |
08007,39.865790000000004,-75.05374499999999,5250,"{'type': 'Point', 'coordinates': [-75.05374499999999, 39.865790000000004]}",3.326739,1578.1219987501274 | |
08008,39.542598999999996,-74.298174,6975,"{'type': 'Point', 'coordinates': [-74.298174, 39.542598999999996]}",100.084584,69.69105252013637 | |
08009,39.760656,-74.93285999999999,12854,"{'type': 'Point', 'coordinates': [-74.93285999999999, 39.760656]}",35.91768,357.87389385951434 | |
08010,40.055172999999996,-74.916925,11539,"{'type': 'Point', 'coordinates': [-74.916925, 40.055172999999996]}",11.30878,1020.357633626262 | |
08011,39.972767,-74.71292700000001,33,"{'type': 'Point', 'coordinates': [-74.71292700000001, 39.972767]}",0.338945,97.36092876425379 | |
08012,39.783815000000004,-75.05606800000001,38992,"{'type': 'Point', 'coordinates': [-75.05606800000001, 39.783815000000004]}",39.237348,993.7470799504595 | |
08014,39.815906,-75.34833499999999,504,"{'type': 'Point', 'coordinates': [-75.34833499999999, 39.815906]}",13.730049,36.70780781627218 | |
08015,39.931536,-74.54372,20763,"{'type': 'Point', 'coordinates': [-74.54372, 39.931536]}",127.407771,162.96494191080387 | |
08016,40.069521,-74.824196,33540,"{'type': 'Point', 'coordinates': [-74.824196, 40.069521]}",62.360558,537.839959674511 | |
08019,39.777295,-74.53421800000001,925,"{'type': 'Point', 'coordinates': [-74.53421800000001, 39.777295]}",159.5494,5.79757742743 | |
08020,39.791562,-75.22414,2201,"{'type': 'Point', 'coordinates': [-75.22414, 39.791562]}",11.522653,191.01503794308482 | |
08021,39.80727,-75.006883,44833,"{'type': 'Point', 'coordinates': [-75.006883, 39.80727]}",34.101761,1314.682839985888 | |
08022,40.06759,-74.705741,8783,"{'type': 'Point', 'coordinates': [-74.705741, 40.06759]}",57.016743,154.04247134916142 | |
08023,39.686699,-75.496274,451,"{'type': 'Point', 'coordinates': [-75.496274, 39.686699]}",2.739698,164.6166840286776 | |
08026,39.832871999999995,-74.967175,2274,"{'type': 'Point', 'coordinates': [-74.967175, 39.832871999999995]}",5.678755,400.43988515088256 | |
08027,39.834582,-75.288914,4888,"{'type': 'Point', 'coordinates': [-75.288914, 39.834582]}",26.780972,182.5176472310266 | |
08028,39.695889,-75.12145699999999,20078,"{'type': 'Point', 'coordinates': [-75.12145699999999, 39.695889]}",39.926133,502.87865343733637 | |
08029,39.840937,-75.067211,4784,"{'type': 'Point', 'coordinates': [-75.067211, 39.840937]}",2.709151,1765.8668712079912 | |
08030,39.888896,-75.118078,13410,"{'type': 'Point', 'coordinates': [-75.118078, 39.888896]}",8.064701,1662.8018819296587 | |
08031,39.866356,-75.09467,11584,"{'type': 'Point', 'coordinates': [-75.09467, 39.866356]}",8.176731,1416.703080974536 | |
08033,39.892421,-75.036651,16261,"{'type': 'Point', 'coordinates': [-75.036651, 39.892421]}",10.231308,1589.3373554974594 | |
08034,39.9061,-75.000375,18151,"{'type': 'Point', 'coordinates': [-75.000375, 39.9061]}",15.360456,1181.6706483192947 | |
08035,39.879127000000004,-75.06591800000001,7566,"{'type': 'Point', 'coordinates': [-75.06591800000001, 39.879127000000004]}",4.107971,1841.785153790034 | |
08036,39.970569,-74.83220899999999,5917,"{'type': 'Point', 'coordinates': [-74.83220899999999, 39.970569]}",16.535425,357.8377937065422 | |
08037,39.639959000000005,-74.75932,24308,"{'type': 'Point', 'coordinates': [-74.75932, 39.639959000000005]}",306.875642,79.21123958088533 | |
08038,39.470003999999996,-75.490291,124,"{'type': 'Point', 'coordinates': [-75.490291, 39.470003999999996]}",54.578234,2.271967979029882 | |
08039,39.685659,-75.277309,137,"{'type': 'Point', 'coordinates': [-75.277309, 39.685659]}",2.670832,51.29487740149886 | |
08041,40.038525,-74.684101,1002,"{'type': 'Point', 'coordinates': [-74.684101, 40.038525]}",29.535619,33.92513967626682 | |
08042,40.015388,-74.662288,203,"{'type': 'Point', 'coordinates': [-74.662288, 40.015388]}",1.720015,118.02222655034984 | |
08043,39.848508,-74.953505,29131,"{'type': 'Point', 'coordinates': [-74.953505, 39.848508]}",30.108284,967.5410262504498 | |
08045,39.867201,-75.02977,2909,"{'type': 'Point', 'coordinates': [-75.02977, 39.867201]}",3.370776,863.0060259121341 | |
08046,40.02795,-74.886984,31587,"{'type': 'Point', 'coordinates': [-74.886984, 40.02795]}",19.650626,1607.4297073284079 | |
08048,39.958855,-74.80247800000001,12495,"{'type': 'Point', 'coordinates': [-74.80247800000001, 39.958855]}",34.421243,363.00257954077955 | |
08049,39.854411999999996,-75.038467,5350,"{'type': 'Point', 'coordinates': [-75.038467, 39.854411999999996]}",3.260392,1640.9069829640116 | |
08050,39.712654,-74.231107,24285,"{'type': 'Point', 'coordinates': [-74.231107, 39.712654]}",95.849038,253.36717516142417 | |
08051,39.783875,-75.175825,10758,"{'type': 'Point', 'coordinates': [-75.175825, 39.783875]}",9.805844,1097.1008716842732 | |
08052,39.952381,-74.994896,19172,"{'type': 'Point', 'coordinates': [-74.994896, 39.952381]}",9.92699,1931.3004243985338 | |
08053,39.856677000000005,-74.90080999999999,45538,"{'type': 'Point', 'coordinates': [-74.90080999999999, 39.856677000000005]}",76.605965,594.4445709939167 | |
08054,39.948992,-74.900247,41864,"{'type': 'Point', 'coordinates': [-74.900247, 39.948992]}",56.943452,735.185495954829 | |
08055,39.862695,-74.822311,27179,"{'type': 'Point', 'coordinates': [-74.822311, 39.862695]}",106.407177,255.42450017257764 | |
08056,39.783669,-75.255275,4736,"{'type': 'Point', 'coordinates': [-75.255275, 39.783669]}",23.977956,197.51475063178864 | |
08057,39.979658,-74.94130799999999,21090,"{'type': 'Point', 'coordinates': [-74.94130799999999, 39.979658]}",40.093618,526.0188791143768 | |
08059,39.884825,-75.092667,5612,"{'type': 'Point', 'coordinates': [-75.092667, 39.884825]}",3.32844,1686.075158332432 | |
08060,40.007737,-74.790088,24713,"{'type': 'Point', 'coordinates': [-74.790088, 40.007737]}",58.318988,423.7556385580628 | |
08061,39.79887,-75.205365,2672,"{'type': 'Point', 'coordinates': [-75.205365, 39.79887]}",4.344016,615.0990235763404 | |
08062,39.716096,-75.21926500000001,15756,"{'type': 'Point', 'coordinates': [-75.21926500000001, 39.716096]}",79.066724,199.27472902507003 | |
08063,39.867297,-75.185621,3102,"{'type': 'Point', 'coordinates': [-75.185621, 39.867297]}",3.793119,817.7966470337471 | |
08064,39.962745,-74.64054,311,"{'type': 'Point', 'coordinates': [-74.64054, 39.962745]}",3.376439,92.1088756527217 | |
08065,40.002615000000006,-75.035273,7398,"{'type': 'Point', 'coordinates': [-75.035273, 40.002615000000006]}",6.682079,1107.1404573337131 | |
08066,39.834292,-75.22835500000001,8437,"{'type': 'Point', 'coordinates': [-75.22835500000001, 39.834292]}",15.260528,552.8642259297974 | |
08067,39.739193,-75.411406,1635,"{'type': 'Point', 'coordinates': [-75.411406, 39.739193]}",51.972917,31.458692226183878 | |
08068,39.961401,-74.66591700000001,6727,"{'type': 'Point', 'coordinates': [-74.66591700000001, 39.961401]}",60.703674,110.81701578721578 | |
08069,39.699258,-75.44518000000001,13076,"{'type': 'Point', 'coordinates': [-75.44518000000001, 39.699258]}",45.836914,285.27225894832276 | |
08070,39.619131,-75.51609599999999,13059,"{'type': 'Point', 'coordinates': [-75.51609599999999, 39.619131]}",61.505812,212.3213981794111 | |
08071,39.731894,-75.133534,9551,"{'type': 'Point', 'coordinates': [-75.133534, 39.731894]}",8.723775,1094.8242016787458 | |
08072,39.544308,-75.418704,225,"{'type': 'Point', 'coordinates': [-75.418704, 39.544308]}",0.630692,356.7509973172325 | |
08073,40.009546,-74.86681999999999,203,"{'type': 'Point', 'coordinates': [-74.86681999999999, 40.009546]}",0.248161,818.0173355200858 | |
08074,39.716165999999994,-75.16344000000001,58,"{'type': 'Point', 'coordinates': [-75.16344000000001, 39.716165999999994]}",0.888613,65.27025825640634 | |
08075,40.029676,-74.94899699999999,28894,"{'type': 'Point', 'coordinates': [-74.94899699999999, 40.029676]}",30.175199,957.5413239196865 | |
08077,40.000161999999996,-74.991632,18307,"{'type': 'Point', 'coordinates': [-74.991632, 40.000161999999996]}",23.070271,793.5320742439479 | |
08078,39.853411,-75.075502,8385,"{'type': 'Point', 'coordinates': [-75.075502, 39.853411]}",5.348761,1567.6527704266466 | |
08079,39.542408,-75.43168399999999,10987,"{'type': 'Point', 'coordinates': [-75.43168399999999, 39.542408]}",259.088679,42.4063299191857 | |
08080,39.757353,-75.122043,37433,"{'type': 'Point', 'coordinates': [-75.122043, 39.757353]}",75.233023,497.5607586578038 | |
08081,39.732942,-74.97665699999999,50589,"{'type': 'Point', 'coordinates': [-74.97665699999999, 39.732942]}",69.909092,723.639780645413 | |
08083,39.841265,-75.028593,9455,"{'type': 'Point', 'coordinates': [-75.028593, 39.841265]}",6.514608,1451.3536347850861 | |
08084,39.828981,-75.01553299999999,7040,"{'type': 'Point', 'coordinates': [-75.01553299999999, 39.828981]}",4.04496,1740.4374826945138 | |
08085,39.761162,-75.32410899999999,18737,"{'type': 'Point', 'coordinates': [-75.32410899999999, 39.761162]}",127.740548,146.68012853679005 | |
08086,39.854728,-75.198686,7699,"{'type': 'Point', 'coordinates': [-75.198686, 39.854728]}",23.056938,333.9125082437226 | |
08087,39.596035,-74.380612,24104,"{'type': 'Point', 'coordinates': [-74.380612, 39.596035]}",147.011741,163.9596935322329 | |
08088,39.851467,-74.693412,24664,"{'type': 'Point', 'coordinates': [-74.693412, 39.851467]}",363.464008,67.85816327651348 | |
08089,39.721197,-74.826654,4253,"{'type': 'Point', 'coordinates': [-74.826654, 39.721197]}",49.74138,85.50225184745578 | |
08090,39.799071999999995,-75.15069799999999,8358,"{'type': 'Point', 'coordinates': [-75.15069799999999, 39.799071999999995]}",6.751949,1237.864800222869 | |
08091,39.807116,-74.924178,5357,"{'type': 'Point', 'coordinates': [-74.924178, 39.807116]}",8.67071,617.8271444898976 | |
08092,39.647182,-74.284599,3673,"{'type': 'Point', 'coordinates': [-74.284599, 39.647182]}",67.698955,54.25489950324935 | |
08093,39.864651,-75.137475,9741,"{'type': 'Point', 'coordinates': [-75.137475, 39.864651]}",14.393806,676.7494295810295 | |
08094,39.650587,-74.959292,39940,"{'type': 'Point', 'coordinates': [-74.959292, 39.650587]}",139.193526,286.9386324763409 | |
08095,39.649297999999995,-74.858006,236,"{'type': 'Point', 'coordinates': [-74.858006, 39.649297999999995]}",5.355382,44.067818131367666 | |
08096,39.826978000000004,-75.126536,36116,"{'type': 'Point', 'coordinates': [-75.126536, 39.826978000000004]}",39.998007,902.9449892340886 | |
08097,39.81329,-75.15065,3293,"{'type': 'Point', 'coordinates': [-75.15065, 39.81329]}",3.594081,916.2286548355477 | |
08098,39.639542,-75.329841,9090,"{'type': 'Point', 'coordinates': [-75.329841, 39.639542]}",147.32826,61.6989571450854 | |
08102,39.952558,-75.120999,7565,"{'type': 'Point', 'coordinates': [-75.120999, 39.952558]}",3.388841,2232.326627304143 | |
08103,39.935834,-75.11392099999999,15190,"{'type': 'Point', 'coordinates': [-75.11392099999999, 39.935834]}",6.702895,2266.184984249343 | |
08104,39.916435,-75.113179,23851,"{'type': 'Point', 'coordinates': [-75.113179, 39.916435]}",9.189867,2595.3585617724393 | |
08105,39.950340000000004,-75.096278,29077,"{'type': 'Point', 'coordinates': [-75.096278, 39.950340000000004]}",7.195276,4041.123648349278 | |
08106,39.89152,-75.074085,9874,"{'type': 'Point', 'coordinates': [-75.074085, 39.89152]}",4.335862,2277.2865003544857 | |
08107,39.907844,-75.08353699999999,13675,"{'type': 'Point', 'coordinates': [-75.08353699999999, 39.907844]}",4.944449,2765.727788880015 | |
08108,39.914668,-75.060862,18045,"{'type': 'Point', 'coordinates': [-75.060862, 39.914668]}",7.364233,2450.3570161346065 | |
08109,39.951291,-75.050129,22407,"{'type': 'Point', 'coordinates': [-75.050129, 39.951291]}",12.946108,1730.7904429655614 | |
08110,39.971893,-75.05787600000001,19008,"{'type': 'Point', 'coordinates': [-75.05787600000001, 39.971893]}",20.639692,920.9439753267636 | |
08201,39.423563,-74.493025,10007,"{'type': 'Point', 'coordinates': [-74.493025, 39.423563]}",19.347358,517.228243773646 | |
08202,39.095265000000005,-74.731415,1444,"{'type': 'Point', 'coordinates': [-74.731415, 39.095265000000005]}",27.389664,52.72061752929864 | |
08203,39.425627,-74.392933,9454,"{'type': 'Point', 'coordinates': [-74.392933, 39.425627]}",34.514526,273.91365594880256 | |
08204,38.971104,-74.920999,18557,"{'type': 'Point', 'coordinates': [-74.920999, 38.971104]}",61.209312,303.1728244225323 | |
08205,39.482,-74.452637,28626,"{'type': 'Point', 'coordinates': [-74.452637, 39.482]}",134.002261,213.62326117766028 | |
08210,39.12175,-74.83443,17167,"{'type': 'Point', 'coordinates': [-74.83443, 39.12175]}",197.20413,87.0519293891056 | |
08212,38.933446,-74.95389499999999,294,"{'type': 'Point', 'coordinates': [-74.95389499999999, 38.933446]}",4.320268,68.05133385243693 | |
08215,39.586506,-74.56365600000001,13442,"{'type': 'Point', 'coordinates': [-74.56365600000001, 39.586506]}",309.605572,43.41653127612316 | |
08217,39.574192,-74.719915,70,"{'type': 'Point', 'coordinates': [-74.719915, 39.574192]}",0.119929,583.6786765502923 | |
08221,39.343718,-74.571049,7092,"{'type': 'Point', 'coordinates': [-74.571049, 39.343718]}",11.022676,643.4009309536087 | |
08223,39.27875,-74.655703,4125,"{'type': 'Point', 'coordinates': [-74.655703, 39.27875]}",40.71305,101.31886459010072 | |
08224,39.606361,-74.46671500000001,573,"{'type': 'Point', 'coordinates': [-74.46671500000001, 39.606361]}",12.596216,45.48985187297519 | |
08225,39.362668,-74.541483,8659,"{'type': 'Point', 'coordinates': [-74.541483, 39.362668]}",20.224186,428.1507300219648 | |
08226,39.263688,-74.607792,11701,"{'type': 'Point', 'coordinates': [-74.607792, 39.263688]}",33.222947,352.1963298439479 | |
08230,39.207938,-74.72360400000001,5599,"{'type': 'Point', 'coordinates': [-74.72360400000001, 39.207938]}",33.106475,169.12099521317202 | |
08232,39.387525,-74.515196,19292,"{'type': 'Point', 'coordinates': [-74.515196, 39.387525]}",20.872975,924.2573231654807 | |
08234,39.388393,-74.620728,42532,"{'type': 'Point', 'coordinates': [-74.620728, 39.388393]}",164.416187,258.6849918858658 | |
08240,39.488059,-74.533973,2371,"{'type': 'Point', 'coordinates': [-74.533973, 39.488059]}",4.296375,551.8605801402344 | |
08241,39.534797999999995,-74.476099,1103,"{'type': 'Point', 'coordinates': [-74.476099, 39.534797999999995]}",21.911014,50.33997970153275 | |
08242,39.018576,-74.88890500000001,3216,"{'type': 'Point', 'coordinates': [-74.88890500000001, 39.018576]}",13.232554,243.03698288327408 | |
08243,39.151013,-74.69631899999999,2114,"{'type': 'Point', 'coordinates': [-74.69631899999999, 39.151013]}",11.047797,191.35036605035376 | |
08244,39.318968,-74.588458,10849,"{'type': 'Point', 'coordinates': [-74.588458, 39.318968]}",22.933137,473.07091044718396 | |
08246,39.180965,-74.76580600000001,92,"{'type': 'Point', 'coordinates': [-74.76580600000001, 39.180965]}",0.839987,109.52550456138012 | |
08247,39.052267,-74.78362800000001,925,"{'type': 'Point', 'coordinates': [-74.78362800000001, 39.052267]}",24.033074,38.488626132470614 | |
08248,39.195541,-74.656952,158,"{'type': 'Point', 'coordinates': [-74.656952, 39.195541]}",3.800569,41.57272240025112 | |
08251,39.027715,-74.929514,10364,"{'type': 'Point', 'coordinates': [-74.929514, 39.027715]}",19.998545,518.2377017928054 | |
08260,38.998346999999995,-74.84330200000001,13661,"{'type': 'Point', 'coordinates': [-74.84330200000001, 38.998346999999995]}",64.233064,212.67862918698694 | |
08270,39.271778999999995,-74.785972,8492,"{'type': 'Point', 'coordinates': [-74.785972, 39.271778999999995]}",312.604454,27.165319915755266 | |
08302,39.438613000000004,-75.260646,46872,"{'type': 'Point', 'coordinates': [-75.260646, 39.438613000000004]}",383.489046,122.22513390904001 | |
08310,39.531437,-74.89681,1670,"{'type': 'Point', 'coordinates': [-74.89681, 39.531437]}",29.394438,56.81346926925427 | |
08311,39.327866,-75.204035,2057,"{'type': 'Point', 'coordinates': [-75.204035, 39.327866]}",74.946707,27.44616918258997 | |
08312,39.663736,-75.077505,7875,"{'type': 'Point', 'coordinates': [-75.077505, 39.663736]}",15.524481,507.26333460036443 | |
08314,39.221854,-74.940368,2511,"{'type': 'Point', 'coordinates': [-74.940368, 39.221854]}",34.411171,72.97048972846636 | |
08316,39.269532,-74.949689,400,"{'type': 'Point', 'coordinates': [-74.949689, 39.269532]}",10.207262,39.18778610757713 | |
08317,39.400688,-74.829634,1344,"{'type': 'Point', 'coordinates': [-74.829634, 39.400688]}",18.706731,71.84579710907266 | |
08318,39.557728000000004,-75.177717,12702,"{'type': 'Point', 'coordinates': [-75.177717, 39.557728000000004]}",208.857466,60.81659537131414 | |
08319,39.370409,-74.810816,1253,"{'type': 'Point', 'coordinates': [-74.810816, 39.370409]}",36.619628,34.2166228449945 | |
08320,39.38508,-75.1606,1256,"{'type': 'Point', 'coordinates': [-75.1606, 39.38508]}",1.093686,1148.4100555369641 | |
08321,39.223596,-75.143169,247,"{'type': 'Point', 'coordinates': [-75.143169, 39.223596]}",29.234295,8.448980897264668 | |
08322,39.611102,-75.048771,10524,"{'type': 'Point', 'coordinates': [-75.048771, 39.611102]}",74.811503,140.67355390520626 | |
08323,39.396273,-75.367551,804,"{'type': 'Point', 'coordinates': [-75.367551, 39.396273]}",48.646671,16.527338530523497 | |
08324,39.214626,-74.996612,526,"{'type': 'Point', 'coordinates': [-74.996612, 39.214626]}",22.477411,23.401271614422143 | |
08326,39.537676,-74.92827,1761,"{'type': 'Point', 'coordinates': [-74.92827, 39.537676]}",8.928416,197.23543347442592 | |
08327,39.251531,-74.962812,3070,"{'type': 'Point', 'coordinates': [-74.962812, 39.251531]}",16.673887,184.12023543160632 | |
08328,39.578361,-75.058737,1347,"{'type': 'Point', 'coordinates': [-75.058737, 39.578361]}",5.814183,231.67485440344757 | |
08329,39.275991999999995,-75.007675,221,"{'type': 'Point', 'coordinates': [-75.007675, 39.275991999999995]}",6.834891,32.334092818744296 | |
08330,39.481603,-74.73740699999999,28167,"{'type': 'Point', 'coordinates': [-74.73740699999999, 39.481603]}",317.397459,88.74362160536388 | |
08332,39.377041,-75.023374,36768,"{'type': 'Point', 'coordinates': [-75.023374, 39.377041]}",284.782908,129.10887194114892 | |
08340,39.437232,-74.876405,979,"{'type': 'Point', 'coordinates': [-74.876405, 39.437232]}",34.161764,28.65777071699225 | |
08341,39.525424,-74.95302,2239,"{'type': 'Point', 'coordinates': [-74.95302, 39.525424]}",6.337315,353.3041990180384 | |
08343,39.636348,-75.16756,5030,"{'type': 'Point', 'coordinates': [-75.16756, 39.636348]}",86.665512,58.039234799651325 | |
08344,39.561745,-74.986037,5847,"{'type': 'Point', 'coordinates': [-74.986037, 39.561745]}",64.586243,90.53011490388131 | |
08345,39.282427,-75.160409,805,"{'type': 'Point', 'coordinates': [-75.160409, 39.282427]}",58.375552,13.790019493091902 | |
08346,39.566055,-74.846334,843,"{'type': 'Point', 'coordinates': [-74.846334, 39.566055]}",9.818703,85.85655355905969 | |
08348,39.309933,-74.971365,275,"{'type': 'Point', 'coordinates': [-74.971365, 39.309933]}",4.031685,68.20969396170582 | |
08349,39.273865,-75.07130699999999,2347,"{'type': 'Point', 'coordinates': [-75.07130699999999, 39.273865]}",113.375809,20.701065074649215 | |
08350,39.488101,-74.88202,825,"{'type': 'Point', 'coordinates': [-74.88202, 39.488101]}",10.376158,79.50919791313895 | |
08352,39.475732,-75.12798000000001,448,"{'type': 'Point', 'coordinates': [-75.12798000000001, 39.475732]}",0.761762,588.1101971481907 | |
08353,39.462418,-75.29244,516,"{'type': 'Point', 'coordinates': [-75.29244, 39.462418]}",3.117707,165.506251870365 | |
08360,39.494482,-75.00577,43355,"{'type': 'Point', 'coordinates': [-75.00577, 39.494482]}",112.058202,386.8971590316968 | |
08361,39.449369,-74.958827,17352,"{'type': 'Point', 'coordinates': [-74.958827, 39.449369]}",79.102074,219.36213707873196 | |
08401,39.384718,-74.450577,39554,"{'type': 'Point', 'coordinates': [-74.450577, 39.384718]}",43.60303,907.1387928774675 | |
08402,39.326384999999995,-74.504473,6354,"{'type': 'Point', 'coordinates': [-74.504473, 39.326384999999995]}",6.791073,935.6400674827086 | |
08403,39.318497,-74.542405,997,"{'type': 'Point', 'coordinates': [-74.542405, 39.318497]}",9.564454,104.24013749242769 | |
08406,39.34156,-74.480862,10650,"{'type': 'Point', 'coordinates': [-74.480862, 39.34156]}",9.855065,1080.6625831488682 | |
08501,40.163841,-74.566056,6582,"{'type': 'Point', 'coordinates': [-74.566056, 40.163841]}",71.290663,92.32625596426281 | |
08502,40.448217,-74.653244,11317,"{'type': 'Point', 'coordinates': [-74.653244, 40.448217]}",33.263809,340.21960623932154 | |
08505,40.10309,-74.73357299999999,17736,"{'type': 'Point', 'coordinates': [-74.73357299999999, 40.10309]}",56.716387,312.7138546395771 | |
08510,40.191477,-74.416813,5231,"{'type': 'Point', 'coordinates': [-74.416813, 40.191477]}",50.2402,104.11980844025302 | |
08511,40.042379,-74.557037,826,"{'type': 'Point', 'coordinates': [-74.557037, 40.042379]}",6.865096,120.31878359749084 | |
08512,40.324357,-74.525526,10105,"{'type': 'Point', 'coordinates': [-74.525526, 40.324357]}",55.574626,181.82758440875517 | |
08514,40.134246000000005,-74.491742,4477,"{'type': 'Point', 'coordinates': [-74.491742, 40.134246000000005]}",69.178165,64.71695223485618 | |
08515,40.119177,-74.662894,4637,"{'type': 'Point', 'coordinates': [-74.662894, 40.119177]}",54.843895,84.54906421216072 | |
08518,40.115428,-74.802088,4986,"{'type': 'Point', 'coordinates': [-74.802088, 40.115428]}",5.49613,907.1837820430012 | |
08520,40.254785999999996,-74.536573,27869,"{'type': 'Point', 'coordinates': [-74.536573, 40.254785999999996]}",45.752859,609.1204049128384 | |
08525,40.397715999999996,-74.77951999999999,4767,"{'type': 'Point', 'coordinates': [-74.77951999999999, 40.397715999999996]}",57.685217,82.6381566701916 | |
08527,40.108665,-74.358602,54392,"{'type': 'Point', 'coordinates': [-74.358602, 40.108665]}",223.170735,243.7237122510709 | |
08528,40.387108000000005,-74.618915,315,"{'type': 'Point', 'coordinates': [-74.618915, 40.387108000000005]}",1.840007,171.1950008885836 | |
08530,40.370020000000004,-74.910161,8071,"{'type': 'Point', 'coordinates': [-74.910161, 40.370020000000004]}",66.650814,121.09379489348773 | |
08533,40.071031,-74.500141,6945,"{'type': 'Point', 'coordinates': [-74.500141, 40.071031]}",48.736051,142.50231312340017 | |
08534,40.329421999999994,-74.792789,12929,"{'type': 'Point', 'coordinates': [-74.792789, 40.329421999999994]}",57.404202,225.2274145366571 | |
08535,40.244446999999994,-74.43160400000001,5385,"{'type': 'Point', 'coordinates': [-74.43160400000001, 40.244446999999994]}",47.269301,113.92171845316689 | |
08536,40.332267,-74.581026,20073,"{'type': 'Point', 'coordinates': [-74.581026, 40.332267]}",19.408671,1034.228464174595 | |
08540,40.363009999999996,-74.655321,47115,"{'type': 'Point', 'coordinates': [-74.655321, 40.363009999999996]}",137.11311,343.6214086311659 | |
08542,40.352913,-74.660366,5189,"{'type': 'Point', 'coordinates': [-74.660366, 40.352913]}",1.322833,3922.641784715078 | |
08550,40.280155,-74.614641,19445,"{'type': 'Point', 'coordinates': [-74.614641, 40.280155]}",49.641531,391.7083056926669 | |
08551,40.447111,-74.837285,5532,"{'type': 'Point', 'coordinates': [-74.837285, 40.447111]}",70.162289,78.84577425916079 | |
08553,40.400347,-74.638922,682,"{'type': 'Point', 'coordinates': [-74.638922, 40.400347]}",1.590383,428.82752142094074 | |
08554,40.117217,-74.77784399999999,3818,"{'type': 'Point', 'coordinates': [-74.77784399999999, 40.117217]}",3.152606,1211.0615788969506 | |
08555,40.218286,-74.470792,877,"{'type': 'Point', 'coordinates': [-74.470792, 40.218286]}",4.389837,199.77962735290626 | |
08558,40.413410999999996,-74.703745,6629,"{'type': 'Point', 'coordinates': [-74.703745, 40.413410999999996]}",43.388795,152.78138053845467 | |
08559,40.429224,-74.97906400000001,4982,"{'type': 'Point', 'coordinates': [-74.97906400000001, 40.429224]}",105.690817,47.13749161386462 | |
08560,40.31573,-74.857279,3656,"{'type': 'Point', 'coordinates': [-74.857279, 40.31573]}",36.58712,99.92587555402011 | |
08561,40.251108,-74.581647,226,"{'type': 'Point', 'coordinates': [-74.581647, 40.251108]}",3.131193,72.17696258263224 | |
08562,40.061957,-74.59187800000001,5371,"{'type': 'Point', 'coordinates': [-74.59187800000001, 40.061957]}",44.811385,119.85793342473123 | |
08608,40.219297,-74.76777,983,"{'type': 'Point', 'coordinates': [-74.76777, 40.219297]}",0.999311,983.677753972487 | |
08609,40.225747,-74.74090600000001,13546,"{'type': 'Point', 'coordinates': [-74.74090600000001, 40.225747]}",3.552082,3813.5380883662033 | |
08610,40.191174,-74.716603,30468,"{'type': 'Point', 'coordinates': [-74.716603, 40.191174]}",20.56958,1481.2164370881662 | |
08611,40.183615,-74.740319,28038,"{'type': 'Point', 'coordinates': [-74.740319, 40.183615]}",8.431407,3325.4236214667376 | |
08618,40.249347,-74.789973,38229,"{'type': 'Point', 'coordinates': [-74.789973, 40.249347]}",16.627695,2299.116022996573 | |
08619,40.242301,-74.69640799999999,22723,"{'type': 'Point', 'coordinates': [-74.69640799999999, 40.242301]}",26.090802,870.919951023353 | |
08620,40.170048,-74.651278,14693,"{'type': 'Point', 'coordinates': [-74.651278, 40.170048]}",23.50119,625.2023833686719 | |
08628,40.264418,-74.827047,9054,"{'type': 'Point', 'coordinates': [-74.827047, 40.264418]}",18.895427,479.16355634619947 | |
08629,40.220669,-74.731201,12331,"{'type': 'Point', 'coordinates': [-74.731201, 40.220669]}",2.06228,5979.304459142309 | |
08638,40.254018,-74.763385,22832,"{'type': 'Point', 'coordinates': [-74.763385, 40.254018]}",14.969937,1525.1901193705758 | |
08640,40.004416,-74.591269,7716,"{'type': 'Point', 'coordinates': [-74.591269, 40.004416]}",56.024441,137.72560443753468 | |
08641,40.020342,-74.590238,3553,"{'type': 'Point', 'coordinates': [-74.590238, 40.020342]}",13.168688,269.80668081740566 | |
08648,40.284490000000005,-74.717487,32263,"{'type': 'Point', 'coordinates': [-74.717487, 40.284490000000005]}",43.819585,736.2689537109948 | |
08690,40.224505,-74.660279,18567,"{'type': 'Point', 'coordinates': [-74.660279, 40.224505]}",18.422457,1007.846021841712 | |
08691,40.208731,-74.592097,15104,"{'type': 'Point', 'coordinates': [-74.592097, 40.208731]}",68.660268,219.98166392243036 | |
08701,40.077063,-74.200373,92843,"{'type': 'Point', 'coordinates': [-74.200373, 40.077063]}",64.777534,1433.2592531231583 | |
08720,40.135366,-74.09805,843,"{'type': 'Point', 'coordinates': [-74.09805, 40.135366]}",3.772449,223.46226549384764 | |
08721,39.902019,-74.15266899999999,20512,"{'type': 'Point', 'coordinates': [-74.15266899999999, 39.902019]}",51.984925,394.57592754053223 | |
08722,39.928405,-74.202189,11045,"{'type': 'Point', 'coordinates': [-74.202189, 39.928405]}",7.219781,1529.8247966247175 | |
08723,40.038584,-74.1116,31641,"{'type': 'Point', 'coordinates': [-74.1116, 40.038584]}",41.045173,770.882364169838 | |
08724,40.086234999999995,-74.11085,42352,"{'type': 'Point', 'coordinates': [-74.11085, 40.086234999999995]}",40.090581,1056.407738266502 | |
08730,40.105375,-74.06342099999999,4774,"{'type': 'Point', 'coordinates': [-74.06342099999999, 40.105375]}",6.137727,777.8123725607215 | |
08731,39.865669,-74.258864,20009,"{'type': 'Point', 'coordinates': [-74.258864, 39.865669]}",129.46962,154.5459081443199 | |
08732,39.941804,-74.143842,1484,"{'type': 'Point', 'coordinates': [-74.143842, 39.941804]}",2.202737,673.7073014163743 | |
08733,40.023721,-74.32082,2752,"{'type': 'Point', 'coordinates': [-74.32082, 40.023721]}",9.710175,283.41404763559876 | |
08734,39.863814,-74.17014300000001,7651,"{'type': 'Point', 'coordinates': [-74.17014300000001, 39.863814]}",17.668997,433.0183541261567 | |
08735,39.982271000000004,-74.072918,3114,"{'type': 'Point', 'coordinates': [-74.072918, 39.982271000000004]}",8.810173,353.45503431090395 | |
08736,40.120018,-74.05325699999999,12578,"{'type': 'Point', 'coordinates': [-74.05325699999999, 40.120018]}",15.659798,803.2032086237639 | |
08738,40.022724,-74.05904,1042,"{'type': 'Point', 'coordinates': [-74.05904, 40.022724]}",8.421765,123.72703346626271 | |
08740,39.929377,-74.135661,2010,"{'type': 'Point', 'coordinates': [-74.135661, 39.929377]}",1.927148,1042.9920275972577 | |
08741,39.937631,-74.169158,2488,"{'type': 'Point', 'coordinates': [-74.169158, 39.937631]}",3.19992,777.5194379859496 | |
08742,40.080784,-74.059125,24405,"{'type': 'Point', 'coordinates': [-74.059125, 40.080784]}",19.112897,1276.8864918803256 | |
08750,40.133371999999994,-74.041501,3528,"{'type': 'Point', 'coordinates': [-74.041501, 40.133371999999994]}",5.963,591.6484990776455 | |
08751,39.951907,-74.08815,4212,"{'type': 'Point', 'coordinates': [-74.08815, 39.951907]}",7.835478,537.5549519761271 | |
08752,39.842467,-74.093447,2074,"{'type': 'Point', 'coordinates': [-74.093447, 39.842467]}",36.374638,57.017749564957874 | |
08753,39.979031,-74.16042900000001,63678,"{'type': 'Point', 'coordinates': [-74.16042900000001, 39.979031]}",71.15316,894.9426842040466 | |
08755,40.008534000000004,-74.22176800000001,25302,"{'type': 'Point', 'coordinates': [-74.22176800000001, 40.008534000000004]}",41.781251,605.582633224649 | |
08757,39.942397,-74.251072,33217,"{'type': 'Point', 'coordinates': [-74.251072, 39.942397]}",67.420415,492.68459709125193 | |
08758,39.77928,-74.238551,7043,"{'type': 'Point', 'coordinates': [-74.238551, 39.77928]}",35.909268,196.13320995571397 | |
08759,39.975287,-74.344727,33263,"{'type': 'Point', 'coordinates': [-74.344727, 39.975287]}",168.875925,196.96709285234115 | |
08801,40.622794,-74.886324,8551,"{'type': 'Point', 'coordinates': [-74.886324, 40.622794]}",42.701519,200.2504875763319 | |
08802,40.671021,-75.018015,4067,"{'type': 'Point', 'coordinates': [-75.018015, 40.671021]}",62.211128,65.37415621205261 | |
08804,40.646656,-75.09576,2771,"{'type': 'Point', 'coordinates': [-75.09576, 40.646656]}",32.135155,86.22955140561794 | |
08805,40.575282,-74.53466800000001,12254,"{'type': 'Point', 'coordinates': [-74.53466800000001, 40.575282]}",7.470069,1640.4132277760755 | |
08807,40.592434000000004,-74.61884,37972,"{'type': 'Point', 'coordinates': [-74.61884, 40.592434000000004]}",67.256272,564.5867496194259 | |
08808,40.73213,-75.049029,86,"{'type': 'Point', 'coordinates': [-75.049029, 40.73213]}",0.103377,831.9065169234937 | |
08809,40.651841,-74.934196,6421,"{'type': 'Point', 'coordinates': [-74.934196, 40.651841]}",22.354215,287.2388943203776 | |
08810,40.368285,-74.490999,8401,"{'type': 'Point', 'coordinates': [-74.490999, 40.368285]}",19.248758,436.4437435391936 | |
08812,40.598731,-74.47879300000001,14296,"{'type': 'Point', 'coordinates': [-74.47879300000001, 40.598731]}",13.650065,1047.3210200830545 | |
08816,40.429119,-74.416287,46298,"{'type': 'Point', 'coordinates': [-74.416287, 40.429119]}",54.55318,848.6764657898954 | |
08817,40.514655,-74.39310400000001,44621,"{'type': 'Point', 'coordinates': [-74.39310400000001, 40.514655]}",28.267553,1578.523616812534 | |
08820,40.576806,-74.36575,39590,"{'type': 'Point', 'coordinates': [-74.36575, 40.576806]}",26.864718,1473.680088508653 | |
08821,40.520045,-74.685662,354,"{'type': 'Point', 'coordinates': [-74.685662, 40.520045]}",0.774759,456.91627977216143 | |
08822,40.524836,-74.865225,30354,"{'type': 'Point', 'coordinates': [-74.865225, 40.524836]}",165.884736,182.98247766449109 | |
08823,40.439256,-74.570451,9016,"{'type': 'Point', 'coordinates': [-74.570451, 40.439256]}",9.077242,993.2532370515185 | |
08824,40.422087,-74.553236,12115,"{'type': 'Point', 'coordinates': [-74.553236, 40.422087]}",10.0886,1200.8603770592551 | |
08825,40.514189,-75.02715699999999,4707,"{'type': 'Point', 'coordinates': [-75.02715699999999, 40.514189]}",76.288973,61.699611554608296 | |
08826,40.716574,-74.912125,5838,"{'type': 'Point', 'coordinates': [-74.912125, 40.716574]}",53.852897,108.40642426348948 | |
08827,40.668426000000004,-74.968377,4629,"{'type': 'Point', 'coordinates': [-74.968377, 40.668426000000004]}",49.027214,94.41694973734383 | |
08828,40.378566,-74.423574,2178,"{'type': 'Point', 'coordinates': [-74.423574, 40.378566]}",2.272073,958.5959606051391 | |
08829,40.668838,-74.89475300000001,3725,"{'type': 'Point', 'coordinates': [-74.89475300000001, 40.668838]}",6.485937,574.319485372738 | |
08830,40.569594,-74.314925,18459,"{'type': 'Point', 'coordinates': [-74.314925, 40.569594]}",8.226341,2243.889476499941 | |
08831,40.319482,-74.42878499999999,45620,"{'type': 'Point', 'coordinates': [-74.42878499999999, 40.319482]}",131.229213,347.63600997896714 | |
08832,40.517202000000005,-74.306784,2863,"{'type': 'Point', 'coordinates': [-74.306784, 40.517202000000005]}",4.341563,659.4399298132954 | |
08833,40.645542,-74.816261,8796,"{'type': 'Point', 'coordinates': [-74.816261, 40.645542]}",95.816913,91.80007709077415 | |
08835,40.541269,-74.58927299999999,10344,"{'type': 'Point', 'coordinates': [-74.58927299999999, 40.541269]}",6.348904,1629.2575852462094 | |
08836,40.596376,-74.55731999999999,3845,"{'type': 'Point', 'coordinates': [-74.55731999999999, 40.596376]}",12.233236,314.30767787035256 | |
08837,40.513104999999996,-74.344075,15847,"{'type': 'Point', 'coordinates': [-74.344075, 40.513104999999996]}",25.187922,629.1507493154854 | |
08840,40.543139000000004,-74.358981,16558,"{'type': 'Point', 'coordinates': [-74.358981, 40.543139000000004]}",8.346843,1983.7440335226145 | |
08844,40.497692,-74.670505,38367,"{'type': 'Point', 'coordinates': [-74.670505, 40.497692]}",143.860858,266.6951979391086 | |
08846,40.574627,-74.49825899999999,13635,"{'type': 'Point', 'coordinates': [-74.49825899999999, 40.574627]}",9.088911,1500.1797245016483 | |
08848,40.590685,-75.08822099999999,8435,"{'type': 'Point', 'coordinates': [-75.08822099999999, 40.590685]}",88.239613,95.59198769378102 | |
08850,40.446779,-74.44029300000001,8281,"{'type': 'Point', 'coordinates': [-74.44029300000001, 40.446779]}",6.624843,1249.9918866001806 | |
08852,40.388227,-74.549522,17220,"{'type': 'Point', 'coordinates': [-74.549522, 40.388227]}",36.537339,471.2986898142746 | |
08853,40.529933,-74.74231400000001,5247,"{'type': 'Point', 'coordinates': [-74.74231400000001, 40.529933]}",28.227364,185.8834569179042 | |
08854,40.545648,-74.460797,55961,"{'type': 'Point', 'coordinates': [-74.460797, 40.545648]}",49.120524,1139.25901930525 | |
08857,40.392789,-74.33039699999999,39898,"{'type': 'Point', 'coordinates': [-74.33039699999999, 40.392789]}",63.819639,625.1680615115984 | |
08858,40.682681,-74.737038,144,"{'type': 'Point', 'coordinates': [-74.737038, 40.682681]}",7.193216,20.018862216844315 | |
08859,40.458847999999996,-74.302768,21526,"{'type': 'Point', 'coordinates': [-74.302768, 40.458847999999996]}",11.92318,1805.3908437178673 | |
08861,40.520494,-74.27294300000001,53099,"{'type': 'Point', 'coordinates': [-74.27294300000001, 40.520494]}",16.591919,3200.2928654605894 | |
08863,40.527021999999995,-74.31447,12320,"{'type': 'Point', 'coordinates': [-74.31447, 40.527021999999995]}",6.935331,1776.4112484321224 | |
08865,40.708223,-75.147074,29840,"{'type': 'Point', 'coordinates': [-75.147074, 40.708223]}",113.728713,262.3787714893072 | |
08867,40.574456,-74.966101,5042,"{'type': 'Point', 'coordinates': [-74.966101, 40.574456]}",75.735659,66.57365983968002 | |
08869,40.571344,-74.646026,6881,"{'type': 'Point', 'coordinates': [-74.646026, 40.571344]}",5.276773,1304.0166783752113 | |
08872,40.444334999999995,-74.356884,18811,"{'type': 'Point', 'coordinates': [-74.356884, 40.444334999999995]}",26.320651,714.6859703432107 | |
08873,40.496619,-74.532009,49921,"{'type': 'Point', 'coordinates': [-74.532009, 40.496619]}",84.754204,589.0091304497414 | |
08876,40.589554,-74.685411,22179,"{'type': 'Point', 'coordinates': [-74.685411, 40.589554]}",39.806003,557.1772679613173 | |
08879,40.466409999999996,-74.278625,23537,"{'type': 'Point', 'coordinates': [-74.278625, 40.466409999999996]}",20.496035,1148.368452727564 | |
08880,40.553946999999994,-74.527455,4563,"{'type': 'Point', 'coordinates': [-74.527455, 40.553946999999994]}",1.924161,2371.423181324224 | |
08882,40.445652,-74.37845899999999,16008,"{'type': 'Point', 'coordinates': [-74.37845899999999, 40.445652]}",7.589322,2109.2793269280182 | |
08884,40.397648,-74.38942,8257,"{'type': 'Point', 'coordinates': [-74.38942, 40.397648]}",6.445302,1281.0881476151158 | |
08886,40.68764,-75.100726,7077,"{'type': 'Point', 'coordinates': [-75.100726, 40.68764]}",39.310157,180.0298075634753 | |
08887,40.521268,-74.79484000000001,1106,"{'type': 'Point', 'coordinates': [-74.79484000000001, 40.521268]}",1.868911,591.7884800292791 | |
08889,40.609021000000006,-74.754216,10063,"{'type': 'Point', 'coordinates': [-74.754216, 40.609021000000006]}",64.869016,155.12798899246445 | |
08890,40.539039,-74.575423,17,"{'type': 'Point', 'coordinates': [-74.575423, 40.539039]}",0.577925,29.41558160660985 | |
08901,40.483638,-74.44246,55223,"{'type': 'Point', 'coordinates': [-74.44246, 40.483638]}",18.071227,3055.8522672533522 | |
08902,40.439227,-74.484339,41153,"{'type': 'Point', 'coordinates': [-74.484339, 40.439227]}",35.830564,1148.5445777521113 | |
08904,40.500795000000004,-74.427911,13982,"{'type': 'Point', 'coordinates': [-74.427911, 40.500795000000004]}",4.736055,2952.2461204525707 | |
10001,40.750634000000005,-73.997176,21102,"{'type': 'Point', 'coordinates': [-73.997176, 40.750634000000005]}",1.592122,13254.009428925672 | |
10002,40.715777,-73.986207,81410,"{'type': 'Point', 'coordinates': [-73.986207, 40.715777]}",2.275984,35769.14424705974 | |
10003,40.731829,-73.989181,56024,"{'type': 'Point', 'coordinates': [-73.989181, 40.731829]}",1.493004,37524.3468872153 | |
10004,40.688874,-74.018213,3089,"{'type': 'Point', 'coordinates': [-74.018213, 40.688874]}",1.421126,2173.6285171054506 | |
10005,40.706004,-74.008785,7135,"{'type': 'Point', 'coordinates': [-74.008785, 40.706004]}",0.188254,37900.921095966085 | |
10006,40.709579,-74.012952,3011,"{'type': 'Point', 'coordinates': [-74.012952, 40.709579]}",0.237286,12689.328489670694 | |
10007,40.713858,-74.00777099999999,6988,"{'type': 'Point', 'coordinates': [-74.00777099999999, 40.713858]}",0.412691,16932.76567698351 | |
10009,40.726402,-73.978635,61347,"{'type': 'Point', 'coordinates': [-73.978635, 40.726402]}",1.59681,38418.47182820749 | |
10010,40.739104,-73.982455,31834,"{'type': 'Point', 'coordinates': [-73.982455, 40.739104]}",0.988468,32205.39258731694 | |
10011,40.742042,-74.00062199999999,50984,"{'type': 'Point', 'coordinates': [-74.00062199999999, 40.742042]}",1.713461,29754.981292250013 | |
10012,40.725581,-73.998078,24090,"{'type': 'Point', 'coordinates': [-73.998078, 40.725581]}",0.837302,28770.98107970601 | |
10013,40.720103,-74.004901,27700,"{'type': 'Point', 'coordinates': [-74.004901, 40.720103]}",1.425085,19437.43706515752 | |
10014,40.734012,-74.00674599999999,31959,"{'type': 'Point', 'coordinates': [-74.00674599999999, 40.734012]}",1.46394,21830.812738226978 | |
10016,40.745221,-73.97829399999999,54183,"{'type': 'Point', 'coordinates': [-73.97829399999999, 40.745221]}",1.378161,39315.435569574234 | |
10017,40.752359000000006,-73.972489,16575,"{'type': 'Point', 'coordinates': [-73.972489, 40.752359000000006]}",0.820952,20189.974566113488 | |
10018,40.755332,-73.993139,5229,"{'type': 'Point', 'coordinates': [-73.993139, 40.755332]}",0.836252,6252.899843587818 | |
10019,40.765823,-73.987179,42870,"{'type': 'Point', 'coordinates': [-73.987179, 40.765823]}",1.780742,24074.23422371124 | |
10020,40.758236,-73.978833,0,"{'type': 'Point', 'coordinates': [-73.978833, 40.758236]}",0.07156,0.0 | |
10021,40.769225,-73.958741,43631,"{'type': 'Point', 'coordinates': [-73.958741, 40.769225]}",0.9868,44214.6331576814 | |
10022,40.75863,-73.967949,31924,"{'type': 'Point', 'coordinates': [-73.967949, 40.75863]}",1.107169,28833.899793075852 | |
10023,40.775915999999995,-73.982602,60998,"{'type': 'Point', 'coordinates': [-73.982602, 40.775915999999995]}",1.268944,48069.891185111395 | |
10024,40.798452000000005,-73.974414,59283,"{'type': 'Point', 'coordinates': [-73.974414, 40.798452000000005]}",2.222642,26672.311600338697 | |
10025,40.798601,-73.966622,94600,"{'type': 'Point', 'coordinates': [-73.966622, 40.798601]}",1.946729,48594.33439374458 | |
10026,40.802381,-73.95268100000001,34003,"{'type': 'Point', 'coordinates': [-73.95268100000001, 40.802381]}",0.860743,39504.242265112814 | |
10027,40.811407,-73.95306,59707,"{'type': 'Point', 'coordinates': [-73.95306, 40.811407]}",2.251681,26516.633572872888 | |
10028,40.776441999999996,-73.953513,45141,"{'type': 'Point', 'coordinates': [-73.953513, 40.776441999999996]}",0.811363,55636.01002264092 | |
10029,40.791763,-73.94397,76003,"{'type': 'Point', 'coordinates': [-73.94397, 40.791763]}",2.102362,36151.24322072032 | |
10030,40.818267,-73.942856,26999,"{'type': 'Point', 'coordinates': [-73.942856, 40.818267]}",0.722531,37367.25483058858 | |
10031,40.825288,-73.95004499999999,56438,"{'type': 'Point', 'coordinates': [-73.95004499999999, 40.825288]}",1.681541,33563.26131804101 | |
10032,40.838792,-73.94283,57331,"{'type': 'Point', 'coordinates': [-73.94283, 40.838792]}",1.695753,33808.57943344343 | |
10033,40.850482,-73.934051,53926,"{'type': 'Point', 'coordinates': [-73.934051, 40.850482]}",1.54412,34923.451545216696 | |
10034,40.867076000000004,-73.924312,38908,"{'type': 'Point', 'coordinates': [-73.924312, 40.867076000000004]}",2.835121,13723.576524599832 | |
10035,40.795458,-73.92957,33969,"{'type': 'Point', 'coordinates': [-73.92957, 40.795458]}",3.689135,9207.849536544474 | |
10036,40.759254999999996,-73.989828,24711,"{'type': 'Point', 'coordinates': [-73.989828, 40.759254999999996]}",1.13791,21716.128692075825 | |
10037,40.81296,-73.937376,17416,"{'type': 'Point', 'coordinates': [-73.937376, 40.81296]}",0.666609,26126.259921483208 | |
10038,40.709308,-74.002564,20300,"{'type': 'Point', 'coordinates': [-74.002564, 40.709308]}",0.776339,26148.370750406717 | |
10039,40.830869,-73.936216,24527,"{'type': 'Point', 'coordinates': [-73.936216, 40.830869]}",1.132695,21653.666697566423 | |
10040,40.858314,-73.930494,41905,"{'type': 'Point', 'coordinates': [-73.930494, 40.858314]}",0.988493,42392.814111986634 | |
10044,40.761907,-73.949967,11661,"{'type': 'Point', 'coordinates': [-73.949967, 40.761907]}",0.595884,19569.245020842984 | |
10065,40.764628,-73.963144,32270,"{'type': 'Point', 'coordinates': [-73.963144, 40.764628]}",0.984659,32772.76701883596 | |
10069,40.77596,-73.990341,5199,"{'type': 'Point', 'coordinates': [-73.990341, 40.77596]}",0.249044,20875.829170748944 | |
10075,40.773363,-73.956222,26121,"{'type': 'Point', 'coordinates': [-73.956222, 40.773363]}",0.477128,54746.3154541339 | |
10103,40.76078,-73.97766999999999,3,"{'type': 'Point', 'coordinates': [-73.97766999999999, 40.76078]}",0.024776,121.08492089118502 | |
10110,40.754498999999996,-73.982256,0,"{'type': 'Point', 'coordinates': [-73.982256, 40.754498999999996]}",0.026711,0.0 | |
10111,40.759114000000004,-73.97759599999999,0,"{'type': 'Point', 'coordinates': [-73.97759599999999, 40.759114000000004]}",0.009576,0.0 | |
10112,40.759167,-73.979668,0,"{'type': 'Point', 'coordinates': [-73.979668, 40.759167]}",0.015253,0.0 | |
10115,40.810852000000004,-73.96374399999999,0,"{'type': 'Point', 'coordinates': [-73.96374399999999, 40.810852000000004]}",0.006618,0.0 | |
10119,40.75031,-73.992979,92,"{'type': 'Point', 'coordinates': [-73.992979, 40.75031]}",0.042613,2158.9655738859033 | |
10128,40.781428000000005,-73.95000999999999,60453,"{'type': 'Point', 'coordinates': [-73.95000999999999, 40.781428000000005]}",1.206193,50118.84499412614 | |
10152,40.758404,-73.972031,0,"{'type': 'Point', 'coordinates': [-73.972031, 40.758404]}",0.012423,0.0 | |
10153,40.763622,-73.97243900000001,0,"{'type': 'Point', 'coordinates': [-73.97243900000001, 40.763622]}",0.012281,0.0 | |
10154,40.757779,-73.972487,0,"{'type': 'Point', 'coordinates': [-73.972487, 40.757779]}",0.012382,0.0 | |
10162,40.769308,-73.949924,1685,"{'type': 'Point', 'coordinates': [-73.949924, 40.769308]}",0.029812,56520.864081577885 | |
10165,40.752131,-73.97872199999999,2,"{'type': 'Point', 'coordinates': [-73.97872199999999, 40.752131]}",0.013058,153.1628120692296 | |
10167,40.754647999999996,-73.97477099999999,0,"{'type': 'Point', 'coordinates': [-73.97477099999999, 40.754647999999996]}",0.012396,0.0 | |
10168,40.751447999999996,-73.977103,0,"{'type': 'Point', 'coordinates': [-73.977103, 40.751447999999996]}",0.013211,0.0 | |
10169,40.754391,-73.976098,0,"{'type': 'Point', 'coordinates': [-73.976098, 40.754391]}",0.009924,0.0 | |
10170,40.752625,-73.975877,2,"{'type': 'Point', 'coordinates': [-73.975877, 40.752625]}",0.024921,80.25360138036194 | |
10171,40.755899,-73.97385799999999,0,"{'type': 'Point', 'coordinates': [-73.97385799999999, 40.755899]}",0.01247,0.0 | |
10172,40.755272999999995,-73.974315,0,"{'type': 'Point', 'coordinates': [-73.974315, 40.755272999999995]}",0.012415,0.0 | |
10173,40.754131,-73.979364,2,"{'type': 'Point', 'coordinates': [-73.979364, 40.754131]}",0.012297,162.6412946247052 | |
10174,40.751441,-73.975003,0,"{'type': 'Point', 'coordinates': [-73.975003, 40.751441]}",0.013224,0.0 | |
10177,40.755139,-73.975934,0,"{'type': 'Point', 'coordinates': [-73.975934, 40.755139]}",0.005421,0.0 | |
10199,40.751383000000004,-73.997152,9,"{'type': 'Point', 'coordinates': [-73.997152, 40.751383000000004]}",0.065414,137.58522640413366 | |
10271,40.708236,-74.010541,0,"{'type': 'Point', 'coordinates': [-74.010541, 40.708236]}",0.006779,0.0 | |
10278,40.715138,-74.00371700000001,0,"{'type': 'Point', 'coordinates': [-74.00371700000001, 40.715138]}",0.035671,0.0 | |
10279,40.712626,-74.008669,0,"{'type': 'Point', 'coordinates': [-74.008669, 40.712626]}",0.010805,0.0 | |
10280,40.709073,-74.016423,7853,"{'type': 'Point', 'coordinates': [-74.016423, 40.709073]}",0.343053,22891.50656021081 | |
10282,40.716768,-74.01559300000001,4783,"{'type': 'Point', 'coordinates': [-74.01559300000001, 40.716768]}",0.234781,20372.176624173168 | |
10301,40.627505,-74.09437700000001,39706,"{'type': 'Point', 'coordinates': [-74.09437700000001, 40.627505]}",9.203481,4314.237189167881 | |
10302,40.630716,-74.13772900000001,19088,"{'type': 'Point', 'coordinates': [-74.13772900000001, 40.630716]}",3.079121,6199.171776620665 | |
10303,40.629884999999994,-74.17413,26337,"{'type': 'Point', 'coordinates': [-74.17413, 40.629884999999994]}",8.215291,3205.851137835531 | |
10304,40.605965000000005,-74.093535,42193,"{'type': 'Point', 'coordinates': [-74.093535, 40.605965000000005]}",9.674914,4361.072356818882 | |
10305,40.596548999999996,-74.075779,41749,"{'type': 'Point', 'coordinates': [-74.075779, 40.596548999999996]}",10.349071,4034.081899718342 | |
10306,40.571768,-74.12595,55909,"{'type': 'Point', 'coordinates': [-74.12595, 40.571768]}",19.512794,2865.2483083662955 | |
10307,40.508839,-74.240575,14096,"{'type': 'Point', 'coordinates': [-74.240575, 40.508839]}",4.782479,2947.425383362896 | |
10308,40.551884,-74.147646,27357,"{'type': 'Point', 'coordinates': [-74.147646, 40.551884]}",5.111597,5351.9477376639825 | |
10309,40.531346,-74.21985699999999,32519,"{'type': 'Point', 'coordinates': [-74.21985699999999, 40.531346]}",17.341296,1875.234699874796 | |
10310,40.632647999999996,-74.116148,24962,"{'type': 'Point', 'coordinates': [-74.116148, 40.632647999999996]}",4.650151,5367.997727385627 | |
10311,40.605230999999996,-74.17953399999999,0,"{'type': 'Point', 'coordinates': [-74.17953399999999, 40.605230999999996]}",0.121555,0.0 | |
10312,40.544472999999996,-74.182367,59304,"{'type': 'Point', 'coordinates': [-74.182367, 40.544472999999996]}",19.995081,2965.9294703532337 | |
10314,40.599263,-74.165748,85510,"{'type': 'Point', 'coordinates': [-74.165748, 40.599263]}",37.119387,2303.647956255312 | |
10451,40.820454,-73.925066,45713,"{'type': 'Point', 'coordinates': [-73.925066, 40.820454]}",2.675267,17087.266429855412 | |
10452,40.837391,-73.923438,75371,"{'type': 'Point', 'coordinates': [-73.923438, 40.837391]}",2.559782,29444.30424153307 | |
10453,40.85282,-73.91230999999999,78309,"{'type': 'Point', 'coordinates': [-73.91230999999999, 40.85282]}",2.379042,32916.19063471767 | |
10454,40.805492,-73.916604,37337,"{'type': 'Point', 'coordinates': [-73.916604, 40.805492]}",2.714424,13755.036059215508 | |
10455,40.814713,-73.90859,39665,"{'type': 'Point', 'coordinates': [-73.90859, 40.814713]}",1.846908,21476.435209550233 | |
10456,40.829886,-73.908121,86547,"{'type': 'Point', 'coordinates': [-73.908121, 40.829886]}",2.635672,32836.786975010546 | |
10457,40.847162,-73.898663,70496,"{'type': 'Point', 'coordinates': [-73.898663, 40.847162]}",2.743121,25699.194457699825 | |
10458,40.862528999999995,-73.888159,79492,"{'type': 'Point', 'coordinates': [-73.888159, 40.862528999999995]}",2.603707,30530.316967308532 | |
10459,40.825856,-73.89294100000001,47308,"{'type': 'Point', 'coordinates': [-73.89294100000001, 40.825856]}",2.12431,22269.819376644653 | |
10460,40.841736,-73.879598,57311,"{'type': 'Point', 'coordinates': [-73.879598, 40.841736]}",3.399055,16860.862798630795 | |
10461,40.847396,-73.84057800000001,50502,"{'type': 'Point', 'coordinates': [-73.84057800000001, 40.847396]}",6.198875,8146.962150390192 | |
10462,40.843267,-73.860417,75784,"{'type': 'Point', 'coordinates': [-73.860417, 40.843267]}",3.836401,19753.93083256938 | |
10463,40.880678,-73.90654,67970,"{'type': 'Point', 'coordinates': [-73.90654, 40.880678]}",4.101575,16571.68282915709 | |
10464,40.869594,-73.79584799999999,4534,"{'type': 'Point', 'coordinates': [-73.79584799999999, 40.869594]}",9.226583,491.40619013561144 | |
10465,40.823277000000004,-73.825602,42230,"{'type': 'Point', 'coordinates': [-73.825602, 40.823277000000004]}",8.783142,4808.074377028175 | |
10466,40.890964000000004,-73.846239,67813,"{'type': 'Point', 'coordinates': [-73.846239, 40.890964000000004]}",5.217203,12997.960784734656 | |
10467,40.869953,-73.865765,97060,"{'type': 'Point', 'coordinates': [-73.865765, 40.869953]}",6.052829,16035.476964573094 | |
10468,40.86894,-73.89999499999999,76103,"{'type': 'Point', 'coordinates': [-73.89999499999999, 40.86894]}",2.818317,27002.995049882607 | |
10469,40.868609,-73.848138,66631,"{'type': 'Point', 'coordinates': [-73.848138, 40.868609]}",6.405054,10402.878726705505 | |
10470,40.889526000000004,-73.872586,15293,"{'type': 'Point', 'coordinates': [-73.872586, 40.889526000000004]}",3.707392,4125.002157851126 | |
10471,40.898788,-73.90313,22922,"{'type': 'Point', 'coordinates': [-73.90313, 40.898788]}",6.684598,3429.0768120984985 | |
10472,40.829556,-73.86931,66358,"{'type': 'Point', 'coordinates': [-73.86931, 40.829556]}",2.729341,24312.828627862917 | |
10473,40.818690000000004,-73.858474,58519,"{'type': 'Point', 'coordinates': [-73.858474, 40.818690000000004]}",5.545077,10553.325048506991 | |
10474,40.810618,-73.884474,12281,"{'type': 'Point', 'coordinates': [-73.884474, 40.810618]}",3.96135,3100.205737942873 | |
10475,40.875169,-73.823815,40931,"{'type': 'Point', 'coordinates': [-73.823815, 40.875169]}",4.741223,8633.004606617322 | |
10501,41.295608,-73.75849000000001,1219,"{'type': 'Point', 'coordinates': [-73.75849000000001, 41.295608]}",3.628339,335.96640225734143 | |
10502,41.011602,-73.841433,5487,"{'type': 'Point', 'coordinates': [-73.841433, 41.011602]}",5.491264,999.2234938986725 | |
10503,41.026556,-73.87531,108,"{'type': 'Point', 'coordinates': [-73.87531, 41.026556]}",0.038497,2805.413408837052 | |
10504,41.128468,-73.707521,7987,"{'type': 'Point', 'coordinates': [-73.707521, 41.128468]}",47.168973,169.32740935445 | |
10505,41.34209,-73.745449,851,"{'type': 'Point', 'coordinates': [-73.745449, 41.34209]}",1.689621,503.6632475567006 | |
10506,41.190401,-73.639139,5790,"{'type': 'Point', 'coordinates': [-73.639139, 41.190401]}",42.930197,134.87010087561444 | |
10507,41.227896,-73.686047,6408,"{'type': 'Point', 'coordinates': [-73.686047, 41.227896]}",19.05466,336.2956882988204 | |
10509,41.410855,-73.59434,19507,"{'type': 'Point', 'coordinates': [-73.59434, 41.410855]}",102.160625,190.94440739766424 | |
10510,41.139472,-73.835704,9988,"{'type': 'Point', 'coordinates': [-73.835704, 41.139472]}",26.003894,384.09632034340706 | |
10511,41.265428,-73.94319200000001,2246,"{'type': 'Point', 'coordinates': [-73.94319200000001, 41.265428]}",3.946477,569.115188052534 | |
10512,41.457619,-73.72460799999999,25590,"{'type': 'Point', 'coordinates': [-73.72460799999999, 41.457619]}",156.176982,163.85257079689245 | |
10514,41.172111,-73.769227,11946,"{'type': 'Point', 'coordinates': [-73.769227, 41.172111]}",33.541485,356.1559662608856 | |
10516,41.461974,-73.87490799999999,5289,"{'type': 'Point', 'coordinates': [-73.87490799999999, 41.461974]}",83.214004,63.55901345643697 | |
10517,41.298243,-73.861993,539,"{'type': 'Point', 'coordinates': [-73.861993, 41.298243]}",0.850209,633.961767047867 | |
10518,41.266143,-73.588296,1268,"{'type': 'Point', 'coordinates': [-73.588296, 41.266143]}",9.069386,139.8110081542455 | |
10519,41.352346000000004,-73.652662,316,"{'type': 'Point', 'coordinates': [-73.652662, 41.352346000000004]}",1.993022,158.5531920871922 | |
10520,41.226478,-73.86778699999999,12810,"{'type': 'Point', 'coordinates': [-73.86778699999999, 41.226478]}",39.007291,328.40014447555455 | |
10522,41.009698,-73.86330500000001,10875,"{'type': 'Point', 'coordinates': [-73.86330500000001, 41.009698]}",6.293474,1727.980444504895 | |
10523,41.059340999999996,-73.819457,7444,"{'type': 'Point', 'coordinates': [-73.819457, 41.059340999999996]}",9.367929,794.6260053849683 | |
10524,41.375325,-73.92621700000001,4421,"{'type': 'Point', 'coordinates': [-73.92621700000001, 41.375325]}",54.715544,80.79970839730662 | |
10526,41.288102,-73.668835,1809,"{'type': 'Point', 'coordinates': [-73.668835, 41.288102]}",9.904309,182.64777482204968 | |
10527,41.321183000000005,-73.769878,908,"{'type': 'Point', 'coordinates': [-73.769878, 41.321183000000005]}",6.351501,142.95833378598223 | |
10528,40.975049,-73.724925,12280,"{'type': 'Point', 'coordinates': [-73.724925, 40.975049]}",9.91456,1238.5824484394668 | |
10530,41.023711999999996,-73.81281,12604,"{'type': 'Point', 'coordinates': [-73.81281, 41.023711999999996]}",9.935563,1268.5743122961426 | |
10532,41.099152000000004,-73.80010300000001,4931,"{'type': 'Point', 'coordinates': [-73.80010300000001, 41.099152000000004]}",4.909647,1004.3491925183216 | |
10533,41.036927,-73.854864,7322,"{'type': 'Point', 'coordinates': [-73.854864, 41.036927]}",9.348601,783.2187939136561 | |
10535,41.335169,-73.79391899999999,555,"{'type': 'Point', 'coordinates': [-73.79391899999999, 41.335169]}",1.324123,419.14535130044567 | |
10536,41.269098,-73.688694,10739,"{'type': 'Point', 'coordinates': [-73.688694, 41.269098]}",72.062931,149.02252588088595 | |
10537,41.33974,-73.882349,2416,"{'type': 'Point', 'coordinates': [-73.882349, 41.33974]}",3.035377,795.947257951813 | |
10538,40.937752,-73.756473,16597,"{'type': 'Point', 'coordinates': [-73.756473, 40.937752]}",9.441468,1757.8834138928394 | |
10541,41.381113,-73.751935,26339,"{'type': 'Point', 'coordinates': [-73.751935, 41.381113]}",68.730992,383.21867957325566 | |
10543,40.952693,-73.73604,20135,"{'type': 'Point', 'coordinates': [-73.73604, 40.952693]}",11.055814,1821.2137071046964 | |
10545,41.178591,-73.83545,141,"{'type': 'Point', 'coordinates': [-73.83545, 41.178591]}",0.326173,432.28593415150857 | |
10546,41.195608,-73.801126,1277,"{'type': 'Point', 'coordinates': [-73.801126, 41.195608]}",2.921674,437.0781955823956 | |
10547,41.313334000000005,-73.846039,7647,"{'type': 'Point', 'coordinates': [-73.846039, 41.313334000000005]}",13.635111,560.831517983242 | |
10548,41.245696,-73.93297700000001,3487,"{'type': 'Point', 'coordinates': [-73.93297700000001, 41.245696]}",6.364312,547.898971640611 | |
10549,41.200584,-73.723465,16638,"{'type': 'Point', 'coordinates': [-73.723465, 41.200584]}",51.349009,324.01793771716217 | |
10550,40.905448,-73.83525300000001,37144,"{'type': 'Point', 'coordinates': [-73.83525300000001, 40.905448]}",5.178382,7172.896862379021 | |
10552,40.924459999999996,-73.826115,19786,"{'type': 'Point', 'coordinates': [-73.826115, 40.924459999999996]}",4.303634,4597.509918362017 | |
10553,40.908584000000005,-73.821652,10170,"{'type': 'Point', 'coordinates': [-73.821652, 40.908584000000005]}",1.790572,5679.749264480847 | |
10560,41.340527,-73.59760899999999,4737,"{'type': 'Point', 'coordinates': [-73.59760899999999, 41.340527]}",57.528682,82.34153530581493 | |
10562,41.19448,-73.825254,31796,"{'type': 'Point', 'coordinates': [-73.825254, 41.19448]}",37.122258,856.5211739005747 | |
10566,41.289483000000004,-73.916847,23570,"{'type': 'Point', 'coordinates': [-73.916847, 41.289483000000004]}",11.928556,1975.9306994073715 | |
10567,41.2896,-73.897001,19929,"{'type': 'Point', 'coordinates': [-73.897001, 41.2896]}",58.507676,340.6219724058088 | |
10570,41.130067,-73.78667,12680,"{'type': 'Point', 'coordinates': [-73.78667, 41.130067]}",17.075652,742.5777943940295 | |
10573,41.015857000000004,-73.67740400000001,38352,"{'type': 'Point', 'coordinates': [-73.67740400000001, 41.015857000000004]}",14.447817,2654.5186722672356 | |
10576,41.221577,-73.57233199999999,5116,"{'type': 'Point', 'coordinates': [-73.57233199999999, 41.221577]}",60.428297,84.66232301731091 | |
10577,41.038367,-73.711114,6552,"{'type': 'Point', 'coordinates': [-73.711114, 41.038367]}",17.523222,373.90384028690613 | |
10578,41.320276,-73.678991,681,"{'type': 'Point', 'coordinates': [-73.678991, 41.320276]}",4.537863,150.07063897698103 | |
10579,41.395364,-73.839053,8675,"{'type': 'Point', 'coordinates': [-73.839053, 41.395364]}",88.493088,98.03025519914053 | |
10580,40.979048999999996,-73.693202,17208,"{'type': 'Point', 'coordinates': [-73.693202, 40.979048999999996]}",23.038986,746.9078717266462 | |
10583,40.988682,-73.789204,38982,"{'type': 'Point', 'coordinates': [-73.789204, 40.988682]}",32.116537,1213.7672252771213 | |
10588,41.336622999999996,-73.82000699999999,2282,"{'type': 'Point', 'coordinates': [-73.82000699999999, 41.336622999999996]}",5.239059,435.57440372402755 | |
10589,41.334143,-73.714634,8475,"{'type': 'Point', 'coordinates': [-73.714634, 41.334143]}",22.030554,384.693004088776 | |
10590,41.255268,-73.539405,6767,"{'type': 'Point', 'coordinates': [-73.539405, 41.255268]}",36.303975,186.39832139593528 | |
10591,41.090097,-73.841014,22540,"{'type': 'Point', 'coordinates': [-73.841014, 41.090097]}",26.198409,860.3575888902261 | |
10594,41.113425,-73.774292,5117,"{'type': 'Point', 'coordinates': [-73.774292, 41.113425]}",6.49749,787.5348788532187 | |
10595,41.085896999999996,-73.782645,8195,"{'type': 'Point', 'coordinates': [-73.782645, 41.085896999999996]}",17.760352,461.4210348984074 | |
10596,41.256258,-73.959177,1729,"{'type': 'Point', 'coordinates': [-73.959177, 41.256258]}",1.758938,982.9795024042918 | |
10597,41.293021,-73.596568,968,"{'type': 'Point', 'coordinates': [-73.596568, 41.293021]}",9.293223,104.16192530836719 | |
10598,41.288222999999995,-73.792203,28647,"{'type': 'Point', 'coordinates': [-73.792203, 41.288222999999995]}",76.191191,375.9883475243221 | |
10601,41.032947,-73.765064,11376,"{'type': 'Point', 'coordinates': [-73.765064, 41.032947]}",1.642353,6926.647316380827 | |
10603,41.0544,-73.779287,17045,"{'type': 'Point', 'coordinates': [-73.779287, 41.0544]}",8.537711,1996.4367498501647 | |
10604,41.071512,-73.747093,11250,"{'type': 'Point', 'coordinates': [-73.747093, 41.071512]}",20.833272,540.0015897646803 | |
10605,41.010566,-73.745129,18126,"{'type': 'Point', 'coordinates': [-73.745129, 41.010566]}",13.184944,1374.7498662110359 | |
10606,41.020571999999994,-73.775846,16499,"{'type': 'Point', 'coordinates': [-73.775846, 41.020571999999994]}",3.912508,4216.9881825161765 | |
10607,41.039089000000004,-73.811368,6824,"{'type': 'Point', 'coordinates': [-73.811368, 41.039089000000004]}",5.777194,1181.1962693307512 | |
10701,40.945417,-73.880475,63393,"{'type': 'Point', 'coordinates': [-73.880475, 40.945417]}",10.944243,5792.360421821774 | |
10703,40.959837,-73.8803,20301,"{'type': 'Point', 'coordinates': [-73.8803, 40.959837]}",4.561348,4450.658007238211 | |
10704,40.919729,-73.862651,30165,"{'type': 'Point', 'coordinates': [-73.862651, 40.919729]}",7.274048,4146.934416709925 | |
10705,40.919705,-73.889928,38777,"{'type': 'Point', 'coordinates': [-73.889928, 40.919705]}",5.790115,6697.1035981150635 | |
10706,40.989821,-73.867552,8679,"{'type': 'Point', 'coordinates': [-73.867552, 40.989821]}",7.494737,1158.0126160531051 | |
10707,40.960533,-73.82273199999999,10097,"{'type': 'Point', 'coordinates': [-73.82273199999999, 40.960533]}",3.363594,3001.8486178771873 | |
10708,40.938266999999996,-73.829922,21225,"{'type': 'Point', 'coordinates': [-73.829922, 40.938266999999996]}",7.97587,2661.1516988115404 | |
10709,40.954634999999996,-73.808184,9292,"{'type': 'Point', 'coordinates': [-73.808184, 40.954634999999996]}",3.754237,2475.0701673868753 | |
10710,40.967157,-73.846339,25120,"{'type': 'Point', 'coordinates': [-73.846339, 40.967157]}",12.537489,2003.5909901895027 | |
10801,40.91757,-73.784858,40827,"{'type': 'Point', 'coordinates': [-73.784858, 40.91757]}",8.889348,4592.800281865441 | |
10803,40.900458,-73.807138,12435,"{'type': 'Point', 'coordinates': [-73.807138, 40.900458]}",5.688819,2185.86669746392 | |
10804,40.946841,-73.788051,14146,"{'type': 'Point', 'coordinates': [-73.788051, 40.946841]}",11.541891,1225.6223871807488 | |
10805,40.897721000000004,-73.779258,18414,"{'type': 'Point', 'coordinates': [-73.779258, 40.897721000000004]}",4.52382,4070.4537315808325 | |
10901,41.140772,-74.10497600000001,23465,"{'type': 'Point', 'coordinates': [-74.10497600000001, 41.140772]}",46.879236,500.54143373838264 | |
10910,41.28157,-74.137957,21,"{'type': 'Point', 'coordinates': [-74.137957, 41.28157]}",5.497741,3.819750693966849 | |
10911,41.319158,-74.00815899999999,2,"{'type': 'Point', 'coordinates': [-74.00815899999999, 41.319158]}",2.751154,0.7269676652052193 | |
10913,41.068872,-73.956016,5532,"{'type': 'Point', 'coordinates': [-73.956016, 41.068872]}",10.967237,504.41145750748336 | |
10914,41.417716999999996,-74.200026,414,"{'type': 'Point', 'coordinates': [-74.200026, 41.417716999999996]}",6.370629,64.9857337477979 | |
10915,41.545359000000005,-74.359321,119,"{'type': 'Point', 'coordinates': [-74.359321, 41.545359000000005]}",0.373883,318.28138749287876 | |
10916,41.442343,-74.250577,4540,"{'type': 'Point', 'coordinates': [-74.250577, 41.442343]}",52.554403,86.38667249250267 | |
10917,41.319679,-74.117639,1968,"{'type': 'Point', 'coordinates': [-74.117639, 41.319679]}",9.706364,202.75357487108457 | |
10918,41.344192,-74.26217700000001,11647,"{'type': 'Point', 'coordinates': [-74.26217700000001, 41.344192]}",86.407222,134.79197375423087 | |
10919,41.525959,-74.387618,1040,"{'type': 'Point', 'coordinates': [-74.387618, 41.525959]}",10.710884,97.09749447384549 | |
10920,41.156495,-73.938239,8554,"{'type': 'Point', 'coordinates': [-73.938239, 41.156495]}",13.339019,641.276543649874 | |
10921,41.332065,-74.363422,4135,"{'type': 'Point', 'coordinates': [-74.363422, 41.332065]}",21.050515,196.43224880721445 | |
10922,41.33276,-73.996452,1559,"{'type': 'Point', 'coordinates': [-73.996452, 41.33276]}",6.0826,256.30486962811955 | |
10923,41.203121,-74.002263,8732,"{'type': 'Point', 'coordinates': [-74.002263, 41.203121]}",5.185871,1683.8058640486815 | |
10924,41.381005,-74.352471,13120,"{'type': 'Point', 'coordinates': [-74.352471, 41.381005]}",99.947107,131.26943234084803 | |
10925,41.197706,-74.31524300000001,4539,"{'type': 'Point', 'coordinates': [-74.31524300000001, 41.197706]}",14.5798,311.32114295120647 | |
10926,41.301894,-74.119908,3203,"{'type': 'Point', 'coordinates': [-74.119908, 41.301894]}",14.463222,221.4582615132368 | |
10927,41.191052,-73.967562,11910,"{'type': 'Point', 'coordinates': [-73.967562, 41.191052]}",5.308807,2243.441888168095 | |
10928,41.34897,-73.99849499999999,4175,"{'type': 'Point', 'coordinates': [-73.99849499999999, 41.34897]}",14.277003,292.4283198651706 | |
10930,41.366227,-74.121286,8958,"{'type': 'Point', 'coordinates': [-74.121286, 41.366227]}",36.385141,246.19940321242677 | |
10931,41.148792,-74.162522,1023,"{'type': 'Point', 'coordinates': [-74.162522, 41.148792]}",16.655989,61.41934892007913 | |
10932,41.48216,-74.464285,60,"{'type': 'Point', 'coordinates': [-74.464285, 41.48216]}",0.38754,154.82272797646695 | |
10933,41.368021,-74.512999,473,"{'type': 'Point', 'coordinates': [-74.512999, 41.368021]}",2.842025,166.4306260500875 | |
10940,41.446544,-74.478741,48418,"{'type': 'Point', 'coordinates': [-74.478741, 41.446544]}",170.842971,283.4064504766778 | |
10941,41.487318,-74.344437,13779,"{'type': 'Point', 'coordinates': [-74.344437, 41.487318]}",83.457721,165.10156082503138 | |
10950,41.317346,-74.199881,47226,"{'type': 'Point', 'coordinates': [-74.199881, 41.317346]}",98.088441,481.4634580643401 | |
10952,41.111118,-74.07854,38917,"{'type': 'Point', 'coordinates': [-74.07854, 41.111118]}",23.68155,1643.3468248488803 | |
10953,41.404964,-74.077432,252,"{'type': 'Point', 'coordinates': [-74.077432, 41.404964]}",2.885444,87.3349127551947 | |
10954,41.098819,-74.013262,23045,"{'type': 'Point', 'coordinates': [-74.013262, 41.098819]}",17.830964,1292.4147006297583 | |
10956,41.157191,-73.993416,31521,"{'type': 'Point', 'coordinates': [-73.993416, 41.157191]}",42.827626,735.9969006920907 | |
10958,41.371913,-74.432479,3291,"{'type': 'Point', 'coordinates': [-74.432479, 41.371913]}",59.581109,55.23562846069213 | |
10960,41.091902000000005,-73.925813,15093,"{'type': 'Point', 'coordinates': [-73.925813, 41.091902000000005]}",10.835846,1392.8769382658263 | |
10962,41.050065999999994,-73.958585,5950,"{'type': 'Point', 'coordinates': [-73.958585, 41.050065999999994]}",15.915499,373.84941559168203 | |
10963,41.463529,-74.543423,4298,"{'type': 'Point', 'coordinates': [-74.543423, 41.463529]}",33.157661,129.62313596245525 | |
10964,41.016346999999996,-73.914324,1472,"{'type': 'Point', 'coordinates': [-73.914324, 41.016346999999996]}",6.327339,232.6412414444682 | |
10965,41.061561,-74.007832,14791,"{'type': 'Point', 'coordinates': [-74.007832, 41.061561]}",14.089565,1049.784006816392 | |
10968,41.037017,-73.92125899999999,2353,"{'type': 'Point', 'coordinates': [-73.92125899999999, 41.037017]}",1.516061,1552.0483674469563 | |
10969,41.294858000000005,-74.488006,1267,"{'type': 'Point', 'coordinates': [-74.488006, 41.294858000000005]}",28.921007,43.80898631918315 | |
10970,41.180177,-74.102175,9993,"{'type': 'Point', 'coordinates': [-74.102175, 41.180177]}",36.554357,273.373704808978 | |
10973,41.380516,-74.480462,2126,"{'type': 'Point', 'coordinates': [-74.480462, 41.380516]}",22.075484,96.30592923806337 | |
10974,41.168058,-74.178013,3152,"{'type': 'Point', 'coordinates': [-74.178013, 41.168058]}",26.009147,121.18813431290154 | |
10975,41.267078999999995,-74.172263,281,"{'type': 'Point', 'coordinates': [-74.172263, 41.267078999999995]}",15.551418,18.06909183458383 | |
10976,41.02296,-73.928488,2258,"{'type': 'Point', 'coordinates': [-73.928488, 41.02296]}",2.985717,756.2672550680456 | |
10977,41.11892,-74.048158,59048,"{'type': 'Point', 'coordinates': [-74.048158, 41.11892]}",28.736436,2054.81292112912 | |
10979,41.182489000000004,-74.31551,234,"{'type': 'Point', 'coordinates': [-74.31551, 41.182489000000004]}",0.448168,522.1256314596312 | |
10980,41.238822,-74.050163,13383,"{'type': 'Point', 'coordinates': [-74.050163, 41.238822]}",64.783871,206.57919623234616 | |
10983,41.031088000000004,-73.947703,5532,"{'type': 'Point', 'coordinates': [-73.947703, 41.031088000000004]}",5.283851,1046.9636634341127 | |
10984,41.202903000000006,-74.022265,2842,"{'type': 'Point', 'coordinates': [-74.022265, 41.202903000000006]}",4.167189,681.9945051688321 | |
10985,41.583519,-74.373188,58,"{'type': 'Point', 'coordinates': [-74.373188, 41.583519]}",0.665812,87.11167717013211 | |
10986,41.285235,-73.99871,1974,"{'type': 'Point', 'coordinates': [-73.99871, 41.285235]}",28.423194,69.45032285956322 | |
10987,41.186927000000004,-74.23735,3395,"{'type': 'Point', 'coordinates': [-74.23735, 41.186927000000004]}",100.38816,33.8187292206571 | |
10988,41.302081,-74.548556,896,"{'type': 'Point', 'coordinates': [-74.548556, 41.302081]}",8.055621,111.2266825859856 | |
10989,41.122955,-73.93803100000001,9293,"{'type': 'Point', 'coordinates': [-73.93803100000001, 41.122955]}",14.456014,642.8466380843295 | |
10990,41.267448,-74.364011,20631,"{'type': 'Point', 'coordinates': [-74.364011, 41.267448]}",160.415981,128.6093808820706 | |
10992,41.426089000000005,-74.164664,9621,"{'type': 'Point', 'coordinates': [-74.164664, 41.426089000000005]}",28.810198,333.9442512682488 | |
10993,41.209903999999995,-73.973872,4769,"{'type': 'Point', 'coordinates': [-73.973872, 41.209903999999995]}",3.065597,1555.651313594057 | |
10994,41.098071999999995,-73.972649,7085,"{'type': 'Point', 'coordinates': [-73.972649, 41.098071999999995]}",16.804764,421.60663488044224 | |
10996,41.3937,-73.972175,6756,"{'type': 'Point', 'coordinates': [-73.972175, 41.3937]}",8.506321,794.2329004513232 | |
10998,41.324076,-74.541179,3122,"{'type': 'Point', 'coordinates': [-74.541179, 41.324076]}",48.71769,64.0834982118405 | |
11001,40.723317,-73.704949,26883,"{'type': 'Point', 'coordinates': [-73.704949, 40.723317]}",5.809414,4627.489106474422 | |
11003,40.699176,-73.70616600000001,41356,"{'type': 'Point', 'coordinates': [-73.70616600000001, 40.699176]}",10.86886,3804.998868326577 | |
11004,40.746204999999996,-73.71148199999999,14016,"{'type': 'Point', 'coordinates': [-73.71148199999999, 40.746204999999996]}",2.459128,5699.581315002716 | |
11005,40.756643,-73.71424,1806,"{'type': 'Point', 'coordinates': [-73.71424, 40.756643]}",0.475147,3800.9289756643734 | |
11010,40.700587,-73.67501800000001,23821,"{'type': 'Point', 'coordinates': [-73.67501800000001, 40.700587]}",6.1517,3872.262951704407 | |
11020,40.771442,-73.71481899999999,5914,"{'type': 'Point', 'coordinates': [-73.71481899999999, 40.771442]}",5.215888,1133.8433647348256 | |
11021,40.784319,-73.731488,17729,"{'type': 'Point', 'coordinates': [-73.731488, 40.784319]}",6.147059,2884.1434578714798 | |
11023,40.798909,-73.733653,9027,"{'type': 'Point', 'coordinates': [-73.733653, 40.798909]}",4.617372,1955.0081734804994 | |
11024,40.816251,-73.74287199999999,8002,"{'type': 'Point', 'coordinates': [-73.74287199999999, 40.816251]}",10.680414,749.2218934584371 | |
11030,40.793409000000004,-73.688549,17962,"{'type': 'Point', 'coordinates': [-73.688549, 40.793409000000004]}",17.612561,1019.8403287290247 | |
11040,40.745346999999995,-73.68029200000001,40782,"{'type': 'Point', 'coordinates': [-73.68029200000001, 40.745346999999995]}",12.470158,3270.367544661423 | |
11042,40.758545,-73.697204,520,"{'type': 'Point', 'coordinates': [-73.697204, 40.758545]}",1.522206,341.6094799258445 | |
11050,40.8399,-73.693124,30171,"{'type': 'Point', 'coordinates': [-73.693124, 40.8399]}",30.859915,977.6760564635385 | |
11096,40.621346,-73.75699,8344,"{'type': 'Point', 'coordinates': [-73.75699, 40.621346]}",4.776815,1746.7705992381952 | |
11101,40.74756,-73.938942,25484,"{'type': 'Point', 'coordinates': [-73.938942, 40.74756]}",6.979355,3651.3402742803596 | |
11102,40.772884000000005,-73.926295,34133,"{'type': 'Point', 'coordinates': [-73.926295, 40.772884000000005]}",2.044854,16692.14525829228 | |
11103,40.762576,-73.91345799999999,38780,"{'type': 'Point', 'coordinates': [-73.91345799999999, 40.762576]}",1.842767,21044.44023579758 | |
11104,40.744647,-73.920203,27232,"{'type': 'Point', 'coordinates': [-73.920203, 40.744647]}",1.00511,27093.55194953786 | |
11105,40.778971000000006,-73.90625,36688,"{'type': 'Point', 'coordinates': [-73.90625, 40.778971000000006]}",4.356927,8420.613886805999 | |
11106,40.762211,-73.931528,38875,"{'type': 'Point', 'coordinates': [-73.931528, 40.762211]}",2.228664,17443.185693312225 | |
11109,40.745968,-73.957526,3523,"{'type': 'Point', 'coordinates': [-73.957526, 40.745968]}",0.153163,23001.63877698922 | |
11201,40.6937,-73.989859,51128,"{'type': 'Point', 'coordinates': [-73.989859, 40.6937]}",3.682387,13884.472218699448 | |
11203,40.64959,-73.934374,76174,"{'type': 'Point', 'coordinates': [-73.934374, 40.64959]}",5.555602,13711.20537432307 | |
11204,40.618778999999996,-73.984826,78134,"{'type': 'Point', 'coordinates': [-73.984826, 40.618778999999996]}",4.115354,18985.97301714506 | |
11205,40.694664,-73.966246,40366,"{'type': 'Point', 'coordinates': [-73.966246, 40.694664]}",2.448133,16488.483264593877 | |
11206,40.701954,-73.942358,81677,"{'type': 'Point', 'coordinates': [-73.942358, 40.701954]}",3.715219,21984.437525755548 | |
11207,40.670755,-73.894209,93386,"{'type': 'Point', 'coordinates': [-73.894209, 40.670755]}",6.919426,13496.20618820116 | |
11208,40.668564,-73.87099,94469,"{'type': 'Point', 'coordinates': [-73.87099, 40.668564]}",9.26559,10195.68100898054 | |
11209,40.622012,-74.030141,68853,"{'type': 'Point', 'coordinates': [-74.030141, 40.622012]}",5.489556,12542.544424357817 | |
11210,40.628144,-73.94632299999999,62008,"{'type': 'Point', 'coordinates': [-73.94632299999999, 40.628144]}",4.251899,14583.601350831712 | |
11211,40.712596999999995,-73.953098,90117,"{'type': 'Point', 'coordinates': [-73.953098, 40.712596999999995]}",6.152447,14647.342756467466 | |
11212,40.662932,-73.91301899999999,84500,"{'type': 'Point', 'coordinates': [-73.91301899999999, 40.662932]}",3.985437,21202.191880087426 | |
11213,40.671079,-73.93634200000001,63767,"{'type': 'Point', 'coordinates': [-73.93634200000001, 40.671079]}",2.824121,22579.41497549149 | |
11214,40.599148,-73.99609,88630,"{'type': 'Point', 'coordinates': [-73.99609, 40.599148]}",5.626008,15753.621395490374 | |
11215,40.662688,-73.98674,63488,"{'type': 'Point', 'coordinates': [-73.98674, 40.662688]}",5.692044,11153.813990194032 | |
11216,40.680769,-73.949313,54316,"{'type': 'Point', 'coordinates': [-73.949313, 40.680769]}",2.421197,22433.531843959827 | |
11217,40.682306,-73.978099,35881,"{'type': 'Point', 'coordinates': [-73.978099, 40.682306]}",1.951731,18384.193313525273 | |
11218,40.643477000000004,-73.976042,75220,"{'type': 'Point', 'coordinates': [-73.976042, 40.643477000000004]}",3.699698,20331.389210686924 | |
11219,40.632667,-73.996669,92221,"{'type': 'Point', 'coordinates': [-73.996669, 40.632667]}",3.838517,24025.163884906593 | |
11220,40.641087,-74.016552,99598,"{'type': 'Point', 'coordinates': [-74.016552, 40.641087]}",4.519578,22037.013190169524 | |
11221,40.691340000000004,-73.927879,78895,"{'type': 'Point', 'coordinates': [-73.927879, 40.691340000000004]}",3.582803,22020.46833163866 | |
11222,40.72779,-73.94760500000001,36934,"{'type': 'Point', 'coordinates': [-73.94760500000001, 40.72779]}",4.168876,8859.462358678935 | |
11223,40.597143,-73.973426,78731,"{'type': 'Point', 'coordinates': [-73.973426, 40.597143]}",5.370772,14659.158869525649 | |
11224,40.577372,-73.98870600000001,47621,"{'type': 'Point', 'coordinates': [-73.98870600000001, 40.577372]}",4.185916,11376.482471220159 | |
11225,40.663046,-73.954219,56829,"{'type': 'Point', 'coordinates': [-73.954219, 40.663046]}",2.28926,24824.178992338133 | |
11226,40.646448,-73.956649,101572,"{'type': 'Point', 'coordinates': [-73.956649, 40.646448]}",3.339495,30415.377175291476 | |
11228,40.616699,-74.013065,41788,"{'type': 'Point', 'coordinates': [-74.013065, 40.616699]}",3.813372,10958.280492960035 | |
11229,40.601293,-73.94449300000001,80018,"{'type': 'Point', 'coordinates': [-73.94449300000001, 40.601293]}",5.735543,13951.250997507996 | |
11230,40.622164,-73.96510500000001,86408,"{'type': 'Point', 'coordinates': [-73.96510500000001, 40.622164]}",4.765014,18133.839690712346 | |
11231,40.677915999999996,-74.005154,33336,"{'type': 'Point', 'coordinates': [-74.005154, 40.677915999999996]}",3.748917,8892.16805813519 | |
11232,40.657708,-74.004377,28265,"{'type': 'Point', 'coordinates': [-74.004377, 40.657708]}",3.085051,9161.923093005595 | |
11233,40.678302,-73.91993599999999,67053,"{'type': 'Point', 'coordinates': [-73.91993599999999, 40.678302]}",3.49343,19194.029936194514 | |
11234,40.606435999999995,-73.909725,87757,"{'type': 'Point', 'coordinates': [-73.909725, 40.606435999999995]}",21.330983,4114.062628993704 | |
11235,40.583949,-73.949096,79132,"{'type': 'Point', 'coordinates': [-73.949096, 40.583949]}",6.309739,12541.247744161841 | |
11236,40.639413,-73.900664,93877,"{'type': 'Point', 'coordinates': [-73.900664, 40.639413]}",9.411202,9975.027631964547 | |
11237,40.704159999999995,-73.921139,49896,"{'type': 'Point', 'coordinates': [-73.921139, 40.704159999999995]}",2.594728,19229.761269774714 | |
11238,40.679169,-73.9638,49262,"{'type': 'Point', 'coordinates': [-73.9638, 40.679169]}",2.865978,17188.547853472704 | |
11239,40.647735,-73.87947700000001,13393,"{'type': 'Point', 'coordinates': [-73.87947700000001, 40.647735]}",1.626063,8236.458243007804 | |
11351,40.780753000000004,-73.825434,0,"{'type': 'Point', 'coordinates': [-73.825434, 40.780753000000004]}",0.012343,0.0 | |
11354,40.768213,-73.827392,54878,"{'type': 'Point', 'coordinates': [-73.827392, 40.768213]}",5.70089,9626.216257461554 | |
11355,40.751463,-73.820996,85871,"{'type': 'Point', 'coordinates': [-73.820996, 40.751463]}",4.494258,19106.824752829052 | |
11356,40.784923,-73.841548,23438,"{'type': 'Point', 'coordinates': [-73.841548, 40.784923]}",4.084049,5738.912535084667 | |
11357,40.785129,-73.810037,39150,"{'type': 'Point', 'coordinates': [-73.810037, 40.785129]}",7.282053,5376.23112602998 | |
11358,40.760473,-73.796373,37546,"{'type': 'Point', 'coordinates': [-73.796373, 40.760473]}",5.047136,7439.070395566911 | |
11359,40.791605,-73.776724,0,"{'type': 'Point', 'coordinates': [-73.776724, 40.791605]}",0.648383,0.0 | |
11360,40.780348,-73.781548,18884,"{'type': 'Point', 'coordinates': [-73.781548, 40.780348]}",3.609051,5232.400428810787 | |
11361,40.764191,-73.772775,28606,"{'type': 'Point', 'coordinates': [-73.772775, 40.764191]}",4.621857,6189.28711987411 | |
11362,40.756632,-73.735333,17823,"{'type': 'Point', 'coordinates': [-73.735333, 40.756632]}",6.593471,2703.1285949388416 | |
11363,40.772348,-73.74629200000001,6988,"{'type': 'Point', 'coordinates': [-73.74629200000001, 40.772348]}",2.262108,3089.1540103301877 | |
11364,40.745294,-73.760583,34555,"{'type': 'Point', 'coordinates': [-73.760583, 40.745294]}",6.391237,5406.621597665679 | |
11365,40.739634,-73.79449,42252,"{'type': 'Point', 'coordinates': [-73.79449, 40.739634]}",6.517259,6483.09358274698 | |
11366,40.728157,-73.78501700000001,13532,"{'type': 'Point', 'coordinates': [-73.78501700000001, 40.728157]}",2.830903,4780.100201243207 | |
11367,40.730145,-73.82703000000001,41047,"{'type': 'Point', 'coordinates': [-73.82703000000001, 40.730145]}",6.657615,6165.421100499203 | |
11368,40.749736999999996,-73.853045,109931,"{'type': 'Point', 'coordinates': [-73.853045, 40.749736999999996]}",6.909954,15909.078410652228 | |
11369,40.763445000000004,-73.872334,38615,"{'type': 'Point', 'coordinates': [-73.872334, 40.763445000000004]}",2.823943,13674.142856282864 | |
11370,40.765392999999996,-73.893191,39688,"{'type': 'Point', 'coordinates': [-73.893191, 40.765392999999996]}",3.85988,10282.184938391867 | |
11371,40.774411,-73.873272,0,"{'type': 'Point', 'coordinates': [-73.873272, 40.774411]}",2.83711,0.0 | |
11372,40.751675,-73.883666,66636,"{'type': 'Point', 'coordinates': [-73.883666, 40.751675]}",1.918699,34729.783045699194 | |
11373,40.738843,-73.878539,100820,"{'type': 'Point', 'coordinates': [-73.878539, 40.738843]}",3.942312,25573.825714453855 | |
11374,40.726467,-73.861515,43600,"{'type': 'Point', 'coordinates': [-73.861515, 40.726467]}",2.442527,17850.36562543628 | |
11375,40.720963,-73.84614,68733,"{'type': 'Point', 'coordinates': [-73.84614, 40.720963]}",5.152091,13340.796969618743 | |
11377,40.744820000000004,-73.90516099999999,89830,"{'type': 'Point', 'coordinates': [-73.90516099999999, 40.744820000000004]}",6.56992,13672.921435877453 | |
11378,40.724744,-73.909639,34981,"{'type': 'Point', 'coordinates': [-73.909639, 40.724744]}",6.796206,5147.136505279564 | |
11379,40.716753000000004,-73.879598,34821,"{'type': 'Point', 'coordinates': [-73.879598, 40.716753000000004]}",5.37369,6479.904869838045 | |
11385,40.700647,-73.889423,98592,"{'type': 'Point', 'coordinates': [-73.889423, 40.700647]}",9.445447,10438.044912008929 | |
11411,40.694025,-73.736223,18556,"{'type': 'Point', 'coordinates': [-73.736223, 40.694025]}",3.025177,6133.855969419311 | |
11412,40.698096,-73.75899,34882,"{'type': 'Point', 'coordinates': [-73.75899, 40.698096]}",4.265905,8176.928459494527 | |
11413,40.671170000000004,-73.752063,38912,"{'type': 'Point', 'coordinates': [-73.752063, 40.671170000000004]}",8.100927,4803.4008947371085 | |
11414,40.657604,-73.84480400000001,26148,"{'type': 'Point', 'coordinates': [-73.84480400000001, 40.657604]}",6.194707,4221.022882922469 | |
11415,40.7079,-73.82829100000001,19341,"{'type': 'Point', 'coordinates': [-73.82829100000001, 40.7079]}",1.466888,13185.055709774708 | |
11416,40.684625,-73.849582,24861,"{'type': 'Point', 'coordinates': [-73.849582, 40.684625]}",1.713824,14506.156991616408 | |
11417,40.676434,-73.84446700000001,28967,"{'type': 'Point', 'coordinates': [-73.84446700000001, 40.676434]}",2.898424,9994.051939950816 | |
11418,40.700209,-73.836031,36256,"{'type': 'Point', 'coordinates': [-73.836031, 40.700209]}",4.230385,8570.378346178893 | |
11419,40.688638,-73.822942,47211,"{'type': 'Point', 'coordinates': [-73.822942, 40.688638]}",2.899294,16283.619391479444 | |
11420,40.673563,-73.817829,44354,"{'type': 'Point', 'coordinates': [-73.817829, 40.673563]}",5.380501,8243.470264200305 | |
11421,40.69406,-73.858626,39127,"{'type': 'Point', 'coordinates': [-73.858626, 40.69406]}",3.340825,11711.777779440707 | |
11422,40.660065,-73.736012,30425,"{'type': 'Point', 'coordinates': [-73.736012, 40.660065]}",5.309672,5730.10912915148 | |
11423,40.715608,-73.768493,29987,"{'type': 'Point', 'coordinates': [-73.768493, 40.715608]}",3.665705,8180.4182278715825 | |
11424,40.714296000000004,-73.827292,0,"{'type': 'Point', 'coordinates': [-73.827292, 40.714296000000004]}",0.090722,0.0 | |
11425,40.607688,-74.023949,0,"{'type': 'Point', 'coordinates': [-74.023949, 40.607688]}",0.094475,0.0 | |
11426,40.736462,-73.722359,17590,"{'type': 'Point', 'coordinates': [-73.722359, 40.736462]}",3.494228,5034.016097404062 | |
11427,40.730918,-73.745621,23593,"{'type': 'Point', 'coordinates': [-73.745621, 40.730918]}",4.094886,5761.576756959779 | |
11428,40.721008000000005,-73.742257,19168,"{'type': 'Point', 'coordinates': [-73.742257, 40.721008000000005]}",2.153823,8899.524241314166 | |
11429,40.709781,-73.738733,25105,"{'type': 'Point', 'coordinates': [-73.738733, 40.709781]}",3.351015,7491.759959295915 | |
11430,40.646809000000005,-73.786169,184,"{'type': 'Point', 'coordinates': [-73.786169, 40.646809000000005]}",18.491404,9.950569464600958 | |
11432,40.715359,-73.793072,60809,"{'type': 'Point', 'coordinates': [-73.793072, 40.715359]}",5.566863,10923.387193110375 | |
11433,40.698151,-73.786912,32687,"{'type': 'Point', 'coordinates': [-73.786912, 40.698151]}",4.012838,8145.606675375382 | |
11434,40.676808,-73.776425,59129,"{'type': 'Point', 'coordinates': [-73.776425, 40.676808]}",8.571361,6898.437716017328 | |
11435,40.701229,-73.80964,53687,"{'type': 'Point', 'coordinates': [-73.80964, 40.701229]}",3.959892,13557.69298758653 | |
11436,40.675818,-73.796661,17949,"{'type': 'Point', 'coordinates': [-73.796661, 40.675818]}",2.054419,8736.776675059955 | |
11451,40.701190000000004,-73.79594300000001,0,"{'type': 'Point', 'coordinates': [-73.79594300000001, 40.701190000000004]}",0.090862,0.0 | |
11501,40.746286,-73.63890500000001,19148,"{'type': 'Point', 'coordinates': [-73.63890500000001, 40.746286]}",5.308399,3607.1139339751967 | |
11507,40.770846999999996,-73.65226,7406,"{'type': 'Point', 'coordinates': [-73.65226, 40.770846999999996]}",2.796551,2648.2620914118856 | |
11509,40.587963,-73.728528,2653,"{'type': 'Point', 'coordinates': [-73.728528, 40.587963]}",2.919256,908.7931993631255 | |
11510,40.650127000000005,-73.607709,33048,"{'type': 'Point', 'coordinates': [-73.607709, 40.650127000000005]}",12.442494,2656.0591469845194 | |
11514,40.749891999999996,-73.612477,4673,"{'type': 'Point', 'coordinates': [-73.612477, 40.749891999999996]}",2.323394,2011.2817714085515 | |
11516,40.625787,-73.726685,7556,"{'type': 'Point', 'coordinates': [-73.726685, 40.625787]}",2.262295,3339.9711355062004 | |
11518,40.637471999999995,-73.66680699999999,10549,"{'type': 'Point', 'coordinates': [-73.66680699999999, 40.637471999999995]}",3.855127,2736.3560266626755 | |
11520,40.649401,-73.582951,43341,"{'type': 'Point', 'coordinates': [-73.582951, 40.649401]}",14.282464,3034.5604231874836 | |
11530,40.726853999999996,-73.63700899999999,27273,"{'type': 'Point', 'coordinates': [-73.63700899999999, 40.726853999999996]}",18.43848,1479.134939539485 | |
11542,40.872605,-73.628622,27633,"{'type': 'Point', 'coordinates': [-73.628622, 40.872605]}",17.885243,1545.016749283194 | |
11545,40.826321,-73.589365,12065,"{'type': 'Point', 'coordinates': [-73.589365, 40.826321]}",29.758264,405.43359652969 | |
11547,40.83367,-73.642687,793,"{'type': 'Point', 'coordinates': [-73.642687, 40.83367]}",1.180988,671.4716830314957 | |
11548,40.812868,-73.62740500000001,2780,"{'type': 'Point', 'coordinates': [-73.62740500000001, 40.812868]}",2.371531,1172.2385243962656 | |
11549,40.717289,-73.602775,2922,"{'type': 'Point', 'coordinates': [-73.602775, 40.717289]}",0.183248,15945.603771937484 | |
11550,40.701475,-73.62110799999999,56435,"{'type': 'Point', 'coordinates': [-73.62110799999999, 40.701475]}",11.050888,5106.829424024567 | |
11552,40.692979,-73.652416,23616,"{'type': 'Point', 'coordinates': [-73.652416, 40.692979]}",9.534098,2477.004117222206 | |
11553,40.706742999999996,-73.592044,26034,"{'type': 'Point', 'coordinates': [-73.592044, 40.706742999999996]}",9.089609,2864.149602034587 | |
11554,40.720115,-73.558861,38132,"{'type': 'Point', 'coordinates': [-73.558861, 40.720115]}",16.24741,2346.9586844918667 | |
11556,40.719678,-73.58386,17,"{'type': 'Point', 'coordinates': [-73.58386, 40.719678]}",0.165859,102.49669900337032 | |
11557,40.637176000000004,-73.691976,7823,"{'type': 'Point', 'coordinates': [-73.691976, 40.637176000000004]}",5.606391,1395.3718176274183 | |
11558,40.605357,-73.649046,8370,"{'type': 'Point', 'coordinates': [-73.649046, 40.605357]}",5.22765,1601.1018335198416 | |
11559,40.603733,-73.717352,8176,"{'type': 'Point', 'coordinates': [-73.717352, 40.603733]}",13.29405,615.0119790432561 | |
11560,40.880757,-73.588724,6464,"{'type': 'Point', 'coordinates': [-73.588724, 40.880757]}",19.752057,327.2570547968751 | |
11561,40.589081,-73.648178,37280,"{'type': 'Point', 'coordinates': [-73.648178, 40.589081]}",11.057497,3371.468244576508 | |
11563,40.657253000000004,-73.67371800000001,22666,"{'type': 'Point', 'coordinates': [-73.67371800000001, 40.657253000000004]}",6.211053,3649.300690237227 | |
11565,40.675061,-73.671667,8690,"{'type': 'Point', 'coordinates': [-73.671667, 40.675061]}",2.891036,3005.8428881549726 | |
11566,40.663194,-73.554014,35321,"{'type': 'Point', 'coordinates': [-73.554014, 40.663194]}",16.591621,2128.8456384098936 | |
11568,40.786929,-73.59649,4555,"{'type': 'Point', 'coordinates': [-73.59649, 40.786929]}",23.141306,196.8341804045113 | |
11569,40.589785,-73.582303,1398,"{'type': 'Point', 'coordinates': [-73.582303, 40.589785]}",1.010517,1383.450253682026 | |
11570,40.666066,-73.638409,26646,"{'type': 'Point', 'coordinates': [-73.638409, 40.666066]}",9.742791,2734.9452533673357 | |
11572,40.631772,-73.636624,30574,"{'type': 'Point', 'coordinates': [-73.636624, 40.631772]}",13.586717,2250.286069843068 | |
11575,40.680422,-73.584877,16272,"{'type': 'Point', 'coordinates': [-73.584877, 40.680422]}",4.637871,3508.5063814840905 | |
11576,40.798032,-73.647275,12366,"{'type': 'Point', 'coordinates': [-73.647275, 40.798032]}",12.502794,989.0589255489613 | |
11577,40.783264,-73.63887700000001,12337,"{'type': 'Point', 'coordinates': [-73.63887700000001, 40.783264]}",7.894899,1562.6545697418042 | |
11579,40.844015999999996,-73.644006,5055,"{'type': 'Point', 'coordinates': [-73.644006, 40.844015999999996]}",2.907571,1738.5645956710946 | |
11580,40.6749,-73.70215400000001,40113,"{'type': 'Point', 'coordinates': [-73.70215400000001, 40.6749]}",10.140759,3955.6210733338603 | |
11581,40.651028000000004,-73.715325,20844,"{'type': 'Point', 'coordinates': [-73.715325, 40.651028000000004]}",7.486507,2784.2089775645704 | |
11590,40.755182,-73.574338,45768,"{'type': 'Point', 'coordinates': [-73.574338, 40.755182]}",17.306355,2644.5776710347154 | |
11596,40.759667,-73.642309,10480,"{'type': 'Point', 'coordinates': [-73.642309, 40.759667]}",3.449747,3037.9039390424864 | |
11598,40.630935,-73.712339,13328,"{'type': 'Point', 'coordinates': [-73.712339, 40.630935]}",5.481391,2431.4995956318385 | |
11691,40.601261,-73.761646,60035,"{'type': 'Point', 'coordinates': [-73.761646, 40.601261]}",7.244412,8287.076991203703 | |
11692,40.594153999999996,-73.791986,18540,"{'type': 'Point', 'coordinates': [-73.791986, 40.594153999999996]}",2.823518,6566.27653870101 | |
11693,40.590916,-73.809715,11916,"{'type': 'Point', 'coordinates': [-73.809715, 40.590916]}",2.553809,4665.971495910618 | |
11694,40.57827,-73.844762,20408,"{'type': 'Point', 'coordinates': [-73.844762, 40.57827]}",3.462068,5894.742679808715 | |
11697,40.552684,-73.924526,4079,"{'type': 'Point', 'coordinates': [-73.924526, 40.552684]}",6.738717,605.3081024177154 | |
11701,40.681433,-73.410099,27109,"{'type': 'Point', 'coordinates': [-73.410099, 40.681433]}",13.745605,1972.1940212889867 | |
11702,40.650696999999994,-73.262218,14498,"{'type': 'Point', 'coordinates': [-73.262218, 40.650696999999994]}",24.554141,590.4503032706377 | |
11703,40.732671,-73.32500999999999,16415,"{'type': 'Point', 'coordinates': [-73.32500999999999, 40.732671]}",8.175063,2007.9355963373005 | |
11704,40.717504,-73.358203,40222,"{'type': 'Point', 'coordinates': [-73.358203, 40.717504]}",21.42889,1876.998761951739 | |
11705,40.745255,-73.054836,8030,"{'type': 'Point', 'coordinates': [-73.054836, 40.745255]}",9.420957,852.3550208328093 | |
11706,40.722537,-73.252183,62543,"{'type': 'Point', 'coordinates': [-73.252183, 40.722537]}",47.247203,1323.739735450583 | |
11709,40.906313,-73.55824399999999,6669,"{'type': 'Point', 'coordinates': [-73.55824399999999, 40.906313]}",5.221714,1277.1668459819898 | |
11710,40.671972,-73.531972,34496,"{'type': 'Point', 'coordinates': [-73.531972, 40.671972]}",14.305779,2411.333210166325 | |
11713,40.776087,-72.942806,10401,"{'type': 'Point', 'coordinates': [-72.942806, 40.776087]}",13.183196,788.9589140599896 | |
11714,40.742563,-73.486073,22658,"{'type': 'Point', 'coordinates': [-73.486073, 40.742563]}",11.18872,2025.075254363323 | |
11715,40.750968,-73.034924,4752,"{'type': 'Point', 'coordinates': [-73.034924, 40.750968]}",4.399369,1080.1549040328284 | |
11716,40.776692,-73.134854,10700,"{'type': 'Point', 'coordinates': [-73.134854, 40.776692]}",22.706441,471.23192930146996 | |
11717,40.783805,-73.252263,60745,"{'type': 'Point', 'coordinates': [-73.252263, 40.783805]}",28.249773,2150.2827651039884 | |
11718,40.716435,-73.261514,3103,"{'type': 'Point', 'coordinates': [-73.261514, 40.716435]}",2.476148,1253.1561118317645 | |
11719,40.782152,-72.912098,3589,"{'type': 'Point', 'coordinates': [-72.912098, 40.782152]}",16.05397,223.55840953982099 | |
11720,40.870331,-73.082113,29189,"{'type': 'Point', 'coordinates': [-73.082113, 40.870331]}",21.151623,1379.9886656451847 | |
11721,40.902425,-73.371427,6292,"{'type': 'Point', 'coordinates': [-73.371427, 40.902425]}",10.201712,616.759226294567 | |
11722,40.783056,-73.194911,35177,"{'type': 'Point', 'coordinates': [-73.194911, 40.783056]}",18.877399,1863.4452765447188 | |
11724,40.864221,-73.45638100000001,3220,"{'type': 'Point', 'coordinates': [-73.45638100000001, 40.864221]}",10.502827,306.58412254148334 | |
11725,40.840492,-73.280815,29150,"{'type': 'Point', 'coordinates': [-73.280815, 40.840492]}",25.2443,1154.7161141326953 | |
11726,40.67879,-73.39572700000001,19857,"{'type': 'Point', 'coordinates': [-73.39572700000001, 40.67879]}",7.073706,2807.1565315267558 | |
11727,40.882067,-73.004019,29030,"{'type': 'Point', 'coordinates': [-73.004019, 40.882067]}",23.593137,1230.4425647170192 | |
11729,40.761136,-73.32526,28032,"{'type': 'Point', 'coordinates': [-73.32526, 40.761136]}",16.237312,1726.394122376906 | |
11730,40.717339,-73.17023,14712,"{'type': 'Point', 'coordinates': [-73.17023, 40.717339]}",24.275177,606.0511937770835 | |
11731,40.862633,-73.31693,30184,"{'type': 'Point', 'coordinates': [-73.31693, 40.862633]}",21.722003,1389.5587805599696 | |
11732,40.844738,-73.536885,3430,"{'type': 'Point', 'coordinates': [-73.536885, 40.844738]}",3.961392,865.8572542177093 | |
11733,40.940234999999994,-73.11278,18949,"{'type': 'Point', 'coordinates': [-73.11278, 40.940234999999994]}",42.889051,441.814392209331 | |
11735,40.732746999999996,-73.432789,32098,"{'type': 'Point', 'coordinates': [-73.432789, 40.732746999999996]}",27.110129,1183.9855133112794 | |
11738,40.838208,-73.038185,17638,"{'type': 'Point', 'coordinates': [-73.038185, 40.838208]}",13.811753,1277.0283395597937 | |
11739,40.735995,-73.16080500000001,1223,"{'type': 'Point', 'coordinates': [-73.16080500000001, 40.735995]}",2.306959,530.1351259385191 | |
11740,40.865398,-73.361296,9454,"{'type': 'Point', 'coordinates': [-73.361296, 40.865398]}",9.604282,984.3526043904168 | |
11741,40.794894,-73.070326,27655,"{'type': 'Point', 'coordinates': [-73.070326, 40.794894]}",19.360305,1428.4382399967355 | |
11742,40.810074,-73.041409,13261,"{'type': 'Point', 'coordinates': [-73.041409, 40.810074]}",12.946169,1024.3184682665583 | |
11743,40.883410999999995,-73.423556,42230,"{'type': 'Point', 'coordinates': [-73.423556, 40.883410999999995]}",75.316634,560.6995129389346 | |
11746,40.814268,-73.362276,67094,"{'type': 'Point', 'coordinates': [-73.362276, 40.814268]}",61.887528,1084.1279684009999 | |
11747,40.784369,-73.408541,19803,"{'type': 'Point', 'coordinates': [-73.408541, 40.784369]}",34.070758,581.2315652032163 | |
11749,40.806746999999994,-73.17089399999999,3345,"{'type': 'Point', 'coordinates': [-73.17089399999999, 40.806746999999994]}",5.664381,590.5323105913957 | |
11751,40.730486,-73.213924,14961,"{'type': 'Point', 'coordinates': [-73.213924, 40.730486]}",12.021246,1244.5465303679835 | |
11752,40.757114,-73.174012,9531,"{'type': 'Point', 'coordinates': [-73.174012, 40.757114]}",9.681297,984.475530499684 | |
11753,40.789713,-73.539899,12014,"{'type': 'Point', 'coordinates': [-73.539899, 40.789713]}",10.084824,1191.2949596343972 | |
11754,40.885566,-73.249901,18958,"{'type': 'Point', 'coordinates': [-73.249901, 40.885566]}",21.743926,871.8756677152047 | |
11755,40.857817,-73.116844,12387,"{'type': 'Point', 'coordinates': [-73.116844, 40.857817]}",8.41078,1472.7528243516058 | |
11756,40.724512,-73.516326,42791,"{'type': 'Point', 'coordinates': [-73.516326, 40.724512]}",14.367136,2978.394580520432 | |
11757,40.689009999999996,-73.373328,45700,"{'type': 'Point', 'coordinates': [-73.373328, 40.689009999999996]}",18.394509,2484.437067605338 | |
11758,40.668934,-73.458448,53804,"{'type': 'Point', 'coordinates': [-73.458448, 40.668934]}",30.131224,1785.6559693691834 | |
11762,40.682744,-73.446664,22360,"{'type': 'Point', 'coordinates': [-73.446664, 40.682744]}",8.104522,2758.953581716479 | |
11763,40.826582,-72.98405,28506,"{'type': 'Point', 'coordinates': [-72.98405, 40.826582]}",35.831273,795.5620220358902 | |
11764,40.92986,-72.973063,13200,"{'type': 'Point', 'coordinates': [-72.973063, 40.92986]}",26.817508,492.2157569599681 | |
11765,40.882186,-73.558941,737,"{'type': 'Point', 'coordinates': [-73.558941, 40.882186]}",7.164314,102.87097969184488 | |
11766,40.939219,-73.01866600000001,12635,"{'type': 'Point', 'coordinates': [-73.01866600000001, 40.939219]}",19.701013,641.3375799508381 | |
11767,40.842949,-73.145216,14530,"{'type': 'Point', 'coordinates': [-73.145216, 40.842949]}",10.839697,1340.4433721717498 | |
11768,40.923631,-73.339309,21902,"{'type': 'Point', 'coordinates': [-73.339309, 40.923631]}",68.404451,320.183843007526 | |
11769,40.734504,-73.125222,9506,"{'type': 'Point', 'coordinates': [-73.125222, 40.734504]}",12.558526,756.9359652557952 | |
11770,40.645866999999996,-73.156498,137,"{'type': 'Point', 'coordinates': [-73.156498, 40.645866999999996]}",1.127898,121.46488423598588 | |
11771,40.872799,-73.52502,10007,"{'type': 'Point', 'coordinates': [-73.52502, 40.872799]}",37.591524,266.2036261152913 | |
11772,40.76178,-72.98740699999999,44837,"{'type': 'Point', 'coordinates': [-72.98740699999999, 40.76178]}",43.10701,1040.1324517752448 | |
11776,40.913604,-73.046385,24235,"{'type': 'Point', 'coordinates': [-73.046385, 40.913604]}",17.837153,1358.680950934266 | |
11777,40.956068,-73.066659,8968,"{'type': 'Point', 'coordinates': [-73.066659, 40.956068]}",16.765263,534.9155572447626 | |
11778,40.948046000000005,-72.937093,12709,"{'type': 'Point', 'coordinates': [-72.937093, 40.948046000000005]}",21.17442,600.2053421061828 | |
11779,40.812958,-73.11449,38421,"{'type': 'Point', 'coordinates': [-73.11449, 40.812958]}",33.329192,1152.7732205449206 | |
11780,40.909287,-73.174729,15524,"{'type': 'Point', 'coordinates': [-73.174729, 40.909287]}",40.061106,387.5080233681017 | |
11782,40.738088,-73.08166999999999,15814,"{'type': 'Point', 'coordinates': [-73.08166999999999, 40.738088]}",14.540835,1087.5579015923088 | |
11783,40.677611999999996,-73.490014,21288,"{'type': 'Point', 'coordinates': [-73.490014, 40.677611999999996]}",9.275506,2295.0769478236552 | |
11784,40.868938,-73.04124399999999,24655,"{'type': 'Point', 'coordinates': [-73.04124399999999, 40.868938]}",14.154822,1741.8092576508557 | |
11786,40.950485,-72.886658,6344,"{'type': 'Point', 'coordinates': [-72.886658, 40.950485]}",19.199726,330.42138205513976 | |
11787,40.852924,-73.21126,35772,"{'type': 'Point', 'coordinates': [-73.21126, 40.852924]}",40.628884,880.4573613195972 | |
11788,40.818088,-73.21320899999999,16821,"{'type': 'Point', 'coordinates': [-73.21320899999999, 40.818088]}",22.27308,755.2166112634625 | |
11789,40.962028000000004,-72.971008,7895,"{'type': 'Point', 'coordinates': [-72.971008, 40.962028000000004]}",6.791559,1162.4724161271365 | |
11790,40.905957,-73.127374,18511,"{'type': 'Point', 'coordinates': [-73.127374, 40.905957]}",19.035137,972.4647634529765 | |
11791,40.828288,-73.505922,25076,"{'type': 'Point', 'coordinates': [-73.505922, 40.828288]}",34.319285,730.6679029006577 | |
11792,40.955033,-72.82556899999999,8523,"{'type': 'Point', 'coordinates': [-72.82556899999999, 40.955033]}",32.601638,261.4285822080473 | |
11793,40.651288,-73.514726,32298,"{'type': 'Point', 'coordinates': [-73.514726, 40.651288]}",25.302851,1276.456949456012 | |
11794,40.913615,-73.12524599999999,3165,"{'type': 'Point', 'coordinates': [-73.12524599999999, 40.913615]}",0.731965,4323.9772393488765 | |
11795,40.709005,-73.296337,26030,"{'type': 'Point', 'coordinates': [-73.296337, 40.709005]}",15.854064,1641.8503167389763 | |
11796,40.731246999999996,-73.099419,4056,"{'type': 'Point', 'coordinates': [-73.099419, 40.731246999999996]}",3.792355,1069.5201266759045 | |
11797,40.820208,-73.47245,9041,"{'type': 'Point', 'coordinates': [-73.47245, 40.820208]}",13.346179,677.4223543682428 | |
11798,40.752599,-73.378743,15347,"{'type': 'Point', 'coordinates': [-73.378743, 40.752599]}",12.355083,1242.1608175355843 | |
11801,40.762304,-73.524452,39553,"{'type': 'Point', 'coordinates': [-73.524452, 40.762304]}",17.226641,2296.0367026862637 | |
11803,40.7817,-73.473035,28127,"{'type': 'Point', 'coordinates': [-73.473035, 40.7817]}",15.693871,1792.228316391794 | |
11804,40.759009999999996,-73.45738399999999,5010,"{'type': 'Point', 'coordinates': [-73.45738399999999, 40.759009999999996]}",7.476682,670.0833337568723 | |
11901,40.925812,-72.64617,27172,"{'type': 'Point', 'coordinates': [-72.64617, 40.925812]}",156.159647,174.0014179207257 | |
11930,40.989988000000004,-72.099587,1343,"{'type': 'Point', 'coordinates': [-72.099587, 40.989988000000004]}",44.928754,29.8917704239027 | |
11931,40.934271,-72.612394,151,"{'type': 'Point', 'coordinates': [-72.612394, 40.934271]}",1.413228,106.84758581064061 | |
11932,40.934313,-72.30661500000001,1398,"{'type': 'Point', 'coordinates': [-72.30661500000001, 40.934313]}",27.160279,51.47222530372387 | |
11933,40.942231,-72.765594,6844,"{'type': 'Point', 'coordinates': [-72.765594, 40.942231]}",78.072915,87.66164296542534 | |
11934,40.798359000000005,-72.794297,7263,"{'type': 'Point', 'coordinates': [-72.794297, 40.798359000000005]}",13.179765,551.0720411175769 | |
11935,41.021223,-72.486958,3304,"{'type': 'Point', 'coordinates': [-72.486958, 41.021223]}",29.446421,112.20378870491595 | |
11937,41.013013,-72.168912,15398,"{'type': 'Point', 'coordinates': [-72.168912, 41.013013]}",175.069906,87.95343729721314 | |
11939,41.123115999999996,-72.31535,926,"{'type': 'Point', 'coordinates': [-72.31535, 41.123115999999996]}",19.279196,48.03104859766974 | |
11940,40.81317,-72.752004,5210,"{'type': 'Point', 'coordinates': [-72.752004, 40.81317]}",14.706292,354.27013145121833 | |
11941,40.83016,-72.729761,1986,"{'type': 'Point', 'coordinates': [-72.729761, 40.83016]}",6.701697,296.3428516687639 | |
11942,40.850437,-72.582821,4603,"{'type': 'Point', 'coordinates': [-72.582821, 40.850437]}",24.499578,187.88078717110963 | |
11944,41.10403,-72.37154100000001,4299,"{'type': 'Point', 'coordinates': [-72.37154100000001, 41.10403]}",19.526656,220.1605845875505 | |
11946,40.87027,-72.521704,14068,"{'type': 'Point', 'coordinates': [-72.521704, 40.87027]}",40.930548,343.70416931627693 | |
11947,40.950659,-72.571053,416,"{'type': 'Point', 'coordinates': [-72.571053, 40.950659]}",1.683073,247.16693809478258 | |
11948,40.960725,-72.54988,1123,"{'type': 'Point', 'coordinates': [-72.54988, 40.960725]}",7.052341,159.23790412290046 | |
11949,40.866503,-72.804643,14573,"{'type': 'Point', 'coordinates': [-72.804643, 40.866503]}",90.085847,161.76791899397915 | |
11950,40.808032,-72.84701,16268,"{'type': 'Point', 'coordinates': [-72.84701, 40.808032]}",11.050196,1472.191081497559 | |
11951,40.763164,-72.830344,13680,"{'type': 'Point', 'coordinates': [-72.830344, 40.763164]}",20.281792,674.4966125281238 | |
11952,41.001647999999996,-72.547599,4637,"{'type': 'Point', 'coordinates': [-72.547599, 41.001647999999996]}",32.703719,141.78815565287852 | |
11953,40.892507,-72.951176,13553,"{'type': 'Point', 'coordinates': [-72.951176, 40.892507]}",26.723516,507.15631880176244 | |
11954,41.047533,-71.946386,3326,"{'type': 'Point', 'coordinates': [-71.946386, 41.047533]}",92.858299,35.81801557661529 | |
11955,40.809133,-72.816101,3285,"{'type': 'Point', 'coordinates': [-72.816101, 40.809133]}",8.020509,409.5750032822106 | |
11956,40.969049,-72.462175,349,"{'type': 'Point', 'coordinates': [-72.462175, 40.969049]}",3.442535,101.37878046265325 | |
11957,41.192201000000004,-72.14896800000001,743,"{'type': 'Point', 'coordinates': [-72.14896800000001, 41.192201000000004]}",56.594943,13.12838145273863 | |
11958,41.039066999999996,-72.46441899999999,635,"{'type': 'Point', 'coordinates': [-72.46441899999999, 41.039066999999996]}",10.628134,59.747082601706005 | |
11959,40.822586,-72.601345,939,"{'type': 'Point', 'coordinates': [-72.601345, 40.822586]}",11.034098,85.09984232512707 | |
11960,40.810615000000006,-72.706062,1084,"{'type': 'Point', 'coordinates': [-72.706062, 40.810615000000006]}",5.079429,213.40981437086728 | |
11961,40.905139,-72.888349,12834,"{'type': 'Point', 'coordinates': [-72.888349, 40.905139]}",33.537549,382.67554972487704 | |
11962,40.930895,-72.26871899999999,494,"{'type': 'Point', 'coordinates': [-72.26871899999999, 40.930895]}",18.620069,26.530513930963412 | |
11963,40.993155,-72.319664,6622,"{'type': 'Point', 'coordinates': [-72.319664, 40.993155]}",41.354335,160.12831544746155 | |
11964,41.055827,-72.319034,1858,"{'type': 'Point', 'coordinates': [-72.319034, 41.055827]}",51.31767,36.20585268193197 | |
11965,41.096081,-72.2884,534,"{'type': 'Point', 'coordinates': [-72.2884, 41.096081]}",24.074124,22.181492460535633 | |
11967,40.794778,-72.875477,26583,"{'type': 'Point', 'coordinates': [-72.875477, 40.794778]}",31.596762,841.320385930685 | |
11968,40.905923,-72.415661,11593,"{'type': 'Point', 'coordinates': [-72.415661, 40.905923]}",84.95277,136.46406114832982 | |
11970,40.938952,-72.577539,522,"{'type': 'Point', 'coordinates': [-72.577539, 40.938952]}",1.524799,342.34020352846505 | |
11971,41.064037,-72.430926,5818,"{'type': 'Point', 'coordinates': [-72.430926, 41.064037]}",39.321325,147.9604260538016 | |
11972,40.847825,-72.702889,1321,"{'type': 'Point', 'coordinates': [-72.702889, 40.847825]}",6.253378,211.24582585604134 | |
11973,40.86772,-72.88272099999999,9,"{'type': 'Point', 'coordinates': [-72.88272099999999, 40.86772]}",11.35123,0.7928656189681648 | |
11975,40.941107,-72.244466,408,"{'type': 'Point', 'coordinates': [-72.244466, 40.941107]}",10.459618,39.007160682158755 | |
11976,40.922393,-72.35070400000001,1565,"{'type': 'Point', 'coordinates': [-72.35070400000001, 40.922393]}",37.63175,41.58722355457825 | |
11977,40.828388000000004,-72.679194,2467,"{'type': 'Point', 'coordinates': [-72.679194, 40.828388000000004]}",15.068215,163.7221130704599 | |
11978,40.826322999999995,-72.649008,3255,"{'type': 'Point', 'coordinates': [-72.649008, 40.826322999999995]}",34.168515,95.26313917944634 | |
11980,40.831296,-72.923154,4990,"{'type': 'Point', 'coordinates': [-72.923154, 40.831296]}",34.283359,145.55166545961848 | |
12007,42.455665,-73.927143,60,"{'type': 'Point', 'coordinates': [-73.927143, 42.455665]}",3.147762,19.061161549062476 | |
12008,42.853488,-73.90653499999999,497,"{'type': 'Point', 'coordinates': [-73.90653499999999, 42.853488]}",2.605826,190.72647214357366 | |
12009,42.697722999999996,-74.03535,7164,"{'type': 'Point', 'coordinates': [-74.03535, 42.697722999999996]}",137.402094,52.13894338466195 | |
12010,42.937632,-74.173325,28937,"{'type': 'Point', 'coordinates': [-74.173325, 42.937632]}",345.527384,83.74734200517086 | |
12015,42.294057,-73.82511600000001,3010,"{'type': 'Point', 'coordinates': [-73.82511600000001, 42.294057]}",36.061188,83.46924122411053 | |
12017,42.32111,-73.455997,435,"{'type': 'Point', 'coordinates': [-73.455997, 42.32111]}",51.795768,8.398369534746545 | |
12018,42.628833,-73.520771,7930,"{'type': 'Point', 'coordinates': [-73.520771, 42.628833]}",118.579206,66.87513154709436 | |
12019,42.934351,-73.88180799999999,14740,"{'type': 'Point', 'coordinates': [-73.88180799999999, 42.934351]}",77.68281,189.7459682521783 | |
12020,43.001589,-73.868123,31192,"{'type': 'Point', 'coordinates': [-73.868123, 43.001589]}",202.881843,153.74466013698427 | |
12022,42.656951,-73.33387900000001,929,"{'type': 'Point', 'coordinates': [-73.33387900000001, 42.656951]}",83.955046,11.065445667196705 | |
12023,42.598558000000004,-74.183022,2196,"{'type': 'Point', 'coordinates': [-74.183022, 42.598558000000004]}",149.856234,14.65404502291176 | |
12024,42.476788,-73.533278,31,"{'type': 'Point', 'coordinates': [-73.533278, 42.476788]}",2.697849,11.490635687912851 | |
12025,43.083346,-74.138092,5505,"{'type': 'Point', 'coordinates': [-74.138092, 43.083346]}",95.044942,57.91996800839754 | |
12027,42.935415,-73.907815,3882,"{'type': 'Point', 'coordinates': [-73.907815, 42.935415]}",18.633246,208.33729131252815 | |
12028,42.934442,-73.442269,1172,"{'type': 'Point', 'coordinates': [-73.442269, 42.934442]}",59.173105,19.806295444526697 | |
12029,42.41595,-73.424961,1113,"{'type': 'Point', 'coordinates': [-73.424961, 42.41595]}",52.654715,21.137708180549453 | |
12031,42.766038,-74.451615,175,"{'type': 'Point', 'coordinates': [-74.451615, 42.766038]}",8.403851,20.82378661877751 | |
12032,43.128628000000006,-74.471601,836,"{'type': 'Point', 'coordinates': [-74.471601, 43.128628000000006]}",241.520634,3.4614019769424753 | |
12033,42.543138,-73.705499,7851,"{'type': 'Point', 'coordinates': [-73.705499, 42.543138]}",71.711079,109.48099107531209 | |
12035,42.730427,-74.35922099999999,802,"{'type': 'Point', 'coordinates': [-74.35922099999999, 42.730427]}",16.416076,48.85454964998944 | |
12036,42.541514,-74.673053,228,"{'type': 'Point', 'coordinates': [-74.673053, 42.541514]}",19.202875,11.873222108668624 | |
12037,42.344725,-73.567126,4015,"{'type': 'Point', 'coordinates': [-73.567126, 42.344725]}",80.358742,49.96345014958049 | |
12040,42.63735,-73.350721,113,"{'type': 'Point', 'coordinates': [-73.350721, 42.63735]}",3.384006,33.39237578183963 | |
12041,42.577943,-73.95266,481,"{'type': 'Point', 'coordinates': [-73.95266, 42.577943]}",4.097524,117.38796404853272 | |
12042,42.416517999999996,-73.93820600000001,271,"{'type': 'Point', 'coordinates': [-73.93820600000001, 42.416517999999996]}",11.283354,24.017681267467104 | |
12043,42.69397,-74.530506,8509,"{'type': 'Point', 'coordinates': [-74.530506, 42.69397]}",160.643811,52.96811590208103 | |
12045,42.482555,-73.80053199999999,584,"{'type': 'Point', 'coordinates': [-73.80053199999999, 42.482555]}",2.259761,258.4344096565964 | |
12046,42.507517,-73.92562099999999,817,"{'type': 'Point', 'coordinates': [-73.92562099999999, 42.507517]}",45.1424,18.098284539590274 | |
12047,42.784054,-73.726219,19664,"{'type': 'Point', 'coordinates': [-73.726219, 42.784054]}",26.57164,740.0371222852635 | |
12051,42.345521999999995,-73.842543,7070,"{'type': 'Point', 'coordinates': [-73.842543, 42.345521999999995]}",56.176152,125.85411688575607 | |
12052,42.75447,-73.478427,1568,"{'type': 'Point', 'coordinates': [-73.478427, 42.75447]}",81.192625,19.312098851342714 | |
12053,42.757544,-74.190867,4587,"{'type': 'Point', 'coordinates': [-74.190867, 42.757544]}",161.851864,28.34073013827014 | |
12054,42.608546999999994,-73.864416,16918,"{'type': 'Point', 'coordinates': [-73.864416, 42.608546999999994]}",40.085922,422.04342961102407 | |
12056,42.764784999999996,-74.09515,2310,"{'type': 'Point', 'coordinates': [-74.09515, 42.764784999999996]}",47.905144,48.22029133238802 | |
12057,42.968892,-73.346287,1835,"{'type': 'Point', 'coordinates': [-73.346287, 42.968892]}",91.103653,20.141892663733255 | |
12058,42.34442,-73.917635,1445,"{'type': 'Point', 'coordinates': [-73.917635, 42.34442]}",50.603583,28.55529024496151 | |
12059,42.619223,-74.06088100000001,1632,"{'type': 'Point', 'coordinates': [-74.06088100000001, 42.619223]}",69.018918,23.645690881447894 | |
12060,42.410631,-73.505286,1507,"{'type': 'Point', 'coordinates': [-73.505286, 42.410631]}",89.707037,16.7991280327317 | |
12061,42.599312,-73.657175,9050,"{'type': 'Point', 'coordinates': [-73.657175, 42.599312]}",52.425588,172.62562701251917 | |
12062,42.538976,-73.504976,1776,"{'type': 'Point', 'coordinates': [-73.504976, 42.538976]}",75.651556,23.47605381705566 | |
12063,42.568162,-73.638049,444,"{'type': 'Point', 'coordinates': [-73.638049, 42.568162]}",3.701083,119.96488595365194 | |
12064,42.614166,-74.65571899999999,563,"{'type': 'Point', 'coordinates': [-74.65571899999999, 42.614166]}",29.636378,18.996923308239623 | |
12065,42.852284000000004,-73.785597,41776,"{'type': 'Point', 'coordinates': [-73.785597, 42.852284000000004]}",92.954922,449.4221403359362 | |
12066,42.805926,-74.233025,2143,"{'type': 'Point', 'coordinates': [-74.233025, 42.805926]}",89.750021,23.87743173898533 | |
12067,42.557460999999996,-73.920294,1506,"{'type': 'Point', 'coordinates': [-73.920294, 42.557460999999996]}",55.963882,26.910213269336822 | |
12068,42.956069,-74.401829,3201,"{'type': 'Point', 'coordinates': [-74.401829, 42.956069]}",81.573191,39.24083342528552 | |
12069,42.946036,-74.279938,256,"{'type': 'Point', 'coordinates': [-74.279938, 42.946036]}",1.779466,143.8633837342214 | |
12070,42.986058,-74.263032,1410,"{'type': 'Point', 'coordinates': [-74.263032, 42.986058]}",32.080881,43.95141143411866 | |
12071,42.552657,-74.422661,270,"{'type': 'Point', 'coordinates': [-74.422661, 42.552657]}",23.912246,11.291285645020547 | |
12072,42.884893,-74.356737,2890,"{'type': 'Point', 'coordinates': [-74.356737, 42.884893]}",126.127512,22.913319657015037 | |
12074,43.054217,-74.030006,2963,"{'type': 'Point', 'coordinates': [-74.030006, 43.054217]}",94.549399,31.33811564471182 | |
12075,42.299921999999995,-73.633627,3418,"{'type': 'Point', 'coordinates': [-73.633627, 42.299921999999995]}",102.288706,33.415223768692506 | |
12076,42.410272,-74.39573399999999,1500,"{'type': 'Point', 'coordinates': [-74.39573399999999, 42.410272]}",199.167586,7.531345989201275 | |
12077,42.588163,-73.777694,6246,"{'type': 'Point', 'coordinates': [-73.777694, 42.588163]}",27.148406,230.06875615459705 | |
12078,43.134351,-74.339632,23773,"{'type': 'Point', 'coordinates': [-74.339632, 43.134351]}",290.712198,81.77503442769195 | |
12083,42.424859000000005,-74.02650899999999,3795,"{'type': 'Point', 'coordinates': [-74.02650899999999, 42.424859000000005]}",112.943026,33.60101224842337 | |
12084,42.704669,-73.899364,4271,"{'type': 'Point', 'coordinates': [-73.899364, 42.704669]}",9.385206,455.0779173094336 | |
12085,42.703313,-73.963261,479,"{'type': 'Point', 'coordinates': [-73.963261, 42.703313]}",0.454725,1053.3839133542251 | |
12086,43.011413,-74.103291,1865,"{'type': 'Point', 'coordinates': [-74.103291, 43.011413]}",15.845493,117.69908326613758 | |
12087,42.43225,-73.892894,1073,"{'type': 'Point', 'coordinates': [-73.892894, 42.43225]}",51.653397,20.77307713179058 | |
12089,42.867492999999996,-73.312753,69,"{'type': 'Point', 'coordinates': [-73.312753, 42.867492999999996]}",1.406178,49.06917900863191 | |
12090,42.876802000000005,-73.351525,6262,"{'type': 'Point', 'coordinates': [-73.351525, 42.876802000000005]}",147.724538,42.389707795193786 | |
12092,42.696079,-74.378715,1304,"{'type': 'Point', 'coordinates': [-74.378715, 42.696079]}",39.174847,33.28666478263463 | |
12093,42.497791,-74.628105,1666,"{'type': 'Point', 'coordinates': [-74.628105, 42.497791]}",171.382806,9.720928481005265 | |
12094,42.899423,-73.49005799999999,2268,"{'type': 'Point', 'coordinates': [-73.49005799999999, 42.899423]}",74.633681,30.388424764952973 | |
12095,43.024817,-74.40381500000001,12606,"{'type': 'Point', 'coordinates': [-74.40381500000001, 43.024817]}",157.894007,79.8383690395545 | |
12106,42.389554,-73.710951,2193,"{'type': 'Point', 'coordinates': [-73.710951, 42.389554]}",37.850175,57.938965936088806 | |
12108,43.573248,-74.451487,416,"{'type': 'Point', 'coordinates': [-74.451487, 43.573248]}",385.19307,1.0799778926448496 | |
12110,42.750572999999996,-73.776138,21908,"{'type': 'Point', 'coordinates': [-73.776138, 42.750572999999996]}",39.202888,558.8363796055025 | |
12115,42.477301000000004,-73.5767,189,"{'type': 'Point', 'coordinates': [-73.5767, 42.477301000000004]}",13.513556,13.985956028154249 | |
12116,42.538795,-74.911164,1920,"{'type': 'Point', 'coordinates': [-74.911164, 42.538795]}",101.915744,18.83909123991677 | |
12117,43.167142999999996,-74.261237,3256,"{'type': 'Point', 'coordinates': [-74.261237, 43.167142999999996]}",117.938028,27.607719538942945 | |
12118,42.909313,-73.713071,13897,"{'type': 'Point', 'coordinates': [-73.713071, 42.909313]}",85.38526,162.756428919933 | |
12120,42.449723999999996,-74.148844,613,"{'type': 'Point', 'coordinates': [-74.148844, 42.449723999999996]}",45.514936,13.46810638160625 | |
12121,42.839897,-73.607392,1916,"{'type': 'Point', 'coordinates': [-73.607392, 42.839897]}",61.05566,31.381202004859173 | |
12122,42.54202,-74.326145,4582,"{'type': 'Point', 'coordinates': [-74.326145, 42.54202]}",280.928819,16.310181405774536 | |
12123,42.547343,-73.59830600000001,5124,"{'type': 'Point', 'coordinates': [-73.59830600000001, 42.547343]}",85.693469,59.794521797221215 | |
12124,42.453111,-73.79758100000001,606,"{'type': 'Point', 'coordinates': [-73.79758100000001, 42.453111]}",6.835784,88.65113350568127 | |
12125,42.484747999999996,-73.39984399999999,1373,"{'type': 'Point', 'coordinates': [-73.39984399999999, 42.484747999999996]}",46.454111,29.556049409706713 | |
12130,42.442223,-73.65938,987,"{'type': 'Point', 'coordinates': [-73.65938, 42.442223]}",1.546253,638.317274081279 | |
12131,42.453371000000004,-74.463913,115,"{'type': 'Point', 'coordinates': [-74.463913, 42.453371000000004]}",19.344302,5.944903052071871 | |
12132,42.470521000000005,-73.630031,338,"{'type': 'Point', 'coordinates': [-73.630031, 42.470521000000005]}",4.814732,70.20120746076832 | |
12134,43.269201,-74.228185,3516,"{'type': 'Point', 'coordinates': [-74.228185, 43.269201]}",506.167853,6.946312333272576 | |
12136,42.420119,-73.565108,804,"{'type': 'Point', 'coordinates': [-73.565108, 42.420119]}",47.060337,17.084450542714983 | |
12137,42.860334,-74.133072,1679,"{'type': 'Point', 'coordinates': [-74.133072, 42.860334]}",63.164665,26.58131726021186 | |
12138,42.748836,-73.370379,3168,"{'type': 'Point', 'coordinates': [-73.370379, 42.748836]}",208.95501,15.161158375671395 | |
12139,43.500221,-74.579544,295,"{'type': 'Point', 'coordinates': [-74.579544, 43.500221]}",645.18666,0.45723202026526716 | |
12140,42.696684000000005,-73.540064,1702,"{'type': 'Point', 'coordinates': [-73.540064, 42.696684000000005]}",21.647324,78.62403685554851 | |
12143,42.489818,-73.855238,5137,"{'type': 'Point', 'coordinates': [-73.855238, 42.489818]}",50.509514,101.70361171956633 | |
12144,42.627836,-73.717842,20555,"{'type': 'Point', 'coordinates': [-73.717842, 42.627836]}",50.541766,406.69334743863124 | |
12147,42.518611,-74.15884,499,"{'type': 'Point', 'coordinates': [-74.15884, 42.518611]}",51.409938,9.706294530057594 | |
12148,42.827793,-73.848164,4569,"{'type': 'Point', 'coordinates': [-73.848164, 42.827793]}",43.845611,104.2065533081521 | |
12149,42.616654,-74.563446,2474,"{'type': 'Point', 'coordinates': [-74.563446, 42.616654]}",122.004081,20.27801020852737 | |
12150,42.880523,-74.052689,914,"{'type': 'Point', 'coordinates': [-74.052689, 42.880523]}",3.063069,298.39353929016943 | |
12151,42.922697,-73.787225,708,"{'type': 'Point', 'coordinates': [-73.787225, 42.922697]}",7.053225,100.37961358102145 | |
12153,42.629923,-73.473341,814,"{'type': 'Point', 'coordinates': [-73.473341, 42.629923]}",47.075809,17.291258871408882 | |
12154,42.937459999999994,-73.605775,2818,"{'type': 'Point', 'coordinates': [-73.605775, 42.937459999999994]}",111.094404,25.365814105272126 | |
12155,42.596357,-74.82765500000001,1977,"{'type': 'Point', 'coordinates': [-74.82765500000001, 42.596357]}",147.732718,13.38227595595987 | |
12156,42.483503999999996,-73.747254,848,"{'type': 'Point', 'coordinates': [-73.747254, 42.483503999999996]}",38.919019,21.788832858299948 | |
12157,42.669798,-74.286077,4061,"{'type': 'Point', 'coordinates': [-74.286077, 42.669798]}",113.102403,35.90551475727709 | |
12158,42.542158,-73.822091,6309,"{'type': 'Point', 'coordinates': [-73.822091, 42.542158]}",81.684499,77.23619630696395 | |
12159,42.651428,-73.885894,7896,"{'type': 'Point', 'coordinates': [-73.885894, 42.651428]}",36.603359,215.71790720081182 | |
12160,42.761621000000005,-74.383152,944,"{'type': 'Point', 'coordinates': [-74.383152, 42.761621000000005]}",46.255285,20.40847872843071 | |
12161,42.534769,-73.854863,160,"{'type': 'Point', 'coordinates': [-73.854863, 42.534769]}",1.075955,148.7051038379858 | |
12164,43.578133,-74.359045,365,"{'type': 'Point', 'coordinates': [-74.359045, 43.578133]}",127.581311,2.860920593612649 | |
12165,42.306135999999995,-73.504114,175,"{'type': 'Point', 'coordinates': [-73.504114, 42.306135999999995]}",8.357896,20.938283989176224 | |
12166,42.833587,-74.445509,1363,"{'type': 'Point', 'coordinates': [-74.445509, 42.833587]}",114.305994,11.924134092215672 | |
12167,42.424941,-74.57804499999999,2438,"{'type': 'Point', 'coordinates': [-74.57804499999999, 42.424941]}",119.116864,20.46729504228721 | |
12168,42.560862,-73.380714,1952,"{'type': 'Point', 'coordinates': [-73.380714, 42.560862]}",90.651338,21.533052275521847 | |
12169,42.592887,-73.448036,306,"{'type': 'Point', 'coordinates': [-73.448036, 42.592887]}",24.828241,12.324674953815698 | |
12170,43.001956,-73.667271,4945,"{'type': 'Point', 'coordinates': [-73.667271, 43.001956]}",79.79339,61.97255186175195 | |
12172,42.288764,-73.739212,405,"{'type': 'Point', 'coordinates': [-73.739212, 42.288764]}",1.144099,353.9903452411024 | |
12173,42.380013,-73.75966,1753,"{'type': 'Point', 'coordinates': [-73.75966, 42.380013]}",44.588966,39.314659146839155 | |
12174,42.353449,-73.728436,345,"{'type': 'Point', 'coordinates': [-73.728436, 42.353449]}",2.977003,115.88836155018991 | |
12175,42.544369,-74.55622,797,"{'type': 'Point', 'coordinates': [-74.55622, 42.544369]}",57.532331,13.853080279330243 | |
12176,42.382017,-73.980862,198,"{'type': 'Point', 'coordinates': [-73.980862, 42.382017]}",8.872378,22.31645225214706 | |
12177,42.950952,-74.28726,518,"{'type': 'Point', 'coordinates': [-74.28726, 42.950952]}",1.690107,306.48947078498577 | |
12180,42.748588,-73.599536,53606,"{'type': 'Point', 'coordinates': [-73.599536, 42.748588]}",144.907652,369.9321551356032 | |
12182,42.799699,-73.630864,14733,"{'type': 'Point', 'coordinates': [-73.630864, 42.799699]}",37.077428,397.3576592205911 | |
12183,42.74787,-73.692595,2620,"{'type': 'Point', 'coordinates': [-73.692595, 42.74787]}",2.417991,1083.544148840918 | |
12184,42.419893,-73.653359,7148,"{'type': 'Point', 'coordinates': [-73.653359, 42.419893]}",101.616752,70.34273246600127 | |
12185,42.915623,-73.571332,2037,"{'type': 'Point', 'coordinates': [-73.571332, 42.915623]}",63.620649,32.017906639085055 | |
12186,42.633164,-73.977188,6277,"{'type': 'Point', 'coordinates': [-73.977188, 42.633164]}",82.963716,75.65958111133787 | |
12187,42.618840000000006,-74.463554,697,"{'type': 'Point', 'coordinates': [-74.463554, 42.618840000000006]}",59.676277,11.679683033846096 | |
12188,42.821216,-73.695525,10980,"{'type': 'Point', 'coordinates': [-73.695525, 42.821216]}",36.380829,301.8073062601185 | |
12189,42.736342,-73.71752099999999,17568,"{'type': 'Point', 'coordinates': [-73.71752099999999, 42.736342]}",16.973574,1035.020673901678 | |
12190,43.475631,-74.28541,674,"{'type': 'Point', 'coordinates': [-74.28541, 43.475631]}",461.960905,1.45899792104702 | |
12192,42.409034999999996,-73.82767700000001,1722,"{'type': 'Point', 'coordinates': [-73.82767700000001, 42.409034999999996]}",44.568805,38.63688963614798 | |
12193,42.52276,-74.04326800000001,2016,"{'type': 'Point', 'coordinates': [-74.04326800000001, 42.52276]}",101.605653,19.841415713356028 | |
12194,42.528462,-74.447631,207,"{'type': 'Point', 'coordinates': [-74.447631, 42.528462]}",39.984358,5.177024475421113 | |
12195,42.482789000000004,-73.475088,154,"{'type': 'Point', 'coordinates': [-73.475088, 42.482789000000004]}",5.064017,30.410640406617908 | |
12196,42.631786,-73.613946,3031,"{'type': 'Point', 'coordinates': [-73.613946, 42.631786]}",23.452032,129.24253216096585 | |
12197,42.609999,-74.724749,2233,"{'type': 'Point', 'coordinates': [-74.724749, 42.609999]}",174.555923,12.792461932099547 | |
12198,42.672768,-73.633574,7903,"{'type': 'Point', 'coordinates': [-73.633574, 42.672768]}",34.544622,228.77656614682311 | |
12202,42.635575,-73.759658,9628,"{'type': 'Point', 'coordinates': [-73.759658, 42.635575]}",5.873944,1639.1031307074088 | |
12203,42.681048,-73.84698,29952,"{'type': 'Point', 'coordinates': [-73.84698, 42.681048]}",29.70931,1008.168819807663 | |
12204,42.691516,-73.733751,7349,"{'type': 'Point', 'coordinates': [-73.733751, 42.691516]}",11.395621,644.8968423923541 | |
12205,42.718785,-73.82924,26977,"{'type': 'Point', 'coordinates': [-73.82924, 42.718785]}",41.17585,655.1655885670849 | |
12206,42.674481,-73.782648,16395,"{'type': 'Point', 'coordinates': [-73.782648, 42.674481]}",5.503149,2979.20336156626 | |
12207,42.658398,-73.745952,1948,"{'type': 'Point', 'coordinates': [-73.745952, 42.658398]}",3.150176,618.378147760633 | |
12208,42.653031,-73.809978,20702,"{'type': 'Point', 'coordinates': [-73.809978, 42.653031]}",10.889703,1901.0619481541414 | |
12209,42.638686,-73.79046899999999,10121,"{'type': 'Point', 'coordinates': [-73.79046899999999, 42.638686]}",5.553716,1822.3834276005473 | |
12210,42.659502,-73.756237,10158,"{'type': 'Point', 'coordinates': [-73.756237, 42.659502]}",2.339063,4342.76460274905 | |
12211,42.703095000000005,-73.763706,11303,"{'type': 'Point', 'coordinates': [-73.763706, 42.703095000000005]}",20.783748,543.8383875709039 | |
12222,42.685261,-73.82323000000001,6489,"{'type': 'Point', 'coordinates': [-73.82323000000001, 42.685261]}",1.428843,4541.436672888483 | |
12302,42.878182,-73.982505,27582,"{'type': 'Point', 'coordinates': [-73.982505, 42.878182]}",112.862991,244.38480458133526 | |
12303,42.740387,-73.90539799999999,29857,"{'type': 'Point', 'coordinates': [-73.90539799999999, 42.740387]}",39.869663,748.8651208313448 | |
12304,42.77469,-73.898297,21482,"{'type': 'Point', 'coordinates': [-73.898297, 42.77469]}",17.742067,1210.7946610730307 | |
12305,42.812011,-73.950342,5716,"{'type': 'Point', 'coordinates': [-73.950342, 42.812011]}",4.161092,1373.6778710972985 | |
12306,42.805429,-74.044227,25636,"{'type': 'Point', 'coordinates': [-74.044227, 42.805429]}",113.32718,226.2122819962519 | |
12307,42.804981,-73.932822,7692,"{'type': 'Point', 'coordinates': [-73.932822, 42.804981]}",1.86437,4125.790481503135 | |
12308,42.82098,-73.91967,15335,"{'type': 'Point', 'coordinates': [-73.91967, 42.82098]}",5.989936,2560.1275205611546 | |
12309,42.79987,-73.864965,29343,"{'type': 'Point', 'coordinates': [-73.864965, 42.79987]}",45.217217,648.9342322859012 | |
12401,41.917055,-74.17838499999999,35040,"{'type': 'Point', 'coordinates': [-74.17838499999999, 41.917055]}",154.81741,226.3311342051259 | |
12404,41.818958,-74.236082,3385,"{'type': 'Point', 'coordinates': [-74.236082, 41.818958]}",93.042396,36.38126430020139 | |
12405,42.317909,-74.085995,780,"{'type': 'Point', 'coordinates': [-74.085995, 42.317909]}",18.580345,41.979844830653036 | |
12406,42.079943,-74.52409300000001,823,"{'type': 'Point', 'coordinates': [-74.52409300000001, 42.079943]}",112.164681,7.3374255840838165 | |
12407,42.317638,-74.358152,173,"{'type': 'Point', 'coordinates': [-74.358152, 42.317638]}",8.712823,19.855791859882842 | |
12409,42.040569,-74.181139,804,"{'type': 'Point', 'coordinates': [-74.181139, 42.040569]}",37.529813,21.422968454439143 | |
12410,42.066096,-74.42473199999999,397,"{'type': 'Point', 'coordinates': [-74.42473199999999, 42.066096]}",106.749922,3.7189722724106535 | |
12411,41.876019,-74.044802,497,"{'type': 'Point', 'coordinates': [-74.044802, 41.876019]}",2.475443,200.7721446221949 | |
12412,42.012732,-74.279585,673,"{'type': 'Point', 'coordinates': [-74.279585, 42.012732]}",15.71894,42.8145918236217 | |
12413,42.313984000000005,-74.02216,2948,"{'type': 'Point', 'coordinates': [-74.02216, 42.313984000000005]}",42.583767,69.2282578006779 | |
12414,42.232019,-73.91386700000001,10510,"{'type': 'Point', 'coordinates': [-73.91386700000001, 42.232019]}",156.150908,67.30668514588466 | |
12416,42.10304,-74.281552,277,"{'type': 'Point', 'coordinates': [-74.281552, 42.10304]}",13.172696,21.028345298487114 | |
12417,41.906422,-73.990723,581,"{'type': 'Point', 'coordinates': [-73.990723, 41.906422]}",0.891281,651.8707343699687 | |
12418,42.358758,-74.16168,537,"{'type': 'Point', 'coordinates': [-74.16168, 42.358758]}",35.782601,15.007293628543101 | |
12419,41.860252,-74.102007,722,"{'type': 'Point', 'coordinates': [-74.102007, 41.860252]}",6.25698,115.39113118469292 | |
12420,41.672466,-74.37155899999999,363,"{'type': 'Point', 'coordinates': [-74.37155899999999, 41.672466]}",10.948511,33.15519343223932 | |
12421,42.250044,-74.546139,470,"{'type': 'Point', 'coordinates': [-74.546139, 42.250044]}",50.805051,9.251048680179457 | |
12422,42.391829,-74.213288,339,"{'type': 'Point', 'coordinates': [-74.213288, 42.391829]}",26.401698,12.840083240100693 | |
12423,42.379218,-74.109746,1097,"{'type': 'Point', 'coordinates': [-74.109746, 42.379218]}",32.933731,33.30931439259038 | |
12424,42.247617,-74.115847,250,"{'type': 'Point', 'coordinates': [-74.115847, 42.247617]}",46.324026,5.39676754347733 | |
12427,42.134238,-74.136736,576,"{'type': 'Point', 'coordinates': [-74.136736, 42.134238]}",106.295281,5.418867089687641 | |
12428,41.746871999999996,-74.466183,6602,"{'type': 'Point', 'coordinates': [-74.466183, 41.746871999999996]}",141.333623,46.712168413032195 | |
12429,41.833329,-73.985378,281,"{'type': 'Point', 'coordinates': [-73.985378, 41.833329]}",5.472262,51.34988054300032 | |
12430,42.195479999999996,-74.503394,1194,"{'type': 'Point', 'coordinates': [-74.503394, 42.195479999999996]}",102.890915,11.604523100994873 | |
12431,42.362023,-74.023533,1381,"{'type': 'Point', 'coordinates': [-74.023533, 42.362023]}",40.12767,34.415155427663755 | |
12432,42.044379,-73.94443000000001,492,"{'type': 'Point', 'coordinates': [-73.94443000000001, 42.044379]}",1.550754,317.2650207576444 | |
12433,42.000640999999995,-74.156576,483,"{'type': 'Point', 'coordinates': [-74.156576, 42.000640999999995]}",10.117173,47.7406089626025 | |
12434,42.363640000000004,-74.502385,751,"{'type': 'Point', 'coordinates': [-74.502385, 42.363640000000004]}",36.76821,20.425253228264307 | |
12435,41.7308,-74.51335999999999,326,"{'type': 'Point', 'coordinates': [-74.51335999999999, 41.7308]}",25.987854,12.54432166657547 | |
12436,42.195759,-74.077821,417,"{'type': 'Point', 'coordinates': [-74.077821, 42.195759]}",40.12202,10.393295252831239 | |
12438,42.204899,-74.60100600000001,59,"{'type': 'Point', 'coordinates': [-74.60100600000001, 42.204899]}",1.244811,47.396753402725395 | |
12439,42.277817,-74.21039,305,"{'type': 'Point', 'coordinates': [-74.21039, 42.277817]}",20.345378,14.991119850415165 | |
12440,41.781151,-74.172877,1980,"{'type': 'Point', 'coordinates': [-74.172877, 41.781151]}",60.997489,32.46035258926806 | |
12441,42.134425,-74.509212,114,"{'type': 'Point', 'coordinates': [-74.509212, 42.134425]}",16.396206,6.952827989597106 | |
12442,42.181895000000004,-74.221715,953,"{'type': 'Point', 'coordinates': [-74.221715, 42.181895000000004]}",86.117837,11.066232422906767 | |
12443,41.934991,-74.084925,3825,"{'type': 'Point', 'coordinates': [-74.084925, 41.934991]}",46.962498,81.44796726954347 | |
12444,42.264233000000004,-74.29751999999999,497,"{'type': 'Point', 'coordinates': [-74.29751999999999, 42.264233000000004]}",40.098057,12.39461552962529 | |
12446,41.809571000000005,-74.32644300000001,5061,"{'type': 'Point', 'coordinates': [-74.32644300000001, 41.809571000000005]}",176.479431,28.67756299599583 | |
12448,42.086646,-74.16066,388,"{'type': 'Point', 'coordinates': [-74.16066, 42.086646]}",30.83272,12.584034104029746 | |
12449,41.992378,-73.993774,3367,"{'type': 'Point', 'coordinates': [-73.993774, 41.992378]}",9.849151,341.8568768008532 | |
12450,42.133247,-74.244279,183,"{'type': 'Point', 'coordinates': [-74.244279, 42.133247]}",25.635074,7.138656982226773 | |
12451,42.304893,-73.948176,1674,"{'type': 'Point', 'coordinates': [-73.948176, 42.304893]}",30.711211,54.50778219067949 | |
12452,42.252385,-74.364938,213,"{'type': 'Point', 'coordinates': [-74.364938, 42.252385]}",22.232106,9.580738774815124 | |
12453,42.093389,-73.93628100000001,366,"{'type': 'Point', 'coordinates': [-73.93628100000001, 42.093389]}",1.277725,286.446614099278 | |
12454,42.286970000000004,-74.14954200000001,297,"{'type': 'Point', 'coordinates': [-74.14954200000001, 42.286970000000004]}",28.953202,10.257932784083778 | |
12455,42.140733000000004,-74.65947800000001,1988,"{'type': 'Point', 'coordinates': [-74.65947800000001, 42.140733000000004]}",201.586821,9.861755794045683 | |
12456,42.032705,-73.99713299999999,639,"{'type': 'Point', 'coordinates': [-73.99713299999999, 42.032705]}",1.452007,440.0805230277815 | |
12457,42.044071,-74.252501,763,"{'type': 'Point', 'coordinates': [-74.252501, 42.044071]}",36.189693,21.083350997202437 | |
12458,41.822918,-74.43208,3232,"{'type': 'Point', 'coordinates': [-74.43208, 41.822918]}",84.001477,38.47551394840355 | |
12459,42.240382000000004,-74.678893,161,"{'type': 'Point', 'coordinates': [-74.678893, 42.240382000000004]}",19.71878,8.164805327712973 | |
12460,42.415615,-74.14759000000001,277,"{'type': 'Point', 'coordinates': [-74.14759000000001, 42.415615]}",5.344418,51.82977828455783 | |
12461,41.904961,-74.26799799999999,1634,"{'type': 'Point', 'coordinates': [-74.26799799999999, 41.904961]}",61.930512,26.38440967515334 | |
12463,42.20551,-74.020414,1484,"{'type': 'Point', 'coordinates': [-74.020414, 42.20551]}",28.0925,52.82548722968764 | |
12464,42.023540999999994,-74.367292,1020,"{'type': 'Point', 'coordinates': [-74.367292, 42.023540999999994]}",114.357388,8.919406238974258 | |
12465,42.157153,-74.46001600000001,266,"{'type': 'Point', 'coordinates': [-74.46001600000001, 42.157153]}",7.506436,35.43625763278339 | |
12466,41.904345,-73.979025,2471,"{'type': 'Point', 'coordinates': [-73.979025, 41.904345]}",2.688095,919.2383453709783 | |
12468,42.300461999999996,-74.423763,1036,"{'type': 'Point', 'coordinates': [-74.423763, 42.300461999999996]}",113.250371,9.14787290189098 | |
12469,42.448595000000005,-74.24609699999999,677,"{'type': 'Point', 'coordinates': [-74.24609699999999, 42.448595000000005]}",87.864713,7.705027159196435 | |
12470,42.299624,-74.09338699999999,536,"{'type': 'Point', 'coordinates': [-74.09338699999999, 42.299624]}",25.446131,21.06410597351715 | |
12471,41.843871,-74.041344,215,"{'type': 'Point', 'coordinates': [-74.041344, 41.843871]}",1.438284,149.48369028648028 | |
12472,41.84709,-74.079545,1572,"{'type': 'Point', 'coordinates': [-74.079545, 41.84709]}",9.664015,162.66531043256867 | |
12473,42.258165999999996,-74.041007,861,"{'type': 'Point', 'coordinates': [-74.041007, 42.258165999999996]}",38.891154,22.138710514992688 | |
12474,42.323834999999995,-74.582994,1162,"{'type': 'Point', 'coordinates': [-74.582994, 42.323834999999995]}",114.458149,10.152182349200842 | |
12475,42.015237,-74.01543199999999,354,"{'type': 'Point', 'coordinates': [-74.01543199999999, 42.015237]}",3.183035,111.21461121225498 | |
12477,42.092591,-73.98810999999999,18787,"{'type': 'Point', 'coordinates': [-73.98810999999999, 42.092591]}",171.84925,109.32256032540147 | |
12480,42.135381,-74.391274,634,"{'type': 'Point', 'coordinates': [-74.391274, 42.135381]}",87.947861,7.208816596460487 | |
12481,41.987348,-74.228435,1356,"{'type': 'Point', 'coordinates': [-74.228435, 41.987348]}",32.709811,41.45545200490458 | |
12482,42.268143,-73.955446,680,"{'type': 'Point', 'coordinates': [-73.955446, 42.268143]}",5.726553,118.74508102867466 | |
12483,41.672235,-74.421901,259,"{'type': 'Point', 'coordinates': [-74.421901, 41.672235]}",8.663927,29.894065358583934 | |
12484,41.861918,-74.176528,2733,"{'type': 'Point', 'coordinates': [-74.176528, 41.861918]}",61.683247,44.30700608221873 | |
12485,42.205023,-74.144201,865,"{'type': 'Point', 'coordinates': [-74.144201, 42.205023]}",22.008105,39.303701977067085 | |
12486,41.832417,-74.06398399999999,1523,"{'type': 'Point', 'coordinates': [-74.06398399999999, 41.832417]}",9.274814,164.20814476710802 | |
12487,41.869399,-73.998805,3268,"{'type': 'Point', 'coordinates': [-73.998805, 41.869399]}",41.408606,78.92079245555864 | |
12489,41.750485,-74.358293,1292,"{'type': 'Point', 'coordinates': [-74.358293, 41.750485]}",16.130195,80.09822571890793 | |
12490,42.122854,-73.924476,110,"{'type': 'Point', 'coordinates': [-73.924476, 42.122854]}",1.360823,80.83343682462746 | |
12491,41.965192,-74.141459,1675,"{'type': 'Point', 'coordinates': [-74.141459, 41.965192]}",24.05443,69.633743140037 | |
12492,42.184925,-74.335763,271,"{'type': 'Point', 'coordinates': [-74.335763, 42.184925]}",99.618598,2.72037556681936 | |
12493,41.785665,-73.974132,495,"{'type': 'Point', 'coordinates': [-73.974132, 41.785665]}",17.908023,27.64124214046408 | |
12494,41.956598,-74.29289399999999,764,"{'type': 'Point', 'coordinates': [-74.29289399999999, 41.956598]}",48.544353,15.73818483068463 | |
12495,42.084922999999996,-74.24068,265,"{'type': 'Point', 'coordinates': [-74.24068, 42.084922999999996]}",23.672967,11.194203075600958 | |
12496,42.338035999999995,-74.270087,1634,"{'type': 'Point', 'coordinates': [-74.270087, 42.338035999999995]}",122.390608,13.350697628693862 | |
12498,42.045663,-74.10961800000001,4851,"{'type': 'Point', 'coordinates': [-74.10961800000001, 42.045663]}",56.478337,85.89133918727104 | |
12501,41.862964,-73.57351700000001,2457,"{'type': 'Point', 'coordinates': [-73.57351700000001, 41.862964]}",80.029246,30.701276380887055 | |
12502,42.086568,-73.66472399999999,1164,"{'type': 'Point', 'coordinates': [-73.66472399999999, 42.086568]}",86.247703,13.49601159812917 | |
12503,42.035959000000005,-73.580146,775,"{'type': 'Point', 'coordinates': [-73.580146, 42.035959000000005]}",54.875276,14.122935800814924 | |
12504,42.035298,-73.91314399999999,1395,"{'type': 'Point', 'coordinates': [-73.91314399999999, 42.035298]}",5.91254,235.93920717661106 | |
12507,42.009240999999996,-73.917141,167,"{'type': 'Point', 'coordinates': [-73.917141, 42.009240999999996]}",3.914995,42.656504031295064 | |
12508,41.495996000000005,-73.953632,19880,"{'type': 'Point', 'coordinates': [-73.953632, 41.495996000000005]}",37.894231,524.6181140342973 | |
12512,41.548499,-73.968402,127,"{'type': 'Point', 'coordinates': [-73.968402, 41.548499]}",1.157938,109.67772022336257 | |
12513,42.219307,-73.720481,651,"{'type': 'Point', 'coordinates': [-73.720481, 42.219307]}",7.61589,85.47917577591062 | |
12514,41.877409,-73.764423,2938,"{'type': 'Point', 'coordinates': [-73.764423, 41.877409]}",69.728089,42.13509995950126 | |
12515,41.684774,-74.06484,1549,"{'type': 'Point', 'coordinates': [-74.06484, 41.684774]}",13.020978,118.96187828594749 | |
12516,42.109096,-73.561332,1833,"{'type': 'Point', 'coordinates': [-73.561332, 42.109096]}",40.577443,45.17288090331369 | |
12517,42.114296,-73.50745400000001,509,"{'type': 'Point', 'coordinates': [-73.50745400000001, 42.114296]}",27.119563,18.7687390095482 | |
12518,41.416157,-74.043064,5870,"{'type': 'Point', 'coordinates': [-74.043064, 41.416157]}",25.897273,226.66479208061793 | |
12520,41.428017,-73.996195,3109,"{'type': 'Point', 'coordinates': [-73.996195, 41.428017]}",10.297358,301.9221046796664 | |
12521,42.171335,-73.650487,1644,"{'type': 'Point', 'coordinates': [-73.650487, 42.171335]}",85.995259,19.117332968320962 | |
12522,41.719978999999995,-73.598384,5172,"{'type': 'Point', 'coordinates': [-73.598384, 41.719978999999995]}",97.811513,52.87721088620723 | |
12523,42.086870000000005,-73.759509,1798,"{'type': 'Point', 'coordinates': [-73.759509, 42.086870000000005]}",57.171482,31.449245971969034 | |
12524,41.528785,-73.888317,15598,"{'type': 'Point', 'coordinates': [-73.888317, 41.528785]}",42.505125,366.9675127411106 | |
12525,41.691564,-74.188272,3311,"{'type': 'Point', 'coordinates': [-74.188272, 41.691564]}",61.813454,53.56439069073862 | |
12526,42.122234000000006,-73.858769,3686,"{'type': 'Point', 'coordinates': [-73.858769, 42.122234000000006]}",83.344359,44.22614852674072 | |
12527,41.519428000000005,-73.93566899999999,147,"{'type': 'Point', 'coordinates': [-73.93566899999999, 41.519428000000005]}",0.403226,364.55982501128403 | |
12528,41.722069,-74.00947099999999,13344,"{'type': 'Point', 'coordinates': [-74.00947099999999, 41.722069]}",108.460861,123.03055569510923 | |
12529,42.198626000000004,-73.542777,2859,"{'type': 'Point', 'coordinates': [-73.542777, 42.198626000000004]}",173.439223,16.48416056384201 | |
12530,42.207459,-73.687752,124,"{'type': 'Point', 'coordinates': [-73.687752, 42.207459]}",0.896868,138.25891881525487 | |
12531,41.540556,-73.67167099999999,3601,"{'type': 'Point', 'coordinates': [-73.67167099999999, 41.540556]}",47.923047,75.14129892450286 | |
12533,41.559771999999995,-73.787099,25307,"{'type': 'Point', 'coordinates': [-73.787099, 41.559771999999995]}",127.844449,197.95149650963728 | |
12534,42.217345,-73.752256,17867,"{'type': 'Point', 'coordinates': [-73.752256, 42.217345]}",228.490509,78.19580812435409 | |
12538,41.792229999999996,-73.89376700000001,14578,"{'type': 'Point', 'coordinates': [-73.89376700000001, 41.792229999999996]}",68.831114,211.79375362136375 | |
12540,41.671202,-73.724891,7802,"{'type': 'Point', 'coordinates': [-73.724891, 41.671202]}",89.142728,87.52256269294338 | |
12542,41.613876,-74.01501400000001,5913,"{'type': 'Point', 'coordinates': [-74.01501400000001, 41.613876]}",37.589501,157.30456224997508 | |
12543,41.49552,-74.17310400000001,3001,"{'type': 'Point', 'coordinates': [-74.17310400000001, 41.49552]}",31.343996,95.74401426033873 | |
12545,41.782903999999995,-73.669402,4763,"{'type': 'Point', 'coordinates': [-73.669402, 41.782903999999995]}",142.445348,33.43738540341802 | |
12546,41.948,-73.523349,3039,"{'type': 'Point', 'coordinates': [-73.523349, 41.948]}",119.422651,25.44743375358499 | |
12547,41.660687,-73.98656700000001,2891,"{'type': 'Point', 'coordinates': [-73.98656700000001, 41.660687]}",27.257113,106.06405748106926 | |
12548,41.658064,-74.102416,1494,"{'type': 'Point', 'coordinates': [-74.102416, 41.658064]}",15.744109,94.89263571536503 | |
12549,41.528031,-74.259365,10201,"{'type': 'Point', 'coordinates': [-74.259365, 41.528031]}",101.871442,100.13601260302175 | |
12550,41.539574,-74.057223,54447,"{'type': 'Point', 'coordinates': [-74.057223, 41.539574]}",92.937812,585.8433594283455 | |
12553,41.455672,-74.074946,24438,"{'type': 'Point', 'coordinates': [-74.074946, 41.455672]}",66.255662,368.8439487632015 | |
12561,41.759307,-74.096058,18308,"{'type': 'Point', 'coordinates': [-74.096058, 41.759307]}",156.294113,117.13812918852547 | |
12563,41.499189,-73.587226,8084,"{'type': 'Point', 'coordinates': [-73.587226, 41.499189]}",60.510458,133.59674124429864 | |
12564,41.582614,-73.582577,7338,"{'type': 'Point', 'coordinates': [-73.582577, 41.582614]}",106.713914,68.7632917296989 | |
12565,42.247128000000004,-73.647638,1487,"{'type': 'Point', 'coordinates': [-73.647638, 42.247128000000004]}",3.872633,383.9764831834052 | |
12566,41.633519,-74.319661,10753,"{'type': 'Point', 'coordinates': [-74.319661, 41.633519]}",141.391231,76.05139246577463 | |
12567,41.986194,-73.642216,2854,"{'type': 'Point', 'coordinates': [-73.642216, 41.986194]}",120.32788,23.718526412997555 | |
12569,41.734556,-73.792835,9826,"{'type': 'Point', 'coordinates': [-73.792835, 41.734556]}",87.019947,112.9166396757286 | |
12570,41.626251,-73.675608,7699,"{'type': 'Point', 'coordinates': [-73.675608, 41.626251]}",56.400029,136.50702200880073 | |
12571,42.002775,-73.809608,9918,"{'type': 'Point', 'coordinates': [-73.809608, 42.002775]}",151.718852,65.37091382684599 | |
12572,41.924884999999996,-73.863664,9123,"{'type': 'Point', 'coordinates': [-73.863664, 41.924884999999996]}",133.471321,68.3517622486107 | |
12574,41.917688,-73.945658,329,"{'type': 'Point', 'coordinates': [-73.945658, 41.917688]}",1.30457,252.19037690580038 | |
12575,41.518882,-74.14334699999999,2258,"{'type': 'Point', 'coordinates': [-74.14334699999999, 41.518882]}",26.25829,85.99189056103806 | |
12577,41.424040000000005,-74.12214200000001,2029,"{'type': 'Point', 'coordinates': [-74.12214200000001, 41.424040000000005]}",15.611811,129.96570353048727 | |
12578,41.80912,-73.795854,2411,"{'type': 'Point', 'coordinates': [-73.795854, 41.80912]}",40.972038,58.84501034583635 | |
12580,41.863651000000004,-73.87153599999999,4402,"{'type': 'Point', 'coordinates': [-73.87153599999999, 41.863651000000004]}",56.431432,78.00617216305976 | |
12581,41.901615,-73.700592,2246,"{'type': 'Point', 'coordinates': [-73.700592, 41.901615]}",105.722755,21.244243966211435 | |
12582,41.544301000000004,-73.738452,6191,"{'type': 'Point', 'coordinates': [-73.738452, 41.544301000000004]}",34.149401,181.29161328481283 | |
12583,42.063367,-73.868652,2451,"{'type': 'Point', 'coordinates': [-73.868652, 42.063367]}",33.929366,72.238308254861 | |
12585,41.726403999999995,-73.69151,885,"{'type': 'Point', 'coordinates': [-73.69151, 41.726403999999995]}",12.952685,68.32560198908565 | |
12586,41.562764,-74.170102,12540,"{'type': 'Point', 'coordinates': [-74.170102, 41.562764]}",62.445004,200.81670584887786 | |
12589,41.623791,-74.158771,17228,"{'type': 'Point', 'coordinates': [-74.158771, 41.623791]}",151.863129,113.44425808584519 | |
12590,41.592556,-73.886853,35102,"{'type': 'Point', 'coordinates': [-73.886853, 41.592556]}",90.637536,387.278842178587 | |
12592,41.802075,-73.578626,1486,"{'type': 'Point', 'coordinates': [-73.578626, 41.802075]}",49.041326,30.30097514084346 | |
12594,41.684461,-73.557676,4275,"{'type': 'Point', 'coordinates': [-73.557676, 41.684461]}",63.93072,66.86926097500545 | |
12601,41.701921,-73.911519,43398,"{'type': 'Point', 'coordinates': [-73.911519, 41.701921]}",49.406075,878.3940031666147 | |
12603,41.675868,-73.86448399999999,42810,"{'type': 'Point', 'coordinates': [-73.86448399999999, 41.675868]}",84.305463,507.79627412757344 | |
12604,41.688259,-73.89217099999999,586,"{'type': 'Point', 'coordinates': [-73.89217099999999, 41.688259]}",0.263661,2222.5509271374985 | |
12701,41.650828999999995,-74.699907,11324,"{'type': 'Point', 'coordinates': [-74.699907, 41.650828999999995]}",152.529397,74.24142639205478 | |
12719,41.49825,-74.904285,1207,"{'type': 'Point', 'coordinates': [-74.904285, 41.49825]}",45.785659,26.361966309144965 | |
12720,41.645919,-74.907759,172,"{'type': 'Point', 'coordinates': [-74.907759, 41.645919]}",34.61736,4.968605347143746 | |
12721,41.581723,-74.422422,6627,"{'type': 'Point', 'coordinates': [-74.422422, 41.581723]}",65.935092,100.5079358955016 | |
12722,41.590634,-74.37430400000001,158,"{'type': 'Point', 'coordinates': [-74.37430400000001, 41.590634]}",0.720906,219.1686572174458 | |
12723,41.770579,-75.071831,1826,"{'type': 'Point', 'coordinates': [-75.071831, 41.770579]}",83.282476,21.925380796795714 | |
12724,41.837621,-74.958711,245,"{'type': 'Point', 'coordinates': [-74.958711, 41.837621]}",19.572158,12.51778163654718 | |
12725,41.983183000000004,-74.570105,277,"{'type': 'Point', 'coordinates': [-74.570105, 41.983183000000004]}",175.832463,1.5753632479117352 | |
12726,41.672112,-75.013568,1162,"{'type': 'Point', 'coordinates': [-75.013568, 41.672112]}",77.520239,14.989633868388873 | |
12729,41.475792,-74.623499,1874,"{'type': 'Point', 'coordinates': [-74.623499, 41.475792]}",58.381123,32.099416792650594 | |
12732,41.551487,-74.874606,786,"{'type': 'Point', 'coordinates': [-74.874606, 41.551487]}",66.891861,11.750308456809117 | |
12733,41.724768,-74.617933,1446,"{'type': 'Point', 'coordinates': [-74.617933, 41.724768]}",13.305131,108.67987695874622 | |
12734,41.734584999999996,-74.75046,867,"{'type': 'Point', 'coordinates': [-74.75046, 41.734584999999996]}",35.770494,24.237853690250965 | |
12736,41.852843,-75.021754,118,"{'type': 'Point', 'coordinates': [-75.021754, 41.852843]}",15.763744,7.485531356002736 | |
12737,41.501481,-74.798632,1910,"{'type': 'Point', 'coordinates': [-74.798632, 41.501481]}",98.73903,19.343921041152623 | |
12738,41.676246,-74.58621099999999,320,"{'type': 'Point', 'coordinates': [-74.58621099999999, 41.676246]}",17.110498,18.701968814700777 | |
12740,41.938832,-74.434026,1886,"{'type': 'Point', 'coordinates': [-74.434026, 41.938832]}",195.212507,9.661266222045906 | |
12741,41.839141,-75.077725,351,"{'type': 'Point', 'coordinates': [-75.077725, 41.839141]}",21.67927,16.190582062956917 | |
12742,41.724328,-74.723518,181,"{'type': 'Point', 'coordinates': [-74.723518, 41.724328]}",5.591616,32.36989092240955 | |
12743,41.548548,-74.831025,389,"{'type': 'Point', 'coordinates': [-74.831025, 41.548548]}",22.831112,17.0381539015708 | |
12745,41.783433,-75.024648,178,"{'type': 'Point', 'coordinates': [-75.024648, 41.783433]}",4.161114,42.77700634974192 | |
12746,41.442335,-74.656785,937,"{'type': 'Point', 'coordinates': [-74.656785, 41.442335]}",37.565825,24.94288359166876 | |
12747,41.810545,-74.682861,1714,"{'type': 'Point', 'coordinates': [-74.682861, 41.810545]}",37.308498,45.94127589912625 | |
12748,41.774642,-74.922609,2076,"{'type': 'Point', 'coordinates': [-74.922609, 41.774642]}",57.190257,36.299889332548375 | |
12749,41.695254,-74.841166,300,"{'type': 'Point', 'coordinates': [-74.841166, 41.695254]}",7.684628,39.03897495103211 | |
12750,41.727825,-74.96585400000001,187,"{'type': 'Point', 'coordinates': [-74.96585400000001, 41.727825]}",11.591294,16.132797597921336 | |
12751,41.69573,-74.664485,1054,"{'type': 'Point', 'coordinates': [-74.664485, 41.69573]}",10.054529,104.82838131950288 | |
12752,41.680039,-74.99419,242,"{'type': 'Point', 'coordinates': [-74.99419, 41.680039]}",4.852921,49.86687399197308 | |
12754,41.798195,-74.736889,7221,"{'type': 'Point', 'coordinates': [-74.736889, 41.798195]}",69.273788,104.23856134444388 | |
12758,41.940283,-74.739118,4042,"{'type': 'Point', 'coordinates': [-74.739118, 41.940283]}",398.390114,10.14583409065216 | |
12759,41.781729999999996,-74.65885300000001,1649,"{'type': 'Point', 'coordinates': [-74.65885300000001, 41.781729999999996]}",16.596544,99.35803502223112 | |
12760,41.903935,-75.10784699999999,482,"{'type': 'Point', 'coordinates': [-75.10784699999999, 41.903935]}",110.63398,4.3567084904655875 | |
12762,41.64796,-74.792011,512,"{'type': 'Point', 'coordinates': [-74.792011, 41.64796]}",17.692888,28.9381812624372 | |
12763,41.676348,-74.522774,942,"{'type': 'Point', 'coordinates': [-74.522774, 41.676348]}",37.420951,25.17306414794215 | |
12764,41.591553000000005,-74.99555600000001,1802,"{'type': 'Point', 'coordinates': [-74.99555600000001, 41.591553000000005]}",158.652095,11.35818597289875 | |
12765,41.852340999999996,-74.621165,885,"{'type': 'Point', 'coordinates': [-74.621165, 41.852340999999996]}",32.480812,27.246855774418446 | |
12766,41.815208,-74.978854,437,"{'type': 'Point', 'coordinates': [-74.978854, 41.815208]}",20.830231,20.979124043319537 | |
12767,41.838093,-74.994415,126,"{'type': 'Point', 'coordinates': [-74.994415, 41.838093]}",7.698286,16.36727967758018 | |
12768,41.864443,-74.73002199999999,1131,"{'type': 'Point', 'coordinates': [-74.73002199999999, 41.864443]}",91.590767,12.34840625365655 | |
12769,41.657942,-74.467272,253,"{'type': 'Point', 'coordinates': [-74.467272, 41.657942]}",12.784465,19.789643133287157 | |
12770,41.449118,-74.843117,296,"{'type': 'Point', 'coordinates': [-74.843117, 41.449118]}",12.351178,23.96532541268533 | |
12771,41.37438,-74.624279,14511,"{'type': 'Point', 'coordinates': [-74.624279, 41.37438]}",91.649077,158.33220011588332 | |
12775,41.613617,-74.59336,2297,"{'type': 'Point', 'coordinates': [-74.59336, 41.613617]}",29.964553,76.6572423089375 | |
12776,41.963390000000004,-74.95779300000001,2180,"{'type': 'Point', 'coordinates': [-74.95779300000001, 41.963390000000004]}",287.629819,7.579186356891599 | |
12777,41.561783,-74.70970799999999,764,"{'type': 'Point', 'coordinates': [-74.70970799999999, 41.561783]}",140.349885,5.443538482414859 | |
12778,41.642678000000004,-74.81755,633,"{'type': 'Point', 'coordinates': [-74.81755, 41.642678000000004]}",15.087235,41.955997901537295 | |
12779,41.702465999999994,-74.632195,2460,"{'type': 'Point', 'coordinates': [-74.632195, 41.702465999999994]}",23.183251,106.11108856130662 | |
12780,41.440142,-74.727343,2312,"{'type': 'Point', 'coordinates': [-74.727343, 41.440142]}",63.562165,36.3738396890666 | |
12781,41.619673999999996,-74.466383,307,"{'type': 'Point', 'coordinates': [-74.466383, 41.619673999999996]}",11.053655,27.77361877134758 | |
12783,41.738633,-74.833724,1668,"{'type': 'Point', 'coordinates': [-74.833724, 41.738633]}",88.963594,18.749242527229733 | |
12784,41.669877,-74.63824,94,"{'type': 'Point', 'coordinates': [-74.63824, 41.669877]}",5.871692,16.009014096788455 | |
12785,41.532393,-74.56127099999999,1024,"{'type': 'Point', 'coordinates': [-74.56127099999999, 41.532393]}",45.478241,22.5162622274683 | |
12786,41.638709999999996,-74.857609,665,"{'type': 'Point', 'coordinates': [-74.857609, 41.638709999999996]}",45.97907,14.463102450745524 | |
12787,41.795394,-74.845029,452,"{'type': 'Point', 'coordinates': [-74.845029, 41.795394]}",9.096088,49.69169163710817 | |
12788,41.787539,-74.589314,2908,"{'type': 'Point', 'coordinates': [-74.589314, 41.787539]}",61.41059,47.35339621391034 | |
12789,41.704524,-74.57095100000001,1838,"{'type': 'Point', 'coordinates': [-74.57095100000001, 41.704524]}",25.18932,72.96743222921461 | |
12790,41.592057000000004,-74.51741899999999,4518,"{'type': 'Point', 'coordinates': [-74.51741899999999, 41.592057000000004]}",119.899632,37.68151682066881 | |
12791,41.817275,-74.89287,737,"{'type': 'Point', 'coordinates': [-74.89287, 41.817275]}",17.009696,43.328228793742106 | |
12792,41.51392,-74.95982,335,"{'type': 'Point', 'coordinates': [-74.95982, 41.51392]}",8.789598,38.11323339247142 | |
12801,43.31116,-73.645286,14707,"{'type': 'Point', 'coordinates': [-73.645286, 43.31116]}",10.58543,1389.3625483329445 | |
12803,43.290078,-73.629363,7567,"{'type': 'Point', 'coordinates': [-73.629363, 43.290078]}",16.596949,455.9271707107132 | |
12804,43.340953999999996,-73.685911,26540,"{'type': 'Point', 'coordinates': [-73.685911, 43.340953999999996]}",143.431912,185.03553100512246 | |
12808,43.759975,-73.716367,306,"{'type': 'Point', 'coordinates': [-73.716367, 43.759975]}",64.602458,4.736661877478408 | |
12809,43.237078000000004,-73.45450600000001,3528,"{'type': 'Point', 'coordinates': [-73.45450600000001, 43.237078000000004]}",134.453372,26.239579919200537 | |
12810,43.491968,-73.985954,627,"{'type': 'Point', 'coordinates': [-73.985954, 43.491968]}",174.936491,3.5841578644675116 | |
12811,43.605457,-74.02833000000001,127,"{'type': 'Point', 'coordinates': [-74.02833000000001, 43.605457]}",4.456249,28.499305133083904 | |
12812,43.875794,-74.389767,150,"{'type': 'Point', 'coordinates': [-74.389767, 43.875794]}",172.190177,0.8711298322203362 | |
12814,43.631894,-73.632551,1574,"{'type': 'Point', 'coordinates': [-73.632551, 43.631894]}",118.703391,13.259941327202691 | |
12815,43.69599,-73.667887,871,"{'type': 'Point', 'coordinates': [-73.667887, 43.69599]}",102.715699,8.47971642582114 | |
12816,43.044236,-73.382032,4610,"{'type': 'Point', 'coordinates': [-73.382032, 43.044236]}",164.635143,28.001311967761342 | |
12817,43.639585,-73.823628,2274,"{'type': 'Point', 'coordinates': [-73.823628, 43.639585]}",144.414482,15.746343223389466 | |
12819,43.59087,-73.468547,403,"{'type': 'Point', 'coordinates': [-73.468547, 43.59087]}",76.250104,5.28523869292034 | |
12821,43.453564,-73.415995,2750,"{'type': 'Point', 'coordinates': [-73.415995, 43.453564]}",14.528664,189.28099651833094 | |
12822,43.228592,-73.922202,6200,"{'type': 'Point', 'coordinates': [-73.922202, 43.228592]}",174.225667,35.586031075432764 | |
12823,43.179961,-73.40911700000001,238,"{'type': 'Point', 'coordinates': [-73.40911700000001, 43.179961]}",11.244192,21.16648310523335 | |
12824,43.524756,-73.727177,894,"{'type': 'Point', 'coordinates': [-73.727177, 43.524756]}",40.534687,22.05518448927458 | |
12827,43.46389,-73.531368,3877,"{'type': 'Point', 'coordinates': [-73.531368, 43.46389]}",323.473234,11.985535718235036 | |
12828,43.254993,-73.558355,9448,"{'type': 'Point', 'coordinates': [-73.558355, 43.254993]}",123.569206,76.45917867271883 | |
12831,43.195329,-73.691811,17416,"{'type': 'Point', 'coordinates': [-73.691811, 43.195329]}",176.534549,98.65490975367094 | |
12832,43.358467,-73.330271,7106,"{'type': 'Point', 'coordinates': [-73.330271, 43.358467]}",209.840007,33.86389517228714 | |
12833,43.15,-73.840896,4401,"{'type': 'Point', 'coordinates': [-73.840896, 43.15]}",91.68019,48.003827217199266 | |
12834,43.094307,-73.50058299999999,6594,"{'type': 'Point', 'coordinates': [-73.50058299999999, 43.094307]}",226.962551,29.053251168295162 | |
12835,43.332786999999996,-74.006311,2603,"{'type': 'Point', 'coordinates': [-74.006311, 43.332786999999996]}",257.376201,10.113600208124916 | |
12836,43.712346999999994,-73.605597,574,"{'type': 'Point', 'coordinates': [-73.605597, 43.712346999999994]}",115.039782,4.989578300835097 | |
12837,43.476445,-73.255601,857,"{'type': 'Point', 'coordinates': [-73.255601, 43.476445]}",38.763445,22.1084581104698 | |
12838,43.329056,-73.405062,608,"{'type': 'Point', 'coordinates': [-73.405062, 43.329056]}",13.16526,46.18214908023085 | |
12839,43.354486,-73.553953,13588,"{'type': 'Point', 'coordinates': [-73.553953, 43.354486]}",84.849625,160.14213380436271 | |
12841,43.606007,-73.533013,77,"{'type': 'Point', 'coordinates': [-73.533013, 43.606007]}",44.052745,1.747904699241784 | |
12842,43.738345,-74.367058,1166,"{'type': 'Point', 'coordinates': [-74.367058, 43.738345]}",516.824835,2.2560835336018634 | |
12843,43.565104,-73.972748,600,"{'type': 'Point', 'coordinates': [-73.972748, 43.565104]}",153.265362,3.9147788656904745 | |
12844,43.489396,-73.62119399999999,199,"{'type': 'Point', 'coordinates': [-73.62119399999999, 43.489396]}",7.08998,28.067780162990587 | |
12845,43.424048,-73.71274,4842,"{'type': 'Point', 'coordinates': [-73.71274, 43.424048]}",115.485129,41.92747622076951 | |
12846,43.345981,-73.78971700000001,3298,"{'type': 'Point', 'coordinates': [-73.78971700000001, 43.345981]}",153.657851,21.463270366835992 | |
12847,44.008384,-74.60923100000001,605,"{'type': 'Point', 'coordinates': [-74.60923100000001, 44.008384]}",1239.359315,0.4881554466712505 | |
12849,43.449567,-73.29831999999999,385,"{'type': 'Point', 'coordinates': [-73.29831999999999, 43.449567]}",7.072385,54.437081691678266 | |
12850,43.102616,-73.981441,2835,"{'type': 'Point', 'coordinates': [-73.981441, 43.102616]}",123.400815,22.973916339207324 | |
12851,43.841891,-74.034467,366,"{'type': 'Point', 'coordinates': [-74.034467, 43.841891]}",294.160259,1.2442197366980154 | |
12852,43.935796,-74.16752199999999,436,"{'type': 'Point', 'coordinates': [-74.16752199999999, 43.935796]}",330.350928,1.3198086127368167 | |
12853,43.657554,-74.064187,1770,"{'type': 'Point', 'coordinates': [-74.064187, 43.657554]}",229.019021,7.728615694326979 | |
12855,44.02701,-73.758053,259,"{'type': 'Point', 'coordinates': [-73.758053, 44.02701]}",480.181385,0.5393795096825755 | |
12856,43.66594,-74.142961,187,"{'type': 'Point', 'coordinates': [-74.142961, 43.66594]}",167.47673,1.116573030772693 | |
12857,43.819563,-73.89062,498,"{'type': 'Point', 'coordinates': [-73.89062, 43.819563]}",112.621239,4.421901272103746 | |
12858,43.908933000000005,-73.67578,59,"{'type': 'Point', 'coordinates': [-73.67578, 43.908933000000005]}",29.093923,2.027914901678952 | |
12859,43.171875,-73.920872,2220,"{'type': 'Point', 'coordinates': [-73.920872, 43.171875]}",57.175635,38.827727929912804 | |
12860,43.744594,-73.860967,748,"{'type': 'Point', 'coordinates': [-73.860967, 43.744594]}",42.222283,17.715763972308178 | |
12861,43.746887,-73.417527,609,"{'type': 'Point', 'coordinates': [-73.417527, 43.746887]}",86.39375,7.049121030167113 | |
12862,43.685404999999996,-73.910321,17,"{'type': 'Point', 'coordinates': [-73.910321, 43.685404999999996]}",6.549064,2.595790787813342 | |
12863,43.060363,-73.93190600000001,533,"{'type': 'Point', 'coordinates': [-73.93190600000001, 43.060363]}",9.298753,57.31951370253625 | |
12864,43.727365,-74.305388,36,"{'type': 'Point', 'coordinates': [-74.305388, 43.727365]}",0.544243,66.14692334122809 | |
12865,43.214159,-73.347451,3663,"{'type': 'Point', 'coordinates': [-73.347451, 43.214159]}",188.268384,19.456267282774363 | |
12866,43.073715,-73.740236,36915,"{'type': 'Point', 'coordinates': [-73.740236, 43.073715]}",184.18097,200.4278726515557 | |
12870,43.830056,-73.761222,1509,"{'type': 'Point', 'coordinates': [-73.761222, 43.830056]}",295.163997,5.112412134736067 | |
12871,43.088569,-73.612965,4084,"{'type': 'Point', 'coordinates': [-73.612965, 43.088569]}",79.267044,51.52204237614815 | |
12872,43.874656,-73.734418,31,"{'type': 'Point', 'coordinates': [-73.734418, 43.874656]}",0.789016,39.28944406704046 | |
12873,43.117451,-73.311646,736,"{'type': 'Point', 'coordinates': [-73.311646, 43.117451]}",54.698333,13.455620301993482 | |
12874,43.690560999999995,-73.549743,142,"{'type': 'Point', 'coordinates': [-73.549743, 43.690560999999995]}",56.268886,2.523597143899383 | |
12878,43.415025,-74.02745,719,"{'type': 'Point', 'coordinates': [-74.02745, 43.415025]}",224.349441,3.2048218921124922 | |
12883,43.836596,-73.55284300000001,5025,"{'type': 'Point', 'coordinates': [-73.55284300000001, 43.836596]}",211.933018,23.710321531871923 | |
12884,43.088396,-73.591291,486,"{'type': 'Point', 'coordinates': [-73.591291, 43.088396]}",1.290125,376.7076833640151 | |
12885,43.524868,-73.807651,4602,"{'type': 'Point', 'coordinates': [-73.807651, 43.524868]}",190.952983,24.10017339189721 | |
12886,43.673097999999996,-73.93589,269,"{'type': 'Point', 'coordinates': [-73.93589, 43.673097999999996]}",37.574959,7.159023114303332 | |
12887,43.53676,-73.365798,4972,"{'type': 'Point', 'coordinates': [-73.365798, 43.53676]}",219.302143,22.671917072876028 | |
12901,44.703651,-73.472669,33439,"{'type': 'Point', 'coordinates': [-73.472669, 44.703651]}",198.672559,168.31212205808453 | |
12903,44.680305,-73.445886,1217,"{'type': 'Point', 'coordinates': [-73.445886, 44.680305]}",1.503251,809.578706416959 | |
12910,44.845249,-73.619461,2148,"{'type': 'Point', 'coordinates': [-73.619461, 44.845249]}",169.116331,12.701316231842801 | |
12911,44.521514,-73.460881,36,"{'type': 'Point', 'coordinates': [-73.460881, 44.521514]}",0.35569,101.21172931485282 | |
12912,44.480940999999994,-73.772482,1998,"{'type': 'Point', 'coordinates': [-73.772482, 44.480940999999994]}",245.402181,8.14173693101774 | |
12913,44.430096999999996,-74.002212,1157,"{'type': 'Point', 'coordinates': [-74.002212, 44.430096999999996]}",76.007098,15.22226253132306 | |
12914,44.927419,-74.602942,1044,"{'type': 'Point', 'coordinates': [-74.602942, 44.927419]}",83.047288,12.571151029037818 | |
12916,44.834052,-74.515665,2135,"{'type': 'Point', 'coordinates': [-74.515665, 44.834052]}",107.424968,19.874336848766852 | |
12917,44.927638,-74.17891,1403,"{'type': 'Point', 'coordinates': [-74.17891, 44.927638]}",111.573457,12.574675354909905 | |
12918,44.700736,-73.67665699999999,2381,"{'type': 'Point', 'coordinates': [-73.67665699999999, 44.700736]}",102.343731,23.264737143499293 | |
12919,44.964539,-73.44708299999999,3037,"{'type': 'Point', 'coordinates': [-73.44708299999999, 44.964539]}",100.27187,30.287656947058032 | |
12920,44.882767,-74.066008,2842,"{'type': 'Point', 'coordinates': [-74.066008, 44.882767]}",243.599348,11.666697892803883 | |
12921,44.888628000000004,-73.441064,2410,"{'type': 'Point', 'coordinates': [-73.441064, 44.888628000000004]}",86.400557,27.893338696879002 | |
12922,44.286614,-74.702114,65,"{'type': 'Point', 'coordinates': [-74.702114, 44.286614]}",117.513378,0.553128512738354 | |
12923,44.960319,-73.939419,632,"{'type': 'Point', 'coordinates': [-73.939419, 44.960319]}",135.754347,4.655467865054812 | |
12924,44.480467,-73.58108100000001,158,"{'type': 'Point', 'coordinates': [-73.58108100000001, 44.480467]}",7.249723,21.793936126938917 | |
12926,44.950821000000005,-74.329,2208,"{'type': 'Point', 'coordinates': [-74.329, 44.950821000000005]}",125.618764,17.576991921366144 | |
12927,44.20725,-74.80974599999999,224,"{'type': 'Point', 'coordinates': [-74.80974599999999, 44.20725]}",320.665932,0.6985462989563855 | |
12928,43.963837,-73.583248,2028,"{'type': 'Point', 'coordinates': [-73.583248, 43.963837]}",197.743851,10.255691844496342 | |
12929,44.720027,-73.719234,3938,"{'type': 'Point', 'coordinates': [-73.719234, 44.720027]}",3.083914,1276.948708686429 | |
12930,44.720458,-74.543229,634,"{'type': 'Point', 'coordinates': [-74.543229, 44.720458]}",93.866103,6.754301923027528 | |
12932,44.214405,-73.608948,1236,"{'type': 'Point', 'coordinates': [-73.608948, 44.214405]}",167.079795,7.397662895145401 | |
12933,44.890994,-73.845341,17,"{'type': 'Point', 'coordinates': [-73.845341, 44.890994]}",0.070856,239.92322456813818 | |
12934,44.875376,-73.873665,1074,"{'type': 'Point', 'coordinates': [-73.873665, 44.875376]}",152.480694,7.043514636679185 | |
12935,44.844657,-73.796933,1748,"{'type': 'Point', 'coordinates': [-73.796933, 44.844657]}",264.500689,6.608678437128758 | |
12936,44.285061999999996,-73.40145,599,"{'type': 'Point', 'coordinates': [-73.40145, 44.285061999999996]}",80.043377,7.483442383996366 | |
12937,44.960846999999994,-74.47845500000001,1572,"{'type': 'Point', 'coordinates': [-74.47845500000001, 44.960846999999994]}",84.771484,18.543971696897508 | |
12939,44.432944,-74.160829,205,"{'type': 'Point', 'coordinates': [-74.160829, 44.432944]}",10.769838,19.03464100388511 | |
12941,44.347328999999995,-73.702866,1428,"{'type': 'Point', 'coordinates': [-73.702866, 44.347328999999995]}",105.54574,13.529679170376749 | |
12942,44.232492,-73.82682700000001,646,"{'type': 'Point', 'coordinates': [-73.82682700000001, 44.232492]}",137.418918,4.700953910872737 | |
12943,44.122772,-73.8835,459,"{'type': 'Point', 'coordinates': [-73.8835, 44.122772]}",268.21748,1.7112978617202725 | |
12944,44.433107,-73.53324599999999,4080,"{'type': 'Point', 'coordinates': [-73.53324599999999, 44.433107]}",238.238035,17.12572889547213 | |
12945,44.309090999999995,-74.24044,638,"{'type': 'Point', 'coordinates': [-74.24044, 44.309090999999995]}",104.687908,6.094304606793748 | |
12946,44.206555,-74.046061,5492,"{'type': 'Point', 'coordinates': [-74.046061, 44.206555]}",345.874558,15.87858913866686 | |
12950,44.318369,-73.581246,929,"{'type': 'Point', 'coordinates': [-73.581246, 44.318369]}",122.457354,7.586314497698521 | |
12952,44.70832,-73.90566,546,"{'type': 'Point', 'coordinates': [-73.90566, 44.70832]}",74.69774,7.309458090699933 | |
12953,44.745352000000004,-74.260037,15836,"{'type': 'Point', 'coordinates': [-74.260037, 44.745352000000004]}",556.203522,28.471592454245553 | |
12955,44.80665,-73.970421,381,"{'type': 'Point', 'coordinates': [-73.970421, 44.80665]}",89.996221,4.233511093760259 | |
12956,44.097612,-73.48133299999999,1259,"{'type': 'Point', 'coordinates': [-73.48133299999999, 44.097612]}",23.814741,52.866415805235924 | |
12957,44.848324,-74.574605,1726,"{'type': 'Point', 'coordinates': [-74.574605, 44.848324]}",82.757917,20.85601067025406 | |
12958,44.960295,-73.571184,1929,"{'type': 'Point', 'coordinates': [-73.571184, 44.960295]}",96.577642,19.973566966979792 | |
12959,44.952351,-73.719912,1369,"{'type': 'Point', 'coordinates': [-73.719912, 44.952351]}",100.307681,13.648007673510067 | |
12960,44.015756,-73.572348,1148,"{'type': 'Point', 'coordinates': [-73.572348, 44.015756]}",79.648392,14.41334810626183 | |
12961,44.057111,-73.549539,180,"{'type': 'Point', 'coordinates': [-73.549539, 44.057111]}",10.361538,17.37193841300394 | |
12962,44.701391,-73.605439,5499,"{'type': 'Point', 'coordinates': [-73.605439, 44.701391]}",112.956315,48.68253713836185 | |
12964,44.125919,-73.62672099999999,161,"{'type': 'Point', 'coordinates': [-73.62672099999999, 44.125919]}",91.186468,1.7656128538721336 | |
12965,44.703456,-74.685289,516,"{'type': 'Point', 'coordinates': [-74.685289, 44.703456]}",24.759358,20.840604994685243 | |
12966,44.798893,-74.418686,2915,"{'type': 'Point', 'coordinates': [-74.418686, 44.798893]}",223.322457,13.052874480957371 | |
12967,44.774921,-74.657566,1223,"{'type': 'Point', 'coordinates': [-74.657566, 44.774921]}",97.485726,12.545426394013827 | |
12969,44.710896999999996,-74.09815,423,"{'type': 'Point', 'coordinates': [-74.09815, 44.710896999999996]}",260.313383,1.6249644759908484 | |
12970,44.478136,-74.307514,963,"{'type': 'Point', 'coordinates': [-74.307514, 44.478136]}",139.562462,6.90013622717547 | |
12972,44.554081,-73.569296,6364,"{'type': 'Point', 'coordinates': [-73.569296, 44.554081]}",215.770578,29.494289995367208 | |
12973,44.287677,-74.594706,187,"{'type': 'Point', 'coordinates': [-74.594706, 44.287677]}",95.542153,1.9572512668832154 | |
12974,44.060140999999994,-73.46483,1599,"{'type': 'Point', 'coordinates': [-73.46483, 44.060140999999994]}",20.852681,76.68078747284342 | |
12975,44.529090999999994,-73.430536,265,"{'type': 'Point', 'coordinates': [-73.430536, 44.529090999999994]}",7.385717,35.880064183341986 | |
12976,44.503733000000004,-74.230251,260,"{'type': 'Point', 'coordinates': [-74.230251, 44.503733000000004]}",102.480616,2.537065155814442 | |
12977,44.277015000000006,-74.072971,1753,"{'type': 'Point', 'coordinates': [-74.072971, 44.277015000000006]}",23.457272,74.73162267121258 | |
12978,44.61636,-73.80870999999999,403,"{'type': 'Point', 'coordinates': [-73.80870999999999, 44.61636]}",6.769186,59.53448464852347 | |
12979,44.991657000000004,-73.373374,2304,"{'type': 'Point', 'coordinates': [-73.373374, 44.991657000000004]}",8.806204,261.6337300385047 | |
12980,44.563851,-74.524079,1304,"{'type': 'Point', 'coordinates': [-74.524079, 44.563851]}",671.377666,1.9422749162466182 | |
12981,44.627099,-73.845851,2253,"{'type': 'Point', 'coordinates': [-73.845851, 44.627099]}",276.551205,8.1467733977149 | |
12983,44.2886,-74.183878,7494,"{'type': 'Point', 'coordinates': [-74.183878, 44.2886]}",598.533584,12.520600681949368 | |
12985,44.560709,-73.738967,1072,"{'type': 'Point', 'coordinates': [-73.738967, 44.560709]}",143.982293,7.445359965200721 | |
12986,44.226011,-74.48093100000001,6120,"{'type': 'Point', 'coordinates': [-74.48093100000001, 44.226011]}",647.670812,9.449244719090414 | |
12987,44.320840999999994,-73.75346,201,"{'type': 'Point', 'coordinates': [-73.75346, 44.320840999999994]}",16.097781,12.486192972807865 | |
12989,44.520103000000006,-74.069774,1010,"{'type': 'Point', 'coordinates': [-74.069774, 44.520103000000006]}",389.966024,2.589969222549501 | |
12992,44.817751,-73.516729,4778,"{'type': 'Point', 'coordinates': [-73.516729, 44.817751]}",164.968754,28.963060483562845 | |
12993,44.211345,-73.476221,1623,"{'type': 'Point', 'coordinates': [-73.476221, 44.211345]}",187.257372,8.667215515552574 | |
12996,44.355266,-73.44805500000001,2086,"{'type': 'Point', 'coordinates': [-73.44805500000001, 44.355266]}",134.072614,15.55873297137326 | |
12997,44.372797999999996,-73.892043,1239,"{'type': 'Point', 'coordinates': [-73.892043, 44.372797999999996]}",169.564997,7.30693257406185 | |
12998,44.0778,-73.576545,526,"{'type': 'Point', 'coordinates': [-73.576545, 44.0778]}",31.497638,16.699664908206767 | |
13020,42.816424,-76.074504,150,"{'type': 'Point', 'coordinates': [-76.074504, 42.816424]}",1.211234,123.84064516022504 | |
13021,42.922278999999996,-76.558539,39506,"{'type': 'Point', 'coordinates': [-76.558539, 42.922278999999996]}",311.884679,126.66861394624645 | |
13024,42.934596,-76.574232,1733,"{'type': 'Point', 'coordinates': [-76.574232, 42.934596]}",0.107577,16109.391412662557 | |
13026,42.744043,-76.652266,1914,"{'type': 'Point', 'coordinates': [-76.652266, 42.744043]}",72.950923,26.236816770639077 | |
13027,43.166437,-76.364345,31637,"{'type': 'Point', 'coordinates': [-76.364345, 43.166437]}",181.078491,174.71429005888942 | |
13028,43.305215999999994,-75.94529399999999,1350,"{'type': 'Point', 'coordinates': [-75.94529399999999, 43.305215999999994]}",49.181623,27.449277141585995 | |
13029,43.225941999999996,-76.15134300000001,7109,"{'type': 'Point', 'coordinates': [-76.15134300000001, 43.225941999999996]}",46.885176,151.62575053573437 | |
13030,43.152233,-75.962695,3892,"{'type': 'Point', 'coordinates': [-75.962695, 43.152233]}",34.726099,112.07708645880437 | |
13031,43.045015,-76.30954100000001,15551,"{'type': 'Point', 'coordinates': [-76.30954100000001, 43.045015]}",62.975379,246.9377754757141 | |
13032,43.081617,-75.766018,12790,"{'type': 'Point', 'coordinates': [-75.766018, 43.081617]}",211.365765,60.5112185504592 | |
13033,43.188494,-76.562626,3556,"{'type': 'Point', 'coordinates': [-76.562626, 43.188494]}",161.001128,22.086801776941588 | |
13034,42.923576000000004,-76.734279,1989,"{'type': 'Point', 'coordinates': [-76.734279, 42.923576000000004]}",63.185624,31.47867939074243 | |
13035,42.940849,-75.83010300000001,8617,"{'type': 'Point', 'coordinates': [-75.83010300000001, 42.940849]}",198.760748,43.35363036568971 | |
13036,43.309256,-76.166775,8680,"{'type': 'Point', 'coordinates': [-76.166775, 43.309256]}",127.621386,68.01367914935511 | |
13037,43.067797,-75.854933,8897,"{'type': 'Point', 'coordinates': [-75.854933, 43.067797]}",106.262286,83.72678901336641 | |
13039,43.172142,-76.056249,17537,"{'type': 'Point', 'coordinates': [-76.056249, 43.172142]}",58.541265,299.5664681998245 | |
13040,42.559649,-75.930761,2758,"{'type': 'Point', 'coordinates': [-75.930761, 42.559649]}",250.286867,11.019355642020162 | |
13041,43.192089,-76.192302,10705,"{'type': 'Point', 'coordinates': [-76.192302, 43.192089]}",48.405123,221.15427740985183 | |
13042,43.26045,-75.85258,2356,"{'type': 'Point', 'coordinates': [-75.85258, 43.26045]}",87.72815,26.855689992322876 | |
13044,43.291249,-75.996241,2512,"{'type': 'Point', 'coordinates': [-75.996241, 43.291249]}",72.729716,34.538839667681366 | |
13045,42.573848999999996,-76.202145,30112,"{'type': 'Point', 'coordinates': [-76.202145, 42.573848999999996]}",276.921584,108.73836399838014 | |
13051,42.876725,-75.90863900000001,153,"{'type': 'Point', 'coordinates': [-75.90863900000001, 42.876725]}",0.610483,250.62122941998385 | |
13052,42.712309999999995,-75.86519399999999,1679,"{'type': 'Point', 'coordinates': [-75.86519399999999, 42.712309999999995]}",127.842896,13.133306992670128 | |
13053,42.479575,-76.26791800000001,5015,"{'type': 'Point', 'coordinates': [-76.26791800000001, 42.479575]}",86.602568,57.90821353011148 | |
13054,43.169352,-75.666823,1582,"{'type': 'Point', 'coordinates': [-75.666823, 43.169352]}",57.712213,27.41187554183722 | |
13057,43.101955,-76.03791899999999,14992,"{'type': 'Point', 'coordinates': [-76.03791899999999, 43.101955]}",72.676049,206.2852921462475 | |
13060,43.022861999999996,-76.411872,2806,"{'type': 'Point', 'coordinates': [-76.411872, 43.022861999999996]}",41.466104,67.6697285088563 | |
13061,42.871851,-75.76208199999999,1040,"{'type': 'Point', 'coordinates': [-75.76208199999999, 42.871851]}",69.837517,14.891709279984854 | |
13062,42.484095,-76.384376,173,"{'type': 'Point', 'coordinates': [-76.384376, 42.484095]}",0.484118,357.3508937903569 | |
13063,42.847849,-75.977961,1898,"{'type': 'Point', 'coordinates': [-75.977961, 42.847849]}",90.336968,21.010224739887217 | |
13064,43.328996000000004,-76.711915,64,"{'type': 'Point', 'coordinates': [-76.711915, 43.328996000000004]}",3.410272,18.76683150200336 | |
13066,43.032475,-76.000667,12390,"{'type': 'Point', 'coordinates': [-76.000667, 43.032475]}",39.532172,313.4156150084544 | |
13068,42.492430999999996,-76.359199,5368,"{'type': 'Point', 'coordinates': [-76.359199, 42.492430999999996]}",133.247515,40.28592953497107 | |
13069,43.329276,-76.380655,24931,"{'type': 'Point', 'coordinates': [-76.380655, 43.329276]}",287.252953,86.79110080375744 | |
13071,42.675114,-76.542579,1023,"{'type': 'Point', 'coordinates': [-76.542579, 42.675114]}",64.343029,15.899158244477423 | |
13072,42.762209999999996,-75.763989,1123,"{'type': 'Point', 'coordinates': [-75.763989, 42.762209999999996]}",121.905826,9.2120289640628 | |
13073,42.58367,-76.387923,6423,"{'type': 'Point', 'coordinates': [-76.387923, 42.58367]}",142.497301,45.074537938090494 | |
13074,43.310916999999996,-76.54984300000001,4488,"{'type': 'Point', 'coordinates': [-76.54984300000001, 43.310916999999996]}",110.416124,40.64623750060272 | |
13076,43.353715,-76.149309,2393,"{'type': 'Point', 'coordinates': [-76.149309, 43.353715]}",39.667158,60.32698384895636 | |
13077,42.727973,-76.211042,6735,"{'type': 'Point', 'coordinates': [-76.211042, 42.727973]}",183.910686,36.6210368004391 | |
13078,42.958399,-76.06110100000001,9866,"{'type': 'Point', 'coordinates': [-76.06110100000001, 42.958399]}",102.003846,96.72184321363726 | |
13080,43.09321,-76.485258,3631,"{'type': 'Point', 'coordinates': [-76.485258, 43.09321]}",79.174101,45.86095647615879 | |
13081,42.673617,-76.627152,1169,"{'type': 'Point', 'coordinates': [-76.627152, 42.673617]}",75.032497,15.579915992933033 | |
13082,43.10273,-75.959888,4871,"{'type': 'Point', 'coordinates': [-75.959888, 43.10273]}",62.117528,78.41586999405385 | |
13083,43.645775,-75.98168000000001,1809,"{'type': 'Point', 'coordinates': [-75.98168000000001, 43.645775]}",150.45383,12.023622130456898 | |
13084,42.880541,-76.12447399999999,4409,"{'type': 'Point', 'coordinates': [-76.12447399999999, 42.880541]}",111.414431,39.57297057864973 | |
13087,42.708597,-76.15405,168,"{'type': 'Point', 'coordinates': [-76.15405, 42.708597]}",0.966803,173.76859608420745 | |
13088,43.112004,-76.189613,22156,"{'type': 'Point', 'coordinates': [-76.189613, 43.112004]}",20.644548,1073.2131311375767 | |
13090,43.153084,-76.212402,30124,"{'type': 'Point', 'coordinates': [-76.212402, 43.153084]}",39.339882,765.7369180720979 | |
13092,42.654563,-76.41929499999999,2606,"{'type': 'Point', 'coordinates': [-76.41929499999999, 42.654563]}",125.963189,20.688583868736444 | |
13101,42.589192,-76.056073,2508,"{'type': 'Point', 'coordinates': [-76.056073, 42.589192]}",101.297419,24.75877494963618 | |
13102,42.550304,-76.292002,85,"{'type': 'Point', 'coordinates': [-76.292002, 42.550304]}",0.153656,553.1837350965794 | |
13103,43.325759999999995,-76.109545,326,"{'type': 'Point', 'coordinates': [-76.109545, 43.325759999999995]}",0.924077,352.7844541093437 | |
13104,42.963029999999996,-75.94843900000001,15567,"{'type': 'Point', 'coordinates': [-75.94843900000001, 42.963029999999996]}",122.463663,127.11525703750998 | |
13108,42.964845000000004,-76.331113,6175,"{'type': 'Point', 'coordinates': [-76.331113, 42.964845000000004]}",75.635152,81.64193284096262 | |
13110,42.895398,-76.280364,2338,"{'type': 'Point', 'coordinates': [-76.280364, 42.895398]}",63.672995,36.71886331089028 | |
13111,43.258488,-76.614264,1700,"{'type': 'Point', 'coordinates': [-76.614264, 43.258488]}",69.15323,24.583088888255837 | |
13112,43.106266,-76.417239,1973,"{'type': 'Point', 'coordinates': [-76.417239, 43.106266]}",55.896828,35.29717285567617 | |
13113,43.16265,-76.538623,287,"{'type': 'Point', 'coordinates': [-76.538623, 43.16265]}",1.345153,213.35862909275005 | |
13114,43.465706,-76.244786,6356,"{'type': 'Point', 'coordinates': [-76.244786, 43.465706]}",164.764117,38.57636065260496 | |
13115,43.398646,-76.478779,224,"{'type': 'Point', 'coordinates': [-76.478779, 43.398646]}",1.200817,186.53966424525967 | |
13116,43.074797,-76.007947,3457,"{'type': 'Point', 'coordinates': [-76.007947, 43.074797]}",3.421062,1010.5049250788205 | |
13117,43.009299,-76.70750799999999,188,"{'type': 'Point', 'coordinates': [-76.70750799999999, 43.009299]}",2.109647,89.11443478458719 | |
13118,42.755584999999996,-76.38727800000001,6382,"{'type': 'Point', 'coordinates': [-76.38727800000001, 42.755584999999996]}",265.937156,23.99815090148591 | |
13120,42.933187,-76.175145,2328,"{'type': 'Point', 'coordinates': [-76.175145, 42.933187]}",44.470174,52.349693976911354 | |
13122,42.837754,-75.86152,1174,"{'type': 'Point', 'coordinates': [-75.86152, 42.837754]}",48.516805,24.197801153641507 | |
13123,43.233564,-75.769068,314,"{'type': 'Point', 'coordinates': [-75.769068, 43.233564]}",6.128028,51.23997475207359 | |
13124,42.661074,-75.823604,124,"{'type': 'Point', 'coordinates': [-75.823604, 42.661074]}",12.148739,10.206820642043589 | |
13126,43.438798,-76.457454,37205,"{'type': 'Point', 'coordinates': [-76.457454, 43.438798]}",287.01796,129.62603455198413 | |
13131,43.423243,-76.091802,3895,"{'type': 'Point', 'coordinates': [-76.091802, 43.423243]}",137.508273,28.325568455070336 | |
13132,43.271918,-76.251052,4244,"{'type': 'Point', 'coordinates': [-76.251052, 43.271918]}",62.503483,67.90021605675959 | |
13134,42.967368,-75.684678,119,"{'type': 'Point', 'coordinates': [-75.684678, 42.967368]}",0.21379,556.6209832078207 | |
13135,43.253687,-76.314375,6617,"{'type': 'Point', 'coordinates': [-76.314375, 43.253687]}",85.727917,77.18605830583752 | |
13136,42.614098,-75.844788,534,"{'type': 'Point', 'coordinates': [-75.844788, 42.614098]}",48.303281,11.055149649151163 | |
13138,42.899087,-76.014634,61,"{'type': 'Point', 'coordinates': [-76.014634, 42.899087]}",0.102927,592.653045362247 | |
13140,43.060381,-76.650274,4488,"{'type': 'Point', 'coordinates': [-76.650274, 43.060381]}",139.618839,32.14465921751433 | |
13141,42.752495,-76.18569699999999,596,"{'type': 'Point', 'coordinates': [-76.18569699999999, 42.752495]}",34.082597,17.486930353341325 | |
13142,43.556281,-76.138339,6451,"{'type': 'Point', 'coordinates': [-76.138339, 43.556281]}",194.434165,33.17832542444379 | |
13143,43.235788,-76.714793,2873,"{'type': 'Point', 'coordinates': [-76.714793, 43.235788]}",113.46759,25.320005474691055 | |
13144,43.568754999999996,-75.977019,1531,"{'type': 'Point', 'coordinates': [-75.977019, 43.568754999999996]}",101.396641,15.099119506335521 | |
13145,43.646741999999996,-76.116311,1926,"{'type': 'Point', 'coordinates': [-76.116311, 43.646741999999996]}",43.465037,44.31147729150673 | |
13146,43.085645,-76.750191,2443,"{'type': 'Point', 'coordinates': [-76.750191, 43.085645]}",141.94295,17.21114010945947 | |
13147,42.775406,-76.569608,1281,"{'type': 'Point', 'coordinates': [-76.569608, 42.775406]}",92.963315,13.779629093476283 | |
13148,42.913371999999995,-76.78526,10750,"{'type': 'Point', 'coordinates': [-76.78526, 42.913371999999995]}",164.006444,65.5462050015547 | |
13152,42.890839,-76.37262,7941,"{'type': 'Point', 'coordinates': [-76.37262, 42.890839]}",167.586898,47.38437249432232 | |
13153,42.996557,-76.453627,399,"{'type': 'Point', 'coordinates': [-76.453627, 42.996557]}",2.316195,172.2652885443583 | |
13155,42.674546,-75.776726,663,"{'type': 'Point', 'coordinates': [-75.776726, 42.674546]}",53.107527,12.484106066546838 | |
13156,43.325990000000004,-76.66130600000001,2000,"{'type': 'Point', 'coordinates': [-76.66130600000001, 43.325990000000004]}",80.671348,24.791949677102213 | |
13157,43.206652000000005,-75.72143100000001,695,"{'type': 'Point', 'coordinates': [-75.72143100000001, 43.206652000000005]}",1.588749,437.4511014641079 | |
13158,42.696934999999996,-75.951068,1855,"{'type': 'Point', 'coordinates': [-75.951068, 42.696934999999996]}",185.042144,10.024743336307214 | |
13159,42.802964,-76.111618,5184,"{'type': 'Point', 'coordinates': [-76.111618, 42.802964]}",205.496752,25.22667608877828 | |
13160,42.827597999999995,-76.648904,2027,"{'type': 'Point', 'coordinates': [-76.648904, 42.827597999999995]}",55.184653,36.7312267053668 | |
13162,43.185045,-75.714741,385,"{'type': 'Point', 'coordinates': [-75.714741, 43.185045]}",4.608881,83.5343763486191 | |
13163,43.080092,-75.710999,339,"{'type': 'Point', 'coordinates': [-75.710999, 43.080092]}",1.393688,243.23951989254408 | |
13164,43.096855,-76.31264,2338,"{'type': 'Point', 'coordinates': [-76.31264, 43.096855]}",27.802418,84.09340511318116 | |
13165,42.916639,-76.883297,10741,"{'type': 'Point', 'coordinates': [-76.883297, 42.916639]}",176.924539,60.709498301985114 | |
13166,43.078934999999994,-76.56537900000001,5610,"{'type': 'Point', 'coordinates': [-76.56537900000001, 43.078934999999994]}",107.785347,52.04789107372823 | |
13167,43.326421,-76.06026,3342,"{'type': 'Point', 'coordinates': [-76.06026, 43.326421]}",88.835052,37.62028529009022 | |
13202,43.043782,-76.150638,5438,"{'type': 'Point', 'coordinates': [-76.150638, 43.043782]}",2.583758,2104.686274798182 | |
13203,43.061111,-76.134924,16029,"{'type': 'Point', 'coordinates': [-76.134924, 43.061111]}",4.402314,3641.0396895814342 | |
13204,43.050816999999995,-76.17747299999999,19931,"{'type': 'Point', 'coordinates': [-76.17747299999999, 43.050816999999995]}",11.471951,1737.3679507522302 | |
13205,43.005276,-76.14203,19201,"{'type': 'Point', 'coordinates': [-76.14203, 43.005276]}",8.93448,2149.0898183218274 | |
13206,43.073465,-76.105806,16443,"{'type': 'Point', 'coordinates': [-76.105806, 43.073465]}",10.235105,1606.5296838674346 | |
13207,43.012813,-76.163317,13897,"{'type': 'Point', 'coordinates': [-76.163317, 43.012813]}",8.124764,1710.4496819846088 | |
13208,43.078768,-76.14523,22854,"{'type': 'Point', 'coordinates': [-76.14523, 43.078768]}",10.81081,2113.995158549637 | |
13209,43.068502,-76.224251,13243,"{'type': 'Point', 'coordinates': [-76.224251, 43.068502]}",33.234913,398.4665162204577 | |
13210,43.031057000000004,-76.127249,27606,"{'type': 'Point', 'coordinates': [-76.127249, 43.031057000000004]}",11.833644,2332.840163182195 | |
13211,43.103572,-76.119484,6517,"{'type': 'Point', 'coordinates': [-76.119484, 43.103572]}",12.198995,534.2243356932272 | |
13212,43.129697,-76.130154,20356,"{'type': 'Point', 'coordinates': [-76.130154, 43.129697]}",27.437626,741.9009210199162 | |
13214,43.038709000000004,-76.075591,8793,"{'type': 'Point', 'coordinates': [-76.075591, 43.038709000000004]}",9.487539,926.7946092237407 | |
13215,42.980793,-76.223386,15245,"{'type': 'Point', 'coordinates': [-76.223386, 42.980793]}",88.008844,173.22122763025953 | |
13219,43.041266,-76.224195,15363,"{'type': 'Point', 'coordinates': [-76.224195, 43.041266]}",12.893106,1191.56702814667 | |
13224,43.037162,-76.1029,8891,"{'type': 'Point', 'coordinates': [-76.1029, 43.037162]}",7.716078,1152.269326463522 | |
13290,43.069136,-76.173017,0,"{'type': 'Point', 'coordinates': [-76.173017, 43.069136]}",0.658062,0.0 | |
13301,43.41605,-75.218175,98,"{'type': 'Point', 'coordinates': [-75.218175, 43.41605]}",6.751874,14.514488866350291 | |
13302,43.498115000000006,-75.965068,1610,"{'type': 'Point', 'coordinates': [-75.965068, 43.498115000000006]}",118.811488,13.550878177706183 | |
13303,43.367414000000004,-75.468212,1153,"{'type': 'Point', 'coordinates': [-75.468212, 43.367414000000004]}",91.723137,12.570437925602132 | |
13304,43.24388,-75.160287,1684,"{'type': 'Point', 'coordinates': [-75.160287, 43.24388]}",45.632881,36.903214592127114 | |
13305,43.892289,-75.421171,293,"{'type': 'Point', 'coordinates': [-75.421171, 43.892289]}",2.484758,117.91892812096793 | |
13308,43.251265999999994,-75.657668,3625,"{'type': 'Point', 'coordinates': [-75.657668, 43.251265999999994]}",101.832692,35.597605531237456 | |
13309,43.452005,-75.35544300000001,5889,"{'type': 'Point', 'coordinates': [-75.35544300000001, 43.452005]}",378.619096,15.553890604609123 | |
13310,42.88962,-75.571545,624,"{'type': 'Point', 'coordinates': [-75.571545, 42.88962]}",19.859016,31.421496412511072 | |
13312,43.691839,-75.204374,331,"{'type': 'Point', 'coordinates': [-75.204374, 43.691839]}",167.71907,1.9735382505996486 | |
13313,42.880221,-75.272902,526,"{'type': 'Point', 'coordinates': [-75.272902, 42.880221]}",5.829791,90.22621908744242 | |
13314,42.816533,-75.31910400000001,443,"{'type': 'Point', 'coordinates': [-75.31910400000001, 42.816533]}",10.091116,43.90000075313771 | |
13315,42.744144,-75.14361099999999,1419,"{'type': 'Point', 'coordinates': [-75.14361099999999, 42.744144]}",127.600247,11.120668128487244 | |
13316,43.418917,-75.73974,6460,"{'type': 'Point', 'coordinates': [-75.73974, 43.418917]}",420.908708,15.347746143565175 | |
13317,42.854101,-74.590839,3784,"{'type': 'Point', 'coordinates': [-74.590839, 42.854101]}",120.999945,31.272741487609768 | |
13318,42.921535999999996,-75.260063,1325,"{'type': 'Point', 'coordinates': [-75.260063, 42.921535999999996]}",65.771139,20.14561432484847 | |
13319,43.026436,-75.266925,1079,"{'type': 'Point', 'coordinates': [-75.266925, 43.026436]}",2.295988,469.95019137730685 | |
13320,42.777805,-74.740798,2018,"{'type': 'Point', 'coordinates': [-74.740798, 42.777805]}",199.453517,10.117645606620213 | |
13321,43.087796000000004,-75.370637,1049,"{'type': 'Point', 'coordinates': [-75.370637, 43.087796000000004]}",2.133498,491.6807983883744 | |
13322,42.954345,-75.201657,1076,"{'type': 'Point', 'coordinates': [-75.201657, 42.954345]}",31.593723,34.057398047074095 | |
13323,43.039981,-75.37935300000001,11323,"{'type': 'Point', 'coordinates': [-75.37935300000001, 43.039981]}",98.614826,114.82046320296708 | |
13324,43.320640999999995,-74.961602,2149,"{'type': 'Point', 'coordinates': [-74.961602, 43.320640999999995]}",320.439609,6.706411878064674 | |
13325,43.576282,-75.527857,866,"{'type': 'Point', 'coordinates': [-75.527857, 43.576282]}",200.550073,4.318123584028813 | |
13326,42.722511,-74.895371,5561,"{'type': 'Point', 'coordinates': [-74.895371, 42.722511]}",248.701026,22.360181175931295 | |
13327,43.972929,-75.262309,2056,"{'type': 'Point', 'coordinates': [-75.262309, 43.972929]}",352.295643,5.836007458088263 | |
13328,42.985096,-75.429027,1267,"{'type': 'Point', 'coordinates': [-75.429027, 42.985096]}",41.087152,30.836890325228673 | |
13329,43.107462,-74.708431,3889,"{'type': 'Point', 'coordinates': [-74.708431, 43.107462]}",138.340267,28.111843965141396 | |
13331,43.866299,-74.880901,189,"{'type': 'Point', 'coordinates': [-74.880901, 43.866299]}",221.030096,0.8550871732870261 | |
13332,42.764159,-75.58173599999999,2460,"{'type': 'Point', 'coordinates': [-75.58173599999999, 42.764159]}",127.765169,19.254073854823453 | |
13333,42.836995,-74.81864399999999,62,"{'type': 'Point', 'coordinates': [-74.81864399999999, 42.836995]}",4.412486,14.0510360826074 | |
13334,42.827039,-75.65642700000001,1374,"{'type': 'Point', 'coordinates': [-75.65642700000001, 42.827039]}",76.786143,17.893853582410046 | |
13335,42.702259999999995,-75.248224,1590,"{'type': 'Point', 'coordinates': [-75.248224, 42.702259999999995]}",98.914922,16.07441999499327 | |
13337,42.757804,-74.999545,790,"{'type': 'Point', 'coordinates': [-74.999545, 42.757804]}",48.208657,16.38709827573085 | |
13338,43.528032,-74.987121,1206,"{'type': 'Point', 'coordinates': [-74.987121, 43.528032]}",643.689269,1.8735748102086196 | |
13339,42.936895,-74.658658,6941,"{'type': 'Point', 'coordinates': [-74.658658, 42.936895]}",282.388566,24.579607093581824 | |
13340,43.061642,-75.12857,8205,"{'type': 'Point', 'coordinates': [-75.12857, 43.061642]}",150.728671,54.43556256128604 | |
13341,43.036086,-75.396891,102,"{'type': 'Point', 'coordinates': [-75.396891, 43.036086]}",0.476975,213.8476859374181 | |
13342,42.654143,-75.195234,165,"{'type': 'Point', 'coordinates': [-75.195234, 42.654143]}",20.711181,7.966711314048195 | |
13343,43.751239,-75.3115,1658,"{'type': 'Point', 'coordinates': [-75.3115, 43.751239]}",147.977393,11.204414176968234 | |
13345,43.687108,-75.32125400000001,177,"{'type': 'Point', 'coordinates': [-75.32125400000001, 43.687108]}",12.833555,13.791969567278903 | |
13346,42.818442,-75.544331,6735,"{'type': 'Point', 'coordinates': [-75.544331, 42.818442]}",100.594788,66.9517788535923 | |
13348,42.709982000000004,-75.066926,1469,"{'type': 'Point', 'coordinates': [-75.066926, 42.709982000000004]}",95.932488,15.312852096570245 | |
13350,43.061009000000006,-75.000439,10093,"{'type': 'Point', 'coordinates': [-75.000439, 43.061009000000006]}",80.218092,125.81949717776882 | |
13352,43.313337,-75.116208,65,"{'type': 'Point', 'coordinates': [-75.116208, 43.313337]}",0.477574,136.1045618061285 | |
13353,43.447278999999995,-74.694629,86,"{'type': 'Point', 'coordinates': [-74.694629, 43.447278999999995]}",522.221243,0.1646811598585238 | |
13354,43.265093,-75.268497,3342,"{'type': 'Point', 'coordinates': [-75.268497, 43.265093]}",135.028614,24.750309589936247 | |
13355,42.809841,-75.43043399999999,905,"{'type': 'Point', 'coordinates': [-75.43043399999999, 42.809841]}",75.42827,11.99815400777454 | |
13357,42.971061,-75.081209,11096,"{'type': 'Point', 'coordinates': [-75.081209, 42.971061]}",82.061978,135.21487381159642 | |
13360,43.721790000000006,-74.714836,333,"{'type': 'Point', 'coordinates': [-74.714836, 43.721790000000006]}",169.840934,1.9606580825797861 | |
13361,42.904352,-74.86756,824,"{'type': 'Point', 'coordinates': [-74.86756, 42.904352]}",73.365815,11.231388896858844 | |
13362,42.982178000000005,-75.522003,60,"{'type': 'Point', 'coordinates': [-75.522003, 42.982178000000005]}",0.714898,83.92805686965133 | |
13363,43.324528,-75.513109,2315,"{'type': 'Point', 'coordinates': [-75.513109, 43.324528]}",54.993473,42.095904726730026 | |
13364,42.804977,-75.261071,243,"{'type': 'Point', 'coordinates': [-75.261071, 42.804977]}",7.656967,31.735803484591223 | |
13365,43.125689,-74.853291,8906,"{'type': 'Point', 'coordinates': [-74.853291, 43.125689]}",351.427437,25.342358229132802 | |
13367,43.684818,-75.76116800000001,8830,"{'type': 'Point', 'coordinates': [-75.76116800000001, 43.684818]}",1219.995568,7.23773121116781 | |
13368,43.638483,-75.286787,1118,"{'type': 'Point', 'coordinates': [-75.286787, 43.638483]}",120.802073,9.254808069394638 | |
13402,42.892429,-75.500629,1534,"{'type': 'Point', 'coordinates': [-75.500629, 42.892429]}",66.036526,23.229568436110647 | |
13403,43.164533,-75.267645,7372,"{'type': 'Point', 'coordinates': [-75.267645, 43.164533]}",70.129534,105.11976309439044 | |
13404,43.736385,-75.471758,236,"{'type': 'Point', 'coordinates': [-75.471758, 43.736385]}",7.631021,30.926398970727508 | |
13406,43.134514,-74.92488900000001,725,"{'type': 'Point', 'coordinates': [-74.92488900000001, 43.134514]}",28.427439,25.50352847472472 | |
13407,42.968801,-74.950576,5453,"{'type': 'Point', 'coordinates': [-74.950576, 42.968801]}",141.976867,38.40766538396709 | |
13408,42.922948999999996,-75.676749,4280,"{'type': 'Point', 'coordinates': [-75.676749, 42.922948999999996]}",97.813177,43.756885639242654 | |
13409,42.976475,-75.595112,2374,"{'type': 'Point', 'coordinates': [-75.595112, 42.976475]}",89.260476,26.596317949279143 | |
13410,42.931043,-74.61259100000001,241,"{'type': 'Point', 'coordinates': [-74.61259100000001, 42.931043]}",0.284878,845.9761722561938 | |
13411,42.633789,-75.306457,3264,"{'type': 'Point', 'coordinates': [-75.306457, 42.633789]}",178.040949,18.33286116667464 | |
13413,43.060413,-75.279398,16135,"{'type': 'Point', 'coordinates': [-75.279398, 43.060413]}",51.684894,312.18018943794294 | |
13415,42.596494,-75.19847299999999,77,"{'type': 'Point', 'coordinates': [-75.19847299999999, 42.596494]}",5.126775,15.019188476186295 | |
13416,43.187371,-74.970659,2271,"{'type': 'Point', 'coordinates': [-74.970659, 43.187371]}",135.610364,16.746507663676795 | |
13417,43.100941999999996,-75.29381,3305,"{'type': 'Point', 'coordinates': [-75.29381, 43.100941999999996]}",3.384695,976.4543038589889 | |
13418,42.845704,-75.38046,255,"{'type': 'Point', 'coordinates': [-75.38046, 42.845704]}",13.510554,18.874133510735383 | |
13420,43.717768,-74.984147,1266,"{'type': 'Point', 'coordinates': [-74.984147, 43.717768]}",597.094592,2.120267068169996 | |
13421,43.061915,-75.660092,14125,"{'type': 'Point', 'coordinates': [-75.660092, 43.061915]}",109.018242,129.56547217116196 | |
13424,43.152367,-75.365215,2725,"{'type': 'Point', 'coordinates': [-75.365215, 43.152367]}",28.8723,94.38111961984325 | |
13425,42.964793,-75.48706,1970,"{'type': 'Point', 'coordinates': [-75.48706, 42.964793]}",66.158418,29.777011898924187 | |
13428,42.915085999999995,-74.546249,1635,"{'type': 'Point', 'coordinates': [-74.546249, 42.915085999999995]}",41.169436,39.7139275845314 | |
13431,43.209081,-75.073326,2069,"{'type': 'Point', 'coordinates': [-75.073326, 43.209081]}",96.281965,21.488967326331572 | |
13433,43.594910999999996,-75.248869,1820,"{'type': 'Point', 'coordinates': [-75.248869, 43.594910999999996]}",114.963278,15.831142184376475 | |
13435,43.304981,-75.150772,286,"{'type': 'Point', 'coordinates': [-75.150772, 43.304981]}",0.539472,530.147996559599 | |
13436,43.811023,-74.666226,108,"{'type': 'Point', 'coordinates': [-74.666226, 43.811023]}",124.184076,0.8696767208703956 | |
13437,43.580319,-75.80383499999999,460,"{'type': 'Point', 'coordinates': [-75.80383499999999, 43.580319]}",250.294655,1.837833892217954 | |
13438,43.354138,-75.15961300000001,3789,"{'type': 'Point', 'coordinates': [-75.15961300000001, 43.354138]}",228.071367,16.613220895896152 | |
13439,42.857316,-74.995275,3950,"{'type': 'Point', 'coordinates': [-74.995275, 42.857316]}",224.422134,17.600759468760778 | |
13440,43.215771000000004,-75.461779,42986,"{'type': 'Point', 'coordinates': [-75.461779, 43.215771000000004]}",295.989703,145.22802504383066 | |
13441,43.226366,-75.40824,51,"{'type': 'Point', 'coordinates': [-75.40824, 43.226366]}",9.305982,5.480345867851453 | |
13450,42.701927000000005,-74.81029699999999,104,"{'type': 'Point', 'coordinates': [-74.81029699999999, 42.701927000000005]}",6.166732,16.864686190351716 | |
13452,43.043056,-74.63046999999999,4629,"{'type': 'Point', 'coordinates': [-74.63046999999999, 43.043056]}",199.713599,23.17819128581224 | |
13454,43.219834000000006,-74.757687,826,"{'type': 'Point', 'coordinates': [-74.757687, 43.219834000000006]}",112.231243,7.359804435205266 | |
13456,43.000029,-75.255495,4164,"{'type': 'Point', 'coordinates': [-75.255495, 43.000029]}",72.707009,57.27095719203633 | |
13459,42.775008,-74.588678,2222,"{'type': 'Point', 'coordinates': [-74.588678, 42.775008]}",132.217382,16.805657216840068 | |
13460,42.687707,-75.44229,4429,"{'type': 'Point', 'coordinates': [-75.44229, 42.687707]}",185.663416,23.854995752097977 | |
13461,43.070467,-75.599126,3083,"{'type': 'Point', 'coordinates': [-75.599126, 43.070467]}",6.004726,513.4289224853891 | |
13464,42.687973,-75.615788,1189,"{'type': 'Point', 'coordinates': [-75.615788, 42.687973]}",99.473871,11.952887608043321 | |
13468,42.84803,-74.851887,451,"{'type': 'Point', 'coordinates': [-74.851887, 42.84803]}",25.47208,17.705660472171886 | |
13469,43.214828000000004,-75.302367,847,"{'type': 'Point', 'coordinates': [-75.302367, 43.214828000000004]}",10.592413,79.96289419606278 | |
13470,43.209569,-74.609995,725,"{'type': 'Point', 'coordinates': [-74.609995, 43.209569]}",177.646568,4.08113710364503 | |
13471,43.3205,-75.683918,3540,"{'type': 'Point', 'coordinates': [-75.683918, 43.3205]}",243.990162,14.508781710633071 | |
13472,43.697410999999995,-75.067862,310,"{'type': 'Point', 'coordinates': [-75.067862, 43.697410999999995]}",38.512069,8.049424714107156 | |
13473,43.646449,-75.443434,766,"{'type': 'Point', 'coordinates': [-75.443434, 43.646449]}",119.923072,6.387428100574342 | |
13475,42.893741,-74.830529,28,"{'type': 'Point', 'coordinates': [-74.830529, 42.893741]}",0.03913,715.5635062611807 | |
13476,43.087503000000005,-75.509514,3032,"{'type': 'Point', 'coordinates': [-75.509514, 43.087503000000005]}",55.340012,54.78856780876737 | |
13477,43.032894,-75.512948,1452,"{'type': 'Point', 'coordinates': [-75.512948, 43.032894]}",52.448092,27.68451519647273 | |
13478,43.144012,-75.581897,3083,"{'type': 'Point', 'coordinates': [-75.581897, 43.144012]}",92.712043,33.253500842387865 | |
13480,42.917854,-75.363169,3532,"{'type': 'Point', 'coordinates': [-75.363169, 42.917854]}",139.674206,25.28741777848374 | |
13483,43.397335,-75.826061,256,"{'type': 'Point', 'coordinates': [-75.826061, 43.397335]}",18.134765,14.116532527441077 | |
13484,42.866325,-75.65919,176,"{'type': 'Point', 'coordinates': [-75.65919, 42.866325]}",6.604475,26.648598109615072 | |
13485,42.787528,-75.315224,1132,"{'type': 'Point', 'coordinates': [-75.315224, 42.787528]}",114.815,9.859338936550103 | |
13486,43.345147,-75.344599,815,"{'type': 'Point', 'coordinates': [-75.344599, 43.345147]}",85.251898,9.559904461012705 | |
13488,42.688638,-74.750589,98,"{'type': 'Point', 'coordinates': [-74.750589, 42.688638]}",10.876859,9.009954068541296 | |
13489,43.460774,-75.552463,658,"{'type': 'Point', 'coordinates': [-75.552463, 43.460774]}",111.893907,5.880570422838127 | |
13490,43.110079999999996,-75.426511,1361,"{'type': 'Point', 'coordinates': [-75.426511, 43.110079999999996]}",30.64674,44.40929116767395 | |
13491,42.864135,-75.168133,3641,"{'type': 'Point', 'coordinates': [-75.168133, 42.864135]}",187.509083,19.417726020237644 | |
13492,43.114604,-75.33768,11596,"{'type': 'Point', 'coordinates': [-75.33768, 43.114604]}",39.064588,296.8417329782155 | |
13493,43.432843,-75.897509,2070,"{'type': 'Point', 'coordinates': [-75.897509, 43.432843]}",202.560596,10.219164244560181 | |
13494,43.532529,-75.141288,314,"{'type': 'Point', 'coordinates': [-75.141288, 43.532529]}",46.406525,6.766289869797404 | |
13495,43.110890000000005,-75.277497,2144,"{'type': 'Point', 'coordinates': [-75.277497, 43.110890000000005]}",2.260353,948.5244118949563 | |
13501,43.081283,-75.225833,38546,"{'type': 'Point', 'coordinates': [-75.225833, 43.081283]}",22.811789,1689.7403355782399 | |
13502,43.141264,-75.154707,33257,"{'type': 'Point', 'coordinates': [-75.154707, 43.141264]}",140.329844,236.99164092279614 | |
13601,43.968892,-75.906501,38158,"{'type': 'Point', 'coordinates': [-75.906501, 43.968892]}",371.590905,102.68819684916669 | |
13602,44.064621,-75.781086,3881,"{'type': 'Point', 'coordinates': [-75.781086, 44.064621]}",25.892977,149.88620273366018 | |
13603,44.035973999999996,-75.793813,9760,"{'type': 'Point', 'coordinates': [-75.793813, 44.035973999999996]}",14.206187,687.0246041390276 | |
13605,43.80741,-76.050358,4777,"{'type': 'Point', 'coordinates': [-76.050358, 43.80741]}",210.649146,22.677518948973095 | |
13606,43.872576,-76.014735,2716,"{'type': 'Point', 'coordinates': [-76.014735, 43.872576]}",91.426363,29.706967562518045 | |
13607,44.298548,-75.936006,1822,"{'type': 'Point', 'coordinates': [-75.936006, 44.298548]}",46.740639,38.98106741758494 | |
13608,44.260940000000005,-75.613698,1719,"{'type': 'Point', 'coordinates': [-75.613698, 44.260940000000005]}",103.95778,16.535558954798766 | |
13612,43.985237,-75.76937,2852,"{'type': 'Point', 'coordinates': [-75.76937, 43.985237]}",46.49833,61.33553613645909 | |
13613,44.870613,-74.750443,2726,"{'type': 'Point', 'coordinates': [-74.750443, 44.870613]}",217.853716,12.51298371242839 | |
13614,44.530889,-75.69117,357,"{'type': 'Point', 'coordinates': [-75.69117, 44.530889]}",23.218345,15.375772907155959 | |
13615,44.047775,-75.98405699999999,1271,"{'type': 'Point', 'coordinates': [-75.98405699999999, 44.047775]}",9.95027,127.73522728528975 | |
13616,44.030078,-75.857573,1880,"{'type': 'Point', 'coordinates': [-75.857573, 44.030078]}",14.35341,130.97932825718766 | |
13617,44.580531,-75.142767,11299,"{'type': 'Point', 'coordinates': [-75.142767, 44.580531]}",333.548673,33.875116031416496 | |
13618,44.114765999999996,-76.290981,1711,"{'type': 'Point', 'coordinates': [-76.290981, 44.114765999999996]}",137.613469,12.433375980079392 | |
13619,43.978952,-75.600977,10901,"{'type': 'Point', 'coordinates': [-75.600977, 43.978952]}",287.097874,37.96962982735288 | |
13620,43.908782,-75.448325,2197,"{'type': 'Point', 'coordinates': [-75.448325, 43.908782]}",120.857322,18.178460052258977 | |
13621,44.834246,-75.080093,650,"{'type': 'Point', 'coordinates': [-75.080093, 44.834246]}",72.600212,8.953141899916215 | |
13622,44.100667,-76.106996,2432,"{'type': 'Point', 'coordinates': [-76.106996, 44.100667]}",154.283769,15.76316171016019 | |
13623,44.449785999999996,-75.752462,49,"{'type': 'Point', 'coordinates': [-75.752462, 44.449785999999996]}",1.026859,47.71833328626423 | |
13624,44.20948,-76.093055,5457,"{'type': 'Point', 'coordinates': [-76.093055, 44.20948]}",166.450934,32.78443604287616 | |
13625,44.538101,-74.928377,1868,"{'type': 'Point', 'coordinates': [-74.928377, 44.538101]}",146.505107,12.750408762201033 | |
13626,43.830086,-75.734774,2267,"{'type': 'Point', 'coordinates': [-75.734774, 43.830086]}",257.720602,8.796347604371963 | |
13628,44.030542,-75.68239399999999,220,"{'type': 'Point', 'coordinates': [-75.68239399999999, 44.030542]}",0.60225,365.29680365296804 | |
13630,44.498619,-75.311532,1525,"{'type': 'Point', 'coordinates': [-75.311532, 44.498619]}",125.337113,12.167186266688622 | |
13633,44.49743,-75.455993,345,"{'type': 'Point', 'coordinates': [-75.455993, 44.49743]}",53.478699,6.45116665983217 | |
13634,44.01129,-76.073698,3984,"{'type': 'Point', 'coordinates': [-76.073698, 44.01129]}",118.118368,33.72887779824388 | |
13635,44.286952,-75.281419,1092,"{'type': 'Point', 'coordinates': [-75.281419, 44.286952]}",146.02973,7.477929323022099 | |
13636,43.743443,-76.11655,282,"{'type': 'Point', 'coordinates': [-76.11655, 43.743443]}",8.309418,33.93739489336076 | |
13637,44.106202,-75.818322,4491,"{'type': 'Point', 'coordinates': [-75.818322, 44.106202]}",91.29095,49.194361544052285 | |
13638,44.019071999999994,-75.741692,378,"{'type': 'Point', 'coordinates': [-75.741692, 44.019071999999994]}",3.392806,111.41220570819551 | |
13639,44.263676000000004,-75.150529,243,"{'type': 'Point', 'coordinates': [-75.150529, 44.263676000000004]}",50.804686,4.783023361270258 | |
13640,44.365103000000005,-75.91548900000001,271,"{'type': 'Point', 'coordinates': [-75.91548900000001, 44.365103000000005]}",32.68828,8.290433146069478 | |
13641,44.273801,-76.003351,91,"{'type': 'Point', 'coordinates': [-76.003351, 44.273801]}",0.8131,111.91735333907268 | |
13642,44.335388,-75.45587900000001,10088,"{'type': 'Point', 'coordinates': [-75.45587900000001, 44.335388]}",478.791733,21.06970380793939 | |
13643,44.031812,-75.71709399999999,19,"{'type': 'Point', 'coordinates': [-75.71709399999999, 44.031812]}",0.093794,202.57159306565453 | |
13646,44.446082000000004,-75.674198,2211,"{'type': 'Point', 'coordinates': [-75.674198, 44.446082000000004]}",304.39612,7.263561703743136 | |
13647,44.605875,-74.98058,69,"{'type': 'Point', 'coordinates': [-74.98058, 44.605875]}",0.236491,291.765860011586 | |
13648,44.150217,-75.318,2424,"{'type': 'Point', 'coordinates': [-75.318, 44.150217]}",487.26439,4.974711983364925 | |
13650,43.81131,-76.21609699999999,1391,"{'type': 'Point', 'coordinates': [-76.21609699999999, 43.81131]}",112.842702,12.32689376757391 | |
13651,43.866158,-76.17696600000001,127,"{'type': 'Point', 'coordinates': [-76.17696600000001, 43.866158]}",6.86373,18.503058832442417 | |
13652,44.432660999999996,-75.186773,1815,"{'type': 'Point', 'coordinates': [-75.186773, 44.432660999999996]}",174.359307,10.409538964272208 | |
13654,44.577138,-75.436852,2461,"{'type': 'Point', 'coordinates': [-75.436852, 44.577138]}",182.646862,13.474088593977596 | |
13655,44.981859,-74.65015,3512,"{'type': 'Point', 'coordinates': [-74.65015, 44.981859]}",58.199515,60.34414547956285 | |
13656,44.192383,-75.955933,2861,"{'type': 'Point', 'coordinates': [-75.955933, 44.192383]}",221.906126,12.89283919994169 | |
13658,44.747782,-75.271203,2357,"{'type': 'Point', 'coordinates': [-75.271203, 44.747782]}",204.11987,11.5471364938651 | |
13659,43.738005,-75.86338,593,"{'type': 'Point', 'coordinates': [-75.86338, 43.738005]}",147.401877,4.023015256447514 | |
13660,44.773868,-75.160958,1891,"{'type': 'Point', 'coordinates': [-75.160958, 44.773868]}",140.726801,13.437383544304401 | |
13661,43.70962,-76.098396,1646,"{'type': 'Point', 'coordinates': [-76.098396, 43.70962]}",130.830352,12.58117841034319 | |
13662,44.932334000000004,-74.883932,16582,"{'type': 'Point', 'coordinates': [-74.883932, 44.932334000000004]}",246.445288,67.28471107956423 | |
13664,44.584013,-75.64546,399,"{'type': 'Point', 'coordinates': [-75.64546, 44.584013]}",2.651369,150.48829491481573 | |
13665,44.04846,-75.434366,882,"{'type': 'Point', 'coordinates': [-75.434366, 44.04846]}",112.813246,7.818230848529967 | |
13666,44.218485,-74.926076,266,"{'type': 'Point', 'coordinates': [-74.926076, 44.218485]}",110.234121,2.413045956977332 | |
13667,44.837267,-74.96009699999999,3181,"{'type': 'Point', 'coordinates': [-74.96009699999999, 44.837267]}",129.547433,24.55471271283314 | |
13668,44.75482,-74.986306,3329,"{'type': 'Point', 'coordinates': [-74.986306, 44.75482]}",98.343998,33.85056605081278 | |
13669,44.672777,-75.482342,16452,"{'type': 'Point', 'coordinates': [-75.482342, 44.672777]}",269.283974,61.095355047010706 | |
13670,44.167379,-75.11673499999999,430,"{'type': 'Point', 'coordinates': [-75.11673499999999, 44.167379]}",191.090165,2.2502466309556013 | |
13672,44.470543,-74.660706,602,"{'type': 'Point', 'coordinates': [-74.660706, 44.470543]}",327.412076,1.8386615648226732 | |
13673,44.164347,-75.718028,2249,"{'type': 'Point', 'coordinates': [-75.718028, 44.164347]}",90.433901,24.868992436807517 | |
13674,43.738561,-76.04818,126,"{'type': 'Point', 'coordinates': [-76.04818, 43.738561]}",1.520836,82.84916979871596 | |
13675,44.281718,-75.84628599999999,160,"{'type': 'Point', 'coordinates': [-75.84628599999999, 44.281718]}",3.158302,50.660133198155215 | |
13676,44.654959999999996,-74.926222,16646,"{'type': 'Point', 'coordinates': [-74.926222, 44.654959999999996]}",416.944017,39.923825073139255 | |
13677,44.512429,-75.179673,93,"{'type': 'Point', 'coordinates': [-75.179673, 44.512429]}",0.589109,157.8655223396689 | |
13678,44.813765999999994,-74.992918,211,"{'type': 'Point', 'coordinates': [-74.992918, 44.813765999999994]}",2.134131,98.8692821574683 | |
13679,44.319891,-75.770605,1853,"{'type': 'Point', 'coordinates': [-75.770605, 44.319891]}",174.874887,10.596146947045632 | |
13680,44.595988,-75.323398,1244,"{'type': 'Point', 'coordinates': [-75.323398, 44.595988]}",91.900229,13.536418935365221 | |
13681,44.428053999999996,-75.37315100000001,897,"{'type': 'Point', 'coordinates': [-75.37315100000001, 44.428053999999996]}",88.365561,10.151013470055377 | |
13682,43.843312,-75.901905,877,"{'type': 'Point', 'coordinates': [-75.901905, 43.843312]}",81.307104,10.786265367414883 | |
13684,44.356596,-75.013141,1131,"{'type': 'Point', 'coordinates': [-75.013141, 44.356596]}",411.975177,2.745311036057884 | |
13685,43.941023,-76.147059,2272,"{'type': 'Point', 'coordinates': [-76.147059, 43.941023]}",58.216695,39.02660568415985 | |
13687,44.439018,-74.838177,479,"{'type': 'Point', 'coordinates': [-74.838177, 44.439018]}",373.476365,1.2825443452091005 | |
13690,44.097456,-75.007653,846,"{'type': 'Point', 'coordinates': [-75.007653, 44.097456]}",135.931389,6.2237280603378515 | |
13691,44.231562,-75.770537,3176,"{'type': 'Point', 'coordinates': [-75.770537, 44.231562]}",195.787469,16.22167146968941 | |
13692,44.288793,-76.026292,27,"{'type': 'Point', 'coordinates': [-76.026292, 44.288793]}",0.706798,38.20044765265323 | |
13693,43.985746999999996,-76.246105,503,"{'type': 'Point', 'coordinates': [-76.246105, 43.985746999999996]}",54.490036,9.2310454704049 | |
13694,44.868927,-75.134242,1507,"{'type': 'Point', 'coordinates': [-75.134242, 44.868927]}",59.240826,25.43853794341085 | |
13695,44.102928999999996,-74.922258,134,"{'type': 'Point', 'coordinates': [-74.922258, 44.102928999999996]}",44.896393,2.98464956861902 | |
13696,44.694741,-74.888048,87,"{'type': 'Point', 'coordinates': [-74.888048, 44.694741]}",4.822424,18.04071977080406 | |
13697,44.754714,-74.810347,2281,"{'type': 'Point', 'coordinates': [-74.810347, 44.754714]}",170.689736,13.363428015378734 | |
13730,42.223737,-75.532187,2805,"{'type': 'Point', 'coordinates': [-75.532187, 42.223737]}",128.483198,21.831648368528313 | |
13731,42.12963,-74.78780400000001,1162,"{'type': 'Point', 'coordinates': [-74.78780400000001, 42.12963]}",240.038001,4.840900170635899 | |
13732,42.049447,-76.167535,8153,"{'type': 'Point', 'coordinates': [-76.167535, 42.049447]}",87.437824,93.24340001873787 | |
13733,42.301697,-75.478883,5216,"{'type': 'Point', 'coordinates': [-75.478883, 42.301697]}",236.697315,22.03658288223506 | |
13734,42.069955,-76.409653,2287,"{'type': 'Point', 'coordinates': [-76.409653, 42.069955]}",95.222981,24.017311535332 | |
13736,42.324084,-76.202038,2338,"{'type': 'Point', 'coordinates': [-76.202038, 42.324084]}",157.212028,14.871635648641336 | |
13739,42.349123999999996,-74.789149,953,"{'type': 'Point', 'coordinates': [-74.789149, 42.349123999999996]}",104.470812,9.122165145993122 | |
13740,42.273812,-74.756997,554,"{'type': 'Point', 'coordinates': [-74.756997, 42.273812]}",102.611169,5.399022400768088 | |
13743,42.211894,-76.338222,3806,"{'type': 'Point', 'coordinates': [-76.338222, 42.211894]}",152.33832,24.983864860791428 | |
13744,42.243494,-75.907999,1137,"{'type': 'Point', 'coordinates': [-75.907999, 42.243494]}",30.019936,37.87483091236437 | |
13746,42.284194,-75.743963,2539,"{'type': 'Point', 'coordinates': [-75.743963, 42.284194]}",73.084808,34.740462067027664 | |
13748,42.042578999999996,-75.822521,3800,"{'type': 'Point', 'coordinates': [-75.822521, 42.042578999999996]}",35.376242,107.41672334783328 | |
13750,42.471013,-74.857905,1092,"{'type': 'Point', 'coordinates': [-74.857905, 42.471013]}",70.181317,15.559696607004396 | |
13751,42.454448,-74.901809,189,"{'type': 'Point', 'coordinates': [-74.901809, 42.454448]}",5.183427,36.462363606162484 | |
13752,42.190535,-74.896999,782,"{'type': 'Point', 'coordinates': [-74.896999, 42.190535]}",129.368768,6.044735619651259 | |
13753,42.30696,-74.92691500000001,5848,"{'type': 'Point', 'coordinates': [-74.92691500000001, 42.30696]}",244.381419,23.929806218205158 | |
13754,42.088460999999995,-75.447935,3310,"{'type': 'Point', 'coordinates': [-75.447935, 42.088460999999995]}",209.94232,15.766235221178846 | |
13755,42.055240999999995,-74.96692,1228,"{'type': 'Point', 'coordinates': [-74.96692, 42.055240999999995]}",158.540352,7.745662126447152 | |
13756,42.004099,-75.10067,613,"{'type': 'Point', 'coordinates': [-75.10067, 42.004099]}",120.36043,5.09303597536167 | |
13757,42.410607,-74.89122900000001,1045,"{'type': 'Point', 'coordinates': [-74.89122900000001, 42.410607]}",96.550925,10.82330386788112 | |
13760,42.133332,-76.084622,44264,"{'type': 'Point', 'coordinates': [-76.084622, 42.133332]}",128.54618,344.3431769034288 | |
13774,41.960118,-75.149385,201,"{'type': 'Point', 'coordinates': [-75.149385, 41.960118]}",7.807142,25.74565698945914 | |
13775,42.327909000000005,-75.134022,1631,"{'type': 'Point', 'coordinates': [-75.134022, 42.327909000000005]}",138.336549,11.790087375968877 | |
13776,42.470423,-75.331951,513,"{'type': 'Point', 'coordinates': [-75.331951, 42.470423]}",14.725408,34.83774439390746 | |
13777,42.258165999999996,-75.989587,727,"{'type': 'Point', 'coordinates': [-75.989587, 42.258165999999996]}",15.58914,46.63502925754724 | |
13778,42.359214,-75.759499,5948,"{'type': 'Point', 'coordinates': [-75.759499, 42.359214]}",252.198937,23.584556187086545 | |
13780,42.422484999999995,-75.47658299999999,1045,"{'type': 'Point', 'coordinates': [-75.47658299999999, 42.422484999999995]}",57.982451,18.022694487337212 | |
13782,42.170115,-74.991251,755,"{'type': 'Point', 'coordinates': [-74.991251, 42.170115]}",95.324825,7.920287291374518 | |
13783,41.993662,-75.266006,2670,"{'type': 'Point', 'coordinates': [-75.266006, 41.993662]}",309.105097,8.637838799532963 | |
13784,42.426878,-76.221343,172,"{'type': 'Point', 'coordinates': [-76.221343, 42.426878]}",1.211396,141.9849495953429 | |
13786,42.440979999999996,-74.69394100000001,464,"{'type': 'Point', 'coordinates': [-74.69394100000001, 42.440979999999996]}",40.390887,11.48773979635555 | |
13787,42.212626,-75.671948,3629,"{'type': 'Point', 'coordinates': [-75.671948, 42.212626]}",166.029068,21.85761832982162 | |
13788,42.339007,-74.666257,991,"{'type': 'Point', 'coordinates': [-74.666257, 42.339007]}",91.594141,10.819469337017965 | |
13790,42.165361,-76.001942,19104,"{'type': 'Point', 'coordinates': [-76.001942, 42.165361]}",75.744867,252.21511049719052 | |
13794,42.393238000000004,-76.01371999999999,105,"{'type': 'Point', 'coordinates': [-76.01371999999999, 42.393238000000004]}",1.858465,56.49823913821353 | |
13795,42.056638,-75.778938,3800,"{'type': 'Point', 'coordinates': [-75.778938, 42.056638]}",53.616676,70.87347227567781 | |
13796,42.557188000000004,-75.13213,1236,"{'type': 'Point', 'coordinates': [-75.13213, 42.557188000000004]}",58.197389,21.238066195718847 | |
13797,42.333665,-76.040401,2250,"{'type': 'Point', 'coordinates': [-76.040401, 42.333665]}",86.527058,26.003426581312866 | |
13801,42.505085,-75.77696999999999,1398,"{'type': 'Point', 'coordinates': [-75.77696999999999, 42.505085]}",178.896201,7.814587409824315 | |
13802,42.242134,-76.04126600000001,718,"{'type': 'Point', 'coordinates': [-76.04126600000001, 42.242134]}",26.098725,27.51092246843476 | |
13803,42.456883000000005,-76.06712399999999,3975,"{'type': 'Point', 'coordinates': [-76.06712399999999, 42.456883000000005]}",233.098325,17.052889590690967 | |
13804,42.225722,-75.384222,391,"{'type': 'Point', 'coordinates': [-75.384222, 42.225722]}",39.439397,9.913944678210978 | |
13806,42.379101,-74.957234,205,"{'type': 'Point', 'coordinates': [-74.957234, 42.379101]}",8.025067,25.54495806701676 | |
13807,42.60747,-74.988238,1199,"{'type': 'Point', 'coordinates': [-74.988238, 42.60747]}",62.661043,19.134695858796988 | |
13808,42.525233,-75.2622,1771,"{'type': 'Point', 'coordinates': [-75.2622, 42.525233]}",95.481758,18.5480455858385 | |
13809,42.403814000000004,-75.39554100000001,1517,"{'type': 'Point', 'coordinates': [-75.39554100000001, 42.403814000000004]}",77.899698,19.473759705717985 | |
13810,42.606817,-75.108363,1149,"{'type': 'Point', 'coordinates': [-75.108363, 42.606817]}",104.146923,11.032491089535117 | |
13811,42.234926,-76.16405400000001,4354,"{'type': 'Point', 'coordinates': [-76.16405400000001, 42.234926]}",164.586624,26.454154621945463 | |
13812,42.03006,-76.354752,2348,"{'type': 'Point', 'coordinates': [-76.354752, 42.03006]}",84.198764,27.886395101951855 | |
13813,42.163707,-75.551328,977,"{'type': 'Point', 'coordinates': [-75.551328, 42.163707]}",73.868685,13.226172903984956 | |
13815,42.547866,-75.530855,13999,"{'type': 'Point', 'coordinates': [-75.530855, 42.547866]}",279.300078,50.12171890621527 | |
13820,42.483456,-75.036874,22455,"{'type': 'Point', 'coordinates': [-75.036874, 42.483456]}",279.047172,80.47026543598156 | |
13825,42.435577,-75.204553,3442,"{'type': 'Point', 'coordinates': [-75.204553, 42.435577]}",146.941275,23.424323764714853 | |
13826,42.09982,-75.638796,58,"{'type': 'Point', 'coordinates': [-75.638796, 42.09982]}",2.804896,20.67812852954263 | |
13827,42.117827,-76.249166,11759,"{'type': 'Point', 'coordinates': [-76.249166, 42.117827]}",239.360991,49.12663484084589 | |
13830,42.437694,-75.62735699999999,5042,"{'type': 'Point', 'coordinates': [-75.62735699999999, 42.437694]}",288.214324,17.49392580502002 | |
13832,42.65813,-75.672216,709,"{'type': 'Point', 'coordinates': [-75.672216, 42.65813]}",71.941281,9.85525959705944 | |
13833,42.198205,-75.768632,4255,"{'type': 'Point', 'coordinates': [-75.768632, 42.198205]}",92.939059,45.782688632558674 | |
13834,42.530981,-74.96589499999999,118,"{'type': 'Point', 'coordinates': [-74.96589499999999, 42.530981]}",1.008298,117.02889423563273 | |
13835,42.383214,-76.178996,1511,"{'type': 'Point', 'coordinates': [-76.178996, 42.383214]}",109.427881,13.808181116108791 | |
13838,42.285099,-75.388127,4409,"{'type': 'Point', 'coordinates': [-75.388127, 42.285099]}",27.123314,162.55388261183717 | |
13839,42.262039,-75.252051,1405,"{'type': 'Point', 'coordinates': [-75.252051, 42.262039]}",103.36563,13.592525871510675 | |
13841,42.40699,-75.842161,529,"{'type': 'Point', 'coordinates': [-75.842161, 42.40699]}",31.986056,16.5384566324776 | |
13842,42.3767,-74.723609,695,"{'type': 'Point', 'coordinates': [-74.723609, 42.3767]}",32.703979,21.25123673789052 | |
13843,42.503033,-75.382469,1888,"{'type': 'Point', 'coordinates': [-75.382469, 42.503033]}",141.140888,13.376704842610883 | |
13844,42.608179,-75.668317,724,"{'type': 'Point', 'coordinates': [-75.668317, 42.608179]}",62.24236,11.631949688283028 | |
13845,42.053430999999996,-76.354924,83,"{'type': 'Point', 'coordinates': [-76.354924, 42.053430999999996]}",1.01363,81.88392214121524 | |
13846,42.363766,-75.054796,305,"{'type': 'Point', 'coordinates': [-75.054796, 42.363766]}",21.145474,14.423890426859195 | |
13847,42.186088,-75.291016,67,"{'type': 'Point', 'coordinates': [-75.291016, 42.186088]}",8.502192,7.880320745520684 | |
13849,42.350096,-75.30931700000001,4551,"{'type': 'Point', 'coordinates': [-75.30931700000001, 42.350096]}",173.048762,26.29894572721647 | |
13850,42.049395000000004,-76.01759399999999,22004,"{'type': 'Point', 'coordinates': [-76.01759399999999, 42.049395000000004]}",134.679179,163.38085933832429 | |
13856,42.171040999999995,-75.183316,6596,"{'type': 'Point', 'coordinates': [-75.183316, 42.171040999999995]}",491.424953,13.422191851946923 | |
13859,42.372464,-75.245243,182,"{'type': 'Point', 'coordinates': [-75.245243, 42.372464]}",1.321042,137.77003304966837 | |
13860,42.453131,-74.93297199999999,94,"{'type': 'Point', 'coordinates': [-74.93297199999999, 42.453131]}",2.377952,39.52981389027197 | |
13861,42.50854,-75.151092,432,"{'type': 'Point', 'coordinates': [-75.151092, 42.50854]}",11.464961,37.680023508148 | |
13862,42.330958,-75.93100799999999,4189,"{'type': 'Point', 'coordinates': [-75.93100799999999, 42.330958]}",151.987735,27.561434480223028 | |
13863,42.455495,-75.898915,688,"{'type': 'Point', 'coordinates': [-75.898915, 42.455495]}",39.822846,17.276515093873503 | |
13864,42.27176,-76.38855699999999,1149,"{'type': 'Point', 'coordinates': [-76.38855699999999, 42.27176]}",69.039058,16.642753149963315 | |
13865,42.069617,-75.637731,6371,"{'type': 'Point', 'coordinates': [-75.637731, 42.069617]}",288.979947,22.04651245229829 | |
13901,42.183203000000006,-75.876048,19773,"{'type': 'Point', 'coordinates': [-75.876048, 42.183203000000006]}",62.387507,316.93845371958844 | |
13902,42.088824,-75.96888299999999,6177,"{'type': 'Point', 'coordinates': [-75.96888299999999, 42.088824]}",1.844246,3349.336259913265 | |
13903,42.04187,-75.889077,18763,"{'type': 'Point', 'coordinates': [-75.889077, 42.04187]}",103.811874,180.7404035495978 | |
13904,42.134122999999995,-75.820206,9579,"{'type': 'Point', 'coordinates': [-75.820206, 42.134122999999995]}",60.339745,158.75108520925966 | |
13905,42.170435999999995,-75.943434,28026,"{'type': 'Point', 'coordinates': [-75.943434, 42.170435999999995]}",70.685796,396.4870113367614 | |
14001,43.036573,-78.51083100000001,9464,"{'type': 'Point', 'coordinates': [-78.51083100000001, 43.036573]}",171.131364,55.302545242378834 | |
14004,42.891371,-78.503687,12704,"{'type': 'Point', 'coordinates': [-78.503687, 42.891371]}",124.997845,101.63375216588734 | |
14005,42.920586,-78.250065,1986,"{'type': 'Point', 'coordinates': [-78.250065, 42.920586]}",86.840788,22.869437803811728 | |
14006,42.63313,-79.021745,9858,"{'type': 'Point', 'coordinates': [-79.021745, 42.63313]}",68.439495,144.03963676236947 | |
14008,43.312726,-78.623166,1467,"{'type': 'Point', 'coordinates': [-78.623166, 43.312726]}",65.551613,22.37931200869153 | |
14009,42.593154,-78.39746099999999,5672,"{'type': 'Point', 'coordinates': [-78.39746099999999, 42.593154]}",192.524462,29.461191274488538 | |
14011,42.830674,-78.299709,9822,"{'type': 'Point', 'coordinates': [-78.299709, 42.830674]}",173.268006,56.686749197079116 | |
14012,43.332173,-78.532622,2362,"{'type': 'Point', 'coordinates': [-78.532622, 43.332173]}",86.530947,27.2965925127342 | |
14013,43.086290000000005,-78.397746,1751,"{'type': 'Point', 'coordinates': [-78.397746, 43.086290000000005]}",105.83165,16.545145048763768 | |
14020,42.996190000000006,-78.213412,23306,"{'type': 'Point', 'coordinates': [-78.213412, 42.996190000000006]}",179.921298,129.5344145416292 | |
14024,42.581363,-78.245468,1688,"{'type': 'Point', 'coordinates': [-78.245468, 42.581363]}",164.7853,10.24363216864611 | |
14025,42.622205,-78.727032,3039,"{'type': 'Point', 'coordinates': [-78.727032, 42.622205]}",57.9984,52.397997186129274 | |
14026,42.942356,-78.687965,674,"{'type': 'Point', 'coordinates': [-78.687965, 42.942356]}",1.961968,343.53261623023417 | |
14028,43.31804,-78.717617,1595,"{'type': 'Point', 'coordinates': [-78.717617, 43.31804]}",36.385885,43.8356796873293 | |
14030,42.564386,-78.50762399999999,1807,"{'type': 'Point', 'coordinates': [-78.50762399999999, 42.564386]}",52.012779,34.7414622856433 | |
14031,42.983128,-78.61425799999999,9392,"{'type': 'Point', 'coordinates': [-78.61425799999999, 42.983128]}",49.072317,191.39100360800165 | |
14032,43.046727000000004,-78.630777,7989,"{'type': 'Point', 'coordinates': [-78.630777, 43.046727000000004]}",60.098059,132.93274579799657 | |
14033,42.654382,-78.69212399999999,2219,"{'type': 'Point', 'coordinates': [-78.69212399999999, 42.654382]}",44.820018,49.509127818734925 | |
14034,42.500569,-78.865375,2742,"{'type': 'Point', 'coordinates': [-78.865375, 42.500569]}",66.536606,41.21039777712737 | |
14035,42.490778000000006,-78.848389,125,"{'type': 'Point', 'coordinates': [-78.848389, 42.490778000000006]}",0.591781,211.226788288235 | |
14036,42.973851,-78.389527,5201,"{'type': 'Point', 'coordinates': [-78.389527, 42.973851]}",140.804862,36.93764495149322 | |
14037,42.802789000000004,-78.453328,1166,"{'type': 'Point', 'coordinates': [-78.453328, 42.802789000000004]}",44.84588,26.000158765978057 | |
14039,42.85148,-78.173096,101,"{'type': 'Point', 'coordinates': [-78.173096, 42.85148]}",4.838845,20.872749592103073 | |
14040,42.890873,-78.376631,2217,"{'type': 'Point', 'coordinates': [-78.376631, 42.890873]}",76.194978,29.09640580249265 | |
14041,42.398835,-78.971581,237,"{'type': 'Point', 'coordinates': [-78.971581, 42.398835]}",6.004924,39.46761024785659 | |
14042,42.475564,-78.488807,3969,"{'type': 'Point', 'coordinates': [-78.488807, 42.475564]}",118.856003,33.393349093188 | |
14043,42.90197,-78.703422,24742,"{'type': 'Point', 'coordinates': [-78.703422, 42.90197]}",22.51342,1098.9889585855904 | |
14047,42.687367,-78.986636,6440,"{'type': 'Point', 'coordinates': [-78.986636, 42.687367]}",36.530683,176.29016134190536 | |
14048,42.484359000000005,-79.31700500000001,15072,"{'type': 'Point', 'coordinates': [-79.31700500000001, 42.484359000000005]}",79.305967,190.048751312748 | |
14051,43.042842,-78.699413,19533,"{'type': 'Point', 'coordinates': [-78.699413, 43.042842]}",42.490756,459.69998745138827 | |
14052,42.772531,-78.584321,17329,"{'type': 'Point', 'coordinates': [-78.584321, 42.772531]}",160.682851,107.8459828921009 | |
14054,42.919587,-78.126802,1344,"{'type': 'Point', 'coordinates': [-78.126802, 42.919587]}",64.443934,20.855337602449907 | |
14055,42.56288,-78.600125,1405,"{'type': 'Point', 'coordinates': [-78.600125, 42.56288]}",83.839278,16.758255003102484 | |
14057,42.646574,-78.874782,8116,"{'type': 'Point', 'coordinates': [-78.874782, 42.646574]}",124.99975,64.92812985625972 | |
14058,43.102049,-78.16885699999999,2285,"{'type': 'Point', 'coordinates': [-78.16885699999999, 43.102049]}",103.278686,22.124603715426822 | |
14059,42.833552000000005,-78.634046,8933,"{'type': 'Point', 'coordinates': [-78.634046, 42.833552000000005]}",69.78876,128.00055481713676 | |
14060,42.450155,-78.296467,443,"{'type': 'Point', 'coordinates': [-78.296467, 42.450155]}",46.333774,9.561060145888398 | |
14061,42.593878000000004,-79.079302,349,"{'type': 'Point', 'coordinates': [-79.079302, 42.593878000000004]}",2.481143,140.6609776220073 | |
14062,42.438404,-79.143107,3329,"{'type': 'Point', 'coordinates': [-79.143107, 42.438404]}",188.157594,17.69261569107862 | |
14063,42.40869,-79.331304,14870,"{'type': 'Point', 'coordinates': [-79.331304, 42.40869]}",131.377851,113.18498427866658 | |
14065,42.484905,-78.312811,1896,"{'type': 'Point', 'coordinates': [-78.312811, 42.484905]}",96.876649,19.57127976216436 | |
14066,42.629054,-78.185536,1318,"{'type': 'Point', 'coordinates': [-78.185536, 42.629054]}",105.025523,12.549330508927815 | |
14067,43.213204,-78.568403,5040,"{'type': 'Point', 'coordinates': [-78.568403, 43.213204]}",128.480169,39.22784379276463 | |
14068,43.027387,-78.75666600000001,7150,"{'type': 'Point', 'coordinates': [-78.75666600000001, 43.027387]}",9.017829,792.8737615228675 | |
14069,42.615234,-78.642935,844,"{'type': 'Point', 'coordinates': [-78.642935, 42.615234]}",22.086549,38.21330349073547 | |
14070,42.419658,-78.917725,6732,"{'type': 'Point', 'coordinates': [-78.917725, 42.419658]}",133.227387,50.53015113176392 | |
14072,43.017901,-78.962657,20374,"{'type': 'Point', 'coordinates': [-78.962657, 43.017901]}",73.431809,277.45469269318966 | |
14075,42.712657,-78.83470799999999,41937,"{'type': 'Point', 'coordinates': [-78.83470799999999, 42.712657]}",103.214781,406.3080848856328 | |
14080,42.648324,-78.54830799999999,4330,"{'type': 'Point', 'coordinates': [-78.54830799999999, 42.648324]}",137.11034,31.58040451216152 | |
14081,42.563203,-79.06783399999999,3095,"{'type': 'Point', 'coordinates': [-79.06783399999999, 42.563203]}",93.425373,33.12804541866801 | |
14082,42.656563,-78.385184,426,"{'type': 'Point', 'coordinates': [-78.385184, 42.656563]}",26.004975,16.38148085126019 | |
14085,42.714293,-78.92766999999999,7353,"{'type': 'Point', 'coordinates': [-78.92766999999999, 42.714293]}",18.910277,388.836186799379 | |
14086,42.909064,-78.62926800000001,31847,"{'type': 'Point', 'coordinates': [-78.62926800000001, 42.909064]}",88.368893,360.3869972661081 | |
14091,42.538233,-78.893008,1079,"{'type': 'Point', 'coordinates': [-78.893008, 42.538233]}",55.086485,19.58738155102835 | |
14092,43.17322,-78.993074,11086,"{'type': 'Point', 'coordinates': [-78.993074, 43.17322]}",51.059467,217.11938356113276 | |
14094,43.157758,-78.701995,50666,"{'type': 'Point', 'coordinates': [-78.701995, 43.157758]}",316.3986,160.13345191792885 | |
14098,43.334373,-78.380616,2958,"{'type': 'Point', 'coordinates': [-78.380616, 43.334373]}",119.284901,24.797773860750404 | |
14101,42.392651,-78.538203,1905,"{'type': 'Point', 'coordinates': [-78.538203, 42.392651]}",111.444228,17.093752042501475 | |
14102,42.837026,-78.557725,1281,"{'type': 'Point', 'coordinates': [-78.557725, 42.837026]}",9.88951,129.53119011963182 | |
14103,43.211161,-78.37677,11183,"{'type': 'Point', 'coordinates': [-78.37677, 43.211161]}",208.349956,53.674117406581075 | |
14105,43.199166,-78.483903,4566,"{'type': 'Point', 'coordinates': [-78.483903, 43.199166]}",122.693857,37.214577091663195 | |
14108,43.263343,-78.72695,5882,"{'type': 'Point', 'coordinates': [-78.72695, 43.263343]}",70.163126,83.83320891375335 | |
14109,43.137952,-79.034134,1117,"{'type': 'Point', 'coordinates': [-79.034134, 43.137952]}",1.229167,908.7455162724025 | |
14111,42.580255,-78.904691,3352,"{'type': 'Point', 'coordinates': [-78.904691, 42.580255]}",93.879837,35.70521751118933 | |
14112,42.697963,-78.939953,85,"{'type': 'Point', 'coordinates': [-78.939953, 42.697963]}",0.103462,821.5576733486691 | |
14113,42.671576,-78.339931,703,"{'type': 'Point', 'coordinates': [-78.339931, 42.671576]}",44.083419,15.947038953580257 | |
14120,43.079196,-78.84275600000001,45100,"{'type': 'Point', 'coordinates': [-78.84275600000001, 43.079196]}",86.136827,523.5855739148599 | |
14125,43.084919,-78.274609,3782,"{'type': 'Point', 'coordinates': [-78.274609, 43.084919]}",92.84111,40.73626435530553 | |
14126,43.335882,-78.728636,588,"{'type': 'Point', 'coordinates': [-78.728636, 43.335882]}",2.359169,249.24030453095983 | |
14127,42.752803,-78.73969699999999,29961,"{'type': 'Point', 'coordinates': [-78.73969699999999, 42.752803]}",106.728621,280.7213259131306 | |
14129,42.481182000000004,-79.01738399999999,1591,"{'type': 'Point', 'coordinates': [-79.01738399999999, 42.481182000000004]}",80.823321,19.684912477179697 | |
14130,42.555981,-78.14765200000001,265,"{'type': 'Point', 'coordinates': [-78.14765200000001, 42.555981]}",2.820682,93.94891022809377 | |
14131,43.238603000000005,-78.899823,5283,"{'type': 'Point', 'coordinates': [-78.899823, 43.238603000000005]}",111.365683,47.43831185411039 | |
14132,43.14933,-78.877732,6218,"{'type': 'Point', 'coordinates': [-78.877732, 43.14933]}",72.723602,85.50181549038234 | |
14134,42.527685999999996,-78.523981,104,"{'type': 'Point', 'coordinates': [-78.523981, 42.527685999999996]}",2.198365,47.30788563318649 | |
14135,42.487694,-79.2409,119,"{'type': 'Point', 'coordinates': [-79.2409, 42.487694]}",2.676216,44.46576808448944 | |
14136,42.517379,-79.174812,5033,"{'type': 'Point', 'coordinates': [-79.174812, 42.517379]}",70.855627,71.03176152826931 | |
14138,42.379512,-79.03665600000001,2018,"{'type': 'Point', 'coordinates': [-79.03665600000001, 42.379512]}",122.58698,16.461780851441155 | |
14139,42.718405,-78.541402,2125,"{'type': 'Point', 'coordinates': [-78.541402, 42.718405]}",61.875004,34.343432123252875 | |
14141,42.524967,-78.712076,7728,"{'type': 'Point', 'coordinates': [-78.712076, 42.524967]}",183.009958,42.227210390376676 | |
14143,42.972268,-78.064247,1214,"{'type': 'Point', 'coordinates': [-78.064247, 42.972268]}",37.58097,32.30358343597837 | |
14145,42.729606,-78.43432800000001,1618,"{'type': 'Point', 'coordinates': [-78.43432800000001, 42.729606]}",72.928255,22.186188329886683 | |
14150,42.998084000000006,-78.87825600000001,41676,"{'type': 'Point', 'coordinates': [-78.87825600000001, 42.998084000000006]}",38.877561,1071.9808271923232 | |
14167,42.74841,-78.323002,1663,"{'type': 'Point', 'coordinates': [-78.323002, 42.74841]}",97.571195,17.04396466600619 | |
14168,42.520385,-78.99054100000001,36,"{'type': 'Point', 'coordinates': [-78.99054100000001, 42.520385]}",0.102648,350.71311667056347 | |
14169,42.766144,-78.523698,151,"{'type': 'Point', 'coordinates': [-78.523698, 42.766144]}",0.798188,189.17848927821515 | |
14170,42.700245,-78.674307,2286,"{'type': 'Point', 'coordinates': [-78.674307, 42.700245]}",32.062767,71.29765188388139 | |
14171,42.424673999999996,-78.64983199999999,2077,"{'type': 'Point', 'coordinates': [-78.64983199999999, 42.424673999999996]}",132.510453,15.674235148830107 | |
14172,43.272672,-78.812943,3200,"{'type': 'Point', 'coordinates': [-78.812943, 43.272672]}",69.117724,46.29782080208544 | |
14173,42.525971000000006,-78.473102,396,"{'type': 'Point', 'coordinates': [-78.473102, 42.525971000000006]}",1.49923,264.13558960266266 | |
14174,43.249139,-78.998325,5794,"{'type': 'Point', 'coordinates': [-78.998325, 43.249139]}",71.771251,80.7287029175512 | |
14201,42.89606,-78.886424,11549,"{'type': 'Point', 'coordinates': [-78.886424, 42.89606]}",2.812101,4106.893742436704 | |
14202,42.881493,-78.877484,3911,"{'type': 'Point', 'coordinates': [-78.877484, 42.881493]}",3.167851,1234.5908945843728 | |
14203,42.868914000000004,-78.869693,1618,"{'type': 'Point', 'coordinates': [-78.869693, 42.868914000000004]}",9.881172,163.74575809428276 | |
14204,42.882138,-78.861325,8691,"{'type': 'Point', 'coordinates': [-78.861325, 42.882138]}",4.65271,1867.9436285519623 | |
14206,42.880078000000005,-78.810469,20751,"{'type': 'Point', 'coordinates': [-78.810469, 42.880078000000005]}",12.565593,1651.4143025323199 | |
14207,42.951932,-78.898883,23552,"{'type': 'Point', 'coordinates': [-78.898883, 42.951932]}",10.157022,2318.7898972750086 | |
14208,42.915890000000005,-78.853098,11125,"{'type': 'Point', 'coordinates': [-78.853098, 42.915890000000005]}",3.520718,3159.866822619704 | |
14209,42.913959000000006,-78.866025,7926,"{'type': 'Point', 'coordinates': [-78.866025, 42.913959000000006]}",2.368327,3346.666233167971 | |
14210,42.862657,-78.82876800000001,14694,"{'type': 'Point', 'coordinates': [-78.82876800000001, 42.862657]}",8.626125,1703.4299873929488 | |
14211,42.906731,-78.819891,22611,"{'type': 'Point', 'coordinates': [-78.819891, 42.906731]}",10.505739,2152.252211862488 | |
14212,42.894211,-78.820173,10641,"{'type': 'Point', 'coordinates': [-78.820173, 42.894211]}",4.933407,2156.927251289018 | |
14213,42.918096999999996,-78.89240600000001,24465,"{'type': 'Point', 'coordinates': [-78.89240600000001, 42.918096999999996]}",6.145802,3980.7660578716986 | |
14214,42.939576,-78.840793,19775,"{'type': 'Point', 'coordinates': [-78.840793, 42.939576]}",7.41559,2666.6792527634348 | |
14215,42.935339,-78.810681,39999,"{'type': 'Point', 'coordinates': [-78.810681, 42.935339]}",12.766721,3133.0676060047053 | |
14216,42.949615,-78.86111899999999,22431,"{'type': 'Point', 'coordinates': [-78.86111899999999, 42.949615]}",7.285008,3079.063193890796 | |
14217,42.971876,-78.876869,23480,"{'type': 'Point', 'coordinates': [-78.876869, 42.971876]}",8.321922,2821.4635993944667 | |
14218,42.819371999999994,-78.830952,19039,"{'type': 'Point', 'coordinates': [-78.830952, 42.819371999999994]}",22.118348,860.7785717088816 | |
14219,42.788675,-78.826431,11536,"{'type': 'Point', 'coordinates': [-78.826431, 42.788675]}",19.068462,604.9779997988301 | |
14220,42.845738,-78.822076,24227,"{'type': 'Point', 'coordinates': [-78.822076, 42.845738]}",10.007264,2420.9414281465947 | |
14221,42.984481,-78.722761,53555,"{'type': 'Point', 'coordinates': [-78.722761, 42.984481]}",59.630841,898.1090841901761 | |
14222,42.919828,-78.876931,14046,"{'type': 'Point', 'coordinates': [-78.876931, 42.919828]}",3.305911,4248.753218099338 | |
14223,42.973452,-78.84620100000001,22665,"{'type': 'Point', 'coordinates': [-78.84620100000001, 42.973452]}",8.889742,2549.567805229893 | |
14224,42.837759000000005,-78.747821,39889,"{'type': 'Point', 'coordinates': [-78.747821, 42.837759000000005]}",52.67954,757.2009930230977 | |
14225,42.928948999999996,-78.75027299999999,33385,"{'type': 'Point', 'coordinates': [-78.75027299999999, 42.928948999999996]}",30.77712,1084.7343741064792 | |
14226,42.971014000000004,-78.79645500000001,29267,"{'type': 'Point', 'coordinates': [-78.79645500000001, 42.971014000000004]}",17.925828,1632.6721421180657 | |
14227,42.886958,-78.7308,23426,"{'type': 'Point', 'coordinates': [-78.7308, 42.886958]}",22.406321,1045.5085419868797 | |
14228,43.044371000000005,-78.777335,20857,"{'type': 'Point', 'coordinates': [-78.777335, 43.044371000000005]}",41.676721,500.44724007917995 | |
14261,43.007767,-78.791572,5713,"{'type': 'Point', 'coordinates': [-78.791572, 43.007767]}",3.103507,1840.820723136761 | |
14301,43.095821,-79.040408,12817,"{'type': 'Point', 'coordinates': [-79.040408, 43.095821]}",4.330713,2959.558853241949 | |
14302,43.093896,-79.049193,107,"{'type': 'Point', 'coordinates': [-79.049193, 43.093896]}",0.035992,2972.882862858413 | |
14303,43.084975,-79.038402,5981,"{'type': 'Point', 'coordinates': [-79.038402, 43.084975]}",6.362014,940.1111031821055 | |
14304,43.099407,-78.951983,30389,"{'type': 'Point', 'coordinates': [-78.951983, 43.099407]}",57.46277,528.8467646095028 | |
14305,43.122831,-79.023218,16898,"{'type': 'Point', 'coordinates': [-79.023218, 43.122831]}",21.375808,790.5198250283686 | |
14411,43.235972,-78.216477,14491,"{'type': 'Point', 'coordinates': [-78.216477, 43.235972]}",294.287555,49.24095414092519 | |
14414,42.890961,-77.74375699999999,7142,"{'type': 'Point', 'coordinates': [-77.74375699999999, 42.890961]}",101.94225,70.05927375548411 | |
14415,42.755495,-77.017084,132,"{'type': 'Point', 'coordinates': [-77.017084, 42.755495]}",3.760958,35.097440598911234 | |
14416,43.082693,-77.980115,3817,"{'type': 'Point', 'coordinates': [-77.980115, 43.082693]}",96.667879,39.485711691264065 | |
14418,42.60443,-77.21642800000001,1325,"{'type': 'Point', 'coordinates': [-77.21642800000001, 42.60443]}",96.873376,13.67764864517574 | |
14420,43.211739,-77.934564,20467,"{'type': 'Point', 'coordinates': [-77.934564, 43.211739]}",157.270242,130.13905071755406 | |
14422,43.084761,-78.066965,2468,"{'type': 'Point', 'coordinates': [-78.066965, 43.084761]}",88.330843,27.94041035021029 | |
14423,42.933948,-77.82110300000001,4799,"{'type': 'Point', 'coordinates': [-77.82110300000001, 42.933948]}",131.383118,36.526762898106895 | |
14424,42.856357,-77.303497,27007,"{'type': 'Point', 'coordinates': [-77.303497, 42.856357]}",329.785038,81.89273886949353 | |
14425,42.991514,-77.33802,10717,"{'type': 'Point', 'coordinates': [-77.33802, 42.991514]}",48.376732,221.53212002828138 | |
14427,42.621589,-78.053905,1964,"{'type': 'Point', 'coordinates': [-78.053905, 42.621589]}",79.538665,24.69239331587977 | |
14428,43.080517,-77.85356800000001,8096,"{'type': 'Point', 'coordinates': [-77.85356800000001, 43.080517]}",133.367496,60.70444630676729 | |
14432,42.957390999999994,-77.143523,5726,"{'type': 'Point', 'coordinates': [-77.143523, 42.957390999999994]}",100.072257,57.21865551608375 | |
14433,43.082126,-76.87759799999999,4629,"{'type': 'Point', 'coordinates': [-76.87759799999999, 43.082126]}",172.209504,26.880049547091197 | |
14435,42.712552,-77.663312,2941,"{'type': 'Point', 'coordinates': [-77.663312, 42.712552]}",94.906343,30.988445103189783 | |
14437,42.570141,-77.73376400000001,11415,"{'type': 'Point', 'coordinates': [-77.73376400000001, 42.570141]}",321.562005,35.49859691912295 | |
14441,42.68461,-76.957603,325,"{'type': 'Point', 'coordinates': [-76.957603, 42.68461]}",0.923203,352.0352511852756 | |
14445,43.113062,-77.490306,8019,"{'type': 'Point', 'coordinates': [-77.490306, 43.113062]}",4.92866,1627.0142391643976 | |
14450,43.092487,-77.420461,41104,"{'type': 'Point', 'coordinates': [-77.420461, 43.092487]}",83.160879,494.27086984013243 | |
14454,42.797774,-77.774638,11073,"{'type': 'Point', 'coordinates': [-77.774638, 42.797774]}",131.164727,84.42056224460407 | |
14456,42.847695,-76.998972,20087,"{'type': 'Point', 'coordinates': [-76.998972, 42.847695]}",202.494171,99.19791715881047 | |
14462,42.686534,-77.751115,655,"{'type': 'Point', 'coordinates': [-77.751115, 42.686534]}",31.032586,21.106845559052026 | |
14464,43.327049,-77.932163,7524,"{'type': 'Point', 'coordinates': [-77.932163, 43.327049]}",81.047816,92.83408697897548 | |
14466,42.776517,-77.58104200000001,1719,"{'type': 'Point', 'coordinates': [-77.58104200000001, 42.776517]}",44.610418,38.533599931746885 | |
14467,43.036374,-77.612048,9105,"{'type': 'Point', 'coordinates': [-77.612048, 43.036374]}",28.579199,318.5883551180003 | |
14468,43.293956,-77.802049,17813,"{'type': 'Point', 'coordinates': [-77.802049, 43.293956]}",144.926535,122.91054912752864 | |
14469,42.877919,-77.471014,6220,"{'type': 'Point', 'coordinates': [-77.471014, 42.877919]}",171.021786,36.36963538668694 | |
14470,43.205212,-78.05768499999999,8016,"{'type': 'Point', 'coordinates': [-78.05768499999999, 43.205212]}",166.147007,48.24643034346084 | |
14471,42.753761,-77.492189,2672,"{'type': 'Point', 'coordinates': [-77.492189, 42.753761]}",70.268927,38.025342268283104 | |
14472,42.966819,-77.57513399999999,8598,"{'type': 'Point', 'coordinates': [-77.57513399999999, 42.966819]}",113.972938,75.43896078207618 | |
14475,42.937819,-77.498297,234,"{'type': 'Point', 'coordinates': [-77.498297, 42.937819]}",3.951641,59.21590549343931 | |
14476,43.329378999999996,-78.0428,2288,"{'type': 'Point', 'coordinates': [-78.0428, 43.329378999999996]}",64.290567,35.588424659561646 | |
14477,43.333129,-78.140393,1732,"{'type': 'Point', 'coordinates': [-78.140393, 43.333129]}",68.103458,25.4318951028889 | |
14478,42.577824,-77.126323,1595,"{'type': 'Point', 'coordinates': [-77.126323, 42.577824]}",30.313095,52.61752387870654 | |
14479,43.236261999999996,-78.313775,275,"{'type': 'Point', 'coordinates': [-78.313775, 43.236261999999996]}",3.833267,71.74037185513036 | |
14480,42.838482,-77.710342,833,"{'type': 'Point', 'coordinates': [-77.710342, 42.838482]}",3.393118,245.4969146372157 | |
14481,42.761795,-77.921452,1820,"{'type': 'Point', 'coordinates': [-77.921452, 42.761795]}",61.560914,29.564213422822153 | |
14482,42.978904,-77.97153399999999,8275,"{'type': 'Point', 'coordinates': [-77.97153399999999, 42.978904]}",151.867597,54.48825268500166 | |
14485,42.882635,-77.601026,4267,"{'type': 'Point', 'coordinates': [-77.601026, 42.882635]}",91.664996,46.54993930289377 | |
14486,42.89428,-77.921587,308,"{'type': 'Point', 'coordinates': [-77.921587, 42.89428]}",14.590427,21.10973174397158 | |
14487,42.811758000000005,-77.63600600000001,6025,"{'type': 'Point', 'coordinates': [-77.63600600000001, 42.811758000000005]}",86.513794,69.64207349408349 | |
14489,43.089845000000004,-76.99431899999999,7192,"{'type': 'Point', 'coordinates': [-76.99431899999999, 43.089845000000004]}",176.30938,40.79193063919798 | |
14502,43.096594,-77.335388,10691,"{'type': 'Point', 'coordinates': [-77.335388, 43.096594]}",97.152953,110.04297522484984 | |
14504,42.968981,-77.231501,1701,"{'type': 'Point', 'coordinates': [-77.231501, 42.968981]}",2.946906,577.2155609985524 | |
14505,43.159419,-77.168961,5393,"{'type': 'Point', 'coordinates': [-77.168961, 43.159419]}",102.8402,52.44058257374062 | |
14506,43.005511,-77.51665600000001,1325,"{'type': 'Point', 'coordinates': [-77.51665600000001, 43.005511]}",7.472841,177.30873706532765 | |
14507,42.684915999999994,-77.254886,1351,"{'type': 'Point', 'coordinates': [-77.254886, 42.684915999999994]}",84.853731,15.921515578378045 | |
14510,42.683009999999996,-77.86900899999999,4895,"{'type': 'Point', 'coordinates': [-77.86900899999999, 42.683009999999996]}",181.37216,26.988706535777045 | |
14511,42.999373999999996,-77.89179,497,"{'type': 'Point', 'coordinates': [-77.89179, 42.999373999999996]}",6.092961,81.56953573147769 | |
14512,42.645241,-77.39976999999999,4721,"{'type': 'Point', 'coordinates': [-77.39976999999999, 42.645241]}",266.149962,17.738120135444543 | |
14513,43.086308,-77.092116,13976,"{'type': 'Point', 'coordinates': [-77.092116, 43.086308]}",122.118692,114.44603419106389 | |
14514,43.109913,-77.814986,6389,"{'type': 'Point', 'coordinates': [-77.814986, 43.109913]}",9.7278,656.7774830897017 | |
14516,43.201328000000004,-76.919338,2365,"{'type': 'Point', 'coordinates': [-76.919338, 43.201328000000004]}",78.016995,30.3139078863522 | |
14517,42.592426,-77.895852,2883,"{'type': 'Point', 'coordinates': [-77.895852, 42.592426]}",88.409298,32.60969225205249 | |
14519,43.233971999999994,-77.314631,11581,"{'type': 'Point', 'coordinates': [-77.314631, 43.233971999999994]}",105.869724,109.38915832065454 | |
14521,42.676642,-76.805003,2761,"{'type': 'Point', 'coordinates': [-76.805003, 42.676642]}",97.948574,28.188261321701326 | |
14522,43.061423,-77.220399,9565,"{'type': 'Point', 'coordinates': [-77.220399, 43.061423]}",121.500753,78.72379194226063 | |
14525,42.877513,-78.013345,2865,"{'type': 'Point', 'coordinates': [-78.013345, 42.877513]}",118.322574,24.21346918974227 | |
14526,43.151464000000004,-77.444396,19804,"{'type': 'Point', 'coordinates': [-77.444396, 43.151464000000004]}",43.42815,456.017583065362 | |
14527,42.665508,-77.06630899999999,12820,"{'type': 'Point', 'coordinates': [-77.06630899999999, 42.665508]}",351.077115,36.516193885209525 | |
14529,42.539976,-77.6381,67,"{'type': 'Point', 'coordinates': [-77.6381, 42.539976]}",1.010136,66.32770240838857 | |
14530,42.739909999999995,-77.998746,5575,"{'type': 'Point', 'coordinates': [-77.998746, 42.739909999999995]}",128.730798,43.30742981955259 | |
14532,42.964101,-77.032088,4431,"{'type': 'Point', 'coordinates': [-77.032088, 42.964101]}",106.156997,41.7400654240436 | |
14533,42.838808,-77.888751,2000,"{'type': 'Point', 'coordinates': [-77.888751, 42.838808]}",83.254156,24.02282475844209 | |
14534,43.05689,-77.52104200000001,31426,"{'type': 'Point', 'coordinates': [-77.52104200000001, 43.05689]}",84.512208,371.85160278855807 | |
14536,42.543975,-78.083671,687,"{'type': 'Point', 'coordinates': [-78.083671, 42.543975]}",47.618652,14.427119860511802 | |
14537,43.035808,-77.163201,207,"{'type': 'Point', 'coordinates': [-77.163201, 43.035808]}",0.876091,236.2768251243307 | |
14539,42.834499,-77.874751,242,"{'type': 'Point', 'coordinates': [-77.874751, 42.834499]}",0.548223,441.42620794822545 | |
14541,42.765059,-76.848967,4129,"{'type': 'Point', 'coordinates': [-76.848967, 42.765059]}",127.975603,32.263962061581374 | |
14542,43.147329,-76.86012099999999,97,"{'type': 'Point', 'coordinates': [-76.86012099999999, 43.147329]}",4.793791,20.234507511904464 | |
14543,42.983831,-77.678535,3152,"{'type': 'Point', 'coordinates': [-77.678535, 42.983831]}",66.102356,47.68362567893949 | |
14544,42.756251,-77.243735,2101,"{'type': 'Point', 'coordinates': [-77.243735, 42.756251]}",73.18939,28.706346643960277 | |
14545,42.664857,-77.70100699999999,173,"{'type': 'Point', 'coordinates': [-77.70100699999999, 42.664857]}",3.716758,46.54594138224765 | |
14546,43.032675,-77.780006,4695,"{'type': 'Point', 'coordinates': [-77.780006, 43.032675]}",89.261459,52.598288809059234 | |
14548,42.976071999999995,-77.24387,4249,"{'type': 'Point', 'coordinates': [-77.24387, 42.976071999999995]}",77.896936,54.54643299448903 | |
14549,42.700031,-78.017273,91,"{'type': 'Point', 'coordinates': [-78.017273, 42.700031]}",0.291068,312.6417194607446 | |
14550,42.679902,-78.093487,1537,"{'type': 'Point', 'coordinates': [-78.093487, 42.679902]}",54.088387,28.416451021177615 | |
14551,43.218114,-77.049402,5651,"{'type': 'Point', 'coordinates': [-77.049402, 43.218114]}",113.465224,49.80380596613461 | |
14555,43.260787,-76.97574,974,"{'type': 'Point', 'coordinates': [-76.97574, 43.260787]}",16.334401,59.628755287690076 | |
14559,43.18998,-77.819052,18057,"{'type': 'Point', 'coordinates': [-77.819052, 43.18998]}",110.789531,162.98471378130483 | |
14560,42.683429,-77.565904,2164,"{'type': 'Point', 'coordinates': [-77.565904, 42.683429]}",103.457297,20.91684262734991 | |
14561,42.820432000000004,-77.131778,3086,"{'type': 'Point', 'coordinates': [-77.131778, 42.820432000000004]}",134.359301,22.96826477238074 | |
14564,42.986699,-77.43436,14487,"{'type': 'Point', 'coordinates': [-77.43436, 42.986699]}",109.361361,132.46909024842878 | |
14568,43.161845,-77.281657,6048,"{'type': 'Point', 'coordinates': [-77.281657, 43.161845]}",61.518085,98.31255312970161 | |
14569,42.735221,-78.171092,6211,"{'type': 'Point', 'coordinates': [-78.171092, 42.735221]}",198.697489,31.25857317703698 | |
14571,43.341652,-78.25174200000001,1176,"{'type': 'Point', 'coordinates': [-78.25174200000001, 43.341652]}",48.849179,24.074099587221312 | |
14572,42.564925,-77.562598,5081,"{'type': 'Point', 'coordinates': [-77.562598, 42.564925]}",194.384961,26.138853406462857 | |
14580,43.217283,-77.44453399999999,50587,"{'type': 'Point', 'coordinates': [-77.44453399999999, 43.217283]}",115.712007,437.1802141501184 | |
14585,42.906261,-77.553145,120,"{'type': 'Point', 'coordinates': [-77.553145, 42.906261]}",0.128258,935.6141527234167 | |
14586,43.041675,-77.689904,10256,"{'type': 'Point', 'coordinates': [-77.689904, 43.041675]}",29.377402,349.11187857932435 | |
14588,42.680987,-76.87080300000001,749,"{'type': 'Point', 'coordinates': [-76.87080300000001, 42.680987]}",0.623658,1200.9787415538644 | |
14589,43.249424,-77.174261,7854,"{'type': 'Point', 'coordinates': [-77.174261, 43.249424]}",113.552752,69.16609119257629 | |
14590,43.242546999999995,-76.826243,5446,"{'type': 'Point', 'coordinates': [-76.826243, 43.242546999999995]}",177.884506,30.615370177321687 | |
14591,42.832085,-78.107386,1748,"{'type': 'Point', 'coordinates': [-78.107386, 42.832085]}",104.729151,16.690672876742788 | |
14592,42.872237,-77.895893,110,"{'type': 'Point', 'coordinates': [-77.895893, 42.872237]}",0.431978,254.64259753968955 | |
14604,43.156212,-77.604741,1743,"{'type': 'Point', 'coordinates': [-77.604741, 43.156212]}",0.990279,1760.1100295977194 | |
14605,43.168428000000006,-77.602642,12610,"{'type': 'Point', 'coordinates': [-77.602642, 43.168428000000006]}",4.739147,2660.8163874216184 | |
14606,43.171046999999994,-77.697953,28255,"{'type': 'Point', 'coordinates': [-77.697953, 43.171046999999994]}",25.376905,1113.413948627699 | |
14607,43.150776,-77.586434,16223,"{'type': 'Point', 'coordinates': [-77.586434, 43.150776]}",4.364206,3717.2855726791995 | |
14608,43.154099,-77.62293000000001,12268,"{'type': 'Point', 'coordinates': [-77.62293000000001, 43.154099]}",4.746686,2584.5400348790713 | |
14609,43.177093,-77.554873,42571,"{'type': 'Point', 'coordinates': [-77.554873, 43.177093]}",20.906245,2036.2815034455018 | |
14610,43.142359,-77.545372,14233,"{'type': 'Point', 'coordinates': [-77.545372, 43.142359]}",11.341689,1254.9277272547324 | |
14611,43.148315999999994,-77.646987,17396,"{'type': 'Point', 'coordinates': [-77.646987, 43.148315999999994]}",7.553878,2302.9230813629765 | |
14612,43.266329999999996,-77.67670600000001,34515,"{'type': 'Point', 'coordinates': [-77.67670600000001, 43.266329999999996]}",51.339351,672.2913189923262 | |
14613,43.182171000000004,-77.640175,14730,"{'type': 'Point', 'coordinates': [-77.640175, 43.182171000000004]}",4.824824,3052.961102829865 | |
14614,43.157441999999996,-77.61535500000001,1224,"{'type': 'Point', 'coordinates': [-77.61535500000001, 43.157441999999996]}",0.721664,1696.0801702731467 | |
14615,43.201207000000004,-77.654749,16099,"{'type': 'Point', 'coordinates': [-77.654749, 43.201207000000004]}",15.069375,1068.3256604869146 | |
14616,43.234624,-77.65766500000001,28534,"{'type': 'Point', 'coordinates': [-77.65766500000001, 43.234624]}",15.388973,1854.1848114230884 | |
14617,43.225497,-77.59352700000001,22789,"{'type': 'Point', 'coordinates': [-77.59352700000001, 43.225497]}",20.995872,1085.4038355730117 | |
14618,43.114542,-77.554976,22920,"{'type': 'Point', 'coordinates': [-77.554976, 43.114542]}",25.234912,908.265501381578 | |
14619,43.136456,-77.649477,14749,"{'type': 'Point', 'coordinates': [-77.649477, 43.136456]}",3.784648,3897.05991151621 | |
14620,43.128291,-77.605805,25141,"{'type': 'Point', 'coordinates': [-77.605805, 43.128291]}",11.832096,2124.813727001539 | |
14621,43.189939,-77.603649,33802,"{'type': 'Point', 'coordinates': [-77.603649, 43.189939]}",10.962057,3083.5453601454547 | |
14622,43.214859000000004,-77.552353,12108,"{'type': 'Point', 'coordinates': [-77.552353, 43.214859000000004]}",14.404459,840.5730475542331 | |
14623,43.087348999999996,-77.641862,27173,"{'type': 'Point', 'coordinates': [-77.641862, 43.087348999999996]}",50.406453,539.077804185111 | |
14624,43.1283,-77.731411,36296,"{'type': 'Point', 'coordinates': [-77.731411, 43.1283]}",72.767643,498.7931243011402 | |
14625,43.150045,-77.505526,10387,"{'type': 'Point', 'coordinates': [-77.505526, 43.150045]}",20.26252,512.6213323910353 | |
14626,43.21656,-77.710786,30041,"{'type': 'Point', 'coordinates': [-77.710786, 43.21656]}",35.427507,847.956927931734 | |
14627,43.128661,-77.629147,2320,"{'type': 'Point', 'coordinates': [-77.629147, 43.128661]}",0.3985,5821.831869510665 | |
14701,42.08016,-79.25671,40730,"{'type': 'Point', 'coordinates': [-79.25671, 42.08016]}",240.059115,169.66654234312244 | |
14706,42.113246000000004,-78.533146,6356,"{'type': 'Point', 'coordinates': [-78.533146, 42.113246000000004]}",205.715997,30.896965198092982 | |
14707,42.07734,-78.06052,239,"{'type': 'Point', 'coordinates': [-78.06052, 42.07734]}",5.151823,46.39134535483847 | |
14708,42.019219,-78.06361700000001,183,"{'type': 'Point', 'coordinates': [-78.06361700000001, 42.019219]}",27.351908,6.690575297343059 | |
14709,42.356494,-77.98206400000001,1535,"{'type': 'Point', 'coordinates': [-77.98206400000001, 42.356494]}",131.049938,11.713092149650617 | |
14710,42.08777,-79.419847,3540,"{'type': 'Point', 'coordinates': [-79.419847, 42.08777]}",125.408953,28.22764974363513 | |
14711,42.326732,-78.119419,1766,"{'type': 'Point', 'coordinates': [-78.119419, 42.326732]}",104.400686,16.915597661877435 | |
14712,42.183745,-79.361923,3342,"{'type': 'Point', 'coordinates': [-79.361923, 42.183745]}",67.601499,49.43677358397038 | |
14714,42.296728,-78.233633,487,"{'type': 'Point', 'coordinates': [-78.233633, 42.296728]}",47.281758,10.299955428899239 | |
14715,42.07653,-78.14475,2747,"{'type': 'Point', 'coordinates': [-78.14475, 42.07653]}",112.56358,24.40398572966496 | |
14716,42.390637,-79.445044,3104,"{'type': 'Point', 'coordinates': [-79.445044, 42.390637]}",47.633588,65.16410227169953 | |
14717,42.361827000000005,-78.17953399999999,636,"{'type': 'Point', 'coordinates': [-78.17953399999999, 42.361827000000005]}",71.409761,8.906345450448994 | |
14718,42.345814000000004,-79.287617,2163,"{'type': 'Point', 'coordinates': [-79.287617, 42.345814000000004]}",86.498441,25.00623103715823 | |
14719,42.341958,-78.87595300000001,3497,"{'type': 'Point', 'coordinates': [-78.87595300000001, 42.341958]}",245.83323,14.225090725122882 | |
14720,42.108593,-79.281189,675,"{'type': 'Point', 'coordinates': [-79.281189, 42.108593]}",0.633976,1064.7090741605361 | |
14721,42.013905,-78.266442,230,"{'type': 'Point', 'coordinates': [-78.266442, 42.013905]}",9.625463,23.894954455697352 | |
14722,42.209489000000005,-79.468361,153,"{'type': 'Point', 'coordinates': [-79.468361, 42.209489000000005]}",0.858243,178.2711889290096 | |
14723,42.317698,-79.157224,1295,"{'type': 'Point', 'coordinates': [-79.157224, 42.317698]}",112.035944,11.55879045389219 | |
14724,42.046328,-79.66983,2540,"{'type': 'Point', 'coordinates': [-79.66983, 42.046328]}",193.968831,13.094887394562893 | |
14726,42.253585,-79.020279,2156,"{'type': 'Point', 'coordinates': [-79.020279, 42.253585]}",105.331974,20.468618579197994 | |
14727,42.206882,-78.297294,5450,"{'type': 'Point', 'coordinates': [-78.297294, 42.206882]}",283.666349,19.21271246735015 | |
14728,42.263333,-79.423176,1031,"{'type': 'Point', 'coordinates': [-79.423176, 42.263333]}",69.521459,14.8299534392683 | |
14729,42.408377,-78.743584,948,"{'type': 'Point', 'coordinates': [-78.743584, 42.408377]}",91.967648,10.307972647076937 | |
14731,42.307351000000004,-78.655503,1576,"{'type': 'Point', 'coordinates': [-78.655503, 42.307351000000004]}",118.764712,13.269934928145997 | |
14732,42.231862,-79.116414,211,"{'type': 'Point', 'coordinates': [-79.116414, 42.231862]}",5.794276,36.41524842793129 | |
14733,42.160121999999994,-79.17219899999999,3833,"{'type': 'Point', 'coordinates': [-79.17219899999999, 42.160121999999994]}",72.284914,53.02627876129174 | |
14735,42.452690000000004,-78.09616899999999,2751,"{'type': 'Point', 'coordinates': [-78.09616899999999, 42.452690000000004]}",216.332182,12.71655458086213 | |
14736,42.140845,-79.74610799999999,282,"{'type': 'Point', 'coordinates': [-79.74610799999999, 42.140845]}",13.534656,20.83540209666208 | |
14737,42.32905,-78.428611,4252,"{'type': 'Point', 'coordinates': [-78.428611, 42.32905]}",286.453726,14.843584195515055 | |
14738,42.055006,-79.084541,3651,"{'type': 'Point', 'coordinates': [-79.084541, 42.055006]}",171.017315,21.348715479482298 | |
14739,42.192603999999996,-78.146295,2903,"{'type': 'Point', 'coordinates': [-78.146295, 42.192603999999996]}",205.155364,14.150251513774702 | |
14740,42.223203000000005,-79.181435,1431,"{'type': 'Point', 'coordinates': [-79.181435, 42.223203000000005]}",67.479543,21.20642696113102 | |
14741,42.219966,-78.611624,1873,"{'type': 'Point', 'coordinates': [-78.611624, 42.219966]}",159.635719,11.732963097062257 | |
14742,42.120123,-79.306839,314,"{'type': 'Point', 'coordinates': [-79.306839, 42.120123]}",0.581624,539.8676808384798 | |
14743,42.211871,-78.39600899999999,1783,"{'type': 'Point', 'coordinates': [-78.39600899999999, 42.211871]}",112.601166,15.834649527519101 | |
14744,42.4281,-78.206654,2094,"{'type': 'Point', 'coordinates': [-78.206654, 42.4281]}",45.554935,45.96647981168231 | |
14747,42.153715000000005,-79.09451800000001,2289,"{'type': 'Point', 'coordinates': [-79.09451800000001, 42.153715000000005]}",113.081611,20.242017952857076 | |
14748,42.157106,-78.643074,746,"{'type': 'Point', 'coordinates': [-78.643074, 42.157106]}",47.341996,15.757679502993494 | |
14750,42.079766,-79.32924399999999,4426,"{'type': 'Point', 'coordinates': [-79.32924399999999, 42.079766]}",28.745348,153.97274021521673 | |
14752,42.351728,-79.319857,169,"{'type': 'Point', 'coordinates': [-79.319857, 42.351728]}",0.649518,260.1929430747108 | |
14753,42.036032,-78.664372,1166,"{'type': 'Point', 'coordinates': [-78.664372, 42.036032]}",143.052057,8.150878948912982 | |
14754,42.021908,-78.20156899999999,667,"{'type': 'Point', 'coordinates': [-78.20156899999999, 42.021908]}",43.052526,15.492703029782735 | |
14755,42.233756,-78.80459599999999,2916,"{'type': 'Point', 'coordinates': [-78.80459599999999, 42.233756]}",195.669714,14.902663986108754 | |
14756,42.198039,-79.421274,110,"{'type': 'Point', 'coordinates': [-79.421274, 42.198039]}",0.355129,309.7465991231356 | |
14757,42.237679,-79.50470899999999,3487,"{'type': 'Point', 'coordinates': [-79.50470899999999, 42.237679]}",119.869817,29.089891744808455 | |
14760,42.077027,-78.418429,18775,"{'type': 'Point', 'coordinates': [-78.418429, 42.077027]}",166.460491,112.7895267352059 | |
14767,42.057352,-79.514135,2088,"{'type': 'Point', 'coordinates': [-79.514135, 42.057352]}",138.773839,15.046063545161418 | |
14769,42.367931,-79.472317,919,"{'type': 'Point', 'coordinates': [-79.472317, 42.367931]}",23.617282,38.9121830361343 | |
14770,42.037929,-78.300296,2963,"{'type': 'Point', 'coordinates': [-78.300296, 42.037929]}",77.520518,38.22213881491349 | |
14772,42.15747,-78.952618,4255,"{'type': 'Point', 'coordinates': [-78.952618, 42.15747]}",192.078128,22.15244413460756 | |
14774,42.088367,-78.14909300000001,151,"{'type': 'Point', 'coordinates': [-78.14909300000001, 42.088367]}",0.461338,327.30882780087484 | |
14775,42.228753000000005,-79.699933,2537,"{'type': 'Point', 'coordinates': [-79.699933, 42.228753000000005]}",145.610808,17.423157215088047 | |
14777,42.38608,-78.273772,667,"{'type': 'Point', 'coordinates': [-78.273772, 42.38608]}",39.600719,16.843128530065325 | |
14778,42.077584,-78.483239,1453,"{'type': 'Point', 'coordinates': [-78.483239, 42.077584]}",1.076096,1350.2512786963246 | |
14779,42.081231,-78.777985,6932,"{'type': 'Point', 'coordinates': [-78.777985, 42.081231]}",294.892958,23.506834639299864 | |
14781,42.161632,-79.601428,2225,"{'type': 'Point', 'coordinates': [-79.601428, 42.161632]}",188.287235,11.817051750746671 | |
14782,42.265508000000004,-79.263865,2401,"{'type': 'Point', 'coordinates': [-79.263865, 42.265508000000004]}",142.389016,16.862255723433048 | |
14783,42.082144,-78.887354,320,"{'type': 'Point', 'coordinates': [-78.887354, 42.082144]}",81.175627,3.942069951612446 | |
14784,42.311143,-79.385369,1033,"{'type': 'Point', 'coordinates': [-79.385369, 42.311143]}",75.818182,13.624700207135012 | |
14787,42.311240000000005,-79.565066,5121,"{'type': 'Point', 'coordinates': [-79.565066, 42.311240000000005]}",119.147482,42.98034598834409 | |
14788,42.061991,-78.38010799999999,163,"{'type': 'Point', 'coordinates': [-78.38010799999999, 42.061991]}",0.545003,299.0809224903349 | |
14801,42.104056,-77.292968,5475,"{'type': 'Point', 'coordinates': [-77.292968, 42.104056]}",282.463668,19.38302380184343 | |
14802,42.253375,-77.78929699999999,4135,"{'type': 'Point', 'coordinates': [-77.78929699999999, 42.253375]}",2.69419,1534.7841095097228 | |
14803,42.273416,-77.745296,1174,"{'type': 'Point', 'coordinates': [-77.745296, 42.273416]}",64.803041,18.116433764273502 | |
14804,42.317259,-77.847936,1479,"{'type': 'Point', 'coordinates': [-77.847936, 42.317259]}",144.95089,10.203455804928138 | |
14805,42.350109,-76.719369,1100,"{'type': 'Point', 'coordinates': [-76.719369, 42.350109]}",73.176968,15.032052161548972 | |
14806,42.171496999999995,-77.772561,2269,"{'type': 'Point', 'coordinates': [-77.772561, 42.171496999999995]}",178.476028,12.713191936342284 | |
14807,42.420997,-77.711347,3076,"{'type': 'Point', 'coordinates': [-77.711347, 42.420997]}",175.779418,17.499204599710303 | |
14808,42.559639000000004,-77.46686,591,"{'type': 'Point', 'coordinates': [-77.46686, 42.559639000000004]}",8.72685,67.72203028584197 | |
14809,42.424318,-77.448755,2552,"{'type': 'Point', 'coordinates': [-77.448755, 42.424318]}",144.690743,17.637617632525394 | |
14810,42.349751,-77.343379,12356,"{'type': 'Point', 'coordinates': [-77.343379, 42.349751]}",313.91329,39.36118792549369 | |
14812,42.300727,-77.00524899999999,3478,"{'type': 'Point', 'coordinates': [-77.00524899999999, 42.300727]}",201.055118,17.298738945804903 | |
14813,42.252646999999996,-77.995104,2520,"{'type': 'Point', 'coordinates': [-77.995104, 42.252646999999996]}",157.914597,15.95799278770917 | |
14814,42.155636,-76.9593,1931,"{'type': 'Point', 'coordinates': [-76.9593, 42.155636]}",23.054995,83.75625325444659 | |
14815,42.374268,-77.08678,946,"{'type': 'Point', 'coordinates': [-77.08678, 42.374268]}",48.315388,19.57968339196614 | |
14816,42.197737,-76.735637,520,"{'type': 'Point', 'coordinates': [-76.735637, 42.197737]}",10.029947,51.84474055545857 | |
14817,42.357625,-76.335167,2380,"{'type': 'Point', 'coordinates': [-76.335167, 42.357625]}",104.612525,22.750621878212 | |
14818,42.454933000000004,-76.818927,1745,"{'type': 'Point', 'coordinates': [-76.818927, 42.454933000000004]}",96.618976,18.060634383042935 | |
14819,42.224194,-77.441939,733,"{'type': 'Point', 'coordinates': [-77.441939, 42.224194]}",107.023071,6.848990532144232 | |
14820,42.19328,-77.3599,784,"{'type': 'Point', 'coordinates': [-77.3599, 42.19328]}",79.681414,9.839182823738545 | |
14821,42.241574,-77.219254,3314,"{'type': 'Point', 'coordinates': [-77.219254, 42.241574]}",140.844568,23.52948393437509 | |
14822,42.424481,-77.851457,1169,"{'type': 'Point', 'coordinates': [-77.851457, 42.424481]}",128.581741,9.091493013770906 | |
14823,42.248614,-77.554873,3754,"{'type': 'Point', 'coordinates': [-77.554873, 42.248614]}",200.892805,18.686582627984112 | |
14824,42.259793,-76.69953100000001,678,"{'type': 'Point', 'coordinates': [-76.69953100000001, 42.259793]}",58.734046,11.543560271669348 | |
14825,42.056296,-76.618187,919,"{'type': 'Point', 'coordinates': [-76.618187, 42.056296]}",43.702762,21.028419210666822 | |
14826,42.491462,-77.497792,2216,"{'type': 'Point', 'coordinates': [-77.497792, 42.491462]}",158.24914,14.00323565739441 | |
14827,42.180651,-77.14288499999999,191,"{'type': 'Point', 'coordinates': [-77.14288499999999, 42.180651]}",0.233078,819.468160873184 | |
14830,42.128122999999995,-77.031977,19850,"{'type': 'Point', 'coordinates': [-77.031977, 42.128122999999995]}",234.834187,84.52772679132958 | |
14836,42.496997,-77.980613,1009,"{'type': 'Point', 'coordinates': [-77.980613, 42.496997]}",77.744275,12.97844760916479 | |
14837,42.490666999999995,-77.026107,5648,"{'type': 'Point', 'coordinates': [-77.026107, 42.490666999999995]}",209.932901,26.903834382777383 | |
14838,42.188126000000004,-76.662349,1956,"{'type': 'Point', 'coordinates': [-76.662349, 42.188126000000004]}",93.855912,20.840455953376704 | |
14839,42.119444,-77.640967,793,"{'type': 'Point', 'coordinates': [-77.640967, 42.119444]}",114.102317,6.949902691283649 | |
14840,42.441653,-77.194396,3061,"{'type': 'Point', 'coordinates': [-77.194396, 42.441653]}",152.848871,20.026317368088378 | |
14841,42.525338,-76.840915,915,"{'type': 'Point', 'coordinates': [-76.840915, 42.525338]}",50.774716,18.020780263940818 | |
14842,42.60062,-76.981464,938,"{'type': 'Point', 'coordinates': [-76.981464, 42.60062]}",43.350572,21.637546097430963 | |
14843,42.320079,-77.646339,13043,"{'type': 'Point', 'coordinates': [-77.646339, 42.320079]}",261.387528,49.89909082425693 | |
14845,42.215841,-76.8341,20453,"{'type': 'Point', 'coordinates': [-76.8341, 42.215841]}",207.758424,98.4460683047923 | |
14846,42.532090000000004,-78.001564,792,"{'type': 'Point', 'coordinates': [-78.001564, 42.532090000000004]}",89.098798,8.889008805708018 | |
14847,42.6085,-76.734217,2398,"{'type': 'Point', 'coordinates': [-76.734217, 42.6085]}",101.029586,23.735621365408743 | |
14850,42.432165000000005,-76.49704200000001,63886,"{'type': 'Point', 'coordinates': [-76.49704200000001, 42.432165000000005]}",328.492487,194.48237791812878 | |
14853,42.449059000000005,-76.47753900000001,2755,"{'type': 'Point', 'coordinates': [-76.47753900000001, 42.449059000000005]}",0.643893,4278.661206132075 | |
14854,42.505802,-76.614769,37,"{'type': 'Point', 'coordinates': [-76.614769, 42.505802]}",0.05895,627.6505513146734 | |
14855,42.1457,-77.497396,956,"{'type': 'Point', 'coordinates': [-77.497396, 42.1457]}",72.62334,13.16381207474071 | |
14856,42.376717,-77.366506,215,"{'type': 'Point', 'coordinates': [-77.366506, 42.376717]}",0.976583,220.15537849829457 | |
14858,42.029790000000006,-77.134956,1598,"{'type': 'Point', 'coordinates': [-77.134956, 42.029790000000006]}",94.368993,16.933528155800072 | |
14859,42.114838,-76.538139,1029,"{'type': 'Point', 'coordinates': [-76.538139, 42.114838]}",80.864319,12.725019053211838 | |
14860,42.59192,-76.831428,1039,"{'type': 'Point', 'coordinates': [-76.831428, 42.59192]}",54.367964,19.110518834216414 | |
14861,42.088212,-76.686236,1404,"{'type': 'Point', 'coordinates': [-76.686236, 42.088212]}",89.275986,15.726513510587269 | |
14864,42.275415,-76.840921,1307,"{'type': 'Point', 'coordinates': [-76.840921, 42.275415]}",32.367602,40.37988356381792 | |
14865,42.34818,-76.833969,2607,"{'type': 'Point', 'coordinates': [-76.833969, 42.34818]}",51.660822,50.46377310837214 | |
14867,42.34315,-76.618094,5569,"{'type': 'Point', 'coordinates': [-76.618094, 42.34315]}",174.082447,31.99058891905397 | |
14869,42.362320000000004,-76.76896500000001,1378,"{'type': 'Point', 'coordinates': [-76.76896500000001, 42.362320000000004]}",52.222069,26.387311464047894 | |
14870,42.160371999999995,-77.127611,9821,"{'type': 'Point', 'coordinates': [-77.127611, 42.160371999999995]}",160.191875,61.307728622316205 | |
14871,42.039595,-76.911364,5456,"{'type': 'Point', 'coordinates': [-76.911364, 42.039595]}",149.376401,36.525180439981284 | |
14872,42.243653,-76.874902,605,"{'type': 'Point', 'coordinates': [-76.874902, 42.243653]}",16.671529,36.289412926672775 | |
14873,42.522912,-77.29835899999999,2448,"{'type': 'Point', 'coordinates': [-77.29835899999999, 42.522912]}",191.730055,12.767951273993011 | |
14874,42.530177,-77.175488,250,"{'type': 'Point', 'coordinates': [-77.175488, 42.530177]}",5.998821,41.674855775826614 | |
14877,42.057790000000004,-77.680307,401,"{'type': 'Point', 'coordinates': [-77.680307, 42.057790000000004]}",109.904078,3.648636222579475 | |
14878,42.450262,-76.943405,781,"{'type': 'Point', 'coordinates': [-76.943405, 42.450262]}",41.541289,18.80057212476002 | |
14879,42.321946000000004,-77.187158,2398,"{'type': 'Point', 'coordinates': [-77.187158, 42.321946000000004]}",112.613874,21.294001483334107 | |
14880,42.177508,-77.970614,1668,"{'type': 'Point', 'coordinates': [-77.970614, 42.177508]}",142.80614,11.680170054312791 | |
14881,42.399901,-76.358994,192,"{'type': 'Point', 'coordinates': [-76.358994, 42.399901]}",3.185407,60.274872253372955 | |
14882,42.579578000000005,-76.553706,3826,"{'type': 'Point', 'coordinates': [-76.553706, 42.579578000000005]}",86.312769,44.32716090941307 | |
14883,42.237435999999995,-76.475779,4136,"{'type': 'Point', 'coordinates': [-76.475779, 42.237435999999995]}",188.271434,21.9682822408417 | |
14884,42.479521999999996,-77.893852,273,"{'type': 'Point', 'coordinates': [-77.893852, 42.479521999999996]}",50.468293,5.409336907828446 | |
14885,42.046486,-77.570328,873,"{'type': 'Point', 'coordinates': [-77.570328, 42.046486]}",108.874678,8.018393404571079 | |
14886,42.505752,-76.684984,6753,"{'type': 'Point', 'coordinates': [-76.684984, 42.505752]}",201.593358,33.49812745318722 | |
14889,42.234190999999996,-76.579111,1590,"{'type': 'Point', 'coordinates': [-76.579111, 42.234190999999996]}",116.750905,13.618738115991478 | |
14891,42.377014,-76.946182,4149,"{'type': 'Point', 'coordinates': [-76.946182, 42.377014]}",135.391393,30.644488604973585 | |
14892,42.046025,-76.529114,8189,"{'type': 'Point', 'coordinates': [-76.529114, 42.046025]}",112.436869,72.83198182973238 | |
14893,42.467714,-77.107721,6,"{'type': 'Point', 'coordinates': [-77.107721, 42.467714]}",0.058703,102.20942711616102 | |
14894,42.019071999999994,-76.77708299999999,1454,"{'type': 'Point', 'coordinates': [-76.77708299999999, 42.019071999999994]}",29.275901,49.66542276529764 | |
14895,42.08144,-77.940922,9616,"{'type': 'Point', 'coordinates': [-77.940922, 42.08144]}",294.947145,32.602451534155385 | |
14897,42.020695,-77.792636,980,"{'type': 'Point', 'coordinates': [-77.792636, 42.020695]}",66.131907,14.818867993629762 | |
14898,42.053364,-77.4295,1734,"{'type': 'Point', 'coordinates': [-77.4295, 42.053364]}",151.276855,11.462427613265756 | |
14901,42.087649,-76.746938,16736,"{'type': 'Point', 'coordinates': [-76.746938, 42.087649]}",98.838519,169.3266974184427 | |
14903,42.131632,-76.871851,7567,"{'type': 'Point', 'coordinates': [-76.871851, 42.131632]}",54.909425,137.80876416025117 | |
14904,42.070383,-76.80065,16269,"{'type': 'Point', 'coordinates': [-76.80065, 42.070383]}",15.422968,1054.8553300506103 | |
14905,42.087725,-76.84328199999999,9070,"{'type': 'Point', 'coordinates': [-76.84328199999999, 42.087725]}",11.26117,805.42252714416 | |
15001,40.595263,-80.322877,31964,"{'type': 'Point', 'coordinates': [-80.322877, 40.595263]}",158.966416,201.07391739900584 | |
15003,40.603640000000006,-80.216424,11861,"{'type': 'Point', 'coordinates': [-80.216424, 40.603640000000006]}",17.858217,664.1760484823317 | |
15004,40.345102000000004,-80.381297,351,"{'type': 'Point', 'coordinates': [-80.381297, 40.345102000000004]}",0.811323,432.6267097074778 | |
15005,40.64508,-80.18664799999999,9450,"{'type': 'Point', 'coordinates': [-80.18664799999999, 40.64508]}",41.413827,228.18465919606996 | |
15006,40.633590000000005,-79.876889,240,"{'type': 'Point', 'coordinates': [-79.876889, 40.633590000000005]}",0.637393,376.53378684736106 | |
15007,40.652283000000004,-79.93169,323,"{'type': 'Point', 'coordinates': [-79.93169, 40.652283000000004]}",0.86537,373.2507482348591 | |
15009,40.697912,-80.365277,15082,"{'type': 'Point', 'coordinates': [-80.365277, 40.697912]}",67.189734,224.46881542945235 | |
15010,40.770872,-80.351446,28425,"{'type': 'Point', 'coordinates': [-80.351446, 40.770872]}",131.00282,216.9800619559182 | |
15012,40.155417,-79.812946,15905,"{'type': 'Point', 'coordinates': [-79.812946, 40.155417]}",87.878626,180.9882644273478 | |
15014,40.608072,-79.74042800000001,3184,"{'type': 'Point', 'coordinates': [-79.74042800000001, 40.608072]}",1.431896,2223.625179482309 | |
15015,40.637248,-80.081101,1175,"{'type': 'Point', 'coordinates': [-80.081101, 40.637248]}",2.42345,484.8459840310302 | |
15017,40.342273999999996,-80.122354,16213,"{'type': 'Point', 'coordinates': [-80.122354, 40.342273999999996]}",33.913332,478.0715737397906 | |
15018,40.265885,-79.797067,821,"{'type': 'Point', 'coordinates': [-79.797067, 40.265885]}",5.292587,155.122627176464 | |
15019,40.406974,-80.328574,1719,"{'type': 'Point', 'coordinates': [-80.328574, 40.406974]}",58.946614,29.16198036413084 | |
15020,40.233411,-79.950296,231,"{'type': 'Point', 'coordinates': [-79.950296, 40.233411]}",4.603497,50.179244170247095 | |
15021,40.388565,-80.44152700000001,7352,"{'type': 'Point', 'coordinates': [-80.44152700000001, 40.388565]}",237.109378,31.006787087096995 | |
15022,40.124908000000005,-79.93933299999999,10340,"{'type': 'Point', 'coordinates': [-79.93933299999999, 40.124908000000005]}",47.397411,218.15537561745725 | |
15024,40.58497,-79.84731500000001,9029,"{'type': 'Point', 'coordinates': [-79.84731500000001, 40.58497]}",43.915981,205.59713786195508 | |
15025,40.297812,-79.923273,15944,"{'type': 'Point', 'coordinates': [-79.923273, 40.297812]}",44.138083,361.23000629637676 | |
15026,40.504991,-80.353946,3390,"{'type': 'Point', 'coordinates': [-80.353946, 40.504991]}",86.988281,38.970766648440836 | |
15027,40.666338,-80.240179,2201,"{'type': 'Point', 'coordinates': [-80.240179, 40.666338]}",4.202169,523.7771255749115 | |
15028,40.311313,-79.78956,142,"{'type': 'Point', 'coordinates': [-79.78956, 40.311313]}",0.752046,188.8182371823 | |
15030,40.591662,-79.78249100000001,1128,"{'type': 'Point', 'coordinates': [-79.78249100000001, 40.591662]}",5.522942,204.23897263451255 | |
15031,40.348224,-80.161151,513,"{'type': 'Point', 'coordinates': [-80.161151, 40.348224]}",1.205145,425.6749187857063 | |
15033,40.179103999999995,-79.86470899999999,4910,"{'type': 'Point', 'coordinates': [-79.86470899999999, 40.179103999999995]}",6.157811,797.36127010069 | |
15034,40.350815999999995,-79.890602,1792,"{'type': 'Point', 'coordinates': [-79.890602, 40.350815999999995]}",2.753101,650.9023824407459 | |
15035,40.384822,-79.807401,2129,"{'type': 'Point', 'coordinates': [-79.807401, 40.384822]}",1.074658,1981.095381042155 | |
15037,40.258036,-79.85259,10894,"{'type': 'Point', 'coordinates': [-79.85259, 40.258036]}",69.946742,155.74706824801075 | |
15038,40.250809000000004,-79.925568,325,"{'type': 'Point', 'coordinates': [-79.925568, 40.250809000000004]}",1.334335,243.56702027601764 | |
15042,40.690315000000005,-80.204823,8105,"{'type': 'Point', 'coordinates': [-80.204823, 40.690315000000005]}",43.524392,186.21742033754316 | |
15043,40.551695,-80.48785600000001,2458,"{'type': 'Point', 'coordinates': [-80.48785600000001, 40.551695]}",88.225131,27.86054236632417 | |
15044,40.637988,-79.94793299999999,27049,"{'type': 'Point', 'coordinates': [-79.94793299999999, 40.637988]}",107.123762,252.50233463608197 | |
15045,40.325814,-79.88598499999999,4483,"{'type': 'Point', 'coordinates': [-79.88598499999999, 40.325814]}",4.626992,968.8799980635366 | |
15046,40.555653,-80.228561,2640,"{'type': 'Point', 'coordinates': [-80.228561, 40.555653]}",5.978783,441.56143482712116 | |
15047,40.315621,-79.79384399999999,151,"{'type': 'Point', 'coordinates': [-79.79384399999999, 40.315621]}",0.681935,221.4287285445094 | |
15049,40.556113,-79.805574,895,"{'type': 'Point', 'coordinates': [-79.805574, 40.556113]}",1.116538,801.5848990361277 | |
15050,40.563665,-80.434517,2431,"{'type': 'Point', 'coordinates': [-80.434517, 40.563665]}",60.664822,40.072647044113964 | |
15051,40.562483,-79.867088,461,"{'type': 'Point', 'coordinates': [-79.867088, 40.562483]}",2.163218,213.10843382405287 | |
15052,40.658731,-80.430743,3483,"{'type': 'Point', 'coordinates': [-80.430743, 40.658731]}",45.374116,76.7618260595975 | |
15053,40.381003,-80.359886,154,"{'type': 'Point', 'coordinates': [-80.359886, 40.381003]}",0.22793,675.6460316763919 | |
15054,40.362377,-80.40768299999999,375,"{'type': 'Point', 'coordinates': [-80.40768299999999, 40.362377]}",0.338257,1108.6245074011772 | |
15055,40.306293,-80.12351600000001,1360,"{'type': 'Point', 'coordinates': [-80.12351600000001, 40.306293]}",1.781567,763.3729183353756 | |
15056,40.56389,-80.216015,1140,"{'type': 'Point', 'coordinates': [-80.216015, 40.56389]}",2.840069,401.3986984119048 | |
15057,40.358655999999996,-80.243904,13930,"{'type': 'Point', 'coordinates': [-80.243904, 40.358655999999996]}",141.819591,98.22338297393622 | |
15059,40.677919,-80.485549,4193,"{'type': 'Point', 'coordinates': [-80.485549, 40.677919]}",37.988628,110.37513647505249 | |
15060,40.36685,-80.29212700000001,790,"{'type': 'Point', 'coordinates': [-80.29212700000001, 40.36685]}",0.850164,929.232477498459 | |
15061,40.659903,-80.319709,12799,"{'type': 'Point', 'coordinates': [-80.319709, 40.659903]}",50.188862,255.01674056686122 | |
15062,40.148547,-79.8782,7731,"{'type': 'Point', 'coordinates': [-79.8782, 40.148547]}",9.140506,845.795626631611 | |
15063,40.191165999999996,-79.922476,11677,"{'type': 'Point', 'coordinates': [-79.922476, 40.191165999999996]}",75.45989,154.74446093149618 | |
15064,40.356339,-80.149929,382,"{'type': 'Point', 'coordinates': [-80.149929, 40.356339]}",2.132667,179.1184465272825 | |
15065,40.644034999999995,-79.725378,11588,"{'type': 'Point', 'coordinates': [-79.725378, 40.644034999999995]}",33.42425,346.6943910484154 | |
15066,40.747074,-80.25614300000001,12785,"{'type': 'Point', 'coordinates': [-80.25614300000001, 40.747074]}",56.448979,226.4877102560172 | |
15067,40.20727,-79.96243299999999,2281,"{'type': 'Point', 'coordinates': [-79.96243299999999, 40.20727]}",5.834133,390.97497434494557 | |
15068,40.557190999999996,-79.725802,38785,"{'type': 'Point', 'coordinates': [-79.725802, 40.557190999999996]}",119.866522,323.5682436835866 | |
15071,40.412105,-80.187799,9956,"{'type': 'Point', 'coordinates': [-80.187799, 40.412105]}",47.464115,209.75846700186025 | |
15072,40.139245,-79.85633,101,"{'type': 'Point', 'coordinates': [-79.85633, 40.139245]}",0.17602,573.798431996364 | |
15074,40.734035,-80.208354,8874,"{'type': 'Point', 'coordinates': [-80.208354, 40.734035]}",39.552764,224.35853029133438 | |
15075,40.586037,-79.826914,128,"{'type': 'Point', 'coordinates': [-79.826914, 40.586037]}",0.061427,2083.774236085109 | |
15076,40.607469,-79.834695,849,"{'type': 'Point', 'coordinates': [-79.834695, 40.607469]}",1.9081,444.94523347832927 | |
15077,40.625131,-80.415891,198,"{'type': 'Point', 'coordinates': [-80.415891, 40.625131]}",3.192034,62.02941447365536 | |
15078,40.355915,-80.384977,523,"{'type': 'Point', 'coordinates': [-80.384977, 40.355915]}",1.895633,275.8972860253013 | |
15081,40.575072,-80.236104,475,"{'type': 'Point', 'coordinates': [-80.236104, 40.575072]}",1.051641,451.6750488046776 | |
15082,40.377841,-80.212916,350,"{'type': 'Point', 'coordinates': [-80.212916, 40.377841]}",0.80943,432.40304905921454 | |
15083,40.262465999999996,-79.785744,952,"{'type': 'Point', 'coordinates': [-79.785744, 40.262465999999996]}",9.902599,96.13637793472198 | |
15084,40.62859,-79.803264,10130,"{'type': 'Point', 'coordinates': [-79.803264, 40.62859]}",72.503564,139.7172696227733 | |
15085,40.385703,-79.722447,7944,"{'type': 'Point', 'coordinates': [-79.722447, 40.385703]}",24.654176,322.21721788633295 | |
15086,40.674946999999996,-80.106364,300,"{'type': 'Point', 'coordinates': [-80.106364, 40.674946999999996]}",4.216592,71.14750490443467 | |
15087,40.189522,-79.853422,234,"{'type': 'Point', 'coordinates': [-79.853422, 40.189522]}",2.385805,98.08010294219352 | |
15088,40.272147,-79.89618,535,"{'type': 'Point', 'coordinates': [-79.89618, 40.272147]}",0.690853,774.4049747196581 | |
15089,40.225233,-79.748806,6262,"{'type': 'Point', 'coordinates': [-79.748806, 40.225233]}",50.562934,123.84566132970053 | |
15090,40.625015000000005,-80.06705799999999,21202,"{'type': 'Point', 'coordinates': [-80.06705799999999, 40.625015000000005]}",54.747937,387.26573386683043 | |
15101,40.580328,-79.955241,24292,"{'type': 'Point', 'coordinates': [-79.955241, 40.580328]}",52.639215,461.48104602243785 | |
15102,40.321356,-80.036549,29529,"{'type': 'Point', 'coordinates': [-80.036549, 40.321356]}",26.817979,1101.0896831562138 | |
15104,40.403883,-79.862605,9038,"{'type': 'Point', 'coordinates': [-79.862605, 40.403883]}",6.886813,1312.3632077711418 | |
15106,40.410121000000004,-80.114209,18536,"{'type': 'Point', 'coordinates': [-80.114209, 40.410121000000004]}",28.919472,640.9522276202 | |
15108,40.500471999999995,-80.201802,40153,"{'type': 'Point', 'coordinates': [-80.201802, 40.500471999999995]}",103.751055,387.01293206126917 | |
15110,40.373461,-79.850162,5565,"{'type': 'Point', 'coordinates': [-79.850162, 40.373461]}",5.272249,1055.5267780410218 | |
15112,40.404484000000004,-79.83770600000001,3292,"{'type': 'Point', 'coordinates': [-79.83770600000001, 40.404484000000004]}",2.165444,1520.2424999214943 | |
15116,40.551794,-79.94068100000001,14427,"{'type': 'Point', 'coordinates': [-79.94068100000001, 40.551794]}",20.902014,690.2205691757741 | |
15120,40.395879,-79.90754,18931,"{'type': 'Point', 'coordinates': [-79.90754, 40.395879]}",12.832568,1475.2308345453537 | |
15122,40.361206,-79.895641,20131,"{'type': 'Point', 'coordinates': [-79.895641, 40.361206]}",33.189221,606.552350234433 | |
15126,40.462482,-80.284442,7014,"{'type': 'Point', 'coordinates': [-80.284442, 40.462482]}",57.664228,121.6352016366195 | |
15129,40.293248,-79.996037,10920,"{'type': 'Point', 'coordinates': [-79.996037, 40.293248]}",20.859611,523.4996951764824 | |
15131,40.338791,-79.796071,8240,"{'type': 'Point', 'coordinates': [-79.796071, 40.338791]}",19.000209,433.6794400524752 | |
15132,40.339766999999995,-79.842782,21472,"{'type': 'Point', 'coordinates': [-79.842782, 40.339766999999995]}",15.785933,1360.1983487450505 | |
15133,40.326747,-79.866547,6432,"{'type': 'Point', 'coordinates': [-79.866547, 40.326747]}",7.879293,816.3168954371922 | |
15135,40.310836,-79.812893,5139,"{'type': 'Point', 'coordinates': [-79.812893, 40.310836]}",11.168175,460.1468010664231 | |
15136,40.463477000000005,-80.106688,21849,"{'type': 'Point', 'coordinates': [-80.106688, 40.463477000000005]}",29.78815,733.4795883598008 | |
15137,40.375735999999996,-79.80876500000001,10228,"{'type': 'Point', 'coordinates': [-79.80876500000001, 40.375735999999996]}",20.463154,499.8251980119976 | |
15139,40.522822999999995,-79.83625500000001,6307,"{'type': 'Point', 'coordinates': [-79.83625500000001, 40.522822999999995]}",5.576064,1131.084578656199 | |
15140,40.407779,-79.776344,3294,"{'type': 'Point', 'coordinates': [-79.776344, 40.407779]}",1.308208,2517.9482161858054 | |
15142,40.382059000000005,-80.11868199999999,1163,"{'type': 'Point', 'coordinates': [-80.11868199999999, 40.382059000000005]}",3.80257,305.8457832465938 | |
15143,40.568133,-80.14680899999999,19660,"{'type': 'Point', 'coordinates': [-80.14680899999999, 40.568133]}",97.118516,202.43307671628756 | |
15144,40.548049,-79.777952,4142,"{'type': 'Point', 'coordinates': [-79.777952, 40.548049]}",7.950758,520.9566182243252 | |
15145,40.415279999999996,-79.824086,7132,"{'type': 'Point', 'coordinates': [-79.824086, 40.415279999999996]}",5.103233,1397.545438352511 | |
15146,40.426324,-79.761379,28323,"{'type': 'Point', 'coordinates': [-79.761379, 40.426324]}",51.047095,554.8405839744652 | |
15147,40.497284,-79.83077,17395,"{'type': 'Point', 'coordinates': [-79.83077, 40.497284]}",27.070529,642.5807194236951 | |
15148,40.393451,-79.79512,2814,"{'type': 'Point', 'coordinates': [-79.79512, 40.393451]}",2.892453,972.8766552127207 | |
15201,40.47441,-79.950968,12713,"{'type': 'Point', 'coordinates': [-79.950968, 40.47441]}",7.105862,1789.0862501973722 | |
15202,40.504968,-80.067821,19685,"{'type': 'Point', 'coordinates': [-80.067821, 40.504968]}",12.395976,1588.015336589874 | |
15203,40.426207,-79.975672,9949,"{'type': 'Point', 'coordinates': [-79.975672, 40.426207]}",4.386024,2268.3414409041084 | |
15204,40.456866999999995,-80.06063,8329,"{'type': 'Point', 'coordinates': [-80.06063, 40.456866999999995]}",5.055288,1647.5817005875826 | |
15205,40.43809,-80.099088,21865,"{'type': 'Point', 'coordinates': [-80.099088, 40.43809]}",26.690517,819.2048134549061 | |
15206,40.472272,-79.913156,28615,"{'type': 'Point', 'coordinates': [-79.913156, 40.472272]}",13.193443,2168.880405213408 | |
15207,40.403791999999996,-79.928873,11268,"{'type': 'Point', 'coordinates': [-79.928873, 40.403791999999996]}",13.311157,846.5079331571253 | |
15208,40.453192,-79.89949200000001,10406,"{'type': 'Point', 'coordinates': [-79.89949200000001, 40.453192]}",4.167713,2496.8130003193596 | |
15209,40.498846,-79.969725,12438,"{'type': 'Point', 'coordinates': [-79.969725, 40.498846]}",12.073053,1030.2282281043576 | |
15210,40.406951,-79.984987,25954,"{'type': 'Point', 'coordinates': [-79.984987, 40.406951]}",12.411778,2091.0783289871924 | |
15211,40.430322,-80.015624,11081,"{'type': 'Point', 'coordinates': [-80.015624, 40.430322]}",4.000857,2769.65660107322 | |
15212,40.480249,-80.049616,27895,"{'type': 'Point', 'coordinates': [-80.049616, 40.480249]}",17.028222,1638.1628099516204 | |
15213,40.444041999999996,-79.955249,30844,"{'type': 'Point', 'coordinates': [-79.955249, 40.444041999999996]}",5.516731,5590.992201722361 | |
15214,40.486557,-80.013953,14352,"{'type': 'Point', 'coordinates': [-80.013953, 40.486557]}",12.193437,1177.0266250606783 | |
15215,40.501295,-79.912677,12615,"{'type': 'Point', 'coordinates': [-79.912677, 40.501295]}",16.700947,755.3463884413261 | |
15216,40.402626,-80.034849,23350,"{'type': 'Point', 'coordinates': [-80.034849, 40.402626]}",8.864933,2633.973657781734 | |
15217,40.430821,-79.920089,27220,"{'type': 'Point', 'coordinates': [-79.920089, 40.430821]}",9.954724,2734.3801797016167 | |
15218,40.42361,-79.889803,13851,"{'type': 'Point', 'coordinates': [-79.889803, 40.42361]}",6.407804,2161.5829697662416 | |
15219,40.443184,-79.983064,16696,"{'type': 'Point', 'coordinates': [-79.983064, 40.443184]}",6.983947,2390.6252438628185 | |
15220,40.419506,-80.047768,17718,"{'type': 'Point', 'coordinates': [-80.047768, 40.419506]}",12.937699,1369.4861814299436 | |
15221,40.435790999999995,-79.86426999999999,31060,"{'type': 'Point', 'coordinates': [-79.86426999999999, 40.435790999999995]}",15.941088,1948.4240975270948 | |
15222,40.447691,-79.993445,3294,"{'type': 'Point', 'coordinates': [-79.993445, 40.447691]}",2.780754,1184.5708034583427 | |
15223,40.505181,-79.952226,7236,"{'type': 'Point', 'coordinates': [-79.952226, 40.505181]}",5.127333,1411.260005932909 | |
15224,40.464234000000005,-79.944801,10141,"{'type': 'Point', 'coordinates': [-79.944801, 40.464234000000005]}",2.606407,3890.7967942075047 | |
15225,40.506679999999996,-80.113844,1084,"{'type': 'Point', 'coordinates': [-80.113844, 40.506679999999996]}",6.074582,178.44849242301774 | |
15226,40.395053000000004,-80.013952,13974,"{'type': 'Point', 'coordinates': [-80.013952, 40.395053000000004]}",6.561889,2129.5697016514605 | |
15227,40.375708,-79.970569,28156,"{'type': 'Point', 'coordinates': [-79.970569, 40.375708]}",16.002434,1759.4823387492177 | |
15228,40.370667,-80.044135,17595,"{'type': 'Point', 'coordinates': [-80.044135, 40.370667]}",8.134233,2163.0804035242168 | |
15229,40.520353,-80.037053,13825,"{'type': 'Point', 'coordinates': [-80.037053, 40.520353]}",10.473904,1319.9471753798775 | |
15232,40.452517,-79.931939,11374,"{'type': 'Point', 'coordinates': [-79.931939, 40.452517]}",2.058649,5524.982646386053 | |
15233,40.460862,-80.03491700000001,4451,"{'type': 'Point', 'coordinates': [-80.03491700000001, 40.460862]}",4.382477,1015.6356781792581 | |
15234,40.368140000000004,-80.017794,14056,"{'type': 'Point', 'coordinates': [-80.017794, 40.368140000000004]}",8.200178,1714.109132752972 | |
15235,40.459788,-79.82243000000001,34580,"{'type': 'Point', 'coordinates': [-79.82243000000001, 40.459788]}",37.962737,910.8932266922694 | |
15236,40.347406,-79.975481,29724,"{'type': 'Point', 'coordinates': [-79.975481, 40.347406]}",28.750621,1033.8559295814864 | |
15237,40.549607,-80.043513,41895,"{'type': 'Point', 'coordinates': [-80.043513, 40.549607]}",62.897754,666.081017773703 | |
15238,40.537201,-79.87944300000001,13162,"{'type': 'Point', 'coordinates': [-79.87944300000001, 40.537201]}",44.452409,296.09193958419667 | |
15239,40.483678999999995,-79.738076,21024,"{'type': 'Point', 'coordinates': [-79.738076, 40.483678999999995]}",41.40568,507.75642375635425 | |
15241,40.333518,-80.081412,20395,"{'type': 'Point', 'coordinates': [-80.081412, 40.333518]}",26.950705,756.7520033334936 | |
15243,40.375510999999996,-80.072372,13406,"{'type': 'Point', 'coordinates': [-80.072372, 40.375510999999996]}",7.796597,1719.4681217972404 | |
15260,40.443915000000004,-79.95325600000001,0,"{'type': 'Point', 'coordinates': [-79.95325600000001, 40.443915000000004]}",0.20962,0.0 | |
15290,40.457329,-80.01929399999999,0,"{'type': 'Point', 'coordinates': [-80.01929399999999, 40.457329]}",0.103613,0.0 | |
15301,40.153494,-80.25346400000001,49331,"{'type': 'Point', 'coordinates': [-80.25346400000001, 40.153494]}",316.463014,155.88235533900337 | |
15310,39.792724,-80.482197,290,"{'type': 'Point', 'coordinates': [-80.482197, 39.792724]}",48.03087,6.037783617077934 | |
15311,40.045914,-80.183933,1391,"{'type': 'Point', 'coordinates': [-80.183933, 40.045914]}",60.948563,22.822523313634154 | |
15312,40.251528,-80.440702,3579,"{'type': 'Point', 'coordinates': [-80.440702, 40.251528]}",194.25305,18.424421135215123 | |
15313,40.06796,-80.023705,377,"{'type': 'Point', 'coordinates': [-80.023705, 40.06796]}",1.817018,207.48280974651874 | |
15314,40.146306,-80.016809,3788,"{'type': 'Point', 'coordinates': [-80.016809, 40.146306]}",44.86086,84.43886274137411 | |
15315,39.758289000000005,-79.98268399999999,776,"{'type': 'Point', 'coordinates': [-79.98268399999999, 39.758289000000005]}",3.425858,226.51259917953402 | |
15316,39.724269,-80.25241199999999,131,"{'type': 'Point', 'coordinates': [-80.25241199999999, 39.724269]}",1.02314,128.03721875794125 | |
15317,40.276322,-80.171662,36535,"{'type': 'Point', 'coordinates': [-80.171662, 40.276322]}",119.341602,306.13800542077524 | |
15320,39.876241,-79.99027199999999,5384,"{'type': 'Point', 'coordinates': [-79.99027199999999, 39.876241]}",101.429757,53.081069690426254 | |
15321,40.323366,-80.187919,1676,"{'type': 'Point', 'coordinates': [-80.187919, 40.323366]}",2.817198,594.9173611510445 | |
15322,39.98823,-80.05328399999999,2018,"{'type': 'Point', 'coordinates': [-80.05328399999999, 39.98823]}",36.925687,54.65030345948607 | |
15323,40.112251,-80.405659,4542,"{'type': 'Point', 'coordinates': [-80.405659, 40.112251]}",179.061614,25.365570534843947 | |
15324,40.100777,-80.065715,632,"{'type': 'Point', 'coordinates': [-80.065715, 40.100777]}",0.995297,634.986340760597 | |
15325,39.949428999999995,-79.963374,439,"{'type': 'Point', 'coordinates': [-79.963374, 39.949428999999995]}",0.626186,701.0696502317203 | |
15327,39.744871,-79.960854,1527,"{'type': 'Point', 'coordinates': [-79.960854, 39.744871]}",52.254309,29.222470437796815 | |
15329,40.027715,-80.279927,1709,"{'type': 'Point', 'coordinates': [-80.279927, 40.027715]}",105.021587,16.27284493425147 | |
15330,40.179368,-80.089973,5299,"{'type': 'Point', 'coordinates': [-80.089973, 40.179368]}",116.658842,45.42304645883593 | |
15331,40.10535,-80.022571,1090,"{'type': 'Point', 'coordinates': [-80.022571, 40.10535]}",2.01558,540.7872671886008 | |
15332,40.240209,-79.993477,8148,"{'type': 'Point', 'coordinates': [-79.993477, 40.240209]}",71.137328,114.53902232594399 | |
15333,40.030786,-80.01321,2150,"{'type': 'Point', 'coordinates': [-80.01321, 40.030786]}",35.945075,59.81347931531649 | |
15334,39.808312,-79.967895,113,"{'type': 'Point', 'coordinates': [-79.967895, 39.808312]}",4.910846,23.010291913043087 | |
15337,39.952162,-80.378188,744,"{'type': 'Point', 'coordinates': [-80.378188, 39.952162]}",82.675561,8.999031769497154 | |
15338,39.786257,-80.00214100000001,1606,"{'type': 'Point', 'coordinates': [-80.00214100000001, 39.786257]}",49.664697,32.336852875594914 | |
15340,40.283226,-80.317491,1469,"{'type': 'Point', 'coordinates': [-80.317491, 40.283226]}",40.02301,36.703886089527 | |
15341,39.8242,-80.343863,869,"{'type': 'Point', 'coordinates': [-80.343863, 39.8242]}",127.461664,6.817736193997907 | |
15342,40.244232000000004,-80.22118499999999,4818,"{'type': 'Point', 'coordinates': [-80.22118499999999, 40.244232000000004]}",8.654184,556.7249321253164 | |
15344,39.915746999999996,-80.061424,1450,"{'type': 'Point', 'coordinates': [-80.061424, 39.915746999999996]}",37.106479,39.07673374237421 | |
15345,40.022622,-80.105047,1642,"{'type': 'Point', 'coordinates': [-80.105047, 40.022622]}",50.263461,32.667865828021675 | |
15346,39.935438,-80.075344,749,"{'type': 'Point', 'coordinates': [-80.075344, 39.935438]}",2.351768,318.48379602069593 | |
15347,40.220317,-80.221104,582,"{'type': 'Point', 'coordinates': [-80.221104, 40.220317]}",1.541585,377.5335125860721 | |
15348,39.985793,-79.996258,283,"{'type': 'Point', 'coordinates': [-79.996258, 39.985793]}",0.593614,476.7407776770764 | |
15349,39.762403000000006,-80.093925,1737,"{'type': 'Point', 'coordinates': [-80.093925, 39.762403000000006]}",100.063187,17.359031348861595 | |
15350,40.293306,-80.200808,425,"{'type': 'Point', 'coordinates': [-80.200808, 40.293306]}",0.137215,3097.3290092191087 | |
15351,39.884305,-79.930223,901,"{'type': 'Point', 'coordinates': [-79.930223, 39.884305]}",3.1672,284.47840363728216 | |
15352,39.752215,-80.382774,987,"{'type': 'Point', 'coordinates': [-80.382774, 39.752215]}",128.837828,7.660793536506995 | |
15353,39.962123999999996,-80.31095400000001,64,"{'type': 'Point', 'coordinates': [-80.31095400000001, 39.962123999999996]}",0.153322,417.4221572898866 | |
15357,39.941608,-79.980409,1661,"{'type': 'Point', 'coordinates': [-79.980409, 39.941608]}",21.932623,75.73193593853321 | |
15358,40.055388,-80.003007,923,"{'type': 'Point', 'coordinates': [-80.003007, 40.055388]}",2.18967,421.52470463585837 | |
15359,39.876488,-80.275766,174,"{'type': 'Point', 'coordinates': [-80.275766, 39.876488]}",0.367729,473.1745388587792 | |
15360,40.084912,-80.082379,1731,"{'type': 'Point', 'coordinates': [-80.082379, 40.084912]}",66.293864,26.11101383379916 | |
15361,40.329012,-80.258411,151,"{'type': 'Point', 'coordinates': [-80.258411, 40.329012]}",0.245813,614.288097049383 | |
15362,39.772469,-80.213932,767,"{'type': 'Point', 'coordinates': [-80.213932, 39.772469]}",67.154103,11.421491252738495 | |
15363,40.251799,-80.19805,760,"{'type': 'Point', 'coordinates': [-80.19805, 40.251799]}",0.597926,1271.0602984315785 | |
15364,39.946321000000005,-80.30478000000001,869,"{'type': 'Point', 'coordinates': [-80.30478000000001, 39.946321000000005]}",96.401074,9.014422391186223 | |
15366,40.159548,-79.973027,164,"{'type': 'Point', 'coordinates': [-79.973027, 40.159548]}",0.922037,177.86704871930303 | |
15367,40.261092,-80.05566800000001,8731,"{'type': 'Point', 'coordinates': [-80.05566800000001, 40.261092]}",23.901563,365.28991848775746 | |
15368,40.013872,-79.989284,473,"{'type': 'Point', 'coordinates': [-79.989284, 40.013872]}",0.670728,705.2038978542718 | |
15370,39.880615,-80.17119699999999,14870,"{'type': 'Point', 'coordinates': [-80.17119699999999, 39.880615]}",383.550826,38.76930772142308 | |
15376,40.108897999999996,-80.478967,1740,"{'type': 'Point', 'coordinates': [-80.478967, 40.108897999999996]}",99.903899,17.41673765905773 | |
15377,39.988535,-80.44902900000001,724,"{'type': 'Point', 'coordinates': [-80.44902900000001, 39.988535]}",106.677307,6.786822993197607 | |
15378,40.278384,-80.275081,106,"{'type': 'Point', 'coordinates': [-80.275081, 40.278384]}",0.145167,730.1935012778387 | |
15379,40.243194,-80.42517600000001,132,"{'type': 'Point', 'coordinates': [-80.42517600000001, 40.243194]}",1.036168,127.39246917488283 | |
15380,39.867562,-80.467119,719,"{'type': 'Point', 'coordinates': [-80.467119, 39.867562]}",100.369882,7.16350349002104 | |
15401,39.899926,-79.745662,32288,"{'type': 'Point', 'coordinates': [-79.745662, 39.899926]}",151.203516,213.54000789240905 | |
15410,39.911791,-79.90198199999999,905,"{'type': 'Point', 'coordinates': [-79.90198199999999, 39.911791]}",27.998454,32.32321327456152 | |
15411,39.74858,-79.34689200000001,661,"{'type': 'Point', 'coordinates': [-79.34689200000001, 39.74858]}",49.757687,13.284379557273231 | |
15412,40.088771,-79.859227,470,"{'type': 'Point', 'coordinates': [-79.859227, 40.088771]}",5.571393,84.35951296201866 | |
15413,39.985307,-79.871134,551,"{'type': 'Point', 'coordinates': [-79.871134, 39.985307]}",1.912871,288.04869748142977 | |
15417,40.008601,-79.91826800000001,9469,"{'type': 'Point', 'coordinates': [-79.91826800000001, 40.008601]}",58.245493,162.57051854638777 | |
15419,40.046956,-79.89498499999999,4492,"{'type': 'Point', 'coordinates': [-79.89498499999999, 40.046956]}",4.927939,911.5372572590691 | |
15420,39.960141,-79.865229,251,"{'type': 'Point', 'coordinates': [-79.865229, 39.960141]}",1.188538,211.18382416043912 | |
15421,39.845848,-79.59719799999999,112,"{'type': 'Point', 'coordinates': [-79.59719799999999, 39.845848]}",0.561967,199.29995889438348 | |
15422,39.981184000000006,-79.811587,220,"{'type': 'Point', 'coordinates': [-79.811587, 39.981184000000006]}",0.234243,939.1956216407747 | |
15423,40.089905,-79.932521,1781,"{'type': 'Point', 'coordinates': [-79.932521, 40.089905]}",42.69449,41.714984767355226 | |
15424,39.819520000000004,-79.35935,2489,"{'type': 'Point', 'coordinates': [-79.35935, 39.819520000000004]}",192.504668,12.929556596518479 | |
15425,40.029709000000004,-79.54884,19270,"{'type': 'Point', 'coordinates': [-79.54884, 40.029709000000004]}",145.638131,132.3142494873132 | |
15427,40.069948,-79.974811,1091,"{'type': 'Point', 'coordinates': [-79.974811, 40.069948]}",27.075299,40.295030536874215 | |
15428,40.084267,-79.68202600000001,1806,"{'type': 'Point', 'coordinates': [-79.68202600000001, 40.084267]}",54.294214,33.263212908837765 | |
15429,40.002852000000004,-79.938276,126,"{'type': 'Point', 'coordinates': [-79.938276, 40.002852000000004]}",1.22744,102.65267548719285 | |
15430,40.039411,-79.654384,314,"{'type': 'Point', 'coordinates': [-79.654384, 40.039411]}",1.013473,309.82571810003816 | |
15431,39.949851,-79.596338,4744,"{'type': 'Point', 'coordinates': [-79.596338, 39.949851]}",127.235793,37.285105772084115 | |
15432,40.113849,-79.859899,427,"{'type': 'Point', 'coordinates': [-79.859899, 40.113849]}",1.992643,214.28825936206334 | |
15433,39.982683,-79.94873199999999,741,"{'type': 'Point', 'coordinates': [-79.94873199999999, 39.982683]}",39.276953,18.866025579937425 | |
15434,40.081866999999995,-79.887389,313,"{'type': 'Point', 'coordinates': [-79.887389, 40.081866999999995]}",0.812628,385.1700901273399 | |
15435,39.942665999999996,-79.84956600000001,437,"{'type': 'Point', 'coordinates': [-79.84956600000001, 39.942665999999996]}",2.873635,152.0722012364131 | |
15436,39.817811999999996,-79.724778,2740,"{'type': 'Point', 'coordinates': [-79.724778, 39.817811999999996]}",18.106084,151.3303484066461 | |
15437,39.780202,-79.612138,2573,"{'type': 'Point', 'coordinates': [-79.612138, 39.780202]}",180.997496,14.215666276399757 | |
15438,40.073207000000004,-79.85777,2221,"{'type': 'Point', 'coordinates': [-79.85777, 40.073207000000004]}",31.095469,71.42519702790139 | |
15440,39.735268,-79.616939,349,"{'type': 'Point', 'coordinates': [-79.616939, 39.735268]}",39.287457,8.883242303007801 | |
15442,40.019082,-79.839708,2105,"{'type': 'Point', 'coordinates': [-79.839708, 40.019082]}",38.93073,54.070396316740016 | |
15443,39.919668,-79.880747,377,"{'type': 'Point', 'coordinates': [-79.880747, 39.919668]}",4.397232,85.73575376509586 | |
15444,40.011976000000004,-79.908804,517,"{'type': 'Point', 'coordinates': [-79.908804, 40.011976000000004]}",1.637965,315.63555997838785 | |
15445,39.876113000000004,-79.667849,2693,"{'type': 'Point', 'coordinates': [-79.667849, 39.876113000000004]}",54.411246,49.493444792644524 | |
15446,40.030982,-79.402992,324,"{'type': 'Point', 'coordinates': [-79.402992, 40.030982]}",3.882526,83.45082557077532 | |
15447,39.943822,-79.93689300000001,181,"{'type': 'Point', 'coordinates': [-79.93689300000001, 39.943822]}",1.013164,178.64827411949102 | |
15448,40.136047999999995,-79.732527,192,"{'type': 'Point', 'coordinates': [-79.732527, 40.136047999999995]}",2.62992,73.00602299689724 | |
15449,39.964329,-79.783355,184,"{'type': 'Point', 'coordinates': [-79.783355, 39.964329]}",0.40422,455.1976646380684 | |
15450,40.001137,-79.974194,2323,"{'type': 'Point', 'coordinates': [-79.974194, 40.001137]}",4.663638,498.1089870182892 | |
15451,39.736891,-79.83578,955,"{'type': 'Point', 'coordinates': [-79.83578, 39.736891]}",26.676367,35.79947749256861 | |
15454,39.863151,-79.87173299999999,237,"{'type': 'Point', 'coordinates': [-79.87173299999999, 39.863151]}",3.343242,70.88927454249497 | |
15455,40.0033,-79.642276,298,"{'type': 'Point', 'coordinates': [-79.642276, 40.0033]}",1.042216,285.92921237056424 | |
15456,39.926646000000005,-79.65210400000001,2976,"{'type': 'Point', 'coordinates': [-79.65210400000001, 39.926646000000005]}",19.787174,150.4004563764386 | |
15458,39.890125,-79.851171,2379,"{'type': 'Point', 'coordinates': [-79.851171, 39.890125]}",40.540935,58.68142902969554 | |
15459,39.78097,-79.485501,1763,"{'type': 'Point', 'coordinates': [-79.485501, 39.78097]}",87.434484,20.163669062197474 | |
15460,39.807966,-79.907168,120,"{'type': 'Point', 'coordinates': [-79.907168, 39.807966]}",1.265916,94.79301944204829 | |
15461,39.842678,-79.899964,4333,"{'type': 'Point', 'coordinates': [-79.899964, 39.842678]}",27.968265,154.92559155886144 | |
15462,40.064295,-79.378703,398,"{'type': 'Point', 'coordinates': [-79.378703, 40.064295]}",3.657342,108.82219929117923 | |
15463,39.965563,-79.899834,64,"{'type': 'Point', 'coordinates': [-79.899834, 39.965563]}",0.816354,78.39736192877109 | |
15464,39.930138,-79.43620200000001,1536,"{'type': 'Point', 'coordinates': [-79.43620200000001, 39.930138]}",120.479479,12.749059115702185 | |
15466,40.074612,-79.891797,458,"{'type': 'Point', 'coordinates': [-79.891797, 40.074612]}",1.468539,311.87459100507374 | |
15467,39.784799,-79.926068,141,"{'type': 'Point', 'coordinates': [-79.926068, 39.784799]}",2.975503,47.38694600543169 | |
15468,39.950112,-79.83256999999999,2303,"{'type': 'Point', 'coordinates': [-79.83256999999999, 39.950112]}",26.038425,88.44620978419394 | |
15469,40.009815,-79.418399,2331,"{'type': 'Point', 'coordinates': [-79.418399, 40.009815]}",88.21914,26.422837493088235 | |
15470,39.867154,-79.53201800000001,982,"{'type': 'Point', 'coordinates': [-79.53201800000001, 39.867154]}",82.19672,11.946948734694036 | |
15472,39.919373,-79.716851,306,"{'type': 'Point', 'coordinates': [-79.716851, 39.919373]}",0.630504,485.3260248943703 | |
15473,40.054579,-79.82315200000001,3862,"{'type': 'Point', 'coordinates': [-79.82315200000001, 40.054579]}",60.816994,63.50198761878958 | |
15474,39.751391999999996,-79.893487,2049,"{'type': 'Point', 'coordinates': [-79.893487, 39.751391999999996]}",19.17736,106.8447377532674 | |
15475,39.951648,-79.877545,1356,"{'type': 'Point', 'coordinates': [-79.877545, 39.951648]}",8.37106,161.98665401992102 | |
15476,39.86973,-79.920611,157,"{'type': 'Point', 'coordinates': [-79.920611, 39.86973]}",0.098155,1599.5109775355304 | |
15477,40.078203,-79.863966,855,"{'type': 'Point', 'coordinates': [-79.863966, 40.078203]}",0.686268,1245.8689608141426 | |
15478,39.787462,-79.80465699999999,6446,"{'type': 'Point', 'coordinates': [-79.80465699999999, 39.787462]}",162.640961,39.633312299476636 | |
15479,40.151237,-79.707539,2113,"{'type': 'Point', 'coordinates': [-79.707539, 40.151237]}",55.741184,37.90733975080257 | |
15480,39.985621,-79.773567,1946,"{'type': 'Point', 'coordinates': [-79.773567, 39.985621]}",46.937598,41.45930092119328 | |
15482,40.061487,-79.766067,604,"{'type': 'Point', 'coordinates': [-79.766067, 40.061487]}",3.035149,199.00176235170002 | |
15483,40.08302,-79.850922,513,"{'type': 'Point', 'coordinates': [-79.850922, 40.08302]}",0.808719,634.3365248003324 | |
15484,39.892689000000004,-79.783677,328,"{'type': 'Point', 'coordinates': [-79.783677, 39.892689000000004]}",1.647826,199.05014243008668 | |
15486,40.025886,-79.711164,2303,"{'type': 'Point', 'coordinates': [-79.711164, 40.025886]}",51.000428,45.156483784802745 | |
15489,39.966381,-79.696055,389,"{'type': 'Point', 'coordinates': [-79.696055, 39.966381]}",2.417234,160.92773806755986 | |
15490,40.072377,-79.454483,628,"{'type': 'Point', 'coordinates': [-79.454483, 40.072377]}",24.869944,25.251363654055673 | |
15492,40.118305,-79.764298,108,"{'type': 'Point', 'coordinates': [-79.764298, 40.118305]}",1.726931,62.53868857528182 | |
15501,40.039742,-79.12982,16861,"{'type': 'Point', 'coordinates': [-79.12982, 40.039742]}",348.419468,48.392818279603134 | |
15502,40.041026,-79.24150999999999,191,"{'type': 'Point', 'coordinates': [-79.24150999999999, 40.041026]}",15.529162,12.299440240239623 | |
15510,39.966968,-79.040036,2229,"{'type': 'Point', 'coordinates': [-79.040036, 39.966968]}",0.975777,2284.3334081455087 | |
15520,40.106367,-79.060539,293,"{'type': 'Point', 'coordinates': [-79.060539, 40.106367]}",1.754126,167.0347512094342 | |
15521,40.208045,-78.63035500000001,1872,"{'type': 'Point', 'coordinates': [-78.63035500000001, 40.208045]}",92.176989,20.30875623416165 | |
15522,39.941732,-78.54840899999999,12036,"{'type': 'Point', 'coordinates': [-78.54840899999999, 39.941732]}",487.724861,24.677848029567638 | |
15530,39.940809,-78.924027,5368,"{'type': 'Point', 'coordinates': [-78.924027, 39.940809]}",226.682993,23.680647272907677 | |
15531,40.183935999999996,-79.08209699999999,3861,"{'type': 'Point', 'coordinates': [-79.08209699999999, 40.183935999999996]}",153.266781,25.19136876763922 | |
15532,39.762035,-79.060801,142,"{'type': 'Point', 'coordinates': [-79.060801, 39.762035]}",1.748646,81.205687143081 | |
15533,39.981846999999995,-78.241926,1370,"{'type': 'Point', 'coordinates': [-78.241926, 39.981846999999995]}",97.198862,14.094815225305826 | |
15534,39.899265,-78.691197,932,"{'type': 'Point', 'coordinates': [-78.691197, 39.899265]}",125.689774,7.415082152984061 | |
15535,39.821183000000005,-78.444171,2203,"{'type': 'Point', 'coordinates': [-78.444171, 39.821183000000005]}",408.902754,5.3875890500849986 | |
15536,39.954555,-78.20355500000001,459,"{'type': 'Point', 'coordinates': [-78.20355500000001, 39.954555]}",88.066733,5.211956710146157 | |
15537,40.000384999999994,-78.366843,7952,"{'type': 'Point', 'coordinates': [-78.366843, 40.000384999999994]}",292.776622,27.16063852939734 | |
15538,39.863715,-78.834458,824,"{'type': 'Point', 'coordinates': [-78.834458, 39.863715]}",192.700207,4.276072209927621 | |
15539,40.128409000000005,-78.59138,498,"{'type': 'Point', 'coordinates': [-78.59138, 40.128409000000005]}",3.567577,139.5905400219813 | |
15540,39.797439000000004,-79.239272,290,"{'type': 'Point', 'coordinates': [-79.239272, 39.797439000000004]}",94.772471,3.0599603127368074 | |
15541,40.043876000000004,-78.971391,3721,"{'type': 'Point', 'coordinates': [-78.971391, 40.043876000000004]}",93.795321,39.671488517001826 | |
15542,39.875694,-79.07154399999999,1175,"{'type': 'Point', 'coordinates': [-79.07154399999999, 39.875694]}",84.774164,13.860354907186109 | |
15544,40.135638,-79.093436,264,"{'type': 'Point', 'coordinates': [-79.093436, 40.135638]}",1.506528,175.23736697890777 | |
15545,39.802122,-78.75249699999999,2879,"{'type': 'Point', 'coordinates': [-78.75249699999999, 39.802122]}",128.50299,22.4041479501761 | |
15546,40.136624,-79.047988,386,"{'type': 'Point', 'coordinates': [-79.047988, 40.136624]}",1.998152,193.1784969311644 | |
15547,40.162146,-79.071708,504,"{'type': 'Point', 'coordinates': [-79.071708, 40.162146]}",2.346922,214.74936107804177 | |
15550,39.978253,-78.649618,1699,"{'type': 'Point', 'coordinates': [-78.649618, 39.978253]}",140.99781,12.049832547044526 | |
15551,39.868154,-79.284798,860,"{'type': 'Point', 'coordinates': [-79.284798, 39.868154]}",93.057729,9.241575194683723 | |
15552,39.793279999999996,-78.990962,6115,"{'type': 'Point', 'coordinates': [-78.990962, 39.793279999999996]}",270.465897,22.609135080715927 | |
15554,40.122918,-78.621785,2553,"{'type': 'Point', 'coordinates': [-78.621785, 40.122918]}",92.661221,27.551978836972157 | |
15555,40.092408,-79.082247,112,"{'type': 'Point', 'coordinates': [-79.082247, 40.092408]}",0.194409,576.105015714293 | |
15557,39.927663,-79.21837099999999,3684,"{'type': 'Point', 'coordinates': [-79.21837099999999, 39.927663]}",235.407438,15.649463038631769 | |
15558,39.74842,-79.110357,2126,"{'type': 'Point', 'coordinates': [-79.110357, 39.74842]}",94.167865,22.576703846901488 | |
15559,40.060248,-78.69106500000001,1968,"{'type': 'Point', 'coordinates': [-78.69106500000001, 40.060248]}",122.653493,16.04520141957963 | |
15560,40.016558,-78.907139,175,"{'type': 'Point', 'coordinates': [-78.907139, 40.016558]}",0.344073,508.61299782313637 | |
15561,40.095599,-79.087672,168,"{'type': 'Point', 'coordinates': [-79.087672, 40.095599]}",1.481921,113.36636703306047 | |
15562,39.739533,-79.134556,201,"{'type': 'Point', 'coordinates': [-79.134556, 39.739533]}",4.219404,47.637059641598675 | |
15563,40.097575,-78.92891999999999,3345,"{'type': 'Point', 'coordinates': [-78.92891999999999, 40.097575]}",147.030979,22.75030760694316 | |
15564,39.729993,-78.837774,50,"{'type': 'Point', 'coordinates': [-78.837774, 39.729993]}",3.126152,15.994103933525945 | |
15601,40.314981,-79.534803,59483,"{'type': 'Point', 'coordinates': [-79.534803, 40.314981]}",223.663477,265.94865106205964 | |
15610,40.146956,-79.417201,3738,"{'type': 'Point', 'coordinates': [-79.417201, 40.146956]}",100.052708,37.36030812879148 | |
15611,40.306515000000005,-79.65264,543,"{'type': 'Point', 'coordinates': [-79.65264, 40.306515000000005]}",1.784184,304.3408078987369 | |
15612,40.137347,-79.599717,474,"{'type': 'Point', 'coordinates': [-79.599717, 40.137347]}",6.494183,72.98839592293596 | |
15613,40.546577,-79.561663,13933,"{'type': 'Point', 'coordinates': [-79.561663, 40.546577]}",156.837556,88.83714051244205 | |
15615,40.365308,-79.734156,387,"{'type': 'Point', 'coordinates': [-79.734156, 40.365308]}",2.548095,151.8781678077152 | |
15616,40.222755,-79.553297,23,"{'type': 'Point', 'coordinates': [-79.553297, 40.222755]}",0.156372,147.08515591026526 | |
15617,40.268182,-79.655373,367,"{'type': 'Point', 'coordinates': [-79.655373, 40.268182]}",1.149102,319.37982877064 | |
15618,40.571026,-79.43986899999999,2634,"{'type': 'Point', 'coordinates': [-79.43986899999999, 40.571026]}",72.569453,36.29626366344528 | |
15620,40.323545,-79.338689,911,"{'type': 'Point', 'coordinates': [-79.338689, 40.323545]}",2.475983,367.9346748341972 | |
15621,40.213857,-79.483456,47,"{'type': 'Point', 'coordinates': [-79.483456, 40.213857]}",0.016634,2825.5380545869907 | |
15622,40.049578000000004,-79.32919,1387,"{'type': 'Point', 'coordinates': [-79.32919, 40.049578000000004]}",83.894428,16.532683195599116 | |
15623,40.367199,-79.62034200000001,762,"{'type': 'Point', 'coordinates': [-79.62034200000001, 40.367199]}",4.507345,169.05739409785585 | |
15624,40.364867,-79.470198,410,"{'type': 'Point', 'coordinates': [-79.470198, 40.364867]}",1.609122,254.79733668422904 | |
15625,40.269506,-79.679749,144,"{'type': 'Point', 'coordinates': [-79.679749, 40.269506]}",1.519025,94.79764980826516 | |
15626,40.406993,-79.57616,5105,"{'type': 'Point', 'coordinates': [-79.57616, 40.406993]}",10.218322,499.5927902839625 | |
15627,40.351006,-79.300048,6544,"{'type': 'Point', 'coordinates': [-79.300048, 40.351006]}",73.743886,88.73956004976466 | |
15628,40.100553000000005,-79.373372,525,"{'type': 'Point', 'coordinates': [-79.373372, 40.100553000000005]}",6.660461,78.82337273651179 | |
15629,40.597437,-79.562908,676,"{'type': 'Point', 'coordinates': [-79.562908, 40.597437]}",0.380967,1774.4319061756005 | |
15631,40.087482,-79.585356,1075,"{'type': 'Point', 'coordinates': [-79.585356, 40.087482]}",2.022055,531.6373689142976 | |
15632,40.439145,-79.600116,9363,"{'type': 'Point', 'coordinates': [-79.600116, 40.439145]}",71.931769,130.16501790745616 | |
15633,40.357318,-79.523907,293,"{'type': 'Point', 'coordinates': [-79.523907, 40.357318]}",1.632075,179.52606344683915 | |
15634,40.323945,-79.604923,523,"{'type': 'Point', 'coordinates': [-79.604923, 40.323945]}",0.391411,1336.1913691746015 | |
15635,40.347904,-79.50155699999999,220,"{'type': 'Point', 'coordinates': [-79.50155699999999, 40.347904]}",0.795714,276.48124828770136 | |
15636,40.36547,-79.657084,3946,"{'type': 'Point', 'coordinates': [-79.657084, 40.36547]}",7.678174,513.9242741828981 | |
15637,40.264955,-79.71181800000001,1861,"{'type': 'Point', 'coordinates': [-79.71181800000001, 40.264955]}",12.093562,153.88352910416302 | |
15638,40.264322,-79.398961,288,"{'type': 'Point', 'coordinates': [-79.398961, 40.264322]}",0.461824,623.6141906873614 | |
15639,40.203514,-79.593806,2301,"{'type': 'Point', 'coordinates': [-79.593806, 40.203514]}",29.931516,76.87549137170333 | |
15640,40.224626,-79.729265,378,"{'type': 'Point', 'coordinates': [-79.729265, 40.224626]}",1.871233,202.0058432060572 | |
15641,40.631645,-79.58932800000001,500,"{'type': 'Point', 'coordinates': [-79.58932800000001, 40.631645]}",0.765921,652.808840598443 | |
15642,40.318382,-79.723736,45286,"{'type': 'Point', 'coordinates': [-79.723736, 40.318382]}",114.730074,394.71777905416496 | |
15644,40.347382,-79.611245,18836,"{'type': 'Point', 'coordinates': [-79.611245, 40.347382]}",57.20786,329.25545545664534 | |
15646,40.082173,-79.326493,233,"{'type': 'Point', 'coordinates': [-79.326493, 40.082173]}",3.699417,62.98289703485712 | |
15647,40.342501,-79.729198,314,"{'type': 'Point', 'coordinates': [-79.729198, 40.342501]}",0.735288,427.04355300236097 | |
15650,40.277177,-79.39290600000001,28432,"{'type': 'Point', 'coordinates': [-79.39290600000001, 40.277177]}",193.587101,146.8692896021001 | |
15655,40.190142,-79.160129,423,"{'type': 'Point', 'coordinates': [-79.160129, 40.190142]}",33.397533,12.66560616917423 | |
15656,40.656904,-79.629005,10298,"{'type': 'Point', 'coordinates': [-79.629005, 40.656904]}",100.445666,102.52308944817987 | |
15658,40.247834000000005,-79.230681,8916,"{'type': 'Point', 'coordinates': [-79.230681, 40.247834000000005]}",255.141869,34.94526411892044 | |
15660,40.244601,-79.77439,323,"{'type': 'Point', 'coordinates': [-79.77439, 40.244601]}",1.351937,238.916458385265 | |
15661,40.322165999999996,-79.360132,504,"{'type': 'Point', 'coordinates': [-79.360132, 40.322165999999996]}",0.958769,525.6740674761074 | |
15662,40.334317999999996,-79.478335,271,"{'type': 'Point', 'coordinates': [-79.478335, 40.334317999999996]}",0.424967,637.6965740869291 | |
15663,40.251846,-79.679271,455,"{'type': 'Point', 'coordinates': [-79.679271, 40.251846]}",2.543195,178.90881352000142 | |
15665,40.339496999999994,-79.66084599999999,1472,"{'type': 'Point', 'coordinates': [-79.66084599999999, 40.339496999999994]}",2.237024,658.0170798346375 | |
15666,40.161024,-79.509814,16461,"{'type': 'Point', 'coordinates': [-79.509814, 40.161024]}",142.937412,115.16229215063724 | |
15668,40.460564,-79.670009,13139,"{'type': 'Point', 'coordinates': [-79.670009, 40.460564]}",61.042609,215.24309355781304 | |
15670,40.407121000000004,-79.443505,3649,"{'type': 'Point', 'coordinates': [-79.443505, 40.407121000000004]}",99.293895,36.749489986267534 | |
15671,40.356289000000004,-79.3218,865,"{'type': 'Point', 'coordinates': [-79.3218, 40.356289000000004]}",8.269719,104.59847547419689 | |
15672,40.243792,-79.621588,3334,"{'type': 'Point', 'coordinates': [-79.621588, 40.243792]}",30.137566,110.62605387575096 | |
15673,40.593808,-79.556616,1296,"{'type': 'Point', 'coordinates': [-79.556616, 40.593808]}",1.54107,840.9741283653566 | |
15675,40.335305,-79.637074,1003,"{'type': 'Point', 'coordinates': [-79.637074, 40.335305]}",2.397732,418.311971479715 | |
15676,40.240835,-79.465714,437,"{'type': 'Point', 'coordinates': [-79.465714, 40.240835]}",2.406618,181.58261926072188 | |
15677,40.143126,-79.23731,389,"{'type': 'Point', 'coordinates': [-79.23731, 40.143126]}",50.88398,7.644842247009766 | |
15678,40.287221,-79.726231,476,"{'type': 'Point', 'coordinates': [-79.726231, 40.287221]}",1.485175,320.5009510663727 | |
15679,40.175948,-79.653825,3343,"{'type': 'Point', 'coordinates': [-79.653825, 40.175948]}",61.003335,54.80028264028516 | |
15680,40.520777,-79.499278,101,"{'type': 'Point', 'coordinates': [-79.499278, 40.520777]}",0.030739,3285.728227983994 | |
15681,40.500367,-79.43995100000001,5241,"{'type': 'Point', 'coordinates': [-79.43995100000001, 40.500367]}",139.533035,37.56099765191805 | |
15683,40.107186,-79.608271,8248,"{'type': 'Point', 'coordinates': [-79.608271, 40.107186]}",40.434785,203.98278363542678 | |
15684,40.460696,-79.520663,841,"{'type': 'Point', 'coordinates': [-79.520663, 40.460696]}",13.008191,64.6515722286058 | |
15686,40.623446,-79.431311,972,"{'type': 'Point', 'coordinates': [-79.431311, 40.623446]}",26.52396,36.64611166658372 | |
15687,40.136223,-79.316448,1476,"{'type': 'Point', 'coordinates': [-79.316448, 40.136223]}",75.062584,19.663591650402015 | |
15688,40.168606,-79.584793,641,"{'type': 'Point', 'coordinates': [-79.584793, 40.168606]}",4.029918,159.06030842314905 | |
15689,40.221425,-79.49144,229,"{'type': 'Point', 'coordinates': [-79.49144, 40.221425]}",0.261666,875.1614653795295 | |
15690,40.64135,-79.54942199999999,9078,"{'type': 'Point', 'coordinates': [-79.54942199999999, 40.64135]}",63.929191,142.00085841849616 | |
15691,40.295377,-79.686141,70,"{'type': 'Point', 'coordinates': [-79.686141, 40.295377]}",0.086131,812.7155147391763 | |
15692,40.331755,-79.678914,941,"{'type': 'Point', 'coordinates': [-79.678914, 40.331755]}",1.178838,798.2436942141329 | |
15693,40.253147999999996,-79.407701,189,"{'type': 'Point', 'coordinates': [-79.407701, 40.253147999999996]}",0.179062,1055.500329494812 | |
15695,40.197278000000004,-79.69324399999999,337,"{'type': 'Point', 'coordinates': [-79.69324399999999, 40.197278000000004]}",1.395914,241.4188839713621 | |
15696,40.280112,-79.366167,384,"{'type': 'Point', 'coordinates': [-79.366167, 40.280112]}",0.339418,1131.3483669104173 | |
15697,40.241129,-79.579932,3038,"{'type': 'Point', 'coordinates': [-79.579932, 40.241129]}",4.676797,649.5898795692865 | |
15698,40.214407,-79.688503,791,"{'type': 'Point', 'coordinates': [-79.688503, 40.214407]}",3.957109,199.89340703023345 | |
15701,40.628381,-79.150041,34704,"{'type': 'Point', 'coordinates': [-79.150041, 40.628381]}",303.078066,114.505151949861 | |
15710,40.642463,-78.87167,266,"{'type': 'Point', 'coordinates': [-78.87167, 40.642463]}",4.325028,61.50249200698817 | |
15711,41.018425,-78.95562,412,"{'type': 'Point', 'coordinates': [-78.95562, 41.018425]}",3.248037,126.84584566000942 | |
15712,40.790456,-78.847887,151,"{'type': 'Point', 'coordinates': [-78.847887, 40.790456]}",4.202677,35.92948018608139 | |
15713,40.569757,-79.26168,294,"{'type': 'Point', 'coordinates': [-79.26168, 40.569757]}",3.405399,86.33349572252767 | |
15714,40.651306,-78.825059,5323,"{'type': 'Point', 'coordinates': [-78.825059, 40.651306]}",71.066579,74.90159333545519 | |
15715,40.970657,-78.877426,621,"{'type': 'Point', 'coordinates': [-78.877426, 40.970657]}",1.800426,344.9183693192611 | |
15716,40.465148,-79.186897,683,"{'type': 'Point', 'coordinates': [-79.186897, 40.465148]}",2.106057,324.3027135542865 | |
15717,40.457206,-79.243213,10847,"{'type': 'Point', 'coordinates': [-79.243213, 40.457206]}",251.616101,43.1093239140527 | |
15721,40.816322,-78.792568,234,"{'type': 'Point', 'coordinates': [-78.792568, 40.816322]}",5.135187,45.567960816227334 | |
15722,40.595071000000004,-78.724558,2432,"{'type': 'Point', 'coordinates': [-78.724558, 40.595071000000004]}",52.91149,45.96355158397543 | |
15723,40.698747,-79.158676,46,"{'type': 'Point', 'coordinates': [-79.158676, 40.698747]}",2.736411,16.810340259558963 | |
15724,40.735096,-78.813634,2412,"{'type': 'Point', 'coordinates': [-78.813634, 40.735096]}",122.818872,19.63867572403694 | |
15725,40.518947999999995,-79.34877900000001,1446,"{'type': 'Point', 'coordinates': [-79.34877900000001, 40.518947999999995]}",79.072931,18.28691540471669 | |
15727,40.558009000000006,-79.309754,168,"{'type': 'Point', 'coordinates': [-79.309754, 40.558009000000006]}",3.548955,47.33787833319949 | |
15728,40.675665,-78.97178000000001,3701,"{'type': 'Point', 'coordinates': [-78.97178000000001, 40.675665]}",111.075441,33.31969665553702 | |
15729,40.706445,-78.915125,1537,"{'type': 'Point', 'coordinates': [-78.915125, 40.706445]}",49.332814,31.155733382652773 | |
15730,41.057508,-79.094932,69,"{'type': 'Point', 'coordinates': [-79.094932, 41.057508]}",2.16933,31.807055634689053 | |
15731,40.503766999999996,-79.17641,315,"{'type': 'Point', 'coordinates': [-79.17641, 40.503766999999996]}",0.616919,510.6018780423362 | |
15732,40.727686,-79.211872,1669,"{'type': 'Point', 'coordinates': [-79.211872, 40.727686]}",76.532731,21.80766292006488 | |
15733,40.988862,-78.959295,108,"{'type': 'Point', 'coordinates': [-78.959295, 40.988862]}",1.04789,103.06425292731107 | |
15734,40.724796999999995,-79.001265,322,"{'type': 'Point', 'coordinates': [-79.001265, 40.724796999999995]}",3.710169,86.78849939180668 | |
15736,40.70125,-79.366445,613,"{'type': 'Point', 'coordinates': [-79.366445, 40.70125]}",8.532603,71.84208617229702 | |
15737,40.601258,-78.75901,83,"{'type': 'Point', 'coordinates': [-78.75901, 40.601258]}",0.457987,181.22785144556505 | |
15738,40.691553000000006,-78.785122,265,"{'type': 'Point', 'coordinates': [-78.785122, 40.691553000000006]}",6.789689,39.02976999388337 | |
15739,40.674248999999996,-79.168735,462,"{'type': 'Point', 'coordinates': [-79.168735, 40.674248999999996]}",1.674947,275.8296232656914 | |
15741,40.802488000000004,-78.891033,83,"{'type': 'Point', 'coordinates': [-78.891033, 40.802488000000004]}",4.549173,18.24507443440819 | |
15742,40.816978000000006,-78.864006,950,"{'type': 'Point', 'coordinates': [-78.864006, 40.816978000000006]}",60.985169,15.577557881326852 | |
15744,40.922559,-79.084009,105,"{'type': 'Point', 'coordinates': [-79.084009, 40.922559]}",11.796624,8.900851633484292 | |
15745,40.623001,-78.91519100000001,337,"{'type': 'Point', 'coordinates': [-78.91519100000001, 40.623001]}",3.682946,91.50283495875313 | |
15746,40.758509000000004,-78.88929399999999,135,"{'type': 'Point', 'coordinates': [-78.88929399999999, 40.758509000000004]}",3.982573,33.89768373360639 | |
15747,40.775788,-79.145875,2027,"{'type': 'Point', 'coordinates': [-79.145875, 40.775788]}",79.267605,25.57160645890588 | |
15748,40.523638,-79.08415,7060,"{'type': 'Point', 'coordinates': [-79.08415, 40.523638]}",193.911582,36.40834615025729 | |
15750,40.48478,-79.180918,245,"{'type': 'Point', 'coordinates': [-79.180918, 40.48478]}",1.257772,194.78888065563552 | |
15752,40.540593,-79.283249,54,"{'type': 'Point', 'coordinates': [-79.283249, 40.540593]}",0.117142,460.9789827730447 | |
15753,40.803841999999996,-78.645319,513,"{'type': 'Point', 'coordinates': [-78.645319, 40.803841999999996]}",101.791563,5.039710412934714 | |
15754,40.556670000000004,-79.151511,502,"{'type': 'Point', 'coordinates': [-79.151511, 40.556670000000004]}",1.118169,448.9482359106718 | |
15756,40.566558,-79.297083,207,"{'type': 'Point', 'coordinates': [-79.297083, 40.566558]}",2.283223,90.66131516720004 | |
15757,40.903001,-78.731664,1618,"{'type': 'Point', 'coordinates': [-78.731664, 40.903001]}",206.64537,7.829839110356065 | |
15759,40.773016999999996,-79.031699,3004,"{'type': 'Point', 'coordinates': [-79.031699, 40.773016999999996]}",148.456856,20.23483509579376 | |
15760,40.648324,-78.80019899999999,152,"{'type': 'Point', 'coordinates': [-78.80019899999999, 40.648324]}",4.079594,37.25860955771579 | |
15761,40.632245000000005,-78.88980699999999,111,"{'type': 'Point', 'coordinates': [-78.88980699999999, 40.632245000000005]}",2.681155,41.400068254166584 | |
15762,40.594306,-78.829302,823,"{'type': 'Point', 'coordinates': [-78.829302, 40.594306]}",34.648531,23.752810761298942 | |
15764,40.992622,-79.02871,163,"{'type': 'Point', 'coordinates': [-79.02871, 40.992622]}",4.41713,36.90178917079642 | |
15765,40.599057,-78.987702,1707,"{'type': 'Point', 'coordinates': [-78.987702, 40.599057]}",98.763751,17.2836691874937 | |
15767,40.962153,-78.968171,14668,"{'type': 'Point', 'coordinates': [-78.968171, 40.962153]}",430.259487,34.09105538212107 | |
15770,41.008788,-79.136717,184,"{'type': 'Point', 'coordinates': [-79.136717, 41.008788]}",10.644497,17.28592717908606 | |
15771,40.831556,-78.989145,991,"{'type': 'Point', 'coordinates': [-78.989145, 40.831556]}",87.041781,11.385336887810235 | |
15772,40.870222,-78.898677,1715,"{'type': 'Point', 'coordinates': [-78.898677, 40.870222]}",82.950573,20.674962667225937 | |
15773,40.626765999999996,-78.735444,516,"{'type': 'Point', 'coordinates': [-78.735444, 40.626765999999996]}",9.852901,52.370362799748015 | |
15774,40.65469,-79.323835,3029,"{'type': 'Point', 'coordinates': [-79.323835, 40.65469]}",140.973462,21.486313502040545 | |
15775,40.632482,-78.78814100000001,751,"{'type': 'Point', 'coordinates': [-78.78814100000001, 40.632482]}",8.976074,83.66686816530256 | |
15776,41.010988,-79.111592,52,"{'type': 'Point', 'coordinates': [-79.111592, 41.010988]}",5.65006,9.203442087340665 | |
15777,40.69376,-78.965439,170,"{'type': 'Point', 'coordinates': [-78.965439, 40.69376]}",2.906492,58.4897532833395 | |
15778,40.969117,-79.195246,140,"{'type': 'Point', 'coordinates': [-79.195246, 40.969117]}",2.357951,59.37358325088181 | |
15779,40.390846999999994,-79.21443199999999,414,"{'type': 'Point', 'coordinates': [-79.21443199999999, 40.390846999999994]}",20.797454,19.906282759418534 | |
15780,40.913146000000005,-79.071425,148,"{'type': 'Point', 'coordinates': [-79.071425, 40.913146000000005]}",3.321758,44.55472072318333 | |
15781,40.963797,-78.986853,94,"{'type': 'Point', 'coordinates': [-78.986853, 40.963797]}",2.714811,34.62487812227076 | |
15783,40.609214,-79.34321899999999,140,"{'type': 'Point', 'coordinates': [-79.34321899999999, 40.609214]}",5.424205,25.810233942116863 | |
15784,41.024426,-79.141266,67,"{'type': 'Point', 'coordinates': [-79.141266, 41.024426]}",0.886796,75.55288927780458 | |
15801,41.125057,-78.722433,19270,"{'type': 'Point', 'coordinates': [-78.722433, 41.125057]}",170.291512,113.15889895909785 | |
15821,41.350958,-78.368514,164,"{'type': 'Point', 'coordinates': [-78.368514, 41.350958]}",92.668956,1.769740451160365 | |
15823,41.259876,-78.71568,1431,"{'type': 'Point', 'coordinates': [-78.71568, 41.259876]}",95.659014,14.95938479984751 | |
15824,41.250833,-78.841186,5407,"{'type': 'Point', 'coordinates': [-78.841186, 41.250833]}",189.93719,28.467305428705146 | |
15825,41.174822,-79.034223,9562,"{'type': 'Point', 'coordinates': [-79.034223, 41.174822]}",417.626715,22.89604485670894 | |
15827,41.319159,-78.521654,231,"{'type': 'Point', 'coordinates': [-78.521654, 41.319159]}",7.455501,30.98383327961461 | |
15828,41.303998,-79.209935,286,"{'type': 'Point', 'coordinates': [-79.209935, 41.303998]}",61.84382,4.624552623043014 | |
15829,41.169298,-79.20214399999999,1274,"{'type': 'Point', 'coordinates': [-79.20214399999999, 41.169298]}",92.075661,13.836446962895005 | |
15832,41.356513,-78.19727900000001,328,"{'type': 'Point', 'coordinates': [-78.19727900000001, 41.356513]}",282.888432,1.1594677013869552 | |
15834,41.50076,-78.322783,4533,"{'type': 'Point', 'coordinates': [-78.322783, 41.50076]}",530.251101,8.548779986408741 | |
15840,41.171972,-78.822649,1993,"{'type': 'Point', 'coordinates': [-78.822649, 41.171972]}",50.407183,39.53801584190888 | |
15841,41.262939,-78.529883,389,"{'type': 'Point', 'coordinates': [-78.529883, 41.262939]}",10.826871,35.92912485980483 | |
15845,41.494294000000004,-78.68954599999999,3197,"{'type': 'Point', 'coordinates': [-78.68954599999999, 41.494294000000004]}",81.715797,39.123402296376064 | |
15846,41.319857,-78.580314,3636,"{'type': 'Point', 'coordinates': [-78.580314, 41.319857]}",240.31814,15.129943998401453 | |
15847,41.090187,-79.032482,255,"{'type': 'Point', 'coordinates': [-79.032482, 41.090187]}",7.04311,36.205596675332345 | |
15848,41.024169,-78.730644,1027,"{'type': 'Point', 'coordinates': [-78.730644, 41.024169]}",52.558529,19.540120690972916 | |
15849,41.164491999999996,-78.582254,1399,"{'type': 'Point', 'coordinates': [-78.582254, 41.164491999999996]}",203.421153,6.87735753813174 | |
15851,41.102906,-78.91041700000001,6671,"{'type': 'Point', 'coordinates': [-78.91041700000001, 41.102906]}",243.532216,27.392679743036542 | |
15853,41.392343,-78.79163100000001,6578,"{'type': 'Point', 'coordinates': [-78.79163100000001, 41.392343]}",392.897765,16.74226881896363 | |
15856,41.082254999999996,-78.614302,889,"{'type': 'Point', 'coordinates': [-78.614302, 41.082254999999996]}",95.117826,9.346302763479898 | |
15857,41.455085,-78.520228,13212,"{'type': 'Point', 'coordinates': [-78.520228, 41.455085]}",259.927647,50.82952949595239 | |
15860,41.334002000000005,-79.020323,1065,"{'type': 'Point', 'coordinates': [-79.020323, 41.334002000000005]}",323.989673,3.287141809609469 | |
15861,41.306095,-78.066377,174,"{'type': 'Point', 'coordinates': [-78.066377, 41.306095]}",176.1488,0.9878012226027086 | |
15863,41.014385,-78.839736,225,"{'type': 'Point', 'coordinates': [-78.839736, 41.014385]}",1.739827,129.32320282418885 | |
15864,41.103578000000006,-79.197538,1845,"{'type': 'Point', 'coordinates': [-79.197538, 41.103578000000006]}",95.20428,19.379380842962103 | |
15865,41.044954,-78.828292,1295,"{'type': 'Point', 'coordinates': [-78.828292, 41.044954]}",8.718887,148.52813208841908 | |
15866,41.023892,-78.791035,261,"{'type': 'Point', 'coordinates': [-78.791035, 41.023892]}",3.212796,81.23765094329052 | |
15868,41.300364,-78.327704,1350,"{'type': 'Point', 'coordinates': [-78.327704, 41.300364]}",246.338265,5.480269173772089 | |
15870,41.594121,-78.567901,1326,"{'type': 'Point', 'coordinates': [-78.567901, 41.594121]}",335.436208,3.9530616205868863 | |
15901,40.328742,-78.914292,4190,"{'type': 'Point', 'coordinates': [-78.914292, 40.328742]}",3.976937,1053.5746480268608 | |
15902,40.323118,-78.883169,12513,"{'type': 'Point', 'coordinates': [-78.883169, 40.323118]}",23.72682,527.3778787043523 | |
15904,40.311595000000004,-78.84098900000001,16608,"{'type': 'Point', 'coordinates': [-78.84098900000001, 40.311595000000004]}",79.962321,207.69782307844716 | |
15905,40.290655,-78.969943,21226,"{'type': 'Point', 'coordinates': [-78.969943, 40.290655]}",93.539068,226.92122611270833 | |
15906,40.379677,-78.95567700000001,11144,"{'type': 'Point', 'coordinates': [-78.95567700000001, 40.379677]}",91.183057,122.21568750431344 | |
15909,40.409742,-78.869741,5611,"{'type': 'Point', 'coordinates': [-78.869741, 40.409742]}",44.832251,125.15543776733406 | |
15920,40.4745,-79.047534,922,"{'type': 'Point', 'coordinates': [-79.047534, 40.4745]}",20.191967,45.66172280293445 | |
15921,40.317338,-78.70085999999999,176,"{'type': 'Point', 'coordinates': [-78.70085999999999, 40.317338]}",0.851115,206.7875668975403 | |
15922,40.517598,-78.876676,177,"{'type': 'Point', 'coordinates': [-78.876676, 40.517598]}",1.78429,99.19912121908435 | |
15923,40.35522,-79.15850400000001,1770,"{'type': 'Point', 'coordinates': [-79.15850400000001, 40.35522]}",67.870125,26.079221159530796 | |
15924,40.103423,-78.762858,1034,"{'type': 'Point', 'coordinates': [-78.762858, 40.103423]}",68.967469,14.99257570261133 | |
15925,40.408519,-78.640702,147,"{'type': 'Point', 'coordinates': [-78.640702, 40.408519]}",0.197871,742.9082584107828 | |
15926,40.026799,-78.81683699999999,2676,"{'type': 'Point', 'coordinates': [-78.81683699999999, 40.026799]}",74.778258,35.785802873343215 | |
15927,40.539999,-78.778646,1176,"{'type': 'Point', 'coordinates': [-78.778646, 40.539999]}",12.326708,95.4026005970126 | |
15928,40.239529,-78.918459,1974,"{'type': 'Point', 'coordinates': [-78.918459, 40.239529]}",16.260807,121.3961890083315 | |
15929,40.468336,-79.008099,75,"{'type': 'Point', 'coordinates': [-79.008099, 40.468336]}",1.609761,46.59076720084534 | |
15930,40.294969,-78.71902,241,"{'type': 'Point', 'coordinates': [-78.71902, 40.294969]}",0.736775,327.1012181466527 | |
15931,40.50625,-78.757723,9148,"{'type': 'Point', 'coordinates': [-78.757723, 40.50625]}",201.80717,45.33040129347238 | |
15934,40.279061,-78.803986,218,"{'type': 'Point', 'coordinates': [-78.803986, 40.279061]}",0.882868,246.92252975529752 | |
15935,40.208132,-78.965027,2620,"{'type': 'Point', 'coordinates': [-78.965027, 40.208132]}",66.031495,39.67803545868528 | |
15936,40.16091,-78.892595,1620,"{'type': 'Point', 'coordinates': [-78.892595, 40.16091]}",63.765812,25.405463353936433 | |
15937,40.205334,-78.984724,779,"{'type': 'Point', 'coordinates': [-78.984724, 40.205334]}",2.497779,311.87707159040093 | |
15938,40.418853999999996,-78.611126,2583,"{'type': 'Point', 'coordinates': [-78.611126, 40.418853999999996]}",51.353601,50.298322799213246 | |
15940,40.517034,-78.625208,3992,"{'type': 'Point', 'coordinates': [-78.625208, 40.517034]}",69.083838,57.78486134484885 | |
15942,40.398324,-78.81102299999999,2079,"{'type': 'Point', 'coordinates': [-78.81102299999999, 40.398324]}",48.583439,42.79235975864121 | |
15943,40.474082,-78.838748,3942,"{'type': 'Point', 'coordinates': [-78.838748, 40.474082]}",49.931845,78.94761349195088 | |
15944,40.363889,-79.07915799999999,3472,"{'type': 'Point', 'coordinates': [-79.07915799999999, 40.363889]}",171.749757,20.21545800498571 | |
15945,40.358484000000004,-78.867092,198,"{'type': 'Point', 'coordinates': [-78.867092, 40.358484000000004]}",1.642658,120.5363502323673 | |
15946,40.372126,-78.633397,7093,"{'type': 'Point', 'coordinates': [-78.633397, 40.372126]}",131.487182,53.944421745991946 | |
15948,40.489959000000006,-78.764649,550,"{'type': 'Point', 'coordinates': [-78.764649, 40.489959000000006]}",1.910928,287.818274681202 | |
15949,40.396027000000004,-79.116263,672,"{'type': 'Point', 'coordinates': [-79.116263, 40.396027000000004]}",7.159017,93.86763573825847 | |
15951,40.333187,-78.770688,453,"{'type': 'Point', 'coordinates': [-78.770688, 40.333187]}",2.819401,160.67242651896626 | |
15952,40.303506,-78.77614100000001,1413,"{'type': 'Point', 'coordinates': [-78.77614100000001, 40.303506]}",8.572839,164.82287839536005 | |
15953,40.208407,-78.8849,83,"{'type': 'Point', 'coordinates': [-78.8849, 40.208407]}",2.147247,38.65414644891808 | |
15954,40.424043,-78.998097,2413,"{'type': 'Point', 'coordinates': [-78.998097, 40.424043]}",47.639325,50.65143135424358 | |
15955,40.322865,-78.697386,2551,"{'type': 'Point', 'coordinates': [-78.697386, 40.322865]}",66.750147,38.21714430082079 | |
15956,40.350555,-78.79594200000001,2739,"{'type': 'Point', 'coordinates': [-78.79594200000001, 40.350555]}",21.093128,129.8527179088848 | |
15957,40.557963,-78.904882,755,"{'type': 'Point', 'coordinates': [-78.904882, 40.557963]}",24.583529,30.711619963106195 | |
15958,40.387524,-78.730395,2301,"{'type': 'Point', 'coordinates': [-78.730395, 40.387524]}",49.522155,46.46405230143963 | |
15960,40.497162,-78.884165,425,"{'type': 'Point', 'coordinates': [-78.884165, 40.497162]}",12.367442,34.364422327592074 | |
15961,40.471096,-78.941795,854,"{'type': 'Point', 'coordinates': [-78.941795, 40.471096]}",43.758814,19.516068237132753 | |
15962,40.38818,-78.715039,149,"{'type': 'Point', 'coordinates': [-78.715039, 40.38818]}",0.52338,284.6879896060224 | |
15963,40.227773,-78.759251,11114,"{'type': 'Point', 'coordinates': [-78.759251, 40.227773]}",253.641326,43.81778070344893 | |
16001,40.910025,-79.94519100000001,40371,"{'type': 'Point', 'coordinates': [-79.94519100000001, 40.910025]}",193.210241,208.94855154184089 | |
16002,40.815135,-79.855361,15877,"{'type': 'Point', 'coordinates': [-79.855361, 40.815135]}",187.174656,84.82451812279542 | |
16020,41.115334000000004,-79.89858199999999,1150,"{'type': 'Point', 'coordinates': [-79.89858199999999, 41.115334000000004]}",66.025421,17.417533770818366 | |
16022,41.054140000000004,-79.73369100000001,368,"{'type': 'Point', 'coordinates': [-79.73369100000001, 41.054140000000004]}",2.079663,176.95174650892957 | |
16023,40.785483,-79.750313,4169,"{'type': 'Point', 'coordinates': [-79.750313, 40.785483]}",68.120211,61.20063251125279 | |
16024,40.742715999999994,-80.038538,209,"{'type': 'Point', 'coordinates': [-80.038538, 40.742715999999994]}",0.611589,341.7327649777873 | |
16025,40.939186,-79.760635,5564,"{'type': 'Point', 'coordinates': [-79.760635, 40.939186]}",137.96321,40.32959221519998 | |
16027,40.820153999999995,-80.019183,306,"{'type': 'Point', 'coordinates': [-80.019183, 40.820153999999995]}",1.373158,222.84398445044195 | |
16028,40.951294,-79.635593,1886,"{'type': 'Point', 'coordinates': [-79.635593, 40.951294]}",42.575192,44.2980973520918 | |
16029,40.879153,-79.84616899999999,705,"{'type': 'Point', 'coordinates': [-79.84616899999999, 40.879153]}",2.241391,314.53682110796376 | |
16030,41.136395,-79.79696700000001,316,"{'type': 'Point', 'coordinates': [-79.79696700000001, 41.136395]}",2.806303,112.60366396643555 | |
16033,40.783869,-80.051119,6165,"{'type': 'Point', 'coordinates': [-80.051119, 40.783869]}",80.092661,76.97334466137914 | |
16034,40.862126,-79.733735,2054,"{'type': 'Point', 'coordinates': [-79.733735, 40.862126]}",51.42143,39.94443561760146 | |
16035,41.108993,-80.014526,122,"{'type': 'Point', 'coordinates': [-80.014526, 41.108993]}",1.457182,83.72324115999237 | |
16036,41.134894,-79.666595,200,"{'type': 'Point', 'coordinates': [-79.666595, 41.134894]}",6.979167,28.65671504923152 | |
16037,40.842611,-80.133751,4589,"{'type': 'Point', 'coordinates': [-80.133751, 40.842611]}",90.706413,50.59179222531929 | |
16038,41.164486,-79.953346,3517,"{'type': 'Point', 'coordinates': [-79.953346, 41.164486]}",123.904401,28.384786751844274 | |
16040,41.09388,-79.840799,975,"{'type': 'Point', 'coordinates': [-79.840799, 41.09388]}",50.820887,19.185025243656217 | |
16041,41.005338,-79.714928,1888,"{'type': 'Point', 'coordinates': [-79.714928, 41.005338]}",71.988727,26.226328463899634 | |
16045,40.852814,-79.91671099999999,1195,"{'type': 'Point', 'coordinates': [-79.91671099999999, 40.852814]}",1.489045,802.527794660336 | |
16046,40.702748,-80.02390600000001,14396,"{'type': 'Point', 'coordinates': [-80.02390600000001, 40.702748]}",58.90815,244.38044650867494 | |
16048,41.053202,-79.818427,139,"{'type': 'Point', 'coordinates': [-79.818427, 41.053202]}",2.86188,48.569471815729514 | |
16049,41.094066999999995,-79.671823,3241,"{'type': 'Point', 'coordinates': [-79.671823, 41.094066999999995]}",244.904242,13.233743823841156 | |
16050,41.044024,-79.761496,1546,"{'type': 'Point', 'coordinates': [-79.761496, 41.044024]}",63.705018,24.268103966315493 | |
16051,40.944894,-80.138143,3043,"{'type': 'Point', 'coordinates': [-80.138143, 40.944894]}",108.713584,27.990982249283586 | |
16052,40.899396,-80.061581,2447,"{'type': 'Point', 'coordinates': [-80.061581, 40.899396]}",54.423089,44.96253419205955 | |
16053,40.811868,-79.983143,4020,"{'type': 'Point', 'coordinates': [-79.983143, 40.811868]}",55.569099,72.34236423376237 | |
16054,41.153535999999995,-79.663009,497,"{'type': 'Point', 'coordinates': [-79.663009, 41.153535999999995]}",5.006025,99.28036715757511 | |
16055,40.716859,-79.749717,8486,"{'type': 'Point', 'coordinates': [-79.749717, 40.716859]}",101.090692,83.94442487345917 | |
16056,40.728403,-79.841812,4791,"{'type': 'Point', 'coordinates': [-79.841812, 40.728403]}",54.904424,87.26072784225913 | |
16057,41.034074,-80.0603,13909,"{'type': 'Point', 'coordinates': [-80.0603, 41.034074]}",227.563121,61.12150307518414 | |
16059,40.707082,-79.927088,7738,"{'type': 'Point', 'coordinates': [-79.927088, 40.707082]}",66.669879,116.06440743652767 | |
16061,41.005109000000004,-79.88474000000001,2761,"{'type': 'Point', 'coordinates': [-79.88474000000001, 41.005109000000004]}",114.608772,24.090651630051493 | |
16063,40.762315,-80.1229,6559,"{'type': 'Point', 'coordinates': [-80.1229, 40.762315]}",46.203423,141.95917908506476 | |
16066,40.709967,-80.105642,28060,"{'type': 'Point', 'coordinates': [-80.105642, 40.709967]}",57.911285,484.53423197223134 | |
16101,40.983987,-80.29024,34042,"{'type': 'Point', 'coordinates': [-80.29024, 40.983987]}",186.3276,182.699718130862 | |
16102,40.960237,-80.424525,5755,"{'type': 'Point', 'coordinates': [-80.424525, 40.960237]}",63.103028,91.20006095428575 | |
16105,41.057828,-80.340829,15448,"{'type': 'Point', 'coordinates': [-80.340829, 41.057828]}",71.790585,215.18141968058904 | |
16110,41.505249,-80.380762,314,"{'type': 'Point', 'coordinates': [-80.380762, 41.505249]}",19.544012,16.066302046887817 | |
16111,41.520379,-80.282617,1409,"{'type': 'Point', 'coordinates': [-80.282617, 41.520379]}",72.702683,19.380302649903584 | |
16112,40.960467,-80.498397,1571,"{'type': 'Point', 'coordinates': [-80.498397, 40.960467]}",18.183348,86.39773049495616 | |
16113,41.280826,-80.424148,448,"{'type': 'Point', 'coordinates': [-80.424148, 41.280826]}",2.12846,210.48081711660075 | |
16114,41.402848,-80.183931,606,"{'type': 'Point', 'coordinates': [-80.183931, 41.402848]}",26.71228,22.686195263002634 | |
16115,40.796494,-80.463523,3287,"{'type': 'Point', 'coordinates': [-80.463523, 40.796494]}",104.463325,31.46558852113888 | |
16116,41.044195,-80.449588,3074,"{'type': 'Point', 'coordinates': [-80.449588, 41.044195]}",70.083912,43.86170680654927 | |
16117,40.871835,-80.25620699999999,17185,"{'type': 'Point', 'coordinates': [-80.25620699999999, 40.871835]}",96.902123,177.34389575757797 | |
16120,40.885259000000005,-80.479162,2463,"{'type': 'Point', 'coordinates': [-80.479162, 40.885259000000005]}",86.113898,28.601654984889894 | |
16121,41.211216,-80.497214,4941,"{'type': 'Point', 'coordinates': [-80.497214, 41.211216]}",5.875381,840.9667390080746 | |
16123,40.821932000000004,-80.196513,2237,"{'type': 'Point', 'coordinates': [-80.196513, 40.821932000000004]}",53.045862,42.17105568008302 | |
16124,41.33617,-80.276062,2228,"{'type': 'Point', 'coordinates': [-80.276062, 41.33617]}",72.573058,30.700098099765892 | |
16125,41.406356,-80.372825,18186,"{'type': 'Point', 'coordinates': [-80.372825, 41.406356]}",283.562754,64.133951809482 | |
16127,41.173009,-80.072998,16145,"{'type': 'Point', 'coordinates': [-80.072998, 41.173009]}",187.382409,86.16070252357574 | |
16130,41.444632,-80.222949,2023,"{'type': 'Point', 'coordinates': [-80.222949, 41.444632]}",81.44971,24.837411944130924 | |
16131,41.550521999999994,-80.37823,933,"{'type': 'Point', 'coordinates': [-80.37823, 41.550521999999994]}",54.572087,17.096652360024272 | |
16132,41.005848,-80.50514799999999,355,"{'type': 'Point', 'coordinates': [-80.50514799999999, 41.005848]}",5.198506,68.28885068133036 | |
16133,41.267783,-80.114451,1573,"{'type': 'Point', 'coordinates': [-80.114451, 41.267783]}",72.566308,21.676726339722283 | |
16134,41.524682,-80.478678,3886,"{'type': 'Point', 'coordinates': [-80.478678, 41.524682]}",135.691714,28.638447296789252 | |
16136,40.834932,-80.323771,801,"{'type': 'Point', 'coordinates': [-80.323771, 40.834932]}",2.000589,400.3820874752385 | |
16137,41.23123,-80.238647,12941,"{'type': 'Point', 'coordinates': [-80.238647, 41.23123]}",281.30247,46.003861963956446 | |
16140,41.095323,-80.51403,123,"{'type': 'Point', 'coordinates': [-80.51403, 41.095323]}",0.446341,275.574056606944 | |
16141,40.868089000000005,-80.39846800000001,1806,"{'type': 'Point', 'coordinates': [-80.39846800000001, 40.868089000000005]}",53.445258,33.79158540127171 | |
16142,41.145427000000005,-80.333134,7056,"{'type': 'Point', 'coordinates': [-80.333134, 41.145427000000005]}",108.895784,64.79589696512033 | |
16143,41.10403,-80.444939,2901,"{'type': 'Point', 'coordinates': [-80.444939, 41.10403]}",68.08955,42.60565681517942 | |
16145,41.380196000000005,-80.078627,2726,"{'type': 'Point', 'coordinates': [-80.078627, 41.380196000000005]}",130.570365,20.877631765829864 | |
16146,41.234113,-80.499672,14040,"{'type': 'Point', 'coordinates': [-80.499672, 41.234113]}",9.896365,1418.702725697769 | |
16148,41.228489,-80.417588,16959,"{'type': 'Point', 'coordinates': [-80.417588, 41.228489]}",83.332335,203.5104380550479 | |
16150,41.285145,-80.45325,7426,"{'type': 'Point', 'coordinates': [-80.45325, 41.285145]}",65.881447,112.71762139650637 | |
16151,41.4439,-80.206786,77,"{'type': 'Point', 'coordinates': [-80.206786, 41.4439]}",0.302185,254.81079471184873 | |
16153,41.32224,-80.086586,2624,"{'type': 'Point', 'coordinates': [-80.086586, 41.32224]}",112.500422,23.324356952189923 | |
16154,41.325897999999995,-80.420113,2492,"{'type': 'Point', 'coordinates': [-80.420113, 41.325897999999995]}",74.60847,33.401033421540475 | |
16155,41.067732,-80.510731,103,"{'type': 'Point', 'coordinates': [-80.510731, 41.067732]}",1.754358,58.71093585231748 | |
16156,41.088767,-80.216432,3319,"{'type': 'Point', 'coordinates': [-80.216432, 41.088767]}",130.100684,25.511011148872974 | |
16157,40.888212,-80.333383,3477,"{'type': 'Point', 'coordinates': [-80.333383, 40.888212]}",65.958504,52.714961515803935 | |
16159,41.153413,-80.475263,4706,"{'type': 'Point', 'coordinates': [-80.475263, 41.153413]}",70.702202,66.56086892456334 | |
16160,40.930554,-80.356607,864,"{'type': 'Point', 'coordinates': [-80.356607, 40.930554]}",3.417998,252.77955107053896 | |
16161,41.19709,-80.49584399999999,644,"{'type': 'Point', 'coordinates': [-80.49584399999999, 41.19709]}",2.264627,284.37354142646893 | |
16201,40.805184999999994,-79.469413,18214,"{'type': 'Point', 'coordinates': [-79.469413, 40.805184999999994]}",299.562286,60.802046356396154 | |
16210,40.895514,-79.51428,1014,"{'type': 'Point', 'coordinates': [-79.51428, 40.895514]}",53.974681,18.786586251431483 | |
16211,40.794443,-79.202555,104,"{'type': 'Point', 'coordinates': [-79.202555, 40.794443]}",2.62159,39.670581593613036 | |
16212,40.754359,-79.583923,339,"{'type': 'Point', 'coordinates': [-79.583923, 40.754359]}",2.818188,120.29005871858087 | |
16213,41.125669,-79.557671,204,"{'type': 'Point', 'coordinates': [-79.557671, 41.125669]}",0.374052,545.3787173975811 | |
16214,41.203549,-79.360502,10127,"{'type': 'Point', 'coordinates': [-79.360502, 41.203549]}",129.95881,77.92469013835999 | |
16217,41.331192,-79.17368,101,"{'type': 'Point', 'coordinates': [-79.17368, 41.331192]}",14.720542,6.861160411077255 | |
16218,40.933434999999996,-79.590649,1195,"{'type': 'Point', 'coordinates': [-79.590649, 40.933434999999996]}",74.076947,16.131874333319917 | |
16222,40.873676,-79.257028,2526,"{'type': 'Point', 'coordinates': [-79.257028, 40.873676]}",171.927804,14.692213482817474 | |
16223,40.975988,-79.363954,154,"{'type': 'Point', 'coordinates': [-79.363954, 40.975988]}",2.802935,54.94240858243234 | |
16224,41.06508,-79.29486,1181,"{'type': 'Point', 'coordinates': [-79.29486, 41.06508]}",52.185036,22.6310086286038 | |
16226,40.711646,-79.486425,8279,"{'type': 'Point', 'coordinates': [-79.486425, 40.711646]}",154.266859,53.66674380788423 | |
16228,40.760813,-79.535765,371,"{'type': 'Point', 'coordinates': [-79.535765, 40.760813]}",0.196838,1884.7986669240695 | |
16229,40.717124,-79.642747,4997,"{'type': 'Point', 'coordinates': [-79.642747, 40.717124]}",67.068528,74.50588448877244 | |
16230,41.020482,-79.28324599999999,494,"{'type': 'Point', 'coordinates': [-79.28324599999999, 41.020482]}",2.808273,175.90882367917936 | |
16232,41.213586,-79.551242,4281,"{'type': 'Point', 'coordinates': [-79.551242, 41.213586]}",148.694117,28.790648119589022 | |
16233,41.36124,-79.271067,1246,"{'type': 'Point', 'coordinates': [-79.271067, 41.36124]}",105.309348,11.831808131601004 | |
16235,41.322665,-79.352329,1256,"{'type': 'Point', 'coordinates': [-79.352329, 41.322665]}",73.208529,17.156470935237614 | |
16236,40.787838,-79.522661,262,"{'type': 'Point', 'coordinates': [-79.522661, 40.787838]}",0.379359,690.6386826198931 | |
16238,40.787836999999996,-79.520848,410,"{'type': 'Point', 'coordinates': [-79.520848, 40.787836999999996]}",0.289047,1418.4544382055512 | |
16239,41.496972,-79.13777900000001,4172,"{'type': 'Point', 'coordinates': [-79.13777900000001, 41.496972]}",510.987131,8.164589178274237 | |
16240,41.036013,-79.225,1533,"{'type': 'Point', 'coordinates': [-79.225, 41.036013]}",140.001607,10.949874311085585 | |
16242,41.009881,-79.36574499999999,4693,"{'type': 'Point', 'coordinates': [-79.36574499999999, 41.009881]}",237.611979,19.750687737843386 | |
16244,40.792176,-79.276658,265,"{'type': 'Point', 'coordinates': [-79.276658, 40.792176]}",3.123145,84.85036717795683 | |
16245,41.00672,-79.298366,207,"{'type': 'Point', 'coordinates': [-79.298366, 41.00672]}",1.53645,134.72615444693938 | |
16246,40.79172,-79.182154,252,"{'type': 'Point', 'coordinates': [-79.182154, 40.79172]}",0.876661,287.45432955270053 | |
16248,41.034002,-79.502977,3130,"{'type': 'Point', 'coordinates': [-79.502977, 41.034002]}",137.658199,22.73747602930647 | |
16249,40.761947,-79.312139,2089,"{'type': 'Point', 'coordinates': [-79.312139, 40.761947]}",72.915697,28.64952384669655 | |
16250,40.768512,-79.232968,315,"{'type': 'Point', 'coordinates': [-79.232968, 40.768512]}",7.940322,39.67093525930057 | |
16253,40.951168,-79.34275600000001,91,"{'type': 'Point', 'coordinates': [-79.34275600000001, 40.951168]}",0.547157,166.31423887476538 | |
16254,41.253396,-79.461389,3471,"{'type': 'Point', 'coordinates': [-79.461389, 41.253396]}",133.456847,26.00840704711089 | |
16255,41.128813,-79.466757,1943,"{'type': 'Point', 'coordinates': [-79.466757, 41.128813]}",106.862512,18.182241495502183 | |
16256,40.855267,-79.134458,2084,"{'type': 'Point', 'coordinates': [-79.134458, 40.855267]}",104.433829,19.955219682694963 | |
16258,41.236936,-79.278339,1869,"{'type': 'Point', 'coordinates': [-79.278339, 41.236936]}",89.19057,20.955130121940023 | |
16259,40.925711,-79.451859,1934,"{'type': 'Point', 'coordinates': [-79.451859, 40.925711]}",124.302865,15.55877251904049 | |
16260,41.396463,-79.230763,296,"{'type': 'Point', 'coordinates': [-79.230763, 41.396463]}",24.186941,12.238008932175424 | |
16262,40.839032,-79.652206,3007,"{'type': 'Point', 'coordinates': [-79.652206, 40.839032]}",90.556488,33.20579305151498 | |
16263,40.801717,-79.336609,317,"{'type': 'Point', 'coordinates': [-79.336609, 40.801717]}",4.066288,77.95807871946108 | |
16301,41.453285,-79.622427,16321,"{'type': 'Point', 'coordinates': [-79.622427, 41.453285]}",281.905965,57.895192107765446 | |
16311,41.462167,-80.042383,564,"{'type': 'Point', 'coordinates': [-80.042383, 41.462167]}",38.347094,14.70776377474653 | |
16312,41.932134999999995,-79.303214,25,"{'type': 'Point', 'coordinates': [-79.303214, 41.932134999999995]}",0.072297,345.7958144874614 | |
16313,41.733693,-79.12240899999999,1848,"{'type': 'Point', 'coordinates': [-79.12240899999999, 41.733693]}",255.08472,7.24465189447647 | |
16314,41.520675,-80.077069,5507,"{'type': 'Point', 'coordinates': [-80.077069, 41.520675]}",237.237054,23.213068562215412 | |
16316,41.601773,-80.30363299999999,5436,"{'type': 'Point', 'coordinates': [-80.30363299999999, 41.601773]}",127.103875,42.76816894842899 | |
16317,41.532556,-79.853702,1456,"{'type': 'Point', 'coordinates': [-79.853702, 41.532556]}",77.374553,18.817556206108225 | |
16319,41.324203999999995,-79.623458,1355,"{'type': 'Point', 'coordinates': [-79.623458, 41.324203999999995]}",88.819231,15.255705152412318 | |
16321,41.571059999999996,-79.399591,76,"{'type': 'Point', 'coordinates': [-79.399591, 41.571059999999996]}",3.298563,23.040336049364527 | |
16322,41.598847,-79.373564,158,"{'type': 'Point', 'coordinates': [-79.373564, 41.598847]}",15.81223,9.992265480580539 | |
16323,41.41192,-79.828317,16372,"{'type': 'Point', 'coordinates': [-79.828317, 41.41192]}",266.250607,61.49093962441182 | |
16326,41.376158000000004,-79.43174,391,"{'type': 'Point', 'coordinates': [-79.43174, 41.376158000000004]}",17.717094,22.069081983760995 | |
16327,41.637082,-79.95956600000001,2978,"{'type': 'Point', 'coordinates': [-79.95956600000001, 41.637082]}",172.357975,17.27799366405877 | |
16328,41.653227,-79.72554000000001,80,"{'type': 'Point', 'coordinates': [-79.72554000000001, 41.653227]}",0.146501,546.0713578746903 | |
16329,41.798643,-79.258874,528,"{'type': 'Point', 'coordinates': [-79.258874, 41.798643]}",23.137454,22.820142613789745 | |
16331,41.293731,-79.558676,88,"{'type': 'Point', 'coordinates': [-79.558676, 41.293731]}",3.424334,25.69842778186941 | |
16332,41.356716999999996,-79.369545,53,"{'type': 'Point', 'coordinates': [-79.369545, 41.356716999999996]}",7.78884,6.8046076180792 | |
16333,41.70521,-78.928483,240,"{'type': 'Point', 'coordinates': [-78.928483, 41.70521]}",16.967925,14.144334089171185 | |
16334,41.290554,-79.44935100000001,338,"{'type': 'Point', 'coordinates': [-79.44935100000001, 41.290554]}",14.09433,23.98127473955839 | |
16335,41.630953000000005,-80.156056,28445,"{'type': 'Point', 'coordinates': [-80.156056, 41.630953000000005]}",293.530333,96.9065094884078 | |
16340,41.802378000000004,-79.417668,1990,"{'type': 'Point', 'coordinates': [-79.417668, 41.802378000000004]}",249.427208,7.978279578866151 | |
16341,41.56608,-79.549355,2030,"{'type': 'Point', 'coordinates': [-79.549355, 41.56608]}",175.020725,11.59862639124595 | |
16342,41.321886,-79.941498,2281,"{'type': 'Point', 'coordinates': [-79.941498, 41.321886]}",161.840381,14.09413389851078 | |
16343,41.425982,-79.752686,449,"{'type': 'Point', 'coordinates': [-79.752686, 41.425982]}",14.177283,31.67038423370684 | |
16344,41.470393,-79.684546,523,"{'type': 'Point', 'coordinates': [-79.684546, 41.470393]}",2.313734,226.04154150822868 | |
16345,41.944404,-79.082916,3543,"{'type': 'Point', 'coordinates': [-79.082916, 41.944404]}",238.756603,14.839380169938169 | |
16346,41.378502000000005,-79.67197,3247,"{'type': 'Point', 'coordinates': [-79.67197, 41.378502000000005]}",42.560124,76.29207095355267 | |
16347,41.659517,-79.069365,2238,"{'type': 'Point', 'coordinates': [-79.069365, 41.659517]}",266.398677,8.40094262179838 | |
16350,41.956922999999996,-79.334404,2737,"{'type': 'Point', 'coordinates': [-79.334404, 41.956922999999996]}",119.311839,22.939886124796047 | |
16351,41.675353,-79.37034399999999,1716,"{'type': 'Point', 'coordinates': [-79.37034399999999, 41.675353]}",262.01627,6.54921161956851 | |
16352,41.767268,-79.038364,245,"{'type': 'Point', 'coordinates': [-79.038364, 41.767268]}",33.168304,7.386570021789478 | |
16353,41.495354,-79.373115,3348,"{'type': 'Point', 'coordinates': [-79.373115, 41.495354]}",382.706494,8.74821841930908 | |
16354,41.613725,-79.706464,11379,"{'type': 'Point', 'coordinates': [-79.706464, 41.613725]}",320.850598,35.46510454064979 | |
16360,41.684104999999995,-79.890935,1383,"{'type': 'Point', 'coordinates': [-79.890935, 41.684104999999995]}",74.70017,18.51401409126646 | |
16361,41.384113,-79.342388,53,"{'type': 'Point', 'coordinates': [-79.342388, 41.384113]}",5.652125,9.377004224075016 | |
16362,41.450497,-79.965179,1102,"{'type': 'Point', 'coordinates': [-79.965179, 41.450497]}",69.018747,15.966676416191675 | |
16364,41.351416,-79.527305,1347,"{'type': 'Point', 'coordinates': [-79.527305, 41.351416]}",86.553087,15.562703153499308 | |
16365,41.840224,-79.15738499999999,18579,"{'type': 'Point', 'coordinates': [-79.15738499999999, 41.840224]}",383.365364,48.46290704550972 | |
16370,41.574811,-79.460024,358,"{'type': 'Point', 'coordinates': [-79.460024, 41.574811]}",33.723506,10.61574084260397 | |
16371,41.869946999999996,-79.326122,3260,"{'type': 'Point', 'coordinates': [-79.326122, 41.869946999999996]}",79.346516,41.08560985840891 | |
16372,41.200007,-79.87263100000001,499,"{'type': 'Point', 'coordinates': [-79.87263100000001, 41.200007]}",3.080905,161.96539653121405 | |
16373,41.208469,-79.698409,3510,"{'type': 'Point', 'coordinates': [-79.698409, 41.208469]}",213.925184,16.407605380393175 | |
16374,41.263498,-79.815085,1968,"{'type': 'Point', 'coordinates': [-79.815085, 41.263498]}",185.867432,10.588191695681253 | |
16401,41.878476,-80.40516,6581,"{'type': 'Point', 'coordinates': [-80.40516, 41.878476]}",148.662173,44.26815421297521 | |
16402,41.961661,-79.469604,956,"{'type': 'Point', 'coordinates': [-79.469604, 41.961661]}",57.384473,16.65955876252449 | |
16403,41.792998,-80.014121,7029,"{'type': 'Point', 'coordinates': [-80.014121, 41.792998]}",240.658457,29.207367518358186 | |
16404,41.727006,-79.789388,3269,"{'type': 'Point', 'coordinates': [-79.789388, 41.727006]}",233.684494,13.988946994489075 | |
16405,41.946042,-79.532738,922,"{'type': 'Point', 'coordinates': [-79.532738, 41.946042]}",62.80971,14.67925898718526 | |
16406,41.749512,-80.36214,3509,"{'type': 'Point', 'coordinates': [-80.36214, 41.749512]}",198.250966,17.69978765198047 | |
16407,41.922164,-79.66425100000001,11317,"{'type': 'Point', 'coordinates': [-79.66425100000001, 41.922164]}",279.207605,40.532563573975715 | |
16410,41.922751,-80.308509,1854,"{'type': 'Point', 'coordinates': [-80.308509, 41.922751]}",58.581092,31.648437007626967 | |
16411,41.977956,-80.44707199999999,1477,"{'type': 'Point', 'coordinates': [-80.44707199999999, 41.977956]}",51.202333,28.846341825869533 | |
16412,41.88493,-80.170371,10480,"{'type': 'Point', 'coordinates': [-80.170371, 41.88493]}",209.111137,50.116890713477396 | |
16415,42.03752,-80.23031999999999,8916,"{'type': 'Point', 'coordinates': [-80.23031999999999, 42.03752]}",63.656845,140.06349199367327 | |
16416,41.825728999999995,-79.472696,203,"{'type': 'Point', 'coordinates': [-79.472696, 41.825728999999995]}",10.128459,20.042535592038238 | |
16417,41.971081,-80.31502900000001,8329,"{'type': 'Point', 'coordinates': [-80.31502900000001, 41.971081]}",121.104775,68.77515770951227 | |
16420,41.6963,-79.547259,650,"{'type': 'Point', 'coordinates': [-79.547259, 41.6963]}",125.96727,5.160070548484539 | |
16421,42.171341,-79.93197099999999,2518,"{'type': 'Point', 'coordinates': [-79.93197099999999, 42.171341]}",27.482245,91.62279136948237 | |
16422,41.667548,-80.310188,401,"{'type': 'Point', 'coordinates': [-80.310188, 41.667548]}",3.643308,110.06480923380619 | |
16423,42.021099,-80.340132,4450,"{'type': 'Point', 'coordinates': [-80.340132, 42.021099]}",27.457999,162.06570624465388 | |
16424,41.661408,-80.43895699999999,4676,"{'type': 'Point', 'coordinates': [-80.43895699999999, 41.661408]}",213.694591,21.881695639175067 | |
16426,41.979331,-80.14208,3730,"{'type': 'Point', 'coordinates': [-80.14208, 41.979331]}",70.431323,52.959391377611915 | |
16427,41.877373,-79.967907,193,"{'type': 'Point', 'coordinates': [-79.967907, 41.877373]}",0.671497,287.41751638503223 | |
16428,42.171464,-79.83148800000001,12478,"{'type': 'Point', 'coordinates': [-79.83148800000001, 42.171464]}",199.916727,62.41598783277399 | |
16433,41.737079,-80.140914,5384,"{'type': 'Point', 'coordinates': [-80.140914, 41.737079]}",147.056277,36.61183398516202 | |
16434,41.79672,-79.668697,2990,"{'type': 'Point', 'coordinates': [-79.668697, 41.79672]}",162.471895,18.40318290126425 | |
16435,41.817035,-80.385386,2108,"{'type': 'Point', 'coordinates': [-80.385386, 41.817035]}",144.52205,14.586009539720754 | |
16436,41.838888,-79.510429,756,"{'type': 'Point', 'coordinates': [-79.510429, 41.838888]}",120.495285,6.2741044182766155 | |
16438,41.892299,-79.845314,8083,"{'type': 'Point', 'coordinates': [-79.845314, 41.892299]}",269.492861,29.99337336806113 | |
16440,41.782548999999996,-80.126018,891,"{'type': 'Point', 'coordinates': [-80.126018, 41.782548999999996]}",28.398202,31.375225797745927 | |
16441,41.958490000000005,-79.983551,10136,"{'type': 'Point', 'coordinates': [-79.983551, 41.958490000000005]}",294.03969,34.47153681871995 | |
16442,42.038484999999994,-79.825705,2958,"{'type': 'Point', 'coordinates': [-79.825705, 42.038484999999994]}",131.116221,22.560137696463965 | |
16443,41.939645,-80.484235,1425,"{'type': 'Point', 'coordinates': [-80.484235, 41.939645]}",29.525536,48.26330671863163 | |
16444,41.871224,-80.120756,1717,"{'type': 'Point', 'coordinates': [-80.120756, 41.871224]}",0.713084,2407.8509684693527 | |
16501,42.121318,-80.089169,2044,"{'type': 'Point', 'coordinates': [-80.089169, 42.121318]}",1.71704,1190.4207240367143 | |
16502,42.110687,-80.10148000000001,16664,"{'type': 'Point', 'coordinates': [-80.10148000000001, 42.110687]}",6.695325,2488.9008375246904 | |
16503,42.127018,-80.061115,16850,"{'type': 'Point', 'coordinates': [-80.061115, 42.127018]}",6.324094,2664.4132740594937 | |
16504,42.109077,-80.049033,17322,"{'type': 'Point', 'coordinates': [-80.049033, 42.109077]}",7.217989,2399.8374062360026 | |
16505,42.131338,-80.13830300000001,17168,"{'type': 'Point', 'coordinates': [-80.13830300000001, 42.131338]}",46.731071,367.3786975693324 | |
16506,42.062345,-80.151707,23720,"{'type': 'Point', 'coordinates': [-80.151707, 42.062345]}",36.615834,647.8071754421871 | |
16507,42.139495000000004,-80.084963,11088,"{'type': 'Point', 'coordinates': [-80.084963, 42.139495000000004]}",7.8915,1405.056072989926 | |
16508,42.096812,-80.09403,16050,"{'type': 'Point', 'coordinates': [-80.09403, 42.096812]}",7.343923,2185.480430554623 | |
16509,42.060022,-80.03814100000001,26810,"{'type': 'Point', 'coordinates': [-80.03814100000001, 42.060022]}",98.854232,271.2074076909525 | |
16510,42.108990999999996,-79.954821,25625,"{'type': 'Point', 'coordinates': [-79.954821, 42.108990999999996]}",84.761691,302.3181781496077 | |
16511,42.166261999999996,-79.99016999999999,11382,"{'type': 'Point', 'coordinates': [-79.99016999999999, 42.166261999999996]}",25.259583,450.60126289495753 | |
16546,42.104924,-80.053445,1154,"{'type': 'Point', 'coordinates': [-80.053445, 42.104924]}",0.142165,8117.328456371118 | |
16563,42.117333,-79.986486,1621,"{'type': 'Point', 'coordinates': [-79.986486, 42.117333]}",1.159491,1398.0272378138338 | |
16601,40.555264,-78.370416,33870,"{'type': 'Point', 'coordinates': [-78.370416, 40.555264]}",225.12515,150.44964989473632 | |
16602,40.512662,-78.373929,29554,"{'type': 'Point', 'coordinates': [-78.373929, 40.512662]}",38.396384,769.7078974936807 | |
16611,40.579889,-78.115672,2410,"{'type': 'Point', 'coordinates': [-78.115672, 40.579889]}",110.832319,21.74455990585201 | |
16613,40.548031,-78.537565,1535,"{'type': 'Point', 'coordinates': [-78.537565, 40.548031]}",66.397693,23.1182731002416 | |
16616,40.76762,-78.44021500000001,116,"{'type': 'Point', 'coordinates': [-78.44021500000001, 40.76762]}",5.937115,19.538108997383407 | |
16617,40.607302000000004,-78.322633,2806,"{'type': 'Point', 'coordinates': [-78.322633, 40.607302000000004]}",4.230785,663.2338915827677 | |
16619,40.660938,-78.446887,347,"{'type': 'Point', 'coordinates': [-78.446887, 40.660938]}",34.54345,10.045319735000412 | |
16620,40.840687,-78.351837,414,"{'type': 'Point', 'coordinates': [-78.351837, 40.840687]}",2.25279,183.77212256801565 | |
16621,40.232246999999994,-78.125214,737,"{'type': 'Point', 'coordinates': [-78.125214, 40.232246999999994]}",33.781235,21.81684595012586 | |
16622,40.32864,-78.06640300000001,175,"{'type': 'Point', 'coordinates': [-78.06640300000001, 40.32864]}",19.289628,9.072233015587443 | |
16623,40.271681,-78.052188,567,"{'type': 'Point', 'coordinates': [-78.052188, 40.271681]}",33.440029,16.955726922366004 | |
16624,40.570425,-78.600475,204,"{'type': 'Point', 'coordinates': [-78.600475, 40.570425]}",3.03941,67.1182894048516 | |
16625,40.28255,-78.504283,3868,"{'type': 'Point', 'coordinates': [-78.504283, 40.28255]}",83.01983,46.5912782524368 | |
16627,40.757881,-78.497822,2278,"{'type': 'Point', 'coordinates': [-78.497822, 40.757881]}",84.772504,26.87192064068321 | |
16630,40.456176,-78.576441,5080,"{'type': 'Point', 'coordinates': [-78.576441, 40.456176]}",28.37524,179.0293227475785 | |
16631,40.272766,-78.345602,90,"{'type': 'Point', 'coordinates': [-78.345602, 40.272766]}",1.558077,57.76351232962171 | |
16633,40.157385999999995,-78.234926,200,"{'type': 'Point', 'coordinates': [-78.234926, 40.157385999999995]}",0.875263,228.50274717427789 | |
16634,40.210954,-78.173077,302,"{'type': 'Point', 'coordinates': [-78.173077, 40.210954]}",8.881652,34.00268328459615 | |
16635,40.410853,-78.499413,11321,"{'type': 'Point', 'coordinates': [-78.499413, 40.410853]}",147.394536,76.80746048822326 | |
16636,40.600253,-78.502014,742,"{'type': 'Point', 'coordinates': [-78.502014, 40.600253]}",72.726306,10.20263561853396 | |
16637,40.341102,-78.467242,2873,"{'type': 'Point', 'coordinates': [-78.467242, 40.341102]}",48.557958,59.16640893342343 | |
16638,40.336605,-78.203622,67,"{'type': 'Point', 'coordinates': [-78.203622, 40.336605]}",1.781344,37.61205022724415 | |
16639,40.695498,-78.448137,1494,"{'type': 'Point', 'coordinates': [-78.448137, 40.695498]}",93.645783,15.953734937535843 | |
16640,40.705732,-78.574484,817,"{'type': 'Point', 'coordinates': [-78.574484, 40.705732]}",34.526637,23.66288961186692 | |
16641,40.477468,-78.57378100000001,2598,"{'type': 'Point', 'coordinates': [-78.57378100000001, 40.477468]}",43.55318,59.651212609504064 | |
16645,40.799177,-78.499092,142,"{'type': 'Point', 'coordinates': [-78.499092, 40.799177]}",4.684117,30.315212023952437 | |
16646,40.689706,-78.72665,2558,"{'type': 'Point', 'coordinates': [-78.72665, 40.689706]}",49.54284,51.63208245631458 | |
16647,40.400594,-78.103809,764,"{'type': 'Point', 'coordinates': [-78.103809, 40.400594]}",72.396406,10.553010048592744 | |
16648,40.434447999999996,-78.331,15538,"{'type': 'Point', 'coordinates': [-78.331, 40.434447999999996]}",150.344453,103.34934006511035 | |
16650,40.112053,-78.291955,2036,"{'type': 'Point', 'coordinates': [-78.291955, 40.112053]}",117.433215,17.337513922274887 | |
16651,40.851464,-78.380424,5813,"{'type': 'Point', 'coordinates': [-78.380424, 40.851464]}",110.580485,52.568045799401226 | |
16652,40.516022,-77.950096,18028,"{'type': 'Point', 'coordinates': [-77.950096, 40.516022]}",468.405703,38.48800278163991 | |
16655,40.278223,-78.644684,1601,"{'type': 'Point', 'coordinates': [-78.644684, 40.278223]}",90.470412,17.69639337997046 | |
16656,40.807227000000005,-78.555986,1297,"{'type': 'Point', 'coordinates': [-78.555986, 40.807227000000005]}",74.679932,17.36745020067774 | |
16657,40.324864,-78.18028199999999,1343,"{'type': 'Point', 'coordinates': [-78.18028199999999, 40.324864]}",141.723613,9.476190816557859 | |
16659,40.161582,-78.389717,303,"{'type': 'Point', 'coordinates': [-78.389717, 40.161582]}",4.715149,64.26095972788983 | |
16661,40.831088,-78.46092800000001,951,"{'type': 'Point', 'coordinates': [-78.46092800000001, 40.831088]}",53.140204,17.89605474604501 | |
16662,40.312725,-78.29545,6040,"{'type': 'Point', 'coordinates': [-78.29545, 40.312725]}",153.044773,39.46557521438514 | |
16664,40.180753,-78.423648,2104,"{'type': 'Point', 'coordinates': [-78.423648, 40.180753]}",105.919571,19.864128792591124 | |
16665,40.388705,-78.434236,299,"{'type': 'Point', 'coordinates': [-78.434236, 40.388705]}",1.046103,285.822715354033 | |
16666,40.893848999999996,-78.323205,2960,"{'type': 'Point', 'coordinates': [-78.323205, 40.893848999999996]}",67.693372,43.72658522609865 | |
16667,40.178298,-78.531649,1392,"{'type': 'Point', 'coordinates': [-78.531649, 40.178298]}",44.09086,31.57116917202341 | |
16668,40.653366999999996,-78.62231899999999,3569,"{'type': 'Point', 'coordinates': [-78.62231899999999, 40.653366999999996]}",146.448767,24.37029736139738 | |
16669,40.655953000000004,-77.906687,2351,"{'type': 'Point', 'coordinates': [-77.906687, 40.655953000000004]}",275.376129,8.5374139310383 | |
16670,40.262378000000005,-78.507952,47,"{'type': 'Point', 'coordinates': [-78.507952, 40.262378000000005]}",0.412436,113.95707455217294 | |
16671,40.787552000000005,-78.39824200000001,505,"{'type': 'Point', 'coordinates': [-78.39824200000001, 40.787552000000005]}",6.340127,79.65140130473728 | |
16672,40.185501,-78.237228,187,"{'type': 'Point', 'coordinates': [-78.237228, 40.185501]}",11.334556,16.498220133192692 | |
16673,40.312437,-78.391483,5519,"{'type': 'Point', 'coordinates': [-78.391483, 40.312437]}",80.427837,68.62052003213763 | |
16674,40.189417,-78.088273,736,"{'type': 'Point', 'coordinates': [-78.088273, 40.189417]}",58.511296,12.578767696411989 | |
16677,40.811839,-78.243597,481,"{'type': 'Point', 'coordinates': [-78.243597, 40.811839]}",5.971497,80.54931619324266 | |
16678,40.222577,-78.238232,2689,"{'type': 'Point', 'coordinates': [-78.238232, 40.222577]}",120.670683,22.283788681298837 | |
16679,40.155253,-78.194384,844,"{'type': 'Point', 'coordinates': [-78.194384, 40.155253]}",54.4885,15.489506960184258 | |
16680,40.743206,-78.377596,427,"{'type': 'Point', 'coordinates': [-78.377596, 40.743206]}",17.552523,24.326987066189858 | |
16682,40.266061,-78.457822,117,"{'type': 'Point', 'coordinates': [-78.457822, 40.266061]}",0.555564,210.5967989286563 | |
16683,40.663866999999996,-78.065558,383,"{'type': 'Point', 'coordinates': [-78.065558, 40.663866999999996]}",39.550422,9.683841047258612 | |
16685,40.287492,-78.082637,249,"{'type': 'Point', 'coordinates': [-78.082637, 40.287492]}",23.60932,10.54668241186108 | |
16686,40.667866,-78.25074599999999,13488,"{'type': 'Point', 'coordinates': [-78.25074599999999, 40.667866]}",350.535244,38.47829920348894 | |
16689,40.129985,-78.12899,462,"{'type': 'Point', 'coordinates': [-78.12899, 40.129985]}",53.07047,8.70540622685271 | |
16691,40.077493,-78.145934,314,"{'type': 'Point', 'coordinates': [-78.145934, 40.077493]}",74.803846,4.197645131775712 | |
16692,40.750827,-78.710802,753,"{'type': 'Point', 'coordinates': [-78.710802, 40.750827]}",43.85669,17.169558395765847 | |
16693,40.485361,-78.220805,4185,"{'type': 'Point', 'coordinates': [-78.220805, 40.485361]}",194.126897,21.558063641227417 | |
16694,40.155301,-78.148799,254,"{'type': 'Point', 'coordinates': [-78.148799, 40.155301]}",5.757032,44.11995625523708 | |
16695,40.204653,-78.336929,1198,"{'type': 'Point', 'coordinates': [-78.336929, 40.204653]}",40.9092,29.284366352800838 | |
16699,40.447210999999996,-78.560505,1469,"{'type': 'Point', 'coordinates': [-78.560505, 40.447210999999996]}",0.164936,8906.484939612941 | |
16701,41.918454,-78.75060699999999,17980,"{'type': 'Point', 'coordinates': [-78.75060699999999, 41.918454]}",581.401541,30.925270629786656 | |
16720,41.603181,-78.00975600000001,1392,"{'type': 'Point', 'coordinates': [-78.00975600000001, 41.603181]}",758.733047,1.8346373675219658 | |
16724,41.731993,-78.36923900000001,143,"{'type': 'Point', 'coordinates': [-78.36923900000001, 41.731993]}",5.867131,24.373070926829485 | |
16725,41.908177,-78.655324,166,"{'type': 'Point', 'coordinates': [-78.655324, 41.908177]}",1.152399,144.0473308289924 | |
16726,41.81459,-78.572463,542,"{'type': 'Point', 'coordinates': [-78.572463, 41.81459]}",65.973329,8.21544112166903 | |
16727,41.981004999999996,-78.53004,211,"{'type': 'Point', 'coordinates': [-78.53004, 41.981004999999996]}",11.163496,18.900889112156264 | |
16728,41.565765,-78.924183,25,"{'type': 'Point', 'coordinates': [-78.924183, 41.565765]}",14.440369,1.7312576984701706 | |
16729,41.96255,-78.47702199999999,761,"{'type': 'Point', 'coordinates': [-78.47702199999999, 41.96255]}",35.885279,21.206467420805062 | |
16730,41.817813,-78.422813,121,"{'type': 'Point', 'coordinates': [-78.422813, 41.817813]}",1.55139,77.9945726090796 | |
16731,41.95138,-78.360377,2818,"{'type': 'Point', 'coordinates': [-78.360377, 41.95138]}",155.019041,18.178412031332332 | |
16732,41.857255,-78.617264,293,"{'type': 'Point', 'coordinates': [-78.617264, 41.857255]}",17.083315,17.15123791840167 | |
16733,41.700701,-78.57178499999999,222,"{'type': 'Point', 'coordinates': [-78.57178499999999, 41.700701]}",29.71657,7.470579545351297 | |
16734,41.617607,-78.84021700000001,287,"{'type': 'Point', 'coordinates': [-78.84021700000001, 41.617607]}",2.105711,136.29600643203176 | |
16735,41.636099,-78.813409,6309,"{'type': 'Point', 'coordinates': [-78.813409, 41.636099]}",711.729325,8.864324931391579 | |
16738,41.806868,-78.73214300000001,2679,"{'type': 'Point', 'coordinates': [-78.73214300000001, 41.806868]}",169.805173,15.776904511619325 | |
16740,41.700701,-78.57178499999999,1032,"{'type': 'Point', 'coordinates': [-78.57178499999999, 41.700701]}",109.853956,9.394290725406375 | |
16743,41.767638,-78.232975,3942,"{'type': 'Point', 'coordinates': [-78.232975, 41.767638]}",279.00704,14.12867574954381 | |
16744,41.867084999999996,-78.567081,332,"{'type': 'Point', 'coordinates': [-78.567081, 41.867084999999996]}",17.80944,18.64179895605926 | |
16745,41.922273,-78.48050500000001,611,"{'type': 'Point', 'coordinates': [-78.48050500000001, 41.922273]}",29.071729,21.016981824507237 | |
16746,41.793875,-78.122491,1265,"{'type': 'Point', 'coordinates': [-78.122491, 41.793875]}",107.818976,11.732628586641372 | |
16748,41.947228,-78.144487,2997,"{'type': 'Point', 'coordinates': [-78.144487, 41.947228]}",267.871434,11.188203069088733 | |
16749,41.778911,-78.45151700000001,4319,"{'type': 'Point', 'coordinates': [-78.45151700000001, 41.778911]}",426.03079,10.137764925394242 | |
16750,41.888978,-78.291593,417,"{'type': 'Point', 'coordinates': [-78.291593, 41.888978]}",50.166219,8.312366534938581 | |
16801,40.778889,-77.84137700000001,42812,"{'type': 'Point', 'coordinates': [-77.84137700000001, 40.778889]}",80.997786,528.5576571191712 | |
16802,40.802605,-77.860639,12764,"{'type': 'Point', 'coordinates': [-77.860639, 40.802605]}",2.159899,5909.535584765769 | |
16803,40.80165,-77.899658,23685,"{'type': 'Point', 'coordinates': [-77.899658, 40.80165]}",62.777797,377.2830703186351 | |
16820,40.89739,-77.394449,1217,"{'type': 'Point', 'coordinates': [-77.394449, 40.89739]}",73.514435,16.554571901423166 | |
16821,40.964394,-78.2009,318,"{'type': 'Point', 'coordinates': [-78.2009, 40.964394]}",2.782776,114.27437925294741 | |
16822,41.1483,-77.69703,2283,"{'type': 'Point', 'coordinates': [-77.69703, 41.1483]}",255.272841,8.943372083989146 | |
16823,40.939052000000004,-77.77264699999999,26617,"{'type': 'Point', 'coordinates': [-77.77264699999999, 40.939052000000004]}",332.503021,80.05040050448143 | |
16825,40.98677,-78.316466,240,"{'type': 'Point', 'coordinates': [-78.316466, 40.98677]}",1.397045,171.79117351266422 | |
16826,41.053921,-77.58041,616,"{'type': 'Point', 'coordinates': [-77.58041, 41.053921]}",8.484993,72.59876348748904 | |
16827,40.768082,-77.77265899999999,3991,"{'type': 'Point', 'coordinates': [-77.77265899999999, 40.768082]}",45.39455,87.91804302498868 | |
16828,40.812101,-77.680555,4478,"{'type': 'Point', 'coordinates': [-77.680555, 40.812101]}",146.027076,30.665545888215966 | |
16829,41.084949,-77.887495,666,"{'type': 'Point', 'coordinates': [-77.887495, 41.084949]}",83.502269,7.975831171725406 | |
16830,41.078677,-78.428662,13695,"{'type': 'Point', 'coordinates': [-78.428662, 41.078677]}",334.814203,40.9032827081114 | |
16832,40.843945,-77.48159,510,"{'type': 'Point', 'coordinates': [-77.48159, 40.843945]}",44.824711,11.377652830823605 | |
16833,40.944007,-78.57236,5342,"{'type': 'Point', 'coordinates': [-78.57236, 40.944007]}",188.469602,28.344093388598548 | |
16834,41.051823999999996,-78.08707700000001,299,"{'type': 'Point', 'coordinates': [-78.08707700000001, 41.051823999999996]}",47.844043,6.249471851699489 | |
16835,40.90743,-77.877404,238,"{'type': 'Point', 'coordinates': [-77.877404, 40.90743]}",0.432097,550.8022504206232 | |
16836,41.159132,-78.273274,1152,"{'type': 'Point', 'coordinates': [-78.273274, 41.159132]}",317.784934,3.625093189597213 | |
16837,40.945440000000005,-78.474451,186,"{'type': 'Point', 'coordinates': [-78.474451, 40.945440000000005]}",2.197521,84.64082937091386 | |
16838,41.006463000000004,-78.651726,1821,"{'type': 'Point', 'coordinates': [-78.651726, 41.006463000000004]}",106.25597,17.137860583268875 | |
16839,41.003854,-78.110537,489,"{'type': 'Point', 'coordinates': [-78.110537, 41.003854]}",2.771893,176.41373602805015 | |
16840,40.924257,-78.20308,510,"{'type': 'Point', 'coordinates': [-78.20308, 40.924257]}",1.972487,258.55683712997853 | |
16841,41.044614,-77.698187,5934,"{'type': 'Point', 'coordinates': [-77.698187, 41.044614]}",345.451894,17.177500262887545 | |
16843,41.002756,-78.465645,657,"{'type': 'Point', 'coordinates': [-78.465645, 41.002756]}",1.043189,629.7995856934841 | |
16844,40.909068,-77.932075,2769,"{'type': 'Point', 'coordinates': [-77.932075, 40.909068]}",162.272204,17.06392057138757 | |
16845,41.121742,-78.01056899999999,1088,"{'type': 'Point', 'coordinates': [-78.01056899999999, 41.121742]}",317.129185,3.430778532729493 | |
16847,40.999285,-78.165498,335,"{'type': 'Point', 'coordinates': [-78.165498, 40.999285]}",3.349989,100.00032835928715 | |
16848,41.011313,-77.533288,319,"{'type': 'Point', 'coordinates': [-77.533288, 41.011313]}",1.047045,304.66694363661543 | |
16849,40.961123,-78.115673,331,"{'type': 'Point', 'coordinates': [-78.115673, 40.961123]}",10.671476,31.017265090602272 | |
16851,40.821875,-77.78712900000001,866,"{'type': 'Point', 'coordinates': [-77.78712900000001, 40.821875]}",10.682706,81.06560266659028 | |
16852,40.937031,-77.518663,371,"{'type': 'Point', 'coordinates': [-77.518663, 40.937031]}",8.708289,42.603087701843606 | |
16853,40.939209000000005,-77.78706,300,"{'type': 'Point', 'coordinates': [-77.78706, 40.939209000000005]}",0.6898,434.9086691794723 | |
16854,40.898021,-77.4731,947,"{'type': 'Point', 'coordinates': [-77.4731, 40.898021]}",6.186568,153.07356194904833 | |
16855,40.996457,-78.375664,282,"{'type': 'Point', 'coordinates': [-78.375664, 40.996457]}",7.00599,40.25127069835955 | |
16858,41.003352,-78.209655,3688,"{'type': 'Point', 'coordinates': [-78.209655, 41.003352]}",139.980205,26.34658236141317 | |
16859,41.040743,-78.023238,542,"{'type': 'Point', 'coordinates': [-78.023238, 41.040743]}",59.074158,9.174908595396316 | |
16860,40.937991,-78.179764,451,"{'type': 'Point', 'coordinates': [-78.179764, 40.937991]}",14.802672,30.46747235904437 | |
16861,40.859044,-78.520499,311,"{'type': 'Point', 'coordinates': [-78.520499, 40.859044]}",31.474025,9.881163912146603 | |
16863,40.90785,-78.474641,718,"{'type': 'Point', 'coordinates': [-78.474641, 40.90785]}",66.767546,10.753727566982917 | |
16865,40.712063,-77.996064,1839,"{'type': 'Point', 'coordinates': [-77.996064, 40.712063]}",91.28129,20.146516334289316 | |
16866,40.829699,-78.18149100000001,9881,"{'type': 'Point', 'coordinates': [-78.18149100000001, 40.829699]}",415.655443,23.772093368208342 | |
16868,40.731972999999996,-77.880499,483,"{'type': 'Point', 'coordinates': [-77.880499, 40.731972999999996]}",1.554746,310.6616772128695 | |
16870,40.800878000000004,-78.06190699999999,7046,"{'type': 'Point', 'coordinates': [-78.06190699999999, 40.800878000000004]}",176.385582,39.94657567873093 | |
16871,41.186615,-78.025727,46,"{'type': 'Point', 'coordinates': [-78.025727, 41.186615]}",65.432433,0.7030152768429075 | |
16872,40.96747,-77.35840400000001,1551,"{'type': 'Point', 'coordinates': [-77.35840400000001, 40.96747]}",150.07547,10.334800217517227 | |
16874,40.984877000000004,-77.97585,1371,"{'type': 'Point', 'coordinates': [-77.97585, 40.984877000000004]}",89.433856,15.329765050049948 | |
16875,40.840389,-77.588045,3945,"{'type': 'Point', 'coordinates': [-77.588045, 40.840389]}",201.704537,19.558310678951166 | |
16876,40.965638,-78.287646,311,"{'type': 'Point', 'coordinates': [-78.287646, 40.965638]}",2.83111,109.85090653489269 | |
16877,40.738633,-78.061155,1762,"{'type': 'Point', 'coordinates': [-78.061155, 40.738633]}",81.457231,21.630983257950422 | |
16878,40.948941,-78.323571,1762,"{'type': 'Point', 'coordinates': [-78.323571, 40.948941]}",52.936051,33.28544473406224 | |
16879,40.970952000000004,-78.151495,532,"{'type': 'Point', 'coordinates': [-78.151495, 40.970952000000004]}",5.53173,96.17244514826285 | |
16881,41.02678,-78.320437,2232,"{'type': 'Point', 'coordinates': [-78.320437, 41.02678]}",82.365907,27.098590682671652 | |
16882,40.912451000000004,-77.323471,300,"{'type': 'Point', 'coordinates': [-77.323471, 40.912451000000004]}",68.347471,4.38933578098303 | |
16901,41.721291,-77.337283,10243,"{'type': 'Point', 'coordinates': [-77.337283, 41.721291]}",603.803333,16.964132922399752 | |
16911,41.658676,-77.129189,332,"{'type': 'Point', 'coordinates': [-77.129189, 41.658676]}",22.60044,14.68997948712503 | |
16912,41.678438,-77.043261,1776,"{'type': 'Point', 'coordinates': [-77.043261, 41.678438]}",65.528051,27.102896742648426 | |
16914,41.85423,-76.783664,2347,"{'type': 'Point', 'coordinates': [-76.783664, 41.85423]}",196.842691,11.923226552516496 | |
16915,41.775448,-77.97091800000001,5929,"{'type': 'Point', 'coordinates': [-77.97091800000001, 41.775448]}",631.01404,9.395987449027283 | |
16917,41.721712,-77.056726,1437,"{'type': 'Point', 'coordinates': [-77.056726, 41.721712]}",115.250393,12.46850412041545 | |
16920,41.973653000000006,-77.280816,2006,"{'type': 'Point', 'coordinates': [-77.280816, 41.973653000000006]}",24.691223,81.24344427977505 | |
16921,41.724126,-77.556256,475,"{'type': 'Point', 'coordinates': [-77.556256, 41.724126]}",159.668325,2.9749169097878365 | |
16922,41.680661,-77.710708,2002,"{'type': 'Point', 'coordinates': [-77.710708, 41.680661]}",396.958028,5.043354356849032 | |
16923,41.950555,-77.870564,1470,"{'type': 'Point', 'coordinates': [-77.870564, 41.950555]}",202.935388,7.243684871758296 | |
16925,41.948555999999996,-76.783808,3186,"{'type': 'Point', 'coordinates': [-76.783808, 41.948555999999996]}",200.430561,15.895779486442688 | |
16926,41.727084999999995,-76.701713,872,"{'type': 'Point', 'coordinates': [-76.701713, 41.727084999999995]}",62.962074,13.849607304867371 | |
16927,41.958712,-77.658709,651,"{'type': 'Point', 'coordinates': [-77.658709, 41.958712]}",48.903935,13.311812229424893 | |
16928,41.953384,-77.434478,1387,"{'type': 'Point', 'coordinates': [-77.434478, 41.953384]}",89.277055,15.535906734378726 | |
16929,41.963406,-77.134908,2320,"{'type': 'Point', 'coordinates': [-77.134908, 41.963406]}",119.736168,19.375933260199208 | |
16930,41.583782,-77.138826,1300,"{'type': 'Point', 'coordinates': [-77.138826, 41.583782]}",173.060047,7.511843562598824 | |
16932,41.779128,-76.939472,734,"{'type': 'Point', 'coordinates': [-76.939472, 41.779128]}",55.28202,13.277373004821458 | |
16933,41.819424,-77.062502,7488,"{'type': 'Point', 'coordinates': [-77.062502, 41.819424]}",252.679003,29.63443701730927 | |
16935,41.877494,-77.304722,1256,"{'type': 'Point', 'coordinates': [-77.304722, 41.877494]}",129.596775,9.691599192958313 | |
16936,41.951125,-76.967113,2095,"{'type': 'Point', 'coordinates': [-76.967113, 41.951125]}",125.143884,16.74073021419089 | |
16937,41.967896,-77.710941,172,"{'type': 'Point', 'coordinates': [-77.710941, 41.967896]}",19.018754,9.043704966161295 | |
16938,41.591145000000004,-77.370357,747,"{'type': 'Point', 'coordinates': [-77.370357, 41.591145000000004]}",274.28809,2.723413911263883 | |
16939,41.663649,-77.025818,295,"{'type': 'Point', 'coordinates': [-77.025818, 41.663649]}",7.00389,42.11945076236206 | |
16940,41.985396,-77.23825,302,"{'type': 'Point', 'coordinates': [-77.23825, 41.985396]}",6.051906,49.90163429504688 | |
16941,41.988299,-77.758044,69,"{'type': 'Point', 'coordinates': [-77.758044, 41.988299]}",6.306919,10.940365652389067 | |
16942,41.962540999999995,-77.35220799999999,847,"{'type': 'Point', 'coordinates': [-77.35220799999999, 41.962540999999995]}",61.420174,13.790257253260142 | |
16943,41.830161,-77.612813,549,"{'type': 'Point', 'coordinates': [-77.612813, 41.830161]}",97.705453,5.618928966021988 | |
16946,41.908728,-77.137724,2484,"{'type': 'Point', 'coordinates': [-77.137724, 41.908728]}",164.195199,15.128335146997811 | |
16947,41.759502000000005,-76.804051,4818,"{'type': 'Point', 'coordinates': [-76.804051, 41.759502000000005]}",299.922501,16.064149851831225 | |
16948,41.854715,-77.759215,1634,"{'type': 'Point', 'coordinates': [-77.759215, 41.854715]}",239.467407,6.823475563837378 | |
16950,41.9,-77.531963,3378,"{'type': 'Point', 'coordinates': [-77.531963, 41.9]}",297.390905,11.358787182815831 | |
17002,40.50247,-77.848424,784,"{'type': 'Point', 'coordinates': [-77.848424, 40.50247]}",35.404892,22.143832552857386 | |
17003,40.362358,-76.569599,11720,"{'type': 'Point', 'coordinates': [-76.569599, 40.362358]}",123.66964,94.76861095415173 | |
17004,40.601046000000004,-77.730437,5000,"{'type': 'Point', 'coordinates': [-77.730437, 40.601046000000004]}",126.63192,39.48451543655028 | |
17005,40.602849,-76.8097,368,"{'type': 'Point', 'coordinates': [-76.8097, 40.602849]}",1.473765,249.7005967708556 | |
17006,40.286783,-77.546042,1052,"{'type': 'Point', 'coordinates': [-77.546042, 40.286783]}",199.687816,5.268223275074529 | |
17007,40.125795000000004,-77.118771,5591,"{'type': 'Point', 'coordinates': [-77.118771, 40.125795000000004]}",54.301955,102.96130222199183 | |
17009,40.636112,-77.565287,2007,"{'type': 'Point', 'coordinates': [-77.565287, 40.636112]}",3.885351,516.5556470959766 | |
17010,40.277992,-76.582841,182,"{'type': 'Point', 'coordinates': [-76.582841, 40.277992]}",0.089253,2039.1471435133833 | |
17011,40.23483,-76.928846,34586,"{'type': 'Point', 'coordinates': [-76.928846, 40.23483]}",35.292507,979.9813881173134 | |
17013,40.242686,-77.197284,34575,"{'type': 'Point', 'coordinates': [-77.197284, 40.242686]}",112.446118,307.4806015090712 | |
17015,40.177826,-77.229536,20798,"{'type': 'Point', 'coordinates': [-77.229536, 40.177826]}",296.516538,70.14111300598012 | |
17016,40.277475,-76.402287,799,"{'type': 'Point', 'coordinates': [-76.402287, 40.277475]}",1.876769,425.7316696940327 | |
17017,40.637788,-76.882189,1755,"{'type': 'Point', 'coordinates': [-76.882189, 40.637788]}",66.144772,26.532709191287257 | |
17018,40.422061,-76.826124,4313,"{'type': 'Point', 'coordinates': [-76.826124, 40.422061]}",113.005238,38.16637242956826 | |
17019,40.094021999999995,-77.022058,17721,"{'type': 'Point', 'coordinates': [-77.022058, 40.094021999999995]}",163.295076,108.52133716512064 | |
17020,40.414171,-77.041503,9047,"{'type': 'Point', 'coordinates': [-77.041503, 40.414171]}",151.634197,59.663322515566854 | |
17021,40.330526,-77.668192,1088,"{'type': 'Point', 'coordinates': [-77.668192, 40.330526]}",135.111891,8.05258509778388 | |
17022,40.167035,-76.60889300000001,29602,"{'type': 'Point', 'coordinates': [-76.60889300000001, 40.167035]}",143.065153,206.91272038831147 | |
17023,40.584266,-76.816261,3535,"{'type': 'Point', 'coordinates': [-76.816261, 40.584266]}",58.298724,60.63597549750832 | |
17024,40.406934,-77.306825,1893,"{'type': 'Point', 'coordinates': [-77.306825, 40.406934]}",81.861327,23.124472438615612 | |
17025,40.294092,-76.974476,16778,"{'type': 'Point', 'coordinates': [-76.974476, 40.294092]}",39.253274,427.4293145585767 | |
17026,40.458441,-76.431397,3616,"{'type': 'Point', 'coordinates': [-76.431397, 40.458441]}",58.250081,62.0771668969868 | |
17027,40.155998,-76.99546099999999,2141,"{'type': 'Point', 'coordinates': [-76.99546099999999, 40.155998]}",1.003147,2134.283410108389 | |
17028,40.396652,-76.65894300000001,3720,"{'type': 'Point', 'coordinates': [-76.65894300000001, 40.396652]}",62.890771,59.150173242430114 | |
17029,40.558017,-77.616997,371,"{'type': 'Point', 'coordinates': [-77.616997, 40.558017]}",3.684099,100.70304842513734 | |
17030,40.609235,-76.72560899999999,832,"{'type': 'Point', 'coordinates': [-76.72560899999999, 40.609235]}",10.534591,78.97791190944194 | |
17032,40.491831,-76.832555,8192,"{'type': 'Point', 'coordinates': [-76.832555, 40.491831]}",302.887632,27.04633380342186 | |
17033,40.271823,-76.637562,16972,"{'type': 'Point', 'coordinates': [-76.637562, 40.271823]}",66.969412,253.42913269120533 | |
17034,40.20861,-76.785533,2414,"{'type': 'Point', 'coordinates': [-76.785533, 40.20861]}",1.988263,1214.1250931089096 | |
17035,40.403786,-77.581315,839,"{'type': 'Point', 'coordinates': [-77.581315, 40.403786]}",91.497787,9.169620681645556 | |
17036,40.251845,-76.665899,21913,"{'type': 'Point', 'coordinates': [-76.665899, 40.251845]}",71.488133,306.5263992836405 | |
17037,40.434076,-77.422021,1126,"{'type': 'Point', 'coordinates': [-77.422021, 40.434076]}",64.037845,17.5833524691532 | |
17038,40.467915000000005,-76.556026,8219,"{'type': 'Point', 'coordinates': [-76.556026, 40.467915000000005]}",186.703238,44.02173249935815 | |
17039,40.292709,-76.240707,37,"{'type': 'Point', 'coordinates': [-76.240707, 40.292709]}",1.580005,23.417647412508188 | |
17040,40.322798,-77.30409499999999,2787,"{'type': 'Point', 'coordinates': [-77.30409499999999, 40.322798]}",130.360909,21.379108364456098 | |
17041,40.216634,-76.53960500000001,213,"{'type': 'Point', 'coordinates': [-76.53960500000001, 40.216634]}",1.457661,146.12451043143776 | |
17042,40.294817,-76.424823,37133,"{'type': 'Point', 'coordinates': [-76.424823, 40.294817]}",171.72761,216.23197341417608 | |
17043,40.247611,-76.900134,5957,"{'type': 'Point', 'coordinates': [-76.900134, 40.247611]}",5.240948,1136.626427127306 | |
17044,40.577237,-77.594258,21209,"{'type': 'Point', 'coordinates': [-77.594258, 40.577237]}",258.152315,82.15692352013191 | |
17045,40.597093,-77.000928,3350,"{'type': 'Point', 'coordinates': [-77.000928, 40.597093]}",101.768101,32.91797692088211 | |
17046,40.381858,-76.429627,29790,"{'type': 'Point', 'coordinates': [-76.429627, 40.381858]}",99.391237,299.72461254305546 | |
17047,40.376501,-77.428287,2526,"{'type': 'Point', 'coordinates': [-77.428287, 40.376501]}",119.878045,21.071414703167708 | |
17048,40.639666,-76.79746800000001,4046,"{'type': 'Point', 'coordinates': [-76.79746800000001, 40.639666]}",89.85918,45.02600624666284 | |
17049,40.653043,-77.256088,3360,"{'type': 'Point', 'coordinates': [-77.256088, 40.653043]}",103.684511,32.40599745896473 | |
17050,40.24799,-77.02736999999999,32815,"{'type': 'Point', 'coordinates': [-77.02736999999999, 40.24799]}",85.093432,385.6349336103872 | |
17051,40.459518,-77.775772,4653,"{'type': 'Point', 'coordinates': [-77.775772, 40.459518]}",230.719349,20.167359262096394 | |
17052,40.276913,-77.986345,1635,"{'type': 'Point', 'coordinates': [-77.986345, 40.276913]}",104.593793,15.631902745892386 | |
17053,40.32504,-77.026474,5001,"{'type': 'Point', 'coordinates': [-77.026474, 40.32504]}",74.532491,67.09825383402254 | |
17055,40.183052,-77.005224,34237,"{'type': 'Point', 'coordinates': [-77.005224, 40.183052]}",108.609909,315.2290644125298 | |
17056,40.537288000000004,-77.35426,128,"{'type': 'Point', 'coordinates': [-77.35426, 40.537288000000004]}",0.218736,585.1803086826128 | |
17057,40.193562,-76.72457299999999,21329,"{'type': 'Point', 'coordinates': [-76.72457299999999, 40.193562]}",101.116273,210.93538524704127 | |
17058,40.505381,-77.55247,1909,"{'type': 'Point', 'coordinates': [-77.55247, 40.505381]}",102.599103,18.60640048675669 | |
17059,40.589162,-77.39107299999999,7579,"{'type': 'Point', 'coordinates': [-77.39107299999999, 40.589162]}",214.973196,35.25555809292615 | |
17060,40.469260999999996,-77.893956,1334,"{'type': 'Point', 'coordinates': [-77.893956, 40.469260999999996]}",65.28539,20.43336189000326 | |
17061,40.566703000000004,-76.90909,7157,"{'type': 'Point', 'coordinates': [-76.90909, 40.566703000000004]}",102.33788,69.93500353925643 | |
17062,40.546772999999995,-77.187656,3979,"{'type': 'Point', 'coordinates': [-77.187656, 40.546772999999995]}",213.09488,18.672433612670563 | |
17063,40.761026,-77.48494699999999,3311,"{'type': 'Point', 'coordinates': [-77.48494699999999, 40.761026]}",243.387164,13.603839847527867 | |
17064,40.242231,-76.476111,645,"{'type': 'Point', 'coordinates': [-76.476111, 40.242231]}",3.068575,210.1952860855609 | |
17065,40.110211,-77.189087,4222,"{'type': 'Point', 'coordinates': [-77.189087, 40.110211]}",22.789595,185.2599837776845 | |
17066,40.352563,-77.869227,5348,"{'type': 'Point', 'coordinates': [-77.869227, 40.352563]}",84.843618,63.03361556316469 | |
17067,40.390423,-76.315048,14232,"{'type': 'Point', 'coordinates': [-76.315048, 40.390423]}",127.313965,111.78663707473096 | |
17068,40.410582,-77.178299,4298,"{'type': 'Point', 'coordinates': [-77.178299, 40.410582]}",87.24439,49.263912556440594 | |
17069,40.453987,-76.970039,133,"{'type': 'Point', 'coordinates': [-76.970039, 40.453987]}",0.126936,1047.7721056280332 | |
17070,40.202401,-76.865678,15692,"{'type': 'Point', 'coordinates': [-76.865678, 40.202401]}",34.869084,450.026160710158 | |
17071,40.298415000000006,-77.601934,108,"{'type': 'Point', 'coordinates': [-77.601934, 40.298415000000006]}",21.562243,5.008755350730442 | |
17072,40.233731,-77.081728,193,"{'type': 'Point', 'coordinates': [-77.081728, 40.233731]}",0.172923,1116.103699334386 | |
17073,40.302838,-76.255161,5271,"{'type': 'Point', 'coordinates': [-76.255161, 40.302838]}",67.436013,78.1629839237382 | |
17074,40.478901,-77.148585,7477,"{'type': 'Point', 'coordinates': [-77.148585, 40.478901]}",168.639076,44.33729226552451 | |
17075,40.393865999999996,-77.835285,123,"{'type': 'Point', 'coordinates': [-77.835285, 40.393865999999996]}",0.445078,276.35605444438954 | |
17076,40.616186,-77.311762,48,"{'type': 'Point', 'coordinates': [-77.311762, 40.616186]}",0.394264,121.74583527788486 | |
17077,40.403009000000004,-76.535937,46,"{'type': 'Point', 'coordinates': [-76.535937, 40.403009000000004]}",0.009293,4949.962337243087 | |
17078,40.287452,-76.58108,20218,"{'type': 'Point', 'coordinates': [-76.58108, 40.287452]}",78.580234,257.2911656129708 | |
17080,40.640678,-76.8031,298,"{'type': 'Point', 'coordinates': [-76.8031, 40.640678]}",1.2416,240.01288659793815 | |
17081,40.20102,-77.283454,352,"{'type': 'Point', 'coordinates': [-77.283454, 40.20102]}",1.582511,222.43131327365182 | |
17082,40.495071,-77.448376,3588,"{'type': 'Point', 'coordinates': [-77.448376, 40.495071]}",152.090655,23.59119302892081 | |
17083,40.277602,-76.437595,109,"{'type': 'Point', 'coordinates': [-76.437595, 40.277602]}",0.092567,1177.5254680393662 | |
17084,40.675647,-77.626511,4340,"{'type': 'Point', 'coordinates': [-77.626511, 40.675647]}",83.144901,52.19802955806033 | |
17086,40.690624,-77.122007,2499,"{'type': 'Point', 'coordinates': [-77.122007, 40.690624]}",99.020043,25.237314833321168 | |
17087,40.366437,-76.2769,2767,"{'type': 'Point', 'coordinates': [-76.2769, 40.366437]}",31.903556,86.73014381218195 | |
17088,40.300678000000005,-76.294224,823,"{'type': 'Point', 'coordinates': [-76.294224, 40.300678000000005]}",4.734918,173.81504811698954 | |
17090,40.318207,-77.181043,5216,"{'type': 'Point', 'coordinates': [-77.181043, 40.318207]}",88.320208,59.05783192901901 | |
17093,40.307209,-76.930571,801,"{'type': 'Point', 'coordinates': [-76.930571, 40.307209]}",0.971725,824.3072885847333 | |
17094,40.581247999999995,-77.198153,2392,"{'type': 'Point', 'coordinates': [-77.198153, 40.581247999999995]}",78.120163,30.619495763212882 | |
17097,40.580098,-76.677428,925,"{'type': 'Point', 'coordinates': [-76.677428, 40.580098]}",7.807978,118.46857150468405 | |
17098,40.588957,-76.632327,2528,"{'type': 'Point', 'coordinates': [-76.632327, 40.588957]}",25.20563,100.29505312900332 | |
17099,40.632242,-77.576438,1179,"{'type': 'Point', 'coordinates': [-77.576438, 40.632242]}",4.020894,293.2183738243286 | |
17101,40.258655,-76.894376,2212,"{'type': 'Point', 'coordinates': [-76.894376, 40.258655]}",2.743067,806.3966355907457 | |
17102,40.27037,-76.90527900000001,7628,"{'type': 'Point', 'coordinates': [-76.90527900000001, 40.27037]}",4.246939,1796.1171563801597 | |
17103,40.275965,-76.866333,11848,"{'type': 'Point', 'coordinates': [-76.866333, 40.275965]}",5.327414,2223.968326846759 | |
17104,40.254506,-76.862176,20962,"{'type': 'Point', 'coordinates': [-76.862176, 40.254506]}",8.749205,2395.874825198404 | |
17109,40.289953000000004,-76.824314,23131,"{'type': 'Point', 'coordinates': [-76.824314, 40.289953000000004]}",19.464488,1188.3693010573922 | |
17110,40.315813,-76.886436,24433,"{'type': 'Point', 'coordinates': [-76.886436, 40.315813]}",44.6482,547.2337070699379 | |
17111,40.267831,-76.78737,30714,"{'type': 'Point', 'coordinates': [-76.78737, 40.267831]}",47.769671,642.960258193949 | |
17112,40.373101,-76.776511,33850,"{'type': 'Point', 'coordinates': [-76.776511, 40.373101]}",178.728019,189.39391926007977 | |
17113,40.225984000000004,-76.82799399999999,10749,"{'type': 'Point', 'coordinates': [-76.82799399999999, 40.225984000000004]}",17.389739,618.1231357181382 | |
17120,40.265186,-76.882805,0,"{'type': 'Point', 'coordinates': [-76.882805, 40.265186]}",0.246179,0.0 | |
17201,39.961056,-77.656165,25293,"{'type': 'Point', 'coordinates': [-77.656165, 39.961056]}",49.06391,515.5112994459676 | |
17202,39.985784,-77.593408,30200,"{'type': 'Point', 'coordinates': [-77.593408, 39.985784]}",308.403158,97.92377028772188 | |
17210,40.196345,-77.669137,193,"{'type': 'Point', 'coordinates': [-77.669137, 40.196345]}",31.042488,6.217285160905917 | |
17211,39.754149,-78.400966,368,"{'type': 'Point', 'coordinates': [-78.400966, 39.754149]}",64.866156,5.673220407881114 | |
17212,39.812634,-78.064287,702,"{'type': 'Point', 'coordinates': [-78.064287, 39.812634]}",91.280071,7.690616279209511 | |
17213,40.244192,-77.771225,639,"{'type': 'Point', 'coordinates': [-77.771225, 40.244192]}",103.140712,6.195419709726263 | |
17214,39.748111,-77.47131999999999,1089,"{'type': 'Point', 'coordinates': [-77.47131999999999, 39.748111]}",10.303651,105.6906915810716 | |
17215,40.078237,-77.892945,347,"{'type': 'Point', 'coordinates': [-77.892945, 40.078237]}",30.899617,11.229912655551686 | |
17217,40.238625,-77.72156700000001,150,"{'type': 'Point', 'coordinates': [-77.72156700000001, 40.238625]}",9.995049,15.007430178681465 | |
17219,40.249798,-77.683214,405,"{'type': 'Point', 'coordinates': [-77.683214, 40.249798]}",33.904769,11.945222219328496 | |
17220,40.191575,-77.738979,534,"{'type': 'Point', 'coordinates': [-77.738979, 40.191575]}",33.811713,15.79334356706506 | |
17221,40.068125,-77.816484,637,"{'type': 'Point', 'coordinates': [-77.816484, 40.068125]}",26.885773,23.69282817347301 | |
17222,39.896406,-77.493941,10749,"{'type': 'Point', 'coordinates': [-77.493941, 39.896406]}",153.054008,70.23011119055438 | |
17223,40.0865,-77.942752,289,"{'type': 'Point', 'coordinates': [-77.942752, 40.0865]}",28.251086,10.229695240742249 | |
17224,39.967940999999996,-77.897478,1834,"{'type': 'Point', 'coordinates': [-77.897478, 39.967940999999996]}",94.897223,19.326171430748822 | |
17225,39.783506,-77.76286999999999,18879,"{'type': 'Point', 'coordinates': [-77.76286999999999, 39.783506]}",211.252659,89.36692247741128 | |
17228,39.9871,-78.093362,1183,"{'type': 'Point', 'coordinates': [-78.093362, 39.9871]}",74.271733,15.927997802340226 | |
17229,40.084004,-78.010139,1276,"{'type': 'Point', 'coordinates': [-78.010139, 40.084004]}",70.382231,18.129575915261906 | |
17233,39.975605,-77.98716,5047,"{'type': 'Point', 'coordinates': [-77.98716, 39.975605]}",207.528385,24.319564767007655 | |
17235,39.857193,-77.698053,672,"{'type': 'Point', 'coordinates': [-77.698053, 39.857193]}",1.540548,436.2084141487315 | |
17236,39.800187,-77.9474,8895,"{'type': 'Point', 'coordinates': [-77.9474, 39.800187]}",321.139172,27.69827157678541 | |
17237,39.833929,-77.543724,1917,"{'type': 'Point', 'coordinates': [-77.543724, 39.833929]}",7.512029,255.19070812958788 | |
17238,39.858109999999996,-78.13094,1794,"{'type': 'Point', 'coordinates': [-78.13094, 39.858109999999996]}",141.52195,12.676478807704388 | |
17239,40.131797,-77.83677,203,"{'type': 'Point', 'coordinates': [-77.83677, 40.131797]}",23.203554,8.748659795822658 | |
17240,40.150871,-77.579686,3345,"{'type': 'Point', 'coordinates': [-77.579686, 40.150871]}",124.68716,26.82714082187773 | |
17241,40.176528000000005,-77.40844799999999,11853,"{'type': 'Point', 'coordinates': [-77.40844799999999, 40.176528000000005]}",292.643987,40.5031387164637 | |
17243,40.277527,-77.819941,1329,"{'type': 'Point', 'coordinates': [-77.819941, 40.277527]}",154.65308,8.593427301932817 | |
17244,40.086764,-77.65861600000001,2407,"{'type': 'Point', 'coordinates': [-77.65861600000001, 40.086764]}",67.36187,35.732380944887666 | |
17246,40.054394,-77.660811,195,"{'type': 'Point', 'coordinates': [-77.660811, 40.054394]}",4.213929,46.275103353663525 | |
17247,39.798776000000004,-77.579352,366,"{'type': 'Point', 'coordinates': [-77.579352, 39.798776000000004]}",0.376662,971.6934546091721 | |
17249,40.241378999999995,-77.899459,371,"{'type': 'Point', 'coordinates': [-77.899459, 40.241378999999995]}",0.809375,458.3783783783784 | |
17250,39.737140999999994,-77.524295,68,"{'type': 'Point', 'coordinates': [-77.524295, 39.737140999999994]}",0.022723,2992.5626017691325 | |
17251,40.131802,-77.685552,158,"{'type': 'Point', 'coordinates': [-77.685552, 40.131802]}",5.876644,26.886093491455327 | |
17252,39.912329,-77.82691,3608,"{'type': 'Point', 'coordinates': [-77.82691, 39.912329]}",72.066748,50.06469835436448 | |
17253,40.213308000000005,-78.006905,337,"{'type': 'Point', 'coordinates': [-78.006905, 40.213308000000005]}",0.686398,490.9687965291275 | |
17254,39.970228999999996,-77.590358,89,"{'type': 'Point', 'coordinates': [-77.590358, 39.970228999999996]}",0.919807,96.75942888018899 | |
17255,40.161252000000005,-77.862514,1125,"{'type': 'Point', 'coordinates': [-77.862514, 40.161252000000005]}",77.749216,14.469599281875716 | |
17256,39.782914,-77.677308,91,"{'type': 'Point', 'coordinates': [-77.677308, 39.782914]}",0.275089,330.8020313425837 | |
17257,40.046821,-77.493064,27996,"{'type': 'Point', 'coordinates': [-77.493064, 40.046821]}",305.000718,91.78994785186046 | |
17260,40.296045,-77.89370100000001,1164,"{'type': 'Point', 'coordinates': [-77.89370100000001, 40.296045]}",92.739425,12.551296279872341 | |
17261,39.860912,-77.50815899999999,193,"{'type': 'Point', 'coordinates': [-77.50815899999999, 39.860912]}",6.218765,31.03510102086186 | |
17262,40.144998,-77.740213,1462,"{'type': 'Point', 'coordinates': [-77.740213, 40.144998]}",69.699005,20.97590919698208 | |
17263,39.727222999999995,-77.717855,467,"{'type': 'Point', 'coordinates': [-77.717855, 39.727222999999995]}",0.912007,512.0574732430782 | |
17264,40.179925,-77.993741,2305,"{'type': 'Point', 'coordinates': [-77.993741, 40.179925]}",141.010684,16.346279123076943 | |
17265,40.027596,-77.781222,496,"{'type': 'Point', 'coordinates': [-77.781222, 40.027596]}",98.356218,5.042894186923698 | |
17266,40.088568,-77.412933,581,"{'type': 'Point', 'coordinates': [-77.412933, 40.088568]}",3.48967,166.49138743778065 | |
17267,39.807955,-78.239657,2810,"{'type': 'Point', 'coordinates': [-78.239657, 39.807955]}",248.16714,11.323013997743619 | |
17268,39.774913,-77.575622,28285,"{'type': 'Point', 'coordinates': [-77.575622, 39.774913]}",204.950032,138.0092490056308 | |
17270,39.854729999999996,-77.79780799999999,115,"{'type': 'Point', 'coordinates': [-77.79780799999999, 39.854729999999996]}",0.253687,453.3145174959694 | |
17271,40.097753999999995,-77.803092,339,"{'type': 'Point', 'coordinates': [-77.803092, 40.097753999999995]}",27.585789,12.288936162021685 | |
17272,39.769525,-77.621818,294,"{'type': 'Point', 'coordinates': [-77.621818, 39.769525]}",0.474481,619.6243895962115 | |
17301,39.895227,-76.97898199999999,4053,"{'type': 'Point', 'coordinates': [-76.97898199999999, 39.895227]}",34.111,118.817976605787 | |
17302,39.81726,-76.41368,3083,"{'type': 'Point', 'coordinates': [-76.41368, 39.81726]}",99.908533,30.85822509274558 | |
17304,39.977245,-77.232742,3059,"{'type': 'Point', 'coordinates': [-77.232742, 39.977245]}",63.162784,48.430417506612756 | |
17306,39.980581,-77.249397,318,"{'type': 'Point', 'coordinates': [-77.249397, 39.980581]}",0.891053,356.8811282830539 | |
17307,39.947765000000004,-77.326899,5899,"{'type': 'Point', 'coordinates': [-77.326899, 39.947765000000004]}",154.604605,38.15539647088779 | |
17309,39.871334000000004,-76.450129,2086,"{'type': 'Point', 'coordinates': [-76.450129, 39.871334000000004]}",64.194645,32.49492227895333 | |
17311,39.816546,-76.842472,252,"{'type': 'Point', 'coordinates': [-76.842472, 39.816546]}",0.142108,1773.299180904664 | |
17313,39.884013,-76.659984,10899,"{'type': 'Point', 'coordinates': [-76.659984, 39.884013]}",27.526167,395.9505150135869 | |
17314,39.755506,-76.326301,5929,"{'type': 'Point', 'coordinates': [-76.326301, 39.755506]}",93.532349,63.3898331795345 | |
17315,40.026604,-76.864065,25756,"{'type': 'Point', 'coordinates': [-76.864065, 40.026604]}",163.371113,157.65333005964158 | |
17316,39.965466,-77.007959,8266,"{'type': 'Point', 'coordinates': [-77.007959, 39.965466]}",109.783446,75.29368316603944 | |
17317,39.97071,-76.523188,755,"{'type': 'Point', 'coordinates': [-76.523188, 39.97071]}",0.588192,1283.59447255318 | |
17318,40.022258,-76.723017,344,"{'type': 'Point', 'coordinates': [-76.723017, 40.022258]}",1.551992,221.65062706508795 | |
17319,40.160489,-76.793975,10417,"{'type': 'Point', 'coordinates': [-76.793975, 40.160489]}",44.915084,231.92653942270263 | |
17320,39.770718,-77.388758,7823,"{'type': 'Point', 'coordinates': [-77.388758, 39.770718]}",144.334225,54.20058894555328 | |
17321,39.749675,-76.444345,2238,"{'type': 'Point', 'coordinates': [-76.444345, 39.749675]}",42.254759,52.964448335866734 | |
17322,39.855909999999994,-76.532733,6012,"{'type': 'Point', 'coordinates': [-76.532733, 39.855909999999994]}",98.863764,60.810955973717526 | |
17324,40.030395,-77.236846,4219,"{'type': 'Point', 'coordinates': [-77.236846, 40.030395]}",135.688608,31.093251395135546 | |
17325,39.826258,-77.22760600000001,27619,"{'type': 'Point', 'coordinates': [-77.22760600000001, 39.826258]}",334.518415,82.56346664801697 | |
17327,39.779512,-76.75325699999999,7565,"{'type': 'Point', 'coordinates': [-76.75325699999999, 39.779512]}",118.946931,63.59979140613556 | |
17329,39.761844,-76.85112,2494,"{'type': 'Point', 'coordinates': [-76.85112, 39.761844]}",42.36829,58.8647783519231 | |
17331,39.78969,-76.97798399999999,50292,"{'type': 'Point', 'coordinates': [-76.97798399999999, 39.78969]}",201.724615,249.3101796228487 | |
17339,40.134731,-76.885292,6940,"{'type': 'Point', 'coordinates': [-76.885292, 40.134731]}",72.920051,95.17272553745197 | |
17340,39.755229,-77.116784,10896,"{'type': 'Point', 'coordinates': [-77.116784, 39.755229]}",100.429161,108.49438441490118 | |
17343,39.869254,-77.33479799999999,180,"{'type': 'Point', 'coordinates': [-77.33479799999999, 39.869254]}",1.988311,90.52909730922376 | |
17344,39.805688,-77.01921899999999,3656,"{'type': 'Point', 'coordinates': [-77.01921899999999, 39.805688]}",2.069375,1766.7170039263062 | |
17345,40.078089,-76.74750300000001,7679,"{'type': 'Point', 'coordinates': [-76.74750300000001, 40.078089]}",26.667286,287.95581222626106 | |
17347,40.057548,-76.688144,6202,"{'type': 'Point', 'coordinates': [-76.688144, 40.057548]}",36.865491,168.23321300671134 | |
17349,39.799356,-76.68294499999999,7570,"{'type': 'Point', 'coordinates': [-76.68294499999999, 39.799356]}",53.773855,140.77473151218192 | |
17350,39.890088,-77.079399,12886,"{'type': 'Point', 'coordinates': [-77.079399, 39.890088]}",113.463442,113.56962007198759 | |
17352,39.761201,-76.499847,1292,"{'type': 'Point', 'coordinates': [-76.499847, 39.761201]}",35.706017,36.184377551828305 | |
17353,39.883086,-77.371736,3228,"{'type': 'Point', 'coordinates': [-77.371736, 39.883086]}",105.829445,30.50190804647988 | |
17355,39.759868,-76.69601899999999,261,"{'type': 'Point', 'coordinates': [-76.69601899999999, 39.759868]}",1.581216,165.06283771477143 | |
17356,39.896584000000004,-76.582258,21610,"{'type': 'Point', 'coordinates': [-76.582258, 39.896584000000004]}",84.213551,256.60953306671513 | |
17360,39.854372,-76.75039,5927,"{'type': 'Point', 'coordinates': [-76.75039, 39.854372]}",69.896232,84.7971318396677 | |
17361,39.765516,-76.677065,5806,"{'type': 'Point', 'coordinates': [-76.677065, 39.765516]}",8.081113,718.465389606605 | |
17362,39.847679,-76.86870400000001,13397,"{'type': 'Point', 'coordinates': [-76.86870400000001, 39.847679]}",127.075058,105.42588145031577 | |
17363,39.768623,-76.58638499999999,9413,"{'type': 'Point', 'coordinates': [-76.58638499999999, 39.768623]}",97.450915,96.5922177334097 | |
17364,39.929395,-76.899326,3907,"{'type': 'Point', 'coordinates': [-76.899326, 39.929395]}",43.26727,90.29920306966443 | |
17365,40.060733,-76.93386,2510,"{'type': 'Point', 'coordinates': [-76.93386, 40.060733]}",52.839153,47.50265395056579 | |
17366,39.932790000000004,-76.556703,5499,"{'type': 'Point', 'coordinates': [-76.556703, 39.932790000000004]}",29.212209,188.24321022761407 | |
17368,39.983859,-76.51870100000001,7322,"{'type': 'Point', 'coordinates': [-76.51870100000001, 39.983859]}",47.483972,154.1994001681241 | |
17370,40.12144,-76.778402,5683,"{'type': 'Point', 'coordinates': [-76.778402, 40.12144]}",29.566715,192.20938139390867 | |
17371,39.902704,-76.78796,257,"{'type': 'Point', 'coordinates': [-76.78796, 39.902704]}",0.518284,495.86713076228483 | |
17372,40.001467,-77.106153,4101,"{'type': 'Point', 'coordinates': [-77.106153, 40.001467]}",84.963152,48.26798327820983 | |
17401,39.959462,-76.733457,17687,"{'type': 'Point', 'coordinates': [-76.733457, 39.959462]}",3.834156,4613.010007939166 | |
17402,39.958484999999996,-76.65866,36360,"{'type': 'Point', 'coordinates': [-76.65866, 39.958484999999996]}",49.877898,728.9801988046889 | |
17403,39.923228,-76.71279399999999,39042,"{'type': 'Point', 'coordinates': [-76.71279399999999, 39.923228]}",54.06188,722.172443873576 | |
17404,40.002612,-76.773548,35517,"{'type': 'Point', 'coordinates': [-76.773548, 40.002612]}",54.872411,647.265162086645 | |
17406,40.014709,-76.640873,22156,"{'type': 'Point', 'coordinates': [-76.640873, 40.014709]}",128.483605,172.44223494507332 | |
17407,39.883773,-76.712102,2355,"{'type': 'Point', 'coordinates': [-76.712102, 39.883773]}",3.9585,594.9223190602501 | |
17408,39.928859,-76.79935,22507,"{'type': 'Point', 'coordinates': [-76.79935, 39.928859]}",67.198335,334.9338938234109 | |
17501,40.156459000000005,-76.20404,4307,"{'type': 'Point', 'coordinates': [-76.20404, 40.156459000000005]}",3.62066,1189.562124032635 | |
17502,40.100904,-76.660147,2464,"{'type': 'Point', 'coordinates': [-76.660147, 40.100904]}",35.618387,69.17775361360412 | |
17505,40.063501,-76.192436,1785,"{'type': 'Point', 'coordinates': [-76.192436, 40.063501]}",18.122252,98.4976922294205 | |
17507,40.198042,-76.016233,62,"{'type': 'Point', 'coordinates': [-76.016233, 40.198042]}",0.055706,1112.9860338204144 | |
17508,40.124758,-76.218766,423,"{'type': 'Point', 'coordinates': [-76.218766, 40.124758]}",0.382285,1106.5043096119389 | |
17509,39.912055,-76.03649899999999,4664,"{'type': 'Point', 'coordinates': [-76.03649899999999, 39.912055]}",67.008708,69.6028939999858 | |
17512,40.040236,-76.486336,17836,"{'type': 'Point', 'coordinates': [-76.486336, 40.040236]}",54.783232,325.5740734683197 | |
17516,39.94146,-76.371359,4496,"{'type': 'Point', 'coordinates': [-76.371359, 39.94146]}",55.200388,81.44870286056685 | |
17517,40.244751,-76.13288100000001,15391,"{'type': 'Point', 'coordinates': [-76.13288100000001, 40.244751]}",92.974977,165.53916437107588 | |
17518,39.80893,-76.25301400000001,1355,"{'type': 'Point', 'coordinates': [-76.25301400000001, 39.80893]}",48.092533,28.17485200873075 | |
17519,40.141438,-76.023423,6824,"{'type': 'Point', 'coordinates': [-76.023423, 40.141438]}",57.973292,117.70937555176269 | |
17520,40.097518,-76.349193,4686,"{'type': 'Point', 'coordinates': [-76.349193, 40.097518]}",4.851759,965.8352774735924 | |
17522,40.173688,-76.17049399999999,32483,"{'type': 'Point', 'coordinates': [-76.17049399999999, 40.173688]}",114.363887,284.0319689378868 | |
17527,40.008881,-75.99129599999999,6080,"{'type': 'Point', 'coordinates': [-75.99129599999999, 40.008881]}",53.18227,114.32381506092162 | |
17529,40.041933,-76.097142,4317,"{'type': 'Point', 'coordinates': [-76.097142, 40.041933]}",40.852031,105.67406061157645 | |
17532,39.858156,-76.28800799999999,3381,"{'type': 'Point', 'coordinates': [-76.28800799999999, 39.858156]}",62.106764,54.43851494178637 | |
17535,40.061398,-76.05627,2458,"{'type': 'Point', 'coordinates': [-76.05627, 40.061398]}",28.257131,86.98689191057647 | |
17536,39.848034000000006,-76.073774,2839,"{'type': 'Point', 'coordinates': [-76.073774, 39.848034000000006]}",57.870273,49.058002543032764 | |
17538,40.082629,-76.414548,6045,"{'type': 'Point', 'coordinates': [-76.414548, 40.082629]}",9.954189,607.2820196602656 | |
17540,40.097608,-76.189987,9791,"{'type': 'Point', 'coordinates': [-76.189987, 40.097608]}",51.131252,191.48758571372358 | |
17543,40.181032,-76.29538000000001,42626,"{'type': 'Point', 'coordinates': [-76.29538000000001, 40.181032]}",181.097718,235.37568816852792 | |
17545,40.178666,-76.434341,21256,"{'type': 'Point', 'coordinates': [-76.434341, 40.178666]}",184.844449,114.99398610558221 | |
17547,40.0684,-76.586688,7378,"{'type': 'Point', 'coordinates': [-76.586688, 40.0684]}",36.924866,199.8111516504894 | |
17550,40.075921,-76.583426,790,"{'type': 'Point', 'coordinates': [-76.583426, 40.075921]}",0.454654,1737.5850646865529 | |
17551,39.982202,-76.37141899999999,10857,"{'type': 'Point', 'coordinates': [-76.37141899999999, 39.982202]}",26.670936,407.07232772033194 | |
17552,40.108352000000004,-76.51092,17831,"{'type': 'Point', 'coordinates': [-76.51092, 40.108352000000004]}",84.631374,210.69018683307684 | |
17554,40.040303,-76.424176,7525,"{'type': 'Point', 'coordinates': [-76.424176, 40.040303]}",8.135849,924.9188376037952 | |
17555,40.122377,-75.95939200000001,7525,"{'type': 'Point', 'coordinates': [-75.95939200000001, 40.122377]}",90.953192,82.7348643244978 | |
17557,40.09985,-76.072742,13811,"{'type': 'Point', 'coordinates': [-76.072742, 40.09985]}",84.475504,163.49118201176995 | |
17560,39.912675,-76.227681,5118,"{'type': 'Point', 'coordinates': [-76.227681, 39.912675]}",41.830184,122.35184047959243 | |
17562,39.970438,-76.092067,4464,"{'type': 'Point', 'coordinates': [-76.092067, 39.970438]}",44.450683,100.4259034669951 | |
17563,39.760748,-76.193306,3849,"{'type': 'Point', 'coordinates': [-76.193306, 39.760748]}",90.756467,42.410200917142355 | |
17565,39.897702,-76.331027,2537,"{'type': 'Point', 'coordinates': [-76.331027, 39.897702]}",42.67053,59.45555398538523 | |
17566,39.867186,-76.147513,12019,"{'type': 'Point', 'coordinates': [-76.147513, 39.867186]}",151.8038,79.17456611758072 | |
17569,40.271433,-76.096577,5448,"{'type': 'Point', 'coordinates': [-76.096577, 40.271433]}",42.657434,127.7151363581785 | |
17570,40.129942,-76.568851,291,"{'type': 'Point', 'coordinates': [-76.568851, 40.129942]}",0.178897,1626.6343203072158 | |
17572,40.045488,-76.133448,3859,"{'type': 'Point', 'coordinates': [-76.133448, 40.045488]}",45.487999,84.8355628920938 | |
17576,40.037195000000004,-76.19676,129,"{'type': 'Point', 'coordinates': [-76.19676, 40.037195000000004]}",0.141363,912.5443008425119 | |
17578,40.226099,-76.159806,7485,"{'type': 'Point', 'coordinates': [-76.159806, 40.226099]}",39.988959,187.17666543907782 | |
17579,39.960406,-76.180752,5935,"{'type': 'Point', 'coordinates': [-76.180752, 39.960406]}",36.253673,163.70755040461694 | |
17581,40.160511,-76.04959000000001,951,"{'type': 'Point', 'coordinates': [-76.04959000000001, 40.160511]}",0.868119,1095.4719341472771 | |
17582,40.005741,-76.477835,2026,"{'type': 'Point', 'coordinates': [-76.477835, 40.005741]}",42.978845,47.139470593032456 | |
17584,39.955413,-76.263581,8957,"{'type': 'Point', 'coordinates': [-76.263581, 39.955413]}",37.890989,236.38865694426715 | |
17601,40.074241,-76.314914,49779,"{'type': 'Point', 'coordinates': [-76.314914, 40.074241]}",86.981161,572.2963389739073 | |
17602,40.014623,-76.246351,52452,"{'type': 'Point', 'coordinates': [-76.246351, 40.014623]}",67.518837,776.8498737618954 | |
17603,40.020145,-76.35084599999999,61973,"{'type': 'Point', 'coordinates': [-76.35084599999999, 40.020145]}",78.197312,792.5208477754326 | |
17606,40.111670000000004,-76.303907,392,"{'type': 'Point', 'coordinates': [-76.303907, 40.111670000000004]}",0.121495,3226.4702251121444 | |
17701,41.345045,-76.857256,44661,"{'type': 'Point', 'coordinates': [-76.857256, 41.345045]}",235.618847,189.54765532826838 | |
17702,41.183488,-77.077271,10721,"{'type': 'Point', 'coordinates': [-77.077271, 41.183488]}",165.199934,64.8971203584137 | |
17721,41.183625,-77.318405,1604,"{'type': 'Point', 'coordinates': [-77.318405, 41.183625]}",1.913699,838.1673397958613 | |
17723,41.435023,-77.471376,34,"{'type': 'Point', 'coordinates': [-77.471376, 41.435023]}",34.292889,0.9914591914376184 | |
17724,41.642528000000006,-76.805113,5424,"{'type': 'Point', 'coordinates': [-76.805113, 41.642528000000006]}",291.608185,18.600300948342724 | |
17727,41.510687,-77.49644599999999,72,"{'type': 'Point', 'coordinates': [-77.49644599999999, 41.510687]}",278.635919,0.2584017174038499 | |
17728,41.334773999999996,-77.078567,5120,"{'type': 'Point', 'coordinates': [-77.078567, 41.334773999999996]}",123.668547,41.40098775479265 | |
17729,41.511239,-77.736103,159,"{'type': 'Point', 'coordinates': [-77.736103, 41.511239]}",282.988648,0.5618599937620112 | |
17730,41.110448999999996,-76.87841,257,"{'type': 'Point', 'coordinates': [-76.87841, 41.110448999999996]}",0.437727,587.1239379796083 | |
17731,41.42941,-76.578672,185,"{'type': 'Point', 'coordinates': [-76.578672, 41.42941]}",36.424046,5.079062331515835 | |
17737,41.299271000000005,-76.68578000000001,6220,"{'type': 'Point', 'coordinates': [-76.68578000000001, 41.299271000000005]}",187.71377,33.13555526587101 | |
17739,41.38817,-77.418683,32,"{'type': 'Point', 'coordinates': [-77.418683, 41.38817]}",32.848773,0.9741611962188055 | |
17740,41.249445,-77.269646,12754,"{'type': 'Point', 'coordinates': [-77.269646, 41.249445]}",358.086825,35.61706019203583 | |
17742,41.238532,-76.60226999999999,39,"{'type': 'Point', 'coordinates': [-76.60226999999999, 41.238532]}",0.205378,189.89375687756234 | |
17744,41.240970000000004,-77.153274,3175,"{'type': 'Point', 'coordinates': [-77.153274, 41.240970000000004]}",63.533782,49.97341414367556 | |
17745,41.285072,-77.471166,19063,"{'type': 'Point', 'coordinates': [-77.471166, 41.285072]}",565.93765,33.683922601721235 | |
17747,41.032578,-77.331757,3073,"{'type': 'Point', 'coordinates': [-77.331757, 41.032578]}",250.792969,12.253134576511991 | |
17748,41.150402,-77.35297800000001,300,"{'type': 'Point', 'coordinates': [-77.35297800000001, 41.150402]}",1.353387,221.66608664040663 | |
17749,41.072241,-76.818889,244,"{'type': 'Point', 'coordinates': [-76.818889, 41.072241]}",0.277673,878.7314575057711 | |
17750,41.057866,-77.482253,167,"{'type': 'Point', 'coordinates': [-77.482253, 41.057866]}",3.951988,42.257213331619425 | |
17751,41.153528,-77.54479,7084,"{'type': 'Point', 'coordinates': [-77.54479, 41.153528]}",331.51638,21.368476574219347 | |
17752,41.180139000000004,-76.930251,4635,"{'type': 'Point', 'coordinates': [-76.930251, 41.180139000000004]}",93.412324,49.61872054483946 | |
17754,41.311612,-76.889212,12233,"{'type': 'Point', 'coordinates': [-76.889212, 41.311612]}",159.376502,76.75535506482632 | |
17756,41.208002,-76.739819,12408,"{'type': 'Point', 'coordinates': [-76.739819, 41.208002]}",295.313489,42.01636722391641 | |
17758,41.360147,-76.535534,919,"{'type': 'Point', 'coordinates': [-76.535534, 41.360147]}",213.746512,4.2994853642336865 | |
17760,41.413576,-77.65735699999999,557,"{'type': 'Point', 'coordinates': [-77.65735699999999, 41.413576]}",216.512143,2.5726039763044604 | |
17762,41.284231,-76.70015699999999,503,"{'type': 'Point', 'coordinates': [-76.70015699999999, 41.284231]}",1.546396,325.272439918365 | |
17763,41.507375,-76.97618,309,"{'type': 'Point', 'coordinates': [-76.97618, 41.507375]}",65.699919,4.703202145500362 | |
17764,41.33475,-77.813637,2327,"{'type': 'Point', 'coordinates': [-77.813637, 41.33475]}",419.449602,5.547746353565499 | |
17765,41.565735,-76.973451,1162,"{'type': 'Point', 'coordinates': [-76.973451, 41.565735]}",215.316091,5.396716959718538 | |
17767,41.083874,-77.463161,91,"{'type': 'Point', 'coordinates': [-77.463161, 41.083874]}",0.066744,1363.4184346158456 | |
17768,41.558836,-76.755985,377,"{'type': 'Point', 'coordinates': [-76.755985, 41.558836]}",76.3311,4.9390091325816075 | |
17771,41.437284999999996,-77.035516,3158,"{'type': 'Point', 'coordinates': [-77.035516, 41.437284999999996]}",563.570961,5.6035534449760265 | |
17772,41.125057,-76.713033,2399,"{'type': 'Point', 'coordinates': [-76.713033, 41.125057]}",58.429512,41.058018762847105 | |
17774,41.281191,-76.533013,1277,"{'type': 'Point', 'coordinates': [-76.533013, 41.281191]}",123.833718,10.312215611583268 | |
17776,41.414649,-77.29284,295,"{'type': 'Point', 'coordinates': [-77.29284, 41.414649]}",228.810308,1.2892775792251459 | |
17777,41.106517,-76.821696,7056,"{'type': 'Point', 'coordinates': [-76.821696, 41.106517]}",100.929532,69.91016266676041 | |
17778,41.284918,-77.98392700000001,102,"{'type': 'Point', 'coordinates': [-77.98392700000001, 41.284918]}",228.273041,0.4468333165982574 | |
17779,41.207259,-77.376901,235,"{'type': 'Point', 'coordinates': [-77.376901, 41.207259]}",3.776407,62.22846213345119 | |
17801,40.834724,-76.75500799999999,16671,"{'type': 'Point', 'coordinates': [-76.75500799999999, 40.834724]}",185.402659,89.91780425328204 | |
17810,41.11136,-77.03137199999999,4683,"{'type': 'Point', 'coordinates': [-77.03137199999999, 41.11136]}",147.793222,31.68616217054934 | |
17812,40.740534000000004,-77.22791,1480,"{'type': 'Point', 'coordinates': [-77.22791, 40.740534000000004]}",58.820562,25.161269285390368 | |
17813,40.780401,-77.172083,1979,"{'type': 'Point', 'coordinates': [-77.172083, 40.780401]}",90.191722,21.942146752669828 | |
17814,41.273237,-76.36314200000001,4860,"{'type': 'Point', 'coordinates': [-76.36314200000001, 41.273237]}",359.475755,13.51968785766929 | |
17815,41.020038,-76.42009200000001,30967,"{'type': 'Point', 'coordinates': [-76.42009200000001, 41.020038]}",360.089519,85.99805983244961 | |
17820,40.895639,-76.403739,5556,"{'type': 'Point', 'coordinates': [-76.403739, 40.895639]}",238.085548,23.336149743956742 | |
17821,40.990142,-76.644205,18219,"{'type': 'Point', 'coordinates': [-76.644205, 40.990142]}",353.389825,51.55496483239154 | |
17822,40.968016,-76.605142,0,"{'type': 'Point', 'coordinates': [-76.605142, 40.968016]}",0.191018,0.0 | |
17823,40.702184,-76.772214,1273,"{'type': 'Point', 'coordinates': [-76.772214, 40.702184]}",89.207288,14.270134520847668 | |
17824,40.852378,-76.505339,4115,"{'type': 'Point', 'coordinates': [-76.505339, 40.852378]}",68.736645,59.86617473110595 | |
17827,40.75286,-76.968032,657,"{'type': 'Point', 'coordinates': [-76.968032, 40.75286]}",4.971811,132.14500712114761 | |
17829,40.900549,-77.155804,244,"{'type': 'Point', 'coordinates': [-77.155804, 40.900549]}",2.110442,115.61559142587193 | |
17830,40.686064,-76.80516999999999,1947,"{'type': 'Point', 'coordinates': [-76.80516999999999, 40.686064]}",85.969123,22.647666185916542 | |
17832,40.805945,-76.45902,628,"{'type': 'Point', 'coordinates': [-76.45902, 40.805945]}",1.011507,620.8558121693671 | |
17834,40.78021,-76.466875,3565,"{'type': 'Point', 'coordinates': [-76.466875, 40.78021]}",13.387489,266.2934027434121 | |
17835,40.878987,-77.204312,219,"{'type': 'Point', 'coordinates': [-77.204312, 40.878987]}",1.317275,166.2523011519994 | |
17836,40.714341999999995,-76.606462,266,"{'type': 'Point', 'coordinates': [-76.606462, 40.714341999999995]}",10.623636,25.038508472993616 | |
17837,40.974977,-76.94515,19815,"{'type': 'Point', 'coordinates': [-76.94515, 40.974977]}",162.161388,122.19308334977993 | |
17840,40.772092,-76.43312,533,"{'type': 'Point', 'coordinates': [-76.43312, 40.772092]}",6.451857,82.61187437973284 | |
17841,40.724869,-77.352556,4779,"{'type': 'Point', 'coordinates': [-77.352556, 40.724869]}",205.538018,23.251172928990684 | |
17842,40.80295,-77.040151,8910,"{'type': 'Point', 'coordinates': [-77.040151, 40.80295]}",216.195368,41.212723854472216 | |
17844,40.973975,-77.08540500000001,10042,"{'type': 'Point', 'coordinates': [-77.08540500000001, 40.973975]}",291.262021,34.4775469370241 | |
17845,40.884370000000004,-77.21157,2245,"{'type': 'Point', 'coordinates': [-77.21157, 40.884370000000004]}",170.868226,13.138779822060071 | |
17846,41.141745,-76.517122,3738,"{'type': 'Point', 'coordinates': [-76.517122, 41.141745]}",120.772457,30.95076553754305 | |
17847,41.007985,-76.810949,12051,"{'type': 'Point', 'coordinates': [-76.810949, 41.007985]}",125.981069,95.65722926196158 | |
17850,40.965596000000005,-76.857448,645,"{'type': 'Point', 'coordinates': [-76.857448, 40.965596000000005]}",0.842959,765.1617694336261 | |
17851,40.803118,-76.4343,7841,"{'type': 'Point', 'coordinates': [-76.4343, 40.803118]}",39.610265,197.95373749708568 | |
17853,40.694728999999995,-77.0067,3221,"{'type': 'Point', 'coordinates': [-77.0067, 40.694728999999995]}",109.842425,29.323824560501098 | |
17855,40.890386,-76.966684,992,"{'type': 'Point', 'coordinates': [-76.966684, 40.890386]}",5.098534,194.56573203199196 | |
17856,41.065358,-76.94736400000001,3365,"{'type': 'Point', 'coordinates': [-76.94736400000001, 41.065358]}",92.296476,36.45859675075785 | |
17857,40.932136,-76.772972,7505,"{'type': 'Point', 'coordinates': [-76.772972, 40.932136]}",75.403794,99.53080079763625 | |
17859,41.116755,-76.398537,3106,"{'type': 'Point', 'coordinates': [-76.398537, 41.116755]}",100.765919,30.82391378775596 | |
17860,40.825159,-76.70898100000001,1994,"{'type': 'Point', 'coordinates': [-76.70898100000001, 40.825159]}",68.642899,29.048889674662487 | |
17861,40.773224,-77.08230400000001,143,"{'type': 'Point', 'coordinates': [-77.08230400000001, 40.773224]}",0.374029,382.32329578722505 | |
17862,40.860506,-77.056395,577,"{'type': 'Point', 'coordinates': [-77.056395, 40.860506]}",1.069373,539.5685135121236 | |
17864,40.704727,-76.905819,2445,"{'type': 'Point', 'coordinates': [-76.905819, 40.704727]}",51.963246,47.05248782957093 | |
17865,40.99018,-76.78676899999999,92,"{'type': 'Point', 'coordinates': [-76.78676899999999, 40.99018]}",0.402744,228.4329499632521 | |
17866,40.802252,-76.547547,10310,"{'type': 'Point', 'coordinates': [-76.547547, 40.802252]}",65.234989,158.0440214376368 | |
17867,40.714115,-76.688597,169,"{'type': 'Point', 'coordinates': [-76.688597, 40.714115]}",9.19732,18.37491791086969 | |
17868,40.957721,-76.63396800000001,1052,"{'type': 'Point', 'coordinates': [-76.63396800000001, 40.957721]}",2.090217,503.2970260982472 | |
17870,40.817322999999995,-76.888636,14564,"{'type': 'Point', 'coordinates': [-76.888636, 40.817322999999995]}",118.901478,122.48796436323525 | |
17872,40.793858,-76.54447900000001,9943,"{'type': 'Point', 'coordinates': [-76.54447900000001, 40.793858]}",106.030882,93.77456654562205 | |
17876,40.858108,-76.825754,1698,"{'type': 'Point', 'coordinates': [-76.825754, 40.858108]}",4.898462,346.639414575432 | |
17878,41.176018,-76.323488,1528,"{'type': 'Point', 'coordinates': [-76.323488, 41.176018]}",55.17204,27.695187634896225 | |
17880,40.892209,-77.12175500000001,72,"{'type': 'Point', 'coordinates': [-77.12175500000001, 40.892209]}",0.321697,223.81309120072615 | |
17881,40.782906,-76.670014,1556,"{'type': 'Point', 'coordinates': [-76.670014, 40.782906]}",12.323148,126.26643776411677 | |
17884,41.055983000000005,-76.66946300000001,305,"{'type': 'Point', 'coordinates': [-76.66946300000001, 41.055983000000005]}",1.290367,236.3668630707388 | |
17885,40.866345,-77.314017,141,"{'type': 'Point', 'coordinates': [-77.314017, 40.866345]}",28.442998,4.957283335603371 | |
17886,41.016709000000006,-76.87520400000001,895,"{'type': 'Point', 'coordinates': [-76.87520400000001, 41.016709000000006]}",2.522776,354.76792232049144 | |
17887,41.129175,-76.932899,1778,"{'type': 'Point', 'coordinates': [-76.932899, 41.129175]}",2.971307,598.3898668161856 | |
17888,40.806775,-76.378479,326,"{'type': 'Point', 'coordinates': [-76.378479, 40.806775]}",7.409906,43.9951599925829 | |
17889,40.877739,-76.92128199999999,2735,"{'type': 'Point', 'coordinates': [-76.92128199999999, 40.877739]}",59.398426,46.04499115851993 | |
17901,40.683828000000005,-76.27754200000001,23990,"{'type': 'Point', 'coordinates': [-76.27754200000001, 40.683828000000005]}",202.989105,118.1836828139126 | |
17920,40.819642,-76.326909,331,"{'type': 'Point', 'coordinates': [-76.326909, 40.819642]}",11.587652,28.56488959109231 | |
17921,40.751575,-76.360586,7676,"{'type': 'Point', 'coordinates': [-76.360586, 40.751575]}",97.841524,78.4533977618746 | |
17922,40.582491999999995,-76.110646,4783,"{'type': 'Point', 'coordinates': [-76.110646, 40.582491999999995]}",80.342227,59.53282823489571 | |
17923,40.632873,-76.319914,433,"{'type': 'Point', 'coordinates': [-76.319914, 40.632873]}",22.5089,19.23683520740685 | |
17925,40.754944,-76.0727,376,"{'type': 'Point', 'coordinates': [-76.0727, 40.754944]}",2.532182,148.4885367639451 | |
17929,40.630703000000004,-76.194039,1606,"{'type': 'Point', 'coordinates': [-76.194039, 40.630703000000004]}",2.608387,615.7061816363906 | |
17930,40.708675,-76.115346,476,"{'type': 'Point', 'coordinates': [-76.115346, 40.708675]}",7.92012,60.10009949344202 | |
17931,40.786491,-76.214575,8472,"{'type': 'Point', 'coordinates': [-76.214575, 40.786491]}",27.553562,307.4738576449753 | |
17933,40.604485,-76.243195,89,"{'type': 'Point', 'coordinates': [-76.243195, 40.604485]}",0.232629,382.58342682984494 | |
17934,40.796439,-76.211333,469,"{'type': 'Point', 'coordinates': [-76.211333, 40.796439]}",2.503995,187.30069349180008 | |
17935,40.79614,-76.279682,1737,"{'type': 'Point', 'coordinates': [-76.279682, 40.79614]}",11.354628,152.9772705895781 | |
17936,40.750116,-76.33993000000001,763,"{'type': 'Point', 'coordinates': [-76.33993000000001, 40.750116]}",1.535779,496.8162736956294 | |
17938,40.65307,-76.517083,2442,"{'type': 'Point', 'coordinates': [-76.517083, 40.65307]}",102.606523,23.799656479929645 | |
17941,40.685722,-76.609184,834,"{'type': 'Point', 'coordinates': [-76.609184, 40.685722]}",63.914976,13.04858504523259 | |
17943,40.75666,-76.38781,229,"{'type': 'Point', 'coordinates': [-76.38781, 40.75666]}",1.502353,152.42755863635244 | |
17944,40.672540000000005,-76.279256,205,"{'type': 'Point', 'coordinates': [-76.279256, 40.672540000000005]}",0.354771,577.8375346350181 | |
17945,40.78535,-76.375457,180,"{'type': 'Point', 'coordinates': [-76.375457, 40.78535]}",2.702786,66.59794745125954 | |
17946,40.810364,-76.256372,263,"{'type': 'Point', 'coordinates': [-76.256372, 40.810364]}",4.986158,52.74602208754717 | |
17948,40.845385,-76.117468,5029,"{'type': 'Point', 'coordinates': [-76.117468, 40.845385]}",66.850749,75.22727980205578 | |
17949,40.793926,-76.242345,263,"{'type': 'Point', 'coordinates': [-76.242345, 40.793926]}",0.260752,1008.6212186291956 | |
17951,40.678556,-76.245246,325,"{'type': 'Point', 'coordinates': [-76.245246, 40.678556]}",0.478506,679.1973350386411 | |
17952,40.755438,-76.058552,282,"{'type': 'Point', 'coordinates': [-76.058552, 40.755438]}",9.010612,31.29643136337465 | |
17953,40.751902,-76.12021800000001,469,"{'type': 'Point', 'coordinates': [-76.12021800000001, 40.751902]}",35.883862,13.069942137220346 | |
17954,40.69042,-76.259688,4564,"{'type': 'Point', 'coordinates': [-76.259688, 40.69042]}",1.802827,2531.5795691988196 | |
17957,40.591824,-76.518212,328,"{'type': 'Point', 'coordinates': [-76.518212, 40.591824]}",0.407087,805.7245748451805 | |
17959,40.732018,-76.15007800000001,1422,"{'type': 'Point', 'coordinates': [-76.15007800000001, 40.732018]}",23.366049,60.85752880172424 | |
17960,40.697241,-75.94704399999999,3868,"{'type': 'Point', 'coordinates': [-75.94704399999999, 40.697241]}",133.778716,28.913418484297605 | |
17961,40.649699,-76.060949,6958,"{'type': 'Point', 'coordinates': [-76.060949, 40.649699]}",69.078276,100.72631227797288 | |
17963,40.561577,-76.382017,9317,"{'type': 'Point', 'coordinates': [-76.382017, 40.561577]}",235.594052,39.546838814080076 | |
17964,40.702954,-76.514515,798,"{'type': 'Point', 'coordinates': [-76.514515, 40.702954]}",59.334082,13.449268499679492 | |
17965,40.698615000000004,-76.16528100000001,2067,"{'type': 'Point', 'coordinates': [-76.16528100000001, 40.698615000000004]}",1.849196,1117.7830797816996 | |
17967,40.856253,-76.216265,2457,"{'type': 'Point', 'coordinates': [-76.216265, 40.856253]}",75.846419,32.39441007755422 | |
17968,40.638678999999996,-76.6123,329,"{'type': 'Point', 'coordinates': [-76.6123, 40.638678999999996]}",10.125926,32.49085565112761 | |
17970,40.720206,-76.191949,3241,"{'type': 'Point', 'coordinates': [-76.191949, 40.720206]}",3.550465,912.8381775344919 | |
17972,40.592165,-76.20579000000001,11627,"{'type': 'Point', 'coordinates': [-76.20579000000001, 40.592165]}",106.140599,109.54338028561531 | |
17974,40.6957,-76.236267,344,"{'type': 'Point', 'coordinates': [-76.236267, 40.6957]}",0.176176,1952.5928616837707 | |
17976,40.819866999999995,-76.210606,6937,"{'type': 'Point', 'coordinates': [-76.210606, 40.819866999999995]}",20.202615,343.37139028784145 | |
17978,40.625448,-76.614963,224,"{'type': 'Point', 'coordinates': [-76.614963, 40.625448]}",7.189162,31.15801257504004 | |
17979,40.561585,-76.199702,168,"{'type': 'Point', 'coordinates': [-76.199702, 40.561585]}",2.73119,61.511648768485536 | |
17980,40.518691,-76.644544,3238,"{'type': 'Point', 'coordinates': [-76.644544, 40.518691]}",105.534787,30.681826268337474 | |
17981,40.634118,-76.389387,2751,"{'type': 'Point', 'coordinates': [-76.389387, 40.634118]}",71.016059,38.737717056363266 | |
17982,40.785932,-76.021309,430,"{'type': 'Point', 'coordinates': [-76.021309, 40.785932]}",12.637042,34.02695029422234 | |
17983,40.642621999999996,-76.547166,1620,"{'type': 'Point', 'coordinates': [-76.547166, 40.642621999999996]}",6.498256,249.29765771000714 | |
17985,40.912303,-76.21664799999999,1226,"{'type': 'Point', 'coordinates': [-76.21664799999999, 40.912303]}",68.296844,17.951049099721214 | |
18011,40.477013,-75.646129,5450,"{'type': 'Point', 'coordinates': [-75.646129, 40.477013]}",42.875446,127.11238035867896 | |
18013,40.848762,-75.177293,17802,"{'type': 'Point', 'coordinates': [-75.177293, 40.848762]}",160.116854,111.18130012721835 | |
18014,40.764431,-75.409221,11387,"{'type': 'Point', 'coordinates': [-75.409221, 40.764431]}",87.367594,130.33436630977843 | |
18015,40.585869,-75.367239,32832,"{'type': 'Point', 'coordinates': [-75.367239, 40.585869]}",55.851018,587.8496252297496 | |
18016,40.632332,-75.39309399999999,0,"{'type': 'Point', 'coordinates': [-75.39309399999999, 40.632332]}",0.122712,0.0 | |
18017,40.659951,-75.38730600000001,37549,"{'type': 'Point', 'coordinates': [-75.38730600000001, 40.659951]}",42.168112,890.459596578571 | |
18018,40.627594,-75.395584,32413,"{'type': 'Point', 'coordinates': [-75.395584, 40.627594]}",13.741682,2358.735997529269 | |
18020,40.672385,-75.32745899999999,20447,"{'type': 'Point', 'coordinates': [-75.32745899999999, 40.672385]}",36.394566,561.8146401306174 | |
18030,40.802263,-75.66372,623,"{'type': 'Point', 'coordinates': [-75.66372, 40.802263]}",1.236237,503.9486765078217 | |
18031,40.552084,-75.648674,7528,"{'type': 'Point', 'coordinates': [-75.648674, 40.552084]}",35.458032,212.3073271522796 | |
18032,40.656191,-75.467788,9285,"{'type': 'Point', 'coordinates': [-75.467788, 40.656191]}",5.357954,1732.9376101399898 | |
18034,40.546353,-75.415278,8256,"{'type': 'Point', 'coordinates': [-75.415278, 40.546353]}",29.553429,279.3584460199187 | |
18035,40.745323,-75.53854399999999,241,"{'type': 'Point', 'coordinates': [-75.53854399999999, 40.745323]}",0.911978,264.2607606762444 | |
18036,40.509151,-75.38594,12822,"{'type': 'Point', 'coordinates': [-75.38594, 40.509151]}",76.097264,168.49488833133344 | |
18037,40.683103,-75.54800999999999,7070,"{'type': 'Point', 'coordinates': [-75.54800999999999, 40.683103]}",19.311919,366.0951560536268 | |
18038,40.794881,-75.486087,3091,"{'type': 'Point', 'coordinates': [-75.486087, 40.794881]}",34.390122,89.88046044151865 | |
18040,40.746007,-75.225665,15742,"{'type': 'Point', 'coordinates': [-75.225665, 40.746007]}",44.612202,352.86310234137284 | |
18041,40.420404,-75.50972,5424,"{'type': 'Point', 'coordinates': [-75.50972, 40.420404]}",35.977349,150.76152498062046 | |
18042,40.654176,-75.223124,41570,"{'type': 'Point', 'coordinates': [-75.223124, 40.654176]}",57.640239,721.19756477762 | |
18045,40.69345,-75.272796,26391,"{'type': 'Point', 'coordinates': [-75.272796, 40.69345]}",48.203312,547.4935000316991 | |
18046,40.548009,-75.560346,64,"{'type': 'Point', 'coordinates': [-75.560346, 40.548009]}",0.04726,1354.2107490478204 | |
18049,40.515732,-75.48929,17341,"{'type': 'Point', 'coordinates': [-75.48929, 40.515732]}",38.989607,444.75954835861774 | |
18051,40.595607,-75.666926,3327,"{'type': 'Point', 'coordinates': [-75.666926, 40.595607]}",21.701399,153.3080885706954 | |
18052,40.657428,-75.504255,26902,"{'type': 'Point', 'coordinates': [-75.504255, 40.657428]}",33.622728,800.1135422444008 | |
18053,40.719229999999996,-75.70411700000001,2375,"{'type': 'Point', 'coordinates': [-75.70411700000001, 40.719229999999996]}",42.622476,55.721774586722745 | |
18054,40.352369,-75.43873599999999,4278,"{'type': 'Point', 'coordinates': [-75.43873599999999, 40.352369]}",43.150562,99.1412348233147 | |
18055,40.591583,-75.304353,11780,"{'type': 'Point', 'coordinates': [-75.304353, 40.591583]}",56.073141,210.0827560203913 | |
18056,40.450942,-75.550389,943,"{'type': 'Point', 'coordinates': [-75.550389, 40.450942]}",4.360435,216.26282698859174 | |
18058,40.888739,-75.49429,9464,"{'type': 'Point', 'coordinates': [-75.49429, 40.888739]}",135.186665,70.00690489701776 | |
18059,40.723506,-75.543081,1228,"{'type': 'Point', 'coordinates': [-75.543081, 40.723506]}",4.494731,273.20878602078744 | |
18062,40.50394,-75.585183,24351,"{'type': 'Point', 'coordinates': [-75.585183, 40.50394]}",55.361359,439.8555317256572 | |
18063,40.782599,-75.167151,548,"{'type': 'Point', 'coordinates': [-75.167151, 40.782599]}",2.964627,184.8461880702024 | |
18064,40.757008,-75.31596400000001,24073,"{'type': 'Point', 'coordinates': [-75.31596400000001, 40.757008]}",100.555719,239.3996108764336 | |
18066,40.664462,-75.7401,6005,"{'type': 'Point', 'coordinates': [-75.7401, 40.664462]}",118.884414,50.51124699996418 | |
18067,40.715038,-75.474675,17852,"{'type': 'Point', 'coordinates': [-75.474675, 40.715038]}",66.000458,270.4829714969554 | |
18068,40.484829,-75.520041,42,"{'type': 'Point', 'coordinates': [-75.520041, 40.484829]}",0.01047,4011.4613180515757 | |
18069,40.625248,-75.615099,8017,"{'type': 'Point', 'coordinates': [-75.615099, 40.625248]}",36.059626,222.32621048260455 | |
18070,40.434866,-75.535617,739,"{'type': 'Point', 'coordinates': [-75.535617, 40.434866]}",6.175526,119.66591995564427 | |
18071,40.834214,-75.555278,10578,"{'type': 'Point', 'coordinates': [-75.555278, 40.834214]}",79.213308,133.5381676018378 | |
18072,40.84414,-75.259135,6571,"{'type': 'Point', 'coordinates': [-75.259135, 40.84414]}",39.538098,166.19413508459613 | |
18073,40.386499,-75.47443,9350,"{'type': 'Point', 'coordinates': [-75.47443, 40.386499]}",51.974979,179.8942525787264 | |
18074,40.316736999999996,-75.515686,5775,"{'type': 'Point', 'coordinates': [-75.515686, 40.316736999999996]}",49.209218,117.35606121601039 | |
18076,40.374803,-75.48079,2662,"{'type': 'Point', 'coordinates': [-75.48079, 40.374803]}",3.109082,856.2012838516321 | |
18077,40.570065,-75.237114,2370,"{'type': 'Point', 'coordinates': [-75.237114, 40.570065]}",37.993964,62.378329357789575 | |
18078,40.673303999999995,-75.620717,7074,"{'type': 'Point', 'coordinates': [-75.620717, 40.673303999999995]}",41.097484,172.12732536132867 | |
18079,40.743873,-75.658519,436,"{'type': 'Point', 'coordinates': [-75.658519, 40.743873]}",0.612816,711.4696744210333 | |
18080,40.735856,-75.635308,11456,"{'type': 'Point', 'coordinates': [-75.635308, 40.735856]}",80.442917,142.411543828029 | |
18081,40.563695,-75.281582,357,"{'type': 'Point', 'coordinates': [-75.281582, 40.563695]}",1.374793,259.6754565960112 | |
18083,40.754952,-75.26708599999999,530,"{'type': 'Point', 'coordinates': [-75.26708599999999, 40.754952]}",1.637783,323.6081947364211 | |
18085,40.741232000000004,-75.254887,1119,"{'type': 'Point', 'coordinates': [-75.254887, 40.741232000000004]}",1.340347,834.8584359124914 | |
18086,40.736807,-75.54793000000001,398,"{'type': 'Point', 'coordinates': [-75.54793000000001, 40.736807]}",1.237647,321.57796205218455 | |
18087,40.55683,-75.593654,738,"{'type': 'Point', 'coordinates': [-75.593654, 40.55683]}",2.844608,259.43820730308005 | |
18088,40.765692,-75.557509,8375,"{'type': 'Point', 'coordinates': [-75.557509, 40.765692]}",51.455521,162.761931805141 | |
18091,40.831388000000004,-75.319795,5926,"{'type': 'Point', 'coordinates': [-75.319795, 40.831388000000004]}",40.592167,145.9887568948955 | |
18092,40.469697,-75.51314,3223,"{'type': 'Point', 'coordinates': [-75.51314, 40.469697]}",38.846663,82.96722938595781 | |
18101,40.602658,-75.469236,3897,"{'type': 'Point', 'coordinates': [-75.469236, 40.602658]}",0.909343,4285.5116276256595 | |
18102,40.608473,-75.476275,49779,"{'type': 'Point', 'coordinates': [-75.476275, 40.608473]}",8.043181,6188.969264772233 | |
18103,40.570308000000004,-75.488926,45336,"{'type': 'Point', 'coordinates': [-75.488926, 40.570308000000004]}",45.922593,987.2264834871149 | |
18104,40.611658,-75.546853,43236,"{'type': 'Point', 'coordinates': [-75.546853, 40.611658]}",60.379282,716.0734372429271 | |
18105,40.601416,-75.493938,12,"{'type': 'Point', 'coordinates': [-75.493938, 40.601416]}",0.019947,601.5942246954429 | |
18106,40.56471,-75.568758,6889,"{'type': 'Point', 'coordinates': [-75.568758, 40.56471]}",21.658095,318.07968337012096 | |
18109,40.635486,-75.44192199999999,16932,"{'type': 'Point', 'coordinates': [-75.44192199999999, 40.635486]}",21.83384,775.4934541977042 | |
18195,40.584272,-75.624789,0,"{'type': 'Point', 'coordinates': [-75.624789, 40.584272]}",0.02934,0.0 | |
18201,40.949038,-75.95563800000001,27516,"{'type': 'Point', 'coordinates': [-75.95563800000001, 40.949038]}",56.182724,489.75909391648577 | |
18202,40.954433,-76.045987,12083,"{'type': 'Point', 'coordinates': [-76.045987, 40.954433]}",85.195896,141.82608044875775 | |
18210,41.004434,-75.576536,8258,"{'type': 'Point', 'coordinates': [-75.576536, 41.004434]}",82.158444,100.51310124617258 | |
18211,40.74408,-75.83040600000001,1304,"{'type': 'Point', 'coordinates': [-75.83040600000001, 40.74408]}",55.803764,23.367599361218716 | |
18212,40.775253,-75.70956899999999,131,"{'type': 'Point', 'coordinates': [-75.70956899999999, 40.775253]}",4.422338,29.62234003823317 | |
18214,40.800253999999995,-76.084215,2078,"{'type': 'Point', 'coordinates': [-76.084215, 40.800253999999995]}",62.963948,33.00301308933169 | |
18216,40.941496,-75.89285799999999,1067,"{'type': 'Point', 'coordinates': [-75.89285799999999, 40.941496]}",13.387801,79.69942188414662 | |
18218,40.81974,-75.916102,2281,"{'type': 'Point', 'coordinates': [-75.916102, 40.81974]}",5.634251,404.8452935447853 | |
18219,40.990787,-76.057456,1436,"{'type': 'Point', 'coordinates': [-76.057456, 40.990787]}",2.138819,671.3985615426084 | |
18220,40.840455,-76.06043299999999,344,"{'type': 'Point', 'coordinates': [-76.06043299999999, 40.840455]}",2.40857,142.82333500790926 | |
18221,41.001778,-75.917333,389,"{'type': 'Point', 'coordinates': [-75.917333, 41.001778]}",5.119941,75.97743802125845 | |
18222,41.035227,-76.003468,9020,"{'type': 'Point', 'coordinates': [-76.003468, 41.035227]}",97.902689,92.13230088092882 | |
18223,40.982353,-75.950287,115,"{'type': 'Point', 'coordinates': [-75.950287, 40.982353]}",3.23003,35.60338448868896 | |
18224,41.026275,-75.873263,6017,"{'type': 'Point', 'coordinates': [-75.873263, 41.026275]}",41.56731,144.75317262531541 | |
18225,40.981311,-75.971311,114,"{'type': 'Point', 'coordinates': [-75.971311, 40.981311]}",0.111343,1023.8631975068033 | |
18229,40.931094,-75.67377900000001,8498,"{'type': 'Point', 'coordinates': [-75.67377900000001, 40.931094]}",162.982206,52.140661294031084 | |
18230,40.921083,-75.934528,132,"{'type': 'Point', 'coordinates': [-75.934528, 40.921083]}",7.053084,18.715217343221774 | |
18231,40.904303999999996,-76.007984,535,"{'type': 'Point', 'coordinates': [-76.007984, 40.904303999999996]}",2.570207,208.15444047891864 | |
18232,40.833033,-75.88439699999999,3941,"{'type': 'Point', 'coordinates': [-75.88439699999999, 40.833033]}",3.98075,990.0144445142247 | |
18234,40.992594,-75.96435,401,"{'type': 'Point', 'coordinates': [-75.96435, 40.992594]}",0.67049,598.0700681591074 | |
18235,40.829796,-75.69785999999999,19353,"{'type': 'Point', 'coordinates': [-75.69785999999999, 40.829796]}",211.825849,91.36278736217882 | |
18237,40.886531,-75.979617,3110,"{'type': 'Point', 'coordinates': [-75.979617, 40.886531]}",17.07013,182.1895908232685 | |
18239,40.989337,-75.988272,232,"{'type': 'Point', 'coordinates': [-75.988272, 40.989337]}",0.697583,332.57691199470173 | |
18240,40.864677,-75.872265,3891,"{'type': 'Point', 'coordinates': [-75.872265, 40.864677]}",79.663391,48.84301246980561 | |
18241,40.951524,-76.130802,646,"{'type': 'Point', 'coordinates': [-76.130802, 40.951524]}",6.067584,106.46741767398687 | |
18242,40.911388,-76.12432199999999,235,"{'type': 'Point', 'coordinates': [-76.12432199999999, 40.911388]}",3.263167,72.01592808458776 | |
18244,40.822445,-75.67056099999999,402,"{'type': 'Point', 'coordinates': [-75.67056099999999, 40.822445]}",2.486281,161.6872750907882 | |
18245,40.853201,-76.03351500000001,348,"{'type': 'Point', 'coordinates': [-76.03351500000001, 40.853201]}",9.329416,37.30137020366548 | |
18246,40.957215000000005,-76.195185,143,"{'type': 'Point', 'coordinates': [-76.195185, 40.957215000000005]}",5.494924,26.02401780261201 | |
18248,40.879036,-76.197754,631,"{'type': 'Point', 'coordinates': [-76.197754, 40.879036]}",37.386085,16.87793733952084 | |
18249,40.987794,-76.116117,4129,"{'type': 'Point', 'coordinates': [-76.116117, 40.987794]}",82.749411,49.89763612939795 | |
18250,40.824963000000004,-75.84620100000001,3034,"{'type': 'Point', 'coordinates': [-75.84620100000001, 40.824963000000004]}",23.581604,128.6596111104232 | |
18251,41.008051,-76.077381,46,"{'type': 'Point', 'coordinates': [-76.077381, 41.008051]}",0.275049,167.24292762380523 | |
18252,40.766995,-75.974097,11188,"{'type': 'Point', 'coordinates': [-75.974097, 40.766995]}",153.683037,72.79918602857906 | |
18254,40.915913,-75.965651,871,"{'type': 'Point', 'coordinates': [-75.965651, 40.915913]}",4.572632,190.4811058488853 | |
18255,40.933491,-75.829695,4337,"{'type': 'Point', 'coordinates': [-75.829695, 40.933491]}",190.158662,22.8072702783321 | |
18256,40.940886,-76.146755,359,"{'type': 'Point', 'coordinates': [-76.146755, 40.940886]}",2.814973,127.53230670418507 | |
18301,41.042703,-75.17558100000001,28561,"{'type': 'Point', 'coordinates': [-75.17558100000001, 41.042703]}",104.49976,273.31163248604594 | |
18302,41.09655,-75.11110699999999,17362,"{'type': 'Point', 'coordinates': [-75.11110699999999, 41.09655]}",163.309705,106.31333881841253 | |
18321,41.02575,-75.28331,1711,"{'type': 'Point', 'coordinates': [-75.28331, 41.02575]}",7.196065,237.76883616254162 | |
18322,40.918523,-75.393279,2781,"{'type': 'Point', 'coordinates': [-75.393279, 40.918523]}",17.99684,154.52712809582127 | |
18323,41.196579,-75.27346899999999,275,"{'type': 'Point', 'coordinates': [-75.27346899999999, 41.196579]}",4.817233,57.086713472236035 | |
18324,41.158143,-75.00068900000001,9714,"{'type': 'Point', 'coordinates': [-75.00068900000001, 41.158143]}",121.768808,79.77412409260013 | |
18325,41.204726,-75.225359,2465,"{'type': 'Point', 'coordinates': [-75.225359, 41.204726]}",113.251418,21.765731886906703 | |
18326,41.167313,-75.25301999999999,4152,"{'type': 'Point', 'coordinates': [-75.25301999999999, 41.167313]}",86.44638,48.0297729066272 | |
18327,40.967874,-75.133837,700,"{'type': 'Point', 'coordinates': [-75.133837, 40.967874]}",5.20736,134.425121366681 | |
18328,41.228522,-74.973952,7759,"{'type': 'Point', 'coordinates': [-74.973952, 41.228522]}",224.714,34.528333793177104 | |
18330,40.968776,-75.449217,8927,"{'type': 'Point', 'coordinates': [-75.449217, 40.968776]}",42.587916,209.6134499748708 | |
18331,40.909936,-75.443831,867,"{'type': 'Point', 'coordinates': [-75.443831, 40.909936]}",8.897624,97.441743998173 | |
18332,41.094747,-75.261341,3085,"{'type': 'Point', 'coordinates': [-75.261341, 41.094747]}",36.253694,85.09477682467336 | |
18333,40.906085,-75.490084,712,"{'type': 'Point', 'coordinates': [-75.490084, 40.906085]}",5.579085,127.61949316061684 | |
18334,41.054953999999995,-75.431784,4156,"{'type': 'Point', 'coordinates': [-75.431784, 41.054953999999995]}",57.069314,72.82372449754696 | |
18335,41.068137,-75.103544,672,"{'type': 'Point', 'coordinates': [-75.103544, 41.068137]}",2.369991,283.54538055207803 | |
18336,41.374749,-74.742896,4082,"{'type': 'Point', 'coordinates': [-74.742896, 41.374749]}",36.911595,110.5885562517686 | |
18337,41.32911,-74.871787,14572,"{'type': 'Point', 'coordinates': [-74.871787, 41.32911]}",208.569644,69.86635121264338 | |
18340,41.417761999999996,-74.765897,174,"{'type': 'Point', 'coordinates': [-74.765897, 41.417761999999996]}",8.737606,19.913921502068188 | |
18342,41.170609000000006,-75.273444,492,"{'type': 'Point', 'coordinates': [-75.273444, 41.170609000000006]}",2.845566,172.9005758432593 | |
18343,40.893707,-75.111897,3982,"{'type': 'Point', 'coordinates': [-75.111897, 40.893707]}",60.002871,66.36349117361401 | |
18344,41.122901,-75.34399599999999,3589,"{'type': 'Point', 'coordinates': [-75.34399599999999, 41.122901]}",18.286957,196.2600994796455 | |
18346,41.142754,-75.42119100000001,2964,"{'type': 'Point', 'coordinates': [-75.42119100000001, 41.142754]}",30.447119,97.34911207855167 | |
18347,41.138882,-75.560229,3364,"{'type': 'Point', 'coordinates': [-75.560229, 41.138882]}",73.477743,45.78257119302099 | |
18349,41.101253,-75.366514,132,"{'type': 'Point', 'coordinates': [-75.366514, 41.101253]}",3.633949,36.32412012386525 | |
18350,41.123825,-75.466143,1931,"{'type': 'Point', 'coordinates': [-75.466143, 41.123825]}",59.158488,32.641131734130866 | |
18351,40.92272,-75.099334,518,"{'type': 'Point', 'coordinates': [-75.099334, 40.92272]}",1.140803,454.06612710520574 | |
18352,41.006831,-75.356087,1098,"{'type': 'Point', 'coordinates': [-75.356087, 41.006831]}",10.422493,105.34907531240367 | |
18353,40.895340000000004,-75.357668,12779,"{'type': 'Point', 'coordinates': [-75.357668, 40.895340000000004]}",122.59043,104.24141590824014 | |
18354,40.922603,-75.32209499999999,951,"{'type': 'Point', 'coordinates': [-75.32209499999999, 40.922603]}",8.803946,108.01974478262362 | |
18355,41.076955,-75.362899,1492,"{'type': 'Point', 'coordinates': [-75.362899, 41.076955]}",18.603917,80.19816471982756 | |
18356,41.011078999999995,-75.118103,136,"{'type': 'Point', 'coordinates': [-75.118103, 41.011078999999995]}",1.684805,80.72150783028303 | |
18357,41.231653,-75.210713,104,"{'type': 'Point', 'coordinates': [-75.210713, 41.231653]}",10.748821,9.675479757268263 | |
18360,40.967361,-75.28796700000001,28362,"{'type': 'Point', 'coordinates': [-75.28796700000001, 40.967361]}",206.273361,137.4971535951266 | |
18370,41.092408,-75.33953699999999,1096,"{'type': 'Point', 'coordinates': [-75.33953699999999, 41.092408]}",13.596875,80.60675706734084 | |
18371,41.150011,-75.045249,747,"{'type': 'Point', 'coordinates': [-75.045249, 41.150011]}",9.486164,78.74626666795977 | |
18372,41.044022,-75.33635,3210,"{'type': 'Point', 'coordinates': [-75.33635, 41.044022]}",22.966014,139.77175142364712 | |
18403,41.508802,-75.535262,7087,"{'type': 'Point', 'coordinates': [-75.535262, 41.508802]}",61.706082,114.8509153441309 | |
18405,41.599606,-75.103881,2561,"{'type': 'Point', 'coordinates': [-75.103881, 41.599606]}",99.464511,25.7478770493327 | |
18407,41.591753999999995,-75.53479300000001,13862,"{'type': 'Point', 'coordinates': [-75.53479300000001, 41.591753999999995]}",110.530369,125.41349608631091 | |
18411,41.454492,-75.74454,21985,"{'type': 'Point', 'coordinates': [-75.74454, 41.454492]}",143.075913,153.65968693835976 | |
18413,41.648128,-75.589342,151,"{'type': 'Point', 'coordinates': [-75.589342, 41.648128]}",2.318766,65.12084444915959 | |
18414,41.541072,-75.741068,5452,"{'type': 'Point', 'coordinates': [-75.741068, 41.541072]}",109.387723,49.841059402982545 | |
18415,41.74353,-75.124268,1245,"{'type': 'Point', 'coordinates': [-75.124268, 41.74353]}",86.950369,14.318513127874134 | |
18417,41.809703000000006,-75.201115,1121,"{'type': 'Point', 'coordinates': [-75.201115, 41.809703000000006]}",155.321428,7.217291357893001 | |
18419,41.585933000000004,-75.792369,4634,"{'type': 'Point', 'coordinates': [-75.792369, 41.585933000000004]}",101.352042,45.72182176655109 | |
18420,41.602006,-75.710133,57,"{'type': 'Point', 'coordinates': [-75.710133, 41.602006]}",0.726672,78.43979126758703 | |
18421,41.66421,-75.492886,4754,"{'type': 'Point', 'coordinates': [-75.492886, 41.66421]}",92.282992,51.51545151461929 | |
18424,41.230478000000005,-75.52496500000001,5613,"{'type': 'Point', 'coordinates': [-75.52496500000001, 41.230478000000005]}",218.198903,25.72423565300876 | |
18425,41.438445,-75.043141,1354,"{'type': 'Point', 'coordinates': [-75.043141, 41.438445]}",59.612568,22.713331188819108 | |
18426,41.325507,-75.23906099999999,4526,"{'type': 'Point', 'coordinates': [-75.23906099999999, 41.325507]}",160.94925,28.120665365014126 | |
18427,41.404977,-75.406897,118,"{'type': 'Point', 'coordinates': [-75.406897, 41.404977]}",1.782414,66.20235253987009 | |
18428,41.404303999999996,-75.118065,12012,"{'type': 'Point', 'coordinates': [-75.118065, 41.404303999999996]}",443.255291,27.09950731304412 | |
18430,41.756453,-75.47245699999999,33,"{'type': 'Point', 'coordinates': [-75.47245699999999, 41.756453]}",4.625219,7.1347972928417 | |
18431,41.61651,-75.257698,12666,"{'type': 'Point', 'coordinates': [-75.257698, 41.61651]}",356.143972,35.56426893559776 | |
18433,41.573307,-75.58133000000001,6508,"{'type': 'Point', 'coordinates': [-75.58133000000001, 41.573307]}",72.768223,89.43464237129989 | |
18434,41.453565999999995,-75.54234699999999,4192,"{'type': 'Point', 'coordinates': [-75.54234699999999, 41.453565999999995]}",17.334093,241.83555493789032 | |
18435,41.495467,-75.012702,795,"{'type': 'Point', 'coordinates': [-75.012702, 41.495467]}",27.060566,29.378542932176657 | |
18436,41.442799,-75.39345,13853,"{'type': 'Point', 'coordinates': [-75.39345, 41.442799]}",244.573812,56.64138726349001 | |
18437,41.871969,-75.31650400000001,211,"{'type': 'Point', 'coordinates': [-75.31650400000001, 41.871969]}",31.527908,6.692483370606131 | |
18438,41.439159000000004,-75.256488,1172,"{'type': 'Point', 'coordinates': [-75.256488, 41.439159000000004]}",20.124525,58.23739939203534 | |
18439,41.825503000000005,-75.348966,500,"{'type': 'Point', 'coordinates': [-75.348966, 41.825503000000005]}",82.250052,6.079023512349877 | |
18441,41.656053,-75.61394200000001,289,"{'type': 'Point', 'coordinates': [-75.61394200000001, 41.656053]}",7.638704,37.83364298446438 | |
18443,41.662927,-75.102094,458,"{'type': 'Point', 'coordinates': [-75.102094, 41.662927]}",36.04654,12.705796450921502 | |
18444,41.329074,-75.55277,13778,"{'type': 'Point', 'coordinates': [-75.55277, 41.329074]}",307.677869,44.78060136330443 | |
18445,41.297908,-75.359362,2329,"{'type': 'Point', 'coordinates': [-75.359362, 41.297908]}",95.880751,24.290589880757192 | |
18446,41.656175,-75.75914300000001,3733,"{'type': 'Point', 'coordinates': [-75.75914300000001, 41.656175]}",133.21974,28.021372808564255 | |
18447,41.513448,-75.607166,10548,"{'type': 'Point', 'coordinates': [-75.607166, 41.513448]}",53.174586,198.3654372034039 | |
18451,41.396997999999996,-75.217955,448,"{'type': 'Point', 'coordinates': [-75.217955, 41.396997999999996]}",22.640545,19.78750953212478 | |
18452,41.483628,-75.590282,4802,"{'type': 'Point', 'coordinates': [-75.590282, 41.483628]}",5.094119,942.6556387866086 | |
18453,41.758495,-75.370789,1104,"{'type': 'Point', 'coordinates': [-75.370789, 41.758495]}",134.281772,8.221517958520835 | |
18454,41.827284999999996,-75.426144,64,"{'type': 'Point', 'coordinates': [-75.426144, 41.827284999999996]}",7.999672,8.00032801344855 | |
18455,41.893001,-75.359193,105,"{'type': 'Point', 'coordinates': [-75.359193, 41.893001]}",12.126659,8.658609102474143 | |
18456,41.612796,-75.34043299999999,423,"{'type': 'Point', 'coordinates': [-75.34043299999999, 41.612796]}",13.240355,31.947783877396038 | |
18457,41.472094,-75.049165,82,"{'type': 'Point', 'coordinates': [-75.049165, 41.472094]}",1.286464,63.74060991990448 | |
18458,41.395754,-74.91925400000001,3017,"{'type': 'Point', 'coordinates': [-74.91925400000001, 41.395754]}",146.344831,20.615692261792287 | |
18459,41.504102,-75.428839,51,"{'type': 'Point', 'coordinates': [-75.428839, 41.504102]}",0.281465,181.1948199598529 | |
18460,41.249894,-75.313008,184,"{'type': 'Point', 'coordinates': [-75.313008, 41.249894]}",8.72031,21.100167310565794 | |
18461,41.929003,-75.327674,404,"{'type': 'Point', 'coordinates': [-75.327674, 41.929003]}",57.16384,7.06740484893947 | |
18462,41.914344,-75.409089,427,"{'type': 'Point', 'coordinates': [-75.409089, 41.914344]}",70.777437,6.032996080375162 | |
18463,41.357556,-75.396934,199,"{'type': 'Point', 'coordinates': [-75.396934, 41.357556]}",7.476754,26.615828205662513 | |
18464,41.403012,-75.17695,1193,"{'type': 'Point', 'coordinates': [-75.17695, 41.403012]}",31.815397,37.49756760853872 | |
18465,41.831299,-75.516849,1340,"{'type': 'Point', 'coordinates': [-75.516849, 41.831299]}",124.93795,10.725324050858847 | |
18466,41.196442,-75.394233,16681,"{'type': 'Point', 'coordinates': [-75.394233, 41.196442]}",94.615051,176.30387368284568 | |
18469,41.703684,-75.130492,357,"{'type': 'Point', 'coordinates': [-75.130492, 41.703684]}",24.511384,14.5646610570827 | |
18470,41.724706,-75.535516,2226,"{'type': 'Point', 'coordinates': [-75.535516, 41.724706]}",161.370147,13.794373007542715 | |
18471,41.529092999999996,-75.69118,685,"{'type': 'Point', 'coordinates': [-75.69118, 41.529092999999996]}",7.163716,95.62076441891331 | |
18472,41.58341,-75.396687,7521,"{'type': 'Point', 'coordinates': [-75.396687, 41.58341]}",171.611307,43.825783577302396 | |
18473,41.522059000000006,-75.21717199999999,495,"{'type': 'Point', 'coordinates': [-75.21717199999999, 41.522059000000006]}",3.316519,149.25287628383856 | |
18503,41.411107,-75.66747,1182,"{'type': 'Point', 'coordinates': [-75.66747, 41.411107]}",1.199212,985.647241688709 | |
18504,41.425521,-75.699867,21265,"{'type': 'Point', 'coordinates': [-75.699867, 41.425521]}",22.328283,952.379544813186 | |
18505,41.386202000000004,-75.651527,20586,"{'type': 'Point', 'coordinates': [-75.651527, 41.386202000000004]}",22.619914,910.083035682629 | |
18507,41.359038,-75.681823,4891,"{'type': 'Point', 'coordinates': [-75.681823, 41.359038]}",25.309532,193.24735044488375 | |
18508,41.454947,-75.657937,12292,"{'type': 'Point', 'coordinates': [-75.657937, 41.454947]}",17.62112,697.5720045036865 | |
18509,41.430836,-75.642907,13589,"{'type': 'Point', 'coordinates': [-75.642907, 41.430836]}",7.434252,1827.8906875903588 | |
18510,41.407379,-75.636613,14119,"{'type': 'Point', 'coordinates': [-75.636613, 41.407379]}",5.629026,2508.2492068787747 | |
18512,41.426229,-75.601387,12218,"{'type': 'Point', 'coordinates': [-75.601387, 41.426229]}",29.252294,417.67664443684316 | |
18517,41.394641,-75.713636,5274,"{'type': 'Point', 'coordinates': [-75.713636, 41.394641]}",10.859596,485.6534257812169 | |
18518,41.375058,-75.73955699999999,8313,"{'type': 'Point', 'coordinates': [-75.73955699999999, 41.375058]}",10.467153,794.1987663694225 | |
18519,41.461939,-75.630719,5104,"{'type': 'Point', 'coordinates': [-75.630719, 41.461939]}",6.235662,818.5177451888829 | |
18602,41.185952,-75.753988,257,"{'type': 'Point', 'coordinates': [-75.753988, 41.185952]}",5.273213,48.73688963446005 | |
18603,41.082035,-76.258139,19320,"{'type': 'Point', 'coordinates': [-76.258139, 41.082035]}",137.672805,140.33272584226054 | |
18610,41.069339,-75.54946899999999,5008,"{'type': 'Point', 'coordinates': [-75.54946899999999, 41.069339]}",78.867691,63.49875261341175 | |
18612,41.346088,-75.98638000000001,18051,"{'type': 'Point', 'coordinates': [-75.98638000000001, 41.346088]}",142.757721,126.44499977692975 | |
18614,41.504372,-76.58972,2426,"{'type': 'Point', 'coordinates': [-76.58972, 41.504372]}",358.882054,6.759881061090896 | |
18615,41.461702,-75.857203,1867,"{'type': 'Point', 'coordinates': [-75.857203, 41.461702]}",48.803917,38.255126120307104 | |
18616,41.50483,-76.63605799999999,738,"{'type': 'Point', 'coordinates': [-76.63605799999999, 41.50483]}",143.763199,5.133441695325659 | |
18617,41.17054,-76.077533,1924,"{'type': 'Point', 'coordinates': [-76.077533, 41.17054]}",16.104059,119.47298504060375 | |
18618,41.365177,-76.041404,3793,"{'type': 'Point', 'coordinates': [-76.041404, 41.365177]}",48.406259,78.35763552808326 | |
18619,41.461696,-76.717816,273,"{'type': 'Point', 'coordinates': [-76.717816, 41.461696]}",89.4975,3.0503645353222155 | |
18621,41.248601,-76.098546,6248,"{'type': 'Point', 'coordinates': [-76.098546, 41.248601]}",119.055609,52.47967779493698 | |
18622,41.201232,-76.273515,257,"{'type': 'Point', 'coordinates': [-76.273515, 41.201232]}",9.542973,26.93081076515673 | |
18623,41.664801000000004,-76.151984,2733,"{'type': 'Point', 'coordinates': [-76.151984, 41.664801000000004]}",149.371178,18.296702460229646 | |
18624,41.060686,-75.647064,718,"{'type': 'Point', 'coordinates': [-75.647064, 41.060686]}",42.887799,16.7413580724905 | |
18625,41.513387,-75.848822,491,"{'type': 'Point', 'coordinates': [-75.848822, 41.513387]}",2.724114,180.24208972164894 | |
18626,41.398286,-76.523876,516,"{'type': 'Point', 'coordinates': [-76.523876, 41.398286]}",66.865995,7.7169269671377805 | |
18628,41.430143,-76.313808,192,"{'type': 'Point', 'coordinates': [-76.313808, 41.430143]}",54.108025,3.5484569987538817 | |
18629,41.517604,-76.141339,1801,"{'type': 'Point', 'coordinates': [-76.141339, 41.517604]}",245.194432,7.345191264375856 | |
18630,41.662144,-76.023636,3556,"{'type': 'Point', 'coordinates': [-76.023636, 41.662144]}",172.55926,20.60741336048845 | |
18631,41.029907,-76.304374,1286,"{'type': 'Point', 'coordinates': [-76.304374, 41.029907]}",4.868484,264.1479359899304 | |
18632,41.45936,-76.377495,409,"{'type': 'Point', 'coordinates': [-76.377495, 41.45936]}",13.510778,30.272127926311867 | |
18634,41.185512,-76.02261899999999,13569,"{'type': 'Point', 'coordinates': [-76.02261899999999, 41.185512]}",39.255889,345.65514488794275 | |
18635,41.02924,-76.201347,3881,"{'type': 'Point', 'coordinates': [-76.201347, 41.02924]}",100.214555,38.72690947936654 | |
18636,41.39141,-76.113651,1438,"{'type': 'Point', 'coordinates': [-76.113651, 41.39141]}",115.37218,12.464009954566171 | |
18640,41.29823,-75.738725,17155,"{'type': 'Point', 'coordinates': [-75.738725, 41.29823]}",74.637439,229.8444350428476 | |
18641,41.340533,-75.725729,6812,"{'type': 'Point', 'coordinates': [-75.725729, 41.340533]}",11.367391,599.2580003626163 | |
18642,41.356348,-75.77318100000001,4345,"{'type': 'Point', 'coordinates': [-75.77318100000001, 41.356348]}",14.539687,298.8372445706706 | |
18643,41.370822,-75.840422,12908,"{'type': 'Point', 'coordinates': [-75.840422, 41.370822]}",51.537896,250.45647963587803 | |
18644,41.32793,-75.882372,7546,"{'type': 'Point', 'coordinates': [-75.882372, 41.32793]}",43.519828,173.39222939943605 | |
18651,41.25404,-75.959845,8880,"{'type': 'Point', 'coordinates': [-75.959845, 41.25404]}",32.539627,272.89802676594906 | |
18653,41.393316,-75.82313,132,"{'type': 'Point', 'coordinates': [-75.82313, 41.393316]}",0.82202,160.58003454903775 | |
18655,41.187723999999996,-76.203214,6278,"{'type': 'Point', 'coordinates': [-76.203214, 41.187723999999996]}",190.063349,33.03109217548303 | |
18656,41.332524,-76.185452,2195,"{'type': 'Point', 'coordinates': [-76.185452, 41.332524]}",136.333263,16.1002528047759 | |
18657,41.52251,-75.959485,11985,"{'type': 'Point', 'coordinates': [-75.959485, 41.52251]}",329.108034,36.41661327538422 | |
18660,41.097733000000005,-76.062014,3702,"{'type': 'Point', 'coordinates': [-76.062014, 41.097733000000005]}",113.99275,32.47574955424797 | |
18661,41.076378999999996,-75.740724,5730,"{'type': 'Point', 'coordinates': [-75.740724, 41.076378999999996]}",352.057258,16.275761597847815 | |
18701,41.243648,-75.885029,3447,"{'type': 'Point', 'coordinates': [-75.885029, 41.243648]}",1.38407,2490.4809727831685 | |
18702,41.230476,-75.757441,40295,"{'type': 'Point', 'coordinates': [-75.757441, 41.230476]}",183.813603,219.2166376282826 | |
18704,41.262553000000004,-75.914636,31206,"{'type': 'Point', 'coordinates': [-75.914636, 41.262553000000004]}",27.08168,1152.2918814490092 | |
18705,41.271834000000005,-75.842735,14806,"{'type': 'Point', 'coordinates': [-75.842735, 41.271834000000005]}",14.300978,1035.3138086080546 | |
18706,41.203289,-75.914803,16105,"{'type': 'Point', 'coordinates': [-75.914803, 41.203289]}",69.455676,231.87449791720408 | |
18707,41.13575,-75.933499,15557,"{'type': 'Point', 'coordinates': [-75.933499, 41.13575]}",130.086599,119.58956663937381 | |
18708,41.295848,-75.963463,8817,"{'type': 'Point', 'coordinates': [-75.963463, 41.295848]}",43.04221,204.8454296375581 | |
18709,41.285469,-75.896388,2903,"{'type': 'Point', 'coordinates': [-75.896388, 41.285469]}",2.044132,1420.1626900806798 | |
18801,41.826389,-75.939711,8266,"{'type': 'Point', 'coordinates': [-75.939711, 41.826389]}",423.486102,19.518940435027545 | |
18810,41.933295,-76.50713,6162,"{'type': 'Point', 'coordinates': [-76.50713, 41.933295]}",122.469386,50.31461495201748 | |
18812,41.973202,-75.964751,1644,"{'type': 'Point', 'coordinates': [-75.964751, 41.973202]}",83.177822,19.76488396149637 | |
18814,41.784063,-76.607272,156,"{'type': 'Point', 'coordinates': [-76.607272, 41.784063]}",1.548612,100.73536818777072 | |
18816,41.757157,-75.915633,128,"{'type': 'Point', 'coordinates': [-75.915633, 41.757157]}",3.062189,41.80016321657481 | |
18817,41.872721999999996,-76.63161099999999,306,"{'type': 'Point', 'coordinates': [-76.63161099999999, 41.872721999999996]}",4.781485,63.996854533685664 | |
18818,41.911258000000004,-76.044011,1394,"{'type': 'Point', 'coordinates': [-76.044011, 41.911258000000004]}",118.91565,11.72259496542297 | |
18821,41.989756,-75.722751,1153,"{'type': 'Point', 'coordinates': [-75.722751, 41.989756]}",9.452585,121.97721575632487 | |
18822,41.970399,-75.794149,3642,"{'type': 'Point', 'coordinates': [-75.794149, 41.970399]}",108.266526,33.639206267687946 | |
18823,41.778326,-75.690124,193,"{'type': 'Point', 'coordinates': [-75.690124, 41.778326]}",6.905717,27.94785827452819 | |
18824,41.697365999999995,-75.787183,1401,"{'type': 'Point', 'coordinates': [-75.787183, 41.697365999999995]}",78.303333,17.891958698616317 | |
18825,41.807883000000004,-75.60772800000001,111,"{'type': 'Point', 'coordinates': [-75.60772800000001, 41.807883000000004]}",8.753748,12.680282777160137 | |
18826,41.745746000000004,-75.74889300000001,1910,"{'type': 'Point', 'coordinates': [-75.74889300000001, 41.745746000000004]}",119.421396,15.993783894470635 | |
18828,41.806723999999996,-76.096165,352,"{'type': 'Point', 'coordinates': [-76.096165, 41.806723999999996]}",25.975038,13.551471993996698 | |
18829,41.837644,-76.173693,868,"{'type': 'Point', 'coordinates': [-76.173693, 41.837644]}",67.190178,12.918554851871354 | |
18830,41.959087,-76.114452,735,"{'type': 'Point', 'coordinates': [-76.114452, 41.959087]}",63.201375,11.629493820348054 | |
18831,41.894223,-76.598118,1039,"{'type': 'Point', 'coordinates': [-76.598118, 41.894223]}",76.277067,13.6213942258687 | |
18832,41.678278000000006,-76.568742,1874,"{'type': 'Point', 'coordinates': [-76.568742, 41.678278000000006]}",155.397662,12.05938349316993 | |
18833,41.597169,-76.483621,2056,"{'type': 'Point', 'coordinates': [-76.483621, 41.597169]}",277.064495,7.420654891201415 | |
18834,41.830967,-75.720934,3691,"{'type': 'Point', 'coordinates': [-75.720934, 41.830967]}",174.010396,21.21137635937568 | |
18837,41.915054,-76.302838,3267,"{'type': 'Point', 'coordinates': [-76.302838, 41.915054]}",234.788214,13.914667795036763 | |
18840,41.971552,-76.534965,10731,"{'type': 'Point', 'coordinates': [-76.534965, 41.971552]}",118.677771,90.42131403024075 | |
18842,41.749704,-75.62344300000001,278,"{'type': 'Point', 'coordinates': [-75.62344300000001, 41.749704]}",10.683988,26.020246372421983 | |
18843,41.794457,-75.899586,277,"{'type': 'Point', 'coordinates': [-75.899586, 41.794457]}",2.270553,121.99671181425846 | |
18844,41.69097,-75.905239,1870,"{'type': 'Point', 'coordinates': [-75.905239, 41.69097]}",89.401658,20.91683803000611 | |
18845,41.787369,-76.182163,297,"{'type': 'Point', 'coordinates': [-76.182163, 41.787369]}",25.369432,11.707002348337953 | |
18846,41.621411,-76.229986,847,"{'type': 'Point', 'coordinates': [-76.229986, 41.621411]}",71.517737,11.843215900413629 | |
18847,41.92882,-75.579031,6024,"{'type': 'Point', 'coordinates': [-75.579031, 41.92882]}",371.192958,16.22875615005606 | |
18848,41.751057,-76.454741,9193,"{'type': 'Point', 'coordinates': [-76.454741, 41.751057]}",281.055312,32.70886408295318 | |
18850,41.854257000000004,-76.462384,2357,"{'type': 'Point', 'coordinates': [-76.462384, 41.854257000000004]}",157.948864,14.922551136550119 | |
18851,41.933902,-76.176463,706,"{'type': 'Point', 'coordinates': [-76.176463, 41.933902]}",73.205776,9.644047759291562 | |
18853,41.721414,-76.276925,4252,"{'type': 'Point', 'coordinates': [-76.276925, 41.721414]}",271.293995,15.67303397187247 | |
18854,41.790684000000006,-76.355747,1510,"{'type': 'Point', 'coordinates': [-76.355747, 41.790684000000006]}",70.473335,21.426543812634947 | |
18901,40.306267,-75.147144,27598,"{'type': 'Point', 'coordinates': [-75.147144, 40.306267]}",54.300601,508.2448350801863 | |
18902,40.352134,-75.09568,20973,"{'type': 'Point', 'coordinates': [-75.09568, 40.352134]}",72.215779,290.4212942160466 | |
18912,40.323952,-75.056407,39,"{'type': 'Point', 'coordinates': [-75.056407, 40.323952]}",1.032601,37.768702528856736 | |
18913,40.37939,-75.06000999999999,185,"{'type': 'Point', 'coordinates': [-75.06000999999999, 40.37939]}",3.828756,48.31856613479679 | |
18914,40.288978,-75.209591,21063,"{'type': 'Point', 'coordinates': [-75.209591, 40.288978]}",46.152122,456.38204891207386 | |
18915,40.272101,-75.25683000000001,1063,"{'type': 'Point', 'coordinates': [-75.25683000000001, 40.272101]}",2.727895,389.67775519219026 | |
18917,40.37692,-75.20594799999999,2158,"{'type': 'Point', 'coordinates': [-75.20594799999999, 40.37692]}",1.510703,1428.4740283166182 | |
18920,40.497718,-75.084034,361,"{'type': 'Point', 'coordinates': [-75.084034, 40.497718]}",7.344791,49.15047957116819 | |
18923,40.359341,-75.17392099999999,998,"{'type': 'Point', 'coordinates': [-75.17392099999999, 40.359341]}",4.507341,221.4165735408082 | |
18925,40.288810999999995,-75.05803900000001,6195,"{'type': 'Point', 'coordinates': [-75.05803900000001, 40.288810999999995]}",28.044899,220.89578571846522 | |
18929,40.255513,-75.080152,9306,"{'type': 'Point', 'coordinates': [-75.080152, 40.255513]}",21.286289,437.18282693615595 | |
18930,40.521074,-75.218673,2721,"{'type': 'Point', 'coordinates': [-75.218673, 40.521074]}",59.826941,45.481182131642 | |
18932,40.291585,-75.250486,388,"{'type': 'Point', 'coordinates': [-75.250486, 40.291585]}",3.260341,119.005956738881 | |
18935,40.437016,-75.40347299999999,116,"{'type': 'Point', 'coordinates': [-75.40347299999999, 40.437016]}",0.18725,619.4926568758344 | |
18936,40.22405,-75.230961,4,"{'type': 'Point', 'coordinates': [-75.230961, 40.22405]}",1.898345,2.107098551633133 | |
18938,40.351048,-74.998049,13989,"{'type': 'Point', 'coordinates': [-74.998049, 40.351048]}",108.408974,129.03913286735838 | |
18940,40.261315,-74.937775,28825,"{'type': 'Point', 'coordinates': [-74.937775, 40.261315]}",85.199728,338.3226763353048 | |
18942,40.471159,-75.16046700000001,3260,"{'type': 'Point', 'coordinates': [-75.16046700000001, 40.471159]}",58.87719,55.36949028987287 | |
18944,40.389293,-75.234442,24479,"{'type': 'Point', 'coordinates': [-75.234442, 40.389293]}",121.996465,200.65335499680256 | |
18947,40.422899,-75.117839,6172,"{'type': 'Point', 'coordinates': [-75.117839, 40.422899]}",62.273893,99.1105534385011 | |
18950,40.445233,-75.07444100000001,252,"{'type': 'Point', 'coordinates': [-75.07444100000001, 40.445233]}",3.619791,69.61727900864994 | |
18951,40.452964,-75.348855,34651,"{'type': 'Point', 'coordinates': [-75.348855, 40.452964]}",175.221039,197.75593272221153 | |
18954,40.225413,-74.99295699999999,9745,"{'type': 'Point', 'coordinates': [-74.99295699999999, 40.225413]}",17.588907,554.0423859197164 | |
18955,40.47664,-75.313694,1662,"{'type': 'Point', 'coordinates': [-75.313694, 40.47664]}",6.83953,242.9991534506026 | |
18960,40.366237,-75.325845,12473,"{'type': 'Point', 'coordinates': [-75.325845, 40.366237]}",50.181098,248.55972661259824 | |
18962,40.346684,-75.271138,515,"{'type': 'Point', 'coordinates': [-75.271138, 40.346684]}",0.628995,818.7664448842996 | |
18964,40.303470000000004,-75.337889,13812,"{'type': 'Point', 'coordinates': [-75.337889, 40.303470000000004]}",24.214949,570.3914552948263 | |
18966,40.188468,-75.00989799999999,37999,"{'type': 'Point', 'coordinates': [-75.00989799999999, 40.188468]}",42.831428,887.1756505526736 | |
18969,40.326304,-75.368422,15273,"{'type': 'Point', 'coordinates': [-75.368422, 40.326304]}",44.035003,346.8377190754364 | |
18970,40.412007,-75.38117,696,"{'type': 'Point', 'coordinates': [-75.38117, 40.412007]}",1.055021,659.7025082913042 | |
18972,40.52732,-75.124666,3512,"{'type': 'Point', 'coordinates': [-75.124666, 40.52732]}",63.142085,55.6205896590206 | |
18974,40.217062,-75.07280300000001,40953,"{'type': 'Point', 'coordinates': [-75.07280300000001, 40.217062]}",49.667932,824.5360406791247 | |
18976,40.248821,-75.14352199999999,19795,"{'type': 'Point', 'coordinates': [-75.14352199999999, 40.248821]}",28.237312,701.0228169026853 | |
18977,40.286862,-74.882113,4291,"{'type': 'Point', 'coordinates': [-74.882113, 40.286862]}",14.703114,291.8429388495526 | |
18980,40.269965,-75.01718199999999,510,"{'type': 'Point', 'coordinates': [-75.01718199999999, 40.269965]}",6.182765,82.4873660894438 | |
19001,40.125923,-75.125443,17020,"{'type': 'Point', 'coordinates': [-75.125443, 40.125923]}",8.962263,1899.073928091599 | |
19002,40.187217,-75.206876,32412,"{'type': 'Point', 'coordinates': [-75.206876, 40.187217]}",53.91387,601.1811060864301 | |
19003,40.001553,-75.298929,12519,"{'type': 'Point', 'coordinates': [-75.298929, 40.001553]}",5.029541,2489.0939352119804 | |
19004,40.009753,-75.23150799999999,9416,"{'type': 'Point', 'coordinates': [-75.23150799999999, 40.009753]}",7.176072,1312.1384512307013 | |
19006,40.157889000000004,-75.030918,21423,"{'type': 'Point', 'coordinates': [-75.030918, 40.157889000000004]}",33.252603,644.2503162835102 | |
19007,40.113178999999995,-74.85765,21125,"{'type': 'Point', 'coordinates': [-74.85765, 40.113178999999995]}",20.171228,1047.2837846064701 | |
19008,39.972604,-75.360258,20535,"{'type': 'Point', 'coordinates': [-75.360258, 39.972604]}",16.982886,1209.1584433882438 | |
19009,40.137805,-75.06424200000001,864,"{'type': 'Point', 'coordinates': [-75.06424200000001, 40.137805]}",3.369268,256.4355224933131 | |
19010,40.023624,-75.329727,21103,"{'type': 'Point', 'coordinates': [-75.329727, 40.023624]}",21.830407,966.6791828480339 | |
19012,40.059768,-75.105885,6670,"{'type': 'Point', 'coordinates': [-75.105885, 40.059768]}",4.549478,1466.1022649191843 | |
19013,39.848281,-75.377981,35130,"{'type': 'Point', 'coordinates': [-75.377981, 39.848281]}",14.819755,2370.484532301647 | |
19014,39.864907,-75.432958,21206,"{'type': 'Point', 'coordinates': [-75.432958, 39.864907]}",23.299606,910.1441457851262 | |
19015,39.868633,-75.392945,16632,"{'type': 'Point', 'coordinates': [-75.392945, 39.868633]}",8.498956,1956.9462413971787 | |
19017,39.892401,-75.460137,348,"{'type': 'Point', 'coordinates': [-75.460137, 39.892401]}",2.314435,150.36067117892705 | |
19018,39.923075,-75.29859499999999,23360,"{'type': 'Point', 'coordinates': [-75.29859499999999, 39.923075]}",7.005021,3334.7508879702145 | |
19020,40.100590999999994,-74.938934,55493,"{'type': 'Point', 'coordinates': [-74.938934, 40.100590999999994]}",47.454261,1169.3997299842051 | |
19021,40.089651,-74.892183,10074,"{'type': 'Point', 'coordinates': [-74.892183, 40.089651]}",10.642189,946.6097623336702 | |
19022,39.86144,-75.337023,3669,"{'type': 'Point', 'coordinates': [-75.337023, 39.86144]}",3.408146,1076.5383877333893 | |
19023,39.91714,-75.267387,22164,"{'type': 'Point', 'coordinates': [-75.267387, 39.91714]}",5.172709,4284.795452440878 | |
19025,40.146444,-75.161987,5395,"{'type': 'Point', 'coordinates': [-75.161987, 40.146444]}",7.763446,694.9233626407655 | |
19026,39.950317999999996,-75.30404200000001,30738,"{'type': 'Point', 'coordinates': [-75.30404200000001, 39.950317999999996]}",9.37876,3277.4055418840017 | |
19027,40.073118,-75.124431,19067,"{'type': 'Point', 'coordinates': [-75.124431, 40.073118]}",10.241866,1861.6724725748218 | |
19029,39.870882,-75.29133900000001,3971,"{'type': 'Point', 'coordinates': [-75.29133900000001, 39.870882]}",6.294291,630.8891660712858 | |
19030,40.180468,-74.83726300000001,12122,"{'type': 'Point', 'coordinates': [-74.83726300000001, 40.180468]}",11.961667,1013.4039009780158 | |
19031,40.109155,-75.217005,4700,"{'type': 'Point', 'coordinates': [-75.217005, 40.109155]}",7.440791,631.6532744972947 | |
19032,39.891296000000004,-75.278777,6606,"{'type': 'Point', 'coordinates': [-75.278777, 39.891296000000004]}",2.712667,2435.2417749764345 | |
19033,39.890883,-75.328434,7777,"{'type': 'Point', 'coordinates': [-75.328434, 39.890883]}",2.855525,2723.4921774454783 | |
19034,40.134269,-75.204838,5999,"{'type': 'Point', 'coordinates': [-75.204838, 40.134269]}",16.171264,370.9666727350441 | |
19035,40.051349,-75.277642,3780,"{'type': 'Point', 'coordinates': [-75.277642, 40.051349]}",12.618462,299.5610717058862 | |
19036,39.903578,-75.293355,12942,"{'type': 'Point', 'coordinates': [-75.293355, 39.903578]}",3.959664,3268.4591419878047 | |
19038,40.100418,-75.171761,31595,"{'type': 'Point', 'coordinates': [-75.171761, 40.100418]}",20.475077,1543.0955400070047 | |
19040,40.176879,-75.105595,20536,"{'type': 'Point', 'coordinates': [-75.105595, 40.176879]}",15.342765,1338.4810365015694 | |
19041,40.007406,-75.315837,6248,"{'type': 'Point', 'coordinates': [-75.315837, 40.007406]}",8.572306,728.8587224954406 | |
19043,39.900283,-75.30885,2664,"{'type': 'Point', 'coordinates': [-75.30885, 39.900283]}",1.025246,2598.4007740581283 | |
19044,40.186067,-75.152867,15853,"{'type': 'Point', 'coordinates': [-75.152867, 40.186067]}",21.009433,754.5658181256009 | |
19046,40.101406,-75.105525,17809,"{'type': 'Point', 'coordinates': [-75.105525, 40.101406]}",17.16026,1037.8047885055355 | |
19047,40.180089,-74.911873,35056,"{'type': 'Point', 'coordinates': [-74.911873, 40.180089]}",46.501785,753.8635344858268 | |
19050,39.937537,-75.263665,28073,"{'type': 'Point', 'coordinates': [-75.263665, 39.937537]}",9.542313,2941.9491898871897 | |
19053,40.153918,-74.974991,25966,"{'type': 'Point', 'coordinates': [-74.974991, 40.153918]}",27.330758,950.0651244286748 | |
19054,40.173024,-74.818822,17437,"{'type': 'Point', 'coordinates': [-74.818822, 40.173024]}",11.056774,1577.042272908897 | |
19055,40.150307,-74.839218,13924,"{'type': 'Point', 'coordinates': [-74.839218, 40.150307]}",7.425831,1875.0763382576308 | |
19056,40.149339000000005,-74.88581500000001,15486,"{'type': 'Point', 'coordinates': [-74.88581500000001, 40.149339000000005]}",9.56668,1618.7433885109567 | |
19057,40.140815,-74.85404,17191,"{'type': 'Point', 'coordinates': [-74.85404, 40.140815]}",11.501496,1494.6751274790688 | |
19060,39.849993,-75.49369399999999,11368,"{'type': 'Point', 'coordinates': [-75.49369399999999, 39.849993]}",20.319998,559.4488739615034 | |
19061,39.828829999999996,-75.435069,19997,"{'type': 'Point', 'coordinates': [-75.435069, 39.828829999999996]}",18.184149,1099.6940247245004 | |
19063,39.92046,-75.41618199999999,35704,"{'type': 'Point', 'coordinates': [-75.41618199999999, 39.92046]}",60.489211,590.2540206715541 | |
19064,39.933156,-75.340813,24459,"{'type': 'Point', 'coordinates': [-75.340813, 39.933156]}",20.689054,1182.2193513536192 | |
19066,40.002582000000004,-75.249064,5864,"{'type': 'Point', 'coordinates': [-75.249064, 40.002582000000004]}",3.534605,1659.0255488237017 | |
19067,40.205877,-74.81782700000001,51334,"{'type': 'Point', 'coordinates': [-74.81782700000001, 40.205877]}",80.203405,640.0476388751824 | |
19070,39.906248,-75.324733,7277,"{'type': 'Point', 'coordinates': [-75.324733, 39.906248]}",2.80742,2592.059613452921 | |
19072,40.023891,-75.25774100000001,9539,"{'type': 'Point', 'coordinates': [-75.25774100000001, 40.023891]}",8.459756,1127.5738922020919 | |
19073,39.983259000000004,-75.429241,18332,"{'type': 'Point', 'coordinates': [-75.429241, 39.983259000000004]}",54.624986,335.59734001579426 | |
19074,39.88599,-75.29575600000001,5890,"{'type': 'Point', 'coordinates': [-75.29575600000001, 39.88599]}",2.108626,2793.288141187674 | |
19075,40.11388,-75.18503100000001,7354,"{'type': 'Point', 'coordinates': [-75.18503100000001, 40.11388]}",5.879761,1250.7311096488445 | |
19076,39.886097,-75.30736999999999,6525,"{'type': 'Point', 'coordinates': [-75.30736999999999, 39.886097]}",1.958851,3331.0343665750997 | |
19078,39.874378,-75.322125,11067,"{'type': 'Point', 'coordinates': [-75.322125, 39.874378]}",5.304655,2086.280823163806 | |
19079,39.898781,-75.26706999999999,9168,"{'type': 'Point', 'coordinates': [-75.26706999999999, 39.898781]}",5.175866,1771.2977886212664 | |
19081,39.898047999999996,-75.34715899999999,10337,"{'type': 'Point', 'coordinates': [-75.34715899999999, 39.898047999999996]}",5.786078,1786.529666554789 | |
19082,39.960411,-75.270393,40997,"{'type': 'Point', 'coordinates': [-75.270393, 39.960411]}",6.707197,6112.389422884105 | |
19083,39.977025,-75.312066,35878,"{'type': 'Point', 'coordinates': [-75.312066, 39.977025]}",14.391685,2492.9672932669105 | |
19085,40.036972999999996,-75.349913,8932,"{'type': 'Point', 'coordinates': [-75.349913, 40.036972999999996]}",15.665494,570.1703374307889 | |
19086,39.890631,-75.37003100000001,11420,"{'type': 'Point', 'coordinates': [-75.37003100000001, 39.890631]}",9.979748,1144.3174717437755 | |
19087,40.061871999999994,-75.402461,32225,"{'type': 'Point', 'coordinates': [-75.402461, 40.061871999999994]}",41.41352,778.1275293672212 | |
19090,40.157452,-75.124753,18832,"{'type': 'Point', 'coordinates': [-75.124753, 40.157452]}",13.929743,1351.9273112217504 | |
19094,39.874881,-75.346641,4406,"{'type': 'Point', 'coordinates': [-75.346641, 39.874881]}",2.077619,2120.696816885098 | |
19095,40.085987,-75.151241,7063,"{'type': 'Point', 'coordinates': [-75.151241, 40.085987]}",5.468165,1291.6581705197264 | |
19096,39.997882000000004,-75.274178,13572,"{'type': 'Point', 'coordinates': [-75.274178, 39.997882000000004]}",9.07499,1495.5388380593258 | |
19102,39.952783000000004,-75.165586,4705,"{'type': 'Point', 'coordinates': [-75.165586, 39.952783000000004]}",0.489124,9619.237657526517 | |
19103,39.952896,-75.174298,21908,"{'type': 'Point', 'coordinates': [-75.174298, 39.952896]}",1.690202,12961.764333493866 | |
19104,39.958518,-75.198856,51808,"{'type': 'Point', 'coordinates': [-75.198856, 39.958518]}",8.136796,6367.125340244489 | |
19106,39.948629,-75.14278900000001,11740,"{'type': 'Point', 'coordinates': [-75.14278900000001, 39.948629]}",3.123222,3758.938685754647 | |
19107,39.951737,-75.158653,14875,"{'type': 'Point', 'coordinates': [-75.158653, 39.951737]}",1.42276,10455.031066378026 | |
19109,39.949652,-75.16365400000001,0,"{'type': 'Point', 'coordinates': [-75.16365400000001, 39.949652]}",0.0088,0.0 | |
19111,40.060612,-75.080176,63090,"{'type': 'Point', 'coordinates': [-75.080176, 40.060612]}",12.516548,5040.527148539677 | |
19112,39.889857,-75.16939,13,"{'type': 'Point', 'coordinates': [-75.16939, 39.889857]}",7.855685,1.6548525049056828 | |
19113,39.867425,-75.253309,120,"{'type': 'Point', 'coordinates': [-75.253309, 39.867425]}",9.053039,13.255217391640532 | |
19114,40.069399,-75.000162,30907,"{'type': 'Point', 'coordinates': [-75.000162, 40.069399]}",15.287615,2021.7018809016317 | |
19115,40.090697999999996,-75.042868,33207,"{'type': 'Point', 'coordinates': [-75.042868, 40.090697999999996]}",14.69127,2260.3219462987204 | |
19116,40.115569,-75.013276,33112,"{'type': 'Point', 'coordinates': [-75.013276, 40.115569]}",12.974775,2552.028840577197 | |
19118,40.073871999999994,-75.211217,9808,"{'type': 'Point', 'coordinates': [-75.211217, 40.073871999999994]}",8.368509,1172.012840041159 | |
19119,40.053348,-75.191112,27035,"{'type': 'Point', 'coordinates': [-75.191112, 40.053348]}",8.397328,3219.476481090175 | |
19120,40.034147,-75.119198,68104,"{'type': 'Point', 'coordinates': [-75.119198, 40.034147]}",8.888744,7661.82488774567 | |
19121,39.98198,-75.17912,36572,"{'type': 'Point', 'coordinates': [-75.17912, 39.98198]}",6.071024,6024.0249420855525 | |
19122,39.977746,-75.1459,21653,"{'type': 'Point', 'coordinates': [-75.1459, 39.977746]}",3.287164,6587.137118805146 | |
19123,39.964489,-75.145802,13416,"{'type': 'Point', 'coordinates': [-75.145802, 39.964489]}",3.588197,3738.925148201172 | |
19124,40.017119,-75.092814,66691,"{'type': 'Point', 'coordinates': [-75.092814, 40.017119]}",12.716364,5244.502280683378 | |
19125,39.976248999999996,-75.125105,22958,"{'type': 'Point', 'coordinates': [-75.125105, 39.976248999999996]}",4.060744,5653.643765772972 | |
19126,40.055389,-75.137562,15758,"{'type': 'Point', 'coordinates': [-75.137562, 40.055389]}",2.960292,5323.123529705854 | |
19127,40.028146,-75.227549,5913,"{'type': 'Point', 'coordinates': [-75.227549, 40.028146]}",1.707954,3462.0370337842824 | |
19128,40.048483000000004,-75.22793399999999,35239,"{'type': 'Point', 'coordinates': [-75.22793399999999, 40.048483000000004]}",18.562619,1898.3851362784528 | |
19129,40.013014,-75.185402,10975,"{'type': 'Point', 'coordinates': [-75.185402, 40.013014]}",5.949673,1844.6391927758048 | |
19130,39.967935,-75.176073,24870,"{'type': 'Point', 'coordinates': [-75.176073, 39.967935]}",3.574821,6956.991692730909 | |
19131,39.990184,-75.217795,43172,"{'type': 'Point', 'coordinates': [-75.217795, 39.990184]}",14.562721,2964.555868371028 | |
19132,39.996262,-75.170855,36268,"{'type': 'Point', 'coordinates': [-75.170855, 39.996262]}",5.605812,6469.713932611368 | |
19133,39.993092,-75.141671,26063,"{'type': 'Point', 'coordinates': [-75.141671, 39.993092]}",3.374481,7723.558081968754 | |
19134,39.989604,-75.109091,60675,"{'type': 'Point', 'coordinates': [-75.109091, 39.989604]}",9.869493,6147.732208736558 | |
19135,40.02211,-75.048534,33091,"{'type': 'Point', 'coordinates': [-75.048534, 40.02211]}",6.874243,4813.766403078856 | |
19136,40.039406,-75.018555,40647,"{'type': 'Point', 'coordinates': [-75.018555, 40.039406]}",14.346462,2833.242091325373 | |
19137,39.993,-75.072052,8638,"{'type': 'Point', 'coordinates': [-75.072052, 39.993]}",8.448495,1022.4306222587574 | |
19138,40.056002,-75.159049,32273,"{'type': 'Point', 'coordinates': [-75.159049, 40.056002]}",4.462092,7232.7060939129 | |
19139,39.961352000000005,-75.229334,41271,"{'type': 'Point', 'coordinates': [-75.229334, 39.961352000000005]}",4.587619,8996.169908617085 | |
19140,40.012177,-75.145495,54133,"{'type': 'Point', 'coordinates': [-75.145495, 40.012177]}",7.921208,6833.932400209665 | |
19141,40.037574,-75.14569499999999,31376,"{'type': 'Point', 'coordinates': [-75.14569499999999, 40.037574]}",4.696234,6681.098088383161 | |
19142,39.921752000000005,-75.23327900000001,29595,"{'type': 'Point', 'coordinates': [-75.23327900000001, 39.921752000000005]}",4.394755,6734.163792975945 | |
19143,39.942578999999995,-75.22590500000001,64849,"{'type': 'Point', 'coordinates': [-75.22590500000001, 39.942578999999995]}",8.406834,7713.843285117799 | |
19144,40.033858,-75.174075,43329,"{'type': 'Point', 'coordinates': [-75.174075, 40.033858]}",8.928697,4852.779750505589 | |
19145,39.909582,-75.19840500000001,47261,"{'type': 'Point', 'coordinates': [-75.19840500000001, 39.909582]}",13.515198,3496.8781071501876 | |
19146,39.939496000000005,-75.184146,35113,"{'type': 'Point', 'coordinates': [-75.184146, 39.939496000000005]}",4.595028,7641.520356350386 | |
19147,39.935327,-75.152489,36228,"{'type': 'Point', 'coordinates': [-75.152489, 39.935327]}",4.151918,8725.605852524062 | |
19148,39.911612,-75.151475,49732,"{'type': 'Point', 'coordinates': [-75.151475, 39.911612]}",12.516347,3973.363793765066 | |
19149,40.037721999999995,-75.065762,55006,"{'type': 'Point', 'coordinates': [-75.065762, 40.037721999999995]}",6.289462,8745.740096688714 | |
19150,40.072496,-75.171824,23378,"{'type': 'Point', 'coordinates': [-75.171824, 40.072496]}",3.904761,5987.050167731136 | |
19151,39.97957,-75.257036,29883,"{'type': 'Point', 'coordinates': [-75.257036, 39.97957]}",6.239776,4789.114224613191 | |
19152,40.060946,-75.04698499999999,33293,"{'type': 'Point', 'coordinates': [-75.04698499999999, 40.060946]}",7.339059,4536.412638186994 | |
19153,39.893446000000004,-75.229648,12259,"{'type': 'Point', 'coordinates': [-75.229648, 39.893446000000004]}",21.770032,563.113549856059 | |
19154,40.096483,-74.98321700000001,34196,"{'type': 'Point', 'coordinates': [-74.98321700000001, 40.096483]}",16.58541,2061.8121589999887 | |
19301,40.040279,-75.48034100000001,6402,"{'type': 'Point', 'coordinates': [-75.48034100000001, 40.040279]}",8.710996,734.9331810047898 | |
19310,39.93509,-75.972822,3066,"{'type': 'Point', 'coordinates': [-75.972822, 39.93509]}",33.967913,90.26165369653413 | |
19311,39.821095,-75.77134699999999,8584,"{'type': 'Point', 'coordinates': [-75.77134699999999, 39.821095]}",32.809881,261.62850148709776 | |
19312,40.031290999999996,-75.454948,11539,"{'type': 'Point', 'coordinates': [-75.454948, 40.031290999999996]}",24.771393,465.81958471209106 | |
19316,40.054082,-75.833825,186,"{'type': 'Point', 'coordinates': [-75.833825, 40.054082]}",2.319774,80.1802244528993 | |
19317,39.8608,-75.59938100000001,9530,"{'type': 'Point', 'coordinates': [-75.59938100000001, 39.8608]}",55.1545,172.78735189331786 | |
19319,39.924558000000005,-75.520943,1130,"{'type': 'Point', 'coordinates': [-75.520943, 39.924558000000005]}",1.639449,689.255963436496 | |
19320,39.962990999999995,-75.832026,52342,"{'type': 'Point', 'coordinates': [-75.832026, 39.962990999999995]}",220.896528,236.95256993808434 | |
19330,39.868292,-75.913785,5421,"{'type': 'Point', 'coordinates': [-75.913785, 39.868292]}",87.66178,61.83994894924562 | |
19333,40.041872,-75.423597,6895,"{'type': 'Point', 'coordinates': [-75.423597, 40.041872]}",8.980646,767.7621409417541 | |
19335,40.022618,-75.72121800000001,46984,"{'type': 'Point', 'coordinates': [-75.72121800000001, 40.022618]}",113.123134,415.33502775833637 | |
19341,40.039941,-75.640626,16709,"{'type': 'Point', 'coordinates': [-75.640626, 40.039941]}",33.627645,496.8828474310348 | |
19342,39.904121999999994,-75.499422,18099,"{'type': 'Point', 'coordinates': [-75.499422, 39.904121999999994]}",50.618899,357.55420124803584 | |
19343,40.100772,-75.75494499999999,8142,"{'type': 'Point', 'coordinates': [-75.75494499999999, 40.100772]}",71.024859,114.63591923498221 | |
19344,40.083577000000005,-75.881364,11919,"{'type': 'Point', 'coordinates': [-75.881364, 40.083577000000005]}",85.893174,138.765392462968 | |
19345,40.029472999999996,-75.565288,689,"{'type': 'Point', 'coordinates': [-75.565288, 40.029472999999996]}",0.530611,1298.5030464879167 | |
19348,39.87028,-75.712913,22232,"{'type': 'Point', 'coordinates': [-75.712913, 39.87028]}",96.579463,230.19386637094885 | |
19350,39.760276,-75.796353,10921,"{'type': 'Point', 'coordinates': [-75.796353, 39.760276]}",72.88584,149.83706025752053 | |
19352,39.775919,-75.889657,10622,"{'type': 'Point', 'coordinates': [-75.889657, 39.775919]}",50.056353,212.2008369247356 | |
19355,40.046452,-75.53299799999999,24760,"{'type': 'Point', 'coordinates': [-75.53299799999999, 40.046452]}",99.939069,247.75095713569235 | |
19358,39.963913,-75.805064,526,"{'type': 'Point', 'coordinates': [-75.805064, 39.963913]}",0.833293,631.2305515586954 | |
19362,39.750743,-76.07038299999999,5815,"{'type': 'Point', 'coordinates': [-76.07038299999999, 39.750743]}",78.958905,73.64590479059962 | |
19363,39.79056,-75.968479,17055,"{'type': 'Point', 'coordinates': [-75.968479, 39.79056]}",130.545653,130.6439518135468 | |
19365,39.966371,-75.925129,7006,"{'type': 'Point', 'coordinates': [-75.925129, 39.966371]}",46.409079,150.9618408932442 | |
19367,39.962992,-75.884023,171,"{'type': 'Point', 'coordinates': [-75.884023, 39.962992]}",0.437705,390.6740841434299 | |
19372,39.998397,-75.75845699999999,1360,"{'type': 'Point', 'coordinates': [-75.75845699999999, 39.998397]}",1.516174,896.9946721154696 | |
19373,39.901103000000006,-75.533499,4273,"{'type': 'Point', 'coordinates': [-75.533499, 39.901103000000006]}",10.768289,396.8132727492734 | |
19374,39.824746999999995,-75.759748,1252,"{'type': 'Point', 'coordinates': [-75.759748, 39.824746999999995]}",4.501739,278.11474632358744 | |
19375,39.900459000000005,-75.740472,104,"{'type': 'Point', 'coordinates': [-75.740472, 39.900459000000005]}",1.083228,96.00933506150136 | |
19380,39.987218,-75.603138,49534,"{'type': 'Point', 'coordinates': [-75.603138, 39.987218]}",82.637341,599.4142526923754 | |
19382,39.927665000000005,-75.613166,52388,"{'type': 'Point', 'coordinates': [-75.613166, 39.927665000000005]}",121.394233,431.55262573305276 | |
19383,39.951594,-75.60162700000001,3169,"{'type': 'Point', 'coordinates': [-75.60162700000001, 39.951594]}",0.1552,20418.81443298969 | |
19390,39.836096999999995,-75.842359,13425,"{'type': 'Point', 'coordinates': [-75.842359, 39.836096999999995]}",67.9914,197.45144238830204 | |
19401,40.130179999999996,-75.331629,41753,"{'type': 'Point', 'coordinates': [-75.331629, 40.130179999999996]}",15.880376,2629.2198623004897 | |
19403,40.148672999999995,-75.375506,44260,"{'type': 'Point', 'coordinates': [-75.375506, 40.148672999999995]}",62.3281,710.1130950566438 | |
19405,40.103552,-75.341022,5127,"{'type': 'Point', 'coordinates': [-75.341022, 40.103552]}",2.028513,2527.467164371143 | |
19406,40.093268,-75.383637,23441,"{'type': 'Point', 'coordinates': [-75.383637, 40.093268]}",36.613317,640.2315310574019 | |
19422,40.15681,-75.279393,18506,"{'type': 'Point', 'coordinates': [-75.279393, 40.15681]}",32.887269,562.7101478082598 | |
19425,40.101778,-75.651066,13922,"{'type': 'Point', 'coordinates': [-75.651066, 40.101778]}",70.414281,197.7155742029092 | |
19426,40.191299,-75.43705200000001,38831,"{'type': 'Point', 'coordinates': [-75.43705200000001, 40.191299]}",88.531916,438.6101843768975 | |
19428,40.080337,-75.300461,16580,"{'type': 'Point', 'coordinates': [-75.300461, 40.080337]}",20.496003,808.9382110258277 | |
19435,40.327484000000005,-75.569174,100,"{'type': 'Point', 'coordinates': [-75.569174, 40.327484000000005]}",2.010172,49.746986825008015 | |
19436,40.201509,-75.246997,640,"{'type': 'Point', 'coordinates': [-75.246997, 40.201509]}",0.909286,703.8489540144685 | |
19437,40.182414,-75.25858000000001,757,"{'type': 'Point', 'coordinates': [-75.25858000000001, 40.182414]}",2.822738,268.1793350994672 | |
19438,40.269439,-75.390006,23765,"{'type': 'Point', 'coordinates': [-75.390006, 40.269439]}",57.961563,410.0130978179453 | |
19440,40.285832,-75.29112099999999,18038,"{'type': 'Point', 'coordinates': [-75.29112099999999, 40.285832]}",29.205912,617.6146802058432 | |
19442,40.129517,-75.583145,45,"{'type': 'Point', 'coordinates': [-75.583145, 40.129517]}",0.051079,880.9882730672097 | |
19444,40.087744,-75.253157,10519,"{'type': 'Point', 'coordinates': [-75.253157, 40.087744]}",12.539308,838.8820180507569 | |
19446,40.232327000000005,-75.303915,55138,"{'type': 'Point', 'coordinates': [-75.303915, 40.232327000000005]}",58.418594,943.8433249523259 | |
19453,40.140568,-75.497917,1483,"{'type': 'Point', 'coordinates': [-75.497917, 40.140568]}",1.82832,811.1271549838103 | |
19454,40.226113,-75.243786,27870,"{'type': 'Point', 'coordinates': [-75.243786, 40.226113]}",33.804679,824.4420838902213 | |
19456,40.133903000000004,-75.461771,737,"{'type': 'Point', 'coordinates': [-75.461771, 40.133903000000004]}",1.09456,673.3299225259465 | |
19457,40.206378,-75.590117,125,"{'type': 'Point', 'coordinates': [-75.590117, 40.206378]}",0.517409,241.5883759269746 | |
19460,40.126827,-75.53044799999999,40154,"{'type': 'Point', 'coordinates': [-75.53044799999999, 40.126827]}",94.779929,423.6550968507267 | |
19462,40.115345,-75.28199000000001,14658,"{'type': 'Point', 'coordinates': [-75.28199000000001, 40.115345]}",21.942345,668.0234040618722 | |
19464,40.258928000000004,-75.615861,45788,"{'type': 'Point', 'coordinates': [-75.615861, 40.258928000000004]}",66.329174,690.3146419402118 | |
19465,40.190386,-75.68457,17038,"{'type': 'Point', 'coordinates': [-75.68457, 40.190386]}",94.395621,180.49566091630456 | |
19468,40.207638,-75.532067,25536,"{'type': 'Point', 'coordinates': [-75.532067, 40.207638]}",43.136935,591.9752991259114 | |
19472,40.336934,-75.57378299999999,74,"{'type': 'Point', 'coordinates': [-75.57378299999999, 40.336934]}",0.436572,169.50239593927233 | |
19473,40.256195,-75.48238,15726,"{'type': 'Point', 'coordinates': [-75.48238, 40.256195]}",64.082546,245.40223479884838 | |
19474,40.223528,-75.404036,733,"{'type': 'Point', 'coordinates': [-75.404036, 40.223528]}",0.503584,1455.5664993327825 | |
19475,40.172275,-75.600158,11283,"{'type': 'Point', 'coordinates': [-75.600158, 40.172275]}",43.706307,258.1549614795869 | |
19477,40.183315,-75.23145699999999,146,"{'type': 'Point', 'coordinates': [-75.23145699999999, 40.183315]}",0.132205,1104.3455239968232 | |
19492,40.28546,-75.491912,717,"{'type': 'Point', 'coordinates': [-75.491912, 40.28546]}",3.040765,235.79592635405893 | |
19501,40.244477,-76.064701,1047,"{'type': 'Point', 'coordinates': [-76.064701, 40.244477]}",2.622122,399.29492220423 | |
19503,40.406546,-75.571951,1142,"{'type': 'Point', 'coordinates': [-75.571951, 40.406546]}",3.882788,294.11855604787075 | |
19504,40.416216999999996,-75.588554,4998,"{'type': 'Point', 'coordinates': [-75.588554, 40.416216999999996]}",58.460761,85.4932422107882 | |
19505,40.379101,-75.62241,3226,"{'type': 'Point', 'coordinates': [-75.62241, 40.379101]}",22.996273,140.28360160796493 | |
19506,40.454218,-76.12869,7356,"{'type': 'Point', 'coordinates': [-76.12869, 40.454218]}",179.157539,41.05883593321741 | |
19507,40.50519,-76.27031600000001,3280,"{'type': 'Point', 'coordinates': [-76.27031600000001, 40.50519]}",97.913261,33.499037479713806 | |
19508,40.2666,-75.838436,15725,"{'type': 'Point', 'coordinates': [-75.838436, 40.2666]}",100.353534,156.6960262704849 | |
19510,40.445834999999995,-75.874871,7639,"{'type': 'Point', 'coordinates': [-75.874871, 40.445834999999995]}",14.518651,526.1508111187464 | |
19511,40.485917,-75.74323000000001,215,"{'type': 'Point', 'coordinates': [-75.74323000000001, 40.485917]}",0.816794,263.22426462486254 | |
19512,40.348327000000005,-75.680555,16954,"{'type': 'Point', 'coordinates': [-75.680555, 40.348327000000005]}",112.667324,150.47841200169094 | |
19518,40.2702,-75.75252900000001,14734,"{'type': 'Point', 'coordinates': [-75.75252900000001, 40.2702]}",94.864114,155.31689886441146 | |
19519,40.320724,-75.734815,101,"{'type': 'Point', 'coordinates': [-75.734815, 40.320724]}",0.327628,308.2764598874333 | |
19520,40.163509999999995,-75.793465,5465,"{'type': 'Point', 'coordinates': [-75.793465, 40.163509999999995]}",97.930434,55.80491964326432 | |
19522,40.447368,-75.82049599999999,14229,"{'type': 'Point', 'coordinates': [-75.82049599999999, 40.447368]}",119.695422,118.87672696454507 | |
19523,40.200862,-75.850775,250,"{'type': 'Point', 'coordinates': [-75.850775, 40.200862]}",3.725396,67.10695990439675 | |
19525,40.308839,-75.586107,14107,"{'type': 'Point', 'coordinates': [-75.586107, 40.308839]}",43.838615,321.79392528710133 | |
19526,40.547094,-75.996639,11039,"{'type': 'Point', 'coordinates': [-75.996639, 40.547094]}",150.890994,73.15877314718995 | |
19529,40.631309,-75.864614,3131,"{'type': 'Point', 'coordinates': [-75.864614, 40.631309]}",150.92991,20.7447284636955 | |
19530,40.539072999999995,-75.781444,16432,"{'type': 'Point', 'coordinates': [-75.781444, 40.539072999999995]}",144.924276,113.38335062650236 | |
19533,40.425173,-75.992673,7686,"{'type': 'Point', 'coordinates': [-75.992673, 40.425173]}",47.03251,163.4188777082065 | |
19534,40.573419,-75.87481899999999,2041,"{'type': 'Point', 'coordinates': [-75.87481899999999, 40.573419]}",52.392643,38.95585111062253 | |
19535,40.34,-75.804034,23,"{'type': 'Point', 'coordinates': [-75.804034, 40.34]}",0.125795,182.83715568981282 | |
19536,40.480578,-75.758948,490,"{'type': 'Point', 'coordinates': [-75.758948, 40.480578]}",1.001783,489.1278849810787 | |
19538,40.547528,-75.702562,64,"{'type': 'Point', 'coordinates': [-75.702562, 40.547528]}",1.249228,51.2316406612724 | |
19539,40.496319,-75.68354599999999,4597,"{'type': 'Point', 'coordinates': [-75.68354599999999, 40.496319]}",57.446482,80.02230667493268 | |
19540,40.236277,-75.96661,11723,"{'type': 'Point', 'coordinates': [-75.96661, 40.236277]}",88.478785,132.49503821735345 | |
19541,40.485960999999996,-76.030235,4403,"{'type': 'Point', 'coordinates': [-76.030235, 40.485960999999996]}",58.320695,75.49635682496582 | |
19542,40.261199,-75.767191,67,"{'type': 'Point', 'coordinates': [-75.767191, 40.261199]}",0.11997,558.4729515712262 | |
19543,40.175540000000005,-75.894751,5905,"{'type': 'Point', 'coordinates': [-75.894751, 40.175540000000005]}",58.210408,101.44234000215219 | |
19544,40.417446999999996,-76.296237,196,"{'type': 'Point', 'coordinates': [-76.296237, 40.417446999999996]}",0.414719,472.60916427749873 | |
19545,40.341524,-75.62406700000001,428,"{'type': 'Point', 'coordinates': [-75.62406700000001, 40.341524]}",1.152207,371.46103087379265 | |
19547,40.380047999999995,-75.768603,4222,"{'type': 'Point', 'coordinates': [-75.768603, 40.380047999999995]}",74.573324,56.61541920808036 | |
19549,40.584518,-76.020034,326,"{'type': 'Point', 'coordinates': [-76.020034, 40.584518]}",3.634997,89.6837053785739 | |
19550,40.454939,-76.249432,641,"{'type': 'Point', 'coordinates': [-76.249432, 40.454939]}",4.199204,152.6479780453629 | |
19551,40.361788,-76.13731999999999,5034,"{'type': 'Point', 'coordinates': [-76.13731999999999, 40.361788]}",65.226756,77.17691801198883 | |
19554,40.512877,-76.103735,374,"{'type': 'Point', 'coordinates': [-76.103735, 40.512877]}",1.159801,322.4691132358051 | |
19555,40.494381,-75.953921,3406,"{'type': 'Point', 'coordinates': [-75.953921, 40.494381]}",36.99852,92.0577363635086 | |
19559,40.495217,-76.182401,362,"{'type': 'Point', 'coordinates': [-76.182401, 40.495217]}",0.733665,493.413206299878 | |
19560,40.406182,-75.893801,7805,"{'type': 'Point', 'coordinates': [-75.893801, 40.406182]}",21.217133,367.86308498890963 | |
19562,40.505379,-75.702653,2622,"{'type': 'Point', 'coordinates': [-75.702653, 40.505379]}",2.638817,993.6270684931923 | |
19564,40.518731,-75.87831,90,"{'type': 'Point', 'coordinates': [-75.87831, 40.518731]}",0.534289,168.44816194980618 | |
19565,40.342504999999996,-76.08824,8531,"{'type': 'Point', 'coordinates': [-76.08824, 40.342504999999996]}",50.567787,168.70423853035135 | |
19567,40.388389000000004,-76.209785,5388,"{'type': 'Point', 'coordinates': [-76.209785, 40.388389000000004]}",58.622137,91.91067190198133 | |
19601,40.355405,-75.939977,32998,"{'type': 'Point', 'coordinates': [-75.939977, 40.355405]}",10.152363,3250.2777924705806 | |
19602,40.32874,-75.914976,17900,"{'type': 'Point', 'coordinates': [-75.914976, 40.32874]}",6.577156,2721.5410429675076 | |
19604,40.356825,-75.91024200000001,27658,"{'type': 'Point', 'coordinates': [-75.91024200000001, 40.356825]}",5.685699,4864.485439697037 | |
19605,40.397908,-75.943191,18985,"{'type': 'Point', 'coordinates': [-75.943191, 40.397908]}",44.543627,426.2113635245733 | |
19606,40.338694,-75.85730799999999,34416,"{'type': 'Point', 'coordinates': [-75.85730799999999, 40.338694]}",71.917594,478.54771114840133 | |
19607,40.291483,-75.94479100000001,22544,"{'type': 'Point', 'coordinates': [-75.94479100000001, 40.291483]}",29.15063,773.3623595785066 | |
19608,40.310798,-76.034772,22719,"{'type': 'Point', 'coordinates': [-76.034772, 40.310798]}",67.199231,338.08422599359807 | |
19609,40.328313,-75.99728499999999,9946,"{'type': 'Point', 'coordinates': [-75.99728499999999, 40.328313]}",6.52651,1523.9385215069003 | |
19610,40.341535,-75.974921,15258,"{'type': 'Point', 'coordinates': [-75.974921, 40.341535]}",18.317442,832.9765695450271 | |
19611,40.324674,-75.94285699999999,10589,"{'type': 'Point', 'coordinates': [-75.94285699999999, 40.324674]}",5.331158,1986.2476407564734 | |
19701,39.583171,-75.70089899999999,39194,"{'type': 'Point', 'coordinates': [-75.70089899999999, 39.583171]}",70.951691,552.4040293838804 | |
19702,39.6182,-75.729724,51899,"{'type': 'Point', 'coordinates': [-75.729724, 39.6182]}",73.984314,701.4865340239554 | |
19703,39.801513,-75.45385300000001,14471,"{'type': 'Point', 'coordinates': [-75.45385300000001, 39.801513]}",13.027474,1110.8062852399476 | |
19706,39.573245,-75.596191,1822,"{'type': 'Point', 'coordinates': [-75.596191, 39.573245]}",11.326977,160.8549218383687 | |
19707,39.785594,-75.68364,16483,"{'type': 'Point', 'coordinates': [-75.68364, 39.785594]}",34.236676,481.44276623116093 | |
19709,39.494582,-75.675004,35107,"{'type': 'Point', 'coordinates': [-75.675004, 39.494582]}",221.942339,158.1807245890114 | |
19710,39.795167,-75.588092,41,"{'type': 'Point', 'coordinates': [-75.588092, 39.795167]}",0.289077,141.830723302096 | |
19711,39.713598,-75.741073,51322,"{'type': 'Point', 'coordinates': [-75.741073, 39.713598]}",70.927115,723.5878690399293 | |
19713,39.670784000000005,-75.712296,30408,"{'type': 'Point', 'coordinates': [-75.712296, 39.670784000000005]}",35.455331,857.6425361816534 | |
19716,39.68956,-75.758391,1568,"{'type': 'Point', 'coordinates': [-75.758391, 39.68956]}",0.136115,11519.670866546669 | |
19717,39.678464,-75.752273,3770,"{'type': 'Point', 'coordinates': [-75.752273, 39.678464]}",0.481208,7834.449967581586 | |
19720,39.646921999999996,-75.60485200000001,59250,"{'type': 'Point', 'coordinates': [-75.60485200000001, 39.646921999999996]}",106.176021,558.0356039147483 | |
19730,39.463828,-75.64693299999999,451,"{'type': 'Point', 'coordinates': [-75.64693299999999, 39.463828]}",3.707147,121.65689679961437 | |
19731,39.523585,-75.587574,252,"{'type': 'Point', 'coordinates': [-75.587574, 39.523585]}",2.72414,92.50625885600594 | |
19732,39.783896999999996,-75.570042,25,"{'type': 'Point', 'coordinates': [-75.570042, 39.783896999999996]}",1.637591,15.266327184260295 | |
19733,39.555826,-75.651088,110,"{'type': 'Point', 'coordinates': [-75.651088, 39.555826]}",0.106228,1035.508528824792 | |
19734,39.381644,-75.653322,11651,"{'type': 'Point', 'coordinates': [-75.653322, 39.381644]}",212.676498,54.78273391543244 | |
19735,39.803171999999996,-75.59971800000001,12,"{'type': 'Point', 'coordinates': [-75.59971800000001, 39.803171999999996]}",0.501399,23.93303536704301 | |
19736,39.802479,-75.675916,32,"{'type': 'Point', 'coordinates': [-75.675916, 39.802479]}",0.357959,89.39571291684243 | |
19801,39.727715,-75.541154,16286,"{'type': 'Point', 'coordinates': [-75.541154, 39.727715]}",13.40953,1214.509382506322 | |
19802,39.756608,-75.52907900000001,24621,"{'type': 'Point', 'coordinates': [-75.52907900000001, 39.756608]}",8.314076,2961.3633553506124 | |
19803,39.800665,-75.542415,21364,"{'type': 'Point', 'coordinates': [-75.542415, 39.800665]}",32.659363,654.1462550877064 | |
19804,39.716862,-75.617677,17944,"{'type': 'Point', 'coordinates': [-75.617677, 39.716862]}",19.715558,910.1441612760846 | |
19805,39.743798999999996,-75.59384200000001,40937,"{'type': 'Point', 'coordinates': [-75.59384200000001, 39.743798999999996]}",13.781835,2970.3591720551003 | |
19806,39.763304999999995,-75.564142,9560,"{'type': 'Point', 'coordinates': [-75.564142, 39.763304999999995]}",5.052818,1892.0135259176166 | |
19807,39.7965,-75.61284,7405,"{'type': 'Point', 'coordinates': [-75.61284, 39.7965]}",51.686817,143.26670570563476 | |
19808,39.737615000000005,-75.667057,38442,"{'type': 'Point', 'coordinates': [-75.667057, 39.737615000000005]}",36.222527,1061.2732789183924 | |
19809,39.757785999999996,-75.50095300000001,14049,"{'type': 'Point', 'coordinates': [-75.50095300000001, 39.757785999999996]}",22.225987,632.0979131320468 | |
19810,39.81878,-75.5064,25011,"{'type': 'Point', 'coordinates': [-75.5064, 39.81878]}",20.450519,1223.0007463380268 | |
19901,39.181542,-75.47352,35055,"{'type': 'Point', 'coordinates': [-75.47352, 39.181542]}",231.807656,151.22451348198783 | |
19902,39.125248,-75.481818,283,"{'type': 'Point', 'coordinates': [-75.481818, 39.125248]}",0.945346,299.36129205603027 | |
19904,39.171279,-75.58761899999999,34132,"{'type': 'Point', 'coordinates': [-75.58761899999999, 39.171279]}",114.76101,297.4180865086496 | |
19930,38.547335,-75.064161,2768,"{'type': 'Point', 'coordinates': [-75.064161, 38.547335]}",20.897149,132.458260215305 | |
19931,38.573968,-75.62304300000001,211,"{'type': 'Point', 'coordinates': [-75.62304300000001, 38.573968]}",2.36051,89.38746287878466 | |
19933,38.72866,-75.61966899999999,8535,"{'type': 'Point', 'coordinates': [-75.61966899999999, 38.72866]}",164.438606,51.903869824826906 | |
19934,39.084727,-75.62735500000001,12805,"{'type': 'Point', 'coordinates': [-75.62735500000001, 39.084727]}",113.571409,112.74844710256258 | |
19936,39.219112,-75.584411,302,"{'type': 'Point', 'coordinates': [-75.584411, 39.219112]}",0.593802,508.58703742998506 | |
19938,39.260878000000005,-75.707605,8357,"{'type': 'Point', 'coordinates': [-75.707605, 39.260878000000005]}",126.238757,66.19995474131609 | |
19939,38.566739,-75.210612,5979,"{'type': 'Point', 'coordinates': [-75.210612, 38.566739]}",82.512041,72.46215131195216 | |
19940,38.477562,-75.564931,5574,"{'type': 'Point', 'coordinates': [-75.564931, 38.477562]}",107.180504,52.00572671313432 | |
19941,38.793658,-75.426062,2522,"{'type': 'Point', 'coordinates': [-75.426062, 38.793658]}",87.215484,28.91688361208888 | |
19943,39.004436,-75.60698599999999,11425,"{'type': 'Point', 'coordinates': [-75.60698599999999, 39.004436]}",171.703542,66.53910494170236 | |
19944,38.478535,-75.058146,620,"{'type': 'Point', 'coordinates': [-75.058146, 38.478535]}",6.027019,102.8700921633066 | |
19945,38.505064000000004,-75.228872,6862,"{'type': 'Point', 'coordinates': [-75.228872, 38.505064000000004]}",166.652664,41.175459397396736 | |
19946,39.034802,-75.449585,4420,"{'type': 'Point', 'coordinates': [-75.449585, 39.034802]}",57.739426,76.55081295751017 | |
19947,38.66649,-75.398202,18799,"{'type': 'Point', 'coordinates': [-75.398202, 38.66649]}",310.504175,60.54346934304507 | |
19950,38.818451,-75.596743,6951,"{'type': 'Point', 'coordinates': [-75.596743, 38.818451]}",193.455591,35.930726861236074 | |
19951,38.685257,-75.255154,1733,"{'type': 'Point', 'coordinates': [-75.255154, 38.685257]}",26.568687,65.22716007757553 | |
19952,38.921424,-75.628425,10220,"{'type': 'Point', 'coordinates': [-75.628425, 38.921424]}",228.313916,44.76293070107912 | |
19953,39.152487,-75.694133,4386,"{'type': 'Point', 'coordinates': [-75.694133, 39.152487]}",75.913562,57.77623766356794 | |
19954,38.897009999999995,-75.520457,1464,"{'type': 'Point', 'coordinates': [-75.520457, 38.897009999999995]}",22.47733,65.13229106837868 | |
19955,39.225931,-75.668638,72,"{'type': 'Point', 'coordinates': [-75.668638, 39.225931]}",0.149767,480.74675996714893 | |
19956,38.547715000000004,-75.538158,15500,"{'type': 'Point', 'coordinates': [-75.538158, 38.547715000000004]}",264.402601,58.62272134002192 | |
19958,38.728722,-75.16846899999999,19650,"{'type': 'Point', 'coordinates': [-75.16846899999999, 38.728722]}",152.166975,129.13445903751455 | |
19960,38.850913,-75.408716,6295,"{'type': 'Point', 'coordinates': [-75.408716, 38.850913]}",77.2408,81.49837909498608 | |
19962,39.068784,-75.488394,10206,"{'type': 'Point', 'coordinates': [-75.488394, 39.068784]}",37.617601,271.3091672166973 | |
19963,38.943253000000006,-75.362567,19206,"{'type': 'Point', 'coordinates': [-75.362567, 38.943253000000006]}",297.413704,64.57671499898338 | |
19964,39.089325,-75.7205,1340,"{'type': 'Point', 'coordinates': [-75.7205, 39.089325]}",24.726054,54.19384750999897 | |
19966,38.579421999999994,-75.27719599999999,24601,"{'type': 'Point', 'coordinates': [-75.27719599999999, 38.579421999999994]}",245.695988,100.1278050987141 | |
19967,38.538684,-75.122443,354,"{'type': 'Point', 'coordinates': [-75.122443, 38.538684]}",3.753559,94.31049305472486 | |
19968,38.773914000000005,-75.286878,9549,"{'type': 'Point', 'coordinates': [-75.286878, 38.773914000000005]}",164.598397,58.01393071890001 | |
19970,38.556502,-75.100254,6170,"{'type': 'Point', 'coordinates': [-75.100254, 38.556502]}",33.775064,182.67915051175032 | |
19971,38.686005,-75.086681,12385,"{'type': 'Point', 'coordinates': [-75.086681, 38.686005]}",71.955579,172.12007980645947 | |
19973,38.638912,-75.615903,23838,"{'type': 'Point', 'coordinates': [-75.615903, 38.638912]}",208.661569,114.24240752258505 | |
19975,38.468315000000004,-75.166975,8253,"{'type': 'Point', 'coordinates': [-75.166975, 38.468315000000004]}",75.063208,109.9473393143549 | |
19977,39.298946,-75.546122,22984,"{'type': 'Point', 'coordinates': [-75.546122, 39.298946]}",229.790261,100.021645390794 | |
19979,39.048848,-75.572548,632,"{'type': 'Point', 'coordinates': [-75.572548, 39.048848]}",5.253724,120.29562268592716 | |
20001,38.910353,-77.017739,38551,"{'type': 'Point', 'coordinates': [-77.017739, 38.910353]}",5.815386,6629.13863327387 | |
20002,38.905026,-76.98360699999999,52370,"{'type': 'Point', 'coordinates': [-76.98360699999999, 38.905026]}",14.201902,3687.5342471733716 | |
20003,38.881840000000004,-76.99094000000001,26454,"{'type': 'Point', 'coordinates': [-76.99094000000001, 38.881840000000004]}",6.51933,4057.7789435417444 | |
20004,38.894884999999995,-77.028638,1622,"{'type': 'Point', 'coordinates': [-77.028638, 38.894884999999995]}",0.901029,1800.1640346759095 | |
20005,38.904674,-77.031578,12775,"{'type': 'Point', 'coordinates': [-77.031578, 38.904674]}",1.103657,11575.154237231312 | |
20006,38.898609,-77.041461,3227,"{'type': 'Point', 'coordinates': [-77.041461, 38.898609]}",0.879526,3669.021723064469 | |
20007,38.914363,-77.079339,26866,"{'type': 'Point', 'coordinates': [-77.079339, 38.914363]}",9.077865,2959.5064478266645 | |
20008,38.936238,-77.05998100000001,27525,"{'type': 'Point', 'coordinates': [-77.05998100000001, 38.936238]}",7.904541,3482.175625377868 | |
20009,38.919144,-77.03738100000001,47992,"{'type': 'Point', 'coordinates': [-77.03738100000001, 38.919144]}",3.430155,13991.204479097883 | |
20010,38.933366,-77.030312,30138,"{'type': 'Point', 'coordinates': [-77.030312, 38.933366]}",2.820623,10684.87351907717 | |
20011,38.952514,-77.022991,58536,"{'type': 'Point', 'coordinates': [-77.022991, 38.952514]}",12.729083,4598.603057266577 | |
20012,38.976873,-77.032609,13414,"{'type': 'Point', 'coordinates': [-77.032609, 38.976873]}",5.930729,2261.7792854807562 | |
20015,38.966889,-77.058323,15332,"{'type': 'Point', 'coordinates': [-77.058323, 38.966889]}",8.943324,1714.3513977577015 | |
20016,38.93693,-77.090014,32519,"{'type': 'Point', 'coordinates': [-77.090014, 38.93693]}",11.899899,2732.712269238588 | |
20017,38.938188000000004,-76.992126,17735,"{'type': 'Point', 'coordinates': [-76.992126, 38.938188000000004]}",5.72516,3097.7300197723735 | |
20018,38.926576000000004,-76.974446,16894,"{'type': 'Point', 'coordinates': [-76.974446, 38.926576000000004]}",7.845943,2153.2147251133483 | |
20019,38.891412,-76.943575,54358,"{'type': 'Point', 'coordinates': [-76.943575, 38.891412]}",16.767717,3241.824751693984 | |
20020,38.860413,-76.978933,49864,"{'type': 'Point', 'coordinates': [-76.978933, 38.860413]}",12.287319,4058.1676116653275 | |
20024,38.876121999999995,-77.025374,11510,"{'type': 'Point', 'coordinates': [-77.025374, 38.876121999999995]}",8.77462,1311.737716277172 | |
20032,38.833719,-77.006591,35653,"{'type': 'Point', 'coordinates': [-77.006591, 38.833719]}",13.806539,2582.327113261332 | |
20036,38.907016999999996,-77.041569,5435,"{'type': 'Point', 'coordinates': [-77.041569, 38.907016999999996]}",0.86218,6303.788072096314 | |
20037,38.898889000000004,-77.055456,14642,"{'type': 'Point', 'coordinates': [-77.055456, 38.898889000000004]}",2.518175,5814.528378686946 | |
20045,38.896731,-77.030798,0,"{'type': 'Point', 'coordinates': [-77.030798, 38.896731]}",0.027766,0.0 | |
20052,38.900126,-77.046981,470,"{'type': 'Point', 'coordinates': [-77.046981, 38.900126]}",0.007062,66553.38431039365 | |
20053,38.884122,-77.011224,0,"{'type': 'Point', 'coordinates': [-77.011224, 38.884122]}",0.085365,0.0 | |
20057,38.90912,-77.075735,3888,"{'type': 'Point', 'coordinates': [-77.075735, 38.90912]}",0.440236,8831.626672966318 | |
20064,38.936353999999994,-76.999167,1890,"{'type': 'Point', 'coordinates': [-76.999167, 38.936353999999994]}",0.505997,3735.200011067259 | |
20105,38.953265,-77.602793,11315,"{'type': 'Point', 'coordinates': [-77.602793, 38.953265]}",97.119064,116.50647703935863 | |
20106,38.699346000000006,-78.002209,5142,"{'type': 'Point', 'coordinates': [-78.002209, 38.699346000000006]}",156.819156,32.78936152417502 | |
20109,38.793641,-77.531024,37265,"{'type': 'Point', 'coordinates': [-77.531024, 38.793641]}",53.229984,700.0753560249051 | |
20110,38.747172,-77.484536,43876,"{'type': 'Point', 'coordinates': [-77.484536, 38.747172]}",32.933763,1332.2498252021794 | |
20111,38.748968,-77.42787299999999,30590,"{'type': 'Point', 'coordinates': [-77.42787299999999, 38.748968]}",43.170279,708.5893514841541 | |
20112,38.664571,-77.429326,25833,"{'type': 'Point', 'coordinates': [-77.429326, 38.664571]}",102.598143,251.788182949861 | |
20115,38.809946999999994,-77.91184100000001,5838,"{'type': 'Point', 'coordinates': [-77.91184100000001, 38.809946999999994]}",247.65177,23.57342327898565 | |
20117,38.998822,-77.733937,2693,"{'type': 'Point', 'coordinates': [-77.733937, 38.998822]}",117.30478,22.95729125445698 | |
20118,38.968339,-77.73700500000001,7,"{'type': 'Point', 'coordinates': [-77.73700500000001, 38.968339]}",0.026677,262.39832065074785 | |
20119,38.610391,-77.621615,3946,"{'type': 'Point', 'coordinates': [-77.621615, 38.610391]}",167.127118,23.610770335906828 | |
20120,38.856401,-77.476371,40695,"{'type': 'Point', 'coordinates': [-77.476371, 38.856401]}",45.274921,898.8419880401337 | |
20121,38.811067,-77.463306,27988,"{'type': 'Point', 'coordinates': [-77.463306, 38.811067]}",23.65738,1183.055773716278 | |
20124,38.781332,-77.39133299999999,14857,"{'type': 'Point', 'coordinates': [-77.39133299999999, 38.781332]}",56.828011,261.4379729038907 | |
20129,39.172098999999996,-77.601123,618,"{'type': 'Point', 'coordinates': [-77.601123, 39.172098999999996]}",8.348145,74.02842188294525 | |
20130,39.039434,-77.943893,281,"{'type': 'Point', 'coordinates': [-77.943893, 39.039434]}",21.512294,13.062298237463656 | |
20132,39.16721,-77.72057,15900,"{'type': 'Point', 'coordinates': [-77.72057, 39.16721]}",216.678284,73.38068082540289 | |
20135,39.086486,-77.88722800000001,2834,"{'type': 'Point', 'coordinates': [-77.88722800000001, 39.086486]}",117.039511,24.214045118489942 | |
20136,38.739468,-77.555635,28498,"{'type': 'Point', 'coordinates': [-77.555635, 38.739468]}",38.61356,738.0308886308334 | |
20137,38.806579,-77.722437,1510,"{'type': 'Point', 'coordinates': [-77.722437, 38.806579]}",44.762011,33.733962488861366 | |
20139,38.655682,-77.694159,217,"{'type': 'Point', 'coordinates': [-77.694159, 38.655682]}",8.493453,25.549090576000125 | |
20141,39.112390000000005,-77.790704,6131,"{'type': 'Point', 'coordinates': [-77.790704, 39.112390000000005]}",71.278768,86.01439351477006 | |
20143,38.858948999999996,-77.564996,1216,"{'type': 'Point', 'coordinates': [-77.564996, 38.858948999999996]}",20.122613,60.42952771590846 | |
20144,38.923018,-77.946976,1012,"{'type': 'Point', 'coordinates': [-77.946976, 38.923018]}",104.586863,9.676167455180295 | |
20147,39.041947,-77.47813000000001,54086,"{'type': 'Point', 'coordinates': [-77.47813000000001, 39.041947]}",52.322397,1033.7064641744146 | |
20148,38.995993,-77.520774,28310,"{'type': 'Point', 'coordinates': [-77.520774, 38.995993]}",43.74404,647.1738778585609 | |
20151,38.89568,-77.446483,21374,"{'type': 'Point', 'coordinates': [-77.446483, 38.89568]}",40.497318,527.788037716473 | |
20152,38.919472999999996,-77.50236,24946,"{'type': 'Point', 'coordinates': [-77.50236, 38.919472999999996]}",65.373433,381.59232053791635 | |
20155,38.810114,-77.617789,29411,"{'type': 'Point', 'coordinates': [-77.617789, 38.810114]}",77.163821,381.15012474563696 | |
20158,39.139590999999996,-77.65815699999999,4288,"{'type': 'Point', 'coordinates': [-77.65815699999999, 39.139590999999996]}",37.904165,113.1274096131652 | |
20164,39.013298999999996,-77.395067,37747,"{'type': 'Point', 'coordinates': [-77.395067, 39.013298999999996]}",19.323592,1953.4152863504878 | |
20165,39.057538,-77.392009,32383,"{'type': 'Point', 'coordinates': [-77.392009, 39.057538]}",26.027908,1244.1645329313444 | |
20166,38.986137,-77.455694,9521,"{'type': 'Point', 'coordinates': [-77.455694, 38.986137]}",45.774522,207.99780279518814 | |
20169,38.877064000000004,-77.64760600000001,19801,"{'type': 'Point', 'coordinates': [-77.64760600000001, 38.877064000000004]}",83.886904,236.0439956158115 | |
20170,38.979842,-77.37975,41236,"{'type': 'Point', 'coordinates': [-77.37975, 38.979842]}",22.811136,1807.7135658653738 | |
20171,38.923848,-77.396501,45887,"{'type': 'Point', 'coordinates': [-77.396501, 38.923848]}",31.51446,1456.0617570473999 | |
20175,39.064409999999995,-77.603965,27169,"{'type': 'Point', 'coordinates': [-77.603965, 39.064409999999995]}",163.671244,165.99739414212553 | |
20176,39.184853000000004,-77.543184,46506,"{'type': 'Point', 'coordinates': [-77.543184, 39.184853000000004]}",148.686051,312.77984509791037 | |
20180,39.268591,-77.637636,6549,"{'type': 'Point', 'coordinates': [-77.637636, 39.268591]}",111.308204,58.83663346144728 | |
20181,38.689126,-77.56961,7877,"{'type': 'Point', 'coordinates': [-77.56961, 38.689126]}",154.923437,50.84446971054483 | |
20184,39.000671000000004,-77.88375400000001,839,"{'type': 'Point', 'coordinates': [-77.88375400000001, 39.000671000000004]}",103.41629,8.112841796974152 | |
20186,38.698141,-77.851425,14557,"{'type': 'Point', 'coordinates': [-77.851425, 38.698141]}",167.843787,86.72945397734621 | |
20187,38.721847,-77.748187,15252,"{'type': 'Point', 'coordinates': [-77.748187, 38.721847]}",127.267186,119.84236062232098 | |
20190,38.959322,-77.339298,17529,"{'type': 'Point', 'coordinates': [-77.339298, 38.959322]}",11.931046,1469.1922233809173 | |
20191,38.934645,-77.351702,29128,"{'type': 'Point', 'coordinates': [-77.351702, 38.934645]}",21.762114,1338.4729075493308 | |
20194,38.981041,-77.340785,13165,"{'type': 'Point', 'coordinates': [-77.340785, 38.981041]}",8.30694,1584.8194401307821 | |
20197,39.195209999999996,-77.62801,1840,"{'type': 'Point', 'coordinates': [-77.62801, 39.195209999999996]}",35.117083,52.396151468503234 | |
20198,38.884202,-77.744617,2492,"{'type': 'Point', 'coordinates': [-77.744617, 38.884202]}",189.485876,13.15137598962785 | |
20202,38.887071,-77.02101,0,"{'type': 'Point', 'coordinates': [-77.02101, 38.887071]}",0.018721,0.0 | |
20204,38.885559,-77.014429,0,"{'type': 'Point', 'coordinates': [-77.014429, 38.885559]}",0.014638,0.0 | |
20228,38.886412,-77.030282,0,"{'type': 'Point', 'coordinates': [-77.030282, 38.886412]}",0.083613,0.0 | |
20230,38.893794,-77.032798,0,"{'type': 'Point', 'coordinates': [-77.032798, 38.893794]}",0.055495,0.0 | |
20240,38.894456,-77.04260500000001,0,"{'type': 'Point', 'coordinates': [-77.04260500000001, 38.894456]}",0.031673,0.0 | |
20245,38.89334,-77.04446,0,"{'type': 'Point', 'coordinates': [-77.04446, 38.89334]}",0.064474,0.0 | |
20260,38.883669,-77.025036,0,"{'type': 'Point', 'coordinates': [-77.025036, 38.883669]}",0.046126,0.0 | |
20307,38.975685,-77.03013299999999,353,"{'type': 'Point', 'coordinates': [-77.03013299999999, 38.975685]}",0.342547,1030.5155204979171 | |
20317,38.934841,-77.014387,903,"{'type': 'Point', 'coordinates': [-77.014387, 38.934841]}",1.190147,758.7298039653924 | |
20319,38.864838,-77.017003,84,"{'type': 'Point', 'coordinates': [-77.017003, 38.864838]}",0.636973,131.87372149211976 | |
20373,38.858625,-77.007865,131,"{'type': 'Point', 'coordinates': [-77.007865, 38.858625]}",0.937597,139.71887708685074 | |
20390,38.879019,-76.993695,584,"{'type': 'Point', 'coordinates': [-76.993695, 38.879019]}",0.010935,53406.49291266575 | |
20405,38.896377,-77.042588,0,"{'type': 'Point', 'coordinates': [-77.042588, 38.896377]}",0.033011,0.0 | |
20418,38.8928,-77.047764,0,"{'type': 'Point', 'coordinates': [-77.047764, 38.8928]}",0.029418,0.0 | |
20427,38.902057,-77.047558,0,"{'type': 'Point', 'coordinates': [-77.047558, 38.902057]}",0.016368,0.0 | |
20506,38.897071000000004,-77.038728,0,"{'type': 'Point', 'coordinates': [-77.038728, 38.897071000000004]}",0.047757,0.0 | |
20510,38.89278,-77.00689,0,"{'type': 'Point', 'coordinates': [-77.00689, 38.89278]}",0.03081,0.0 | |
20520,38.894759,-77.048407,0,"{'type': 'Point', 'coordinates': [-77.048407, 38.894759]}",0.08373,0.0 | |
20535,38.894467,-77.02484399999999,8,"{'type': 'Point', 'coordinates': [-77.02484399999999, 38.894467]}",0.012919,619.2429754624972 | |
20540,38.887929,-77.004713,0,"{'type': 'Point', 'coordinates': [-77.004713, 38.887929]}",0.086892,0.0 | |
20551,38.892802,-77.0458,0,"{'type': 'Point', 'coordinates': [-77.0458, 38.892802]}",0.023513,0.0 | |
20553,38.886946,-77.022968,0,"{'type': 'Point', 'coordinates': [-77.022968, 38.886946]}",0.025135,0.0 | |
20560,38.888233,-77.02591899999999,0,"{'type': 'Point', 'coordinates': [-77.02591899999999, 38.888233]}",0.053607,0.0 | |
20565,38.89063,-77.019211,0,"{'type': 'Point', 'coordinates': [-77.019211, 38.89063]}",0.173126,0.0 | |
20566,38.89557,-77.055127,0,"{'type': 'Point', 'coordinates': [-77.055127, 38.89557]}",0.105615,0.0 | |
20593,38.866713,-77.010187,0,"{'type': 'Point', 'coordinates': [-77.010187, 38.866713]}",0.077132,0.0 | |
20601,38.613372,-76.851612,24156,"{'type': 'Point', 'coordinates': [-76.851612, 38.613372]}",116.028291,208.19060413464163 | |
20602,38.583248,-76.894703,24955,"{'type': 'Point', 'coordinates': [-76.894703, 38.583248]}",36.183533,689.6783683340154 | |
20603,38.630390000000006,-76.97658299999999,28967,"{'type': 'Point', 'coordinates': [-76.97658299999999, 38.630390000000006]}",44.45908,651.5429469075833 | |
20606,38.263046,-76.737309,431,"{'type': 'Point', 'coordinates': [-76.737309, 38.263046]}",8.774964,49.117010622493716 | |
20607,38.672666,-77.018549,9802,"{'type': 'Point', 'coordinates': [-77.018549, 38.672666]}",54.823909,178.7906075796237 | |
20608,38.582405,-76.700998,919,"{'type': 'Point', 'coordinates': [-76.700998, 38.582405]}",50.911996,18.050755660807326 | |
20609,38.270012,-76.767747,1120,"{'type': 'Point', 'coordinates': [-76.767747, 38.270012]}",32.32841,34.644450500349386 | |
20611,38.457813,-76.97511800000001,1078,"{'type': 'Point', 'coordinates': [-76.97511800000001, 38.457813]}",18.277262,58.98038776267474 | |
20612,38.50506,-76.67721,261,"{'type': 'Point', 'coordinates': [-76.67721, 38.50506]}",1.942313,134.3758704184135 | |
20613,38.671168,-76.805304,11860,"{'type': 'Point', 'coordinates': [-76.805304, 38.671168]}",199.534617,59.438307890204335 | |
20615,38.411433,-76.548803,405,"{'type': 'Point', 'coordinates': [-76.548803, 38.411433]}",2.104141,192.47759537027227 | |
20616,38.661947999999995,-77.098458,5857,"{'type': 'Point', 'coordinates': [-77.098458, 38.661947999999995]}",29.13397,201.0367965642856 | |
20617,38.543859999999995,-76.85251099999999,781,"{'type': 'Point', 'coordinates': [-76.85251099999999, 38.543859999999995]}",16.970662,46.020597192967486 | |
20618,38.286438000000004,-76.78307099999999,607,"{'type': 'Point', 'coordinates': [-76.78307099999999, 38.286438000000004]}",16.875389,35.96954120583532 | |
20619,38.292384999999996,-76.527783,10503,"{'type': 'Point', 'coordinates': [-76.527783, 38.292384999999996]}",44.243156,237.3926489330915 | |
20620,38.233918,-76.528932,1443,"{'type': 'Point', 'coordinates': [-76.528932, 38.233918]}",10.266423,140.55528395820045 | |
20621,38.32615,-76.80105400000001,1373,"{'type': 'Point', 'coordinates': [-76.80105400000001, 38.32615]}",39.997761,34.326921449428134 | |
20622,38.403206,-76.938316,4900,"{'type': 'Point', 'coordinates': [-76.938316, 38.403206]}",98.455722,49.76856500021401 | |
20623,38.741615,-76.842456,2744,"{'type': 'Point', 'coordinates': [-76.842456, 38.741615]}",5.006905,548.0431524065266 | |
20624,38.33808,-76.733499,1282,"{'type': 'Point', 'coordinates': [-76.733499, 38.33808]}",33.608882,38.14467854063101 | |
20625,38.262475,-76.847422,1062,"{'type': 'Point', 'coordinates': [-76.847422, 38.262475]}",1.534959,691.8751575774988 | |
20626,38.231241,-76.771128,373,"{'type': 'Point', 'coordinates': [-76.771128, 38.231241]}",7.136708,52.26499388793825 | |
20628,38.153,-76.33985899999999,594,"{'type': 'Point', 'coordinates': [-76.33985899999999, 38.153]}",31.809264,18.67380521598991 | |
20629,38.336555,-76.45039,535,"{'type': 'Point', 'coordinates': [-76.45039, 38.336555]}",1.565498,341.74428839896314 | |
20630,38.164277,-76.475774,348,"{'type': 'Point', 'coordinates': [-76.475774, 38.164277]}",21.313436,16.32772866843244 | |
20632,38.432798999999996,-76.957993,347,"{'type': 'Point', 'coordinates': [-76.957993, 38.432798999999996]}",19.460164,17.83129885236322 | |
20634,38.281504,-76.524754,5927,"{'type': 'Point', 'coordinates': [-76.524754, 38.281504]}",18.642561,317.92842195876415 | |
20636,38.352140999999996,-76.567187,9937,"{'type': 'Point', 'coordinates': [-76.567187, 38.352140999999996]}",116.599763,85.22315778634987 | |
20637,38.525117,-76.755955,5423,"{'type': 'Point', 'coordinates': [-76.755955, 38.525117]}",83.583404,64.88130107742441 | |
20639,38.601238,-76.605467,14227,"{'type': 'Point', 'coordinates': [-76.605467, 38.601238]}",113.388624,125.47114073806911 | |
20640,38.522709000000006,-77.254015,10438,"{'type': 'Point', 'coordinates': [-77.254015, 38.522709000000006]}",126.385009,82.58890894251549 | |
20645,38.294222999999995,-76.911085,857,"{'type': 'Point', 'coordinates': [-76.911085, 38.294222999999995]}",9.77801,87.64564568864216 | |
20646,38.524275,-77.00066,18890,"{'type': 'Point', 'coordinates': [-77.00066, 38.524275]}",215.561399,87.63164503307014 | |
20650,38.268654,-76.633157,13717,"{'type': 'Point', 'coordinates': [-76.633157, 38.268654]}",187.843753,73.02345582927104 | |
20653,38.236309999999996,-76.432886,24481,"{'type': 'Point', 'coordinates': [-76.432886, 38.236309999999996]}",93.525628,261.7571303557566 | |
20657,38.379757,-76.442883,20483,"{'type': 'Point', 'coordinates': [-76.442883, 38.379757]}",100.38676,204.0408516023428 | |
20658,38.560527,-77.16059399999999,854,"{'type': 'Point', 'coordinates': [-77.16059399999999, 38.560527]}",7.808185,109.37240856870066 | |
20659,38.418667,-76.732423,23498,"{'type': 'Point', 'coordinates': [-76.732423, 38.418667]}",272.129188,86.34869406217462 | |
20660,38.370219,-76.706627,97,"{'type': 'Point', 'coordinates': [-76.706627, 38.370219]}",2.357405,41.14693911313499 | |
20662,38.428507,-77.205325,2934,"{'type': 'Point', 'coordinates': [-77.205325, 38.428507]}",172.943253,16.965102420040637 | |
20664,38.354485,-76.925395,2987,"{'type': 'Point', 'coordinates': [-76.925395, 38.354485]}",120.618817,24.763963652536898 | |
20667,38.215237,-76.44775600000001,494,"{'type': 'Point', 'coordinates': [-76.44775600000001, 38.215237]}",6.177331,79.96981220530355 | |
20670,38.285278999999996,-76.415708,1014,"{'type': 'Point', 'coordinates': [-76.415708, 38.285278999999996]}",39.063815,25.957526165839155 | |
20674,38.134797,-76.503548,830,"{'type': 'Point', 'coordinates': [-76.503548, 38.134797]}",15.547336,53.385351676968966 | |
20675,38.580932000000004,-77.022463,1671,"{'type': 'Point', 'coordinates': [-77.022463, 38.580932000000004]}",15.647643,106.7892461503627 | |
20676,38.493221000000005,-76.54128,3871,"{'type': 'Point', 'coordinates': [-76.54128, 38.493221000000005]}",45.859548,84.4099030369859 | |
20677,38.495253999999996,-77.03671700000001,2322,"{'type': 'Point', 'coordinates': [-77.03671700000001, 38.495253999999996]}",44.803922,51.82582006994834 | |
20678,38.52282,-76.60135,11045,"{'type': 'Point', 'coordinates': [-76.60135, 38.52282]}",131.729535,83.84604105677592 | |
20680,38.10913,-76.385886,1119,"{'type': 'Point', 'coordinates': [-76.385886, 38.10913]}",20.728485,53.983684770015756 | |
20684,38.136143,-76.410164,1125,"{'type': 'Point', 'coordinates': [-76.410164, 38.136143]}",27.311045,41.19212574985688 | |
20685,38.434389,-76.528672,6471,"{'type': 'Point', 'coordinates': [-76.528672, 38.434389]}",80.816527,80.07025592673638 | |
20686,38.178004,-76.429574,1332,"{'type': 'Point', 'coordinates': [-76.429574, 38.178004]}",2.932371,454.2399307591025 | |
20687,38.063697999999995,-76.339689,313,"{'type': 'Point', 'coordinates': [-76.339689, 38.063697999999995]}",36.330097,8.61544630613015 | |
20688,38.327236,-76.46429499999999,1828,"{'type': 'Point', 'coordinates': [-76.46429499999999, 38.327236]}",9.515721,192.10315224668736 | |
20689,38.662952000000004,-76.57939,1694,"{'type': 'Point', 'coordinates': [-76.57939, 38.662952000000004]}",20.216678,83.79220364493118 | |
20690,38.158147,-76.534882,740,"{'type': 'Point', 'coordinates': [-76.534882, 38.158147]}",6.218522,118.99933778476621 | |
20692,38.174519000000004,-76.496938,1051,"{'type': 'Point', 'coordinates': [-76.496938, 38.174519000000004]}",23.633981,44.469867349051356 | |
20693,38.457068,-77.08958100000001,1088,"{'type': 'Point', 'coordinates': [-77.08958100000001, 38.457068]}",65.970624,16.492189008247063 | |
20695,38.591491999999995,-76.970784,6794,"{'type': 'Point', 'coordinates': [-76.970784, 38.591491999999995]}",32.893154,206.54753873708796 | |
20701,39.125563,-76.785436,2,"{'type': 'Point', 'coordinates': [-76.785436, 39.125563]}",3.435872,0.5820938614709745 | |
20705,39.049423,-76.900362,26188,"{'type': 'Point', 'coordinates': [-76.900362, 39.049423]}",41.343516,633.4245979466284 | |
20706,38.96588,-76.85109200000001,38692,"{'type': 'Point', 'coordinates': [-76.85109200000001, 38.96588]}",26.915588,1437.531292275688 | |
20707,39.099167,-76.879735,31538,"{'type': 'Point', 'coordinates': [-76.879735, 39.099167]}",29.36346,1074.0559865901362 | |
20708,39.048173,-76.82403599999999,25546,"{'type': 'Point', 'coordinates': [-76.82403599999999, 39.048173]}",36.922747,691.8770155427493 | |
20710,38.942368,-76.92591,9313,"{'type': 'Point', 'coordinates': [-76.92591, 38.942368]}",2.866581,3248.818017003531 | |
20711,38.801059,-76.645107,6643,"{'type': 'Point', 'coordinates': [-76.645107, 38.801059]}",89.472575,74.24621455233628 | |
20712,38.942361,-76.964578,9031,"{'type': 'Point', 'coordinates': [-76.964578, 38.942361]}",1.901507,4749.390877866871 | |
20714,38.724359,-76.55717800000001,4345,"{'type': 'Point', 'coordinates': [-76.55717800000001, 38.724359]}",10.578356,410.74435384855644 | |
20715,38.989393,-76.741331,26382,"{'type': 'Point', 'coordinates': [-76.741331, 38.989393]}",37.812414,697.707371975775 | |
20716,38.926428,-76.715028,20787,"{'type': 'Point', 'coordinates': [-76.715028, 38.926428]}",30.066716,691.3625019772695 | |
20720,38.982765,-76.78584000000001,21031,"{'type': 'Point', 'coordinates': [-76.78584000000001, 38.982765]}",29.129211,721.9900326170866 | |
20721,38.915222,-76.785129,27016,"{'type': 'Point', 'coordinates': [-76.785129, 38.915222]}",43.639936,619.0659857979626 | |
20722,38.934557,-76.95059599999999,5711,"{'type': 'Point', 'coordinates': [-76.95059599999999, 38.934557]}",3.892896,1467.0312281653555 | |
20723,39.137569,-76.867942,28972,"{'type': 'Point', 'coordinates': [-76.867942, 39.137569]}",35.114131,825.0809339408114 | |
20724,39.101077000000004,-76.80400300000001,16093,"{'type': 'Point', 'coordinates': [-76.80400300000001, 39.101077000000004]}",20.760006,775.1924541832984 | |
20732,38.65514,-76.542571,9919,"{'type': 'Point', 'coordinates': [-76.542571, 38.65514]}",33.004357,300.5360777063465 | |
20733,38.805653,-76.532229,2672,"{'type': 'Point', 'coordinates': [-76.532229, 38.805653]}",9.589185,278.647246872388 | |
20735,38.750917,-76.90266899999999,35421,"{'type': 'Point', 'coordinates': [-76.90266899999999, 38.750917]}",67.42781,525.3173727576204 | |
20736,38.689075,-76.627765,8904,"{'type': 'Point', 'coordinates': [-76.627765, 38.689075]}",67.817512,131.29352194459744 | |
20737,38.964265000000005,-76.913538,20684,"{'type': 'Point', 'coordinates': [-76.913538, 38.964265000000005]}",10.793519,1916.3351637218593 | |
20740,39.002745000000004,-76.931721,28780,"{'type': 'Point', 'coordinates': [-76.931721, 39.002745000000004]}",20.854049,1380.0677268956258 | |
20742,38.989619,-76.945695,7808,"{'type': 'Point', 'coordinates': [-76.945695, 38.989619]}",1.916204,4074.722733070174 | |
20743,38.88423,-76.89331700000001,38621,"{'type': 'Point', 'coordinates': [-76.89331700000001, 38.88423]}",25.193309,1532.986397300966 | |
20744,38.758348,-76.983786,50722,"{'type': 'Point', 'coordinates': [-76.983786, 38.758348]}",68.524382,740.2036839967415 | |
20745,38.806888,-76.99519000000001,28451,"{'type': 'Point', 'coordinates': [-76.99519000000001, 38.806888]}",17.00616,1672.9820253367013 | |
20746,38.836403000000004,-76.918265,28838,"{'type': 'Point', 'coordinates': [-76.918265, 38.836403000000004]}",20.44213,1410.71404985684 | |
20747,38.854991,-76.883313,40054,"{'type': 'Point', 'coordinates': [-76.883313, 38.854991]}",19.80513,2022.4053060999854 | |
20748,38.814868,-76.933447,38792,"{'type': 'Point', 'coordinates': [-76.933447, 38.814868]}",23.539594,1647.9468592363996 | |
20751,38.794437,-76.561199,2343,"{'type': 'Point', 'coordinates': [-76.561199, 38.794437]}",16.24763,144.20564722362585 | |
20754,38.730581,-76.647154,6951,"{'type': 'Point', 'coordinates': [-76.647154, 38.730581]}",45.800859,151.76571251643992 | |
20755,39.107783000000005,-76.747196,9302,"{'type': 'Point', 'coordinates': [-76.747196, 39.107783000000005]}",21.607637,430.49593993086796 | |
20758,38.733371000000005,-76.593148,721,"{'type': 'Point', 'coordinates': [-76.593148, 38.733371000000005]}",10.435796,69.08912362794366 | |
20759,39.153977000000005,-76.931172,3355,"{'type': 'Point', 'coordinates': [-76.931172, 39.153977000000005]}",17.137379,195.77089355379258 | |
20762,38.809803,-76.869158,2973,"{'type': 'Point', 'coordinates': [-76.869158, 38.809803]}",15.267478,194.72764264012693 | |
20763,39.135259999999995,-76.820437,2664,"{'type': 'Point', 'coordinates': [-76.820437, 39.135259999999995]}",3.667348,726.4104742718716 | |
20764,38.831938,-76.50431400000001,4176,"{'type': 'Point', 'coordinates': [-76.50431400000001, 38.831938]}",18.057429,231.262158084631 | |
20765,38.841934,-76.544044,514,"{'type': 'Point', 'coordinates': [-76.544044, 38.841934]}",1.723993,298.1450620739179 | |
20769,38.996697999999995,-76.818647,6604,"{'type': 'Point', 'coordinates': [-76.818647, 38.996697999999995]}",20.171672,327.3898167687835 | |
20770,39.002984999999995,-76.879165,25173,"{'type': 'Point', 'coordinates': [-76.879165, 39.002984999999995]}",21.468094,1172.5773140363556 | |
20772,38.780274,-76.76699,42625,"{'type': 'Point', 'coordinates': [-76.76699, 38.780274]}",188.914997,225.63057818009017 | |
20774,38.874532,-76.774182,43013,"{'type': 'Point', 'coordinates': [-76.774182, 38.874532]}",90.424679,475.67766317423144 | |
20776,38.872325,-76.572429,3289,"{'type': 'Point', 'coordinates': [-76.572429, 38.872325]}",64.371534,51.094013077271086 | |
20777,39.174938,-76.96908499999999,3314,"{'type': 'Point', 'coordinates': [-76.96908499999999, 39.174938]}",19.679506,168.39853602016228 | |
20778,38.828682,-76.572609,2009,"{'type': 'Point', 'coordinates': [-76.572609, 38.828682]}",22.07799,90.99560240764671 | |
20779,38.7636,-76.573388,1182,"{'type': 'Point', 'coordinates': [-76.573388, 38.7636]}",18.441804,64.0935127604653 | |
20781,38.95286,-76.94629,11440,"{'type': 'Point', 'coordinates': [-76.94629, 38.95286]}",6.509345,1757.473294164006 | |
20782,38.965813,-76.966329,30560,"{'type': 'Point', 'coordinates': [-76.966329, 38.965813]}",11.089891,2755.6627923574724 | |
20783,38.997067,-76.96678299999999,44487,"{'type': 'Point', 'coordinates': [-76.96678299999999, 38.997067]}",14.590489,3049.041056814477 | |
20784,38.950549,-76.89171999999999,29449,"{'type': 'Point', 'coordinates': [-76.89171999999999, 38.950549]}",11.032232,2669.3601077279736 | |
20785,38.918290999999996,-76.881948,35052,"{'type': 'Point', 'coordinates': [-76.881948, 38.918290999999996]}",25.645785,1366.774306187157 | |
20794,39.151475,-76.794703,14098,"{'type': 'Point', 'coordinates': [-76.794703, 39.151475]}",26.485625,532.2887415343229 | |
20812,38.967040999999995,-77.14388100000001,255,"{'type': 'Point', 'coordinates': [-77.14388100000001, 38.967040999999995]}",0.865027,294.78848637094563 | |
20814,39.004839000000004,-77.103004,27642,"{'type': 'Point', 'coordinates': [-77.103004, 39.004839000000004]}",13.246822,2086.6891696740545 | |
20815,38.983385999999996,-77.079337,29082,"{'type': 'Point', 'coordinates': [-77.079337, 38.983385999999996]}",14.103495,2062.0420682958375 | |
20816,38.95695,-77.120006,16208,"{'type': 'Point', 'coordinates': [-77.120006, 38.95695]}",10.52932,1539.3206778785334 | |
20817,38.997279,-77.151816,36240,"{'type': 'Point', 'coordinates': [-77.151816, 38.997279]}",36.169379,1001.9525079487818 | |
20818,38.973486,-77.162389,1962,"{'type': 'Point', 'coordinates': [-77.162389, 38.973486]}",3.762742,521.4282563088301 | |
20832,39.150349,-77.078251,24965,"{'type': 'Point', 'coordinates': [-77.078251, 39.150349]}",26.12993,955.4177910158962 | |
20833,39.207175,-77.05467,7735,"{'type': 'Point', 'coordinates': [-77.05467, 39.207175]}",52.431442,147.5259825964733 | |
20837,39.116506,-77.407115,5789,"{'type': 'Point', 'coordinates': [-77.407115, 39.116506]}",118.222684,48.966913997655475 | |
20838,39.217805,-77.39072900000001,259,"{'type': 'Point', 'coordinates': [-77.39072900000001, 39.217805]}",7.01822,36.90394430496622 | |
20839,39.188306,-77.43497099999999,214,"{'type': 'Point', 'coordinates': [-77.43497099999999, 39.188306]}",12.73075,16.80969306600161 | |
20841,39.191853,-77.32752099999999,10460,"{'type': 'Point', 'coordinates': [-77.32752099999999, 39.191853]}",69.644086,150.19222163386564 | |
20842,39.199878999999996,-77.415266,1824,"{'type': 'Point', 'coordinates': [-77.415266, 39.199878999999996]}",144.930561,12.585337332683062 | |
20850,39.091353999999995,-77.18228,46340,"{'type': 'Point', 'coordinates': [-77.18228, 39.091353999999995]}",36.692875,1262.915484273173 | |
20851,39.079056,-77.121818,14191,"{'type': 'Point', 'coordinates': [-77.121818, 39.079056]}",6.129283,2315.278964929503 | |
20852,39.051995,-77.121926,40365,"{'type': 'Point', 'coordinates': [-77.121926, 39.051995]}",21.614656,1867.482878284068 | |
20853,39.101746999999996,-77.09460200000001,29673,"{'type': 'Point', 'coordinates': [-77.09460200000001, 39.101746999999996]}",23.667616,1253.7384415903994 | |
20854,39.032771999999994,-77.22083,49611,"{'type': 'Point', 'coordinates': [-77.22083, 39.032771999999994]}",94.614365,524.3495530514842 | |
20855,39.133184,-77.134383,14295,"{'type': 'Point', 'coordinates': [-77.134383, 39.133184]}",34.579569,413.39439482313963 | |
20860,39.142374,-77.025417,2396,"{'type': 'Point', 'coordinates': [-77.025417, 39.142374]}",9.883196,242.4316992195642 | |
20861,39.148683,-76.999096,1875,"{'type': 'Point', 'coordinates': [-76.999096, 39.148683]}",9.962428,188.20713183573324 | |
20862,39.1808,-77.017395,343,"{'type': 'Point', 'coordinates': [-77.017395, 39.1808]}",3.056921,112.20440436635425 | |
20866,39.10928,-76.933948,13344,"{'type': 'Point', 'coordinates': [-76.933948, 39.10928]}",18.926988,705.0250150737137 | |
20868,39.126503,-76.963796,790,"{'type': 'Point', 'coordinates': [-76.963796, 39.126503]}",5.198591,151.9642533909669 | |
20871,39.261340999999994,-77.282547,13130,"{'type': 'Point', 'coordinates': [-77.282547, 39.261340999999994]}",53.322449,246.2377525083291 | |
20872,39.294465,-77.216125,13104,"{'type': 'Point', 'coordinates': [-77.216125, 39.294465]}",54.017463,242.58821633292922 | |
20874,39.133055999999996,-77.301828,57367,"{'type': 'Point', 'coordinates': [-77.301828, 39.133055999999996]}",58.491194,980.7801153794194 | |
20876,39.208384,-77.23718199999999,25496,"{'type': 'Point', 'coordinates': [-77.23718199999999, 39.208384]}",30.375935,839.3486488564056 | |
20877,39.140749,-77.19206,34321,"{'type': 'Point', 'coordinates': [-77.19206, 39.140749]}",15.014208,2285.9014608029943 | |
20878,39.112637,-77.250436,62446,"{'type': 'Point', 'coordinates': [-77.250436, 39.112637]}",57.760543,1081.1186453008243 | |
20879,39.168416,-77.17150600000001,24360,"{'type': 'Point', 'coordinates': [-77.17150600000001, 39.168416]}",19.968623,1219.9138618621823 | |
20880,39.139726,-77.17355699999999,450,"{'type': 'Point', 'coordinates': [-77.17355699999999, 39.139726]}",0.615162,731.5146254157441 | |
20882,39.239633000000005,-77.161043,14063,"{'type': 'Point', 'coordinates': [-77.161043, 39.239633000000005]}",100.367859,140.1145759221585 | |
20886,39.173374,-77.223178,33282,"{'type': 'Point', 'coordinates': [-77.223178, 39.173374]}",12.359633,2692.798402671018 | |
20895,39.027048,-77.07759,19054,"{'type': 'Point', 'coordinates': [-77.07759, 39.027048]}",10.616778,1794.7064542557073 | |
20896,39.035381,-77.092458,906,"{'type': 'Point', 'coordinates': [-77.092458, 39.035381]}",0.644898,1404.8733288054855 | |
20899,39.143712,-77.216135,142,"{'type': 'Point', 'coordinates': [-77.216135, 39.143712]}",0.204571,694.1355324068417 | |
20901,39.021495,-77.00977900000001,34832,"{'type': 'Point', 'coordinates': [-77.00977900000001, 39.021495]}",14.013496,2485.6038778617412 | |
20902,39.045249,-77.039264,48841,"{'type': 'Point', 'coordinates': [-77.039264, 39.045249]}",19.717741,2477.00788847972 | |
20903,39.021433,-76.980774,23625,"{'type': 'Point', 'coordinates': [-76.980774, 39.021433]}",9.333886,2531.1001227141624 | |
20904,39.066615999999996,-76.980935,54612,"{'type': 'Point', 'coordinates': [-76.980935, 39.066615999999996]}",35.566147,1535.5050970238638 | |
20905,39.109705,-76.98832900000001,18044,"{'type': 'Point', 'coordinates': [-76.98832900000001, 39.109705]}",33.833691,533.3145591475668 | |
20906,39.087321,-77.057159,64696,"{'type': 'Point', 'coordinates': [-77.057159, 39.087321]}",31.471629,2055.6927637905237 | |
20910,39.00286,-77.03664599999999,37445,"{'type': 'Point', 'coordinates': [-77.03664599999999, 39.00286]}",11.801813,3172.8176001433003 | |
20912,38.981602,-77.00115600000001,24807,"{'type': 'Point', 'coordinates': [-77.00115600000001, 38.981602]}",6.934268,3577.450424471624 | |
21001,39.504413,-76.201072,21487,"{'type': 'Point', 'coordinates': [-76.201072, 39.504413]}",81.503081,263.634205435743 | |
21005,39.493088,-76.17254100000001,2112,"{'type': 'Point', 'coordinates': [-76.17254100000001, 39.493088]}",22.792474,92.66216559027336 | |
21009,39.466882,-76.29523,29766,"{'type': 'Point', 'coordinates': [-76.29523, 39.466882]}",31.403377,947.8598432264148 | |
21010,39.390932,-76.292629,104,"{'type': 'Point', 'coordinates': [-76.292629, 39.390932]}",13.878407,7.493655431779743 | |
21012,39.046531,-76.495549,21317,"{'type': 'Point', 'coordinates': [-76.495549, 39.046531]}",32.353794,658.8717230504712 | |
21013,39.511494,-76.490799,4653,"{'type': 'Point', 'coordinates': [-76.490799, 39.511494]}",39.204167,118.68636311032958 | |
21014,39.536084,-76.352184,36047,"{'type': 'Point', 'coordinates': [-76.352184, 39.536084]}",36.668198,983.0589438837437 | |
21015,39.544176,-76.292469,27763,"{'type': 'Point', 'coordinates': [-76.292469, 39.544176]}",80.673434,344.14055065512645 | |
21017,39.474767,-76.23442,7062,"{'type': 'Point', 'coordinates': [-76.23442, 39.474767]}",7.124941,991.1661022877242 | |
21028,39.565965000000006,-76.249527,3460,"{'type': 'Point', 'coordinates': [-76.249527, 39.565965000000006]}",35.348261,97.88317450750972 | |
21029,39.21356,-76.95939200000001,11333,"{'type': 'Point', 'coordinates': [-76.95939200000001, 39.21356]}",41.830831,270.92457235669065 | |
21030,39.492412,-76.67444300000001,24355,"{'type': 'Point', 'coordinates': [-76.67444300000001, 39.492412]}",62.827068,387.65138618278354 | |
21031,39.487208,-76.65801,4,"{'type': 'Point', 'coordinates': [-76.65801, 39.487208]}",2.51527,1.5902865298755202 | |
21032,39.028343,-76.60414499999999,8848,"{'type': 'Point', 'coordinates': [-76.60414499999999, 39.028343]}",50.152776,176.42094228243715 | |
21034,39.640713,-76.223031,3387,"{'type': 'Point', 'coordinates': [-76.223031, 39.640713]}",72.423526,46.76657140388332 | |
21035,38.9383,-76.626588,7815,"{'type': 'Point', 'coordinates': [-76.626588, 38.9383]}",73.914476,105.73030376350096 | |
21036,39.234644,-77.006739,2114,"{'type': 'Point', 'coordinates': [-77.006739, 39.234644]}",17.555257,120.41976941721786 | |
21037,38.919253000000005,-76.543492,20618,"{'type': 'Point', 'coordinates': [-76.543492, 38.919253000000005]}",56.794629,363.02728555547037 | |
21040,39.436496000000005,-76.28996500000001,24420,"{'type': 'Point', 'coordinates': [-76.28996500000001, 39.436496000000005]}",23.623469,1033.717782938653 | |
21042,39.277181,-76.894602,38076,"{'type': 'Point', 'coordinates': [-76.894602, 39.277181]}",97.525009,390.4229324398217 | |
21043,39.255835999999995,-76.801491,42246,"{'type': 'Point', 'coordinates': [-76.801491, 39.255835999999995]}",44.203291,955.7206950948516 | |
21044,39.205869,-76.87911,41704,"{'type': 'Point', 'coordinates': [-76.87911, 39.205869]}",31.338432,1330.7621772525185 | |
21045,39.206042,-76.828234,38288,"{'type': 'Point', 'coordinates': [-76.828234, 39.206042]}",25.382648,1508.4320595707745 | |
21046,39.173116,-76.842028,15080,"{'type': 'Point', 'coordinates': [-76.842028, 39.173116]}",20.333987,741.6155031475136 | |
21047,39.521384000000005,-76.438786,11873,"{'type': 'Point', 'coordinates': [-76.438786, 39.521384000000005]}",61.098685,194.32496787778655 | |
21048,39.488125,-76.915075,10650,"{'type': 'Point', 'coordinates': [-76.915075, 39.488125]}",73.674067,144.55561412131627 | |
21050,39.585343,-76.39216400000001,18202,"{'type': 'Point', 'coordinates': [-76.39216400000001, 39.585343]}",73.866469,246.41762692081574 | |
21051,39.472691,-76.455841,279,"{'type': 'Point', 'coordinates': [-76.455841, 39.472691]}",1.031052,270.59740924803015 | |
21052,39.205576,-76.447067,303,"{'type': 'Point', 'coordinates': [-76.447067, 39.205576]}",0.369702,819.5790122855706 | |
21053,39.696791999999995,-76.714672,3305,"{'type': 'Point', 'coordinates': [-76.714672, 39.696791999999995]}",58.270988,56.7177615042326 | |
21054,39.048017,-76.72669499999999,10127,"{'type': 'Point', 'coordinates': [-76.72669499999999, 39.048017]}",46.185866,219.26621447349282 | |
21056,39.072941,-76.428558,267,"{'type': 'Point', 'coordinates': [-76.428558, 39.072941]}",13.746194,19.423558259107942 | |
21057,39.448749,-76.512474,4112,"{'type': 'Point', 'coordinates': [-76.512474, 39.448749]}",44.76638,91.85464627696052 | |
21060,39.166538,-76.58295600000001,29223,"{'type': 'Point', 'coordinates': [-76.58295600000001, 39.166538]}",35.134992,831.7349268216711 | |
21061,39.161941999999996,-76.62944399999999,53684,"{'type': 'Point', 'coordinates': [-76.62944399999999, 39.161941999999996]}",31.490729,1704.7557076242979 | |
21071,39.481658,-76.810955,497,"{'type': 'Point', 'coordinates': [-76.810955, 39.481658]}",2.567958,193.5389909024992 | |
21074,39.621612,-76.83984699999999,15084,"{'type': 'Point', 'coordinates': [-76.83984699999999, 39.621612]}",97.824587,154.19436424505426 | |
21075,39.204096,-76.74936,26344,"{'type': 'Point', 'coordinates': [-76.74936, 39.204096]}",37.735979,698.113596045832 | |
21076,39.168516,-76.716351,12952,"{'type': 'Point', 'coordinates': [-76.716351, 39.168516]}",32.649829,396.6942675258728 | |
21077,39.156136,-76.69769000000001,224,"{'type': 'Point', 'coordinates': [-76.69769000000001, 39.156136]}",1.703502,131.4938285954463 | |
21078,39.559228999999995,-76.141248,17603,"{'type': 'Point', 'coordinates': [-76.141248, 39.559228999999995]}",92.019699,191.29599630618222 | |
21082,39.478138,-76.473523,654,"{'type': 'Point', 'coordinates': [-76.473523, 39.478138]}",11.536961,56.68737200377119 | |
21084,39.613561,-76.466441,7652,"{'type': 'Point', 'coordinates': [-76.466441, 39.613561]}",63.791211,119.95382874923006 | |
21085,39.445879999999995,-76.357015,16171,"{'type': 'Point', 'coordinates': [-76.357015, 39.445879999999995]}",47.570657,339.9364444346438 | |
21087,39.449314,-76.41324,5451,"{'type': 'Point', 'coordinates': [-76.41324, 39.449314]}",36.547329,149.14906640646709 | |
21090,39.20848,-76.672535,9784,"{'type': 'Point', 'coordinates': [-76.672535, 39.20848]}",17.267851,566.6020629897721 | |
21093,39.43914,-76.64095,36465,"{'type': 'Point', 'coordinates': [-76.64095, 39.43914]}",54.560917,668.3355413546293 | |
21102,39.682834,-76.850538,11751,"{'type': 'Point', 'coordinates': [-76.850538, 39.682834]}",106.440015,110.40020992105272 | |
21104,39.346903999999995,-76.912757,4601,"{'type': 'Point', 'coordinates': [-76.912757, 39.346903999999995]}",45.891756,100.25765847791921 | |
21105,39.713946,-76.65128100000001,65,"{'type': 'Point', 'coordinates': [-76.65128100000001, 39.713946]}",0.304138,213.71877239937132 | |
21108,39.090307,-76.621263,17964,"{'type': 'Point', 'coordinates': [-76.621263, 39.090307]}",34.035888,527.795837146955 | |
21111,39.575536,-76.589691,4903,"{'type': 'Point', 'coordinates': [-76.589691, 39.575536]}",91.318178,53.69139099555841 | |
21113,39.053565,-76.716578,30469,"{'type': 'Point', 'coordinates': [-76.716578, 39.053565]}",37.353566,815.6918672771429 | |
21114,39.009640999999995,-76.68422,25225,"{'type': 'Point', 'coordinates': [-76.68422, 39.009640999999995]}",14.421723,1749.097524616164 | |
21117,39.427563,-76.777976,53778,"{'type': 'Point', 'coordinates': [-76.777976, 39.427563]}",84.677633,635.0909690638141 | |
21120,39.646204,-76.67485400000001,6967,"{'type': 'Point', 'coordinates': [-76.67485400000001, 39.646204]}",113.031591,61.63763544653636 | |
21122,39.120838,-76.494827,60576,"{'type': 'Point', 'coordinates': [-76.494827, 39.120838]}",111.150154,544.9924972663556 | |
21128,39.409428000000005,-76.44745999999999,12802,"{'type': 'Point', 'coordinates': [-76.44745999999999, 39.409428000000005]}",17.320193,739.1372601910383 | |
21130,39.47732,-76.194181,187,"{'type': 'Point', 'coordinates': [-76.194181, 39.47732]}",1.959976,95.40933154283522 | |
21131,39.503655,-76.58986999999999,7253,"{'type': 'Point', 'coordinates': [-76.58986999999999, 39.503655]}",61.138457,118.63236914860315 | |
21132,39.694699,-76.440405,2634,"{'type': 'Point', 'coordinates': [-76.440405, 39.694699]}",55.119136,47.787396377185594 | |
21133,39.374385,-76.81177,29998,"{'type': 'Point', 'coordinates': [-76.81177, 39.374385]}",26.374019,1137.4072339903903 | |
21136,39.483784,-76.794208,33781,"{'type': 'Point', 'coordinates': [-76.794208, 39.483784]}",149.307012,226.25193249463732 | |
21140,38.949202,-76.58252399999999,3457,"{'type': 'Point', 'coordinates': [-76.58252399999999, 38.949202]}",4.497047,768.7266777509774 | |
21144,39.120915000000004,-76.677313,31884,"{'type': 'Point', 'coordinates': [-76.677313, 39.120915000000004]}",41.49871,768.3130391282042 | |
21146,39.079136,-76.558699,26705,"{'type': 'Point', 'coordinates': [-76.558699, 39.079136]}",33.597428,794.8525107338573 | |
21152,39.541053000000005,-76.679893,5544,"{'type': 'Point', 'coordinates': [-76.679893, 39.541053000000005]}",59.478759,93.20974568416938 | |
21153,39.418438,-76.70084200000001,323,"{'type': 'Point', 'coordinates': [-76.70084200000001, 39.418438]}",5.101654,63.31280012325414 | |
21154,39.657449,-76.360475,6464,"{'type': 'Point', 'coordinates': [-76.360475, 39.657449]}",105.003433,61.55989204657718 | |
21155,39.573619,-76.806079,2371,"{'type': 'Point', 'coordinates': [-76.806079, 39.573619]}",56.842284,41.711905876266336 | |
21156,39.437208,-76.396486,358,"{'type': 'Point', 'coordinates': [-76.396486, 39.437208]}",3.73685,95.80261450151866 | |
21157,39.548569,-76.983558,36920,"{'type': 'Point', 'coordinates': [-76.983558, 39.548569]}",198.973232,185.55259734636064 | |
21158,39.653737,-77.035092,20234,"{'type': 'Point', 'coordinates': [-77.035092, 39.653737]}",193.338044,104.65607069036035 | |
21160,39.700247999999995,-76.30654399999999,2408,"{'type': 'Point', 'coordinates': [-76.30654399999999, 39.700247999999995]}",45.161277,53.320015729404645 | |
21161,39.659903,-76.56506,5490,"{'type': 'Point', 'coordinates': [-76.56506, 39.659903]}",125.832713,43.629354156895594 | |
21162,39.390116,-76.405582,3655,"{'type': 'Point', 'coordinates': [-76.405582, 39.390116]}",22.08728,165.47985990126443 | |
21163,39.337527,-76.848247,7026,"{'type': 'Point', 'coordinates': [-76.848247, 39.337527]}",33.092459,212.3142314688673 | |
21201,39.294821,-76.622226,16972,"{'type': 'Point', 'coordinates': [-76.622226, 39.294821]}",3.346919,5070.932400814002 | |
21202,39.296526,-76.607016,22832,"{'type': 'Point', 'coordinates': [-76.607016, 39.296526]}",4.436348,5146.5755166186245 | |
21204,39.402268,-76.632295,20253,"{'type': 'Point', 'coordinates': [-76.632295, 39.402268]}",15.793253,1282.383053067028 | |
21205,39.30229,-76.564482,16146,"{'type': 'Point', 'coordinates': [-76.564482, 39.30229]}",5.308777,3041.378456846087 | |
21206,39.338428,-76.538877,50846,"{'type': 'Point', 'coordinates': [-76.538877, 39.338428]}",18.57798,2736.896045748784 | |
21207,39.324166999999996,-76.719484,48133,"{'type': 'Point', 'coordinates': [-76.719484, 39.324166999999996]}",26.786843,1796.8896148008184 | |
21208,39.381174,-76.721002,33917,"{'type': 'Point', 'coordinates': [-76.721002, 39.381174]}",31.976849,1060.6736142138332 | |
21209,39.373191,-76.67000300000001,26465,"{'type': 'Point', 'coordinates': [-76.67000300000001, 39.373191]}",18.458579,1433.7506695396216 | |
21210,39.359156,-76.632685,14292,"{'type': 'Point', 'coordinates': [-76.632685, 39.359156]}",8.583079,1665.1367184200449 | |
21211,39.329817,-76.63940799999999,17351,"{'type': 'Point', 'coordinates': [-76.63940799999999, 39.329817]}",7.243052,2395.5371299281023 | |
21212,39.368561,-76.614898,32322,"{'type': 'Point', 'coordinates': [-76.614898, 39.368561]}",12.119551,2666.930482820692 | |
21213,39.315031,-76.57742900000001,32733,"{'type': 'Point', 'coordinates': [-76.57742900000001, 39.315031]}",8.839934,3702.8557000538694 | |
21214,39.351793,-76.5644,20564,"{'type': 'Point', 'coordinates': [-76.5644, 39.351793]}",7.392914,2781.5824720806977 | |
21215,39.345240999999994,-76.683566,60161,"{'type': 'Point', 'coordinates': [-76.683566, 39.345240999999994]}",17.655757,3407.443815634753 | |
21216,39.310595,-76.671717,32071,"{'type': 'Point', 'coordinates': [-76.671717, 39.310595]}",8.781231,3652.22142544707 | |
21217,39.308473,-76.639154,37111,"{'type': 'Point', 'coordinates': [-76.639154, 39.308473]}",6.188455,5996.811805208246 | |
21218,39.330107,-76.601451,49796,"{'type': 'Point', 'coordinates': [-76.601451, 39.330107]}",11.151876,4465.257683998639 | |
21219,39.227459,-76.44330500000001,9379,"{'type': 'Point', 'coordinates': [-76.44330500000001, 39.227459]}",32.023919,292.87483521301687 | |
21220,39.34728,-76.39008000000001,39199,"{'type': 'Point', 'coordinates': [-76.39008000000001, 39.34728]}",72.619797,539.7839379804379 | |
21221,39.289204999999995,-76.43477,42154,"{'type': 'Point', 'coordinates': [-76.43477, 39.289204999999995]}",54.53488,772.973187068533 | |
21222,39.26484,-76.492566,55786,"{'type': 'Point', 'coordinates': [-76.492566, 39.26484]}",34.096857,1636.1038790173534 | |
21223,39.28283,-76.654,26366,"{'type': 'Point', 'coordinates': [-76.654, 39.28283]}",6.864323,3841.0197189147425 | |
21224,39.27486,-76.542833,49134,"{'type': 'Point', 'coordinates': [-76.542833, 39.27486]}",33.417759,1470.2960782020125 | |
21225,39.226116999999995,-76.615735,33545,"{'type': 'Point', 'coordinates': [-76.615735, 39.226116999999995]}",17.382401,1929.825459670387 | |
21226,39.208888,-76.562926,7561,"{'type': 'Point', 'coordinates': [-76.562926, 39.208888]}",43.172621,175.13414346560057 | |
21227,39.23997,-76.67945,33534,"{'type': 'Point', 'coordinates': [-76.67945, 39.23997]}",30.424527,1102.2028378617028 | |
21228,39.272857,-76.747741,47577,"{'type': 'Point', 'coordinates': [-76.747741, 39.272857]}",40.251627,1181.9894882758404 | |
21229,39.284239,-76.69140300000001,45213,"{'type': 'Point', 'coordinates': [-76.69140300000001, 39.284239]}",15.237997,2967.122253666279 | |
21230,39.266127000000004,-76.623807,33568,"{'type': 'Point', 'coordinates': [-76.623807, 39.266127000000004]}",21.661934,1549.6307947388264 | |
21231,39.2872,-76.591953,15748,"{'type': 'Point', 'coordinates': [-76.591953, 39.2872]}",2.640251,5964.58442776842 | |
21234,39.393417,-76.534228,69752,"{'type': 'Point', 'coordinates': [-76.534228, 39.393417]}",33.636899,2073.675103046806 | |
21236,39.388421,-76.48355,38474,"{'type': 'Point', 'coordinates': [-76.48355, 39.388421]}",22.22039,1731.4727599290563 | |
21237,39.341537,-76.49526999999999,30059,"{'type': 'Point', 'coordinates': [-76.49526999999999, 39.341537]}",30.461501,986.7865670834802 | |
21239,39.367098999999996,-76.589171,28793,"{'type': 'Point', 'coordinates': [-76.589171, 39.367098999999996]}",8.377819,3436.813328146621 | |
21240,39.174291,-76.671566,0,"{'type': 'Point', 'coordinates': [-76.671566, 39.174291]}",12.553811,0.0 | |
21244,39.334952,-76.776616,34611,"{'type': 'Point', 'coordinates': [-76.776616, 39.334952]}",34.925309,991.0005377475687 | |
21250,39.255611,-76.711179,3205,"{'type': 'Point', 'coordinates': [-76.711179, 39.255611]}",0.634719,5049.478588162636 | |
21251,39.344707,-76.581242,934,"{'type': 'Point', 'coordinates': [-76.581242, 39.344707]}",0.456625,2045.4421023816042 | |
21252,39.393778000000005,-76.60779000000001,2872,"{'type': 'Point', 'coordinates': [-76.60779000000001, 39.393778000000005]}",0.371463,7731.591033292683 | |
21286,39.411836,-76.573235,19206,"{'type': 'Point', 'coordinates': [-76.573235, 39.411836]}",23.136783,830.1067611690008 | |
21401,38.987753999999995,-76.552797,36012,"{'type': 'Point', 'coordinates': [-76.552797, 38.987753999999995]}",57.048635,631.2508616551474 | |
21402,38.986683,-76.47290500000001,5217,"{'type': 'Point', 'coordinates': [-76.47290500000001, 38.986683]}",7.704984,677.0942029211222 | |
21403,38.942122999999995,-76.489628,30269,"{'type': 'Point', 'coordinates': [-76.489628, 38.942122999999995]}",35.805658,845.3691871826513 | |
21405,39.027529,-76.556682,544,"{'type': 'Point', 'coordinates': [-76.556682, 39.027529]}",4.519773,120.36002693055603 | |
21409,39.018435,-76.442533,20064,"{'type': 'Point', 'coordinates': [-76.442533, 39.018435]}",47.879298,419.05376306895727 | |
21502,39.643695,-78.75514100000001,44400,"{'type': 'Point', 'coordinates': [-78.75514100000001, 39.643695]}",236.192595,187.98218462352725 | |
21520,39.624739,-79.301482,2074,"{'type': 'Point', 'coordinates': [-79.301482, 39.624739]}",158.542004,13.08170672549339 | |
21521,39.551371,-79.041477,1265,"{'type': 'Point', 'coordinates': [-79.041477, 39.551371]}",60.155357,21.028883595520842 | |
21522,39.610243,-79.227753,141,"{'type': 'Point', 'coordinates': [-79.227753, 39.610243]}",6.685947,21.089009529988797 | |
21523,39.481331,-79.07851,286,"{'type': 'Point', 'coordinates': [-79.07851, 39.481331]}",1.892813,151.0978633388507 | |
21524,39.707625,-78.801406,626,"{'type': 'Point', 'coordinates': [-78.801406, 39.707625]}",8.959346,69.8711714002339 | |
21529,39.703942,-78.76717099999999,631,"{'type': 'Point', 'coordinates': [-78.76717099999999, 39.703942]}",9.468349,66.64308635011236 | |
21530,39.67964,-78.546122,1591,"{'type': 'Point', 'coordinates': [-78.546122, 39.67964]}",146.583775,10.853861554595657 | |
21531,39.643031,-79.428102,2227,"{'type': 'Point', 'coordinates': [-79.428102, 39.643031]}",162.503264,13.704340117131432 | |
21532,39.649077,-78.984732,15620,"{'type': 'Point', 'coordinates': [-78.984732, 39.649077]}",202.044319,77.30977083300223 | |
21536,39.65696,-79.165566,4121,"{'type': 'Point', 'coordinates': [-79.165566, 39.65696]}",258.039446,15.970426475028162 | |
21538,39.409932,-79.22429,716,"{'type': 'Point', 'coordinates': [-79.22429, 39.409932]}",46.821681,15.29206095782849 | |
21539,39.599142,-79.083065,2819,"{'type': 'Point', 'coordinates': [-79.083065, 39.599142]}",89.905008,31.355316713836455 | |
21540,39.478153000000006,-79.062454,65,"{'type': 'Point', 'coordinates': [-79.062454, 39.478153000000006]}",0.809334,80.31294867137672 | |
21541,39.541470000000004,-79.380323,1546,"{'type': 'Point', 'coordinates': [-79.380323, 39.541470000000004]}",71.363829,21.66363578949779 | |
21542,39.596095,-78.949987,483,"{'type': 'Point', 'coordinates': [-78.949987, 39.596095]}",1.776306,271.9126096517154 | |
21543,39.653797,-78.958857,140,"{'type': 'Point', 'coordinates': [-78.958857, 39.653797]}",3.525765,39.70769464215567 | |
21545,39.704066,-78.85452099999999,1940,"{'type': 'Point', 'coordinates': [-78.85452099999999, 39.704066]}",37.256335,52.0716812321985 | |
21550,39.389381,-79.390745,14194,"{'type': 'Point', 'coordinates': [-79.390745, 39.389381]}",533.608407,26.60003068504878 | |
21555,39.575204,-78.562497,1936,"{'type': 'Point', 'coordinates': [-78.562497, 39.575204]}",280.311445,6.906603474574505 | |
21557,39.536233,-78.92279,1895,"{'type': 'Point', 'coordinates': [-78.92279, 39.536233]}",70.998952,26.690534812401175 | |
21561,39.491571,-79.194401,2627,"{'type': 'Point', 'coordinates': [-79.194401, 39.491571]}",248.716926,10.56220837981891 | |
21562,39.513851,-79.03938000000001,3141,"{'type': 'Point', 'coordinates': [-79.03938000000001, 39.513851]}",75.541188,41.57996562087427 | |
21601,38.79365,-76.081602,23597,"{'type': 'Point', 'coordinates': [-76.081602, 38.79365]}",337.069374,70.0063601743895 | |
21607,39.132714,-75.85420699999999,583,"{'type': 'Point', 'coordinates': [-75.85420699999999, 39.132714]}",47.398442,12.299982349630817 | |
21610,39.367115000000005,-76.072496,378,"{'type': 'Point', 'coordinates': [-76.072496, 39.367115000000005]}",8.211776,46.031455314903866 | |
21612,38.751513,-76.275426,492,"{'type': 'Point', 'coordinates': [-76.275426, 38.751513]}",31.342021,15.697775200903605 | |
21613,38.502789,-76.078875,17330,"{'type': 'Point', 'coordinates': [-76.078875, 38.502789]}",506.183662,34.236585059910524 | |
21617,39.049357,-76.044545,9907,"{'type': 'Point', 'coordinates': [-76.044545, 39.049357]}",306.268834,32.34739842970767 | |
21619,38.942446999999994,-76.265742,5848,"{'type': 'Point', 'coordinates': [-76.265742, 38.942446999999994]}",49.552936,118.01520701013558 | |
21620,39.200177000000004,-76.097912,12853,"{'type': 'Point', 'coordinates': [-76.097912, 39.200177000000004]}",346.270058,37.11842737497101 | |
21622,38.414465,-76.159253,558,"{'type': 'Point', 'coordinates': [-76.159253, 38.414465]}",172.960359,3.2261727671367746 | |
21623,39.124035,-75.966748,2111,"{'type': 'Point', 'coordinates': [-75.966748, 39.124035]}",99.09367,21.30307617025386 | |
21624,38.844673,-76.269891,143,"{'type': 'Point', 'coordinates': [-76.269891, 38.844673]}",9.042044,15.81500819947348 | |
21625,38.873205,-75.996027,2719,"{'type': 'Point', 'coordinates': [-75.996027, 38.873205]}",109.520345,24.826437498895753 | |
21626,38.341359000000004,-76.098361,120,"{'type': 'Point', 'coordinates': [-76.098361, 38.341359000000004]}",83.669336,1.4342171903933838 | |
21627,38.233028000000004,-76.046336,18,"{'type': 'Point', 'coordinates': [-76.046336, 38.233028000000004]}",4.158887,4.328081046683884 | |
21628,39.233174,-75.922049,556,"{'type': 'Point', 'coordinates': [-75.922049, 39.233174]}",3.253286,170.9041258592082 | |
21629,38.858672,-75.825079,9555,"{'type': 'Point', 'coordinates': [-75.825079, 38.858672]}",221.01435,43.23248694032763 | |
21631,38.582390999999994,-75.93898100000001,2731,"{'type': 'Point', 'coordinates': [-75.93898100000001, 38.582390999999994]}",78.262032,34.89559279523946 | |
21632,38.731398,-75.772428,6353,"{'type': 'Point', 'coordinates': [-75.772428, 38.731398]}",193.227172,32.87839869643179 | |
21634,38.292164,-76.19915300000001,305,"{'type': 'Point', 'coordinates': [-76.19915300000001, 38.292164]}",33.006556,9.240588445519732 | |
21635,39.334790999999996,-75.846625,2098,"{'type': 'Point', 'coordinates': [-75.846625, 39.334790999999996]}",83.711184,25.062362037550443 | |
21636,39.025292,-75.802806,1186,"{'type': 'Point', 'coordinates': [-75.802806, 39.025292]}",57.364872,20.67467351796758 | |
21638,38.940201,-76.207604,4934,"{'type': 'Point', 'coordinates': [-76.207604, 38.940201]}",39.634264,124.48824582689362 | |
21639,38.958732,-75.782499,4408,"{'type': 'Point', 'coordinates': [-75.782499, 38.958732]}",85.366282,51.63631233230938 | |
21640,39.068141,-75.820948,1632,"{'type': 'Point', 'coordinates': [-75.820948, 39.068141]}",71.802142,22.729126938859288 | |
21641,38.917919,-75.940213,117,"{'type': 'Point', 'coordinates': [-75.940213, 38.917919]}",0.239205,489.1202106979369 | |
21643,38.645582,-75.869896,5979,"{'type': 'Point', 'coordinates': [-75.869896, 38.645582]}",128.709425,46.453474561012136 | |
21644,39.112428,-75.873521,111,"{'type': 'Point', 'coordinates': [-75.873521, 39.112428]}",11.140665,9.963498588279963 | |
21645,39.315819,-75.956165,1039,"{'type': 'Point', 'coordinates': [-75.956165, 39.315819]}",106.450335,9.760420199710973 | |
21647,38.812385,-76.283079,289,"{'type': 'Point', 'coordinates': [-76.283079, 38.812385]}",10.184131,28.37748257558745 | |
21648,38.485356,-76.23933000000001,255,"{'type': 'Point', 'coordinates': [-76.23933000000001, 38.485356]}",56.484206,4.514536328969553 | |
21649,39.132893,-75.770684,1858,"{'type': 'Point', 'coordinates': [-75.770684, 39.132893]}",44.137303,42.095911478777936 | |
21650,39.314376,-75.81702299999999,238,"{'type': 'Point', 'coordinates': [-75.81702299999999, 39.314376]}",28.812677,8.260252943522048 | |
21651,39.256085,-75.851523,2898,"{'type': 'Point', 'coordinates': [-75.851523, 39.256085]}",102.840374,28.179594134887143 | |
21652,38.703188,-76.274135,183,"{'type': 'Point', 'coordinates': [-76.274135, 38.703188]}",4.280682,42.75019728164811 | |
21653,38.750464,-76.179733,114,"{'type': 'Point', 'coordinates': [-76.179733, 38.750464]}",0.573832,198.66441746016255 | |
21654,38.688756,-76.127833,1236,"{'type': 'Point', 'coordinates': [-76.127833, 38.688756]}",38.304598,32.26766666497844 | |
21655,38.744968,-75.912768,5009,"{'type': 'Point', 'coordinates': [-75.912768, 38.744968]}",145.924011,34.32608496486572 | |
21657,38.968740999999994,-75.986162,777,"{'type': 'Point', 'coordinates': [-75.986162, 38.968740999999994]}",64.513582,12.043975484108136 | |
21658,38.945576,-76.14325699999999,3862,"{'type': 'Point', 'coordinates': [-76.14325699999999, 38.945576]}",120.594894,32.024573113352545 | |
21659,38.589881,-75.767427,1551,"{'type': 'Point', 'coordinates': [-75.767427, 38.589881]}",127.58061,12.157019785373341 | |
21660,38.95575,-75.890107,4063,"{'type': 'Point', 'coordinates': [-75.890107, 38.95575]}",86.073349,47.203926037547355 | |
21661,39.096121000000004,-76.219488,2653,"{'type': 'Point', 'coordinates': [-76.219488, 39.096121000000004]}",140.900337,18.82891167251076 | |
21662,38.710588,-76.20834599999999,555,"{'type': 'Point', 'coordinates': [-76.20834599999999, 38.710588]}",35.383633,15.685218078087118 | |
21663,38.788286,-76.228656,3308,"{'type': 'Point', 'coordinates': [-76.228656, 38.788286]}",49.004026,67.50465767853441 | |
21664,38.607081,-75.944694,539,"{'type': 'Point', 'coordinates': [-75.944694, 38.607081]}",1.191138,452.5084415071973 | |
21665,38.7518,-76.33259699999999,287,"{'type': 'Point', 'coordinates': [-76.33259699999999, 38.7518]}",23.447882,12.239911476866013 | |
21666,38.940139,-76.33579,12309,"{'type': 'Point', 'coordinates': [-76.33579, 38.940139]}",85.015864,144.78474276283308 | |
21667,39.350621000000004,-76.042108,310,"{'type': 'Point', 'coordinates': [-76.042108, 39.350621000000004]}",16.711087,18.550558679994904 | |
21668,39.191190999999996,-75.85300000000001,1904,"{'type': 'Point', 'coordinates': [-75.85300000000001, 39.191190999999996]}",128.674054,14.797077894196136 | |
21669,38.460081,-76.285161,229,"{'type': 'Point', 'coordinates': [-76.285161, 38.460081]}",48.138256,4.7571312097388825 | |
21671,38.695574,-76.335128,756,"{'type': 'Point', 'coordinates': [-76.335128, 38.695574]}",14.397766,52.508146055436654 | |
21672,38.271699,-76.052704,241,"{'type': 'Point', 'coordinates': [-76.052704, 38.271699]}",32.518541,7.411156607548906 | |
21673,38.642285,-76.043492,3136,"{'type': 'Point', 'coordinates': [-76.043492, 38.642285]}",176.936402,17.72388250553439 | |
21675,38.288979,-76.0896,105,"{'type': 'Point', 'coordinates': [-76.0896, 38.288979]}",10.361816,10.13335886296379 | |
21676,38.773206,-76.353189,398,"{'type': 'Point', 'coordinates': [-76.353189, 38.773206]}",37.129432,10.71925905034044 | |
21677,38.472182000000004,-76.17384399999999,440,"{'type': 'Point', 'coordinates': [-76.17384399999999, 38.472182000000004]}",31.055154,14.168340623910607 | |
21678,39.309162,-76.098793,2301,"{'type': 'Point', 'coordinates': [-76.098793, 39.309162]}",109.902826,20.936677278889988 | |
21679,38.920478,-76.094115,483,"{'type': 'Point', 'coordinates': [-76.094115, 38.920478]}",24.066505,20.069386892695885 | |
21701,39.443557,-77.332934,35293,"{'type': 'Point', 'coordinates': [-77.332934, 39.443557]}",102.533001,344.2111286687103 | |
21702,39.479136,-77.442989,38847,"{'type': 'Point', 'coordinates': [-77.442989, 39.479136]}",104.91486,370.2716659965995 | |
21703,39.367031,-77.47348199999999,32854,"{'type': 'Point', 'coordinates': [-77.47348199999999, 39.367031]}",86.245463,380.935980365715 | |
21704,39.354881,-77.3759,13321,"{'type': 'Point', 'coordinates': [-77.3759, 39.354881]}",68.317205,194.98748521693767 | |
21705,39.40886,-77.41000799999999,8,"{'type': 'Point', 'coordinates': [-77.41000799999999, 39.40886]}",0.061289,130.5291324707533 | |
21710,39.307996,-77.432009,4515,"{'type': 'Point', 'coordinates': [-77.432009, 39.307996]}",67.336878,67.05092564582516 | |
21711,39.668396,-78.01956899999999,1029,"{'type': 'Point', 'coordinates': [-78.01956899999999, 39.668396]}",63.55167,16.1915493330073 | |
21713,39.529687,-77.675678,9502,"{'type': 'Point', 'coordinates': [-77.675678, 39.529687]}",109.508688,86.76937121189873 | |
21714,39.419295,-77.504419,99,"{'type': 'Point', 'coordinates': [-77.504419, 39.419295]}",0.074856,1322.5392754087848 | |
21716,39.314453,-77.620019,4885,"{'type': 'Point', 'coordinates': [-77.620019, 39.314453]}",10.101801,483.5771363937975 | |
21717,39.338668,-77.43704,54,"{'type': 'Point', 'coordinates': [-77.43704, 39.338668]}",0.95521,56.53207148166372 | |
21718,39.393496999999996,-77.627788,151,"{'type': 'Point', 'coordinates': [-77.627788, 39.393496999999996]}",1.186184,127.29896879404883 | |
21719,39.707956,-77.494228,1548,"{'type': 'Point', 'coordinates': [-77.494228, 39.707956]}",8.773883,176.4327151387818 | |
21722,39.662084,-77.919847,5545,"{'type': 'Point', 'coordinates': [-77.919847, 39.662084]}",157.084645,35.299439993005045 | |
21723,39.329107,-77.002611,803,"{'type': 'Point', 'coordinates': [-77.002611, 39.329107]}",7.982839,100.59077979651099 | |
21727,39.68862,-77.329249,5850,"{'type': 'Point', 'coordinates': [-77.329249, 39.68862]}",83.397535,70.14595815092136 | |
21733,39.549303,-77.758487,1163,"{'type': 'Point', 'coordinates': [-77.758487, 39.549303]}",15.655015,74.28929323925911 | |
21734,39.607817,-77.707835,771,"{'type': 'Point', 'coordinates': [-77.707835, 39.607817]}",0.585227,1317.437507155343 | |
21737,39.248259999999995,-77.027125,1458,"{'type': 'Point', 'coordinates': [-77.027125, 39.248259999999995]}",13.313282,109.51469367207876 | |
21738,39.279844,-77.026706,3268,"{'type': 'Point', 'coordinates': [-77.026706, 39.279844]}",18.939279,172.55144718022265 | |
21740,39.631901,-77.74388499999999,61859,"{'type': 'Point', 'coordinates': [-77.74388499999999, 39.631901]}",181.650421,340.53870978917246 | |
21742,39.678219,-77.65272,31444,"{'type': 'Point', 'coordinates': [-77.65272, 39.678219]}",130.773523,240.4462254947433 | |
21746,39.565064,-77.711467,1883,"{'type': 'Point', 'coordinates': [-77.711467, 39.565064]}",0.932544,2019.2076727746894 | |
21750,39.662262,-78.235975,3766,"{'type': 'Point', 'coordinates': [-78.235975, 39.662262]}",160.573267,23.453468129287053 | |
21754,39.332115,-77.316212,6323,"{'type': 'Point', 'coordinates': [-77.316212, 39.332115]}",61.545485,102.73702449497311 | |
21755,39.359655,-77.568128,5591,"{'type': 'Point', 'coordinates': [-77.568128, 39.359655]}",90.834494,61.551507073953644 | |
21756,39.462722,-77.70403,3612,"{'type': 'Point', 'coordinates': [-77.70403, 39.462722]}",54.175512,66.67218945711117 | |
21757,39.593861,-77.258139,3036,"{'type': 'Point', 'coordinates': [-77.258139, 39.593861]}",97.712948,31.070600796938397 | |
21758,39.353204999999996,-77.656813,4921,"{'type': 'Point', 'coordinates': [-77.656813, 39.353204999999996]}",90.293276,54.50018227270876 | |
21762,39.48083,-77.247089,249,"{'type': 'Point', 'coordinates': [-77.247089, 39.48083]}",0.952883,261.312249247809 | |
21766,39.670471,-78.38789,700,"{'type': 'Point', 'coordinates': [-78.38789, 39.670471]}",100.161959,6.988681201812357 | |
21767,39.697132,-77.747473,991,"{'type': 'Point', 'coordinates': [-77.747473, 39.697132]}",0.737108,1344.4434194175074 | |
21769,39.442448999999996,-77.568921,11236,"{'type': 'Point', 'coordinates': [-77.568921, 39.442448999999996]}",106.39515,105.60631758120553 | |
21770,39.350189,-77.25624,5164,"{'type': 'Point', 'coordinates': [-77.25624, 39.350189]}",28.618465,180.44294129681657 | |
21771,39.394652,-77.163984,29563,"{'type': 'Point', 'coordinates': [-77.163984, 39.394652]}",220.76755,133.9100787230732 | |
21773,39.542654999999996,-77.55154300000001,5460,"{'type': 'Point', 'coordinates': [-77.55154300000001, 39.542654999999996]}",100.50248,54.3270176019537 | |
21774,39.410304,-77.268909,11662,"{'type': 'Point', 'coordinates': [-77.268909, 39.410304]}",37.957801,307.235922333857 | |
21776,39.517975,-77.099688,5735,"{'type': 'Point', 'coordinates': [-77.099688, 39.517975]}",91.493245,62.68222315210265 | |
21777,39.27131,-77.519376,1470,"{'type': 'Point', 'coordinates': [-77.519376, 39.27131]}",7.787974,188.7525561847022 | |
21778,39.615806,-77.32842099999999,1094,"{'type': 'Point', 'coordinates': [-77.32842099999999, 39.615806]}",46.365435,23.59516307784021 | |
21779,39.426819,-77.651635,983,"{'type': 'Point', 'coordinates': [-77.651635, 39.426819]}",23.210302,42.351883228404354 | |
21780,39.677417,-77.465582,1625,"{'type': 'Point', 'coordinates': [-77.465582, 39.677417]}",58.280597,27.882349935433915 | |
21781,39.571073,-77.759648,136,"{'type': 'Point', 'coordinates': [-77.759648, 39.571073]}",0.656098,207.2861066487019 | |
21782,39.456826,-77.76236899999999,4097,"{'type': 'Point', 'coordinates': [-77.76236899999999, 39.456826]}",83.168534,49.261418988099514 | |
21783,39.651841,-77.553573,9130,"{'type': 'Point', 'coordinates': [-77.553573, 39.651841]}",116.435427,78.41256080934886 | |
21784,39.401084000000004,-76.973736,37941,"{'type': 'Point', 'coordinates': [-76.973736, 39.401084000000004]}",154.275132,245.93075700625553 | |
21787,39.67763,-77.172591,10693,"{'type': 'Point', 'coordinates': [-77.172591, 39.67763]}",149.5303,71.51059016132515 | |
21788,39.589979,-77.413861,11622,"{'type': 'Point', 'coordinates': [-77.413861, 39.589979]}",174.27783,66.6866233071642 | |
21790,39.260865,-77.48490100000001,100,"{'type': 'Point', 'coordinates': [-77.48490100000001, 39.260865]}",10.181178,9.822046132579159 | |
21791,39.533053,-77.18856,5281,"{'type': 'Point', 'coordinates': [-77.18856, 39.533053]}",127.876654,41.297608553317325 | |
21793,39.493618,-77.344122,9775,"{'type': 'Point', 'coordinates': [-77.344122, 39.493618]}",52.874466,184.87184343384197 | |
21794,39.298421999999995,-76.96612900000001,2434,"{'type': 'Point', 'coordinates': [-76.96612900000001, 39.298421999999995]}",22.700793,107.22092395626883 | |
21795,39.580609,-77.823698,9233,"{'type': 'Point', 'coordinates': [-77.823698, 39.580609]}",82.630888,111.73787700308873 | |
21797,39.328183,-77.071411,8839,"{'type': 'Point', 'coordinates': [-77.071411, 39.328183]}",112.705862,78.4253795068796 | |
21798,39.536365999999994,-77.302027,2345,"{'type': 'Point', 'coordinates': [-77.302027, 39.536365999999994]}",42.978728,54.56187535377967 | |
21801,38.380072999999996,-75.63704,29961,"{'type': 'Point', 'coordinates': [-75.63704, 38.380072999999996]}",113.314513,264.4056723784357 | |
21802,38.344771,-75.582696,89,"{'type': 'Point', 'coordinates': [-75.582696, 38.344771]}",0.136026,654.2866804875538 | |
21804,38.314082,-75.532106,38491,"{'type': 'Point', 'coordinates': [-75.532106, 38.314082]}",193.797494,198.614539360349 | |
21810,38.299721999999996,-75.707114,487,"{'type': 'Point', 'coordinates': [-75.707114, 38.299721999999996]}",25.293207,19.25418156740662 | |
21811,38.318877,-75.216741,22550,"{'type': 'Point', 'coordinates': [-75.216741, 38.318877]}",292.993369,76.96419914540797 | |
21813,38.424217,-75.155464,2852,"{'type': 'Point', 'coordinates': [-75.155464, 38.424217]}",82.423007,34.60198922371274 | |
21814,38.293076,-75.89929599999999,380,"{'type': 'Point', 'coordinates': [-75.89929599999999, 38.293076]}",17.359665,21.88982333472449 | |
21817,37.981025,-75.836069,5236,"{'type': 'Point', 'coordinates': [-75.836069, 37.981025]}",48.083973,108.89283212932509 | |
21821,38.164595,-75.91666,991,"{'type': 'Point', 'coordinates': [-75.91666, 38.164595]}",40.882385,24.240268761228094 | |
21822,38.280813,-75.636084,1930,"{'type': 'Point', 'coordinates': [-75.636084, 38.280813]}",75.430538,25.58645412286467 | |
21824,37.980774,-76.036546,198,"{'type': 'Point', 'coordinates': [-76.036546, 37.980774]}",6.88174,28.771793180213145 | |
21826,38.31695,-75.626463,4837,"{'type': 'Point', 'coordinates': [-75.626463, 38.31695]}",11.696987,413.5252950182812 | |
21829,38.097659,-75.37145600000001,527,"{'type': 'Point', 'coordinates': [-75.37145600000001, 38.097659]}",53.097769,9.925087436347843 | |
21830,38.402165999999994,-75.737946,4026,"{'type': 'Point', 'coordinates': [-75.737946, 38.402165999999994]}",83.405971,48.26992542296522 | |
21835,38.531887,-75.948459,507,"{'type': 'Point', 'coordinates': [-75.948459, 38.531887]}",21.168223,23.950994847323745 | |
21837,38.454586,-75.76629399999999,2614,"{'type': 'Point', 'coordinates': [-75.76629399999999, 38.454586]}",123.480636,21.169311113687492 | |
21838,38.017905999999996,-75.73791999999999,1736,"{'type': 'Point', 'coordinates': [-75.73791999999999, 38.017905999999996]}",157.017356,11.056102613267797 | |
21840,38.248736,-75.900009,375,"{'type': 'Point', 'coordinates': [-75.900009, 38.248736]}",32.886326,11.402915606930371 | |
21841,38.246944,-75.295806,860,"{'type': 'Point', 'coordinates': [-75.295806, 38.246944]}",82.232131,10.458199119271274 | |
21842,38.350536,-75.12888000000001,11089,"{'type': 'Point', 'coordinates': [-75.12888000000001, 38.350536]}",40.228575,275.6498334827918 | |
21849,38.377348,-75.462118,3238,"{'type': 'Point', 'coordinates': [-75.462118, 38.377348]}",90.355322,35.83629528762014 | |
21850,38.361731,-75.39707800000001,2790,"{'type': 'Point', 'coordinates': [-75.39707800000001, 38.361731]}",80.791786,34.53321356208167 | |
21851,38.079869,-75.54244399999999,7315,"{'type': 'Point', 'coordinates': [-75.54244399999999, 38.079869]}",279.035399,26.21531184292499 | |
21853,38.203540000000004,-75.720887,11126,"{'type': 'Point', 'coordinates': [-75.720887, 38.203540000000004]}",334.190646,33.29237407799858 | |
21856,38.330729,-75.794885,1035,"{'type': 'Point', 'coordinates': [-75.794885, 38.330729]}",99.740489,10.376929272925462 | |
21861,38.53644,-75.727352,757,"{'type': 'Point', 'coordinates': [-75.727352, 38.53644]}",8.047794,94.0630438602181 | |
21862,38.398053999999995,-75.22614200000001,106,"{'type': 'Point', 'coordinates': [-75.22614200000001, 38.398053999999995]}",3.347795,31.662631672488907 | |
21863,38.187913,-75.399041,5029,"{'type': 'Point', 'coordinates': [-75.399041, 38.187913]}",309.843268,16.230786721498173 | |
21864,38.031572,-75.405812,611,"{'type': 'Point', 'coordinates': [-75.405812, 38.031572]}",61.627592,9.914390294529113 | |
21865,38.287338,-75.841179,470,"{'type': 'Point', 'coordinates': [-75.841179, 38.287338]}",52.132729,9.015449776281613 | |
21866,37.967128,-76.021365,78,"{'type': 'Point', 'coordinates': [-76.021365, 37.967128]}",0.318387,244.98487689509938 | |
21867,38.109665,-75.793678,114,"{'type': 'Point', 'coordinates': [-75.793678, 38.109665]}",0.709891,160.5880339376045 | |
21869,38.438227000000005,-75.896268,1006,"{'type': 'Point', 'coordinates': [-75.896268, 38.438227000000005]}",279.894583,3.594210324534934 | |
21871,38.093785,-75.735688,2124,"{'type': 'Point', 'coordinates': [-75.735688, 38.093785]}",193.526888,10.975219112705412 | |
21872,38.41513,-75.29926,718,"{'type': 'Point', 'coordinates': [-75.29926, 38.41513]}",47.025025,15.26846609863578 | |
21874,38.391283,-75.351965,2210,"{'type': 'Point', 'coordinates': [-75.351965, 38.391283]}",69.371465,31.857479152271036 | |
21875,38.439999,-75.54469499999999,6467,"{'type': 'Point', 'coordinates': [-75.54469499999999, 38.439999]}",60.881786,106.22224518840495 | |
21890,38.157317,-75.70434300000001,3240,"{'type': 'Point', 'coordinates': [-75.70434300000001, 38.157317]}",0.344055,9417.09901033265 | |
21901,39.585403,-75.958964,15875,"{'type': 'Point', 'coordinates': [-75.958964, 39.585403]}",135.810581,116.89074505910551 | |
21902,39.551971,-76.063147,471,"{'type': 'Point', 'coordinates': [-76.063147, 39.551971]}",2.083345,226.07873395908982 | |
21903,39.573438,-76.039062,5687,"{'type': 'Point', 'coordinates': [-76.039062, 39.573438]}",31.648614,179.69191320668892 | |
21904,39.61549,-76.067988,7252,"{'type': 'Point', 'coordinates': [-76.067988, 39.61549]}",68.141599,106.42544505009342 | |
21911,39.695190000000004,-76.03148399999999,11004,"{'type': 'Point', 'coordinates': [-76.03148399999999, 39.695190000000004]}",97.021442,113.4182276944513 | |
21912,39.419414,-75.81863100000001,1240,"{'type': 'Point', 'coordinates': [-75.81863100000001, 39.419414]}",85.262877,14.543257788498035 | |
21913,39.404509000000004,-75.867609,663,"{'type': 'Point', 'coordinates': [-75.867609, 39.404509000000004]}",1.200104,552.4521208161959 | |
21914,39.572339,-75.978486,765,"{'type': 'Point', 'coordinates': [-75.978486, 39.572339]}",2.402628,318.4013505211793 | |
21915,39.496147,-75.848168,3030,"{'type': 'Point', 'coordinates': [-75.848168, 39.496147]}",77.790215,38.95091432772104 | |
21916,39.641288,-75.861562,37,"{'type': 'Point', 'coordinates': [-75.861562, 39.641288]}",0.235333,157.22401873090473 | |
21917,39.671632,-76.097397,2520,"{'type': 'Point', 'coordinates': [-76.097397, 39.671632]}",20.411556,123.45947560293786 | |
21918,39.678194,-76.175888,4284,"{'type': 'Point', 'coordinates': [-76.175888, 39.678194]}",52.36975,81.80294922164035 | |
21919,39.418555,-75.933718,3467,"{'type': 'Point', 'coordinates': [-75.933718, 39.418555]}",135.311251,25.62240740793979 | |
21920,39.657498,-75.828326,257,"{'type': 'Point', 'coordinates': [-75.828326, 39.657498]}",1.290328,199.17416346851346 | |
21921,39.627145,-75.859891,44471,"{'type': 'Point', 'coordinates': [-75.859891, 39.627145]}",259.046858,171.67164405445135 | |
21930,39.375659999999996,-75.88799300000001,94,"{'type': 'Point', 'coordinates': [-75.88799300000001, 39.375659999999996]}",2.093951,44.89121283162786 | |
22003,38.829817,-77.21531800000001,55990,"{'type': 'Point', 'coordinates': [-77.21531800000001, 38.829817]}",32.377898,1729.266056740311 | |
22015,38.787694,-77.278769,43102,"{'type': 'Point', 'coordinates': [-77.278769, 38.787694]}",21.933088,1965.1587592225953 | |
22025,38.597728000000004,-77.339458,17379,"{'type': 'Point', 'coordinates': [-77.339458, 38.597728000000004]}",18.06579,961.9839486676199 | |
22026,38.560041,-77.296214,14258,"{'type': 'Point', 'coordinates': [-77.296214, 38.560041]}",25.031936,569.5923799102075 | |
22027,38.894853000000005,-77.22304799999999,2362,"{'type': 'Point', 'coordinates': [-77.22304799999999, 38.894853000000005]}",1.678218,1407.4452782653982 | |
22030,38.837185,-77.34048,55066,"{'type': 'Point', 'coordinates': [-77.34048, 38.837185]}",49.130844,1120.8030539837662 | |
22031,38.858916,-77.260258,29795,"{'type': 'Point', 'coordinates': [-77.260258, 38.858916]}",17.811007,1672.8419678909788 | |
22032,38.817797,-77.290205,29377,"{'type': 'Point', 'coordinates': [-77.290205, 38.817797]}",19.417003,1512.952333581037 | |
22033,38.875218,-77.384713,37691,"{'type': 'Point', 'coordinates': [-77.384713, 38.875218]}",19.811413,1902.4892368858293 | |
22035,38.854725,-77.356983,0,"{'type': 'Point', 'coordinates': [-77.356983, 38.854725]}",0.460579,0.0 | |
22039,38.755963,-77.314172,18364,"{'type': 'Point', 'coordinates': [-77.314172, 38.755963]}",63.44545,289.44550003191716 | |
22041,38.849321,-77.141472,27989,"{'type': 'Point', 'coordinates': [-77.141472, 38.849321]}",7.575955,3694.451722588109 | |
22042,38.865024,-77.197125,33537,"{'type': 'Point', 'coordinates': [-77.197125, 38.865024]}",17.221306,1947.4132798058406 | |
22043,38.900858,-77.19588,24302,"{'type': 'Point', 'coordinates': [-77.19588, 38.900858]}",12.347157,1968.2263698436816 | |
22044,38.862044,-77.154372,14092,"{'type': 'Point', 'coordinates': [-77.154372, 38.862044]}",5.896161,2390.0297159456804 | |
22046,38.887166,-77.182369,16235,"{'type': 'Point', 'coordinates': [-77.182369, 38.887166]}",7.306595,2221.965224567668 | |
22060,38.693554999999996,-77.153213,8878,"{'type': 'Point', 'coordinates': [-77.153213, 38.693554999999996]}",38.2874,231.8778501543589 | |
22066,39.012384999999995,-77.301968,18099,"{'type': 'Point', 'coordinates': [-77.301968, 39.012384999999995]}",70.495355,256.7403199827847 | |
22079,38.674606,-77.209739,32059,"{'type': 'Point', 'coordinates': [-77.209739, 38.674606]}",93.240499,343.831278723637 | |
22101,38.940203000000004,-77.16488199999999,29887,"{'type': 'Point', 'coordinates': [-77.16488199999999, 38.940203000000004]}",35.440904,843.2911304971227 | |
22102,38.950951,-77.22955300000001,21985,"{'type': 'Point', 'coordinates': [-77.22955300000001, 38.950951]}",27.309171,805.0409146436558 | |
22124,38.894871,-77.329515,17558,"{'type': 'Point', 'coordinates': [-77.329515, 38.894871]}",26.468887,663.3448546589814 | |
22125,38.681862,-77.26249,711,"{'type': 'Point', 'coordinates': [-77.26249, 38.681862]}",0.432161,1645.220184144335 | |
22134,38.521701,-77.385053,6862,"{'type': 'Point', 'coordinates': [-77.385053, 38.521701]}",65.202146,105.24193482834139 | |
22150,38.772863,-77.186523,27105,"{'type': 'Point', 'coordinates': [-77.186523, 38.772863]}",19.587913,1383.7615063942749 | |
22151,38.804093,-77.20780400000001,17456,"{'type': 'Point', 'coordinates': [-77.20780400000001, 38.804093]}",13.639943,1279.7707439100002 | |
22152,38.774493,-77.232029,28550,"{'type': 'Point', 'coordinates': [-77.232029, 38.774493]}",15.546596,1836.4148653505888 | |
22153,38.744969,-77.23564,31285,"{'type': 'Point', 'coordinates': [-77.23564, 38.744969]}",23.434368,1335.005066063655 | |
22172,38.565028999999996,-77.370407,8699,"{'type': 'Point', 'coordinates': [-77.370407, 38.565028999999996]}",33.134172,262.5386262858779 | |
22180,38.895439,-77.25613299999999,23491,"{'type': 'Point', 'coordinates': [-77.25613299999999, 38.895439]}",15.054617,1560.3850964790402 | |
22181,38.906651000000004,-77.29338800000001,14879,"{'type': 'Point', 'coordinates': [-77.29338800000001, 38.906651000000004]}",14.813056,1004.4517485115833 | |
22182,38.938421000000005,-77.27552,24863,"{'type': 'Point', 'coordinates': [-77.27552, 38.938421000000005]}",30.620416,811.9745989081272 | |
22185,38.874604999999995,-77.304029,0,"{'type': 'Point', 'coordinates': [-77.304029, 38.874604999999995]}",0.166961,0.0 | |
22191,38.622914,-77.262938,57598,"{'type': 'Point', 'coordinates': [-77.262938, 38.622914]}",52.797901,1090.9145801080235 | |
22192,38.683699,-77.314673,53394,"{'type': 'Point', 'coordinates': [-77.314673, 38.683699]}",49.975144,1068.4111285402198 | |
22193,38.644195,-77.352,73047,"{'type': 'Point', 'coordinates': [-77.352, 38.644195]}",45.859313,1592.849853638235 | |
22201,38.886565000000004,-77.09523100000001,33476,"{'type': 'Point', 'coordinates': [-77.09523100000001, 38.886565000000004]}",6.05581,5527.914515151565 | |
22202,38.856868,-77.05149200000001,22543,"{'type': 'Point', 'coordinates': [-77.05149200000001, 38.856868]}",10.283522,2192.1477874992634 | |
22203,38.873718,-77.117325,21850,"{'type': 'Point', 'coordinates': [-77.117325, 38.873718]}",3.973177,5499.377450337601 | |
22204,38.860791,-77.098972,47233,"{'type': 'Point', 'coordinates': [-77.098972, 38.860791]}",10.662406,4429.863203483341 | |
22205,38.883499,-77.139547,17087,"{'type': 'Point', 'coordinates': [-77.139547, 38.883499]}",7.01502,2435.7735259486076 | |
22206,38.843919,-77.089398,19051,"{'type': 'Point', 'coordinates': [-77.089398, 38.843919]}",5.336519,3569.9301361055773 | |
22207,38.906665000000004,-77.124238,30920,"{'type': 'Point', 'coordinates': [-77.124238, 38.906665000000004]}",16.683268,1853.3539112360957 | |
22209,38.895022999999995,-77.075464,12314,"{'type': 'Point', 'coordinates': [-77.075464, 38.895022999999995]}",1.554207,7923.011542220567 | |
22211,38.880109999999995,-77.070778,648,"{'type': 'Point', 'coordinates': [-77.070778, 38.880109999999995]}",4.525011,143.2040717691073 | |
22213,38.895099,-77.16250699999999,2936,"{'type': 'Point', 'coordinates': [-77.16250699999999, 38.895099]}",1.504264,1951.7850590056 | |
22214,38.868818,-77.07396700000001,0,"{'type': 'Point', 'coordinates': [-77.07396700000001, 38.868818]}",0.104301,0.0 | |
22301,38.819893,-77.05958199999999,11162,"{'type': 'Point', 'coordinates': [-77.05958199999999, 38.819893]}",3.625534,3078.7188866522833 | |
22302,38.827888,-77.08313199999999,16485,"{'type': 'Point', 'coordinates': [-77.08313199999999, 38.827888]}",5.82427,2830.3976292307875 | |
22303,38.79438,-77.078837,12601,"{'type': 'Point', 'coordinates': [-77.078837, 38.79438]}",3.870076,3256.008409137185 | |
22304,38.813169,-77.112139,44300,"{'type': 'Point', 'coordinates': [-77.112139, 38.813169]}",12.242155,3618.643939731199 | |
22305,38.836463,-77.06209799999999,15440,"{'type': 'Point', 'coordinates': [-77.06209799999999, 38.836463]}",3.592963,4297.2888949872295 | |
22306,38.755738,-77.097779,32326,"{'type': 'Point', 'coordinates': [-77.097779, 38.755738]}",18.948586,1705.984815964632 | |
22307,38.771996,-77.057275,9581,"{'type': 'Point', 'coordinates': [-77.057275, 38.771996]}",9.763102,981.3479363423634 | |
22308,38.733509000000005,-77.061076,12737,"{'type': 'Point', 'coordinates': [-77.061076, 38.733509000000005]}",12.68692,1003.947372569544 | |
22309,38.720335999999996,-77.106155,33220,"{'type': 'Point', 'coordinates': [-77.106155, 38.720335999999996]}",21.69845,1530.984932103445 | |
22310,38.784071000000004,-77.122823,29609,"{'type': 'Point', 'coordinates': [-77.122823, 38.784071000000004]}",18.606941,1591.2878962748364 | |
22311,38.83362,-77.125462,17560,"{'type': 'Point', 'coordinates': [-77.125462, 38.83362]}",4.001361,4388.5068105577075 | |
22312,38.815789,-77.154271,30614,"{'type': 'Point', 'coordinates': [-77.154271, 38.815789]}",13.996175,2187.311890570102 | |
22314,38.806853000000004,-77.056374,29653,"{'type': 'Point', 'coordinates': [-77.056374, 38.806853000000004]}",10.546895,2811.538372193902 | |
22315,38.758336,-77.151189,26202,"{'type': 'Point', 'coordinates': [-77.151189, 38.758336]}",14.561713,1799.3762134990575 | |
22401,38.299271999999995,-77.48665799999999,24286,"{'type': 'Point', 'coordinates': [-77.48665799999999, 38.299271999999995]}",27.249916,891.2321050824524 | |
22405,38.313604,-77.40392800000001,29152,"{'type': 'Point', 'coordinates': [-77.40392800000001, 38.313604]}",141.83177,205.5392807972431 | |
22406,38.399766,-77.547312,20757,"{'type': 'Point', 'coordinates': [-77.547312, 38.399766]}",191.648227,108.30781126923758 | |
22407,38.283474,-77.575684,54962,"{'type': 'Point', 'coordinates': [-77.575684, 38.283474]}",150.347834,365.56562564113824 | |
22408,38.220271000000004,-77.443653,26851,"{'type': 'Point', 'coordinates': [-77.443653, 38.220271000000004]}",121.255862,221.4408405261265 | |
22427,38.093146000000004,-77.27112199999999,3286,"{'type': 'Point', 'coordinates': [-77.27112199999999, 38.093146000000004]}",398.89277,8.237802856141013 | |
22432,37.869524,-76.342347,394,"{'type': 'Point', 'coordinates': [-76.342347, 37.869524]}",12.702377,31.017816586612096 | |
22433,38.367057,-77.859386,232,"{'type': 'Point', 'coordinates': [-77.859386, 38.367057]}",10.891287,21.30143113481446 | |
22435,37.966791,-76.572106,2439,"{'type': 'Point', 'coordinates': [-76.572106, 37.966791]}",70.671284,34.511895949138264 | |
22436,37.996873,-77.023003,746,"{'type': 'Point', 'coordinates': [-77.023003, 37.996873]}",74.268813,10.044593011066436 | |
22437,37.786258000000004,-76.803286,725,"{'type': 'Point', 'coordinates': [-76.803286, 37.786258000000004]}",116.189767,6.239792184108605 | |
22438,38.041022,-76.98074100000001,463,"{'type': 'Point', 'coordinates': [-76.98074100000001, 38.041022]}",120.537649,3.8411235314536456 | |
22443,38.169514,-76.986805,8083,"{'type': 'Point', 'coordinates': [-76.986805, 38.169514]}",173.764033,46.51710633350689 | |
22448,38.336332,-77.028442,599,"{'type': 'Point', 'coordinates': [-77.028442, 38.336332]}",12.337053,48.552924268056564 | |
22454,37.844032,-76.833646,1796,"{'type': 'Point', 'coordinates': [-76.833646, 37.844032]}",120.996562,14.843396955361426 | |
22460,37.869283,-76.607359,1876,"{'type': 'Point', 'coordinates': [-76.607359, 37.869283]}",163.003637,11.508945656224837 | |
22469,38.082265,-76.65030300000001,1921,"{'type': 'Point', 'coordinates': [-76.65030300000001, 38.082265]}",88.597328,21.682369472812994 | |
22473,37.887476,-76.420749,5099,"{'type': 'Point', 'coordinates': [-76.420749, 37.887476]}",318.454443,16.01170940485198 | |
22476,38.051097,-77.072623,369,"{'type': 'Point', 'coordinates': [-77.072623, 38.051097]}",46.328358,7.964884056542647 | |
22480,37.662535999999996,-76.412242,714,"{'type': 'Point', 'coordinates': [-76.412242, 37.662535999999996]}",7.464331,95.65492205530543 | |
22482,37.735631,-76.346113,2993,"{'type': 'Point', 'coordinates': [-76.346113, 37.735631]}",97.535567,30.686241871131994 | |
22485,38.277049,-77.162769,23004,"{'type': 'Point', 'coordinates': [-77.162769, 38.277049]}",474.361406,48.49467032737482 | |
22488,38.049455,-76.58748100000001,1398,"{'type': 'Point', 'coordinates': [-76.58748100000001, 38.049455]}",77.621237,18.010534926156872 | |
22503,37.750474,-76.515326,4334,"{'type': 'Point', 'coordinates': [-76.515326, 37.750474]}",299.109796,14.48966251844189 | |
22504,37.768923,-76.72068,263,"{'type': 'Point', 'coordinates': [-76.72068, 37.768923]}",31.535889,8.339704645713333 | |
22508,38.313187,-77.798472,12696,"{'type': 'Point', 'coordinates': [-77.798472, 38.313187]}",146.150772,86.86919560028052 | |
22509,38.120518,-77.079949,31,"{'type': 'Point', 'coordinates': [-77.079949, 38.120518]}",37.646024,0.823460134860457 | |
22511,37.991033,-76.504028,1240,"{'type': 'Point', 'coordinates': [-76.504028, 37.991033]}",48.645322,25.490631966625692 | |
22514,37.991820000000004,-77.417433,2603,"{'type': 'Point', 'coordinates': [-77.417433, 37.991820000000004]}",228.558912,11.388748647875959 | |
22520,38.121783,-76.80345799999999,5402,"{'type': 'Point', 'coordinates': [-76.80345799999999, 38.121783]}",266.974278,20.23415903759837 | |
22529,38.011551000000004,-76.689548,335,"{'type': 'Point', 'coordinates': [-76.689548, 38.011551000000004]}",28.598068,11.71407802792832 | |
22530,37.897826,-76.293047,126,"{'type': 'Point', 'coordinates': [-76.293047, 37.897826]}",5.34152,23.588791205499557 | |
22534,38.077216,-77.672105,2796,"{'type': 'Point', 'coordinates': [-77.672105, 38.077216]}",88.1917,31.70366372345697 | |
22535,38.154753,-77.162537,580,"{'type': 'Point', 'coordinates': [-77.162537, 38.154753]}",30.037811,19.30899691725206 | |
22538,38.192176,-77.26218399999999,307,"{'type': 'Point', 'coordinates': [-77.26218399999999, 38.192176]}",37.652017,8.153613656341438 | |
22539,37.860613,-76.286036,2063,"{'type': 'Point', 'coordinates': [-76.286036, 37.860613]}",58.224234,35.43198181018577 | |
22542,38.293517,-77.880863,1950,"{'type': 'Point', 'coordinates': [-77.880863, 38.293517]}",53.660559,36.33953943714973 | |
22546,37.942668,-77.448666,15850,"{'type': 'Point', 'coordinates': [-77.448666, 37.942668]}",425.186174,37.27778787087277 | |
22548,37.815803,-76.704785,73,"{'type': 'Point', 'coordinates': [-76.704785, 37.815803]}",7.66245,9.52697896886766 | |
22551,38.169838,-77.700023,19242,"{'type': 'Point', 'coordinates': [-77.700023, 38.169838]}",458.192683,41.99543273806492 | |
22553,38.271202,-77.649295,13935,"{'type': 'Point', 'coordinates': [-77.649295, 38.271202]}",118.816414,117.28177556343353 | |
22554,38.427352,-77.367672,51463,"{'type': 'Point', 'coordinates': [-77.367672, 38.427352]}",187.346628,274.69402865366754 | |
22556,38.468925,-77.515244,25675,"{'type': 'Point', 'coordinates': [-77.515244, 38.468925]}",82.70669,310.434379613064 | |
22560,37.91585,-76.961086,6704,"{'type': 'Point', 'coordinates': [-76.961086, 37.91585]}",256.439604,26.14260783213501 | |
22567,38.237857,-77.927575,3163,"{'type': 'Point', 'coordinates': [-77.927575, 38.237857]}",122.069813,25.9114020269696 | |
22572,37.965301000000004,-76.771067,7470,"{'type': 'Point', 'coordinates': [-76.771067, 37.965301000000004]}",404.348529,18.474161433143237 | |
22576,37.671046000000004,-76.4557,1785,"{'type': 'Point', 'coordinates': [-76.4557, 37.671046000000004]}",44.132327,40.446541602032454 | |
22578,37.636571,-76.356134,2510,"{'type': 'Point', 'coordinates': [-76.356134, 37.636571]}",102.15453,24.570618650000153 | |
22579,37.795598,-76.314938,155,"{'type': 'Point', 'coordinates': [-76.314938, 37.795598]}",3.429318,45.198491361839295 | |
22580,38.109182000000004,-77.445683,5160,"{'type': 'Point', 'coordinates': [-77.445683, 38.109182000000004]}",234.73008,21.98269603963838 | |
22601,39.174203000000006,-78.174289,27813,"{'type': 'Point', 'coordinates': [-78.174289, 39.174203000000006]}",25.499865,1090.7116567087708 | |
22602,39.144249,-78.284807,28443,"{'type': 'Point', 'coordinates': [-78.284807, 39.144249]}",286.780384,99.18042372103106 | |
22603,39.269354,-78.21327,13910,"{'type': 'Point', 'coordinates': [-78.21327, 39.269354]}",254.80293,54.591208978640864 | |
22610,38.824656,-78.279143,1842,"{'type': 'Point', 'coordinates': [-78.279143, 38.824656]}",135.476555,13.596448477745836 | |
22611,39.168882,-77.984613,8757,"{'type': 'Point', 'coordinates': [-77.984613, 39.168882]}",210.738182,41.55393159840394 | |
22620,39.068186,-78.032279,2348,"{'type': 'Point', 'coordinates': [-78.032279, 39.068186]}",121.152918,19.380465933144094 | |
22623,38.848927,-78.140664,670,"{'type': 'Point', 'coordinates': [-78.140664, 38.848927]}",3.123289,214.51745259564515 | |
22624,39.269784,-78.091841,2565,"{'type': 'Point', 'coordinates': [-78.091841, 39.269784]}",50.120116,51.17705633402763 | |
22625,39.376805,-78.309326,3641,"{'type': 'Point', 'coordinates': [-78.309326, 39.376805]}",114.264932,31.864544408077887 | |
22627,38.757918,-78.14456899999999,637,"{'type': 'Point', 'coordinates': [-78.14456899999999, 38.757918]}",85.429505,7.456440254453072 | |
22630,38.930914,-78.17648,30292,"{'type': 'Point', 'coordinates': [-78.17648, 38.930914]}",343.588318,88.16364938228196 | |
22637,39.256917,-78.352305,1970,"{'type': 'Point', 'coordinates': [-78.352305, 39.256917]}",116.212774,16.951664883242525 | |
22639,38.813779,-78.019064,560,"{'type': 'Point', 'coordinates': [-78.019064, 38.813779]}",48.699998,11.49897377819194 | |
22640,38.811028,-78.14057,532,"{'type': 'Point', 'coordinates': [-78.14057, 38.811028]}",61.365688,8.669339778281309 | |
22641,39.085207000000004,-78.385868,361,"{'type': 'Point', 'coordinates': [-78.385868, 39.085207000000004]}",17.187049,21.00418751351672 | |
22642,38.946977000000004,-78.012072,4414,"{'type': 'Point', 'coordinates': [-78.012072, 38.946977000000004]}",132.809541,33.235564002137465 | |
22643,38.885375,-77.983519,197,"{'type': 'Point', 'coordinates': [-77.983519, 38.885375]}",14.890884,13.229570521132258 | |
22644,38.949771999999996,-78.486478,2177,"{'type': 'Point', 'coordinates': [-78.486478, 38.949771999999996]}",97.743082,22.272676034504418 | |
22645,39.019181,-78.27470600000001,3880,"{'type': 'Point', 'coordinates': [-78.27470600000001, 39.019181]}",93.298006,41.587169612177995 | |
22646,39.072518,-78.05092900000001,205,"{'type': 'Point', 'coordinates': [-78.05092900000001, 39.072518]}",5.094138,40.242333442871 | |
22650,38.765084,-78.364632,978,"{'type': 'Point', 'coordinates': [-78.364632, 38.765084]}",75.677672,12.923230513750475 | |
22652,38.840090999999994,-78.431748,1399,"{'type': 'Point', 'coordinates': [-78.431748, 38.840090999999994]}",182.830404,7.651900173014988 | |
22654,38.988129,-78.572379,640,"{'type': 'Point', 'coordinates': [-78.572379, 38.988129]}",160.24334,3.9939257381929263 | |
22655,39.068321000000005,-78.209535,19328,"{'type': 'Point', 'coordinates': [-78.209535, 39.068321000000005]}",91.488646,211.26118753577356 | |
22656,39.219255,-78.089345,2381,"{'type': 'Point', 'coordinates': [-78.089345, 39.219255]}",21.865319,108.89390637291869 | |
22657,39.00255,-78.376178,10956,"{'type': 'Point', 'coordinates': [-78.376178, 39.00255]}",163.042944,67.19702019119576 | |
22660,38.944111,-78.43151999999999,1689,"{'type': 'Point', 'coordinates': [-78.43151999999999, 38.944111]}",24.177954,69.85702760456903 | |
22663,39.052545,-78.11232,1536,"{'type': 'Point', 'coordinates': [-78.11232, 39.052545]}",57.407304,26.756177227901173 | |
22664,38.888919,-78.532453,8753,"{'type': 'Point', 'coordinates': [-78.532453, 38.888919]}",131.474215,66.57579206690833 | |
22701,38.438777,-77.996261,31444,"{'type': 'Point', 'coordinates': [-77.996261, 38.438777]}",426.715828,73.68838448617379 | |
22709,38.328731,-78.213737,874,"{'type': 'Point', 'coordinates': [-78.213737, 38.328731]}",33.429798,26.14433984913699 | |
22711,38.467129,-78.274978,92,"{'type': 'Point', 'coordinates': [-78.274978, 38.467129]}",5.980938,15.382202590964829 | |
22712,38.564008,-77.75724699999999,8415,"{'type': 'Point', 'coordinates': [-77.75724699999999, 38.564008]}",94.325285,89.21255843541846 | |
22713,38.560716,-78.11881600000001,1406,"{'type': 'Point', 'coordinates': [-78.11881600000001, 38.560716]}",69.28428,20.293203595389894 | |
22714,38.519671,-77.89541899999999,1129,"{'type': 'Point', 'coordinates': [-77.89541899999999, 38.519671]}",58.364328,19.344007524596186 | |
22715,38.413954,-78.18469499999999,1082,"{'type': 'Point', 'coordinates': [-78.18469499999999, 38.413954]}",23.559578,45.92611972930925 | |
22716,38.62999,-78.103016,853,"{'type': 'Point', 'coordinates': [-78.103016, 38.62999]}",65.149466,13.092969940843414 | |
22718,38.477181,-77.82746,534,"{'type': 'Point', 'coordinates': [-77.82746, 38.477181]}",64.050369,8.337188502380057 | |
22719,38.534889,-78.281252,395,"{'type': 'Point', 'coordinates': [-78.281252, 38.534889]}",52.799022,7.481199178272658 | |
22720,38.474956,-77.64410699999999,1059,"{'type': 'Point', 'coordinates': [-77.64410699999999, 38.474956]}",53.786012,19.689134044740108 | |
22722,38.46625,-78.227059,273,"{'type': 'Point', 'coordinates': [-78.227059, 38.46625]}",9.13029,29.90047413608987 | |
22723,38.334604999999996,-78.380361,128,"{'type': 'Point', 'coordinates': [-78.380361, 38.334604999999996]}",11.122752,11.507943357902793 | |
22724,38.614645,-77.89398100000001,2282,"{'type': 'Point', 'coordinates': [-77.89398100000001, 38.614645]}",55.083285,41.428175534556445 | |
22726,38.3982,-77.816535,776,"{'type': 'Point', 'coordinates': [-77.816535, 38.3982]}",41.263285,18.806064519584417 | |
22727,38.407594,-78.295292,5547,"{'type': 'Point', 'coordinates': [-78.295292, 38.407594]}",263.096258,21.08353817787861 | |
22728,38.596544,-77.675692,3310,"{'type': 'Point', 'coordinates': [-77.675692, 38.596544]}",117.746041,28.11134855905686 | |
22729,38.374194,-78.017758,1338,"{'type': 'Point', 'coordinates': [-78.017758, 38.374194]}",14.503526,92.253428580057 | |
22730,38.374423,-78.15845999999999,115,"{'type': 'Point', 'coordinates': [-78.15845999999999, 38.374423]}",8.864912,12.972491999920585 | |
22731,38.336564,-78.25733100000001,139,"{'type': 'Point', 'coordinates': [-78.25733100000001, 38.336564]}",2.296849,60.517691846525395 | |
22732,38.31463,-78.18988399999999,191,"{'type': 'Point', 'coordinates': [-78.18988399999999, 38.31463]}",4.379734,43.60995439449062 | |
22733,38.333259999999996,-78.046145,1469,"{'type': 'Point', 'coordinates': [-78.046145, 38.333259999999996]}",123.688034,11.87665413131233 | |
22734,38.52618,-77.794566,3187,"{'type': 'Point', 'coordinates': [-77.794566, 38.52618]}",78.668536,40.51174919538352 | |
22735,38.476898,-78.174226,2277,"{'type': 'Point', 'coordinates': [-78.174226, 38.476898]}",86.299049,26.38499527381814 | |
22736,38.398165000000006,-77.704567,732,"{'type': 'Point', 'coordinates': [-77.704567, 38.398165000000006]}",75.753564,9.66291170142173 | |
22737,38.580890999999994,-78.01411999999999,2936,"{'type': 'Point', 'coordinates': [-78.01411999999999, 38.580890999999994]}",105.427735,27.848459421043238 | |
22738,38.293931,-78.28093100000001,1149,"{'type': 'Point', 'coordinates': [-78.28093100000001, 38.293931]}",70.49309,16.299469919675815 | |
22740,38.64569,-78.286953,1313,"{'type': 'Point', 'coordinates': [-78.286953, 38.64569]}",204.54815,6.419026522606047 | |
22741,38.426443,-77.86838900000001,182,"{'type': 'Point', 'coordinates': [-77.86838900000001, 38.426443]}",21.66221,8.401728170856066 | |
22742,38.466332,-77.71507199999999,1926,"{'type': 'Point', 'coordinates': [-77.71507199999999, 38.466332]}",57.692919,33.383646266884156 | |
22743,38.540040000000005,-78.381412,204,"{'type': 'Point', 'coordinates': [-78.381412, 38.540040000000005]}",157.516921,1.2950989563845017 | |
22747,38.709056,-78.165674,1132,"{'type': 'Point', 'coordinates': [-78.165674, 38.709056]}",100.863307,11.223110104847146 | |
22749,38.619655,-78.180235,349,"{'type': 'Point', 'coordinates': [-78.180235, 38.619655]}",50.029868,6.97583291644903 | |
22801,38.403645000000004,-78.875125,37989,"{'type': 'Point', 'coordinates': [-78.875125, 38.403645000000004]}",84.41848,450.00810249130285 | |
22802,38.494378000000005,-78.863122,26293,"{'type': 'Point', 'coordinates': [-78.863122, 38.494378000000005]}",234.892381,111.93636799994803 | |
22807,38.43397,-78.86787,3311,"{'type': 'Point', 'coordinates': [-78.86787, 38.43397]}",1.159425,2855.725898613537 | |
22810,38.827090999999996,-78.796534,863,"{'type': 'Point', 'coordinates': [-78.796534, 38.827090999999996]}",64.936761,13.289852877016763 | |
22811,38.811318,-78.992036,500,"{'type': 'Point', 'coordinates': [-78.992036, 38.811318]}",82.115436,6.088989163986172 | |
22812,38.378077000000005,-79.02717,8927,"{'type': 'Point', 'coordinates': [-79.02717, 38.378077000000005]}",112.887913,79.07843951371481 | |
22815,38.608545,-78.89009399999999,8355,"{'type': 'Point', 'coordinates': [-78.89009399999999, 38.608545]}",186.574728,44.780984485744504 | |
22820,38.704836,-79.019048,214,"{'type': 'Point', 'coordinates': [-79.019048, 38.704836]}",58.36658,3.6664817434908814 | |
22821,38.480717,-79.12876700000001,5753,"{'type': 'Point', 'coordinates': [-79.12876700000001, 38.480717]}",212.754927,27.040501863442156 | |
22824,38.836073999999996,-78.631822,6018,"{'type': 'Point', 'coordinates': [-78.631822, 38.836073999999996]}",224.16465,26.846338171518124 | |
22827,38.410693,-78.59644,10388,"{'type': 'Point', 'coordinates': [-78.59644, 38.410693]}",356.002602,29.17956200780802 | |
22830,38.66726,-78.975031,1773,"{'type': 'Point', 'coordinates': [-78.975031, 38.66726]}",292.251323,6.066696231859316 | |
22831,38.576502000000005,-79.07624200000001,813,"{'type': 'Point', 'coordinates': [-79.07624200000001, 38.576502000000005]}",157.730715,5.154354369090383 | |
22832,38.454916,-78.759702,1091,"{'type': 'Point', 'coordinates': [-78.759702, 38.454916]}",63.242185,17.251143362614684 | |
22834,38.559256,-78.860046,1250,"{'type': 'Point', 'coordinates': [-78.860046, 38.559256]}",46.153535,27.083515921369838 | |
22835,38.669963,-78.453689,11634,"{'type': 'Point', 'coordinates': [-78.453689, 38.669963]}",394.746429,29.47208421738503 | |
22840,38.341806,-78.805324,4354,"{'type': 'Point', 'coordinates': [-78.805324, 38.341806]}",68.812751,63.2731570345153 | |
22841,38.341793,-78.892489,2791,"{'type': 'Point', 'coordinates': [-78.892489, 38.341793]}",82.054084,34.01415095926243 | |
22842,38.778048,-78.69966099999999,5063,"{'type': 'Point', 'coordinates': [-78.69966099999999, 38.778048]}",188.631684,26.840665855477386 | |
22843,38.387106,-79.142649,2458,"{'type': 'Point', 'coordinates': [-79.142649, 38.387106]}",293.904894,8.3632496436075 | |
22844,38.661561,-78.658119,4528,"{'type': 'Point', 'coordinates': [-78.658119, 38.661561]}",126.451871,35.80809017843635 | |
22845,38.786332,-78.8164,33,"{'type': 'Point', 'coordinates': [-78.8164, 38.786332]}",3.426433,9.631006939286424 | |
22846,38.389348,-78.78624,1855,"{'type': 'Point', 'coordinates': [-78.78624, 38.389348]}",28.879123,64.23325251255032 | |
22847,38.730637,-78.717385,1066,"{'type': 'Point', 'coordinates': [-78.717385, 38.730637]}",53.898017,19.7780931346695 | |
22849,38.525324,-78.629627,5044,"{'type': 'Point', 'coordinates': [-78.629627, 38.525324]}",123.598016,40.80971655726254 | |
22850,38.559676,-78.92434399999999,899,"{'type': 'Point', 'coordinates': [-78.92434399999999, 38.559676]}",31.237954,28.779093534743026 | |
22851,38.563053000000004,-78.512907,5956,"{'type': 'Point', 'coordinates': [-78.512907, 38.563053000000004]}",143.72101,41.441400947571964 | |
22853,38.651705,-78.758708,4367,"{'type': 'Point', 'coordinates': [-78.758708, 38.651705]}",95.095335,45.92233677919111 | |
22901,38.087705,-78.55274399999999,32532,"{'type': 'Point', 'coordinates': [-78.55274399999999, 38.087705]}",137.652283,236.33462003677772 | |
22902,37.908044,-78.404196,21223,"{'type': 'Point', 'coordinates': [-78.404196, 37.908044]}",163.519137,129.78909006839976 | |
22903,38.006972,-78.59506,38229,"{'type': 'Point', 'coordinates': [-78.59506, 38.006972]}",197.087849,193.9693400378021 | |
22904,38.031957,-78.52403000000001,4633,"{'type': 'Point', 'coordinates': [-78.52403000000001, 38.031957]}",1.66803,2777.5279821106337 | |
22911,38.097004999999996,-78.410147,15971,"{'type': 'Point', 'coordinates': [-78.410147, 38.097004999999996]}",133.71253,119.4428076411388 | |
22920,37.968714,-78.805539,4186,"{'type': 'Point', 'coordinates': [-78.805539, 37.968714]}",196.278343,21.326856218671054 | |
22922,37.693701000000004,-78.92176500000001,1993,"{'type': 'Point', 'coordinates': [-78.92176500000001, 37.693701000000004]}",131.98477,15.100227094383694 | |
22923,38.189313,-78.31668,5035,"{'type': 'Point', 'coordinates': [-78.31668, 38.189313]}",130.763154,38.504730468645626 | |
22931,37.898931,-78.727429,382,"{'type': 'Point', 'coordinates': [-78.727429, 37.898931]}",47.104137,8.109691087218092 | |
22932,38.147507,-78.69645799999999,7488,"{'type': 'Point', 'coordinates': [-78.69645799999999, 38.147507]}",281.471604,26.603038791792297 | |
22935,38.253952000000005,-78.562664,926,"{'type': 'Point', 'coordinates': [-78.562664, 38.253952000000005]}",55.82268,16.588239762046538 | |
22936,38.159998,-78.499128,4853,"{'type': 'Point', 'coordinates': [-78.499128, 38.159998]}",96.095269,50.50196591884247 | |
22937,37.797228999999994,-78.61920699999999,1486,"{'type': 'Point', 'coordinates': [-78.61920699999999, 37.797228999999994]}",119.326956,12.453179481088917 | |
22938,37.865862,-78.794527,1444,"{'type': 'Point', 'coordinates': [-78.794527, 37.865862]}",110.300108,13.091555631115067 | |
22939,38.105779,-78.97403100000001,5398,"{'type': 'Point', 'coordinates': [-78.97403100000001, 38.105779]}",43.495674,124.10429598125091 | |
22940,38.285723,-78.64017199999999,1119,"{'type': 'Point', 'coordinates': [-78.64017199999999, 38.285723]}",81.744813,13.68894195158291 | |
22942,38.101442999999996,-78.202129,8113,"{'type': 'Point', 'coordinates': [-78.202129, 38.101442999999996]}",291.46947,27.83481920078971 | |
22943,38.040171,-78.778343,444,"{'type': 'Point', 'coordinates': [-78.778343, 38.040171]}",14.79737,30.00533202859697 | |
22946,37.858585,-78.571382,244,"{'type': 'Point', 'coordinates': [-78.571382, 37.858585]}",11.133918,21.91501679821964 | |
22947,38.043989,-78.324721,4198,"{'type': 'Point', 'coordinates': [-78.324721, 38.043989]}",113.736242,36.909958744724484 | |
22948,38.363165,-78.128968,305,"{'type': 'Point', 'coordinates': [-78.128968, 38.363165]}",15.043206,20.27493341512441 | |
22949,37.789079,-78.88344000000001,1300,"{'type': 'Point', 'coordinates': [-78.88344000000001, 37.789079]}",95.314792,13.639016281963874 | |
22952,37.963561999999996,-78.96274100000001,2029,"{'type': 'Point', 'coordinates': [-78.96274100000001, 37.963561999999996]}",127.826334,15.873098574508129 | |
22958,37.892769,-78.89429200000001,1637,"{'type': 'Point', 'coordinates': [-78.89429200000001, 37.892769]}",75.444021,21.698207204517903 | |
22959,37.937275,-78.656588,1578,"{'type': 'Point', 'coordinates': [-78.656588, 37.937275]}",100.818712,15.651856373646194 | |
22960,38.219183,-78.072698,10722,"{'type': 'Point', 'coordinates': [-78.072698, 38.219183]}",337.47438,31.771300683625228 | |
22963,37.848104,-78.305112,15401,"{'type': 'Point', 'coordinates': [-78.305112, 37.848104]}",319.501018,48.20328929280595 | |
22964,37.731946,-78.997585,261,"{'type': 'Point', 'coordinates': [-78.997585, 37.731946]}",19.463702,13.409576451591787 | |
22967,37.797305,-79.014082,1956,"{'type': 'Point', 'coordinates': [-79.014082, 37.797305]}",202.662439,9.651517122025753 | |
22968,38.240602,-78.400888,9815,"{'type': 'Point', 'coordinates': [-78.400888, 38.240602]}",100.572887,97.59091433857319 | |
22969,37.7975,-78.693372,1437,"{'type': 'Point', 'coordinates': [-78.693372, 37.7975]}",113.533007,12.6571121295149 | |
22971,37.745121000000005,-78.793177,1735,"{'type': 'Point', 'coordinates': [-78.793177, 37.745121000000005]}",139.49011,12.438157802011915 | |
22972,38.215776,-78.230285,439,"{'type': 'Point', 'coordinates': [-78.230285, 38.215776]}",37.230179,11.791509248451371 | |
22973,38.335895,-78.478685,6191,"{'type': 'Point', 'coordinates': [-78.478685, 38.335895]}",265.500502,23.318223330515586 | |
22974,37.972582,-78.28445500000001,5385,"{'type': 'Point', 'coordinates': [-78.28445500000001, 37.972582]}",105.540793,51.022925325186826 | |
22976,37.812764,-79.056685,339,"{'type': 'Point', 'coordinates': [-79.056685, 37.812764]}",100.505955,3.3729344694053203 | |
22980,38.099858000000005,-78.880549,31451,"{'type': 'Point', 'coordinates': [-78.880549, 38.099858000000005]}",193.847376,162.2461992985657 | |
22989,38.288682,-78.131066,112,"{'type': 'Point', 'coordinates': [-78.131066, 38.288682]}",3.886058,28.820980026546184 | |
23002,37.35106,-77.967875,10439,"{'type': 'Point', 'coordinates': [-77.967875, 37.35106]}",677.963467,15.397584837709255 | |
23004,37.688288,-78.399202,851,"{'type': 'Point', 'coordinates': [-78.399202, 37.688288]}",102.817859,8.276772228840128 | |
23005,37.759696000000005,-77.48187,15227,"{'type': 'Point', 'coordinates': [-77.48187, 37.759696000000005]}",175.845624,86.59299932308808 | |
23009,37.820938,-77.181166,6279,"{'type': 'Point', 'coordinates': [-77.181166, 37.820938]}",203.465128,30.86032511674433 | |
23011,37.477354,-76.81245,1429,"{'type': 'Point', 'coordinates': [-76.81245, 37.477354]}",67.495116,21.171902275121656 | |
23015,37.929812,-77.626248,4249,"{'type': 'Point', 'coordinates': [-77.626248, 37.929812]}",211.875686,20.054212355446957 | |
23021,37.389948,-76.373522,345,"{'type': 'Point', 'coordinates': [-76.373522, 37.389948]}",13.241911,26.05364135131251 | |
23022,37.731004,-78.263155,930,"{'type': 'Point', 'coordinates': [-78.263155, 37.731004]}",69.609785,13.360190668596376 | |
23023,37.768958000000005,-76.963729,323,"{'type': 'Point', 'coordinates': [-76.963729, 37.768958000000005]}",52.134873,6.19546920158413 | |
23024,37.927752000000005,-77.779274,8120,"{'type': 'Point', 'coordinates': [-77.779274, 37.927752000000005]}",301.977459,26.88942422023625 | |
23025,37.41516,-76.36241600000001,233,"{'type': 'Point', 'coordinates': [-76.36241600000001, 37.41516]}",3.819791,60.99810172860243 | |
23027,37.646476,-78.130174,1413,"{'type': 'Point', 'coordinates': [-78.130174, 37.646476]}",118.741274,11.899821792378612 | |
23030,37.345958,-77.055314,5128,"{'type': 'Point', 'coordinates': [-77.055314, 37.345958]}",437.889705,11.710711490693757 | |
23032,37.655782,-76.66921500000001,283,"{'type': 'Point', 'coordinates': [-76.66921500000001, 37.655782]}",44.127263,6.4132688220431895 | |
23035,37.489338000000004,-76.390866,1473,"{'type': 'Point', 'coordinates': [-76.390866, 37.489338000000004]}",45.513323,32.364149723807245 | |
23038,37.753464,-78.14878900000001,1775,"{'type': 'Point', 'coordinates': [-78.14878900000001, 37.753464]}",196.67221,9.025169341413308 | |
23039,37.656565,-77.812465,1056,"{'type': 'Point', 'coordinates': [-77.812465, 37.656565]}",39.502336,26.732596269749717 | |
23040,37.501366,-78.251847,4661,"{'type': 'Point', 'coordinates': [-78.251847, 37.501366]}",384.156181,12.13308604814561 | |
23043,37.562083,-76.35027600000001,1692,"{'type': 'Point', 'coordinates': [-76.35027600000001, 37.562083]}",39.958571,42.343856590867574 | |
23045,37.425348,-76.26880799999999,96,"{'type': 'Point', 'coordinates': [-76.26880799999999, 37.425348]}",7.519039,12.76758904961126 | |
23047,37.843384,-77.473917,1952,"{'type': 'Point', 'coordinates': [-77.473917, 37.843384]}",124.865181,15.63286085333909 | |
23050,37.497944,-76.426325,598,"{'type': 'Point', 'coordinates': [-76.426325, 37.497944]}",11.932123,50.11681492053007 | |
23055,37.768214,-78.217011,915,"{'type': 'Point', 'coordinates': [-78.217011, 37.768214]}",40.984306,22.325618982056206 | |
23056,37.35648,-76.362611,458,"{'type': 'Point', 'coordinates': [-76.362611, 37.35648]}",25.469183,17.982516361046994 | |
23059,37.702252,-77.573995,31919,"{'type': 'Point', 'coordinates': [-77.573995, 37.702252]}",120.219909,265.5051086421967 | |
23060,37.659706,-77.533888,33417,"{'type': 'Point', 'coordinates': [-77.533888, 37.659706]}",39.724971,841.2089212097852 | |
23061,37.427731,-76.537584,21208,"{'type': 'Point', 'coordinates': [-76.537584, 37.427731]}",495.61977,42.790867684717256 | |
23062,37.262931,-76.507489,2340,"{'type': 'Point', 'coordinates': [-76.507489, 37.262931]}",8.945695,261.5783346067578 | |
23063,37.712553,-78.00613,5278,"{'type': 'Point', 'coordinates': [-78.00613, 37.712553]}",269.51349,19.58343532266233 | |
23064,37.496862,-76.29938299999999,131,"{'type': 'Point', 'coordinates': [-76.29938299999999, 37.496862]}",1.246448,105.09864831906346 | |
23065,37.805959,-77.932428,1909,"{'type': 'Point', 'coordinates': [-77.932428, 37.805959]}",56.685576,33.67699747815917 | |
23066,37.495638,-76.286585,471,"{'type': 'Point', 'coordinates': [-76.286585, 37.495638]}",12.729185,37.00158336924163 | |
23068,37.500686,-76.335139,257,"{'type': 'Point', 'coordinates': [-76.335139, 37.500686]}",6.438834,39.91405897403163 | |
23069,37.771537,-77.322377,3197,"{'type': 'Point', 'coordinates': [-77.322377, 37.771537]}",143.472631,22.282995563104993 | |
23070,37.552199,-76.38898499999999,431,"{'type': 'Point', 'coordinates': [-76.38898499999999, 37.552199]}",9.338099,46.155004353669845 | |
23071,37.545428,-76.448594,1563,"{'type': 'Point', 'coordinates': [-76.448594, 37.545428]}",39.824279,39.24741487473006 | |
23072,37.290444,-76.44779,11541,"{'type': 'Point', 'coordinates': [-76.44779, 37.290444]}",180.830773,63.82210178352774 | |
23075,37.557873,-77.313137,9819,"{'type': 'Point', 'coordinates': [-77.313137, 37.557873]}",12.509895,784.8986742094958 | |
23076,37.478376000000004,-76.300342,606,"{'type': 'Point', 'coordinates': [-76.300342, 37.478376000000004]}",15.079419,40.1872247199975 | |
23079,37.716884,-76.67474,437,"{'type': 'Point', 'coordinates': [-76.67474, 37.716884]}",71.709884,6.093999538473664 | |
23083,37.308039,-78.117329,1732,"{'type': 'Point', 'coordinates': [-78.117329, 37.308039]}",147.429056,11.748023401845563 | |
23084,37.884931,-78.115047,1799,"{'type': 'Point', 'coordinates': [-78.115047, 37.884931]}",107.060382,16.803601541418 | |
23085,37.715457,-76.83198900000001,364,"{'type': 'Point', 'coordinates': [-76.83198900000001, 37.715457]}",113.030889,3.220358640194363 | |
23086,37.668572999999995,-77.05441400000001,3247,"{'type': 'Point', 'coordinates': [-77.05441400000001, 37.668572999999995]}",222.349851,14.603113001411456 | |
23089,37.455795,-76.903501,4914,"{'type': 'Point', 'coordinates': [-76.903501, 37.455795]}",173.509347,28.321240814767172 | |
23091,37.650958,-76.799018,309,"{'type': 'Point', 'coordinates': [-76.799018, 37.650958]}",61.76889,5.002518257977438 | |
23092,37.606769,-76.514748,584,"{'type': 'Point', 'coordinates': [-76.514748, 37.606769]}",18.596758,31.40332309534812 | |
23093,38.004166999999995,-78.04005699999999,12694,"{'type': 'Point', 'coordinates': [-78.04005699999999, 38.004166999999995]}",545.513048,23.269837534665164 | |
23102,37.708119,-77.828654,2659,"{'type': 'Point', 'coordinates': [-77.828654, 37.708119]}",79.507319,33.44346197863872 | |
23103,37.648034,-77.72364,4634,"{'type': 'Point', 'coordinates': [-77.72364, 37.648034]}",100.399353,46.15567592352911 | |
23106,37.716107,-77.201511,976,"{'type': 'Point', 'coordinates': [-77.201511, 37.716107]}",70.951136,13.755946064063018 | |
23108,37.644740999999996,-76.73461400000001,161,"{'type': 'Point', 'coordinates': [-76.73461400000001, 37.644740999999996]}",33.193241,4.850385052788307 | |
23109,37.432741,-76.332514,1821,"{'type': 'Point', 'coordinates': [-76.332514, 37.432741]}",49.001112,37.16242194666929 | |
23110,37.58282,-76.771108,794,"{'type': 'Point', 'coordinates': [-76.771108, 37.58282]}",63.31331,12.54080698039638 | |
23111,37.613551,-77.24301899999999,36490,"{'type': 'Point', 'coordinates': [-77.24301899999999, 37.613551]}",204.340917,178.57412277346296 | |
23112,37.433405,-77.662862,46982,"{'type': 'Point', 'coordinates': [-77.662862, 37.433405]}",89.953547,522.2918002332915 | |
23113,37.538846,-77.67962800000001,23848,"{'type': 'Point', 'coordinates': [-77.67962800000001, 37.538846]}",92.613479,257.5003148299828 | |
23114,37.482226000000004,-77.65977099999999,17449,"{'type': 'Point', 'coordinates': [-77.65977099999999, 37.482226000000004]}",29.347955,594.5559068766461 | |
23115,37.810984999999995,-76.914469,146,"{'type': 'Point', 'coordinates': [-76.914469, 37.810984999999995]}",14.277001,10.226237288909624 | |
23116,37.675649,-77.336708,27228,"{'type': 'Point', 'coordinates': [-77.336708, 37.675649]}",164.104898,165.91826527932153 | |
23117,37.981999,-77.873976,9141,"{'type': 'Point', 'coordinates': [-77.873976, 37.981999]}",372.308573,24.55221464911043 | |
23119,37.448174,-76.277178,295,"{'type': 'Point', 'coordinates': [-76.277178, 37.448174]}",13.873069,21.264220627750067 | |
23120,37.42208,-77.78137,5971,"{'type': 'Point', 'coordinates': [-77.78137, 37.42208]}",167.33215,35.68351927588332 | |
23123,37.651834,-78.301142,1860,"{'type': 'Point', 'coordinates': [-78.301142, 37.651834]}",107.192557,17.351951031450813 | |
23124,37.550924,-77.04395600000001,3185,"{'type': 'Point', 'coordinates': [-77.04395600000001, 37.550924]}",148.542181,21.44172098832991 | |
23125,37.327127000000004,-76.28083000000001,223,"{'type': 'Point', 'coordinates': [-76.28083000000001, 37.327127000000004]}",10.491966,21.254357858193593 | |
23126,37.923460999999996,-77.144316,534,"{'type': 'Point', 'coordinates': [-77.144316, 37.923460999999996]}",58.135337,9.185463223512405 | |
23128,37.436067,-76.432958,1045,"{'type': 'Point', 'coordinates': [-76.432958, 37.436067]}",39.063407,26.751378854384107 | |
23129,37.68163,-77.77042,374,"{'type': 'Point', 'coordinates': [-77.77042, 37.68163]}",10.519331,35.55359176358269 | |
23130,37.387285999999996,-76.259439,268,"{'type': 'Point', 'coordinates': [-76.259439, 37.387285999999996]}",21.480519,12.476421077162986 | |
23138,37.342651000000004,-76.304324,953,"{'type': 'Point', 'coordinates': [-76.304324, 37.342651000000004]}",56.984212,16.72393048095497 | |
23139,37.545988,-77.936728,24425,"{'type': 'Point', 'coordinates': [-77.936728, 37.545988]}",624.089178,39.13703499598258 | |
23140,37.435013,-77.038311,5175,"{'type': 'Point', 'coordinates': [-77.038311, 37.435013]}",195.683644,26.44574627810999 | |
23141,37.528690000000005,-77.156144,6471,"{'type': 'Point', 'coordinates': [-77.156144, 37.528690000000005]}",94.944431,68.15565622800983 | |
23146,37.723428000000006,-77.710398,3093,"{'type': 'Point', 'coordinates': [-77.710398, 37.723428000000006]}",87.908654,35.18424932316675 | |
23148,37.846428,-77.05464,1827,"{'type': 'Point', 'coordinates': [-77.05464, 37.846428]}",169.271875,10.793287425923532 | |
23149,37.575671,-76.60928299999999,3190,"{'type': 'Point', 'coordinates': [-76.60928299999999, 37.575671]}",140.018916,22.78263602612093 | |
23150,37.501141,-77.252581,12045,"{'type': 'Point', 'coordinates': [-77.252581, 37.501141]}",80.701475,149.2537775796539 | |
23153,37.770804999999996,-77.947259,1334,"{'type': 'Point', 'coordinates': [-77.947259, 37.770804999999996]}",34.988046,38.12730782393507 | |
23156,37.521141,-76.706618,1555,"{'type': 'Point', 'coordinates': [-76.706618, 37.521141]}",116.670748,13.328105173372164 | |
23160,37.628163,-77.845916,2708,"{'type': 'Point', 'coordinates': [-77.845916, 37.628163]}",9.837449,275.27461641732526 | |
23161,37.715706,-76.935229,173,"{'type': 'Point', 'coordinates': [-76.935229, 37.715706]}",29.463092,5.871753039361924 | |
23163,37.357690999999996,-76.309595,220,"{'type': 'Point', 'coordinates': [-76.309595, 37.357690999999996]}",6.754389,32.57141393544257 | |
23168,37.395757,-76.82511,6115,"{'type': 'Point', 'coordinates': [-76.82511, 37.395757]}",64.580278,94.68835052088193 | |
23169,37.603451,-76.457239,1325,"{'type': 'Point', 'coordinates': [-76.457239, 37.603451]}",46.449219,28.525775643289073 | |
23173,37.577676000000004,-77.536969,2820,"{'type': 'Point', 'coordinates': [-77.536969, 37.577676000000004]}",1.111824,2536.3726632992275 | |
23175,37.654869,-76.62435699999999,1907,"{'type': 'Point', 'coordinates': [-76.62435699999999, 37.654869]}",51.020507,37.377127593028426 | |
23176,37.572941,-76.414976,656,"{'type': 'Point', 'coordinates': [-76.414976, 37.572941]}",19.276408,34.031236524979136 | |
23177,37.755009,-77.014493,616,"{'type': 'Point', 'coordinates': [-77.014493, 37.755009]}",55.94581,11.010654774682857 | |
23180,37.702428000000005,-76.61526500000001,441,"{'type': 'Point', 'coordinates': [-76.61526500000001, 37.702428000000005]}",46.80374,9.422323942488358 | |
23181,37.597491,-76.88906,5426,"{'type': 'Point', 'coordinates': [-76.88906, 37.597491]}",189.2137,28.67657045975001 | |
23185,37.228497999999995,-76.718509,46370,"{'type': 'Point', 'coordinates': [-76.718509, 37.228497999999995]}",210.765795,220.00723599386703 | |
23187,37.268856,-76.720941,267,"{'type': 'Point', 'coordinates': [-76.720941, 37.268856]}",0.309984,861.3347785692165 | |
23188,37.342936,-76.763853,38733,"{'type': 'Point', 'coordinates': [-76.763853, 37.342936]}",280.263193,138.2022362101612 | |
23192,37.820363,-77.680814,7067,"{'type': 'Point', 'coordinates': [-77.680814, 37.820363]}",199.867311,35.35845839242816 | |
23219,37.539769,-77.435528,3781,"{'type': 'Point', 'coordinates': [-77.435528, 37.539769]}",4.704543,803.6912405732077 | |
23220,37.549349,-77.460606,35545,"{'type': 'Point', 'coordinates': [-77.460606, 37.549349]}",13.162938,2700.384974843762 | |
23221,37.553306,-77.493558,13680,"{'type': 'Point', 'coordinates': [-77.493558, 37.553306]}",10.239632,1335.9855119793367 | |
23222,37.582968,-77.41890699999999,24563,"{'type': 'Point', 'coordinates': [-77.41890699999999, 37.582968]}",21.607069,1136.8038858023733 | |
23223,37.557767,-77.378886,47677,"{'type': 'Point', 'coordinates': [-77.378886, 37.557767]}",44.610626,1068.7364037438076 | |
23224,37.497603000000005,-77.46742900000001,33461,"{'type': 'Point', 'coordinates': [-77.46742900000001, 37.497603000000005]}",30.944363,1081.327801124877 | |
23225,37.518623999999996,-77.512937,39169,"{'type': 'Point', 'coordinates': [-77.512937, 37.518623999999996]}",38.79951,1009.5230584097583 | |
23226,37.579912,-77.523347,15805,"{'type': 'Point', 'coordinates': [-77.523347, 37.579912]}",16.393791,964.0845122400303 | |
23227,37.611292,-77.438188,24440,"{'type': 'Point', 'coordinates': [-77.438188, 37.611292]}",30.527391,800.5924908551798 | |
23228,37.626616999999996,-77.492834,34198,"{'type': 'Point', 'coordinates': [-77.492834, 37.626616999999996]}",29.229246,1169.9925478748237 | |
23229,37.586771999999996,-77.57416500000001,32283,"{'type': 'Point', 'coordinates': [-77.57416500000001, 37.586771999999996]}",38.511377,838.2717657693725 | |
23230,37.586639,-77.489122,5852,"{'type': 'Point', 'coordinates': [-77.489122, 37.586639]}",10.868059,538.4586152872375 | |
23231,37.442204,-77.314931,34685,"{'type': 'Point', 'coordinates': [-77.314931, 37.442204]}",246.556183,140.67787543579874 | |
23233,37.646431,-77.624235,28908,"{'type': 'Point', 'coordinates': [-77.624235, 37.646431]}",32.45588,890.6860636655052 | |
23234,37.451423,-77.47066,42989,"{'type': 'Point', 'coordinates': [-77.47066, 37.451423]}",52.841222,813.5504511988764 | |
23235,37.51457,-77.564758,30165,"{'type': 'Point', 'coordinates': [-77.564758, 37.51457]}",45.320078,665.5990309637154 | |
23236,37.475809999999996,-77.585285,25822,"{'type': 'Point', 'coordinates': [-77.585285, 37.475809999999996]}",37.541634,687.8230180391189 | |
23237,37.400878000000006,-77.449054,21192,"{'type': 'Point', 'coordinates': [-77.449054, 37.400878000000006]}",52.964399,400.117822539627 | |
23238,37.595612,-77.64760600000001,25134,"{'type': 'Point', 'coordinates': [-77.64760600000001, 37.595612]}",58.076137,432.7767186030297 | |
23250,37.504727,-77.320875,0,"{'type': 'Point', 'coordinates': [-77.320875, 37.504727]}",8.14043,0.0 | |
23294,37.631281,-77.542534,17558,"{'type': 'Point', 'coordinates': [-77.542534, 37.631281]}",10.740926,1634.6821493789269 | |
23301,37.681259000000004,-75.633464,1831,"{'type': 'Point', 'coordinates': [-75.633464, 37.681259000000004]}",87.929858,20.82341586404018 | |
23302,37.86567,-75.520915,155,"{'type': 'Point', 'coordinates': [-75.520915, 37.86567]}",9.217283,16.816235326614144 | |
23303,37.911355,-75.504972,741,"{'type': 'Point', 'coordinates': [-75.504972, 37.911355]}",19.029489,38.93956374761298 | |
23304,36.996134999999995,-76.57210699999999,71,"{'type': 'Point', 'coordinates': [-76.57210699999999, 36.996134999999995]}",0.678272,104.67776939045103 | |
23306,37.56107,-75.872026,1088,"{'type': 'Point', 'coordinates': [-75.872026, 37.56107]}",46.311952,23.49285558077967 | |
23307,37.432039,-75.871157,769,"{'type': 'Point', 'coordinates': [-75.871157, 37.432039]}",20.471348,37.564697742425174 | |
23308,37.838625,-75.660124,2106,"{'type': 'Point', 'coordinates': [-75.660124, 37.838625]}",143.796376,14.645709847374734 | |
23310,37.258993,-75.963657,4736,"{'type': 'Point', 'coordinates': [-75.963657, 37.258993]}",179.538145,26.378795436479532 | |
23313,37.199729999999995,-75.945635,78,"{'type': 'Point', 'coordinates': [-75.945635, 37.199729999999995]}",3.260794,23.920554318978752 | |
23314,36.959049,-76.52428,6991,"{'type': 'Point', 'coordinates': [-76.52428, 36.959049]}",92.525581,75.55748285439029 | |
23315,36.737390000000005,-76.84051099999999,1525,"{'type': 'Point', 'coordinates': [-76.84051099999999, 36.737390000000005]}",76.014681,20.061914092621137 | |
23316,37.303123,-75.992964,342,"{'type': 'Point', 'coordinates': [-75.992964, 37.303123]}",4.702963,72.72011283099613 | |
23320,36.762288,-76.21165,51797,"{'type': 'Point', 'coordinates': [-76.21165, 36.762288]}",87.321802,593.173741421415 | |
23321,36.800398,-76.421152,33653,"{'type': 'Point', 'coordinates': [-76.421152, 36.800398]}",69.483879,484.32817056744915 | |
23322,36.618712,-76.227046,60473,"{'type': 'Point', 'coordinates': [-76.227046, 36.618712]}",394.665365,153.22601211788626 | |
23323,36.696975,-76.379925,35906,"{'type': 'Point', 'coordinates': [-76.379925, 36.696975]}",327.118556,109.76448550965112 | |
23324,36.799721000000005,-76.27344699999999,22851,"{'type': 'Point', 'coordinates': [-76.27344699999999, 36.799721000000005]}",19.133507,1194.292295709302 | |
23325,36.814547999999995,-76.23842900000001,17592,"{'type': 'Point', 'coordinates': [-76.23842900000001, 36.814547999999995]}",11.15236,1577.4239712491346 | |
23336,37.954605,-75.33452199999999,2941,"{'type': 'Point', 'coordinates': [-75.33452199999999, 37.954605]}",126.190263,23.30607710992725 | |
23337,37.930411,-75.486091,377,"{'type': 'Point', 'coordinates': [-75.486091, 37.930411]}",4.901563,76.91424143686412 | |
23347,37.339242999999996,-75.978024,671,"{'type': 'Point', 'coordinates': [-75.978024, 37.339242999999996]}",41.656469,16.10794232223571 | |
23350,37.512705,-75.862593,3403,"{'type': 'Point', 'coordinates': [-75.862593, 37.512705]}",81.11622,41.952152109652054 | |
23354,37.462861,-75.912247,207,"{'type': 'Point', 'coordinates': [-75.912247, 37.462861]}",11.289873,18.335015814615453 | |
23356,37.990790000000004,-75.382405,1246,"{'type': 'Point', 'coordinates': [-75.382405, 37.990790000000004]}",41.000853,30.38961165027469 | |
23357,37.755646,-75.676028,776,"{'type': 'Point', 'coordinates': [-75.676028, 37.755646]}",16.276688,47.67554676971138 | |
23358,37.652659,-75.867953,152,"{'type': 'Point', 'coordinates': [-75.867953, 37.652659]}",23.080624,6.5856105103570854 | |
23359,37.884947,-75.587982,776,"{'type': 'Point', 'coordinates': [-75.587982, 37.884947]}",38.865104,19.96649745231609 | |
23389,37.660513,-75.834778,137,"{'type': 'Point', 'coordinates': [-75.834778, 37.660513]}",1.882971,72.75736057538857 | |
23395,37.976304,-75.46059,645,"{'type': 'Point', 'coordinates': [-75.46059, 37.976304]}",34.942246,18.459030939224686 | |
23398,37.516128,-75.94407199999999,153,"{'type': 'Point', 'coordinates': [-75.94407199999999, 37.516128]}",13.603196,11.247356871135283 | |
23401,37.627492,-75.77939599999999,212,"{'type': 'Point', 'coordinates': [-75.77939599999999, 37.627492]}",5.812905,36.470577103874916 | |
23405,37.411724,-75.926597,973,"{'type': 'Point', 'coordinates': [-75.926597, 37.411724]}",93.202967,10.43958182146712 | |
23407,37.841941,-75.569737,411,"{'type': 'Point', 'coordinates': [-75.569737, 37.841941]}",16.826783,24.425346187681864 | |
23408,37.452913,-75.843474,77,"{'type': 'Point', 'coordinates': [-75.843474, 37.452913]}",4.754221,16.19613391973154 | |
23409,37.887621,-75.66290699999999,84,"{'type': 'Point', 'coordinates': [-75.66290699999999, 37.887621]}",24.031406,3.495425943866955 | |
23410,37.637837,-75.73691,2015,"{'type': 'Point', 'coordinates': [-75.73691, 37.637837]}",76.944868,26.187581477168823 | |
23413,37.472853,-75.857763,840,"{'type': 'Point', 'coordinates': [-75.857763, 37.472853]}",35.266662,23.81852867163896 | |
23414,37.806814,-75.579897,100,"{'type': 'Point', 'coordinates': [-75.579897, 37.806814]}",3.774456,26.493884151782403 | |
23415,37.969553000000005,-75.53470300000001,1893,"{'type': 'Point', 'coordinates': [-75.53470300000001, 37.969553000000005]}",78.410247,24.14225273388056 | |
23416,37.933768,-75.563351,356,"{'type': 'Point', 'coordinates': [-75.563351, 37.933768]}",14.099876,25.24844899345214 | |
23417,37.759052000000004,-75.783815,4047,"{'type': 'Point', 'coordinates': [-75.783815, 37.759052000000004]}",230.446878,17.56153103536512 | |
23418,37.666868,-75.687162,863,"{'type': 'Point', 'coordinates': [-75.687162, 37.666868]}",26.458851,32.616684677652856 | |
23420,37.599070000000005,-75.817482,2376,"{'type': 'Point', 'coordinates': [-75.817482, 37.599070000000005]}",95.50862,24.87733567922979 | |
23421,37.76478,-75.61176800000001,4255,"{'type': 'Point', 'coordinates': [-75.61176800000001, 37.76478]}",98.05241,43.395159792604794 | |
23422,37.635389,-75.822735,278,"{'type': 'Point', 'coordinates': [-75.822735, 37.635389]}",11.294721,24.613268446383053 | |
23423,37.525301,-75.71431,344,"{'type': 'Point', 'coordinates': [-75.71431, 37.525301]}",173.476655,1.98297574967652 | |
23426,37.924102000000005,-75.689541,225,"{'type': 'Point', 'coordinates': [-75.689541, 37.924102000000005]}",17.969686,12.52108690157413 | |
23427,37.938928999999995,-75.720538,243,"{'type': 'Point', 'coordinates': [-75.720538, 37.938928999999995]}",49.220777,4.936939536732629 | |
23430,37.001261,-76.65593199999999,17281,"{'type': 'Point', 'coordinates': [-76.65593199999999, 37.001261]}",331.124301,52.188860641792644 | |
23432,36.876452,-76.553978,1538,"{'type': 'Point', 'coordinates': [-76.553978, 36.876452]}",39.669109,38.77072207495258 | |
23433,36.918069,-76.462863,1218,"{'type': 'Point', 'coordinates': [-76.462863, 36.918069]}",19.699103,61.830226482901274 | |
23434,36.703003,-76.592105,47670,"{'type': 'Point', 'coordinates': [-76.592105, 36.703003]}",548.322104,86.9379506174349 | |
23435,36.84134,-76.48423199999999,27053,"{'type': 'Point', 'coordinates': [-76.48423199999999, 36.84134]}",128.076497,211.22532731356637 | |
23436,36.893755999999996,-76.506917,942,"{'type': 'Point', 'coordinates': [-76.506917, 36.893755999999996]}",6.709515,140.39762933684477 | |
23437,36.627115,-76.803197,4283,"{'type': 'Point', 'coordinates': [-76.803197, 36.627115]}",262.284116,16.329620204679113 | |
23438,36.581493,-76.696545,1818,"{'type': 'Point', 'coordinates': [-76.696545, 36.581493]}",106.075332,17.138763232906967 | |
23440,37.844418,-75.997694,727,"{'type': 'Point', 'coordinates': [-75.997694, 37.844418]}",5.902045,123.17764435886205 | |
23441,37.710268,-75.699685,171,"{'type': 'Point', 'coordinates': [-75.699685, 37.710268]}",1.607058,106.40561821664183 | |
23442,37.904756,-75.575437,1059,"{'type': 'Point', 'coordinates': [-75.575437, 37.904756]}",34.724615,30.497098383956164 | |
23451,36.865133,-76.005825,41544,"{'type': 'Point', 'coordinates': [-76.005825, 36.865133]}",54.043978,768.7072924202581 | |
23452,36.845756,-76.092807,59321,"{'type': 'Point', 'coordinates': [-76.092807, 36.845756]}",44.395885,1336.1823961837904 | |
23453,36.78349,-76.071207,35960,"{'type': 'Point', 'coordinates': [-76.071207, 36.78349]}",24.498442,1467.848445219496 | |
23454,36.818071,-76.030845,60283,"{'type': 'Point', 'coordinates': [-76.030845, 36.818071]}",87.497273,688.9700436721039 | |
23455,36.892996999999994,-76.147108,47938,"{'type': 'Point', 'coordinates': [-76.147108, 36.892996999999994]}",50.363568,951.8388371530785 | |
23456,36.736954,-76.035987,51748,"{'type': 'Point', 'coordinates': [-76.035987, 36.736954]}",137.96523,375.0800111013478 | |
23457,36.612747,-76.024139,4289,"{'type': 'Point', 'coordinates': [-76.024139, 36.612747]}",266.288673,16.106580695604727 | |
23459,36.924655,-76.019226,1091,"{'type': 'Point', 'coordinates': [-76.019226, 36.924655]}",3.679014,296.54684651920326 | |
23460,36.807977,-76.028412,1201,"{'type': 'Point', 'coordinates': [-76.028412, 36.807977]}",0.562519,2135.0389942384168 | |
23461,36.775402,-75.96325,287,"{'type': 'Point', 'coordinates': [-75.96325, 36.775402]}",0.157396,1823.4262624209 | |
23462,36.837313,-76.150514,61973,"{'type': 'Point', 'coordinates': [-76.150514, 36.837313]}",31.13922,1990.1911480120566 | |
23464,36.796917,-76.18763100000001,72359,"{'type': 'Point', 'coordinates': [-76.18763100000001, 36.796917]}",46.084988,1570.1208384821539 | |
23480,37.618679,-75.690658,328,"{'type': 'Point', 'coordinates': [-75.690658, 37.618679]}",5.138365,63.8335345970946 | |
23486,37.513168,-75.813784,140,"{'type': 'Point', 'coordinates': [-75.813784, 37.513168]}",1.20057,116.61127631041923 | |
23487,36.847367999999996,-76.725048,6298,"{'type': 'Point', 'coordinates': [-76.725048, 36.847367999999996]}",247.379362,25.458873970254643 | |
23488,37.947613,-75.59845899999999,201,"{'type': 'Point', 'coordinates': [-75.59845899999999, 37.947613]}",21.43027,9.379256537598453 | |
23502,36.860941,-76.20490799999999,20678,"{'type': 'Point', 'coordinates': [-76.20490799999999, 36.860941]}",28.373781,728.7713963817512 | |
23503,36.948786,-76.266459,30856,"{'type': 'Point', 'coordinates': [-76.266459, 36.948786]}",20.073454,1537.1544926946801 | |
23504,36.857302000000004,-76.265612,23483,"{'type': 'Point', 'coordinates': [-76.265612, 36.857302000000004]}",11.617805,2021.294039622803 | |
23505,36.91422,-76.289405,28503,"{'type': 'Point', 'coordinates': [-76.289405, 36.91422]}",19.25135,1480.5714923888456 | |
23507,36.864564,-76.303218,25818,"{'type': 'Point', 'coordinates': [-76.303218, 36.864564]}",2.584555,9989.340524771189 | |
23508,36.884888000000004,-76.31026999999999,20263,"{'type': 'Point', 'coordinates': [-76.31026999999999, 36.884888000000004]}",14.60622,1387.2856906167372 | |
23509,36.882372,-76.264066,12817,"{'type': 'Point', 'coordinates': [-76.264066, 36.882372]}",7.628617,1680.1210494641427 | |
23510,36.852121999999994,-76.291682,7031,"{'type': 'Point', 'coordinates': [-76.291682, 36.852121999999994]}",3.914738,1796.033348847356 | |
23511,36.912232,-76.325805,2457,"{'type': 'Point', 'coordinates': [-76.325805, 36.912232]}",21.796943,112.72222898412865 | |
23513,36.889714,-76.23886,29595,"{'type': 'Point', 'coordinates': [-76.23886, 36.889714]}",13.269868,2230.2407228165343 | |
23517,36.869679,-76.292569,4484,"{'type': 'Point', 'coordinates': [-76.292569, 36.869679]}",2.067575,2168.724230076297 | |
23518,36.916118,-76.215375,28095,"{'type': 'Point', 'coordinates': [-76.215375, 36.916118]}",17.930492,1566.8839427272826 | |
23523,36.832389,-76.272082,7793,"{'type': 'Point', 'coordinates': [-76.272082, 36.832389]}",7.55529,1031.4627234692514 | |
23551,36.924048,-76.288625,930,"{'type': 'Point', 'coordinates': [-76.288625, 36.924048]}",0.875503,1062.2465028674944 | |
23601,37.038265,-76.480498,25127,"{'type': 'Point', 'coordinates': [-76.480498, 37.038265]}",41.758538,601.7212575785101 | |
23602,37.113416,-76.51794699999999,39676,"{'type': 'Point', 'coordinates': [-76.51794699999999, 37.113416]}",37.217315,1066.0629333416448 | |
23603,37.191057,-76.56453499999999,3899,"{'type': 'Point', 'coordinates': [-76.56453499999999, 37.191057]}",19.606396,198.8636769348125 | |
23604,37.105026,-76.574792,5720,"{'type': 'Point', 'coordinates': [-76.574792, 37.105026]}",34.958771,163.62131265999025 | |
23605,37.017949,-76.435781,13854,"{'type': 'Point', 'coordinates': [-76.435781, 37.017949]}",9.74021,1422.3512634737856 | |
23606,37.064408,-76.521638,29283,"{'type': 'Point', 'coordinates': [-76.521638, 37.064408]}",51.462168,569.0199449039924 | |
23607,36.970515,-76.424339,24519,"{'type': 'Point', 'coordinates': [-76.424339, 36.970515]}",56.062971,437.347496264513 | |
23608,37.147813,-76.543036,42917,"{'type': 'Point', 'coordinates': [-76.543036, 37.147813]}",28.275916,1517.7934465500605 | |
23651,37.005711,-76.305389,696,"{'type': 'Point', 'coordinates': [-76.305389, 37.005711]}",8.055924,86.39604842349556 | |
23661,37.009301,-76.386177,14113,"{'type': 'Point', 'coordinates': [-76.386177, 37.009301]}",12.240955,1152.9329206748985 | |
23662,37.133319,-76.353027,12150,"{'type': 'Point', 'coordinates': [-76.353027, 37.133319]}",57.467443,211.42405796617746 | |
23663,37.032292,-76.31364599999999,14495,"{'type': 'Point', 'coordinates': [-76.31364599999999, 37.032292]}",8.089572,1791.8129661247838 | |
23664,37.078374,-76.289825,10194,"{'type': 'Point', 'coordinates': [-76.289825, 37.078374]}",21.096157,483.2159715155703 | |
23665,37.084546,-76.365442,5120,"{'type': 'Point', 'coordinates': [-76.365442, 37.084546]}",19.822548,258.2917191069483 | |
23666,37.058141,-76.406646,49825,"{'type': 'Point', 'coordinates': [-76.406646, 37.058141]}",53.177638,936.9539880654345 | |
23669,37.050311,-76.342814,43148,"{'type': 'Point', 'coordinates': [-76.342814, 37.050311]}",37.500337,1150.6029932477672 | |
23690,37.222401,-76.517104,3032,"{'type': 'Point', 'coordinates': [-76.517104, 37.222401]}",24.640012,123.05188812408046 | |
23691,37.255253,-76.549418,127,"{'type': 'Point', 'coordinates': [-76.549418, 37.255253]}",5.013943,25.32936652849863 | |
23692,37.192438,-76.46358199999999,18846,"{'type': 'Point', 'coordinates': [-76.46358199999999, 37.192438]}",83.158144,226.62843461248968 | |
23693,37.123065999999994,-76.447129,23292,"{'type': 'Point', 'coordinates': [-76.447129, 37.123065999999994]}",36.941722,630.5066125504383 | |
23696,37.189119,-76.421079,3669,"{'type': 'Point', 'coordinates': [-76.421079, 37.189119]}",19.774095,185.54578603976566 | |
23701,36.813708,-76.37034,25161,"{'type': 'Point', 'coordinates': [-76.37034, 36.813708]}",21.44395,1173.3379344756913 | |
23702,36.799046999999995,-76.32897700000001,11424,"{'type': 'Point', 'coordinates': [-76.32897700000001, 36.799046999999995]}",6.552043,1743.5783006918605 | |
23703,36.893339000000005,-76.373292,25739,"{'type': 'Point', 'coordinates': [-76.373292, 36.89333 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment